{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/dTafX9AtLPPp7Pd9EiqD/h6a8GiELgUbJ1Otg8zwW/IEyECgUCN.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}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;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{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]);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\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,Link,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-Y90ml\";const variantClassNames={HK6w9qWIO:\"framer-v-1svzv7n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"HK6w9qWIO\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1svzv7n\",className,classNames),\"data-framer-name\":\"carousel\",layoutDependency:layoutDependency,layoutId:\"HK6w9qWIO\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-voebi3-container\",\"data-framer-name\":\"logo-carousel\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"VSvF6pZl1-container\",name:\"logo-carousel\",nodeId:\"VSvF6pZl1\",rendersWithMotion:true,scopeId:\"IEyECgUCN\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:1,id:\"VSvF6pZl1\",layoutId:\"VSvF6pZl1\",name:\"logo-carousel\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kd192u\",\"data-framer-name\":\"porsche\",layoutDependency:layoutDependency,layoutId:\"Rl4PrZxwk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-100cww6\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"qAoKKOx5V\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 145 27\"><path d=\"M 0.633 17.737 L 144.919 17.737 M 3.107 11.123 C 3.107 12.157 3.004 12.673 2.386 12.983 C 1.973 13.19 1.561 13.293 0.53 13.293 L 0.53 13.914 C 1.87 13.914 3.313 13.81 4.653 13.81 C 5.993 13.81 7.229 13.81 8.466 13.914 L 8.466 13.293 C 8.363 13.293 6.817 13.396 6.301 12.879 C 5.889 12.569 5.889 11.846 5.889 10.916 L 5.889 7.403 C 6.714 7.403 7.538 7.506 8.466 7.506 C 10.836 7.506 13.207 7.196 14.649 5.956 C 15.577 5.13 15.681 4.303 15.681 3.993 C 15.681 3.167 15.269 2.443 14.547 1.823 C 13.929 1.307 13.31 1.1 13.001 0.997 C 11.661 0.48 10.218 0.377 8.672 0.377 L 0.53 0.377 L 0.53 0.893 C 0.736 0.893 2.076 0.893 2.591 1.41 C 3.003 1.72 3.003 2.34 3.003 2.753 L 3.003 11.123 L 3.107 11.123 Z M 5.58 1.1 C 6.611 0.996 7.126 0.996 7.641 0.996 C 10.94 0.996 12.073 2.34 12.485 3.167 C 12.795 3.683 12.795 4.097 12.795 4.303 C 12.795 5.026 12.382 5.543 12.176 5.75 C 11.455 6.577 10.63 6.68 10.012 6.783 C 9.394 6.887 8.981 6.887 8.672 6.887 C 7.538 6.887 6.508 6.68 6.199 6.576 C 6.095 6.576 5.787 6.473 5.477 6.267 L 5.477 1.1 Z M 17.226 6.99 C 17.123 8.953 18.566 11.02 21.039 12.26 C 23.101 13.293 25.78 13.914 28.563 13.914 C 31.758 13.914 34.849 13.086 37.014 11.743 C 39.694 9.986 40.002 7.92 40.002 7.093 C 40.002 6.163 39.59 3.683 36.086 1.926 C 33.201 0.377 30.006 0.17 28.666 0.17 C 25.265 0.17 21.864 1.1 19.7 2.753 C 17.535 4.407 17.226 6.267 17.226 6.99 Z M 20.112 6.68 C 20.112 4.097 21.864 2.65 23.204 2.03 C 24.544 1.307 26.399 0.997 28.254 0.997 C 30.624 0.997 32.17 1.616 32.891 1.926 C 35.88 3.27 36.499 5.13 36.808 5.853 C 37.117 6.783 37.22 7.403 37.22 7.816 C 37.22 9.367 36.395 10.296 35.88 10.813 C 34.334 12.57 32.582 12.983 31.14 13.19 C 30.109 13.293 29.284 13.397 28.975 13.397 C 26.708 13.397 25.162 12.776 24.441 12.467 C 21.451 11.02 20.112 8.85 20.112 6.68 Z M 42.373 0.48 L 42.373 0.893 C 42.682 0.893 44.125 0.893 44.743 1.616 C 45.053 1.927 45.053 2.547 45.156 3.477 L 45.156 11.02 C 45.156 11.847 45.053 12.363 44.847 12.673 C 44.743 12.777 44.743 12.88 44.434 12.983 C 44.022 13.19 43.61 13.19 42.579 13.293 L 42.579 13.81 C 43.816 13.81 44.95 13.707 46.186 13.707 C 47.526 13.707 48.969 13.707 50.309 13.81 L 50.309 13.293 C 50.205 13.293 48.66 13.396 48.041 12.879 C 47.732 12.569 47.629 12.053 47.629 11.123 L 47.629 7.609 L 49.587 7.713 C 50.618 7.816 50.824 8.023 51.442 8.643 L 55.05 12.156 C 55.565 12.673 55.668 12.776 56.08 12.983 C 57.523 13.913 59.378 13.913 60.203 14.016 L 62.058 14.016 L 62.058 13.603 C 61.027 13.5 59.996 13.5 59.172 12.983 C 58.657 12.672 58.038 12.156 57.214 11.33 L 54.637 8.746 L 53.298 7.506 C 54.225 7.299 54.637 7.196 55.05 6.989 C 56.493 6.163 57.317 5.026 57.317 3.993 C 57.317 2.443 55.771 1.099 53.504 0.583 C 52.37 0.376 51.236 0.376 50.927 0.376 L 47.526 0.479 L 42.373 0.479 Z M 47.629 1.1 C 47.938 1.1 48.763 0.996 49.587 0.996 C 50.412 0.996 52.37 1.1 53.71 2.236 C 54.019 2.547 54.843 3.27 54.843 4.303 C 54.843 6.06 52.576 6.68 51.649 6.886 C 51.339 6.99 50.824 6.99 49.999 6.99 C 49.278 6.99 48.763 6.99 47.526 6.783 L 47.526 1.1 Z M 76.383 0.79 C 74.528 0.583 72.776 0.273 70.921 0.273 C 68.242 0.273 66.592 0.893 65.768 1.41 C 65.253 1.72 64.016 2.547 63.913 3.89 C 63.913 4.51 64.222 5.647 66.18 6.576 C 66.902 6.887 68.035 7.196 68.138 7.3 C 70.509 7.92 72.158 8.437 73.085 8.85 C 74.631 9.573 74.94 10.4 74.94 10.917 C 74.94 11.33 74.734 11.847 74.322 12.157 C 73.497 12.88 71.745 13.293 70.2 13.293 C 68.344 13.293 66.386 12.673 65.459 11.743 C 65.149 11.433 65.047 11.123 64.737 10.503 L 64.016 10.503 L 64.016 13.603 C 66.696 14.017 67.829 14.12 69.272 14.12 C 73.291 14.12 75.146 13.19 76.074 12.26 C 76.692 11.64 77.105 10.917 77.105 10.193 C 77.105 9.367 76.692 8.023 73.807 6.99 C 72.776 6.577 71.539 6.267 71.23 6.267 C 69.787 5.853 67.829 5.44 66.798 4.51 C 66.386 4.2 66.18 3.683 66.18 3.27 C 66.18 2.34 67.211 1.513 68.654 1.203 C 68.963 0.996 69.581 0.893 70.406 0.893 C 71.643 0.893 72.982 1.1 73.91 1.616 C 74.94 2.133 75.25 2.96 75.25 3.167 C 75.352 3.374 75.352 3.787 75.352 3.787 L 76.383 3.787 Z M 100.293 1.307 C 97.614 0.79 95.037 0.273 92.152 0.273 C 89.266 0.273 86.689 0.79 84.525 1.926 C 81.948 3.27 80.506 5.337 80.506 7.506 C 80.506 9.78 82.155 11.227 83.082 11.847 C 84.319 12.673 87.205 14.017 91.842 14.017 C 95.346 14.017 97.717 13.19 98.85 12.673 C 99.469 12.363 99.881 12.157 100.397 11.847 L 100.397 10.399 L 100.191 10.296 C 99.675 10.813 99.469 10.916 99.057 11.226 C 98.335 11.64 95.656 13.189 92.152 13.189 C 90.194 13.189 88.544 12.673 88.029 12.466 C 83.804 10.916 83.391 8.023 83.391 7.093 C 83.391 5.543 84.216 3.579 85.762 2.443 C 86.586 1.926 88.441 0.893 91.842 0.893 C 95.553 0.893 97.82 1.926 98.747 2.65 C 99.16 2.96 99.469 3.373 99.778 3.683 L 100.397 3.683 L 100.397 1.307 Z M 102.664 0.996 C 103.282 0.996 103.9 0.996 104.416 1.203 C 104.725 1.307 105.034 1.513 105.137 2.03 C 105.24 2.34 105.24 2.65 105.24 2.857 L 105.24 11.434 C 105.137 12.776 104.931 13.086 102.664 13.19 L 102.664 13.81 C 104.004 13.81 105.24 13.707 106.58 13.707 C 107.92 13.707 109.157 13.707 110.393 13.81 L 110.393 13.189 C 110.29 13.189 108.847 13.396 108.229 12.776 C 108.023 12.466 107.92 12.156 107.92 12.053 C 107.92 11.743 107.817 11.433 107.817 11.02 L 107.817 7.299 L 120.39 7.299 L 120.39 11.226 C 120.287 11.949 120.287 12.363 120.081 12.673 C 119.669 13.086 118.535 13.086 117.814 13.086 L 117.814 13.706 C 119.154 13.706 120.493 13.603 121.936 13.603 C 123.173 13.603 124.41 13.603 125.646 13.706 L 125.646 13.086 C 125.44 13.086 124.101 13.189 123.585 12.673 C 123.276 12.363 123.173 11.949 123.173 11.123 L 123.173 3.27 C 123.276 2.443 123.276 1.823 123.379 1.513 C 123.791 0.79 125.337 0.893 125.646 0.893 L 125.646 0.377 C 124.41 0.377 123.173 0.48 121.936 0.48 C 120.493 0.48 119.154 0.48 117.711 0.377 L 117.711 0.997 C 117.814 0.997 119.463 0.893 120.081 1.41 C 120.493 1.72 120.493 2.34 120.493 3.27 L 120.493 6.577 L 107.92 6.577 L 107.92 3.27 C 107.92 3.063 107.92 2.753 108.023 2.443 C 108.126 1.617 108.126 1.41 108.745 1.1 C 109.466 0.79 110.393 0.893 110.6 0.893 L 110.6 0.377 C 109.363 0.48 108.126 0.48 106.889 0.48 C 105.55 0.48 104.21 0.48 102.767 0.377 L 102.767 0.997 L 102.664 0.997 Z M 127.604 0.996 C 127.708 0.996 129.151 0.893 129.769 1.41 C 130.078 1.72 130.181 2.133 130.181 2.753 L 130.181 11.64 C 130.078 12.88 129.975 13.293 127.604 13.293 L 127.604 13.914 L 143.476 13.914 L 144.095 10.503 L 143.167 10.503 C 142.961 11.433 142.755 11.743 142.342 12.157 C 141.621 12.776 140.59 12.983 139.457 13.086 C 138.22 13.19 136.777 13.19 136.468 13.19 C 135.953 13.19 134.304 13.19 133.891 13.086 C 132.758 12.88 132.861 11.743 132.861 11.64 L 132.861 7.093 L 136.674 7.093 C 137.807 7.093 138.323 7.197 138.838 7.403 C 139.25 7.61 139.354 7.816 139.457 8.437 L 140.384 8.437 C 140.281 7.816 140.281 7.3 140.281 6.783 C 140.281 6.163 140.384 5.543 140.384 5.026 L 139.354 5.026 C 139.457 5.44 139.457 5.853 138.941 6.163 C 138.632 6.37 138.22 6.474 137.086 6.474 C 136.365 6.474 135.643 6.474 134.922 6.577 L 132.861 6.577 L 132.861 1.1 L 135.231 1.1 C 138.014 1.203 139.663 1.307 140.694 1.823 C 141.518 2.34 141.621 2.753 141.724 3.477 L 142.651 3.477 L 142.239 0.376 L 127.708 0.376 L 127.708 0.997 L 127.604 0.997 Z M 26.296 21.974 C 25.265 21.767 24.338 21.56 23.204 21.56 C 22.173 21.56 21.143 21.767 20.318 22.18 C 19.39 22.697 18.772 23.42 18.772 24.246 C 18.772 25.073 19.39 25.59 19.7 25.9 C 20.215 26.21 21.245 26.727 22.998 26.727 C 24.338 26.727 25.162 26.416 25.574 26.21 L 26.192 25.9 L 26.192 25.383 L 26.089 25.383 C 25.883 25.59 25.78 25.59 25.677 25.694 C 25.368 25.9 24.44 26.417 23.1 26.417 C 22.379 26.417 21.761 26.21 21.555 26.106 C 20.009 25.59 19.803 24.453 19.803 24.143 C 19.803 23.627 20.112 22.8 20.73 22.387 C 21.04 22.18 21.761 21.767 22.998 21.767 C 24.44 21.767 25.265 22.18 25.574 22.387 L 25.986 22.8 L 26.192 22.8 L 26.192 21.974 Z M 24.75 19.803 C 24.131 19.907 23.925 20.01 23.41 20.217 C 22.894 20.01 22.791 19.907 22.173 19.803 L 21.967 19.907 C 22.585 20.32 22.688 20.423 23.101 20.837 L 23.719 20.733 C 24.028 20.32 24.234 20.217 24.75 19.803 Z M 27.326 21.87 C 27.326 21.87 27.945 21.87 28.151 21.974 C 28.254 22.077 28.254 22.18 28.357 22.49 L 28.357 25.797 C 28.357 26.313 28.254 26.417 27.429 26.417 L 27.429 26.623 L 33.304 26.623 L 33.51 25.383 L 33.201 25.383 C 33.097 25.694 33.097 25.9 32.892 26.003 C 32.582 26.21 32.273 26.313 31.758 26.313 L 29.697 26.313 C 29.284 26.21 29.284 25.797 29.284 25.797 L 29.284 24.143 L 30.727 24.143 C 31.14 24.143 31.346 24.143 31.552 24.247 C 31.655 24.35 31.758 24.35 31.758 24.66 L 32.067 24.66 L 32.067 23.317 L 31.654 23.317 C 31.654 23.523 31.654 23.627 31.448 23.73 C 31.345 23.833 31.14 23.833 30.727 23.833 L 29.181 23.833 L 29.181 21.87 L 30.109 21.87 C 31.14 21.87 31.758 21.974 32.17 22.18 C 32.48 22.387 32.48 22.49 32.582 22.8 L 32.892 22.8 L 32.788 21.663 L 27.429 21.663 L 27.429 21.87 L 27.326 21.87 Z M 39.384 21.767 C 38.663 21.663 38.044 21.56 37.323 21.56 C 36.292 21.56 35.674 21.767 35.365 21.974 C 35.159 22.077 34.747 22.387 34.643 22.903 C 34.643 23.11 34.747 23.523 35.468 23.937 C 35.777 24.04 36.189 24.143 36.189 24.143 C 37.117 24.35 37.735 24.557 38.044 24.764 C 38.663 25.073 38.766 25.383 38.766 25.487 C 38.766 25.694 38.662 25.797 38.56 26.003 C 38.251 26.313 37.632 26.52 37.014 26.52 C 36.292 26.52 35.571 26.313 35.262 25.9 C 35.159 25.797 35.055 25.693 35.055 25.383 L 34.747 25.383 L 34.747 26.52 C 35.777 26.623 36.189 26.727 36.705 26.727 C 38.251 26.727 38.869 26.416 39.282 26.003 C 39.487 25.796 39.694 25.487 39.694 25.177 C 39.694 24.867 39.487 24.35 38.457 23.937 C 38.044 23.833 37.632 23.73 37.529 23.626 C 37.014 23.523 36.293 23.317 35.88 23.007 C 35.674 23.007 35.674 22.903 35.674 22.697 C 35.674 22.387 36.086 22.077 36.602 21.87 C 36.705 21.87 36.911 21.767 37.22 21.767 C 37.632 21.767 38.148 21.87 38.56 22.077 C 38.972 22.284 39.075 22.593 39.075 22.697 L 39.075 22.904 L 39.487 22.904 L 39.487 21.767 L 39.384 21.767 Z M 40.827 21.87 C 41.136 21.87 41.343 21.87 41.549 21.974 C 41.755 22.077 41.755 22.284 41.755 22.387 L 41.755 25.694 C 41.755 26.003 41.755 26.21 41.239 26.313 L 40.827 26.313 L 40.827 26.52 L 43.713 26.52 L 43.713 26.313 C 42.991 26.313 42.785 26.21 42.682 26.003 L 42.682 24.557 L 43.301 24.143 C 43.61 24.35 44.022 24.66 44.331 24.867 C 44.64 25.074 44.95 25.28 45.362 25.59 C 45.568 25.797 45.774 25.9 45.98 26.107 C 46.186 26.21 46.29 26.313 46.392 26.623 L 48.557 26.623 L 48.557 26.416 C 47.732 26.313 47.526 26.313 46.908 25.9 L 43.919 23.833 L 46.083 22.387 C 46.496 22.077 46.702 21.974 47.011 21.974 C 47.217 21.974 47.629 21.974 47.732 21.87 L 47.732 21.663 L 45.053 21.663 L 45.053 21.87 C 45.465 21.87 45.568 21.974 45.568 22.077 C 45.568 22.284 45.259 22.387 45.259 22.387 L 42.476 24.246 L 42.476 22.697 C 42.476 22.284 42.476 22.077 42.785 21.974 C 43.095 21.87 43.507 21.87 43.507 21.87 L 43.507 21.663 L 40.518 21.663 L 40.518 21.87 Z M 50.309 25.59 C 49.999 26.107 49.897 26.21 49.484 26.313 C 49.278 26.313 49.175 26.417 48.969 26.417 L 48.969 26.726 L 51.545 26.726 L 51.545 26.52 C 51.03 26.52 50.824 26.416 50.824 26.21 C 50.824 26.106 50.927 25.9 51.03 25.797 L 51.649 24.66 L 54.225 24.66 L 54.946 25.797 C 55.05 26.004 55.153 26.107 55.153 26.21 L 55.153 26.313 C 55.05 26.417 54.843 26.417 54.843 26.417 L 54.328 26.417 L 54.328 26.726 L 57.42 26.726 L 57.42 26.52 C 57.008 26.52 56.699 26.52 56.389 26.313 C 56.286 26.21 56.183 26.21 56.08 26.003 C 55.874 25.693 55.565 25.383 55.359 24.97 C 55.05 24.453 54.637 23.937 54.328 23.42 L 53.092 21.56 L 52.885 21.56 Z M 52.782 22.387 L 54.122 24.35 L 51.752 24.35 Z M 53.813 20.32 C 53.607 20.527 53.4 20.733 53.092 20.94 C 53.092 20.94 52.885 21.043 52.782 21.043 L 52.782 21.147 C 53.194 21.147 53.813 21.147 54.431 20.63 C 54.534 20.526 54.637 20.526 54.74 20.32 Z M 61.852 21.663 L 61.852 21.87 C 61.955 21.87 62.47 21.87 62.676 22.18 C 62.779 22.284 62.779 22.49 62.779 22.903 L 62.779 25.693 C 62.779 26.004 62.779 26.21 62.676 26.313 C 62.676 26.313 62.573 26.417 62.47 26.417 C 62.367 26.52 62.161 26.52 61.748 26.52 L 61.748 26.727 L 64.634 26.727 L 64.634 26.52 C 64.634 26.52 64.016 26.52 63.81 26.313 C 63.707 26.21 63.707 26.003 63.707 25.693 L 63.707 24.35 L 64.428 24.35 C 64.84 24.453 64.943 24.453 65.149 24.66 L 66.489 26.003 C 66.696 26.21 66.696 26.21 66.902 26.313 C 67.417 26.623 68.138 26.623 68.448 26.727 L 69.169 26.727 L 69.169 26.52 C 68.756 26.52 68.344 26.52 68.138 26.313 C 67.932 26.21 67.726 26.003 67.417 25.693 L 65.974 24.246 C 66.283 24.143 66.489 24.143 66.592 24.04 C 67.108 23.833 67.417 23.42 67.417 23.007 C 67.417 22.49 66.798 21.974 65.974 21.767 C 65.562 21.663 65.149 21.663 65.047 21.663 L 61.852 21.663 Z M 63.81 21.974 L 64.531 21.974 C 64.84 21.974 65.562 21.974 66.077 22.387 C 66.18 22.49 66.489 22.8 66.489 23.11 C 66.489 23.73 65.665 24.04 65.253 24.04 L 64.634 24.04 C 64.428 24.04 64.222 24.04 63.707 23.936 L 63.707 21.974 Z M 69.787 21.87 C 69.787 21.87 70.406 21.87 70.612 21.974 C 70.715 22.077 70.715 22.18 70.818 22.49 L 70.818 25.797 C 70.818 26.313 70.715 26.417 69.89 26.417 L 69.89 26.623 L 75.765 26.623 L 75.971 25.383 L 75.662 25.383 C 75.559 25.694 75.559 25.9 75.352 26.003 C 75.044 26.21 74.734 26.313 74.219 26.313 L 72.157 26.313 C 71.745 26.313 71.745 25.9 71.745 25.797 L 71.745 24.143 L 73.188 24.143 C 73.601 24.143 73.807 24.143 74.013 24.247 C 74.116 24.35 74.219 24.35 74.219 24.66 L 74.528 24.66 L 74.528 23.317 L 74.116 23.317 C 74.116 23.523 74.116 23.627 73.91 23.73 C 73.807 23.833 73.601 23.833 73.188 23.833 L 71.745 23.833 L 71.745 21.87 L 72.673 21.87 C 73.704 21.87 74.322 21.974 74.734 22.18 C 75.044 22.387 75.044 22.49 75.146 22.8 L 75.456 22.8 L 75.352 21.663 L 69.993 21.663 L 69.993 21.87 Z M 77.929 25.693 C 77.929 26.107 77.929 26.313 77.62 26.417 C 77.414 26.52 77.311 26.52 76.898 26.52 L 76.898 26.727 L 79.887 26.727 L 79.887 26.52 C 79.784 26.52 79.269 26.52 79.063 26.313 C 78.96 26.21 78.96 25.9 78.96 25.59 L 78.96 24.246 L 79.887 24.246 C 80.815 24.246 81.639 24.143 82.258 23.729 C 82.567 23.419 82.67 23.11 82.67 23.006 C 82.67 22.696 82.567 22.386 82.258 22.18 C 82.052 21.973 81.846 21.973 81.639 21.869 C 81.124 21.663 80.609 21.663 79.99 21.663 L 77.002 21.663 L 77.002 21.87 C 77.105 21.87 77.62 21.87 77.826 22.077 C 77.929 22.18 77.929 22.386 77.929 22.593 Z M 78.857 21.974 L 79.578 21.974 C 80.815 21.974 81.227 22.49 81.433 22.8 C 81.536 23.007 81.536 23.11 81.536 23.213 C 81.536 23.523 81.433 23.627 81.33 23.73 C 81.021 24.04 80.712 24.04 80.506 24.143 L 79.99 24.143 C 79.578 24.143 79.166 24.04 79.063 24.04 C 79.063 24.04 78.96 24.04 78.753 23.936 L 78.753 21.974 Z M 82.876 21.87 C 82.979 21.87 83.391 21.87 83.598 21.973 C 83.804 22.077 83.804 22.387 83.804 22.593 L 83.804 24.66 C 83.804 24.97 83.804 25.28 84.01 25.59 C 84.113 25.694 84.216 25.9 84.628 26.21 C 85.247 26.623 86.277 26.83 87.101 26.83 C 88.132 26.83 88.75 26.623 89.06 26.417 C 89.987 26.003 90.194 25.487 90.194 25.28 C 90.296 24.867 90.296 24.35 90.296 24.246 L 90.296 22.903 C 90.296 22.593 90.296 22.387 90.4 22.284 C 90.502 21.973 91.018 22.077 91.121 22.077 L 91.121 21.87 L 88.75 21.87 L 88.75 22.077 C 89.06 22.077 89.369 22.077 89.472 22.18 C 89.575 22.18 89.575 22.284 89.575 22.387 C 89.575 22.49 89.575 22.593 89.678 22.697 L 89.781 23.42 L 89.781 24.453 C 89.781 25.487 89.472 25.9 88.854 26.21 C 88.132 26.623 87.308 26.623 87.101 26.623 C 86.38 26.623 85.659 26.416 85.247 26.107 C 84.834 25.693 84.731 25.383 84.731 25.177 L 84.731 23.007 C 84.731 22.697 84.731 22.49 84.834 22.284 L 85.04 22.077 C 85.143 21.973 85.349 21.973 85.659 21.973 L 85.659 21.766 L 82.773 21.766 L 82.773 21.87 Z M 92.976 25.487 C 92.976 25.797 92.976 26.107 92.873 26.21 C 92.667 26.52 92.152 26.417 92.049 26.417 L 92.049 26.623 L 95.037 26.623 C 95.759 26.623 96.48 26.623 97.098 26.313 C 97.923 26.003 98.026 25.383 98.026 25.177 C 98.026 24.453 97.202 24.143 96.789 24.04 C 96.583 24.04 96.48 23.936 96.171 23.936 C 96.686 23.73 97.202 23.627 97.408 23.213 C 97.511 23.006 97.511 22.8 97.511 22.8 C 97.511 22.49 97.304 22.284 97.202 22.18 C 96.583 21.663 95.45 21.663 95.14 21.663 L 91.945 21.663 L 91.945 21.87 C 92.255 21.87 92.564 21.87 92.77 22.077 C 92.873 22.18 92.873 22.49 92.873 22.593 L 92.873 25.487 Z M 93.903 24.246 L 94.728 24.246 C 95.965 24.246 96.583 24.66 96.789 24.97 C 96.996 25.177 96.996 25.487 96.996 25.59 C 96.996 25.694 96.996 25.797 96.892 26.003 C 96.686 26.313 96.274 26.52 95.862 26.52 L 94.934 26.52 C 94.728 26.52 94.522 26.52 94.316 26.313 C 94.109 26.21 94.007 25.9 94.007 25.383 L 94.007 24.246 Z M 93.903 22.387 C 93.903 22.077 94.007 21.974 94.213 21.974 L 94.728 21.974 C 95.037 21.974 96.068 21.974 96.48 22.593 C 96.686 22.8 96.686 23.007 96.686 23.11 C 96.686 23.317 96.583 23.73 95.759 23.937 C 95.346 24.04 94.831 24.04 94.728 24.04 L 93.903 24.04 Z M 102.045 21.663 L 99.16 21.663 L 99.16 21.87 C 99.469 21.87 99.675 21.87 99.881 21.974 C 100.087 22.077 100.087 22.284 100.087 22.49 L 100.087 25.487 C 100.087 25.797 100.087 26.003 99.984 26.107 C 99.881 26.417 99.263 26.417 99.057 26.417 L 99.057 26.623 L 105.137 26.623 L 105.24 25.383 L 104.931 25.383 C 104.828 25.59 104.725 25.9 104.416 26.107 C 104.004 26.313 103.385 26.313 102.87 26.313 L 101.736 26.313 C 101.53 26.313 101.324 26.313 101.221 26.21 C 100.912 26.003 100.912 25.693 101.015 25.487 L 101.015 22.593 C 101.015 22.387 101.015 22.18 101.118 22.077 C 101.324 21.87 101.633 21.87 101.942 21.87 Z M 107.199 25.487 C 107.199 25.797 107.199 26.003 107.095 26.21 C 107.095 26.21 106.992 26.313 106.889 26.313 C 106.683 26.417 106.271 26.417 106.168 26.417 L 106.168 26.623 L 109.053 26.623 L 109.053 26.416 C 108.641 26.416 108.435 26.416 108.229 26.313 C 108.126 26.21 108.126 26.003 108.126 25.693 L 108.126 22.593 C 108.126 22.284 108.126 21.974 108.641 21.87 L 109.157 21.87 L 109.157 21.663 L 106.168 21.663 L 106.168 21.87 C 106.477 21.87 106.786 21.87 106.992 21.974 C 107.095 22.077 107.199 22.284 107.199 22.593 Z M 110.084 21.87 C 110.393 21.87 110.6 21.87 110.806 21.974 C 111.012 22.077 111.012 22.284 111.012 22.387 L 111.012 25.694 C 111.012 26.003 111.012 26.21 110.496 26.313 L 110.084 26.313 L 110.084 26.52 L 112.97 26.52 L 112.97 26.313 C 112.248 26.313 112.042 26.21 111.939 26.003 L 111.939 24.557 L 112.558 24.143 C 112.867 24.35 113.279 24.66 113.588 24.867 C 113.897 25.074 114.207 25.28 114.619 25.59 C 114.825 25.797 115.031 25.9 115.237 26.107 C 115.443 26.21 115.547 26.313 115.649 26.623 L 117.814 26.623 L 117.814 26.416 C 116.989 26.313 116.783 26.313 116.165 25.9 L 113.176 23.833 L 115.34 22.387 C 115.753 22.077 115.959 21.974 116.268 21.974 C 116.474 21.974 116.886 21.974 116.989 21.87 L 116.989 21.663 L 114.31 21.663 L 114.31 21.87 C 114.722 21.87 114.825 21.974 114.825 22.077 C 114.825 22.284 114.516 22.387 114.516 22.387 L 111.733 24.246 L 111.733 22.697 C 111.733 22.284 111.733 22.077 112.042 21.974 C 112.352 21.87 112.764 21.87 112.764 21.87 L 112.764 21.663 L 109.775 21.663 L 109.775 21.87 Z M 119.566 25.59 C 119.256 26.107 119.154 26.21 118.742 26.313 C 118.535 26.313 118.432 26.417 118.226 26.417 L 118.226 26.726 L 120.803 26.726 L 120.803 26.52 C 120.287 26.52 120.081 26.416 120.081 26.21 C 120.081 26.106 120.184 25.9 120.287 25.797 L 120.906 24.66 L 123.585 24.66 L 124.307 25.797 C 124.41 26.004 124.513 26.107 124.513 26.21 L 124.513 26.313 C 124.41 26.417 124.203 26.417 124.203 26.417 L 123.688 26.417 L 123.688 26.726 L 126.78 26.726 L 126.78 26.52 C 126.368 26.52 126.059 26.52 125.75 26.313 C 125.646 26.21 125.544 26.21 125.44 26.003 C 125.234 25.693 124.925 25.383 124.719 24.97 C 124.41 24.453 123.997 23.937 123.688 23.42 L 122.451 21.56 L 122.245 21.56 Z M 121.936 22.387 L 123.276 24.35 L 120.906 24.35 Z\" fill=\"rgba(0,0,0,1)\"></path><path d=\"M 0.673 17.775 L 144.102 17.775\" fill=\"transparent\" stroke-width=\"0.45\" stroke=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:12243627761,title:\"Porsche\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4593th\",\"data-framer-name\":\"xxxlutz-logo\",layoutDependency:layoutDependency,layoutId:\"lGeNhQioF\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1on40ub\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"BlIZVUL1s\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 103 25\"><path d=\"M 0 0 L 103 0 L 103 24.966 L 0 24.966 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 0.996 1.069 L 0.996 23.931 L 101.953 23.931 L 101.953 1.069 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 52.719 1.069 L 52.719 23.931 L 101.953 23.931 L 101.953 1.069 Z\" fill=\"rgb(227,0,16)\"></path><path d=\"M 3.244 4.483 L 7.553 12.121 L 2.97 20.241 L 7.776 20.241 L 10.815 14.155 L 13.854 20.224 L 18.626 20.224 L 14.06 12.103 L 18.317 4.466 L 13.613 4.466 L 10.815 10.259 L 8.051 4.483 Z M 20.085 4.483 L 24.394 12.121 L 19.81 20.241 L 24.617 20.241 L 27.655 14.172 L 30.694 20.241 L 35.466 20.241 L 30.9 12.121 L 35.157 4.483 L 30.454 4.483 L 27.655 10.259 L 24.892 4.483 Z M 36.925 4.483 L 41.269 12.121 L 36.651 20.241 L 41.457 20.241 L 44.496 14.172 L 47.534 20.241 L 52.307 20.241 L 47.74 12.121 L 51.998 4.483 L 47.294 4.483 L 44.496 10.259 L 41.715 4.483 Z M 54.418 20.224 L 62.779 20.224 L 62.779 16.828 L 58.161 16.828 L 58.161 4.586 L 54.418 4.586 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 77.319 4.517 L 77.319 19.776 C 77.387 20.086 77.507 20.362 77.902 20.448 C 77.937 20.448 78.057 20.466 78.263 20.483 C 80.1 20.5 84.529 20.483 84.529 20.483 L 84.529 17.069 L 81.198 17.069 L 81.198 11.948 L 84.477 11.948 L 84.511 8.569 L 81.198 8.569 L 81.198 4.569 Z M 75.859 8.517 L 71.963 8.552 L 71.963 17.069 L 67.62 17.069 L 67.62 8.552 L 63.791 8.552 L 63.791 19.776 C 63.86 20.086 63.98 20.362 64.375 20.448 C 64.409 20.448 64.529 20.466 64.735 20.483 C 66.263 20.5 72.615 20.483 75.104 20.483 C 75.224 20.466 75.241 20.517 75.43 20.414 C 75.653 20.293 75.653 20.207 75.756 20.017 C 75.859 19.845 75.842 19.534 75.842 19.534 Z M 86.005 8.534 L 86.005 11.931 L 92.357 11.931 L 85.971 20.483 L 99.944 20.483 L 99.944 17.069 L 93.781 17.069 L 99.893 8.552 L 86.005 8.552 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10277191590,title:\"Xxxlutz Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ln3qrd\",\"data-framer-name\":\"heimstaden-logo\",layoutDependency:layoutDependency,layoutId:\"lYDTbUkUF\",children:/*#__PURE__*/_jsx(Link,{href:\"https://heimstaden.cz/\",motionChild:true,nodeId:\"MsquijhPI\",scopeId:\"IEyECgUCN\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Heimstaden\",fit:\"fill\",intrinsicHeight:107,intrinsicWidth:738,pixelHeight:214,pixelWidth:1476,sizes:\"108px\",src:\"https://framerusercontent.com/images/KR2yb3gtRTidZVbjH7wHrAYTBM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KR2yb3gtRTidZVbjH7wHrAYTBM.png?scale-down-to=512 512w,https://framerusercontent.com/images/KR2yb3gtRTidZVbjH7wHrAYTBM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KR2yb3gtRTidZVbjH7wHrAYTBM.png 1476w\"},className:\"framer-1dhzcad framer-dv8hj3\",\"data-framer-name\":\"Heimstaden_logo\",layoutDependency:layoutDependency,layoutId:\"MsquijhPI\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e8qh19\",\"data-framer-name\":\"rn-solutions-logo\",layoutDependency:layoutDependency,layoutId:\"SpMjeGF4V\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.avantfunds.cz/cs/oznameni/oznameni-o-vstupu-rn-solutions-do-investicni-spolecnosti-ava/\",motionChild:true,nodeId:\"DnWtco7Ht\",scopeId:\"IEyECgUCN\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"RN Solutions\",fit:\"fill\",intrinsicHeight:58.5,intrinsicWidth:178,pixelHeight:117,pixelWidth:356,src:\"https://framerusercontent.com/images/xLdiBLuFIXbfKXjw0hHT1fapBDc.png\"},className:\"framer-1p2fshu framer-dv8hj3\",\"data-framer-name\":\"RN_356x117\",layoutDependency:layoutDependency,layoutId:\"DnWtco7Ht\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11wvwv7\",\"data-framer-name\":\"union-logo\",layoutDependency:layoutDependency,layoutId:\"A55EEsvO8\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.unionpojistovna.cz/\",motionChild:true,nodeId:\"LkXjtU4bl\",scopeId:\"IEyECgUCN\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Union\",fit:\"fill\",intrinsicHeight:115,intrinsicWidth:178,pixelHeight:230,pixelWidth:356,src:\"https://framerusercontent.com/images/hEPgNXNCCO2NYoRcyJuaZny8yl8.png\"},className:\"framer-1q09clz framer-dv8hj3\",\"data-framer-name\":\"logo_union_pojistovna_bfhd_426x275_356x230\",layoutDependency:layoutDependency,layoutId:\"LkXjtU4bl\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16z77jy\",\"data-framer-name\":\"engie-logo\",layoutDependency:layoutDependency,layoutId:\"Q1uQbV8zL\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.engie.com\",motionChild:true,nodeId:\"q2eTbn4Rd\",scopeId:\"IEyECgUCN\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Engie\",fit:\"fill\",intrinsicHeight:64,intrinsicWidth:178,pixelHeight:128,pixelWidth:356,src:\"https://framerusercontent.com/images/KUAGo65lkHTiP3wogIk5m1uTs.png\"},className:\"framer-g0jcmv framer-dv8hj3\",\"data-framer-name\":\"engie_1_356x128\",layoutDependency:layoutDependency,layoutId:\"q2eTbn4Rd\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n3idcx\",\"data-framer-name\":\"youplus\",layoutDependency:layoutDependency,layoutId:\"SkI0DN3VH\",children:/*#__PURE__*/_jsx(Link,{href:\"https://youplus.cz/\",motionChild:true,nodeId:\"UZCcxU7lQ\",scopeId:\"IEyECgUCN\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"youplus\",fit:\"fill\",intrinsicHeight:58.5,intrinsicWidth:178,pixelHeight:431,pixelWidth:1052,sizes:\"120px\",src:\"https://framerusercontent.com/images/Aesb2jVkXLCE8ma7WNo7dQpawAw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Aesb2jVkXLCE8ma7WNo7dQpawAw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Aesb2jVkXLCE8ma7WNo7dQpawAw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Aesb2jVkXLCE8ma7WNo7dQpawAw.png 1052w\"},className:\"framer-15b3cdh framer-dv8hj3\",\"data-framer-name\":\"RN_356x117\",layoutDependency:layoutDependency,layoutId:\"UZCcxU7lQ\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fbfi9y\",\"data-framer-name\":\"cbre\",layoutDependency:layoutDependency,layoutId:\"m9GJTbvTj\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.cbre.cz/\",motionChild:true,nodeId:\"eX7XCwBsB\",scopeId:\"IEyECgUCN\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"CBRE\",fit:\"fill\",intrinsicHeight:58.5,intrinsicWidth:178,pixelHeight:169,pixelWidth:300,src:\"https://framerusercontent.com/images/EgPlLkPhYtRiwAJAIOtzegK6RU.png\"},className:\"framer-dj8zjc framer-dv8hj3\",\"data-framer-name\":\"RN_356x117\",layoutDependency:layoutDependency,layoutId:\"eX7XCwBsB\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fs4hp6\",\"data-framer-name\":\"altron\",layoutDependency:layoutDependency,layoutId:\"XqIH8U4au\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1swel2k\",\"data-framer-name\":\"Altron_logo_svetlybg_barevny_rgb\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"CQMvsTizG\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 102 24\"><path d=\"M 21.784 20.362 L 21.784 2.318 L 25.13 2.318 L 25.13 17.011 L 32.761 17.011 L 32.761 20.362 L 21.784 20.362 Z M 36.977 20.362 L 36.977 5.411 L 31.83 5.411 L 31.83 2.318 L 45.624 2.318 L 45.624 5.411 L 40.323 5.411 L 40.323 20.362 Z M 62.875 20.362 L 58.738 13.231 C 58.915 13.153 59.091 13.074 59.259 12.977 C 60.143 12.47 60.846 11.783 61.369 10.915 C 61.893 10.047 62.154 9.097 62.154 8.067 C 62.154 6.984 61.893 6.009 61.369 5.141 C 60.846 4.273 60.138 3.586 59.246 3.079 C 58.354 2.572 57.368 2.318 56.287 2.318 L 48.464 2.318 L 48.464 20.362 L 51.732 20.362 L 51.732 13.737 L 55.186 13.737 L 58.912 20.362 L 62.875 20.362 Z M 51.732 5.334 L 55.721 5.334 C 56.321 5.334 56.853 5.455 57.316 5.695 C 57.78 5.936 58.14 6.262 58.397 6.675 C 58.654 7.087 58.783 7.577 58.783 8.144 C 58.783 8.642 58.68 9.098 58.474 9.51 C 58.268 9.922 57.981 10.245 57.612 10.477 C 57.243 10.709 56.81 10.825 56.313 10.825 L 51.732 10.825 L 51.732 5.334 Z M 73.385 20.62 C 72.098 20.62 70.906 20.388 69.808 19.924 C 68.71 19.46 67.753 18.812 66.939 17.978 C 66.124 17.145 65.493 16.161 65.047 15.026 C 64.601 13.892 64.378 12.655 64.378 11.314 C 64.378 9.974 64.601 8.737 65.047 7.603 C 65.493 6.468 66.124 5.485 66.939 4.651 C 67.753 3.818 68.71 3.169 69.808 2.705 C 70.906 2.241 72.098 2.009 73.385 2.009 C 74.689 2.009 75.89 2.241 76.988 2.705 C 78.086 3.169 79.038 3.822 79.844 4.664 C 80.651 5.506 81.277 6.49 81.723 7.615 C 82.169 8.741 82.392 9.974 82.392 11.314 C 82.392 12.638 82.169 13.866 81.723 15.001 C 81.277 16.135 80.651 17.123 79.844 17.965 C 79.038 18.807 78.086 19.46 76.988 19.924 C 75.89 20.388 74.689 20.62 73.385 20.62 Z M 73.385 17.424 C 74.209 17.424 74.959 17.273 75.637 16.973 C 76.314 16.672 76.902 16.242 77.4 15.684 C 77.897 15.126 78.288 14.477 78.571 13.738 C 78.854 12.999 78.995 12.191 78.995 11.314 C 78.995 10.438 78.854 9.63 78.571 8.891 C 78.288 8.153 77.897 7.504 77.4 6.945 C 76.902 6.387 76.314 5.957 75.637 5.656 C 74.959 5.356 74.209 5.205 73.385 5.205 C 72.579 5.205 71.832 5.356 71.146 5.656 C 70.46 5.957 69.868 6.382 69.371 6.932 C 68.873 7.482 68.487 8.127 68.213 8.866 C 67.938 9.605 67.801 10.421 67.801 11.314 C 67.801 12.191 67.938 13.003 68.213 13.75 C 68.487 14.498 68.873 15.147 69.371 15.697 C 69.868 16.247 70.46 16.672 71.146 16.973 C 71.832 17.273 72.579 17.424 73.385 17.424 Z M 97.491 2.318 L 97.491 14.339 L 88.434 2.318 L 85.113 2.318 L 85.113 20.362 L 88.433 20.362 L 88.433 8.048 C 88.433 8.048 88.425 8.033 88.412 8.007 L 97.748 20.362 L 100.811 20.362 L 100.811 2.318 Z\" fill=\"rgb(27,28,28)\"></path><g><defs><linearGradient id=\"idss9371242733_2g-496992271\" x1=\"0.29520436476740547\" x2=\"0.7047956352325946\" y1=\"1\" y2=\"5.551115123125783e-17\"><stop offset=\"0\" stop-color=\"rgba(0,104,46,0)\" stop-opacity=\"0\"></stop><stop offset=\"1\" stop-color=\"rgb(0,104,46)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 11.856 2.318 L 8.248 2.318 L 1.222 20.362 L 4.83 20.362 Z\" fill=\"url(#idss9371242733_2g-496992271)\"></path></g><path d=\"M 1.222 16.748 L 4.83 16.748 L 4.83 20.362 L 1.222 20.362 Z M 8.248 2.318 L 11.856 2.318 L 18.882 20.362 L 15.273 20.362 Z\" fill=\"rgb(0,191,111)\"></path></svg>',svgContentId:9371242733,title:\"Altron Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l99jt7\",\"data-framer-name\":\"antime\",layoutDependency:layoutDependency,layoutId:\"c4e_i5QOM\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3mg9s7\",\"data-framer-name\":\"logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Sqt0Cwe9R\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 112 37\"><path d=\"M 57.341 2.395 L 56.351 2.395 L 51.467 8.777 L 51.467 9.787 L 53.535 9.787 L 53.535 16.107 C 53.535 19.204 55.786 21.494 58.818 21.494 C 59.66 21.494 60.493 21.433 61.194 21.161 L 61.194 17.841 C 61.194 17.841 60.627 18.076 59.427 18.076 C 58.227 18.076 57.036 17.43 57.036 15.702 L 57.036 9.787 L 61.194 9.787 L 61.194 6.461 L 57.341 6.461 L 57.341 2.395 Z M 12.004 13.823 C 12.004 11.478 10.46 9.578 7.846 9.578 C 5.231 9.578 3.685 11.478 3.685 13.823 C 3.685 16.166 5.225 18.066 7.838 18.066 C 10.45 18.066 12.004 16.158 12.004 13.822 Z M 12.004 6.459 L 15.515 6.459 L 15.515 21.202 L 12.004 21.202 L 12.004 19.467 C 10.836 20.754 9.355 21.498 7.181 21.498 C 3.416 21.498 0 18.125 0 13.822 C 0 9.527 3.416 6.146 7.189 6.146 C 9.355 6.146 10.836 6.89 12.012 8.178 Z M 108.405 12.098 C 107.957 10.429 106.783 9.267 104.765 9.267 C 102.639 9.267 101.433 10.429 100.975 12.098 Z M 112 13.823 C 112 14.109 111.986 14.392 111.96 14.667 L 111.903 14.979 L 100.885 14.979 C 101.305 16.906 102.88 18.22 105.151 18.22 C 107.203 18.22 108.184 17.492 109.09 16.627 L 111.11 19.276 C 109.767 20.599 107.505 21.497 105.081 21.497 C 100.483 21.497 97.066 18.455 97.066 13.823 C 97.066 9.19 100.44 6.147 104.607 6.147 C 108.772 6.147 111.994 9.189 111.994 13.823 Z M 43.561 14.437 L 42.842 16.854 L 42.014 14.429 L 38.734 6.4 L 34.903 6.4 L 40.965 20.576 C 40.699 21.209 40.459 21.773 40.251 22.243 C 39.116 24.837 37.285 24.745 36.467 24.579 L 36.467 27.868 C 36.652 27.846 41.047 28.81 43.314 23.636 C 43.358 23.538 44.043 22.03 44.892 19.955 C 46.952 14.891 50.317 6.409 50.317 6.409 L 46.644 6.409 Z M 27.468 6.145 C 26.588 6.127 25.713 6.299 24.906 6.65 C 24.094 7.002 23.368 7.524 22.775 8.18 L 22.775 6.451 L 19.478 6.451 L 19.478 21.193 L 22.989 21.193 L 22.989 13.884 C 22.989 11.102 24.464 9.517 26.737 9.517 C 28.756 9.517 29.996 10.867 29.996 13.325 L 29.996 21.193 L 33.507 21.193 L 33.507 12.704 C 33.507 8.637 31.309 6.146 27.478 6.146 L 27.468 6.146 Z M 66.286 0 C 65.864 0 65.452 0.128 65.101 0.367 C 64.749 0.608 64.476 0.947 64.316 1.342 C 64.155 1.74 64.113 2.176 64.196 2.597 C 64.278 3.019 64.481 3.405 64.78 3.709 C 65.078 4.012 65.459 4.219 65.873 4.302 C 66.286 4.386 66.716 4.343 67.105 4.179 C 67.497 4.013 67.831 3.734 68.063 3.379 C 68.629 2.515 68.519 1.375 67.796 0.635 C 67.399 0.23 66.855 0.001 66.286 0 Z M 64.532 21.193 L 68.043 21.193 L 68.043 6.451 L 64.533 6.451 L 64.533 21.193 Z M 94.741 12.704 L 94.741 21.193 L 91.238 21.193 L 91.238 13.326 C 91.238 10.871 90.506 9.517 88.528 9.517 C 86.548 9.517 85.328 11.101 85.328 13.883 L 85.328 21.193 L 81.811 21.193 L 81.811 13.326 C 81.811 10.871 81.082 9.517 79.102 9.517 C 77.122 9.517 75.902 11.101 75.902 13.883 L 75.902 21.193 L 72.392 21.193 L 72.392 6.451 L 75.69 6.451 L 75.69 8.181 C 76.6 6.895 77.976 6.152 79.834 6.152 C 82.034 6.152 83.563 7.038 84.437 8.617 C 85.519 7.064 87.197 6.162 89.26 6.162 C 92.952 6.162 94.749 8.654 94.749 12.72 M 64.267 35.023 C 66.08 35.023 67.315 33.831 67.589 32.638 L 66.805 32.638 C 66.501 33.567 65.541 34.319 64.267 34.319 C 62.65 34.319 61.425 33.058 61.425 31.436 C 61.425 29.814 62.65 28.553 64.267 28.553 C 65.541 28.553 66.501 29.305 66.805 30.234 L 67.589 30.234 C 67.315 29.042 66.08 27.849 64.267 27.849 C 62.258 27.849 60.67 29.413 60.67 31.436 C 60.67 33.459 62.258 35.023 64.267 35.023 Z M 70.823 35.003 C 71.578 35.003 72.283 34.612 72.636 34.085 L 72.636 34.906 L 73.322 34.906 L 73.322 30.019 L 72.636 30.019 L 72.636 30.84 C 72.283 30.312 71.578 29.921 70.823 29.921 C 69.432 29.921 68.383 31.065 68.383 32.462 C 68.383 33.86 69.432 35.003 70.823 35.003 Z M 70.892 34.368 C 69.824 34.368 69.089 33.518 69.089 32.462 C 69.089 31.407 69.824 30.556 70.892 30.556 C 71.96 30.556 72.695 31.407 72.695 32.462 C 72.695 33.518 71.96 34.368 70.892 34.368 Z M 75.006 34.906 L 75.692 34.906 L 75.692 32.452 C 75.692 31.201 76.446 30.654 77.054 30.654 C 77.201 30.654 77.328 30.674 77.465 30.723 L 77.465 30.009 C 77.35 29.982 77.231 29.968 77.113 29.97 C 76.534 29.97 75.897 30.341 75.692 31.026 L 75.692 30.019 L 75.006 30.019 Z M 79.902 35.003 C 80.863 35.003 81.627 34.583 81.627 33.606 C 81.627 32.883 81.176 32.374 80.402 32.179 L 79.647 31.983 C 79.059 31.827 78.844 31.583 78.844 31.201 C 78.844 30.781 79.255 30.527 79.765 30.527 C 80.275 30.527 80.657 30.83 80.804 31.28 L 81.48 31.28 C 81.392 30.556 80.804 29.921 79.765 29.921 C 78.844 29.921 78.158 30.4 78.158 31.201 C 78.158 31.895 78.589 32.404 79.422 32.619 L 80.059 32.785 C 80.686 32.951 80.941 33.225 80.941 33.655 C 80.941 34.153 80.461 34.388 79.902 34.388 C 79.373 34.388 78.814 34.182 78.667 33.528 L 77.981 33.528 C 78.05 34.524 78.922 35.003 79.902 35.003 Z M 82.902 34.906 L 83.588 34.906 L 83.588 32.472 C 83.588 31.26 84.254 30.556 85.117 30.556 C 85.842 30.556 86.351 31.084 86.351 31.944 L 86.351 34.906 L 87.037 34.906 L 87.037 31.847 C 87.037 30.654 86.263 29.921 85.195 29.921 C 84.558 29.921 83.941 30.195 83.588 30.84 L 83.588 27.575 L 82.902 27.575 Z M 90.672 35.003 C 91.427 35.003 92.133 34.612 92.485 34.085 L 92.485 34.906 L 93.171 34.906 L 93.171 30.019 L 92.485 30.019 L 92.485 30.84 C 92.133 30.312 91.427 29.921 90.672 29.921 C 89.281 29.921 88.232 31.065 88.232 32.462 C 88.232 33.86 89.281 35.003 90.672 35.003 Z M 90.741 34.368 C 89.673 34.368 88.938 33.518 88.938 32.462 C 88.938 31.407 89.673 30.556 90.741 30.556 C 91.809 30.556 92.544 31.407 92.544 32.462 C 92.544 33.518 91.809 34.368 90.741 34.368 Z M 94.855 34.906 L 95.541 34.906 L 95.541 32.452 C 95.541 31.201 96.295 30.654 96.903 30.654 C 97.05 30.654 97.177 30.674 97.315 30.723 L 97.315 30.009 C 97.199 29.982 97.081 29.968 96.962 29.97 C 96.384 29.97 95.747 30.341 95.541 31.026 L 95.541 30.019 L 94.855 30.019 Z M 98.71 28.553 C 98.847 28.552 98.977 28.496 99.073 28.399 C 99.168 28.302 99.221 28.171 99.22 28.035 C 99.221 27.899 99.168 27.768 99.073 27.671 C 98.977 27.573 98.847 27.518 98.71 27.517 C 98.421 27.515 98.184 27.746 98.181 28.035 C 98.184 28.323 98.421 28.555 98.71 28.553 Z M 98.358 34.906 L 99.044 34.906 L 99.044 30.019 L 98.358 30.019 Z M 100.731 34.906 L 101.417 34.906 L 101.417 32.472 C 101.417 31.26 102.083 30.556 102.945 30.556 C 103.671 30.556 104.18 31.084 104.18 31.944 L 104.18 34.906 L 104.866 34.906 L 104.866 31.847 C 104.866 30.654 104.092 29.921 103.024 29.921 C 102.387 29.921 101.769 30.195 101.417 30.84 L 101.417 30.019 L 100.731 30.019 Z M 108.59 37.046 C 109.942 37.046 110.971 36.196 110.971 34.603 L 110.971 30.019 L 110.285 30.019 L 110.285 30.84 C 109.932 30.312 109.246 29.921 108.492 29.921 C 107.1 29.921 106.071 31.016 106.071 32.413 C 106.071 33.811 107.1 34.906 108.492 34.906 C 109.246 34.906 109.932 34.515 110.285 33.987 L 110.285 34.564 C 110.285 35.766 109.57 36.421 108.599 36.421 C 107.737 36.421 107.129 36.088 106.894 35.404 L 106.218 35.404 C 106.385 36.372 107.296 37.046 108.59 37.046 Z M 108.56 34.27 C 107.492 34.27 106.777 33.469 106.777 32.413 C 106.777 31.358 107.492 30.556 108.56 30.556 C 109.628 30.556 110.344 31.358 110.344 32.413 C 110.344 33.469 109.628 34.27 108.56 34.27 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:10032539652,title:\"Anytime Carsharing\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tf5c7r\",\"data-framer-name\":\"kart\",layoutDependency:layoutDependency,layoutId:\"P6zsVAzcL\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.kart.cz/\",motionChild:true,nodeId:\"Mhza4GHX_-shape\",scopeId:\"IEyECgUCN\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1eronxw framer-dv8hj3\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Mhza4GHX_-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 101 38\"><g transform=\"translate(0.825 0.414)\" id=\"ss11409746712_1\"><path d=\"M 0 0 L 37.302 0 L 37.302 37.263 L 0 37.263 Z\" fill=\"rgb(242,79,0)\"></path><path d=\"M 16.338 20.942 L 30.028 20.942 L 30.028 16.321 L 16.338 16.321 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 7.087 7.08 L 7.087 30.183 L 30.215 30.183 L 30.215 25.562 L 11.713 25.562 L 11.713 11.7 L 30.215 11.7 L 30.215 7.08 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 46.49 27.874 C 46.49 26.29 47.574 25.512 48.749 25.512 C 49.799 25.512 50.631 26.145 50.757 27.049 L 50.037 27.049 C 49.958 26.508 49.416 26.119 48.742 26.119 C 47.844 26.119 47.197 26.733 47.197 27.874 C 47.197 29.016 47.844 29.629 48.742 29.629 C 49.429 29.629 49.977 29.24 50.05 28.699 L 50.744 28.699 C 50.645 29.603 49.819 30.236 48.749 30.236 C 47.56 30.236 46.49 29.457 46.49 27.874 M 48.267 24.272 L 48.69 24.78 L 49.106 24.272 L 49.687 24.272 L 48.967 25.196 L 48.419 25.196 L 47.699 24.272 Z\" fill=\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13)) /* {&quot;name&quot;:&quot;text-base&quot;} */\"></path><path d=\"M 51.632 25.565 L 52.319 25.565 L 52.319 29.576 L 54.571 29.576 L 54.571 30.183 L 51.632 30.183 Z\" fill=\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13)) /* {&quot;name&quot;:&quot;text-base&quot;} */\"></path><path d=\"M 55.326 25.565 L 58.291 25.565 L 58.291 26.172 L 56.013 26.172 L 56.013 27.498 L 57.855 27.498 L 57.855 28.105 L 56.013 28.105 L 56.013 29.576 L 58.364 29.576 L 58.364 30.183 L 55.326 30.183 Z\" fill=\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13)) /* {&quot;name&quot;:&quot;text-base&quot;} */\"></path><path d=\"M 59.298 25.565 L 60.064 25.565 L 62.29 29.121 L 62.29 25.565 L 62.976 25.565 L 62.976 30.183 L 62.217 30.183 L 59.985 26.633 L 59.985 30.183 L 59.298 30.183 Z\" fill=\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13)) /* {&quot;name&quot;:&quot;text-base&quot;} */\"></path><path d=\"M 65.622 27.874 C 65.622 26.29 66.705 25.512 67.881 25.512 C 68.931 25.512 69.763 26.145 69.889 27.049 L 69.168 27.049 C 69.089 26.508 68.548 26.119 67.874 26.119 C 66.976 26.119 66.328 26.733 66.328 27.874 C 66.328 29.016 66.976 29.629 67.874 29.629 C 68.561 29.629 69.109 29.24 69.182 28.699 L 69.875 28.699 C 69.776 29.603 68.951 30.236 67.881 30.236 C 66.692 30.236 65.622 29.457 65.622 27.874 M 67.398 24.272 L 67.821 24.78 L 68.237 24.272 L 68.819 24.272 L 68.099 25.196 L 67.551 25.196 L 66.83 24.272 Z\" fill=\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13)) /* {&quot;name&quot;:&quot;text-base&quot;} */\"></path><path d=\"M 70.763 25.565 L 73.729 25.565 L 73.729 26.172 L 71.45 26.172 L 71.45 27.498 L 73.293 27.498 L 73.293 28.105 L 71.45 28.105 L 71.45 29.576 L 73.801 29.576 L 73.801 30.183 L 70.763 30.183 Z\" fill=\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13)) /* {&quot;name&quot;:&quot;text-base&quot;} */\"></path><path d=\"M 74.471 29.583 L 77.192 26.165 L 74.61 26.165 L 74.61 25.565 L 77.971 25.565 L 77.971 26.165 L 75.25 29.583 L 77.971 29.583 L 77.971 30.183 L 74.471 30.183 Z\" fill=\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13)) /* {&quot;name&quot;:&quot;text-base&quot;} */\"></path><path d=\"M 80.584 25.565 L 83.549 25.565 L 83.549 26.172 L 81.271 26.172 L 81.271 27.498 L 83.113 27.498 L 83.113 28.105 L 81.271 28.105 L 81.271 29.576 L 83.622 29.576 L 83.622 30.183 L 80.584 30.183 Z\" fill=\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13)) /* {&quot;name&quot;:&quot;text-base&quot;} */\"></path><path d=\"M 84.298 28.652 L 84.965 28.652 C 85.018 29.246 85.407 29.629 86.062 29.629 C 86.642 29.629 87.065 29.405 87.065 28.903 C 87.065 27.795 84.443 28.461 84.443 26.759 C 84.443 26.02 85.09 25.512 86.022 25.512 C 86.966 25.512 87.613 26.06 87.673 26.904 L 87.006 26.904 C 86.959 26.429 86.59 26.119 86.022 26.119 C 85.467 26.119 85.13 26.37 85.13 26.759 C 85.13 27.88 87.765 27.135 87.765 28.897 C 87.765 29.741 87.052 30.236 86.062 30.236 C 85.018 30.236 84.351 29.609 84.298 28.652\" fill=\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13)) /* {&quot;name&quot;:&quot;text-base&quot;} */\"></path><path d=\"M 88.448 27.874 C 88.448 26.29 89.531 25.512 90.707 25.512 C 91.757 25.512 92.589 26.145 92.715 27.049 L 91.995 27.049 C 91.915 26.508 91.374 26.119 90.7 26.119 C 89.802 26.119 89.154 26.733 89.154 27.874 C 89.154 29.016 89.802 29.629 90.7 29.629 C 91.387 29.629 91.935 29.24 92.008 28.699 L 92.701 28.699 C 92.602 29.603 91.777 30.236 90.707 30.236 C 89.518 30.236 88.448 29.457 88.448 27.874\" fill=\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13)) /* {&quot;name&quot;:&quot;text-base&quot;} */\"></path><path d=\"M 93.378 27.874 C 93.378 26.514 94.355 25.512 95.676 25.512 C 96.991 25.512 97.968 26.514 97.968 27.874 C 97.968 29.233 96.991 30.236 95.676 30.236 C 94.355 30.236 93.378 29.233 93.378 27.874 M 95.676 29.629 C 96.594 29.629 97.268 28.883 97.268 27.874 C 97.268 26.865 96.594 26.119 95.676 26.119 C 94.758 26.119 94.078 26.865 94.078 27.874 C 94.078 28.883 94.758 29.629 95.676 29.629\" fill=\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13)) /* {&quot;name&quot;:&quot;text-base&quot;} */\"></path><path d=\"M 65.322 18.533 L 64.366 20.942 L 60.538 20.942 L 65.874 7.08 L 69.814 7.08 L 75.041 20.942 L 71.193 20.942 L 70.291 18.533 Z M 67.843 11.363 L 67.807 11.363 L 66.315 15.776 L 69.316 15.776 Z\" fill=\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13)) /* {&quot;name&quot;:&quot;text-base&quot;} */\"></path><path d=\"M 54.629 7.079 L 59.102 7.079 L 53.58 13.643 L 59.599 20.942 L 54.925 20.942 L 50.268 14.929 L 50.231 14.929 L 50.231 20.942 L 46.624 20.942 L 46.624 7.079 L 50.231 7.079 L 50.231 12.796 L 50.268 12.796 Z\" fill=\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13)) /* {&quot;name&quot;:&quot;text-base&quot;} */\"></path><path d=\"M 88.918 20.942 L 84.427 20.942 L 81.023 15.609 L 80.984 15.609 L 80.984 20.942 L 77.377 20.942 L 77.377 7.079 L 82.768 7.079 C 85.511 7.079 87.593 8.384 87.593 11.346 C 87.593 13.257 86.523 14.911 84.554 15.26 Z M 80.984 13.293 L 81.334 13.293 C 82.513 13.293 83.838 13.073 83.838 11.566 C 83.838 10.057 82.513 9.839 81.334 9.839 L 80.984 9.839 Z\" fill=\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13)) /* {&quot;name&quot;:&quot;text-base&quot;} */\"></path><path d=\"M 96.627 20.942 L 93.019 20.942 L 93.019 10.133 L 90.039 10.133 L 90.039 7.079 L 99.61 7.079 L 99.61 10.133 L 96.627 10.133 Z\" fill=\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13)) /* {&quot;name&quot;:&quot;text-base&quot;} */\"></path></g></svg>',svgContentId:11409746712,title:\"E KART\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pr17a6\",\"data-framer-name\":\"zenova-logo\",layoutDependency:layoutDependency,layoutId:\"q9BT37QMj\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1b8adde\",\"data-framer-name\":\"Zenova logo\",fill:\"black\",intrinsicHeight:38,intrinsicWidth:97,layoutDependency:layoutDependency,layoutId:\"G9QWyK5zZ\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"97.003\" height=\"38.48\"><path d=\"M65.05 15.77a5.513 5.513 0 0 1 5.536-5.536 5.212 5.212 0 0 1 3.875 1.666 5.534 5.534 0 0 1 1.6 3.936v.677a13.781 13.781 0 0 0 4.305-2.952A14.975 14.975 0 0 0 83.072 9.8a14.558 14.558 0 0 0-2.706-3.752A13.519 13.519 0 0 0 76.121 3.1v.677a5.291 5.291 0 0 1-1.6 3.875 5.346 5.346 0 0 1-3.875 1.661 5.25 5.25 0 0 1-3.936-1.661 5.593 5.593 0 0 1-1.66-3.937V3.1a13.518 13.518 0 0 0-4.244 2.952A13.582 13.582 0 0 0 58.1 9.8a13.582 13.582 0 0 0 2.706 3.752 14.609 14.609 0 0 0 4.244 2.952Z\" transform=\"translate(-22.361 -1.193)\" style=\"fill:#00a7eb\"/><path d=\"M37.829 12.848a17.575 17.575 0 0 1-2.583-3.383 14.177 14.177 0 0 0-.923 5.105v1.784h8.3v-.246a15.793 15.793 0 0 1-4.794-3.26Zm23.189-5.221a14.177 14.177 0 0 0 .923-5.105V.8h-8.242v.246a14.14 14.14 0 0 1 4.8 3.26 14.8 14.8 0 0 1 2.519 3.321ZM43.489 1.6v.984a4.7 4.7 0 0 0 1.415 3.383 4.6 4.6 0 0 0 3.385 1.414 4.327 4.327 0 0 0 3.26-1.415 5.014 5.014 0 0 0 1.35-3.382V1.6a13.342 13.342 0 0 0-4.674-.8 13.684 13.684 0 0 0-4.736.8Zm17.529 7.865a14.8 14.8 0 0 1-2.519 3.321 14.14 14.14 0 0 1-4.8 3.26v.246h8.242v-1.783a13.287 13.287 0 0 0-.923-5.044Zm-8.119 6.089v-.984a4.9 4.9 0 0 0-1.353-3.383 4.194 4.194 0 0 0-3.319-1.35 4.832 4.832 0 0 0-4.8 4.736v.984a14.031 14.031 0 0 0 4.8.8 13.342 13.342 0 0 0 4.672-.803ZM35.308 7.627a14.8 14.8 0 0 1 2.522-3.321 15.079 15.079 0 0 1 4.8-3.26V.8h-8.245v1.784a14.09 14.09 0 0 0 .923 5.043Z\" style=\"fill:#fff\"/><path d=\"M43.486 17.16v-.738a14.87 14.87 0 0 0 4.674.738h.126a15.155 15.155 0 0 0 4.674-.738v.738h9.841v-2.583a14.491 14.491 0 0 0-1.23-6.028 14.491 14.491 0 0 0 1.23-6.028V0h-9.9v.738A15.155 15.155 0 0 0 48.224 0h-.123a15.155 15.155 0 0 0-4.674.738V0h-9.841v2.583a14.491 14.491 0 0 0 1.23 6.028 14.491 14.491 0 0 0-1.23 6.028v2.583h9.9ZM34.386.8h8.3v.246a14.14 14.14 0 0 0-4.8 3.26 17.575 17.575 0 0 0-2.583 3.383 14.177 14.177 0 0 1-.917-5.106Zm1.353 7.75a14.556 14.556 0 0 1 6.95-6.7v.677a5.534 5.534 0 0 0 1.6 3.936 5.593 5.593 0 0 0 3.936 1.661A5.212 5.212 0 0 0 52.1 6.463a5.5 5.5 0 0 0 1.6-3.875v-.681a13.518 13.518 0 0 1 4.244 2.952 13.582 13.582 0 0 1 2.706 3.752 15.925 15.925 0 0 1-2.645 3.752 13.518 13.518 0 0 1-4.244 2.952v-.677a5.534 5.534 0 0 0-1.6-3.936 5.346 5.346 0 0 0-3.875-1.661 5.513 5.513 0 0 0-5.536 5.536v.677a13.6 13.6 0 0 1-4.305-2.891 14.861 14.861 0 0 1-2.706-3.814Zm17.16-6.95v.984a5.014 5.014 0 0 1-1.353 3.382 4.424 4.424 0 0 1-3.26 1.415 4.6 4.6 0 0 1-3.383-1.415 4.6 4.6 0 0 1-1.417-3.383V1.6a14.031 14.031 0 0 1 4.8-.8 13.246 13.246 0 0 1 4.613.8Zm.8-.8h8.242v1.783a14.673 14.673 0 0 1-.923 5.105 14.8 14.8 0 0 0-2.522-3.321 14.14 14.14 0 0 0-4.8-3.26ZM43.486 15.561v-.984a4.751 4.751 0 0 1 4.8-4.736 4.327 4.327 0 0 1 3.26 1.415 4.559 4.559 0 0 1 1.415 3.321v.984a13.342 13.342 0 0 1-4.674.8 15.383 15.383 0 0 1-4.8-.8Zm18.452.8h-8.239v-.246a14.14 14.14 0 0 0 4.8-3.26 14.8 14.8 0 0 0 2.522-3.321 14.177 14.177 0 0 1 .923 5.105Zm-19.251 0h-8.301v-1.784a14.673 14.673 0 0 1 .923-5.105 14.974 14.974 0 0 0 2.583 3.383 14.14 14.14 0 0 0 4.8 3.26Zm50.318 3.544v2.276a6.74 6.74 0 0 0-1.353-1.289 7.546 7.546 0 0 0-4.674-1.6 8.313 8.313 0 0 0-6.458 2.829 9.442 9.442 0 0 0-2.521 6.641 11.307 11.307 0 0 0 .738 4.059 8.465 8.465 0 0 0 12.916 4 6.783 6.783 0 0 0 1.415-1.23v2.214h3.931v-17.9Zm-1.538 12.978a5.311 5.311 0 0 1-7.934-.246 5.745 5.745 0 0 1-1.292-3.69 5.989 5.989 0 0 1 .369-2.091 6.646 6.646 0 0 1 .984-1.845 4.868 4.868 0 0 1 3.936-1.784 5.346 5.346 0 0 1 3.876 1.665 5.614 5.614 0 0 1 1.415 4 5.307 5.307 0 0 1-1.353 4ZM56.155 19.29a9.347 9.347 0 0 0-6.4 2.46 9.032 9.032 0 0 0-2.952 5.105 11.225 11.225 0 0 0-.308-2.46 6.743 6.743 0 0 0-3.625-4.428 6.92 6.92 0 0 0-3.137-.738 7.409 7.409 0 0 0-2.583.492 7.935 7.935 0 0 0-2.337 1.722v-1.6h-4.06v7.5a9.667 9.667 0 0 0-2.153-4.854 8.827 8.827 0 0 0-7.073-3.382 9.136 9.136 0 0 0-4.059.923 9.425 9.425 0 0 0-3.629 3.137 10.017 10.017 0 0 0-1.722 5.6 9.668 9.668 0 0 0 .923 4.182c.123.308.308.554.431.861H5.228L13.1 23.719v-3.875H.923v3.936h7.011L0 33.99v3.875h13.654v-3.69a8.691 8.691 0 0 0 2.829 2.768 9.476 9.476 0 0 0 5.105 1.476 8.649 8.649 0 0 0 5.9-2.276 8.925 8.925 0 0 0 2.706-4h-4.73a4.387 4.387 0 0 1-4 2.337 5.044 5.044 0 0 1-4.8-3.69H30.63c.062-.369.123-.677.185-1.046v8.119h4.305v-8.547a20.843 20.843 0 0 1 .123-2.768 3.826 3.826 0 0 1 .554-1.6 4.114 4.114 0 0 1 1.292-1.23 3.333 3.333 0 0 1 3.137-.123 3.212 3.212 0 0 1 1.169.861Q42.5 25.748 42.5 29.07v8.857h4.305v-7.074a9.291 9.291 0 0 0 4.921 6.52 9.035 9.035 0 0 0 4.367 1.107 9.491 9.491 0 0 0 6.335-2.337 9.077 9.077 0 0 0 3.26-7.258 9.634 9.634 0 0 0-9.533-9.595Zm-39.61 8a5.712 5.712 0 0 1 1.845-3.083 5.285 5.285 0 0 1 3.26-1.169 4.727 4.727 0 0 1 3.444 1.292 5.864 5.864 0 0 1 1.6 2.891H16.545Zm43.485 5.347a4.805 4.805 0 0 1-3.875 1.845 5.042 5.042 0 0 1-3.321-1.23 5.944 5.944 0 0 1-.677-8.119 5.071 5.071 0 0 1 4-1.968 4.608 4.608 0 0 1 3.26 1.353 5.452 5.452 0 0 1 1.907 4.367 5.675 5.675 0 0 1-1.294 3.752Z\"/><path d=\"m76.027 19.906-4.121 11.932-4.367-11.932h-4.674l7.258 17.96h3.321l7.321-17.96Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5rdrcc\",\"data-framer-name\":\"inter-logo\",layoutDependency:layoutDependency,layoutId:\"NH2Yzc5MM\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:174,intrinsicWidth:1594.5,pixelHeight:348,pixelWidth:3189,sizes:\"238px\",src:\"https://framerusercontent.com/images/miA6EPJ2AWBLA7kBy4cqKpV2bw.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/miA6EPJ2AWBLA7kBy4cqKpV2bw.png?scale-down-to=512 512w,https://framerusercontent.com/images/miA6EPJ2AWBLA7kBy4cqKpV2bw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/miA6EPJ2AWBLA7kBy4cqKpV2bw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/miA6EPJ2AWBLA7kBy4cqKpV2bw.png 3189w\"},className:\"framer-1or0jp6\",\"data-framer-name\":\"New-ia-logo\",layoutDependency:layoutDependency,layoutId:\"ddvuQ85af\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dirutl\",\"data-framer-name\":\"sw-logo\",layoutDependency:layoutDependency,layoutId:\"FdBrBSeq5\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:280,pixelHeight:300,pixelWidth:560,sizes:\"238.9333px\",src:\"https://framerusercontent.com/images/qKJOKXJ3bt0HG5R4p6EPtrQn4zg.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qKJOKXJ3bt0HG5R4p6EPtrQn4zg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/qKJOKXJ3bt0HG5R4p6EPtrQn4zg.webp 560w\"},className:\"framer-1avghu8\",\"data-framer-name\":\"1f560bf75ea16097b67b5c27551fec62\",layoutDependency:layoutDependency,layoutId:\"AIJ2DqaGM\"})})],speed:20,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Y90ml.framer-dv8hj3, .framer-Y90ml .framer-dv8hj3 { display: block; }\",\".framer-Y90ml.framer-1svzv7n { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-Y90ml .framer-voebi3-container { flex: none; height: 200px; max-width: 1440px; position: relative; width: 100%; }\",\".framer-Y90ml .framer-1kd192u { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 80px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 150px; }\",\".framer-Y90ml .framer-100cww6 { flex: none; height: 27px; position: relative; width: 145px; }\",\".framer-Y90ml .framer-4593th, .framer-Y90ml .framer-ln3qrd, .framer-Y90ml .framer-1e8qh19, .framer-Y90ml .framer-11wvwv7, .framer-Y90ml .framer-16z77jy, .framer-Y90ml .framer-1n3idcx, .framer-Y90ml .framer-fbfi9y, .framer-Y90ml .framer-fs4hp6, .framer-Y90ml .framer-l99jt7, .framer-Y90ml .framer-tf5c7r, .framer-Y90ml .framer-1pr17a6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 150px; }\",\".framer-Y90ml .framer-1on40ub { flex: none; height: 25px; position: relative; width: 103px; }\",\".framer-Y90ml .framer-1dhzcad { aspect-ratio: 6.897196261682243 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); overflow: visible; position: relative; text-decoration: none; width: 108px; }\",\".framer-Y90ml .framer-1p2fshu { aspect-ratio: 3.0427350427350426 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; text-decoration: none; width: 100px; }\",\".framer-Y90ml .framer-1q09clz { aspect-ratio: 1.5478260869565217 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 71px); overflow: visible; position: relative; text-decoration: none; width: 110px; }\",\".framer-Y90ml .framer-g0jcmv { aspect-ratio: 2.78125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); overflow: visible; position: relative; text-decoration: none; width: 100px; }\",\".framer-Y90ml .framer-15b3cdh, .framer-Y90ml .framer-dj8zjc { aspect-ratio: 3.0427350427350426 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); overflow: visible; position: relative; text-decoration: none; width: 120px; }\",\".framer-Y90ml .framer-1swel2k { flex: none; height: 24px; position: relative; width: 102px; }\",\".framer-Y90ml .framer-3mg9s7 { flex: none; height: 37px; position: relative; width: 112px; }\",\".framer-Y90ml .framer-1eronxw { flex: none; height: 38px; position: relative; text-decoration: none; width: 101px; }\",\".framer-Y90ml .framer-1b8adde { aspect-ratio: 2.5526315789473686 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); position: relative; width: 97px; }\",\".framer-Y90ml .framer-5rdrcc, .framer-Y90ml .framer-dirutl { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 277px; }\",\".framer-Y90ml .framer-1or0jp6 { aspect-ratio: 9.163793103448276 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 238px; }\",\".framer-Y90ml .framer-1avghu8 { aspect-ratio: 1.8666666666666667 / 1; flex: none; height: 128px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 239px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Y90ml.framer-1svzv7n, .framer-Y90ml .framer-1kd192u, .framer-Y90ml .framer-4593th, .framer-Y90ml .framer-ln3qrd, .framer-Y90ml .framer-1e8qh19, .framer-Y90ml .framer-11wvwv7, .framer-Y90ml .framer-16z77jy, .framer-Y90ml .framer-1n3idcx, .framer-Y90ml .framer-fbfi9y, .framer-Y90ml .framer-fs4hp6, .framer-Y90ml .framer-l99jt7, .framer-Y90ml .framer-tf5c7r, .framer-Y90ml .framer-1pr17a6, .framer-Y90ml .framer-5rdrcc, .framer-Y90ml .framer-dirutl { gap: 0px; } .framer-Y90ml.framer-1svzv7n > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Y90ml.framer-1svzv7n > :first-child { margin-top: 0px; } .framer-Y90ml.framer-1svzv7n > :last-child { margin-bottom: 0px; } .framer-Y90ml .framer-1kd192u > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Y90ml .framer-1kd192u > :first-child, .framer-Y90ml .framer-4593th > :first-child, .framer-Y90ml .framer-ln3qrd > :first-child, .framer-Y90ml .framer-1e8qh19 > :first-child, .framer-Y90ml .framer-11wvwv7 > :first-child, .framer-Y90ml .framer-16z77jy > :first-child, .framer-Y90ml .framer-1n3idcx > :first-child, .framer-Y90ml .framer-fbfi9y > :first-child, .framer-Y90ml .framer-fs4hp6 > :first-child, .framer-Y90ml .framer-l99jt7 > :first-child, .framer-Y90ml .framer-tf5c7r > :first-child, .framer-Y90ml .framer-1pr17a6 > :first-child, .framer-Y90ml .framer-5rdrcc > :first-child, .framer-Y90ml .framer-dirutl > :first-child { margin-left: 0px; } .framer-Y90ml .framer-1kd192u > :last-child, .framer-Y90ml .framer-4593th > :last-child, .framer-Y90ml .framer-ln3qrd > :last-child, .framer-Y90ml .framer-1e8qh19 > :last-child, .framer-Y90ml .framer-11wvwv7 > :last-child, .framer-Y90ml .framer-16z77jy > :last-child, .framer-Y90ml .framer-1n3idcx > :last-child, .framer-Y90ml .framer-fbfi9y > :last-child, .framer-Y90ml .framer-fs4hp6 > :last-child, .framer-Y90ml .framer-l99jt7 > :last-child, .framer-Y90ml .framer-tf5c7r > :last-child, .framer-Y90ml .framer-1pr17a6 > :last-child, .framer-Y90ml .framer-5rdrcc > :last-child, .framer-Y90ml .framer-dirutl > :last-child { margin-right: 0px; } .framer-Y90ml .framer-4593th > *, .framer-Y90ml .framer-ln3qrd > *, .framer-Y90ml .framer-1e8qh19 > *, .framer-Y90ml .framer-11wvwv7 > *, .framer-Y90ml .framer-16z77jy > *, .framer-Y90ml .framer-1n3idcx > *, .framer-Y90ml .framer-fbfi9y > *, .framer-Y90ml .framer-fs4hp6 > *, .framer-Y90ml .framer-l99jt7 > *, .framer-Y90ml .framer-tf5c7r > *, .framer-Y90ml .framer-1pr17a6 > *, .framer-Y90ml .framer-5rdrcc > *, .framer-Y90ml .framer-dirutl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIEyECgUCN=withCSS(Component,css,\"framer-Y90ml\");export default FramerIEyECgUCN;FramerIEyECgUCN.displayName=\"components/carousel\";FramerIEyECgUCN.defaultProps={height:200,width:1440};addFonts(FramerIEyECgUCN,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIEyECgUCN\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IEyECgUCN.map"],
  "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", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "SVG", "Link", "Image2", "css", "FramerIEyECgUCN", "withCSS", "IEyECgUCN_default", "addFonts", "TickerFonts"]
}
