{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/wEjKrA2DxxOXkONbrq98/i0Iral3IGFz99TXG7e8i/xo8HRJ_PC.js", "ssg:https://framerusercontent.com/modules/bxzpZLS5cSA9nzoFUDzz/2kHkotQ2oMRuvIVGj31G/AChirel6c.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (7e0329e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{ThemeImage}from\"https://framerusercontent.com/modules/2R0FKJO7cwCwIn0yfFFW/b4M5JTIaRdcNGp1PTJQP/withResponsiveTheme2.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/sMm9clY9ha4gja0O319T/LkkdiXREyfhifeHuVOwf/Qg3ZdjiFP.js\";const MotionDivWithFX=withFX(motion.div);const ThemeImageFonts=getFonts(ThemeImage);const cycleOrder=[\"LfQ1631ps\",\"SaPlfNZZa\",\"oGsapyHO6\",\"tA3qbD6Q9\",\"aZr19qd_v\",\"e6eHqksC1\"];const serializationHash=\"framer-gLo4u\";const variantClassNames={aZr19qd_v:\"framer-v-1dijhce\",e6eHqksC1:\"framer-v-1w6737g\",LfQ1631ps:\"framer-v-1wuc8yc\",oGsapyHO6:\"framer-v-1n5oes1\",SaPlfNZZa:\"framer-v-k83oqc\",tA3qbD6Q9:\"framer-v-lwda96\"};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={duration:0,type:\"tween\"};const transition3={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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={\" Loader Mobile Main\":\"tA3qbD6Q9\",\"Loader Desktop Main\":\"LfQ1631ps\",\"Loader Desktop\":\"oGsapyHO6\",\"Loader Mobile\":\"aZr19qd_v\",\"Variant 5\":\"e6eHqksC1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"LfQ1631ps\"};};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,oFdYXuhP5o9quii_bw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LfQ1631ps\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearz0twnw=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"SaPlfNZZa\"),1800);});const onAppearqnatt7=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"oGsapyHO6\"),1800);});const onAppear3lvqnv=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"e6eHqksC1\"),1800);});const onAppear7myu66=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"aZr19qd_v\"),1800);});useOnVariantChange(baseVariant,{aZr19qd_v:undefined,default:onAppearz0twnw,e6eHqksC1:onAppear7myu66,oGsapyHO6:undefined,SaPlfNZZa:onAppearqnatt7,tA3qbD6Q9:onAppear3lvqnv});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"oGsapyHO6\",\"tA3qbD6Q9\",\"aZr19qd_v\",\"e6eHqksC1\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"oGsapyHO6\",\"aZr19qd_v\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"tA3qbD6Q9\",\"e6eHqksC1\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"tA3qbD6Q9\",\"e6eHqksC1\"].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,...addPropertyOverrides({aZr19qd_v:{value:transition2},oGsapyHO6:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1wuc8yc\",className,classNames),\"data-framer-name\":\"Loader Desktop Main\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"LfQ1631ps\",ref:refBinding,style:{...style},...addPropertyOverrides({aZr19qd_v:{\"data-framer-name\":\"Loader Mobile\",\"data-highlight\":undefined},e6eHqksC1:{\"data-framer-name\":\"Variant 5\"},oGsapyHO6:{\"data-framer-name\":\"Loader Desktop\",\"data-highlight\":undefined},SaPlfNZZa:{\"data-framer-name\":\"Loader Desktop\"},tA3qbD6Q9:{\"data-framer-name\":\" Loader Mobile Main\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-mjslwo\",layoutDependency:layoutDependency,layoutId:\"OkXxVsNKg\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k6t5w0\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"n3T1kGolu\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-py4v9q\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"rCeP31W2r\",style:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, var(--token-fa928562-ef98-426e-847d-b4f2e884724a, rgb(28, 28, 29)) 342deg)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dy6nng\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"OQwO66Svv\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ebwman\",layoutDependency:layoutDependency,layoutId:\"m7U6UTN16\",style:{backgroundColor:\"var(--token-53d0853a-31ab-4c4e-a98c-88845562c580, rgb(250, 249, 255))\"},children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ttd1zt\",\"data-styles-preset\":\"Qg3ZdjiFP\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa928562-ef98-426e-847d-b4f2e884724a, rgb(28, 28, 29)))\"},children:\"willkommen\"})}),className:\"framer-j8i3up\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Px24ZSp3r\",style:{\"--extracted-r6o4lv\":\"var(--token-fa928562-ef98-426e-847d-b4f2e884724a, rgb(28, 28, 29))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j4n19y\",layoutDependency:layoutDependency,layoutId:\"wgCsPaP3K\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rlv8jm\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"f8PaRGwEG\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{oFdYXuhP5:oFdYXuhP5o9quii_bw},webPageId:\"gtmqjcHix\"},motionChild:true,nodeId:\"uK0CFN65T\",scopeId:\"xo8HRJ_PC\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-14idww9 framer-1ldv8cz\",layoutDependency:layoutDependency,layoutId:\"uK0CFN65T\",style:{scale:1.4},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hh32qd\",layoutDependency:layoutDependency,layoutId:\"lBGjSu3_5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rumy9o-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"NooZkM1nr-container\",nodeId:\"NooZkM1nr\",rendersWithMotion:true,scopeId:\"xo8HRJ_PC\",style:{mask:\"linear-gradient(90deg, rgba(0, 0, 0, 0) 12.153914168074323%, rgb(0, 0, 0) 23.110496426878452%, rgb(0, 0, 0) 82%, rgba(0, 0, 0, 0) 87%) intersect\",WebkitMask:\"linear-gradient(90deg, rgba(0, 0, 0, 0) 12.153914168074323%, rgb(0, 0, 0) 23.110496426878452%, rgb(0, 0, 0) 82%, rgba(0, 0, 0, 0) 87%) intersect\"},children:/*#__PURE__*/_jsx(ThemeImage,{darkImage:\"https://framerusercontent.com/images/iKAGlzMCy6JvLwEHbrovAtAgAk.png\",height:\"100%\",id:\"NooZkM1nr\",layoutId:\"NooZkM1nr\",lightImage:\"https://framerusercontent.com/images/iKAGlzMCy6JvLwEHbrovAtAgAk.png\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2291,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||900)-0-((componentViewport?.height||900)-0)*1)/2)+(0+(((componentViewport?.height||900)-0)*1-0-296)/2)+-1),pixelHeight:1080,pixelWidth:721,src:\"https://framerusercontent.com/images/wn7oBPxhnI3QCwFQD2tPcK3KKVA.jpg?scale-down-to=512\"},className:\"framer-tmt7l8\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"xrp8RWDpv\",...addPropertyOverrides({e6eHqksC1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2291,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||558)-0-((componentViewport?.height||558)-0)*1)/2)+0+((((componentViewport?.height||558)-0)*1-0-557)/2+0+0)+-22),pixelHeight:1080,pixelWidth:721,src:\"https://framerusercontent.com/images/zWU6LuuMB6QtfYcPw8Pc17g4AYo.jpg?scale-down-to=512\"}},SaPlfNZZa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2291,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||900)-0-((componentViewport?.height||900)-0)*1)/2)+(0+(((componentViewport?.height||900)-0)*1-0-296)/2)+-1),pixelHeight:1080,pixelWidth:721,src:\"https://framerusercontent.com/images/zWU6LuuMB6QtfYcPw8Pc17g4AYo.jpg?scale-down-to=512\"}},tA3qbD6Q9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2291,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||558)-0-((componentViewport?.height||558)-0)*1)/2)+0+((((componentViewport?.height||558)-0)*1-0-555)/2+0+0)+-22),pixelHeight:1080,pixelWidth:721,src:\"https://framerusercontent.com/images/wn7oBPxhnI3QCwFQD2tPcK3KKVA.jpg?scale-down-to=512\"}}},baseVariant,gestureVariant)})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18fyh02\",layoutDependency:layoutDependency,layoutId:\"bv8pQnCPC\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ttd1zt\",\"data-styles-preset\":\"Qg3ZdjiFP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Rausch art\"})}),className:\"framer-1r188cc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"O46_z7duv\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{e6eHqksC1:{\"--extracted-r6o4lv\":\"var(--token-fa928562-ef98-426e-847d-b4f2e884724a, rgb(28, 28, 29))\"},tA3qbD6Q9:{\"--extracted-r6o4lv\":\"var(--token-fa928562-ef98-426e-847d-b4f2e884724a, rgb(28, 28, 29))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({e6eHqksC1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ttd1zt\",\"data-styles-preset\":\"Qg3ZdjiFP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa928562-ef98-426e-847d-b4f2e884724a, rgb(28, 28, 29)))\"},children:\"willkommen\"})})},tA3qbD6Q9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ttd1zt\",\"data-styles-preset\":\"Qg3ZdjiFP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa928562-ef98-426e-847d-b4f2e884724a, rgb(28, 28, 29)))\"},children:\"willkommen\"})})}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ttd1zt\",\"data-styles-preset\":\"Qg3ZdjiFP\",style:{\"--framer-text-alignment\":\"center\"},children:\"\\xa9 2025 ALL RIGHTS RESERVED\"})}),className:\"framer-bnorfm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nYCmmk5X7\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{e6eHqksC1:{\"--extracted-r6o4lv\":\"var(--token-fa928562-ef98-426e-847d-b4f2e884724a, rgb(28, 28, 29))\"},tA3qbD6Q9:{\"--extracted-r6o4lv\":\"var(--token-fa928562-ef98-426e-847d-b4f2e884724a, rgb(28, 28, 29))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({e6eHqksC1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ttd1zt\",\"data-styles-preset\":\"Qg3ZdjiFP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa928562-ef98-426e-847d-b4f2e884724a, rgb(28, 28, 29)))\"},children:\"\\xa9 2025 rausch art\"})})},tA3qbD6Q9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ttd1zt\",\"data-styles-preset\":\"Qg3ZdjiFP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa928562-ef98-426e-847d-b4f2e884724a, rgb(28, 28, 29)))\"},children:\"\\xa9 2025 rausch art\"})})}},baseVariant,gestureVariant)})]}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ylugd4\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"StftCZJDb\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-19p03dd\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"w5VAJ5tdc\",style:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, var(--token-fa928562-ef98-426e-847d-b4f2e884724a, rgb(28, 28, 29)) 342deg)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6svyyj\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"WNRntv31G\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ttd1zt\",\"data-styles-preset\":\"Qg3ZdjiFP\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa928562-ef98-426e-847d-b4f2e884724a, rgb(28, 28, 29)))\"},children:\"\\xa9 2025 rausch art\"})}),className:\"framer-1izrot8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"busEnxekU\",style:{\"--extracted-r6o4lv\":\"var(--token-fa928562-ef98-426e-847d-b4f2e884724a, rgb(28, 28, 29))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gLo4u.framer-1ldv8cz, .framer-gLo4u .framer-1ldv8cz { display: block; }\",\".framer-gLo4u.framer-1wuc8yc { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 900px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-gLo4u .framer-mjslwo { flex: none; height: 100%; left: 0px; overflow: hidden; pointer-events: auto; position: absolute; top: 0px; width: 100%; z-index: 10; }\",\".framer-gLo4u .framer-1k6t5w0 { flex: none; gap: 10px; height: 20px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(81.11111111111113% - 20px / 2); width: 20px; }\",\".framer-gLo4u .framer-py4v9q, .framer-gLo4u .framer-19p03dd { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-gLo4u .framer-1dy6nng, .framer-gLo4u .framer-6svyyj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\".framer-gLo4u .framer-ebwman { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 0px 15px 0px 15px; pointer-events: none; position: relative; user-select: none; width: 1px; }\",\".framer-gLo4u .framer-j8i3up, .framer-gLo4u .framer-1r188cc, .framer-gLo4u .framer-bnorfm, .framer-gLo4u .framer-1izrot8 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-gLo4u .framer-j4n19y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 296px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 224px; }\",\".framer-gLo4u .framer-1rlv8jm { flex: none; height: 300px; overflow: visible; position: relative; width: 222px; }\",\".framer-gLo4u .framer-14idww9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 15px; height: 153px; justify-content: center; left: -58px; padding: 0px; position: absolute; right: -57px; text-decoration: none; top: -29px; }\",\".framer-gLo4u .framer-1hh32qd { 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: 333px; }\",\".framer-gLo4u .framer-rumy9o-container { flex: none; height: 502px; position: relative; width: 376px; }\",\".framer-gLo4u .framer-tmt7l8 { bottom: -2px; flex: none; left: -4px; overflow: visible; position: absolute; right: -1px; top: -1px; z-index: 1; }\",\".framer-gLo4u .framer-18fyh02 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; min-height: 200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-gLo4u .framer-ylugd4 { flex: none; gap: 10px; height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-gLo4u.framer-v-lwda96.framer-1wuc8yc, .framer-gLo4u.framer-v-1dijhce.framer-1wuc8yc, .framer-gLo4u.framer-v-1w6737g.framer-1wuc8yc { height: 558px; width: 390px; }\",\".framer-gLo4u.framer-v-lwda96 .framer-ebwman, .framer-gLo4u.framer-v-1w6737g .framer-ebwman { flex-direction: column; gap: 53px; justify-content: center; padding: 0px; }\",\".framer-gLo4u.framer-v-lwda96 .framer-j4n19y { height: 280px; order: 0; padding: 0px 0px 20px 0px; }\",\".framer-gLo4u.framer-v-lwda96 .framer-tmt7l8, .framer-gLo4u.framer-v-1w6737g .framer-tmt7l8 { bottom: 0px; left: -3px; right: 0px; top: -22px; }\",\".framer-gLo4u.framer-v-lwda96 .framer-18fyh02, .framer-gLo4u.framer-v-1w6737g .framer-18fyh02 { flex: none; flex-direction: column; gap: 9px; min-height: unset; order: 3; width: 100%; }\",\".framer-gLo4u.framer-v-lwda96 .framer-1r188cc, .framer-gLo4u.framer-v-lwda96 .framer-bnorfm, .framer-gLo4u.framer-v-1w6737g .framer-1r188cc, .framer-gLo4u.framer-v-1w6737g .framer-bnorfm { flex: none; width: 100%; }\",\".framer-gLo4u.framer-v-lwda96 .framer-ylugd4, .framer-gLo4u.framer-v-1w6737g .framer-ylugd4 { order: 4; }\",\".framer-gLo4u.framer-v-1w6737g .framer-j4n19y { height: 282px; order: 0; padding: 0px 0px 20px 0px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 900\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"SaPlfNZZa\":{\"layout\":[\"fixed\",\"fixed\"]},\"oGsapyHO6\":{\"layout\":[\"fixed\",\"fixed\"]},\"tA3qbD6Q9\":{\"layout\":[\"fixed\",\"fixed\"]},\"aZr19qd_v\":{\"layout\":[\"fixed\",\"fixed\"]},\"e6eHqksC1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerxo8HRJ_PC=withCSS(Component,css,\"framer-gLo4u\");export default Framerxo8HRJ_PC;Framerxo8HRJ_PC.displayName=\"Loader\";Framerxo8HRJ_PC.defaultProps={height:900,width:1440};addPropertyControls(Framerxo8HRJ_PC,{variant:{options:[\"LfQ1631ps\",\"SaPlfNZZa\",\"oGsapyHO6\",\"tA3qbD6Q9\",\"aZr19qd_v\",\"e6eHqksC1\"],optionTitles:[\"Loader Desktop Main\",\"Loader Desktop\",\"Loader Desktop\",\" Loader Mobile Main\",\"Loader Mobile\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerxo8HRJ_PC,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ThemeImageFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerxo8HRJ_PC\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"900\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SaPlfNZZa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oGsapyHO6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tA3qbD6Q9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aZr19qd_v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"e6eHqksC1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xo8HRJ_PC.map", "// Generated by Framer (eb93fa7)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Link,PathVariablesContext,PropertyOverrides,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import Loader from\"#framer/local/canvasComponent/xo8HRJ_PC/xo8HRJ_PC.js\";import ObjectItem from\"#framer/local/canvasComponent/Z6_7qifJT/Z6_7qifJT.js\";import Button4 from\"#framer/local/canvasComponent/z9GUYWpAY/z9GUYWpAY.js\";import{MagneticHover}from\"#framer/local/codeFile/Ujn_DOo/MagneticHover.js\";import{ThemeImage}from\"#framer/local/codeFile/mmqLRHD/withResponsiveTheme2.js\";import Art from\"#framer/local/collection/FQWdrGOeU/FQWdrGOeU.js\";import metadataProvider from\"#framer/local/webPageMetadata/AChirel6c/AChirel6c.js\";const LoaderFonts=getFonts(Loader);const ObjectItemFonts=getFonts(ObjectItem);const ThemeImageFonts=getFonts(ThemeImage);const TickerFonts=getFonts(Ticker);const Button4Fonts=getFonts(Button4);const MotionAMagneticHovermj3lxw=withCodeBoundaryForOverrides(motion.a,{nodeId:\"fGJ2JhBXv\",override:MagneticHover,scopeId:\"AChirel6c\"});const breakpoints={j_9Tc_xhA:\"(min-width: 1901px)\",jbKc3jaUt:\"(min-width: 810px) and (max-width: 1198px)\",LZ1rBh63n:\"(max-width: 809px)\",RWngeYlVr:\"(min-width: 1199px) and (max-width: 1900px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-NAdrV\";const variantClassNames={j_9Tc_xhA:\"framer-v-1n34kwc\",jbKc3jaUt:\"framer-v-1lyufzz\",LZ1rBh63n:\"framer-v-t6q74o\",RWngeYlVr:\"framer-v-gu4sfw\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const negate=value=>{return!value;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop S\":\"RWngeYlVr\",Desktop:\"j_9Tc_xhA\",Phone:\"LZ1rBh63n\",Tablet:\"jbKc3jaUt\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"j_9Tc_xhA\"};};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,oFdYXuhP5o9quii_bw,JGtT4QarXo9quii_bw,nmXkZGjKTo9quii_bw,jTAFx0Ms5o9quii_bw,LHV8JaQOqo9quii_bw,V3AO4IPRgo9quii_bw,ido9quii_bw,oFdYXuhP5o9v0MXxb7,JGtT4QarXo9v0MXxb7,nmXkZGjKTo9v0MXxb7,jTAFx0Ms5o9v0MXxb7,LHV8JaQOqo9v0MXxb7,V3AO4IPRgo9v0MXxb7,ido9v0MXxb7,oFdYXuhP5ZCdZMDVZr,JGtT4QarXZCdZMDVZr,nmXkZGjKTZCdZMDVZr,jTAFx0Ms5ZCdZMDVZr,LHV8JaQOqZCdZMDVZr,V3AO4IPRgZCdZMDVZr,idZCdZMDVZr,oFdYXuhP5sD71jyIEp,JGtT4QarXsD71jyIEp,nmXkZGjKTsD71jyIEp,jTAFx0Ms5sD71jyIEp,LHV8JaQOqsD71jyIEp,V3AO4IPRgsD71jyIEp,idsD71jyIEp,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"jbKc3jaUt\",\"LZ1rBh63n\",\"RWngeYlVr\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"RWngeYlVr\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"jbKc3jaUt\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"LZ1rBh63n\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"j_9Tc_xhA\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-53d0853a-31ab-4c4e-a98c-88845562c580, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1n34kwc\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"99.9474vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-151hylw-container\",layoutScroll:true,nodeId:\"nGudvpzMz\",scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LZ1rBh63n:{variant:\"tA3qbD6Q9\"}},children:/*#__PURE__*/_jsx(Loader,{height:\"100%\",id:\"nGudvpzMz\",layoutId:\"nGudvpzMz\",style:{height:\"100%\",width:\"100%\"},variant:\"LfQ1631ps\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hsimqv\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hl0em6\",\"data-framer-name\":\"Main\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-upvn43\",\"data-framer-name\":\"Section Objects\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18u9jix\",\"data-framer-name\":\"Ticker Container\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pg7nqx-container hidden-1lyufzz hidden-t6q74o hidden-gu4sfw\",\"data-framer-name\":\"Ticker Desktop XL\",isAuthoredByUser:true,isModuleExternal:true,name:\"Ticker Desktop XL\",nodeId:\"W5aue0Qr7\",scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-end\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.5,id:\"W5aue0Qr7\",layoutId:\"W5aue0Qr7\",name:\"Ticker Desktop XL\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7tmf3c\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"o9quii_bw\",data:Art,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"o9quii_bw\",name:\"oFdYXuhP5\",type:\"Identifier\"},{collection:\"o9quii_bw\",name:\"JGtT4QarX\",type:\"Identifier\"},{collection:\"o9quii_bw\",name:\"nmXkZGjKT\",type:\"Identifier\"},{collection:\"o9quii_bw\",name:\"jTAFx0Ms5\",type:\"Identifier\"},{collection:\"o9quii_bw\",name:\"LHV8JaQOq\",type:\"Identifier\"},{collection:\"o9quii_bw\",name:\"V3AO4IPRg\",type:\"Identifier\"},{collection:\"o9quii_bw\",name:\"id\",type:\"Identifier\"}],where:{collection:\"o9quii_bw\",name:\"FX2u8unL5\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:ido9quii_bw,JGtT4QarX:JGtT4QarXo9quii_bw,jTAFx0Ms5:jTAFx0Ms5o9quii_bw,LHV8JaQOq:LHV8JaQOqo9quii_bw,nmXkZGjKT:nmXkZGjKTo9quii_bw,oFdYXuhP5:oFdYXuhP5o9quii_bw,V3AO4IPRg:V3AO4IPRgo9quii_bw},index)=>{oFdYXuhP5o9quii_bw??=\"\";nmXkZGjKTo9quii_bw??=\"\";jTAFx0Ms5o9quii_bw??=\"\";LHV8JaQOqo9quii_bw??=true;V3AO4IPRgo9quii_bw??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`o9quii_bw-${ido9quii_bw}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oFdYXuhP5:oFdYXuhP5o9quii_bw},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4zyew2\",style:{scale:1.4},children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{oFdYXuhP5:oFdYXuhP5o9quii_bw},webPageId:\"gtmqjcHix\"},motionChild:true,nodeId:\"DwY2rhVc9\",scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1xo6zn6 framer-koxpey\",style:{rotateX:-5},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:429,width:\"346px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t9epcp-container\",inComponentSlot:true,nodeId:\"RUqBNThkV\",rendersWithMotion:true,scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(ObjectItem,{Fd2V31JLF:\"SOLD\",fSv4rNftA:\"SOLD\",height:\"100%\",id:\"RUqBNThkV\",J73PK0Qnb:jTAFx0Ms5o9quii_bw,K2cyCalHN:LHV8JaQOqo9quii_bw,layoutId:\"RUqBNThkV\",oJEFDMRrF:false,PFqzvQXDP:V3AO4IPRgo9quii_bw,q0uufx66_:toResponsiveImage(JGtT4QarXo9quii_bw),style:{height:\"100%\",width:\"100%\"},unsVTmAhl:true,Uy46jRmJP:nmXkZGjKTo9quii_bw,variant:\"XOkv3ZYdT\",WchkFDPyO:false,width:\"100%\",WpzTaJRzY:negate(LHV8JaQOqo9quii_bw)})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ym0l13\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1he47ue-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"RdlFS15Aw\",rendersWithMotion:true,scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(ThemeImage,{darkImage:\"https://framerusercontent.com/images/iKAGlzMCy6JvLwEHbrovAtAgAk.png\",height:\"100%\",id:\"RdlFS15Aw\",layoutId:\"RdlFS15Aw\",lightImage:\"https://framerusercontent.com/images/iKAGlzMCy6JvLwEHbrovAtAgAk.png\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})},ido9quii_bw);})})})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11f0q2h-container hidden-1n34kwc hidden-1lyufzz hidden-t6q74o\",\"data-framer-name\":\"Ticker Desktop S\",isAuthoredByUser:true,isModuleExternal:true,name:\"Ticker Desktop S\",nodeId:\"nx0ONpHeI\",scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.6,id:\"nx0ONpHeI\",layoutId:\"nx0ONpHeI\",name:\"Ticker Desktop S\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-utothj\",\"data-framer-name\":\"arts desktop s\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"o9v0MXxb7\",data:Art,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"o9v0MXxb7\",name:\"oFdYXuhP5\",type:\"Identifier\"},{collection:\"o9v0MXxb7\",name:\"JGtT4QarX\",type:\"Identifier\"},{collection:\"o9v0MXxb7\",name:\"nmXkZGjKT\",type:\"Identifier\"},{collection:\"o9v0MXxb7\",name:\"jTAFx0Ms5\",type:\"Identifier\"},{collection:\"o9v0MXxb7\",name:\"LHV8JaQOq\",type:\"Identifier\"},{collection:\"o9v0MXxb7\",name:\"V3AO4IPRg\",type:\"Identifier\"},{collection:\"o9v0MXxb7\",name:\"id\",type:\"Identifier\"}],where:{collection:\"o9v0MXxb7\",name:\"FX2u8unL5\",type:\"Identifier\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:ido9v0MXxb7,JGtT4QarX:JGtT4QarXo9v0MXxb7,jTAFx0Ms5:jTAFx0Ms5o9v0MXxb7,LHV8JaQOq:LHV8JaQOqo9v0MXxb7,nmXkZGjKT:nmXkZGjKTo9v0MXxb7,oFdYXuhP5:oFdYXuhP5o9v0MXxb7,V3AO4IPRg:V3AO4IPRgo9v0MXxb7},index1)=>{oFdYXuhP5o9v0MXxb7??=\"\";nmXkZGjKTo9v0MXxb7??=\"\";jTAFx0Ms5o9v0MXxb7??=\"\";LHV8JaQOqo9v0MXxb7??=true;V3AO4IPRgo9v0MXxb7??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`o9v0MXxb7-${ido9v0MXxb7}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oFdYXuhP5:oFdYXuhP5o9v0MXxb7},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x7k4a\",style:{scale:1.4},children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{oFdYXuhP5:oFdYXuhP5o9v0MXxb7},webPageId:\"gtmqjcHix\"},motionChild:true,nodeId:\"YbkkOMaRq\",scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-c6ivyb framer-koxpey\",style:{rotateX:-5},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:423,width:\"302px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yy301g-container\",inComponentSlot:true,nodeId:\"JG3nQfPRd\",rendersWithMotion:true,scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(ObjectItem,{Fd2V31JLF:\"SOLD\",fSv4rNftA:\"SOLD\",height:\"100%\",id:\"JG3nQfPRd\",J73PK0Qnb:jTAFx0Ms5o9v0MXxb7,K2cyCalHN:LHV8JaQOqo9v0MXxb7,layoutId:\"JG3nQfPRd\",oJEFDMRrF:false,PFqzvQXDP:V3AO4IPRgo9v0MXxb7,q0uufx66_:toResponsiveImage(JGtT4QarXo9v0MXxb7),style:{height:\"100%\",width:\"100%\"},unsVTmAhl:true,Uy46jRmJP:nmXkZGjKTo9v0MXxb7,variant:\"XOkv3ZYdT\",WchkFDPyO:false,width:\"100%\",WpzTaJRzY:negate(LHV8JaQOqo9v0MXxb7)})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-107sil\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mrbffp-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"K4bqIerDW\",rendersWithMotion:true,scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(ThemeImage,{darkImage:\"https://framerusercontent.com/images/iKAGlzMCy6JvLwEHbrovAtAgAk.png\",height:\"100%\",id:\"K4bqIerDW\",layoutId:\"K4bqIerDW\",lightImage:\"https://framerusercontent.com/images/iKAGlzMCy6JvLwEHbrovAtAgAk.png\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})},ido9v0MXxb7);})})})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dtjjwn-container hidden-1n34kwc hidden-t6q74o hidden-gu4sfw\",\"data-framer-name\":\"Ticker Tablet\",isAuthoredByUser:true,isModuleExternal:true,name:\"Ticker Tablet\",nodeId:\"SB0odCYUD\",scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.6,id:\"SB0odCYUD\",layoutId:\"SB0odCYUD\",name:\"Ticker Tablet\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qu9h1\",\"data-framer-name\":\"Tablet\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ZCdZMDVZr\",data:Art,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"ZCdZMDVZr\",name:\"oFdYXuhP5\",type:\"Identifier\"},{collection:\"ZCdZMDVZr\",name:\"JGtT4QarX\",type:\"Identifier\"},{collection:\"ZCdZMDVZr\",name:\"nmXkZGjKT\",type:\"Identifier\"},{collection:\"ZCdZMDVZr\",name:\"jTAFx0Ms5\",type:\"Identifier\"},{collection:\"ZCdZMDVZr\",name:\"LHV8JaQOq\",type:\"Identifier\"},{collection:\"ZCdZMDVZr\",name:\"V3AO4IPRg\",type:\"Identifier\"},{collection:\"ZCdZMDVZr\",name:\"id\",type:\"Identifier\"}],where:{collection:\"ZCdZMDVZr\",name:\"FX2u8unL5\",type:\"Identifier\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idZCdZMDVZr,JGtT4QarX:JGtT4QarXZCdZMDVZr,jTAFx0Ms5:jTAFx0Ms5ZCdZMDVZr,LHV8JaQOq:LHV8JaQOqZCdZMDVZr,nmXkZGjKT:nmXkZGjKTZCdZMDVZr,oFdYXuhP5:oFdYXuhP5ZCdZMDVZr,V3AO4IPRg:V3AO4IPRgZCdZMDVZr},index2)=>{oFdYXuhP5ZCdZMDVZr??=\"\";nmXkZGjKTZCdZMDVZr??=\"\";jTAFx0Ms5ZCdZMDVZr??=\"\";LHV8JaQOqZCdZMDVZr??=true;V3AO4IPRgZCdZMDVZr??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZCdZMDVZr-${idZCdZMDVZr}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oFdYXuhP5:oFdYXuhP5ZCdZMDVZr},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{oFdYXuhP5:oFdYXuhP5ZCdZMDVZr},webPageId:\"gtmqjcHix\"},motionChild:true,nodeId:\"AKQ0Y00hM\",scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-xxnqce framer-koxpey\",style:{scale:1.4},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ejfuzc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ozwmc9-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"STjxF0RDw\",rendersWithMotion:true,scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(ThemeImage,{darkImage:\"https://framerusercontent.com/images/iKAGlzMCy6JvLwEHbrovAtAgAk.png\",height:\"100%\",id:\"STjxF0RDw\",layoutId:\"STjxF0RDw\",lightImage:\"https://framerusercontent.com/images/iKAGlzMCy6JvLwEHbrovAtAgAk.png\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19ftbzg\",style:{rotateX:-5},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:316,width:\"231px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mmrfx-container\",inComponentSlot:true,nodeId:\"yfNpDKiWB\",rendersWithMotion:true,scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(ObjectItem,{Fd2V31JLF:\"SOLD\",fSv4rNftA:\"SOLD\",height:\"100%\",id:\"yfNpDKiWB\",J73PK0Qnb:jTAFx0Ms5ZCdZMDVZr,K2cyCalHN:LHV8JaQOqZCdZMDVZr,layoutId:\"yfNpDKiWB\",oJEFDMRrF:false,PFqzvQXDP:V3AO4IPRgZCdZMDVZr,q0uufx66_:toResponsiveImage(JGtT4QarXZCdZMDVZr),style:{height:\"100%\",width:\"100%\"},unsVTmAhl:true,Uy46jRmJP:nmXkZGjKTZCdZMDVZr,variant:\"gwhJso3Ed\",WchkFDPyO:false,width:\"100%\",WpzTaJRzY:negate(LHV8JaQOqZCdZMDVZr)})})})})]})})})},idZCdZMDVZr);})})})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-szbooq-container hidden-1n34kwc hidden-1lyufzz hidden-gu4sfw\",\"data-framer-name\":\"Ticker Mobile\",isAuthoredByUser:true,isModuleExternal:true,name:\"Ticker Mobile\",nodeId:\"ZT9mEjMN8\",scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.6,id:\"ZT9mEjMN8\",layoutId:\"ZT9mEjMN8\",name:\"Ticker Mobile\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-903z3w\",\"data-framer-name\":\"Mobile\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"sD71jyIEp\",data:Art,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"sD71jyIEp\",name:\"oFdYXuhP5\",type:\"Identifier\"},{collection:\"sD71jyIEp\",name:\"JGtT4QarX\",type:\"Identifier\"},{collection:\"sD71jyIEp\",name:\"nmXkZGjKT\",type:\"Identifier\"},{collection:\"sD71jyIEp\",name:\"jTAFx0Ms5\",type:\"Identifier\"},{collection:\"sD71jyIEp\",name:\"LHV8JaQOq\",type:\"Identifier\"},{collection:\"sD71jyIEp\",name:\"V3AO4IPRg\",type:\"Identifier\"},{collection:\"sD71jyIEp\",name:\"id\",type:\"Identifier\"}],where:{collection:\"sD71jyIEp\",name:\"FX2u8unL5\",type:\"Identifier\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:idsD71jyIEp,JGtT4QarX:JGtT4QarXsD71jyIEp,jTAFx0Ms5:jTAFx0Ms5sD71jyIEp,LHV8JaQOq:LHV8JaQOqsD71jyIEp,nmXkZGjKT:nmXkZGjKTsD71jyIEp,oFdYXuhP5:oFdYXuhP5sD71jyIEp,V3AO4IPRg:V3AO4IPRgsD71jyIEp},index3)=>{oFdYXuhP5sD71jyIEp??=\"\";nmXkZGjKTsD71jyIEp??=\"\";jTAFx0Ms5sD71jyIEp??=\"\";LHV8JaQOqsD71jyIEp??=true;V3AO4IPRgsD71jyIEp??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`sD71jyIEp-${idsD71jyIEp}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oFdYXuhP5:oFdYXuhP5sD71jyIEp},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{oFdYXuhP5:oFdYXuhP5sD71jyIEp},webPageId:\"gtmqjcHix\"},motionChild:true,nodeId:\"rSA4RI_qx\",scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-tetivc framer-koxpey\",style:{scale:1.4},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wotl73\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kufn3h-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"pgxlsVcl_\",rendersWithMotion:true,scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(ThemeImage,{darkImage:\"https://framerusercontent.com/images/iKAGlzMCy6JvLwEHbrovAtAgAk.png\",height:\"100%\",id:\"pgxlsVcl_\",layoutId:\"pgxlsVcl_\",lightImage:\"https://framerusercontent.com/images/iKAGlzMCy6JvLwEHbrovAtAgAk.png\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qep08d\",style:{rotateX:-5},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:265,width:\"186px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qa7iy7-container\",inComponentSlot:true,nodeId:\"W4IS426rS\",rendersWithMotion:true,scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(ObjectItem,{Fd2V31JLF:\"SOLD\",fSv4rNftA:\"SOLD\",height:\"100%\",id:\"W4IS426rS\",J73PK0Qnb:jTAFx0Ms5sD71jyIEp,K2cyCalHN:LHV8JaQOqsD71jyIEp,layoutId:\"W4IS426rS\",oJEFDMRrF:false,PFqzvQXDP:V3AO4IPRgsD71jyIEp,q0uufx66_:toResponsiveImage(JGtT4QarXsD71jyIEp),style:{height:\"100%\",width:\"100%\"},unsVTmAhl:true,Uy46jRmJP:nmXkZGjKTsD71jyIEp,variant:\"gwhJso3Ed\",WchkFDPyO:false,width:\"100%\",WpzTaJRzY:negate(LHV8JaQOqsD71jyIEp)})})})})]})})})},idsD71jyIEp);})})})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1izpzdn\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UMsIj_ljm\"},motionChild:true,nodeId:\"fGJ2JhBXv\",scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(MotionAMagneticHovermj3lxw,{className:\"framer-mj3lxw framer-koxpey\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jbKc3jaUt:{y:(componentViewport?.y||0)+0+0+0+0+0+0+0+643+25+0+0},LZ1rBh63n:{y:(componentViewport?.y||0)+0+0+0+0+0+71+0+589+50+0+0},RWngeYlVr:{y:(componentViewport?.y||0)+0+0+0+0+0+0+0+779+25+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+0+0+0+0+786+25+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ms0mr5-container\",nodeId:\"n9HiSf3OQ\",rendersWithMotion:true,scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(Button4,{height:\"100%\",HTi7mlkvK:100,id:\"n9HiSf3OQ\",kx9RUZky3:{borderColor:\"var(--token-fa928562-ef98-426e-847d-b4f2e884724a, rgb(28, 28, 29))\",borderStyle:\"solid\",borderWidth:1},layoutId:\"n9HiSf3OQ\",OzS8piCj0:false,QUcJ7urye:true,Shr2RB_N_:\"16px 32px 16px 32px\",variant:\"u3Fc8LVqx\",VftTy7iTx:\"Galerie ansehen\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KteLB4uCm\"},motionChild:true,nodeId:\"Tx119RKwz\",scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1q8oxtk framer-koxpey\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jbKc3jaUt:{y:(componentViewport?.y||0)+0+0+0+0+0+0+0+643+25+75+0},LZ1rBh63n:{y:(componentViewport?.y||0)+0+0+0+0+0+71+0+589+50+75+0},RWngeYlVr:{y:(componentViewport?.y||0)+0+0+0+0+0+0+0+779+25+75+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+0+0+0+0+786+25+75+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e7ifiv-container\",nodeId:\"puGsDXDpZ\",scopeId:\"AChirel6c\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LZ1rBh63n:{style:{height:\"100%\"}}},children:/*#__PURE__*/_jsx(Button4,{height:\"100%\",HTi7mlkvK:100,id:\"puGsDXDpZ\",kx9RUZky3:{borderColor:\"var(--token-fa928562-ef98-426e-847d-b4f2e884724a, rgb(28, 28, 29))\",borderStyle:\"solid\",borderWidth:1},layoutId:\"puGsDXDpZ\",OzS8piCj0:false,QUcJ7urye:false,Shr2RB_N_:\"12px 20px 12px 20px\",style:{height:\"100%\",width:\"100%\"},variant:\"lHKeuNjtP\",VftTy7iTx:\"Kontaktiere mich\",width:\"100%\"})})})})})})})]})]})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NAdrV.framer-koxpey, .framer-NAdrV .framer-koxpey { display: block; }\",\".framer-NAdrV.framer-1n34kwc { align-content: center; align-items: center; background-color: var(--token-53d0853a-31ab-4c4e-a98c-88845562c580, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1901px; }\",\".framer-NAdrV .framer-151hylw-container { cursor: default; flex: none; height: 100vh; left: calc(49.973698053655994% - 99.94739610731193% / 2); pointer-events: none; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-NAdrV .framer-1hsimqv { 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; min-height: 100vh; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NAdrV .framer-1hl0em6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 100vh; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-NAdrV .framer-upvn43 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-NAdrV .framer-18u9jix { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) -8%, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 87%, rgba(0,0,0,0) 93%) add; align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) -8%, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 87%, rgba(0,0,0,0) 93%) add; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NAdrV .framer-pg7nqx-container { -webkit-user-select: none; flex: 1 0 0px; height: 786px; position: relative; user-select: none; width: 1px; }\",\".framer-NAdrV .framer-7tmf3c { -webkit-user-select: none; align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 371px; height: 962px; justify-content: flex-start; padding: 0px 359px 0px 0px; position: relative; user-select: none; width: min-content; z-index: 6; }\",\".framer-NAdrV .framer-4zyew2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 15px; height: 807px; justify-content: center; padding: 0px; position: relative; width: 352px; }\",\".framer-NAdrV .framer-1xo6zn6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 429px; justify-content: center; left: calc(49.90019960079842% - 346px / 2); overflow: visible; padding: 0px; position: absolute; text-decoration: none; top: 336px; width: 346px; z-index: 1; }\",\".framer-NAdrV .framer-1t9epcp-container, .framer-NAdrV .framer-yy301g-container { -webkit-user-select: none; flex: 1 0 0px; height: 100%; pointer-events: none; position: relative; user-select: none; width: 1px; }\",\".framer-NAdrV .framer-1ym0l13 { 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: 623px; }\",\".framer-NAdrV .framer-1he47ue-container { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 12.153914168074323%, rgb(0, 0, 0) 23.110496426878452%, rgb(0, 0, 0) 82%, rgba(0, 0, 0, 0) 87%) intersect; flex: none; height: 1013px; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 12.153914168074323%, rgb(0, 0, 0) 23.110496426878452%, rgb(0, 0, 0) 82%, rgba(0, 0, 0, 0) 87%) intersect; position: relative; width: 797px; }\",\".framer-NAdrV .framer-11f0q2h-container { -webkit-user-select: none; flex: 1 0 0px; height: 1031px; position: relative; user-select: none; width: 1px; }\",\".framer-NAdrV .framer-utothj { -webkit-user-select: none; align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 310px; height: 962px; justify-content: flex-start; padding: 75px 288px 0px 0px; pointer-events: none; position: relative; user-select: none; width: min-content; z-index: 6; }\",\".framer-NAdrV .framer-x7k4a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 15px; height: 807px; justify-content: center; padding: 0px; position: relative; width: 307px; }\",\".framer-NAdrV .framer-c6ivyb { -webkit-user-select: auto; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 423px; justify-content: center; left: calc(49.83713355048862% - 302px / 2); overflow: visible; padding: 0px; pointer-events: auto; position: absolute; text-decoration: none; top: 344px; user-select: auto; width: 302px; z-index: 9; }\",\".framer-NAdrV .framer-107sil { 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: 305px; }\",\".framer-NAdrV .framer-1mrbffp-container { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 12.153914168074323%, rgb(0, 0, 0) 23.110496426878452%, rgb(0, 0, 0) 82%, rgba(0, 0, 0, 0) 87%) intersect; flex: none; height: 879px; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 12.153914168074323%, rgb(0, 0, 0) 23.110496426878452%, rgb(0, 0, 0) 82%, rgba(0, 0, 0, 0) 87%) intersect; position: relative; width: 698px; }\",\".framer-NAdrV .framer-dtjjwn-container, .framer-NAdrV .framer-szbooq-container { -webkit-user-select: none; align-self: stretch; flex: 1 0 0px; height: auto; position: relative; user-select: none; width: 1px; }\",\".framer-NAdrV .framer-1qu9h1 { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 108px; height: 547px; justify-content: flex-start; padding: 0px 105px 0px 0px; position: relative; width: min-content; z-index: 6; }\",\".framer-NAdrV .framer-xxnqce { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: 370px; }\",\".framer-NAdrV .framer-1ejfuzc, .framer-NAdrV .framer-wotl73 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NAdrV .framer-1ozwmc9-container { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 16%, rgb(0, 0, 0) 23%, rgb(0, 0, 0) 78%, rgba(0, 0, 0, 0) 82%) intersect; flex: none; height: 664px; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 16%, rgb(0, 0, 0) 23%, rgb(0, 0, 0) 78%, rgba(0, 0, 0, 0) 82%) intersect; position: relative; width: 528px; }\",\".framer-NAdrV .framer-19ftbzg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 289px; justify-content: center; left: calc(49.729729729729755% - 121.89189189189189% / 2); overflow: visible; padding: 0px; position: absolute; top: 283px; width: 122%; z-index: 1; }\",\".framer-NAdrV .framer-1mmrfx-container { flex: none; height: 316px; position: relative; width: 231px; }\",\".framer-NAdrV .framer-903z3w { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: 503px; justify-content: flex-start; padding: 0px 70px 0px 0px; position: relative; width: min-content; z-index: 6; }\",\".framer-NAdrV .framer-tetivc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 15px; height: min-content; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: 274px; }\",\".framer-NAdrV .framer-1kufn3h-container { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 19%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 77%, rgba(0, 0, 0, 0) 83%) intersect; flex: none; height: 542px; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 19%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 77%, rgba(0, 0, 0, 0) 83%) intersect; position: relative; width: 429px; }\",\".framer-NAdrV .framer-qep08d { align-content: flex-start; align-items: flex-start; aspect-ratio: 0.7724358974358975 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 265px); justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 234px; transform: translateX(-50%); width: 68%; z-index: 1; }\",\".framer-NAdrV .framer-qa7iy7-container { flex: none; height: 265px; position: relative; width: 186px; }\",\".framer-NAdrV .framer-1izpzdn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; overflow: visible; padding: 25px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-NAdrV .framer-mj3lxw { 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; text-decoration: none; width: min-content; }\",\".framer-NAdrV .framer-1ms0mr5-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-NAdrV .framer-1q8oxtk { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; min-height: 44px; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: auto; }\",\".framer-NAdrV .framer-e7ifiv-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; z-index: 0; }\",\"@media (min-width: 810px) and (max-width: 1198px) { .framer-NAdrV.framer-1n34kwc { width: 810px; } .framer-NAdrV .framer-1hsimqv { gap: unset; justify-content: space-between; min-height: unset; } .framer-NAdrV .framer-1hl0em6 { min-height: 403px; } .framer-NAdrV .framer-upvn43 { min-height: 464px; padding: 0px 0px 96px 0px; } .framer-NAdrV .framer-18u9jix { -webkit-mask: linear-gradient(0deg, #000000 2%, rgb(0, 0, 0) 84%, rgba(0,0,0,0) 87%) add; align-content: flex-start; align-items: flex-start; height: 643px; mask: linear-gradient(0deg, #000000 2%, rgb(0, 0, 0) 84%, rgba(0,0,0,0) 87%) add; } .framer-NAdrV .framer-dtjjwn-container { align-self: unset; height: 100%; } .framer-NAdrV .framer-mj3lxw { gap: 100px; } .framer-NAdrV .framer-1ms0mr5-container { order: 0; }}\",\"@media (max-width: 809px) { .framer-NAdrV.framer-1n34kwc { width: 390px; } .framer-NAdrV .framer-upvn43 { min-height: 858px; padding: 0px; } .framer-NAdrV .framer-18u9jix { -webkit-mask: linear-gradient(0deg, #000000 2%, rgb(0, 0, 0) 64%, rgba(0,0,0,0) 67%) add; height: 575px; mask: linear-gradient(0deg, #000000 2%, rgb(0, 0, 0) 64%, rgba(0,0,0,0) 67%) add; order: 0; } .framer-NAdrV .framer-szbooq-container { align-self: unset; height: 100%; } .framer-NAdrV .framer-1izpzdn { order: 1; padding: 50px 0px 100px 0px; } .framer-NAdrV .framer-e7ifiv-container { flex: none; width: auto; }}\",\"@media (min-width: 1199px) and (max-width: 1900px) { .framer-NAdrV.framer-1n34kwc { width: 1199px; } .framer-NAdrV .framer-upvn43 { justify-content: center; min-height: 100vh; padding: 0px 0px 2px 0px; } .framer-NAdrV .framer-18u9jix { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 2%, rgb(0, 0, 0) 5%, rgb(0, 0, 0) 92%, rgba(0,0,0,0) 97%) add; height: 779px; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 2%, rgb(0, 0, 0) 5%, rgb(0, 0, 0) 92%, rgba(0,0,0,0) 97%) add; } .framer-NAdrV .framer-11f0q2h-container { order: 1; } .framer-NAdrV .framer-1izpzdn { padding: 25px 0px 120px 0px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1038\n * @framerIntrinsicWidth 1901\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jbKc3jaUt\":{\"layout\":[\"fixed\",\"auto\"]},\"LZ1rBh63n\":{\"layout\":[\"fixed\",\"auto\"]},\"RWngeYlVr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerAChirel6c=withCSS(Component,css,\"framer-NAdrV\");export default FramerAChirel6c;FramerAChirel6c.displayName=\"Home\";FramerAChirel6c.defaultProps={height:1038,width:1901};addFonts(FramerAChirel6c,[{explicitInter:true,fonts:[]},...LoaderFonts,...ObjectItemFonts,...ThemeImageFonts,...TickerFonts,...Button4Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAChirel6c\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1901\",\"framerIntrinsicHeight\":\"1038\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jbKc3jaUt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LZ1rBh63n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RWngeYlVr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "MotionDivWithFX", "withFX", "motion", "ThemeImageFonts", "getFonts", "ThemeImage", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "oFdYXuhP5o9quii_bw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearz0twnw", "args", "onAppearqnatt7", "onAppear3lvqnv", "onAppear7myu66", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "RichText2", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "Framerxo8HRJ_PC", "withCSS", "xo8HRJ_PC_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LoaderFonts", "getFonts", "xo8HRJ_PC_default", "ObjectItemFonts", "Z6_7qifJT_default", "ThemeImageFonts", "ThemeImage", "TickerFonts", "Ticker", "Button4Fonts", "z9GUYWpAY_default", "MotionAMagneticHovermj3lxw", "withCodeBoundaryForOverrides", "motion", "MagneticHover", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "negate", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transformTemplate1", "_", "t", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "oFdYXuhP5o9quii_bw", "JGtT4QarXo9quii_bw", "nmXkZGjKTo9quii_bw", "jTAFx0Ms5o9quii_bw", "LHV8JaQOqo9quii_bw", "V3AO4IPRgo9quii_bw", "ido9quii_bw", "oFdYXuhP5o9v0MXxb7", "JGtT4QarXo9v0MXxb7", "nmXkZGjKTo9v0MXxb7", "jTAFx0Ms5o9v0MXxb7", "LHV8JaQOqo9v0MXxb7", "V3AO4IPRgo9v0MXxb7", "ido9v0MXxb7", "oFdYXuhP5ZCdZMDVZr", "JGtT4QarXZCdZMDVZr", "nmXkZGjKTZCdZMDVZr", "jTAFx0Ms5ZCdZMDVZr", "LHV8JaQOqZCdZMDVZr", "V3AO4IPRgZCdZMDVZr", "idZCdZMDVZr", "oFdYXuhP5sD71jyIEp", "JGtT4QarXsD71jyIEp", "nmXkZGjKTsD71jyIEp", "jTAFx0Ms5sD71jyIEp", "LHV8JaQOqsD71jyIEp", "V3AO4IPRgsD71jyIEp", "idsD71jyIEp", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "ChildrenCanSuspend", "FQWdrGOeU_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "css", "FramerAChirel6c", "withCSS", "AChirel6c_default", "addFonts", "__FramerMetadata__"]
}
