{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/sK9q20UrvRztdebA5J7g/Ticker.js", "ssg:https://framerusercontent.com/modules/KG2hVtlxKEoQBkpB53OH/BQ8Mx3OSOaBFxXa061wF/Qqm0KgfJX.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (2923eb5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/sK9q20UrvRztdebA5J7g/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/t9V3bT5FLSnadb91gx5O/mez5wbHml8e5DEvH0hEi/FTS5t7pxa.js\";import*as localizedValues from\"./Qqm0KgfJX-0.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"cL0ubV1VQ\",\"NQe6nEZ5E\",\"Ld9UeUCEo\"];const serializationHash=\"framer-bPwPy\";const variantClassNames={cL0ubV1VQ:\"framer-v-171a7fg\",Ld9UeUCEo:\"framer-v-12i4bi2\",NQe6nEZ5E:\"framer-v-d1rqqp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={gYXauFsCJ:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"cL0ubV1VQ\",\"Variant 3\":\"Ld9UeUCEo\",ipad:\"NQe6nEZ5E\"};const getProps=({height,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,b1AOaFkKC:(_ref=title!==null&&title!==void 0?title:props.b1AOaFkKC)!==null&&_ref!==void 0?_ref:\"Starke Partner\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"cL0ubV1VQ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,b1AOaFkKC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cL0ubV1VQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Ld9UeUCEo\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Ld9UeUCEo\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-171a7fg\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"cL0ubV1VQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(252, 252, 252)\",...style},...addPropertyOverrides({Ld9UeUCEo:{\"data-framer-name\":\"Variant 3\"},NQe6nEZ5E:{\"data-framer-name\":\"ipad\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1sssjj5\",\"data-styles-preset\":\"FTS5t7pxa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-7f4636de-7fde-45af-b110-2fb53634cf44, rgb(79, 79, 79)))\"},children:\"Starke Partner\"})}),className:\"framer-bye99i\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gJ2fmvcIX\",style:{\"--extracted-gdpscs\":\"var(--token-7f4636de-7fde-45af-b110-2fb53634cf44, rgb(79, 79, 79))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:b1AOaFkKC,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dw844j-container\",layoutDependency:layoutDependency,layoutId:\"NLhdEt0Ht-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:120,height:\"100%\",hoverFactor:1,id:\"NLhdEt0Ht\",layoutId:\"NLhdEt0Ht\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://www.blizzard-tecnica.com/at/de\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"269px\",src:\"https://framerusercontent.com/images/HxvPjHQbpOIYniZyzEX9hlCPq6w.png\",srcSet:\"https://framerusercontent.com/images/HxvPjHQbpOIYniZyzEX9hlCPq6w.png?scale-down-to=512 512w,https://framerusercontent.com/images/HxvPjHQbpOIYniZyzEX9hlCPq6w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HxvPjHQbpOIYniZyzEX9hlCPq6w.png 1076w\"},className:\"framer-1mk90gh framer-1gy958\",\"data-framer-name\":\"image 11\",layoutDependency:layoutDependency,layoutId:\"L02DnnSDX\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.blizzard-tecnica.com/at/de\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"301px\",src:\"https://framerusercontent.com/images/tuZxjZfPIXpHeFuyWQaMGp4iMw.png\",srcSet:\"https://framerusercontent.com/images/tuZxjZfPIXpHeFuyWQaMGp4iMw.png?scale-down-to=512 512w,https://framerusercontent.com/images/tuZxjZfPIXpHeFuyWQaMGp4iMw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tuZxjZfPIXpHeFuyWQaMGp4iMw.png 1192w\"},className:\"framer-1kdsg3e framer-1gy958\",\"data-framer-name\":\"image 13\",layoutDependency:layoutDependency,layoutId:\"tdyRcLSdU\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.alpina-sports.com/de/de/\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-df7jqq framer-1gy958\",\"data-framer-name\":\"Frame 15573\",layoutDependency:layoutDependency,layoutId:\"MxXfzpMxF\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-v4nxc8\",\"data-framer-name\":\"Rectangle 9\",layoutDependency:layoutDependency,layoutId:\"idUKvxfr8\",style:{backgroundColor:\"rgb(230, 0, 46)\",borderBottomLeftRadius:2.41,borderBottomRightRadius:2.41,borderTopLeftRadius:2.41,borderTopRightRadius:2.41}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"193px\",src:\"https://framerusercontent.com/images/cy8BG05R9iFFcA0WaZlXDdphL8Q.png\",srcSet:\"https://framerusercontent.com/images/cy8BG05R9iFFcA0WaZlXDdphL8Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/cy8BG05R9iFFcA0WaZlXDdphL8Q.png 612w\"},className:\"framer-10im5ds\",\"data-framer-name\":\"image 12\",layoutDependency:layoutDependency,layoutId:\"ekCzcmbkx\"})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.eskagloves.com/en/pc/sports-en/wintersports-en\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:165,intrinsicWidth:566,pixelHeight:165,pixelWidth:566,sizes:\"175px\",src:\"https://framerusercontent.com/images/nFq16LDAqhaFV7C4qxVlkA8VaHw.png\",srcSet:\"https://framerusercontent.com/images/nFq16LDAqhaFV7C4qxVlkA8VaHw.png?scale-down-to=512 512w,https://framerusercontent.com/images/nFq16LDAqhaFV7C4qxVlkA8VaHw.png 566w\"},className:\"framer-1ek9m44 framer-1gy958\",\"data-framer-name\":\"Eska_Glove_Revolution_mit_Pfad\",layoutDependency:layoutDependency,layoutId:\"giC86PmkK\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1141,intrinsicWidth:2362,pixelHeight:1141,pixelWidth:2362,sizes:\"134px\",src:\"https://framerusercontent.com/images/GpCvXdAQxLHfaEL4HhqXbmcOCo.png\",srcSet:\"https://framerusercontent.com/images/GpCvXdAQxLHfaEL4HhqXbmcOCo.png?scale-down-to=512 512w,https://framerusercontent.com/images/GpCvXdAQxLHfaEL4HhqXbmcOCo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GpCvXdAQxLHfaEL4HhqXbmcOCo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GpCvXdAQxLHfaEL4HhqXbmcOCo.png 2362w\"},className:\"framer-h8azj3\",\"data-framer-name\":\"Logo INNSBRUCK_rgb 1\",layoutDependency:layoutDependency,layoutId:\"wXhNJqPGD\"}),/*#__PURE__*/_jsx(Link,{href:\"https://www.quiksilver-europe.at/\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1536,intrinsicWidth:2048,pixelHeight:1157,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:\"105px\",src:\"https://framerusercontent.com/images/TdYBWwcqtxJ3wdskCIMxCfqDFo.png\",srcSet:\"https://framerusercontent.com/images/TdYBWwcqtxJ3wdskCIMxCfqDFo.png?scale-down-to=512 512w,https://framerusercontent.com/images/TdYBWwcqtxJ3wdskCIMxCfqDFo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TdYBWwcqtxJ3wdskCIMxCfqDFo.png 2048w\"},className:\"framer-1nro5uu framer-1gy958\",\"data-framer-name\":\"Quiksilver\",layoutDependency:layoutDependency,layoutId:\"xV_x2Zx6j\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.thule.com/de-at/\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:650,intrinsicWidth:866,pixelHeight:233,pixelWidth:866,positionX:\"center\",positionY:\"center\",sizes:\"210px\",src:\"https://framerusercontent.com/images/e1k8b45zN8pvkiWhRnJx2dMAgjI.png\",srcSet:\"https://framerusercontent.com/images/e1k8b45zN8pvkiWhRnJx2dMAgjI.png?scale-down-to=512 512w,https://framerusercontent.com/images/e1k8b45zN8pvkiWhRnJx2dMAgjI.png 866w\"},className:\"framer-17oph5r framer-1gy958\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"nSkmFDWIg\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://kohla.at/\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:185,intrinsicWidth:787,pixelHeight:185,pixelWidth:787,sizes:\"254px\",src:\"https://framerusercontent.com/images/ko7USQdalzCwCMHI6eHQLv4z6U.png\",srcSet:\"https://framerusercontent.com/images/ko7USQdalzCwCMHI6eHQLv4z6U.png?scale-down-to=512 512w,https://framerusercontent.com/images/ko7USQdalzCwCMHI6eHQLv4z6U.png 787w\"},className:\"framer-1by5m6t framer-1gy958\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"utv85YpgD\"})})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({NQe6nEZ5E:{gap:90}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v5pu12\",layoutDependency:layoutDependency,layoutId:\"tkjIH2SUs\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.blizzard-tecnica.com/at/de\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"208px\",src:\"https://framerusercontent.com/images/HxvPjHQbpOIYniZyzEX9hlCPq6w.png\",srcSet:\"https://framerusercontent.com/images/HxvPjHQbpOIYniZyzEX9hlCPq6w.png?scale-down-to=512 512w,https://framerusercontent.com/images/HxvPjHQbpOIYniZyzEX9hlCPq6w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HxvPjHQbpOIYniZyzEX9hlCPq6w.png 1076w\"},className:\"framer-mhi734 framer-1gy958\",\"data-framer-name\":\"image 11\",layoutDependency:layoutDependency,layoutId:\"MGU6Q1Ujm\",...addPropertyOverrides({Ld9UeUCEo:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||878)-80-732.8695652173913)/2+66+40)+0+0),positionX:\"center\",positionY:\"center\",sizes:\"208px\",src:\"https://framerusercontent.com/images/HxvPjHQbpOIYniZyzEX9hlCPq6w.png\",srcSet:\"https://framerusercontent.com/images/HxvPjHQbpOIYniZyzEX9hlCPq6w.png?scale-down-to=512 512w,https://framerusercontent.com/images/HxvPjHQbpOIYniZyzEX9hlCPq6w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HxvPjHQbpOIYniZyzEX9hlCPq6w.png 1076w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.blizzard-tecnica.com/at/de\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"198px\",src:\"https://framerusercontent.com/images/tuZxjZfPIXpHeFuyWQaMGp4iMw.png\",srcSet:\"https://framerusercontent.com/images/tuZxjZfPIXpHeFuyWQaMGp4iMw.png?scale-down-to=512 512w,https://framerusercontent.com/images/tuZxjZfPIXpHeFuyWQaMGp4iMw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tuZxjZfPIXpHeFuyWQaMGp4iMw.png 1192w\"},className:\"framer-1ghbm14 framer-1gy958\",\"data-framer-name\":\"image 13\",layoutDependency:layoutDependency,layoutId:\"ZAAQsGoVZ\",...addPropertyOverrides({Ld9UeUCEo:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||878)-80-732.8695652173913)/2+66+40)+0+69),positionX:\"center\",positionY:\"center\",sizes:\"198px\",src:\"https://framerusercontent.com/images/tuZxjZfPIXpHeFuyWQaMGp4iMw.png\",srcSet:\"https://framerusercontent.com/images/tuZxjZfPIXpHeFuyWQaMGp4iMw.png?scale-down-to=512 512w,https://framerusercontent.com/images/tuZxjZfPIXpHeFuyWQaMGp4iMw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tuZxjZfPIXpHeFuyWQaMGp4iMw.png 1192w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.eskagloves.com/en/pc/sports-en/wintersports-en\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:165,intrinsicWidth:566,pixelHeight:165,pixelWidth:566,sizes:\"147.093px\",src:\"https://framerusercontent.com/images/nFq16LDAqhaFV7C4qxVlkA8VaHw.png\",srcSet:\"https://framerusercontent.com/images/nFq16LDAqhaFV7C4qxVlkA8VaHw.png?scale-down-to=512 512w,https://framerusercontent.com/images/nFq16LDAqhaFV7C4qxVlkA8VaHw.png 566w\"},className:\"framer-man0b9 framer-1gy958\",\"data-framer-name\":\"Eska_Glove_Revolution_mit_Pfad\",layoutDependency:layoutDependency,layoutId:\"Bb5X0RRRg\",...addPropertyOverrides({Ld9UeUCEo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:165,intrinsicWidth:566,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||878)-80-732.8695652173913)/2+66+40)+0+126),pixelHeight:165,pixelWidth:566,sizes:\"147.093px\",src:\"https://framerusercontent.com/images/nFq16LDAqhaFV7C4qxVlkA8VaHw.png\",srcSet:\"https://framerusercontent.com/images/nFq16LDAqhaFV7C4qxVlkA8VaHw.png?scale-down-to=512 512w,https://framerusercontent.com/images/nFq16LDAqhaFV7C4qxVlkA8VaHw.png 566w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.alpina-sports.com/de/de/\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-mgilr framer-1gy958\",\"data-framer-name\":\"Frame 15573\",layoutDependency:layoutDependency,layoutId:\"v8NgYwlhX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uukbs0\",\"data-framer-name\":\"Rectangle 9\",layoutDependency:layoutDependency,layoutId:\"K54mrGGOQ\",style:{backgroundColor:\"rgb(230, 0, 46)\",borderBottomLeftRadius:2.41,borderBottomRightRadius:2.41,borderTopLeftRadius:2.41,borderTopRightRadius:2.41}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/cy8BG05R9iFFcA0WaZlXDdphL8Q.png\",srcSet:\"https://framerusercontent.com/images/cy8BG05R9iFFcA0WaZlXDdphL8Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/cy8BG05R9iFFcA0WaZlXDdphL8Q.png 612w\"},className:\"framer-hx13h9\",\"data-framer-name\":\"image 12\",layoutDependency:layoutDependency,layoutId:\"ifCRg1Njm\",...addPropertyOverrides({Ld9UeUCEo:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||878)-80-732.8695652173913)/2+66+40)+0+200.8695652173913+34-37),src:\"https://framerusercontent.com/images/cy8BG05R9iFFcA0WaZlXDdphL8Q.png\",srcSet:\"https://framerusercontent.com/images/cy8BG05R9iFFcA0WaZlXDdphL8Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/cy8BG05R9iFFcA0WaZlXDdphL8Q.png 612w\"}}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1536,intrinsicWidth:2048,pixelHeight:1157,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:\"105px\",src:\"https://framerusercontent.com/images/TdYBWwcqtxJ3wdskCIMxCfqDFo.png\",srcSet:\"https://framerusercontent.com/images/TdYBWwcqtxJ3wdskCIMxCfqDFo.png?scale-down-to=512 512w,https://framerusercontent.com/images/TdYBWwcqtxJ3wdskCIMxCfqDFo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TdYBWwcqtxJ3wdskCIMxCfqDFo.png 2048w\"},className:\"framer-1b9rxzx\",\"data-framer-name\":\"Quiksilver\",layoutDependency:layoutDependency,layoutId:\"REcy6KuBz\",...addPropertyOverrides({Ld9UeUCEo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1536,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||878)-80-732.8695652173913)/2+66+40)+0+363.8695652173913),pixelHeight:1157,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:\"105px\",src:\"https://framerusercontent.com/images/TdYBWwcqtxJ3wdskCIMxCfqDFo.png\",srcSet:\"https://framerusercontent.com/images/TdYBWwcqtxJ3wdskCIMxCfqDFo.png?scale-down-to=512 512w,https://framerusercontent.com/images/TdYBWwcqtxJ3wdskCIMxCfqDFo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TdYBWwcqtxJ3wdskCIMxCfqDFo.png 2048w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:\"https://www.thule.com/de-at/\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:650,intrinsicWidth:866,pixelHeight:233,pixelWidth:866,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/e1k8b45zN8pvkiWhRnJx2dMAgjI.png\",srcSet:\"https://framerusercontent.com/images/e1k8b45zN8pvkiWhRnJx2dMAgjI.png?scale-down-to=512 512w,https://framerusercontent.com/images/e1k8b45zN8pvkiWhRnJx2dMAgjI.png 866w\"},className:\"framer-ymc1td framer-1gy958\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"Ze2jg6F3L\",...addPropertyOverrides({Ld9UeUCEo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:650,intrinsicWidth:866,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||878)-80-732.8695652173913)/2+66+40)+0+474.8695652173913),pixelHeight:233,pixelWidth:866,positionX:\"center\",positionY:\"center\",sizes:\"210px\",src:\"https://framerusercontent.com/images/e1k8b45zN8pvkiWhRnJx2dMAgjI.png\",srcSet:\"https://framerusercontent.com/images/e1k8b45zN8pvkiWhRnJx2dMAgjI.png?scale-down-to=512 512w,https://framerusercontent.com/images/e1k8b45zN8pvkiWhRnJx2dMAgjI.png 866w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:185,intrinsicWidth:787,pixelHeight:185,pixelWidth:787,sizes:\"254px\",src:\"https://framerusercontent.com/images/ko7USQdalzCwCMHI6eHQLv4z6U.png\",srcSet:\"https://framerusercontent.com/images/ko7USQdalzCwCMHI6eHQLv4z6U.png?scale-down-to=512 512w,https://framerusercontent.com/images/ko7USQdalzCwCMHI6eHQLv4z6U.png 787w\"},className:\"framer-1vdr3vk\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hpgH87Mt_\",...addPropertyOverrides({Ld9UeUCEo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:185,intrinsicWidth:787,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||878)-80-732.8695652173913)/2+66+40)+0+566.8695652173913),pixelHeight:185,pixelWidth:787,sizes:\"254px\",src:\"https://framerusercontent.com/images/ko7USQdalzCwCMHI6eHQLv4z6U.png\",srcSet:\"https://framerusercontent.com/images/ko7USQdalzCwCMHI6eHQLv4z6U.png?scale-down-to=512 512w,https://framerusercontent.com/images/ko7USQdalzCwCMHI6eHQLv4z6U.png 787w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1141,intrinsicWidth:2362,pixelHeight:1141,pixelWidth:2362,sizes:\"134px\",src:\"https://framerusercontent.com/images/GpCvXdAQxLHfaEL4HhqXbmcOCo.png\",srcSet:\"https://framerusercontent.com/images/GpCvXdAQxLHfaEL4HhqXbmcOCo.png?scale-down-to=512 512w,https://framerusercontent.com/images/GpCvXdAQxLHfaEL4HhqXbmcOCo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GpCvXdAQxLHfaEL4HhqXbmcOCo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GpCvXdAQxLHfaEL4HhqXbmcOCo.png 2362w\"},className:\"framer-pcpj0o\",\"data-framer-name\":\"Logo INNSBRUCK_rgb 1\",layoutDependency:layoutDependency,layoutId:\"t3JY6y2e3\",...addPropertyOverrides({Ld9UeUCEo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1141,intrinsicWidth:2362,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||878)-80-732.8695652173913)/2+66+40)+0+266.8695652173913),pixelHeight:1141,pixelWidth:2362,sizes:\"134px\",src:\"https://framerusercontent.com/images/GpCvXdAQxLHfaEL4HhqXbmcOCo.png\",srcSet:\"https://framerusercontent.com/images/GpCvXdAQxLHfaEL4HhqXbmcOCo.png?scale-down-to=512 512w,https://framerusercontent.com/images/GpCvXdAQxLHfaEL4HhqXbmcOCo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GpCvXdAQxLHfaEL4HhqXbmcOCo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GpCvXdAQxLHfaEL4HhqXbmcOCo.png 2362w\"}}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bPwPy.framer-1gy958, .framer-bPwPy .framer-1gy958 { display: block; }\",\".framer-bPwPy.framer-171a7fg { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 100px; position: relative; width: 1200px; }\",\".framer-bPwPy .framer-bye99i { flex: none; height: auto; max-width: 1800px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bPwPy .framer-dw844j-container { flex: none; height: 150px; position: relative; width: 100%; }\",\".framer-bPwPy .framer-1mk90gh { aspect-ratio: 5.599999618786457 / 1; height: var(--framer-aspect-ratio-supported, 48px); position: relative; text-decoration: none; width: 269px; }\",\".framer-bPwPy .framer-1kdsg3e { aspect-ratio: 7.918032818555784 / 1; height: var(--framer-aspect-ratio-supported, 38px); position: relative; text-decoration: none; width: 301px; }\",\".framer-bPwPy .framer-df7jqq { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-bPwPy .framer-v4nxc8 { aspect-ratio: 4.882353071718882 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 235px; }\",\".framer-bPwPy .framer-10im5ds, .framer-bPwPy .framer-hx13h9 { aspect-ratio: 7.034482556753388 / 1; bottom: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 27px); left: 21px; position: absolute; right: 21px; z-index: 1; }\",\".framer-bPwPy .framer-1ek9m44 { aspect-ratio: 3.43030303030303 / 1; height: var(--framer-aspect-ratio-supported, 51px); overflow: visible; position: relative; text-decoration: none; width: 175px; }\",\".framer-bPwPy .framer-h8azj3 { aspect-ratio: 2.07011393514461 / 1; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 134px; }\",\".framer-bPwPy .framer-1nro5uu { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 79px); overflow: visible; position: relative; text-decoration: none; width: 105px; }\",\".framer-bPwPy .framer-17oph5r { height: 60px; overflow: visible; position: relative; text-decoration: none; width: 210px; }\",\".framer-bPwPy .framer-1by5m6t { aspect-ratio: 4.254054054054054 / 1; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; text-decoration: none; width: 254px; }\",\".framer-bPwPy .framer-1v5pu12 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-bPwPy .framer-mhi734 { aspect-ratio: 5.599999618786457 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 37px); position: relative; text-decoration: none; width: 208px; }\",\".framer-bPwPy .framer-1ghbm14 { aspect-ratio: 7.918032818555784 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; text-decoration: none; width: 198px; }\",\".framer-bPwPy .framer-man0b9 { aspect-ratio: 3.43030303030303 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); overflow: visible; position: relative; text-decoration: none; width: 147px; }\",\".framer-bPwPy .framer-mgilr { 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: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-bPwPy .framer-1uukbs0 { aspect-ratio: 4.882353071718882 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 166px; }\",\".framer-bPwPy .framer-1b9rxzx { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 79px); overflow: visible; position: relative; width: 105px; }\",\".framer-bPwPy .framer-ymc1td { flex: none; height: 60px; overflow: visible; position: relative; text-decoration: none; width: 210px; }\",\".framer-bPwPy .framer-1vdr3vk { aspect-ratio: 4.254054054054054 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 254px; }\",\".framer-bPwPy .framer-pcpj0o { aspect-ratio: 2.07011393514461 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 134px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bPwPy.framer-171a7fg, .framer-bPwPy .framer-df7jqq, .framer-bPwPy .framer-1v5pu12, .framer-bPwPy .framer-mgilr { gap: 0px; } .framer-bPwPy.framer-171a7fg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-bPwPy.framer-171a7fg > :first-child, .framer-bPwPy .framer-df7jqq > :first-child, .framer-bPwPy .framer-1v5pu12 > :first-child, .framer-bPwPy .framer-mgilr > :first-child { margin-top: 0px; } .framer-bPwPy.framer-171a7fg > :last-child, .framer-bPwPy .framer-df7jqq > :last-child, .framer-bPwPy .framer-1v5pu12 > :last-child, .framer-bPwPy .framer-mgilr > :last-child { margin-bottom: 0px; } .framer-bPwPy .framer-df7jqq > *, .framer-bPwPy .framer-mgilr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bPwPy .framer-1v5pu12 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-bPwPy.framer-v-d1rqqp.framer-171a7fg { padding: 60px 40px 60px 40px; }\",\".framer-bPwPy.framer-v-12i4bi2.framer-171a7fg { padding: 40px 20px 40px 20px; width: 390px; }\",\".framer-bPwPy.framer-v-12i4bi2 .framer-mhi734 { order: 0; }\",\".framer-bPwPy.framer-v-12i4bi2 .framer-1ghbm14 { order: 1; }\",\".framer-bPwPy.framer-v-12i4bi2 .framer-man0b9 { order: 2; }\",\".framer-bPwPy.framer-v-12i4bi2 .framer-mgilr { order: 3; }\",\".framer-bPwPy.framer-v-12i4bi2 .framer-hx13h9 { height: var(--framer-aspect-ratio-supported, 18px); }\",\".framer-bPwPy.framer-v-12i4bi2 .framer-1b9rxzx { height: var(--framer-aspect-ratio-supported, 78px); order: 5; }\",\".framer-bPwPy.framer-v-12i4bi2 .framer-ymc1td { order: 6; }\",\".framer-bPwPy.framer-v-12i4bi2 .framer-1vdr3vk { order: 7; }\",\".framer-bPwPy.framer-v-12i4bi2 .framer-pcpj0o { order: 4; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 456\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NQe6nEZ5E\":{\"layout\":[\"fixed\",\"auto\"]},\"Ld9UeUCEo\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"b1AOaFkKC\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQqm0KgfJX=withCSS(Component,css,\"framer-bPwPy\");export default FramerQqm0KgfJX;FramerQqm0KgfJX.displayName=\"Sponsor ticker\";FramerQqm0KgfJX.defaultProps={height:456,width:1200};addPropertyControls(FramerQqm0KgfJX,{variant:{options:[\"cL0ubV1VQ\",\"NQe6nEZ5E\",\"Ld9UeUCEo\"],optionTitles:[\"Variant 1\",\"ipad\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},b1AOaFkKC:{defaultValue:\"Starke Partner\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerQqm0KgfJX,[{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\"}]},...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQqm0KgfJX\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"456\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NQe6nEZ5E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ld9UeUCEo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerVariables\":\"{\\\"b1AOaFkKC\\\":\\\"title\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Qqm0KgfJX.map"],
  "mappings": "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",
  "names": ["directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "childIndex", "ref5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "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", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "b1AOaFkKC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "ComponentViewportProvider", "Ticker", "Link", "Image2", "getLoadingLazyAtYPosition", "css", "FramerQqm0KgfJX", "withCSS", "Qqm0KgfJX_default", "addPropertyControls", "ControlType", "addFonts", "TickerFonts", "getFontsFromSharedStyle", "fonts"]
}
