{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/zJY4VsQcFDxLcM3LLazU/08lKCJbeZahmlqgqdLrt/X0pWRhS69.js", "ssg:https://framerusercontent.com/modules/8pu5L34EbhUyI3RKEkY2/DcpBVagpwuTtnJff9US3/qOJo0Mta5.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"vWGPBF3jz\",\"SBor4QFw7\",\"t_F6djuS7\"];const serializationHash=\"framer-LToL2\";const variantClassNames={SBor4QFw7:\"framer-v-1krk9kt\",t_F6djuS7:\"framer-v-1x65l4l\",vWGPBF3jz:\"framer-v-1dxlgvv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"J\\xe4germeister\":\"vWGPBF3jz\",Fembites:\"SBor4QFw7\",Sparkasse:\"t_F6djuS7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"vWGPBF3jz\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vWGPBF3jz\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"SBor4QFw7\",\"t_F6djuS7\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"SBor4QFw7\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"t_F6djuS7\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1dxlgvv\",className,classNames),\"data-framer-name\":\"J\\xe4germeister\",layoutDependency:layoutDependency,layoutId:\"vWGPBF3jz\",ref:refBinding,style:{...style},...addPropertyOverrides({SBor4QFw7:{\"data-framer-name\":\"Fembites\"},t_F6djuS7:{\"data-framer-name\":\"Sparkasse\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ftfii9\",\"data-framer-name\":\"Jaegermeister 1\",fill:\"black\",intrinsicHeight:62,intrinsicWidth:259,layoutDependency:layoutDependency,layoutId:\"sDio_N0HG\",svg:'<svg width=\"259\" height=\"62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m21.08 22.94-.013-.041-1.744-1.312-.02.125.717 1.228h1.06ZM46.806 8.282l-1.394 4.706.962.356 3.577-3.932-3.145-1.13Zm6.024 0-1.4 4.706.962.356 3.577-3.932-3.138-1.13ZM50.823 22.5c-1.57 1.312-6.981 1.835-7.33-2.267 0 0 5.586 1.744 7.33 2.267Zm-7.42 20.594V27.04l5.062-2.53v15.27l-2.53 4.359-2.532-1.046Zm-6.89-21.814s2.182 3.493 4.532 4.101c-1.22.439-4.707 2.008-4.707 2.008s.782 1.22.782 2.008V45.89c0 .697.264 1.046-.35 2.002l7.853 1.75 4.456-7.595v3.669l-.614 2.35 5.844 1.576 3.145-4.889-2.357-.871v-22.86c0-.697.259-1.311.788-1.925l-10.913-4.009-3.396 3.661-5.063 2.531ZM68.62 43.965l-2.267-.606v-22.86l7.064 2.441-2.176 1.66s.872 1.045.872 2.615v10.118l-3.494 6.632ZM59.462 20.5s.523 1.478.523 2.616v21.29c0 1.834-.705 2.705-.705 2.705l7.769 2.267 4.972-8.899v10.21c-9.77-3.843-13.173 3.835-13.612 5.76.613 0 .962.084 1.66.084 1.659-3.403 8.375-1.66 10.731-.084 1.137-1.053 4.1-3.843 4.1-3.843l3.579-.962V20.41c0-.964.614-1.569.614-1.569l-11.87-3.668-2.615 2.88L61.38 20.5s-.963.174-1.918 0Zm34.548 6.715-4.533 8.291V21.37l4.533 5.845Zm-11.43-6.806s.788 1.136.788 2.615v20.593c0 2.098-.697 3.054-.697 3.054l12.036 3.145 4.282-6.806-2.531-.788-.524 2.092-6.373-1.827V38.47l9.072-15.446-8.2-8.11-3.662 4.358-4.19 1.137Zm85.511 6.806-4.533 8.291V21.37l4.533 5.845Zm-11.431-6.806s.788 1.136.788 2.615v20.593c0 2.098-.697 3.054-.697 3.054l12.037 3.145 4.273-6.806-2.522-.788-.531 2.092-6.366-1.827V38.47l9.071-15.446-8.2-8.11-3.661 4.358-4.192 1.137Zm67.539 6.806-4.539 8.291V21.37l4.539 5.845Zm-11.436-6.806s.788 1.136.788 2.615v20.593c0 2.098-.698 3.054-.698 3.054l12.044 3.145 4.275-6.806-2.532-.788-.523 2.092-6.373-1.827V38.47l9.079-15.446-8.2-8.11-3.668 4.358-4.192 1.137ZM98.724 19.71l2.441.963v23.815c0 1.66-.432 2.706-.432 2.706l9.246 2.273 3.926-6.548-2.008-.872-.697 2.183-3.752-1.136v-17.1l2.448-4.54s1.22 3.927 1.918 6.723c.697 2.79-1.046 3.752-1.046 3.752s.697.433 1.303 1.13c8.467-4.533 1.228-18.41 1.228-18.41h-1.66l-4.275 8.466v-4.366c0-1.304.433-2.009.433-2.009l-5.67-2.001-3.403 4.972Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m228.557 19.71 2.441.963v23.815c0 1.66-.432 2.706-.432 2.706l9.247 2.273 3.927-6.548-2.01-.872-.697 2.183-3.751-1.136v-17.1l2.447-4.54s1.221 3.927 1.917 6.723c.699 2.79-1.045 3.752-1.045 3.752s.697.433 1.311 1.13c8.46-4.533 1.221-18.41 1.221-18.41h-1.66l-4.276 8.466v-4.366c0-1.304.433-2.009.433-2.009l-5.669-2.001-3.404 4.972Zm-111.248-.347 2.705 1.22v22.86c0 2.705-.613 4.449-.613 4.449l6.374 1.485 2.705-4.624-1.833-.697V26.692s2.531-4.275 3.577-6.11c.962.175 1.918.614 2.88.963v22.072c0 3.403-.698 4.275-.698 4.275l6.458 1.575 2.88-4.979-2.182-.78V27.04l3.836-6.541 2.273.608v22.858c0 2.274-.704 3.668-.704 3.668l6.98 1.744 2.623-4.798-2.707-.871v-22.86c0-1.75 1.047-3.23 1.047-3.23l-8.376-2.795-5.063 9.512v-4.972c0-.614.348-1.744.348-1.744l-7.935-2.97-5.328 9.163v-4.54c0-1.22.523-2.176.523-2.176l-6.541-2.448-3.229 4.715Zm56.276.347 2.796 1.222v22.252c0 2.182-.87 4.358-.87 4.358l6.98 1.751 2.705-4.63-2.705-1.13V19.62c0-1.305.872-2.441.872-2.441l-6.548-2.358-3.23 4.888Zm5.503-6.895 1.045.438 3.578-4.274-3.228-1.046-1.395 4.882Zm7.936 0s.787 1.924.787 4.456v39.352h2.706c0-2.358 1.743-3.752 3.578-3.752V13.519c1.833 2.35 5.934.954 6.632-.175.697-1.136 2.789-3.668 2.789-3.668s-.607-.613-1.22-.788c-1.487 2.01-3.139 1.576-3.927 1.137-.788-.432-3.318-2.182-3.318-2.182l-3.404 3.576-4.623 1.396Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m198.369 18.924 2.008.09v24.17c0 3.229-.871 4.275-.871 4.275l6.98 1.834 3.048-4.714-3.048-1.395V19.097h3.835l2.267-4.797h-6.192V9.237l-3.927 5.501-4.1 4.186ZM13.277 8.19l.028 12.567 2.35-6.457h8.033s2.002.439 4.275-.956c-1.576 1.57-2.531 2.441-3.752 2.699.175.265.259.788.259 1.312v5.585h-4.45l-.788-1.339H17.49v11.374l2.183-5.851h4.972v22.343S15.92 38.82 15.57 38.212c-.348-.614-.697-1.311-.697-2.531h-1.137c-2.266 3.403-2.88 7.761-.697 10.557 2.183 2.79 8.466 10.733 8.466 10.733l5.67-4.275 5.062-1.834V13.951c0-1.834 1.304-3.228 2.615-3.228V9.237H15.829l-.697-1.046h-1.855Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1wahuyd\",\"data-framer-name\":\"logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"dnlb3jxdI\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 126 25\"><path d=\"M 13.389 18.202 C 13.182 18.248 13.021 18.065 13.159 17.928 C 14.148 16.741 14.769 14.687 14.769 12.359 C 14.769 10.032 14.125 7.978 13.159 6.791 C 13.044 6.654 13.205 6.448 13.389 6.517 C 16.265 7.293 18.335 9.621 18.335 12.359 C 18.335 15.098 16.265 17.403 13.389 18.202 Z M 12.308 17.928 C 12.423 18.065 12.262 18.271 12.078 18.202 C 9.179 17.403 7.109 15.098 7.109 12.359 C 7.109 9.621 9.179 7.316 12.055 6.517 C 12.262 6.471 12.423 6.654 12.285 6.791 C 11.296 7.978 10.651 10.032 10.651 12.359 C 10.651 14.687 11.318 16.741 12.308 17.928 Z M 24.823 9.278 L 20.245 9.278 L 23.488 6.106 C 23.626 5.969 23.626 5.741 23.488 5.581 L 19.6 1.77 C 19.462 1.633 19.209 1.633 19.071 1.77 L 15.851 4.942 L 15.851 0.446 C 15.851 0.241 15.69 0.081 15.483 0.081 L 9.984 0.081 C 9.777 0.081 9.616 0.241 9.616 0.446 L 9.616 4.942 L 6.372 1.77 C 6.234 1.633 5.981 1.633 5.843 1.77 L 1.978 5.581 C 1.84 5.718 1.84 5.946 1.978 6.106 L 5.222 9.278 L 0.644 9.278 C 0.437 9.278 0.276 9.438 0.276 9.644 L 0.276 15.053 C 0.276 15.258 0.437 15.418 0.644 15.418 L 5.222 15.418 L 1.978 18.613 C 1.84 18.75 1.84 18.978 1.978 19.138 L 5.866 22.949 C 6.004 23.086 6.257 23.086 6.395 22.949 L 9.639 19.777 L 9.639 24.273 C 9.639 24.478 9.8 24.638 10.007 24.638 L 15.505 24.638 C 15.713 24.638 15.874 24.478 15.874 24.273 L 15.874 19.754 L 19.117 22.926 C 19.255 23.063 19.508 23.063 19.646 22.926 L 23.534 19.115 C 23.672 18.978 23.672 18.75 23.534 18.59 L 20.245 15.418 L 24.823 15.418 C 25.03 15.418 25.191 15.258 25.191 15.053 L 25.191 9.644 C 25.191 9.438 25.03 9.278 24.823 9.278 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 38.695 15.007 L 41.226 15.007 C 41.387 15.007 41.525 14.87 41.525 14.71 L 41.525 12.884 C 41.525 12.725 41.387 12.588 41.226 12.588 L 38.695 12.588 L 38.695 12.131 C 38.695 10.944 39.224 10.579 39.983 10.579 C 40.489 10.579 40.904 10.625 41.226 10.693 C 41.387 10.716 41.525 10.602 41.525 10.465 L 41.525 8.662 C 41.525 8.502 41.387 8.343 41.226 8.32 C 40.65 8.229 39.868 8.137 39.178 8.137 C 37.2 8.137 35.313 9.142 35.313 11.812 L 35.313 12.588 L 33.818 12.588 C 33.657 12.588 33.519 12.725 33.519 12.884 L 33.519 14.71 C 33.519 14.87 33.657 15.007 33.818 15.007 L 35.313 15.007 L 35.313 19.161 L 35.175 24.045 C 35.175 24.204 35.313 24.341 35.474 24.341 L 38.534 24.341 C 38.695 24.341 38.833 24.204 38.833 24.045 L 38.695 19.161 Z M 50.911 20.37 C 50.727 20.37 50.566 20.484 50.52 20.667 C 50.198 21.854 49.37 22.356 48.242 22.356 C 46.586 22.356 45.712 21.374 45.574 19.161 L 53.948 19.161 C 54.109 19.161 54.247 19.024 54.247 18.864 C 54.155 14.824 51.992 12.291 48.127 12.291 C 44.262 12.291 42.1 14.756 42.1 18.499 C 42.1 22.242 44.239 24.638 48.196 24.638 C 51.463 24.638 53.533 22.789 53.856 20.667 C 53.879 20.507 53.763 20.37 53.602 20.37 Z M 50.52 16.992 L 45.666 16.992 C 45.942 15.372 46.77 14.55 48.15 14.55 C 49.669 14.55 50.382 15.737 50.52 16.992 Z M 58.917 18.476 C 58.917 16.08 60.067 14.824 61.033 14.824 C 61.999 14.824 62.598 15.509 62.598 16.924 L 62.598 20.119 L 62.46 24.045 C 62.46 24.204 62.598 24.341 62.759 24.341 L 65.749 24.341 C 65.91 24.341 66.048 24.204 66.048 24.045 L 65.91 20.119 L 65.91 18.476 C 65.91 16.08 67.084 14.824 68.027 14.824 C 68.97 14.824 69.591 15.509 69.591 16.924 L 69.591 20.119 L 69.453 24.045 C 69.453 24.204 69.591 24.341 69.752 24.341 L 72.743 24.341 C 72.904 24.341 73.042 24.204 73.042 24.045 L 72.95 20.119 L 72.95 16.878 C 72.95 13.752 71.57 12.314 69.177 12.314 C 67.774 12.314 66.577 12.747 65.542 14.505 C 65.013 13.021 63.84 12.314 62.183 12.314 C 60.665 12.314 59.607 12.93 58.779 14.071 L 58.825 12.884 C 58.848 12.725 58.71 12.588 58.549 12.588 L 55.765 12.588 C 55.604 12.588 55.466 12.725 55.466 12.884 L 55.558 20.119 L 55.42 24.045 C 55.42 24.204 55.558 24.341 55.719 24.341 L 58.756 24.341 C 58.917 24.341 59.055 24.204 59.055 24.045 L 58.917 20.119 Z M 86.822 18.43 C 86.822 15.007 85.051 12.359 81.692 12.359 C 80.22 12.359 79.023 12.93 78.218 13.934 L 78.287 8.662 C 78.287 8.502 78.149 8.366 77.988 8.366 L 75.043 8.366 C 74.882 8.366 74.744 8.502 74.744 8.662 L 74.882 16.353 L 74.744 24.045 C 74.744 24.204 74.882 24.341 75.043 24.341 L 77.965 24.341 C 78.126 24.341 78.264 24.204 78.241 24.045 L 78.195 23.086 C 79 24.045 80.151 24.57 81.623 24.57 C 84.844 24.57 86.822 21.831 86.822 18.43 Z M 78.126 18.339 C 78.149 15.92 79.046 14.687 80.726 14.687 C 82.382 14.665 83.302 15.988 83.302 18.567 C 83.302 20.941 82.405 22.287 80.657 22.242 C 79 22.219 78.103 20.85 78.126 18.339 Z M 91.446 11.447 C 91.607 11.447 91.745 11.31 91.745 11.15 L 91.745 8.662 C 91.745 8.502 91.607 8.366 91.446 8.366 L 88.547 8.366 C 88.386 8.366 88.248 8.502 88.248 8.662 L 88.248 11.15 C 88.248 11.31 88.386 11.447 88.547 11.447 Z M 91.492 24.341 C 91.653 24.341 91.791 24.204 91.791 24.045 L 91.653 18.476 L 91.791 12.884 C 91.791 12.725 91.653 12.588 91.492 12.588 L 88.501 12.588 C 88.34 12.588 88.202 12.725 88.202 12.884 L 88.34 18.476 L 88.202 24.045 C 88.202 24.204 88.34 24.341 88.501 24.341 Z M 100.534 22.173 C 100.534 22.036 100.395 21.922 100.234 21.968 C 99.912 22.036 99.498 22.128 98.992 22.128 C 98.232 22.128 97.727 21.808 97.727 20.804 L 97.704 15.007 L 100.257 15.007 C 100.418 15.007 100.556 14.87 100.556 14.71 L 100.556 12.884 C 100.556 12.725 100.418 12.588 100.257 12.588 L 97.727 12.588 L 97.772 9.94 C 97.772 9.781 97.635 9.644 97.474 9.644 L 94.529 9.644 C 94.368 9.644 94.23 9.781 94.23 9.94 L 94.276 12.588 L 93.056 12.588 C 92.895 12.588 92.758 12.725 92.758 12.884 L 92.758 14.71 C 92.758 14.87 92.895 15.007 93.056 15.007 L 94.298 15.007 L 94.276 20.895 C 94.276 23.565 96.186 24.57 98.186 24.57 C 98.877 24.57 99.613 24.41 100.257 24.204 C 100.418 24.159 100.534 23.999 100.534 23.817 Z M 109.827 20.37 C 109.643 20.37 109.482 20.484 109.436 20.667 C 109.114 21.854 108.286 22.356 107.158 22.356 C 105.502 22.356 104.629 21.374 104.49 19.161 L 112.864 19.161 C 113.026 19.161 113.163 19.024 113.163 18.864 C 113.071 14.824 110.909 12.291 107.044 12.291 C 103.179 12.291 101.016 14.756 101.016 18.499 C 101.016 22.242 103.156 24.638 107.113 24.638 C 110.38 24.638 112.45 22.789 112.772 20.667 C 112.795 20.507 112.68 20.37 112.519 20.37 Z M 109.436 16.992 L 104.582 16.992 C 104.858 15.372 105.686 14.55 107.067 14.55 C 108.585 14.55 109.299 15.737 109.436 16.992 Z M 125.172 20.758 C 125.172 15.76 117.419 18.042 117.419 15.806 C 117.419 14.802 118.132 14.391 119.26 14.391 C 120.617 14.391 121.261 14.984 121.468 15.92 C 121.514 16.102 121.652 16.217 121.837 16.217 L 124.459 16.217 C 124.619 16.217 124.758 16.08 124.735 15.92 C 124.482 13.523 122.412 12.314 119.328 12.314 C 116.246 12.314 114.152 13.615 114.152 16.057 C 114.152 20.987 121.905 18.818 121.905 21.055 C 121.905 21.968 121.169 22.493 119.812 22.493 C 118.224 22.493 117.373 21.945 117.258 20.69 C 117.235 20.507 117.097 20.393 116.913 20.393 L 114.176 20.393 C 114.015 20.393 113.876 20.53 113.876 20.69 C 114.061 23.269 116.568 24.615 119.812 24.615 C 122.848 24.592 125.172 23.2 125.172 20.758 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:10482554579,withExternalLayout:true,...addPropertyOverrides({SBor4QFw7:{svgContentId:10950421412}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1fxaadb\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"DKkD73rWD-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 28\"><path d=\"M 10.504 1 C 10.03 1 9.561 1.096 9.125 1.282 C 8.698 1.46 8.354 1.676 8.032 1.985 C 7.717 2.297 7.456 2.695 7.272 3.112 C 7.091 3.532 6.987 3.949 6.987 4.425 C 6.987 4.902 7.091 5.366 7.272 5.786 C 7.456 6.201 7.717 6.556 8.032 6.866 C 8.354 7.179 8.698 7.434 9.125 7.616 C 9.551 7.795 10.021 7.898 10.504 7.898 C 10.99 7.898 11.456 7.795 11.882 7.616 C 12.304 7.434 12.662 7.179 12.975 6.866 C 13.291 6.556 13.551 6.201 13.736 5.786 C 13.916 5.366 14.021 4.902 14.021 4.425 C 14.021 3.949 13.916 3.532 13.736 3.112 C 13.551 2.695 13.291 2.297 12.975 1.985 C 12.662 1.676 12.304 1.46 11.882 1.282 C 11.447 1.095 10.978 1 10.504 1 Z M 3.47 10.009 C 2.987 10.009 2.565 10.062 2.139 10.244 C 1.713 10.424 1.316 10.683 0.998 10.995 C 0.683 11.307 0.466 11.701 0.285 12.121 C 0.101 12.538 0 12.958 0 13.435 L 0 21.037 L 16.112 21.037 L 16.112 23.148 L 0 23.148 L 0 24.509 C 0 24.988 0.103 25.449 0.285 25.87 C 0.466 26.29 0.684 26.636 0.998 26.949 C 1.316 27.259 1.713 27.52 2.139 27.7 C 2.565 27.882 2.987 27.981 3.47 27.981 L 17.538 27.981 C 18.021 27.981 18.443 27.882 18.869 27.7 C 19.296 27.52 19.696 27.259 20.009 26.949 C 20.327 26.636 20.585 26.29 20.77 25.87 C 20.954 25.449 21.007 24.988 21.007 24.509 L 21.007 16.907 L 4.895 16.907 L 4.895 14.843 L 21.007 14.843 L 21.007 13.435 C 21.007 12.958 20.956 12.538 20.77 12.121 C 20.587 11.701 20.327 11.306 20.009 10.995 C 19.696 10.683 19.296 10.424 18.869 10.244 C 18.443 10.062 18.021 10.009 17.538 10.009 Z\" fill=\"var(--token-1d3a20a2-a735-4738-be0e-72e174d126d1, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text/High Contrast&quot;} */\"></path></svg>',svgContentId:10388768480,withExternalLayout:true,...addPropertyOverrides({t_F6djuS7:{svgContentId:12178431695}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LToL2.framer-udf1l6, .framer-LToL2 .framer-udf1l6 { display: block; }\",\".framer-LToL2.framer-1dxlgvv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-LToL2 .framer-1ftfii9 { aspect-ratio: 4.17741935483871 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 101px; }\",\".framer-LToL2 .framer-1wahuyd { flex: none; height: 25px; position: relative; width: 126px; }\",\".framer-LToL2 .framer-1fxaadb { flex: none; height: 28px; position: relative; width: 22px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LToL2.framer-1dxlgvv { gap: 0px; } .framer-LToL2.framer-1dxlgvv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-LToL2.framer-1dxlgvv > :first-child { margin-left: 0px; } .framer-LToL2.framer-1dxlgvv > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 100.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"SBor4QFw7\":{\"layout\":[\"auto\",\"auto\"]},\"t_F6djuS7\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerX0pWRhS69=withCSS(Component,css,\"framer-LToL2\");export default FramerX0pWRhS69;FramerX0pWRhS69.displayName=\"Logo\";FramerX0pWRhS69.defaultProps={height:24,width:100.5};addPropertyControls(FramerX0pWRhS69,{variant:{options:[\"vWGPBF3jz\",\"SBor4QFw7\",\"t_F6djuS7\"],optionTitles:[\"J\\xe4germeister\",\"Fembites\",\"Sparkasse\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerX0pWRhS69,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerX0pWRhS69\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"100.5\",\"framerIntrinsicHeight\":\"24\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SBor4QFw7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"t_F6djuS7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./X0pWRhS69.map", "// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import AIKitTestimonial from\"https://framerusercontent.com/modules/g4PB76DyZNVNl3c8by0L/RNgxoguCur3LnFZr48H0/j35hGfHpy.js\";import Logo from\"https://framerusercontent.com/modules/zJY4VsQcFDxLcM3LLazU/08lKCJbeZahmlqgqdLrt/X0pWRhS69.js\";const LogoFonts=getFonts(Logo);const AIKitTestimonialFonts=getFonts(AIKitTestimonial);const LogoControls=getPropertyControls(Logo);const cycleOrder=[\"e3i5TfN7j\",\"rJMDVjrss\"];const serializationHash=\"framer-Alv5i\";const variantClassNames={e3i5TfN7j:\"framer-v-1mi7zjq\",rJMDVjrss:\"framer-v-1kfp7vc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const 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 humanReadableEnumMap={\"J\\xe4germeister\":\"vWGPBF3jz\",Fembites:\"SBor4QFw7\"};const humanReadableVariantMap={Desktop:\"e3i5TfN7j\",Mobile:\"rJMDVjrss\"};const getProps=({height,id,image,logo,name1,quote,role,width,...props})=>{return{...props,B7EM1yAFa:name1??props.B7EM1yAFa??\"Holger Ruhs\",ELS_u3IoH:humanReadableEnumMap[logo]??logo??props.ELS_u3IoH??\"vWGPBF3jz\",jGA9muPoN:image??props.jGA9muPoN??{src:\"https://framerusercontent.com/images/orzTKbXl9Cm1VmTYpAjS4iIhU8E.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/orzTKbXl9Cm1VmTYpAjS4iIhU8E.png?scale-down-to=512 512w,https://framerusercontent.com/images/orzTKbXl9Cm1VmTYpAjS4iIhU8E.png 1024w\"},unrlNoty2:quote??props.unrlNoty2??\"Mit der Global Innovation Plattform k\\xf6nnen wir die besten Ideen identifizieren, bewerten und direkt in unsere Strategie integrieren \u2013 ein absoluter Gamechanger.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"e3i5TfN7j\",VHqc996Fp:role??props.VHqc996Fp??\"Director Global Trade Marketing J\\xe4germeister\"};};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,jGA9muPoN,VHqc996Fp,B7EM1yAFa,unrlNoty2,ELS_u3IoH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"e3i5TfN7j\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1mi7zjq\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"e3i5TfN7j\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(225deg, rgba(0, 0, 0, 0.3) 0%, rgb(0, 0, 0) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({rJMDVjrss:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+40+(0+0+((componentViewport?.height||390)-80-173)/1*0),...addPropertyOverrides({rJMDVjrss:{y:(componentViewport?.y||0)+40+(0+0+((componentViewport?.height||341)-80-173)/1*0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hansym-container\",layoutDependency:layoutDependency,layoutId:\"g4BBSpe1F-container\",nodeId:\"g4BBSpe1F\",rendersWithMotion:true,scopeId:\"qOJo0Mta5\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"g4BBSpe1F\",layoutId:\"g4BBSpe1F\",variant:ELS_u3IoH,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:149,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+40+(0+24+((componentViewport?.height||390)-80-173)/1*1),...addPropertyOverrides({rJMDVjrss:{y:(componentViewport?.y||0)+40+(0+24+((componentViewport?.height||341)-80-173)/1*1)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-47gkfx-container\",layoutDependency:layoutDependency,layoutId:\"igNJhR_Dg-container\",nodeId:\"igNJhR_Dg\",rendersWithMotion:true,scopeId:\"qOJo0Mta5\",children:/*#__PURE__*/_jsx(AIKitTestimonial,{aZfz0AQfb:true,h7AqQgq1z:VHqc996Fp,height:\"100%\",id:\"igNJhR_Dg\",iZAZ10rUh:toResponsiveImage(jGA9muPoN),layoutId:\"igNJhR_Dg\",nd5BScfGb:true,PghTz5_M4:\"var(--token-6ee39359-b4dc-42f1-93d9-495015475b07, rgb(140, 69, 255))\",qCYBx5U9y:B7EM1yAFa,style:{width:\"100%\"},variant:\"BgP7ByR8Z\",width:\"100%\",xlpW4k93J:unrlNoty2})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Alv5i.framer-nhuup9, .framer-Alv5i .framer-nhuup9 { display: block; }\",\".framer-Alv5i.framer-1mi7zjq { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; height: 390px; justify-content: space-between; overflow: hidden; padding: 40px; position: relative; width: 465px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Alv5i .framer-hansym-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Alv5i .framer-47gkfx-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Alv5i.framer-v-1kfp7vc.framer-1mi7zjq { height: 341px; }\",'.framer-Alv5i[data-border=\"true\"]::after, .framer-Alv5i [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 390\n * @framerIntrinsicWidth 465\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"rJMDVjrss\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"jGA9muPoN\":\"image\",\"VHqc996Fp\":\"role\",\"B7EM1yAFa\":\"name1\",\"unrlNoty2\":\"quote\",\"ELS_u3IoH\":\"logo\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerqOJo0Mta5=withCSS(Component,css,\"framer-Alv5i\");export default FramerqOJo0Mta5;FramerqOJo0Mta5.displayName=\"Testimonial\";FramerqOJo0Mta5.defaultProps={height:390,width:465};addPropertyControls(FramerqOJo0Mta5,{variant:{options:[\"e3i5TfN7j\",\"rJMDVjrss\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},jGA9muPoN:{__defaultAssetReference:\"data:framer/asset-reference,orzTKbXl9Cm1VmTYpAjS4iIhU8E.png?originalFilename=image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},VHqc996Fp:{defaultValue:\"Director Global Trade Marketing J\\xe4germeister\",displayTextArea:false,title:\"Role\",type:ControlType.String},B7EM1yAFa:{defaultValue:\"Holger Ruhs\",displayTextArea:false,title:\"Name\",type:ControlType.String},unrlNoty2:{defaultValue:\"Mit der Global Innovation Plattform k\\xf6nnen wir die besten Ideen identifizieren, bewerten und direkt in unsere Strategie integrieren \u2013 ein absoluter Gamechanger.\",displayTextArea:true,title:\"Quote\",type:ControlType.String},ELS_u3IoH:LogoControls?.[\"variant\"]&&{...LogoControls[\"variant\"],defaultValue:\"vWGPBF3jz\",description:undefined,hidden:undefined,title:\"Logo\"}});addFonts(FramerqOJo0Mta5,[{explicitInter:true,fonts:[]},...LogoFonts,...AIKitTestimonialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqOJo0Mta5\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"465\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rJMDVjrss\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"390\",\"framerVariables\":\"{\\\"jGA9muPoN\\\":\\\"image\\\",\\\"VHqc996Fp\\\":\\\"role\\\",\\\"B7EM1yAFa\\\":\\\"name1\\\",\\\"unrlNoty2\\\":\\\"quote\\\",\\\"ELS_u3IoH\\\":\\\"logo\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "obAA+W,IAAMA,GAAqB,IAAUC,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,CAAM,MAAM,MAAMA,GAAQ,cAAcA,CAAM,MAAM,IAAIA,GAAQ,eAAeA,CAAM,MAAM,OAAOA,GAAQ,cAAcA,CAAM,KAAK,EASxjB,SAARC,GAAwBC,EAAM,CAAY,GAAG,CAAC,MAAAC,EAAM,CAAC,EAAE,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,YAAAC,EAAY,MAAAC,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,EAAoBU,GAAanB,EAAe,GAAGC,CAAU,MAAMC,CAAY,MAAMC,CAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAAuBqB,EAAcC,GAAa,QAAQ,EAAQC,EAASF,IAAgBC,GAAa,QAAQD,IAAgBC,GAAa,OACtkBE,EAAc1B,EAAM,OAAO,OAAO,EAAQ2B,EAAYC,EAAS,MAAMF,CAAa,EAAQG,EAAYF,EAAY,EAAKjB,IAAY,KAAMA,EAAU,QAAQ,IAAMoB,EAAapB,IAAY,QAAQA,IAAY,QAAcb,GAAOkC,GAAe,CAAC,EAAQC,EAAYpC,GAAsBc,CAAS,EAAQuB,GAAUC,GAAarC,GAAOmC,CAAW,EAA4BG,EAAUC,EAAO,IAAI,EAAQC,EAAYC,EAAQ,IAAW,CAAC,CAAC,QAAQ,IAAI,EAAE,CAAC,QAAQ,IAAI,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAkBC,GAAe,KAASC,GAAc,CAAC,EAA2BC,EAAY,EAAMC,GAAQ,EAAKpB,IAAUmB,EAAYjB,EAAY,KAAK,MAAM,GAAGA,CAAW,EAAE,EAAEkB,GAAQ,GAAM,CAACpB,GAAUI,GAAaU,EAAK,SAAQK,EAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEK,EAAY,KAAK,IAAIA,EAAYjD,EAAoB,EAAEkD,GAAQ,GAAiC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGlB,GAAaM,EAAU,QAAQ,CAAC,IAAMa,EAAalB,EAAaK,EAAU,QAAQ,YAAYA,EAAU,QAAQ,aAAmBc,EAAMZ,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMa,GAAtLb,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2BY,EAAMhD,EAAIuC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,CAAc,CAAC,CAAE,CAAC,EAAE,CAAC,CAAC,EAAQC,GAAe1B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGI,EAAY,CAC9iD,GAAG,CAACJ,EAAS,CAGE,IAAI2B,EAAchB,EAAO,EAAI,EAAEiB,GAAgB,KAAKC,GAAM,KAAKR,GAAQ,GAAM,EAAI,EAASS,GAAOpB,EAAU,QAAQ,CAAC,CAAC,YAAAqB,CAAW,IAAI,CAAI,CAACJ,EAAc,UAAUI,EAAY,OAAOA,EAAY,SAASF,GAAM,KAAKR,GAAQ,GAAM,EAAI,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,CAAE,CAACV,GAAed,EAAS,IAAIF,EAAc,CAAC+B,EAAMC,IAAQ,CAAC,IAAIC,EAAOD,IAAQ,IAAGC,EAAItB,EAAY,CAAC,GAAMqB,IAAQhC,EAAc,OAAO,IAAGiC,EAAItB,EAAY,CAAC,GAAG,IAAME,EAAK,CAAC,MAAMnB,EAAUqC,EAAM,OAAO,MAAM,OAAO,OAAOpC,EAAWoC,EAAM,OAAO,OAAO,MAAM,EAAE,OAAoBG,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,EAAI,MAAMpB,EAAK,SAAsBuB,GAAaL,EAAM,CAAC,MAAM,CAAC,GAAGA,EAAM,OAAO,MAAM,GAAGlB,EAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,EAAED,EAAM,OAAO,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,CAAC,IAAMM,EAAStC,EAAS,GAAKuC,GAAU7B,CAAS,EAAE,GAAG,CAACV,EAAU,QAAQwC,EAAE,EAAEA,EAAErB,EAAYqB,IAAKtB,GAAcA,GAAc,OAAOf,EAAS,IAAIF,EAAc,CAAC+B,EAAMS,IAAa,CAAC,IAAM3B,EAAK,CAAC,MAAMnB,EAAUqC,EAAM,OAAO,MAAM,OAAO,OAAOpC,EAAWoC,EAAM,OAAO,OAAO,OAAO,WAAYM,EAAmB,YAAV,MAAqB,EAAE,OAAoBH,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMrB,EAAK,cAAc,GAAK,SAAsBuB,GAAaL,EAAM,CAAC,IAAIQ,EAAE,IAAIC,EAAW,MAAM,CAAC,GAAGT,EAAM,OAAO,MAAM,MAAMrC,EAAUqC,EAAM,OAAO,MAAM,OAAO,OAAOpC,EAAWoC,EAAM,OAAO,OAAO,OAAO,WAAW,EAAE,GAAGN,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASQ,EAAE,MAAS,EAAER,EAAM,OAAO,QAAQ,CAAC,EAAEQ,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAC,EAAI,IAAMC,EAAe5B,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQ6B,GAAYhC,EAAO,IAAI,EAAQiC,GAASjC,EAAO,IAAI,EAAQkC,GAAKlC,EAAO,CAAC,EAAQmC,GAAQnC,EAAO,EAAK,EAAQoC,GAAgBC,GAAiB,EAAQC,GAAQtC,EAAO,IAAI,EAAQuC,EAAavC,EAAO,IAAI,EAEr5D,GAAG,CAACX,EAAS,CAACmD,GAAU,IAAI,CAAC,GAAG,EAAAJ,IAAiB,CAACL,GAAgB,CAAC3D,GAAe,OAAAmE,EAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC1C,EAAY,CAAC,EAAEA,EAAYmC,CAAc,CAAC,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,CAAc,EAAE3D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAImE,EAAa,QAAQ,OAAO,CAAE,EAAE,CAAClE,EAAY0D,EAAe3D,CAAK,CAAC,EAAE,IAAMqE,EAAY9B,GAAY,IAAI,CAAC,GAAG,CAAC4B,EAAa,QAAQ,OAAO,IAAMG,EAAO,SAAS,OAAUf,GAAU,CAACe,GAAQH,EAAa,QAAQ,YAAY,SAAUA,EAAa,QAAQ,KAAK,GAAY,CAACZ,GAAUe,IAASH,EAAa,QAAQ,YAAY,WAAWA,EAAa,QAAQ,MAAM,CAAG,EAAE,CAACZ,CAAQ,CAAC,EAAEa,GAAU,IAAI,CAACC,EAAY,CAAE,EAAE,CAACd,EAAStD,EAAY0D,EAAe3D,CAAK,CAAC,EAAEoE,GAAU,KAAK,SAAS,iBAAiB,mBAAmBC,CAAW,EAAQ,IAAI,CAAC,SAAS,oBAAoB,mBAAmBA,CAAW,CAAE,GAAI,CAACA,CAAW,CAAC,CAAE,CAAY,IAAME,GAAcjD,EAAa,WAAW,YAAkBkD,GAAe/D,EAAU,EAAQgE,GAAa,IAAIhE,EAAU,EAAQiE,GAAeC,GAAMjE,EAAU,EAAE8D,EAAc,EAAQI,GAAa,IAAIlE,EAAgBmE,GAAS,mBAAmBN,EAAa,mBAAmB5D,CAAS,KAAK+D,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoB9D,CAAS,KAAKiE,EAAY,KAAsB,OAAIvD,EAAkW+B,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG0B,GAAe,QAAQzC,GAAQ,gBAAgB9B,EAAYsE,GAAS,OAAU,UAAUtE,EAAYsE,GAAS,OAAU,SAASrE,EAAS,UAAU,SAAS,QAAQM,EAAY,EAAE,IAAIa,EAAU,SAAsBoD,EAAMC,EAAO,GAAG,CAAC,IAAId,GAAQ,MAAM,CAAC,GAAGY,GAAe,IAAIrF,EAAI,IAAIS,IAAY,UAAU+E,GAActB,CAAc,EAAE,CAACA,EAAe,OAAU,KAAKzD,IAAY,SAAS+E,GAActB,CAAc,EAAE,CAACA,EAAe,OAAU,WAAWxD,EAAU,SAAS,WAAW,cAAcmB,EAAa,MAAM,SAAS,GAAGhB,EAAM,WAAWW,GAAU,CAACsC,EAAS,OAAO,YAAY,UAAU/B,EAAY,CAAC,CAAC,EAAE,aAAa,IAAI,CAACuC,GAAQ,QAAQ,GAAQI,EAAa,UACp2EA,EAAa,QAAQ,aAAalE,EAAa,EAAE,aAAa,IAAI,CAAC8D,GAAQ,QAAQ,GAASI,EAAa,UACzGA,EAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAACjC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAFiyC4C,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAc9B,EAAK,MAAM,CAAC,MAAM+B,GAAY,SAAS,QAAG,CAAC,EAAe/B,EAAK,IAAI,CAAC,MAAMgC,GAAY,SAAS,oBAAoB,CAAC,EAAehC,EAAK,IAAI,CAAC,MAAMiC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAEzkD,CAAyB/F,GAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAAyBgG,EAAoBhG,GAAO,CAAC,MAAM,CAAC,KAAKiG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOhG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKgG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOhG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKgG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOhG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKgG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOhG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKgG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA0B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAoBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAgDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,ECjBhmG,IAAMC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAa,GAAWC,CAAmB,EAAQC,EAAWJ,GAAOE,EAAO,WAAiBG,EAAmBC,EAAQ,KAAK,CAAC,GAAGJ,EAAO,WAAAE,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASJ,CAAQ,CAAC,CAAE,EAAQO,GAASC,EAAO,OAAaC,EAAQ,EAAQC,GAAwB,CAAC,kBAAkB,YAAY,SAAS,YAAY,UAAU,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMrB,IAAeqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAUuB,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsB,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,GAAGoC,CAAS,EAAErB,GAASI,CAAK,EAAO,CAAC,YAAAkB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA9C,CAAQ,EAAE+C,GAAgB,CAAC,WAAApD,GAAW,eAAe,YAAY,IAAIiC,EAAW,QAAA1B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmD,EAAiB1B,GAAuBD,EAAMrB,CAAQ,EAAuCiD,EAAkBC,EAAGtD,GAAkB,GAAhD,CAAC,CAAuE,EAAQuD,EAAY,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASZ,CAAW,EAAmCa,EAAa,IAAQb,IAAc,YAA6Cc,EAAa,IAAQd,IAAc,YAAuC,OAAoB3B,EAAK0C,EAAY,CAAC,GAAGjB,GAAUR,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQb,EAAS,QAAQ,GAAM,SAAsBY,EAAKR,GAAW,CAAC,MAAMD,GAAY,SAAsBoD,EAAMzC,EAAO,IAAI,CAAC,GAAGwB,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,EAAkB,iBAAiBb,EAAUI,CAAU,EAAE,mBAAmB,kBAAkB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIpB,EAAW,MAAM,CAAC,GAAGO,CAAK,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEyC,EAAYI,CAAc,EAAE,SAAS,CAACQ,EAAY,GAAgBvC,EAAK4C,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBR,EAAiB,SAAS,YAAY,IAAI,8jIAA8jI,mBAAmB,EAAI,CAAC,EAAEI,EAAa,GAAgBxC,EAAK4C,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,OAAO,WAAW,iBAAiBR,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,m9NAAm9N,aAAa,YAAY,mBAAmB,GAAK,GAAGlD,GAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEyC,EAAYI,CAAc,CAAC,CAAC,EAAEU,EAAa,GAAgBzC,EAAK4C,GAAI,CAAC,UAAU,iBAAiB,OAAO,WAAW,iBAAiBR,EAAiB,SAAS,kBAAkB,QAAQ,EAAE,IAAI,4rDAA4rD,aAAa,YAAY,mBAAmB,GAAK,GAAGlD,GAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEyC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,gFAAgF,wQAAwQ,0KAA0K,gGAAgG,+FAA+F,8WAA8W,EASxtjBC,EAAgBC,GAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,OAAOA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,KAAK,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,kBAAkB,WAAW,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT4J,IAAMM,GAAUC,GAASC,EAAI,EAAQC,GAAsBF,GAASG,EAAgB,EAAQC,GAAaC,GAAoBJ,EAAI,EAAQK,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAa,GAAWC,CAAmB,EAAQC,EAAWL,GAAOG,EAAO,WAAiBG,EAAmBC,EAAQ,KAAK,CAAC,GAAGJ,EAAO,WAAAE,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASJ,CAAQ,CAAC,CAAE,EAAQO,GAASC,EAAO,OAAaC,EAAQ,EAAQC,GAAqB,CAAC,kBAAkB,YAAY,SAAS,WAAW,EAAQC,GAAwB,CAAC,QAAQ,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUJ,GAAOI,EAAM,WAAW,cAAc,UAAUX,GAAqBM,CAAI,GAAGA,GAAMK,EAAM,WAAW,YAAY,UAAUN,GAAOM,EAAM,WAAW,CAAC,IAAI,yFAAyF,OAAO,wKAAwK,EAAE,UAAUH,GAAOG,EAAM,WAAW,2KAAsK,QAAQV,GAAwBU,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUF,GAAME,EAAM,WAAW,iDAAiD,GAAUC,GAAuB,CAACD,EAAM5B,IAAe4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAE4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAU8B,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsB,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA1C,EAAQ,UAAA2C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE/B,GAASS,CAAK,EAAO,CAAC,YAAAuB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA1D,CAAQ,EAAE2D,GAAgB,CAAC,WAAAhE,GAAW,eAAe,YAAY,IAAIwC,EAAW,QAAAjC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+D,EAAiB/B,GAAuBD,EAAM5B,CAAQ,EAAuC6D,EAAkBC,EAAGlE,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBiB,EAAKkD,EAAY,CAAC,GAAGnB,GAAUR,EAAgB,SAAsBvB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKP,GAAW,CAAC,MAAMH,GAAY,SAAsB6D,EAAMjD,EAAO,IAAI,CAAC,GAAGmC,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,EAAkB,iBAAiBlB,EAAUS,CAAU,EAAE,cAAc,GAAK,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIzB,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,WAAW,oEAAoE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGO,CAAK,EAAE,GAAG5C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAEqD,EAAYI,CAAc,EAAE,SAAS,CAAc1C,EAAKoD,GAA0B,CAAC,OAAO,GAAG,GAAGzB,GAAmB,GAAG,GAAG,IAAI,IAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,GAAG,GAAG1C,GAAqB,CAAC,UAAU,CAAC,GAAG0C,GAAmB,GAAG,GAAG,IAAI,IAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,CAAC,EAAEW,EAAYI,CAAc,EAAE,SAAsB1C,EAAKqD,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBN,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB/C,EAAKvB,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ2D,EAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKoD,GAA0B,CAAC,OAAO,IAAI,MAAM,QAAQzB,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,IAAI,KAAOA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,GAAG,GAAG1C,GAAqB,CAAC,UAAU,CAAC,GAAG0C,GAAmB,GAAG,GAAG,IAAI,KAAOA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,CAAC,EAAEW,EAAYI,CAAc,EAAE,SAAsB1C,EAAKqD,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBN,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB/C,EAAKrB,GAAiB,CAAC,UAAU,GAAK,UAAUsD,EAAU,OAAO,OAAO,GAAG,YAAY,UAAU1C,GAAkByC,CAAS,EAAE,SAAS,YAAY,UAAU,GAAK,UAAU,uEAAuE,UAAUE,EAAU,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUC,CAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmB,GAAI,CAAC,kFAAkF,gFAAgF,gVAAgV,wGAAwG,wGAAwG,mEAAmE,+bAA+b,EAUltOC,EAAgBC,GAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,cAAcA,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,4GAA4G,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,kDAAkD,gBAAgB,GAAM,MAAM,OAAO,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,cAAc,gBAAgB,GAAM,MAAM,OAAO,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,2KAAsK,gBAAgB,GAAK,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU/E,IAAe,SAAY,CAAC,GAAGA,GAAa,QAAW,aAAa,YAAY,YAAY,OAAU,OAAO,OAAU,MAAM,MAAM,CAAC,CAAC,EAAEgF,GAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGhF,GAAU,GAAGG,EAAqB,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "SVG", "css", "FramerX0pWRhS69", "withCSS", "X0pWRhS69_default", "addPropertyControls", "ControlType", "addFonts", "LogoFonts", "getFonts", "X0pWRhS69_default", "AIKitTestimonialFonts", "j35hGfHpy_default", "LogoControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "image", "logo", "name1", "quote", "role", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "jGA9muPoN", "VHqc996Fp", "B7EM1yAFa", "unrlNoty2", "ELS_u3IoH", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerqOJo0Mta5", "withCSS", "qOJo0Mta5_default", "addPropertyControls", "ControlType", "addFonts"]
}
