{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/7WH8rb48Ej1GBVGouAyl/OTPjoc05kiiqxcF4Jru3/BKPFNevS0.js", "ssg:https://framerusercontent.com/modules/ftV7gis7frDpthWZW9dD/15WQZhni0VCrgomJiHbD/FZrjPTVel.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// 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 axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea:null});/* Arrays */let clonedChildren=[];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;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);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)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})},index+\"-original\");});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:isLayerTooBig===true?\"auto\":\"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_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsWaapi){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":transform},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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (50a537b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"fynSKcNzb\",\"o5jAnqdny\"];const serializationHash=\"framer-pf1S2\";const variantClassNames={fynSKcNzb:\"framer-v-12kal9r\",o5jAnqdny:\"framer-v-1yciie9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Dark:\"fynSKcNzb\",Light:\"o5jAnqdny\"};const getProps=({height,id,mouseEnter,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"fynSKcNzb\",zrf5WI6W0:mouseEnter!==null&&mouseEnter!==void 0?mouseEnter:props.zrf5WI6W0};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,zrf5WI6W0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fynSKcNzb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter14px6u5=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(zrf5WI6W0){const res=await zrf5WI6W0(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"o5jAnqdny\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"o5jAnqdny\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-12kal9r\",className,classNames),\"data-framer-name\":\"Dark\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fynSKcNzb\",onMouseEnter:onMouseEnter14px6u5,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({o5jAnqdny:{\"data-framer-name\":\"Light\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yofyo4-container\",layoutDependency:layoutDependency,layoutId:\"JOfG2MiIW-container\",style:{opacity:.8},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:40,overflow:false},gap:80,height:\"100%\",hoverFactor:1,id:\"JOfG2MiIW\",layoutId:\"JOfG2MiIW\",padding:48,paddingBottom:48,paddingLeft:48,paddingPerSide:false,paddingRight:48,paddingTop:48,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nuqw3k\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"L65exvimW\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-teft7v\",\"data-framer-name\":\"NS\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"wTW0T0Nko\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82 33\"><g transform=\"translate(0 0.48)\" id=\"ss11842177043_1\"><path d=\"M 0 0 L 81.809 0 L 81.809 32.082 L 0 32.082 Z\" fill=\"transparent\"></path><path d=\"M 35.864 15.4 C 34.194 13.75 31.94 12.827 29.592 12.833 L 12.223 12.833 L 18.656 6.416 L 34.9 6.416 C 35.57 6.445 36.203 6.732 36.665 7.218 L 46.153 16.683 C 47.823 18.333 50.078 19.255 52.425 19.249 L 69.799 19.249 L 63.362 25.665 L 47.122 25.665 C 46.452 25.637 45.819 25.349 45.357 24.863 L 35.864 15.399 Z M 40.85 29.355 C 42.545 30.989 44.771 31.957 47.122 32.082 L 65.938 32.082 L 82.022 16.04 L 65.939 0 L 56.932 0 L 69.8 12.833 L 52.43 12.833 C 51.793 12.79 51.182 12.567 50.666 12.191 L 41.173 2.727 C 39.478 1.093 37.251 0.125 34.9 0 L 16.083 0 L 0 16.04 L 16.083 32.082 L 25.09 32.082 L 12.223 19.249 L 29.593 19.249 C 30.23 19.292 30.841 19.515 31.357 19.891 Z\" fill=\"var(--token-79510b87-19e1-4b05-a9ba-22caf7bebd65, rgb(0, 22, 51)) /* {&quot;name&quot;:&quot;Qnect Blue (900) (Core)&quot;} */\"></path></g></svg>',svgContentId:11842177043,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ymhni8\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"tHUPMao0r\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1l8pc2s\",\"data-framer-name\":\"De_Bijenkorf\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ly3yq7g9w\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 142 33\"><g transform=\"translate(0.809 0.48)\" id=\"ss12735301764_1\"><path d=\"M 0 0 L 140.355 0 L 140.355 31.64 L 0 31.64 Z\" fill=\"transparent\"></path><path d=\"M 36.011 15.127 C 37.333 14.461 38.068 13.382 38.071 11.832 C 38.068 8.891 36.119 7.919 33.228 7.919 L 26.092 7.919 L 26.091 23.7 L 33.434 23.702 C 36.182 23.7 38.8 22.327 38.796 19.12 C 38.792 17.16 37.858 15.678 36.011 15.127 Z M 29.424 10.614 L 32.551 10.614 C 33.734 10.614 34.848 10.924 34.842 12.43 C 34.848 13.754 33.974 14.303 32.803 14.313 L 29.423 14.313 L 29.423 10.614 Z M 32.995 21.009 L 29.422 21.009 L 29.422 16.672 L 33.061 16.67 C 34.479 16.672 35.459 17.32 35.459 18.93 C 35.457 20.569 34.312 21.01 32.995 21.01 Z M 43.189 10.502 L 43.189 7.919 L 40.169 7.919 L 40.174 10.503 Z M 43.189 12.269 L 40.174 12.271 L 40.17 23.701 L 43.189 23.703 Z M 45.017 24.125 C 45.013 24.98 44.456 25.143 43.845 25.142 C 43.623 25.15 43.401 25.119 43.189 25.05 L 43.189 27.64 C 43.509 27.686 43.845 27.73 44.163 27.726 C 47.201 27.731 48.028 26.621 48.033 24.276 L 48.033 12.276 L 45.014 12.276 L 45.017 24.126 Z M 45.019 10.502 L 48.032 10.505 L 48.032 7.919 L 45.012 7.919 Z M 55.081 11.964 C 51.748 11.964 49.47 14.574 49.475 18.002 C 49.475 21.534 51.619 24.012 55.081 24.012 C 57.558 24.015 59.373 22.86 60.219 20.167 L 57.562 20.174 C 57.374 20.876 56.396 21.65 55.185 21.653 C 53.509 21.646 52.571 20.741 52.485 18.75 L 60.413 18.75 C 60.628 15.228 58.816 11.964 55.081 11.964 Z M 52.491 16.767 C 52.524 15.88 53.085 14.327 54.999 14.33 C 56.463 14.33 57.119 15.172 57.401 16.761 Z M 67.845 11.961 C 66.571 11.964 65.25 12.581 64.489 13.863 L 64.426 13.862 L 64.426 12.269 L 61.556 12.275 L 61.556 23.7 L 64.576 23.7 L 64.573 17.718 C 64.578 15.388 65.274 14.438 66.91 14.438 C 68.313 14.441 68.843 15.363 68.843 17.25 L 68.843 23.701 L 71.857 23.699 L 71.862 16.669 C 71.862 13.84 71.057 11.961 67.845 11.961 Z M 83.823 12.275 L 80.253 12.275 L 76.453 16.388 L 76.453 7.918 L 73.431 7.918 L 73.439 23.7 L 76.452 23.703 L 76.452 19.767 L 77.617 18.6 L 80.637 23.7 L 84.287 23.7 L 79.679 16.474 L 83.823 12.274 Z M 89.34 11.964 C 85.897 11.968 83.664 14.354 83.66 18.004 C 83.664 21.629 85.897 24.013 89.34 24.015 C 92.803 24.013 95.034 21.627 95.03 17.999 C 95.034 14.352 92.798 11.964 89.34 11.964 Z M 89.34 21.646 C 87.297 21.654 86.683 19.814 86.683 18.002 C 86.687 16.165 87.303 14.329 89.34 14.336 C 91.395 14.329 92.013 16.165 92.018 18.002 C 92.018 19.814 91.395 21.65 89.34 21.646 Z M 99.218 14.393 L 99.218 12.275 L 96.345 12.275 L 96.349 23.7 L 99.364 23.703 L 99.364 18.557 C 99.358 16.54 100.131 14.883 102.336 14.883 C 102.7 14.883 103.143 14.927 103.42 14.994 L 103.423 12.076 C 103.21 12.004 102.986 11.967 102.761 11.966 C 101.296 11.964 99.813 12.954 99.218 14.393 Z M 104.629 11.387 L 104.635 12.275 L 104.635 14.373 L 104.629 23.703 L 107.648 23.7 L 107.644 14.373 L 109.727 14.373 L 109.727 12.271 L 107.644 12.269 L 107.641 11.586 C 107.644 10.638 107.985 10.284 108.793 10.284 C 109.177 10.28 109.535 10.304 109.896 10.35 L 109.896 8.007 C 109.383 7.984 108.832 7.919 108.297 7.919 C 105.838 7.919 104.629 9.379 104.629 11.387 Z M 21.688 14.978 C 20.723 12.964 19.237 11.806 17.053 11.806 C 13.507 11.806 11.74 14.753 11.74 18.063 C 11.74 21.201 14.117 23.998 17.039 23.998 C 21.369 23.998 22.179 20.653 22.251 20.272 L 19.477 20.268 C 18.958 21.211 18.237 21.675 17.211 21.675 C 15.696 21.675 14.408 20.377 14.483 18.665 L 22.393 18.659 C 22.393 18.272 22.399 17.919 22.31 17.236 C 22.225 16.536 21.991 15.593 21.688 14.978 Z M 14.533 16.695 C 14.583 15.575 15.195 14.068 17.087 14.065 C 18.629 14.063 19.51 15.261 19.512 16.696 L 14.532 16.695 Z M 10.548 21.512 L 10.548 7.9 L 7.894 7.896 L 7.85 13.355 C 7.569 12.893 6.468 11.891 4.604 11.894 C 2.11 11.898 0.001 14.122 0.001 18.212 C 0.001 21.039 1.687 24.084 4.663 24.084 C 6.263 24.087 7.242 23.218 7.772 22.522 C 7.772 23.041 7.799 23.179 7.834 23.706 L 10.566 23.706 C 10.521 22.984 10.551 22.244 10.548 21.512 Z M 5.455 21.778 C 3.355 21.778 2.761 19.664 2.761 18.008 C 2.768 16.443 3.271 14.241 5.455 14.241 C 7.361 14.241 8.001 16.439 8.003 18.005 C 8.001 19.572 7.365 21.778 5.455 21.778 Z M 127.669 0 L 114.921 7.909 L 114.917 23.734 L 127.669 31.639 L 140.354 23.774 L 140.354 7.874 Z M 126.547 28.222 L 117.112 22.367 L 117.116 9.283 L 126.547 3.428 L 126.547 4.97 C 124.519 5.27 121.865 7.662 121.865 10.924 L 121.86 16.23 L 118.331 16.231 L 118.331 22.091 L 126.547 22.091 Z M 128.732 28.243 L 128.737 19.719 L 120.519 19.728 L 120.516 18.594 L 124.055 18.596 L 124.055 11.01 C 124.05 9.061 125.517 7.172 127.868 7.172 L 128.733 7.172 L 128.737 3.395 L 138.162 9.243 L 138.165 22.4 Z\" fill=\"var(--token-79510b87-19e1-4b05-a9ba-22caf7bebd65, rgb(0, 22, 51)) /* {&quot;name&quot;:&quot;Qnect Blue (900) (Core)&quot;} */\"></path></g></svg>',svgContentId:12735301764,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9qtows\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"EO38RPj4F\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-evzmuz\",\"data-framer-name\":\"GGZ - Dark - New\",fill:\"black\",intrinsicHeight:38,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"MO_7x8CR8\",svg:'<svg width=\"80\" height=\"38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M4.056 19.294v.76c0 1.012-.728 1.68-2.08 1.68S0 21.108 0 20.055v-.76c0-1.104.728-1.671 2.007-1.671 1.28 0 2.05.567 2.05 1.67Zm-.343 18.341H.302V23.801h3.411v13.834Zm13.51-9.358v9.358h-3.411v-9.013c0-1.56-.49-2.026-1.31-2.026-.504.07-.982.264-1.389.561-.407.297-.73.69-.941 1.14v9.379H6.77V23.8h3.12v1.904c.354-.657.88-1.21 1.525-1.605a4.41 4.41 0 0 1 2.146-.644c2.32 0 3.661 1.59 3.661 4.821Zm14.79-8.953-.052 3.038a34.027 34.027 0 0 0-5.2-.587c-2.247 0-3.058.79-3.058 2.806v7.555c0 2.025.81 2.836 2.974 2.836a18.257 18.257 0 0 0 2.767-.264v-5.033H26.51v-3.038h6.24v10.208a21.648 21.648 0 0 1-6.178 1.135c-4.711 0-6.375-2.026-6.375-5.925V24.65c0-4.05 1.81-5.924 6.438-5.924a32.8 32.8 0 0 1 5.377.597Zm13.946 9.358v3.17H38.97v1.013c0 1.5.676 2.097 2.476 2.097a22.024 22.024 0 0 0 3.91-.456l.083 2.897c-1.41.297-2.843.477-4.285.536-4.014 0-5.553-1.62-5.553-5.418v-3.839c0-3.322 1.653-5.226 5.2-5.226 3.546 0 5.158 1.823 5.158 5.226Zm-6.989-.425v1.134h3.672V28.38c0-1.388-.708-2.026-1.841-2.026-1.134 0-1.83.628-1.83 1.904Zm19.543.425v3.17h-6.99v1.013c0 1.5.666 2.097 2.476 2.097a21.91 21.91 0 0 0 3.9-.456l.094 2.897a26.16 26.16 0 0 1-4.285.536c-4.015 0-5.564-1.62-5.564-5.418v-3.839c0-3.322 1.664-5.226 5.2-5.226 3.536 0 5.169 1.823 5.169 5.226Zm-6.99-.425v1.134h3.6V28.38c0-1.388-.698-2.026-1.831-2.026-1.134 0-1.768.628-1.768 1.904Zm17.245-4.426-.063 2.887a15.612 15.612 0 0 0-2.995-.395c-1.519 0-2.018.425-2.018 1.134v.172c0 .486.208.709.853 1.013l2.673 1.165a3.77 3.77 0 0 1 1.86 1.339 3.61 3.61 0 0 1 .709 2.145v.567c0 2.694-1.488 4.142-5.2 4.142a19.768 19.768 0 0 1-4.015-.567l.166-3.038a16.23 16.23 0 0 0 3.817.627c1.404 0 1.841-.374 1.841-1.134v-.172a1.142 1.142 0 0 0-.212-.76 1.196 1.196 0 0 0-.661-.456l-2.496-1.073c-1.862-.76-2.705-1.924-2.705-3.454V27.6c0-2.725 1.54-4.143 5.117-4.143 1.12.014 2.235.14 3.329.375Zm7.217-.03h3.526v2.866h-3.526v6.664c0 1.246.5 1.732 1.57 1.732a12.124 12.124 0 0 0 2.362-.284L80 37.635a13.33 13.33 0 0 1-2.735.345c-3.256 0-4.68-1.307-4.68-4.79v-6.523h-1.81V23.8h1.861l.5-3.687h2.85V23.8ZM17.462.466V2.49a22.986 22.986 0 0 0-3.983-.486c-1.966 0-2.704.71-2.704 2.451v6.24c0 1.761.738 2.49 2.683 2.49a16.877 16.877 0 0 0 2.455-.293V8.376h-2.684V6.35h4.878v7.95c-1.53.504-3.128.79-4.742.851-3.63 0-4.92-1.54-4.92-4.567V4.568C8.445 1.408 9.87 0 13.395 0c1.368.035 2.73.19 4.067.466Zm12.491 0V2.49a22.859 22.859 0 0 0-3.983-.486c-1.966 0-2.694.71-2.694 2.451v6.24c0 1.761.728 2.49 2.673 2.49a16.732 16.732 0 0 0 2.496-.263V8.376H25.72V6.35h4.878v7.95c-1.527.505-3.12.792-4.732.851-3.64 0-4.93-1.54-4.93-4.567V4.568c0-3.16 1.425-4.568 4.95-4.568 1.368.034 2.73.19 4.067.466Zm12.085 1.54-6.52 10.826h6.52v2.026h-9.225v-1.732l6.521-10.827h-6.386V.273h9.09v1.732Z\" fill=\"#001633\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h80v38H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-on9mrx\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"N4xRpGeUd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-o5vatm\",\"data-framer-name\":\"GVB\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"OXyTsfRpL\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 97 28\"><g transform=\"translate(0.236 0.04)\" id=\"ss9658198375_1\"><path d=\"M 0 0 L 96.278 0 L 96.278 27.209 L 0 27.209 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss9658198375_3\"><path d=\"M 32.83 15.017 L 43.31 15.019 C 43.364 15.019 43.412 15.055 43.426 15.107 L 43.43 15.138 L 43.43 21.243 C 43.43 21.296 43.394 21.343 43.343 21.358 L 43.311 21.362 L 34.414 21.362 C 33.749 21.362 32.751 21.605 32.107 21.916 L 31.975 21.984 L 22.405 27.194 C 22.369 27.215 22.324 27.214 22.288 27.192 C 22.261 27.177 22.241 27.151 22.233 27.121 L 22.229 27.091 L 22.229 20.181 C 22.229 20.147 22.243 20.117 22.266 20.095 L 22.291 20.075 L 30.481 15.616 C 31.049 15.309 32.002 15.053 32.685 15.021 L 32.827 15.017 Z M 56.586 5.233 C 59.102 5.233 60.949 5.843 62.075 7.047 C 63.155 8.228 63.189 9.502 63.21 10.265 L 63.211 10.295 C 63.211 10.327 63.2 10.358 63.178 10.381 C 63.155 10.404 63.124 10.417 63.092 10.417 L 58.565 10.417 C 58.507 10.417 58.457 10.374 58.448 10.317 C 58.239 9.038 57.21 8.769 56.381 8.769 C 53.285 8.769 53.043 12.286 53.043 13.364 C 53.043 16.314 54.425 17.937 56.935 17.937 C 57.457 17.937 58.026 17.882 58.717 17.762 L 58.717 15.725 L 56.073 15.725 C 56.008 15.725 55.955 15.672 55.955 15.607 L 55.955 12.327 C 55.955 12.297 55.968 12.267 55.99 12.244 C 56.012 12.222 56.043 12.21 56.074 12.21 L 63.052 12.21 C 63.084 12.209 63.114 12.222 63.137 12.244 C 63.159 12.267 63.172 12.297 63.171 12.329 L 63.171 20.489 C 63.172 20.544 63.134 20.591 63.081 20.604 C 60.791 21.167 58.585 21.454 56.525 21.454 C 54.19 21.454 52.307 20.91 50.927 19.842 C 49.155 18.468 48.14 16.138 48.14 13.449 C 48.14 12.53 48.3 9.372 50.383 7.296 C 52.138 5.591 54.725 5.233 56.586 5.233 Z M 30.618 5.846 L 43.308 5.849 C 43.362 5.848 43.41 5.884 43.424 5.937 L 43.428 5.967 L 43.428 12.072 C 43.428 12.104 43.415 12.134 43.392 12.156 C 43.377 12.171 43.359 12.182 43.339 12.187 L 43.309 12.191 L 32.2 12.191 C 31.535 12.19 30.539 12.433 29.895 12.744 L 29.762 12.812 L 15.162 20.762 C 14.593 21.072 13.637 21.328 12.955 21.36 L 12.813 21.364 L 0.119 21.364 C 0.066 21.363 0.02 21.328 0.005 21.277 L 0 21.246 L 0 15.14 C 0 15.086 0.037 15.04 0.087 15.026 L 0.119 15.022 L 11.229 15.022 C 11.896 15.022 12.893 14.778 13.535 14.465 L 13.666 14.397 L 28.268 6.447 C 28.875 6.115 29.928 5.847 30.618 5.847 Z M 69.968 5.614 C 70.02 5.614 70.066 5.648 70.082 5.698 L 72.948 15.146 L 75.973 5.699 C 75.989 5.645 76.041 5.609 76.097 5.614 L 80.934 5.614 C 80.973 5.614 81.009 5.632 81.032 5.664 C 81.054 5.696 81.06 5.736 81.047 5.773 L 75.664 21.035 C 75.648 21.082 75.603 21.114 75.553 21.115 L 70.664 21.115 C 70.613 21.114 70.568 21.082 70.551 21.035 L 65.334 5.77 C 65.321 5.734 65.328 5.694 65.351 5.663 C 65.373 5.631 65.409 5.613 65.447 5.613 L 69.968 5.613 Z M 89.875 5.614 C 91.632 5.619 93.412 5.696 94.706 6.892 C 95.479 7.619 95.869 8.529 95.869 9.6 C 95.869 12.01 94.019 12.783 93.03 13.075 C 94.163 13.325 96.279 14.061 96.279 16.894 C 96.279 17.995 95.912 19.508 94.171 20.464 C 92.979 21.114 91.464 21.114 90.124 21.114 L 83.598 21.114 C 83.532 21.114 83.479 21.061 83.478 20.995 L 83.478 5.732 C 83.478 5.7 83.491 5.67 83.513 5.647 C 83.536 5.625 83.566 5.613 83.598 5.613 Z M 89.736 14.963 L 87.954 14.963 L 87.954 17.833 L 89.936 17.832 C 90.728 17.822 91.602 17.634 91.602 16.429 C 91.602 15.137 90.659 14.963 89.737 14.963 Z M 21.144 0.017 C 21.171 0.033 21.19 0.059 21.198 0.09 L 21.201 0.12 L 21.201 7.028 C 21.201 7.06 21.188 7.091 21.165 7.113 L 21.139 7.131 L 12.953 11.591 C 12.385 11.899 11.43 12.155 10.746 12.187 L 10.604 12.191 L 0.119 12.191 C 0.066 12.191 0.019 12.156 0.005 12.104 L 0 12.073 L 0 5.968 C 0 5.914 0.036 5.866 0.088 5.852 L 0.118 5.848 L 9.02 5.848 C 9.685 5.848 10.683 5.604 11.326 5.293 L 11.458 5.225 L 21.024 0.015 C 21.061 -0.006 21.107 -0.005 21.143 0.017 Z M 89.798 8.874 L 87.934 8.874 L 87.934 11.51 L 89.626 11.51 C 90.151 11.51 90.506 11.5 90.746 11.368 C 91.114 11.153 91.336 10.721 91.336 10.214 C 91.336 9.775 91.174 9.379 90.903 9.154 C 90.553 8.874 90.204 8.874 89.798 8.874 Z\" fill=\"var(--token-79510b87-19e1-4b05-a9ba-22caf7bebd65, rgb(0, 22, 51)) /* {&quot;name&quot;:&quot;Qnect Blue (900) (Core)&quot;} */\"></path></g></g></svg>',svgContentId:9658198375,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rzd217\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"SeuRlAzHz\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-noke1d\",\"data-framer-name\":\"H_M\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"gCOsbEyYk\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 42\"><g transform=\"translate(0.164 0)\" id=\"ss10198982004_1\"><path d=\"M 0 0.164 L 63.072 0.164 L 63.072 41.772 L 0 41.772 Z\" fill=\"transparent\"></path><path d=\"M 44.324 1.262 C 46.614 0.137 47.75 0.285 47.776 1.425 C 47.806 2.907 47.587 4.877 47.43 6.302 C 46.58 14.05 45.159 20.382 45.052 28.337 C 48.794 18.65 51.93 11.917 55.972 3.625 C 57.256 0.982 58.076 1.476 59.129 1.008 C 63.232 -0.82 63.385 0.3 62.85 2.535 C 60.86 10.813 55.763 36.877 54.985 40.891 C 54.761 42.051 53.498 41.56 53.172 41.106 C 51.712 39.084 50.062 39.053 50.245 37.709 C 51.161 31.017 54.46 14.229 55.321 10.273 C 50.937 19.26 46.391 30.495 44.054 36.865 C 43.56 38.217 42.659 38.118 42.099 37.128 C 41.309 35.738 39.778 35.028 39.523 33.385 C 38.723 28.162 40.439 18.205 40.679 11.907 C 38.291 18.787 34.284 32.147 32.528 38.182 C 31.805 40.679 29.392 40.272 30.033 37.837 C 32.701 27.709 38.449 9.795 40.933 3.355 C 41.519 1.837 43.051 1.888 44.324 1.262 Z M 29.775 0.02 C 29.001 -0.168 26.755 1.043 25.376 1.283 C 24.938 1.359 24.521 1.823 24.373 2.153 C 22.311 6.888 20.343 11.663 18.468 16.475 C 15.911 16.913 13.367 17.418 10.836 17.988 C 12.856 12.814 14.91 7.652 16.996 2.505 C 17.994 0.04 15.367 -0.194 14.349 2.301 C 12.117 7.748 9.934 13.215 7.802 18.702 C 5.786 19.197 3.647 19.762 1.412 20.407 C -0.212 20.877 -0.278 21.309 0.425 22.283 C 0.812 22.825 1.611 22.77 1.977 23.157 C 2.924 24.158 3.5 25.357 5.195 25.537 C 3.672 29.593 2.207 33.671 0.801 37.77 C -0.059 40.29 2.39 40.807 3.331 38.139 C 4.869 33.79 6.455 29.459 8.091 25.146 C 9.461 24.828 12.775 24.114 15.835 23.451 C 13.407 30.107 11.808 35.161 11.202 37.622 C 11.09 38.096 11.279 38.358 11.381 38.552 C 12.201 39.744 12.979 39.792 14.033 41.268 C 14.318 41.67 15.275 41.887 15.601 40.897 C 17.851 34.1 20.168 27.722 22.326 22.005 C 23.222 21.809 24.836 21.419 25.824 19.945 C 27.58 17.329 28.084 17.86 28.507 17.065 C 29.037 16.066 28.685 15.129 26.812 15.361 C 26.812 15.361 26.104 15.411 24.795 15.561 C 26.873 10.212 28.69 5.676 29.999 2.219 C 30.447 1.049 30.503 0.193 29.775 0.02 Z\" fill=\"var(--token-79510b87-19e1-4b05-a9ba-22caf7bebd65, rgb(0, 22, 51)) /* {&quot;name&quot;:&quot;Qnect Blue (900) (Core)&quot;} */\"></path><path d=\"M 26.709 34.707 C 27.193 35.93 28.705 35.56 28.129 34.084 C 27.544 32.581 26.089 28.057 25.706 26.599 C 25.187 24.635 27.437 25.172 26.296 26.456 C 25.319 27.561 24.668 28.003 22.86 30.102 C 21.114 32.129 21.588 34.759 23.456 35.34 C 25.564 35.996 27.422 33.673 28.573 31.97 C 29.688 30.32 28.608 29.352 27.483 30.327 C 26.76 30.954 25.925 31.917 25.08 32.437 C 24.393 32.855 23.853 32.406 24.77 31.144 C 25.834 29.684 27.025 28.46 27.91 27.08 C 29.718 24.267 26.144 22.645 24.607 24.472 C 23.782 25.446 23.991 26.402 24.215 27.223 C 24.576 28.538 25.92 32.733 26.709 34.707 Z\" fill=\"var(--token-79510b87-19e1-4b05-a9ba-22caf7bebd65, rgb(0, 22, 51)) /* {&quot;name&quot;:&quot;Qnect Blue (900) (Core)&quot;} */\"></path></g></svg>',svgContentId:10198982004,withExternalLayout:true})})],speed:24,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-igrilf-container\",layoutDependency:layoutDependency,layoutId:\"BxmM895rW-container\",style:{opacity:.8},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:40,overflow:false},gap:80,height:\"100%\",hoverFactor:1,id:\"BxmM895rW\",layoutId:\"BxmM895rW\",padding:48,paddingBottom:48,paddingLeft:48,paddingPerSide:false,paddingRight:48,paddingTop:48,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-epqrdi\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"HXl_Ixwej\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11xyom5\",\"data-framer-name\":\"NS\",fill:\"black\",intrinsicHeight:33,intrinsicWidth:82,layoutDependency:layoutDependency,layoutId:\"njvSBwH5N\",svg:'<svg width=\"82\" height=\"33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M35.864 15.88a8.891 8.891 0 0 0-6.272-2.567H12.223l6.433-6.417H34.9a2.59 2.59 0 0 1 1.765.802l9.488 9.465a8.891 8.891 0 0 0 6.272 2.566h17.374l-6.437 6.416h-16.24a2.586 2.586 0 0 1-1.765-.802l-9.493-9.464Zm4.986 13.955a9.785 9.785 0 0 0 6.272 2.727h18.816L82.022 16.52 65.939.48h-9.007L69.8 13.313H52.43a3.385 3.385 0 0 1-1.764-.642l-9.493-9.464A9.785 9.785 0 0 0 34.9.48H16.083L0 16.52l16.083 16.042h9.007L12.223 19.729h17.37a3.383 3.383 0 0 1 1.764.642l9.493 9.464Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .48)\" d=\"M0 0h81.809v32.082H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ppc4os\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"EI8C1g533\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qnjwo9\",\"data-framer-name\":\"De_Bijenkorf\",fill:\"black\",intrinsicHeight:33,intrinsicWidth:142,layoutDependency:layoutDependency,layoutId:\"evuep_HCf\",svg:'<svg width=\"142\" height=\"33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M36.82 15.607c1.322-.666 2.057-1.745 2.06-3.295-.003-2.941-1.952-3.913-4.843-3.913h-7.136L26.9 24.18l7.343.002c2.748-.002 5.366-1.375 5.362-4.582-.004-1.96-.938-3.442-2.785-3.993Zm-6.587-4.513h3.127c1.183 0 2.297.31 2.291 1.816.006 1.324-.868 1.873-2.039 1.883h-3.38v-3.699Zm3.571 10.395h-3.573v-4.337l3.639-.002c1.418.002 2.398.65 2.398 2.26-.002 1.639-1.147 2.08-2.464 2.08Zm10.194-10.507V8.399h-3.02l.005 2.584 3.015-.001Zm0 1.767-3.015.002-.004 11.43 3.019.002V12.749Zm1.828 11.856c-.004.855-.561 1.018-1.172 1.017a1.892 1.892 0 0 1-.656-.092v2.59c.32.046.656.09.974.086 3.038.005 3.865-1.105 3.87-3.45v-12h-3.019l.003 11.85Zm.002-13.623 3.013.003V8.399h-3.02l.007 2.583Zm10.062 1.462c-3.333 0-5.611 2.61-5.606 6.038 0 3.532 2.144 6.01 5.606 6.01 2.477.003 4.292-1.152 5.138-3.845l-2.657.007c-.188.702-1.166 1.476-2.377 1.479-1.676-.007-2.614-.912-2.7-2.903h7.928c.215-3.522-1.597-6.786-5.332-6.786Zm-2.59 4.803c.033-.887.594-2.44 2.508-2.437 1.464 0 2.12.842 2.402 2.431l-4.91.006Zm15.354-4.806c-1.274.003-2.595.62-3.356 1.902l-.063-.001v-1.593l-2.87.006V24.18h3.02l-.003-5.982c.005-2.33.701-3.28 2.337-3.28 1.403.003 1.933.925 1.933 2.812v6.451l3.014-.002.005-7.03c0-2.829-.805-4.708-4.017-4.708Zm15.978.314h-3.57l-3.8 4.113v-8.47H74.24l.008 15.782 3.013.003v-3.936l1.165-1.167 3.02 5.1h3.65l-4.608-7.226 4.144-4.2Zm5.517-.311c-3.443.004-5.676 2.39-5.68 6.04.004 3.625 2.237 6.009 5.68 6.011 3.463-.002 5.694-2.388 5.69-6.016.004-3.647-2.232-6.035-5.69-6.035Zm0 9.682c-2.043.008-2.657-1.832-2.657-3.644.004-1.837.62-3.673 2.657-3.666 2.055-.007 2.673 1.829 2.678 3.666 0 1.812-.623 3.648-2.678 3.644Zm9.878-7.253v-2.118h-2.873l.004 11.425 3.015.003v-5.146c-.006-2.017.767-3.674 2.972-3.674.364 0 .807.044 1.084.111l.003-2.918a2.084 2.084 0 0 0-.662-.11c-1.465-.002-2.948.988-3.543 2.427Zm5.411-3.006.006.888v2.098l-.006 9.33 3.019-.003-.004-9.327h2.083v-2.102l-2.083-.002-.003-.683c.003-.948.344-1.302 1.152-1.302.384-.004.742.02 1.103.066V8.487c-.513-.023-1.064-.088-1.599-.088-2.459 0-3.668 1.46-3.668 3.468Zm-82.941 3.591c-.965-2.014-2.451-3.172-4.635-3.172-3.546 0-5.313 2.947-5.313 6.257 0 3.138 2.377 5.935 5.299 5.935 4.33 0 5.14-3.345 5.212-3.726l-2.774-.004c-.519.943-1.24 1.407-2.266 1.407-1.515 0-2.803-1.298-2.728-3.01l7.91-.006c0-.387.006-.74-.083-1.423-.085-.7-.319-1.643-.622-2.258Zm-7.155 1.717c.05-1.12.662-2.627 2.554-2.63 1.542-.002 2.423 1.196 2.425 2.631l-4.98-.001Zm-3.985 4.817V8.38l-2.654-.004-.044 5.459c-.281-.462-1.382-1.464-3.246-1.461C2.919 12.378.81 14.602.81 18.692c0 2.827 1.686 5.872 4.662 5.872 1.6.003 2.579-.866 3.109-1.562 0 .519.027.657.062 1.184h2.732c-.045-.722-.015-1.462-.018-2.194Zm-5.093.266c-2.1 0-2.694-2.114-2.694-3.77.007-1.565.51-3.767 2.694-3.767 1.906 0 2.546 2.198 2.548 3.764-.002 1.567-.638 3.773-2.548 3.773ZM128.478.48 115.73 8.389l-.004 15.825 12.752 7.905 12.685-7.865v-15.9L128.478.48Zm-1.122 28.222-9.435-5.855.004-13.084 9.431-5.855V5.45c-2.028.3-4.682 2.692-4.682 5.954l-.005 5.306-3.529.001v5.86h8.216v6.131Zm2.185.021.005-8.524-8.218.009-.003-1.134 3.539.002V11.49c-.005-1.949 1.462-3.838 3.813-3.838h.865l.004-3.777 9.425 5.848.003 13.157-9.433 5.843Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.809 .48)\" d=\"M0 0h140.355v31.64H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jrm46y\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"nTKPgugjW\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1k9c6oz\",\"data-framer-name\":\"GGZ - Light - New\",fill:\"black\",intrinsicHeight:38,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"B1mIGz0Zn\",svg:'<svg width=\"80\" height=\"38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M4.056 19.294v.76c0 1.012-.728 1.68-2.08 1.68S0 21.108 0 20.055v-.76c0-1.104.728-1.671 2.007-1.671 1.28 0 2.05.567 2.05 1.67Zm-.343 18.341H.302V23.801h3.411v13.834Zm13.51-9.358v9.358h-3.411v-9.013c0-1.56-.49-2.026-1.31-2.026-.504.07-.982.264-1.389.561-.407.297-.73.69-.941 1.14v9.379H6.77V23.8h3.12v1.904c.354-.657.88-1.21 1.525-1.605a4.41 4.41 0 0 1 2.146-.644c2.32 0 3.661 1.59 3.661 4.821Zm14.79-8.953-.052 3.038a34.027 34.027 0 0 0-5.2-.587c-2.247 0-3.058.79-3.058 2.806v7.555c0 2.025.81 2.836 2.974 2.836a18.257 18.257 0 0 0 2.767-.264v-5.033H26.51v-3.038h6.24v10.208a21.648 21.648 0 0 1-6.178 1.135c-4.711 0-6.375-2.026-6.375-5.925V24.65c0-4.05 1.81-5.924 6.438-5.924a32.8 32.8 0 0 1 5.377.597Zm13.946 9.358v3.17H38.97v1.013c0 1.5.676 2.097 2.476 2.097a22.024 22.024 0 0 0 3.91-.456l.083 2.897c-1.41.297-2.843.477-4.285.536-4.014 0-5.553-1.62-5.553-5.418v-3.839c0-3.322 1.653-5.226 5.2-5.226 3.546 0 5.158 1.823 5.158 5.226Zm-6.989-.425v1.134h3.672V28.38c0-1.388-.708-2.026-1.841-2.026-1.134 0-1.83.628-1.83 1.904Zm19.543.425v3.17h-6.99v1.013c0 1.5.666 2.097 2.476 2.097a21.91 21.91 0 0 0 3.9-.456l.094 2.897a26.16 26.16 0 0 1-4.285.536c-4.015 0-5.564-1.62-5.564-5.418v-3.839c0-3.322 1.664-5.226 5.2-5.226 3.536 0 5.169 1.823 5.169 5.226Zm-6.99-.425v1.134h3.6V28.38c0-1.388-.698-2.026-1.831-2.026-1.134 0-1.768.628-1.768 1.904Zm17.245-4.426-.063 2.887a15.612 15.612 0 0 0-2.995-.395c-1.519 0-2.018.425-2.018 1.134v.172c0 .486.208.709.853 1.013l2.673 1.165a3.77 3.77 0 0 1 1.86 1.339 3.61 3.61 0 0 1 .709 2.145v.567c0 2.694-1.488 4.142-5.2 4.142a19.768 19.768 0 0 1-4.015-.567l.166-3.038a16.23 16.23 0 0 0 3.817.627c1.404 0 1.841-.374 1.841-1.134v-.172a1.142 1.142 0 0 0-.212-.76 1.196 1.196 0 0 0-.661-.456l-2.496-1.073c-1.862-.76-2.705-1.924-2.705-3.454V27.6c0-2.725 1.54-4.143 5.117-4.143 1.12.014 2.235.14 3.329.375Zm7.217-.03h3.526v2.866h-3.526v6.664c0 1.246.5 1.732 1.57 1.732a12.124 12.124 0 0 0 2.362-.284L80 37.635a13.33 13.33 0 0 1-2.735.345c-3.256 0-4.68-1.307-4.68-4.79v-6.523h-1.81V23.8h1.861l.5-3.687h2.85V23.8ZM17.462.466V2.49a22.986 22.986 0 0 0-3.983-.486c-1.966 0-2.704.71-2.704 2.451v6.24c0 1.761.738 2.49 2.683 2.49a16.877 16.877 0 0 0 2.455-.293V8.376h-2.684V6.35h4.878v7.95c-1.53.504-3.128.79-4.742.851-3.63 0-4.92-1.54-4.92-4.567V4.568C8.445 1.408 9.87 0 13.395 0c1.368.035 2.73.19 4.067.466Zm12.491 0V2.49a22.859 22.859 0 0 0-3.983-.486c-1.966 0-2.694.71-2.694 2.451v6.24c0 1.761.728 2.49 2.673 2.49a16.732 16.732 0 0 0 2.496-.263V8.376H25.72V6.35h4.878v7.95c-1.527.505-3.12.792-4.732.851-3.64 0-4.93-1.54-4.93-4.567V4.568c0-3.16 1.425-4.568 4.95-4.568 1.368.034 2.73.19 4.067.466Zm12.085 1.54-6.52 10.826h6.52v2.026h-9.225v-1.732l6.521-10.827h-6.386V.273h9.09v1.732Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h80v38H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ahpnm\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"grB91FYb3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mrxomq\",\"data-framer-name\":\"GVB\",fill:\"black\",intrinsicHeight:28,intrinsicWidth:97,layoutDependency:layoutDependency,layoutId:\"AdFhzvCzK\",svg:'<svg width=\"97\" height=\"28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"97\" height=\"28\"><path d=\"M96.515.04H.236v27.21h96.279V.04Z\" fill=\"#fff\"/></mask><g mask=\"url(#b)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m33.066 15.057 10.48.002a.12.12 0 0 1 .116.088l.004.031v6.105a.12.12 0 0 1-.087.115l-.032.004H34.65c-.665 0-1.663.243-2.307.554l-.132.068-9.57 5.21a.115.115 0 0 1-.117-.002.116.116 0 0 1-.055-.071l-.004-.03v-6.91c0-.034.014-.064.037-.086l.025-.02 8.19-4.459c.568-.307 1.521-.563 2.204-.595l.142-.004h.003Zm23.756-9.784c2.516 0 4.363.61 5.489 1.814 1.08 1.181 1.114 2.455 1.135 3.218l.001.03a.125.125 0 0 1-.033.086.122.122 0 0 1-.086.036h-4.527a.119.119 0 0 1-.117-.1c-.209-1.279-1.238-1.548-2.067-1.548-3.096 0-3.338 3.517-3.338 4.595 0 2.95 1.382 4.573 3.892 4.573.522 0 1.091-.055 1.782-.175v-2.037h-2.644a.118.118 0 0 1-.118-.118v-3.28c0-.03.013-.06.035-.083a.117.117 0 0 1 .084-.034h6.978a.117.117 0 0 1 .119.119v8.16a.117.117 0 0 1-.09.115c-2.29.563-4.496.85-6.556.85-2.335 0-4.218-.544-5.598-1.612-1.772-1.374-2.787-3.704-2.787-6.393 0-.919.16-4.077 2.243-6.153 1.755-1.705 4.342-2.063 6.203-2.063Zm-25.968.613 12.69.003a.118.118 0 0 1 .116.088l.004.03v6.105a.117.117 0 0 1-.036.084.115.115 0 0 1-.053.031l-.03.004H32.436c-.665-.001-1.661.242-2.305.553l-.133.068-14.6 7.95c-.569.31-1.525.566-2.207.598l-.142.004H.355a.12.12 0 0 1-.114-.087l-.005-.031V15.18c0-.054.037-.1.087-.114l.032-.004h11.11c.667 0 1.664-.244 2.306-.557l.131-.068 14.602-7.95c.607-.332 1.66-.6 2.35-.6Zm39.35-.232a.12.12 0 0 1 .114.084l2.866 9.448 3.025-9.447a.118.118 0 0 1 .124-.085h4.837a.119.119 0 0 1 .113.159L75.9 21.075a.119.119 0 0 1-.111.08H70.9a.122.122 0 0 1-.113-.08L65.57 5.81a.115.115 0 0 1 .017-.107.116.116 0 0 1 .096-.05h4.521Zm19.907 0c1.757.005 3.537.082 4.831 1.278.773.727 1.163 1.637 1.163 2.708 0 2.41-1.85 3.183-2.839 3.475 1.133.25 3.249.986 3.249 3.819 0 1.101-.367 2.614-2.108 3.57-1.192.65-2.707.65-4.047.65h-6.526a.12.12 0 0 1-.12-.119V5.772a.119.119 0 0 1 .12-.119l6.277.001Zm-.139 9.349H88.19v2.87l1.982-.001c.792-.01 1.666-.198 1.666-1.403 0-1.292-.943-1.466-1.865-1.466ZM21.38.057a.118.118 0 0 1 .054.073l.003.03v6.908a.117.117 0 0 1-.036.085l-.026.018-8.186 4.46c-.568.308-1.523.564-2.207.596l-.142.004H.355a.117.117 0 0 1-.114-.087l-.005-.031V6.008a.119.119 0 0 1 .088-.116l.03-.004h8.902c.665 0 1.663-.244 2.306-.555l.132-.068L21.26.055a.119.119 0 0 1 .119.002Zm68.654 8.857H88.17v2.636h1.692c.525 0 .88-.01 1.12-.142.368-.215.59-.647.59-1.154 0-.439-.162-.835-.433-1.06-.35-.28-.699-.28-1.105-.28Z\" fill=\"#fff\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.236 .04)\" d=\"M0 0h96.278v27.209H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bbxi7m\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"CTJ1htbgb\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9vlcsq\",\"data-framer-name\":\"H_M\",fill:\"black\",intrinsicHeight:42,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"N8ko1V9CK\",svg:'<svg width=\"64\" height=\"42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M44.488 1.262c2.29-1.125 3.426-.977 3.452.163.03 1.482-.189 3.452-.346 4.877-.85 7.748-2.271 14.08-2.378 22.035 3.742-9.687 6.878-16.42 10.92-24.712C57.42.982 58.24 1.476 59.293 1.008 63.396-.82 63.549.3 63.014 2.535c-1.99 8.278-7.087 34.342-7.865 38.356-.224 1.16-1.487.669-1.813.215-1.46-2.022-3.11-2.053-2.927-3.397.916-6.692 4.215-23.48 5.076-27.436-4.384 8.987-8.93 20.222-11.267 26.592-.494 1.352-1.395 1.253-1.955.263-.79-1.39-2.321-2.1-2.576-3.743-.8-5.223.916-15.18 1.156-21.478-2.388 6.88-6.395 20.24-8.151 26.275-.723 2.497-3.136 2.09-2.495-.345 2.668-10.128 8.416-28.042 10.9-34.482.586-1.518 2.118-1.467 3.391-2.093ZM29.939.02c-.774-.188-3.02 1.023-4.399 1.263-.438.076-.855.54-1.003.87a395.732 395.732 0 0 0-5.905 14.322A150.8 150.8 0 0 0 11 17.988a1296.552 1296.552 0 0 1 6.16-15.483c.998-2.465-1.629-2.699-2.647-.204a968.756 968.756 0 0 0-6.547 16.401c-2.016.495-4.155 1.06-6.39 1.705-1.624.47-1.69.902-.987 1.876.387.542 1.186.487 1.552.874.947 1.001 1.523 2.2 3.218 2.38A451.967 451.967 0 0 0 .965 37.77c-.86 2.52 1.589 3.037 2.53.369a610.48 610.48 0 0 1 4.76-12.993c1.37-.318 4.684-1.032 7.744-1.695-2.428 6.656-4.027 11.71-4.633 14.171-.112.474.077.736.179.93.82 1.192 1.598 1.24 2.652 2.716.285.402 1.242.619 1.568-.371 2.25-6.797 4.567-13.175 6.725-18.892.896-.196 2.51-.586 3.498-2.06 1.756-2.616 2.26-2.085 2.683-2.88.53-.999.178-1.936-1.695-1.704 0 0-.708.05-2.017.2 2.078-5.349 3.895-9.885 5.204-13.342.448-1.17.504-2.026-.224-2.199Z\"/><path d=\"M26.873 34.707c.484 1.223 1.996.853 1.42-.623-.585-1.503-2.04-6.027-2.423-7.485-.519-1.964 1.731-1.427.59-.143-.977 1.105-1.628 1.547-3.436 3.646-1.746 2.027-1.272 4.657.596 5.238 2.108.656 3.966-1.667 5.117-3.37 1.115-1.65.035-2.618-1.09-1.643-.723.627-1.558 1.59-2.403 2.11-.687.418-1.227-.031-.31-1.293 1.064-1.46 2.255-2.684 3.14-4.064 1.808-2.813-1.766-4.435-3.303-2.608-.825.974-.616 1.93-.392 2.751.361 1.315 1.705 5.51 2.494 7.484Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.164)\" d=\"M0 0h63.072v41.608H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})],speed:24,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pf1S2.framer-zp8pvq, .framer-pf1S2 .framer-zp8pvq { display: block; }\",\".framer-pf1S2.framer-12kal9r { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 656px; }\",\".framer-pf1S2 .framer-1yofyo4-container, .framer-pf1S2 .framer-igrilf-container { flex: 1 0 0px; height: 100px; position: relative; width: 1px; }\",\".framer-pf1S2 .framer-1nuqw3k, .framer-pf1S2 .framer-epqrdi { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 33px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 82px; }\",\".framer-pf1S2 .framer-teft7v { flex: none; height: 33px; position: relative; width: 82px; }\",\".framer-pf1S2 .framer-1ymhni8, .framer-pf1S2 .framer-1ppc4os { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 33px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 142px; }\",\".framer-pf1S2 .framer-1l8pc2s { flex: none; height: 33px; position: relative; width: 142px; }\",\".framer-pf1S2 .framer-9qtows, .framer-pf1S2 .framer-jrm46y { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 92px; }\",\".framer-pf1S2 .framer-evzmuz, .framer-pf1S2 .framer-1k9c6oz { aspect-ratio: 2.1052631578947367 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); position: relative; width: 80px; }\",\".framer-pf1S2 .framer-on9mrx, .framer-pf1S2 .framer-ahpnm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 28px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 97px; }\",\".framer-pf1S2 .framer-o5vatm { flex: none; height: 28px; position: relative; width: 97px; }\",\".framer-pf1S2 .framer-1rzd217, .framer-pf1S2 .framer-bbxi7m { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 64px; }\",\".framer-pf1S2 .framer-noke1d { flex: none; height: 42px; position: relative; width: 64px; }\",\".framer-pf1S2 .framer-11xyom5 { aspect-ratio: 2.484848484848485 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 82px; }\",\".framer-pf1S2 .framer-1qnjwo9 { aspect-ratio: 4.303030303030303 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 142px; }\",\".framer-pf1S2 .framer-1mrxomq { aspect-ratio: 3.4642857142857144 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 97px; }\",\".framer-pf1S2 .framer-9vlcsq { aspect-ratio: 1.5238095238095237 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 64px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pf1S2.framer-12kal9r, .framer-pf1S2 .framer-1nuqw3k, .framer-pf1S2 .framer-1ymhni8, .framer-pf1S2 .framer-9qtows, .framer-pf1S2 .framer-on9mrx, .framer-pf1S2 .framer-1rzd217, .framer-pf1S2 .framer-epqrdi, .framer-pf1S2 .framer-1ppc4os, .framer-pf1S2 .framer-jrm46y, .framer-pf1S2 .framer-ahpnm, .framer-pf1S2 .framer-bbxi7m { gap: 0px; } .framer-pf1S2.framer-12kal9r > *, .framer-pf1S2 .framer-1nuqw3k > *, .framer-pf1S2 .framer-1ymhni8 > *, .framer-pf1S2 .framer-9qtows > *, .framer-pf1S2 .framer-on9mrx > *, .framer-pf1S2 .framer-1rzd217 > *, .framer-pf1S2 .framer-epqrdi > *, .framer-pf1S2 .framer-1ppc4os > *, .framer-pf1S2 .framer-jrm46y > *, .framer-pf1S2 .framer-ahpnm > *, .framer-pf1S2 .framer-bbxi7m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-pf1S2.framer-12kal9r > :first-child, .framer-pf1S2 .framer-1nuqw3k > :first-child, .framer-pf1S2 .framer-1ymhni8 > :first-child, .framer-pf1S2 .framer-9qtows > :first-child, .framer-pf1S2 .framer-on9mrx > :first-child, .framer-pf1S2 .framer-1rzd217 > :first-child, .framer-pf1S2 .framer-epqrdi > :first-child, .framer-pf1S2 .framer-1ppc4os > :first-child, .framer-pf1S2 .framer-jrm46y > :first-child, .framer-pf1S2 .framer-ahpnm > :first-child, .framer-pf1S2 .framer-bbxi7m > :first-child { margin-left: 0px; } .framer-pf1S2.framer-12kal9r > :last-child, .framer-pf1S2 .framer-1nuqw3k > :last-child, .framer-pf1S2 .framer-1ymhni8 > :last-child, .framer-pf1S2 .framer-9qtows > :last-child, .framer-pf1S2 .framer-on9mrx > :last-child, .framer-pf1S2 .framer-1rzd217 > :last-child, .framer-pf1S2 .framer-epqrdi > :last-child, .framer-pf1S2 .framer-1ppc4os > :last-child, .framer-pf1S2 .framer-jrm46y > :last-child, .framer-pf1S2 .framer-ahpnm > :last-child, .framer-pf1S2 .framer-bbxi7m > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 656\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"o5jAnqdny\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"zrf5WI6W0\":\"mouseEnter\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBKPFNevS0=withCSS(Component,css,\"framer-pf1S2\");export default FramerBKPFNevS0;FramerBKPFNevS0.displayName=\"Elements/Logo's\";FramerBKPFNevS0.defaultProps={height:40,width:656};addPropertyControls(FramerBKPFNevS0,{variant:{options:[\"fynSKcNzb\",\"o5jAnqdny\"],optionTitles:[\"Dark\",\"Light\"],title:\"Variant\",type:ControlType.Enum},zrf5WI6W0:{title:\"Mouse Enter\",type:ControlType.EventHandler}});addFonts(FramerBKPFNevS0,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBKPFNevS0\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"o5jAnqdny\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"zrf5WI6W0\\\":\\\"mouseEnter\\\"}\",\"framerIntrinsicWidth\":\"656\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BKPFNevS0.map", "// Generated by Framer (d5ca742)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/2obhralVU75e0JKtVehw/IhBhATSz7W5pJGQRwE3m/BG6fyb_9R.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/o6ExYSYuNFowrOze5n6b/x4qTNNCaH3jc3gTdmde1/SCSbMkxws.js\";import ElementsLogoS from\"https://framerusercontent.com/modules/7WH8rb48Ej1GBVGouAyl/OTPjoc05kiiqxcF4Jru3/BKPFNevS0.js\";const ElementsLogoSFonts=getFonts(ElementsLogoS);const cycleOrder=[\"HO9OVWGl1\",\"yQLZduGyl\",\"KOSjuKOXR\",\"NvD9YGbgs\",\"R4bXBNZQ1\",\"UctHRfco1\"];const serializationHash=\"framer-aGBW9\";const variantClassNames={HO9OVWGl1:\"framer-v-mzi8jy\",KOSjuKOXR:\"framer-v-1oz881\",NvD9YGbgs:\"framer-v-95wydn\",R4bXBNZQ1:\"framer-v-hq5gzw\",UctHRfco1:\"framer-v-v9nnbj\",yQLZduGyl:\"framer-v-xbl2pg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:.05,duration:.8,type:\"spring\"};const textEffect={effect:animation,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Dark L Hover\":\"NvD9YGbgs\",\"Dark L\":\"KOSjuKOXR\",\"Dark S\":\"R4bXBNZQ1\",\"Light L Hover\":\"yQLZduGyl\",\"Light L\":\"HO9OVWGl1\",\"Light S\":\"UctHRfco1\"};const getProps=({backgroundColor,height,id,padding,textVisible,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,gGaPnVUOX:(_ref=backgroundColor!==null&&backgroundColor!==void 0?backgroundColor:props.gGaPnVUOX)!==null&&_ref!==void 0?_ref:\"var(--token-324a3628-e02c-4809-bbca-86b2f4b30a5b, rgb(255, 255, 255))\",lCSY1Is1G:(_ref1=padding!==null&&padding!==void 0?padding:props.lCSY1Is1G)!==null&&_ref1!==void 0?_ref1:\"60px 40px 60px 40px\",m31noLXjI:(_ref2=textVisible!==null&&textVisible!==void 0?textVisible:props.m31noLXjI)!==null&&_ref2!==void 0?_ref2:true,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"HO9OVWGl1\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gGaPnVUOX,lCSY1Is1G,m31noLXjI,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HO9OVWGl1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseLeave17gbw4u=activeVariantCallback(async(...args)=>{setVariant(\"KOSjuKOXR\");});const onMouseEnter1q86j1k=activeVariantCallback(async(...args)=>{setVariant(\"yQLZduGyl\");});const onMouseLeave11etek5=activeVariantCallback(async(...args)=>{setVariant(\"HO9OVWGl1\");});const onMouseEnternn0tl1=activeVariantCallback(async(...args)=>{setVariant(\"NvD9YGbgs\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"R4bXBNZQ1\",\"UctHRfco1\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"yQLZduGyl\",\"NvD9YGbgs\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-mzi8jy\",className,classNames),\"data-framer-name\":\"Light L\",layoutDependency:layoutDependency,layoutId:\"HO9OVWGl1\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--17de8zo\":numberToPixelString(lCSY1Is1G),backgroundColor:gGaPnVUOX,...style},variants:{KOSjuKOXR:{backgroundColor:\"var(--token-e2d25406-e075-4a73-aae0-88e280e0eeb9, rgb(0, 13, 32))\"},NvD9YGbgs:{backgroundColor:\"var(--token-e2d25406-e075-4a73-aae0-88e280e0eeb9, rgb(0, 13, 32))\"},R4bXBNZQ1:{backgroundColor:\"var(--token-e2d25406-e075-4a73-aae0-88e280e0eeb9, rgb(0, 13, 32))\"}},...addPropertyOverrides({KOSjuKOXR:{\"data-framer-name\":\"Dark L\"},NvD9YGbgs:{\"data-framer-name\":\"Dark L Hover\"},R4bXBNZQ1:{\"data-framer-name\":\"Dark S\"},UctHRfco1:{\"data-framer-name\":\"Light S\"},yQLZduGyl:{\"data-framer-name\":\"Light L Hover\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r7wo3f\",layoutDependency:layoutDependency,layoutId:\"Y_UiVeyln\",children:[m31noLXjI&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n38avz\",\"data-styles-preset\":\"BG6fyb_9R\",children:\"Vertrouwd door 15.000+ organisaties\"})}),className:\"framer-2n8710\",\"data-framer-name\":\"Vertrouwd door 15.000+ organisaties\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MolcbOrCg\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:1},variants:{KOSjuKOXR:{\"--extracted-r6o4lv\":\"var(--token-104d45c6-4789-4d57-bd64-06ce1b63c8f2, rgb(152, 162, 179))\"},NvD9YGbgs:{\"--extracted-r6o4lv\":\"var(--token-104d45c6-4789-4d57-bd64-06ce1b63c8f2, rgb(152, 162, 179))\",opacity:.1},R4bXBNZQ1:{\"--extracted-r6o4lv\":\"var(--token-104d45c6-4789-4d57-bd64-06ce1b63c8f2, rgb(152, 162, 179))\"},yQLZduGyl:{opacity:.1}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({KOSjuKOXR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n38avz\",\"data-styles-preset\":\"BG6fyb_9R\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-104d45c6-4789-4d57-bd64-06ce1b63c8f2, rgb(152, 162, 179)))\"},children:\"Vertrouwd door 15.000+ organisaties\"})})},NvD9YGbgs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n38avz\",\"data-styles-preset\":\"BG6fyb_9R\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-104d45c6-4789-4d57-bd64-06ce1b63c8f2, rgb(152, 162, 179)))\"},children:\"Vertrouwd door 15.000+ organisaties\"})})},R4bXBNZQ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n38avz\",\"data-styles-preset\":\"BG6fyb_9R\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-104d45c6-4789-4d57-bd64-06ce1b63c8f2, rgb(152, 162, 179)))\"},children:\"Vertrouwd door 15.000+ organisaties\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ygiow2\",layoutDependency:layoutDependency,layoutId:\"cBVwAQIo0\",style:{opacity:1},variants:{NvD9YGbgs:{opacity:.1},yQLZduGyl:{opacity:.1}},...addPropertyOverrides({NvD9YGbgs:{\"data-highlight\":true,onMouseLeave:onMouseLeave17gbw4u}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"1000px\",...addPropertyOverrides({R4bXBNZQ1:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - ${lCSY1Is1G*2}px, 1px)`},UctHRfco1:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - ${lCSY1Is1G*2}px, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10k4qav-container\",layoutDependency:layoutDependency,layoutId:\"a3DwEPDkr-container\",children:/*#__PURE__*/_jsx(ElementsLogoS,{height:\"100%\",id:\"a3DwEPDkr\",layoutId:\"a3DwEPDkr\",style:{height:\"100%\",width:\"100%\"},variant:\"fynSKcNzb\",width:\"100%\",...addPropertyOverrides({KOSjuKOXR:{variant:\"o5jAnqdny\"},NvD9YGbgs:{variant:\"o5jAnqdny\"},R4bXBNZQ1:{variant:\"o5jAnqdny\"}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{nodeId:\"yFSzAyKOd\",...addPropertyOverrides({NvD9YGbgs:{href:{webPageId:\"Uz24wWS4M\"}},yQLZduGyl:{href:{webPageId:\"Uz24wWS4M\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1vtfjy7 framer-38c09t\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"yFSzAyKOd\",onMouseEnter:onMouseEnter1q86j1k,...addPropertyOverrides({KOSjuKOXR:{onMouseEnter:onMouseEnternn0tl1},NvD9YGbgs:{onMouseEnter:undefined,onMouseLeave:onMouseLeave17gbw4u},yQLZduGyl:{onMouseEnter:undefined,onMouseLeave:onMouseLeave11etek5}},baseVariant,gestureVariant),children:isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-16b4esb\",\"data-styles-preset\":\"SCSbMkxws\",children:\"Verhalen van klanten \u2192\"})}),className:\"framer-5z4od8\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fzrHNenfc\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{NvD9YGbgs:{\"--extracted-1lwpl3i\":\"var(--token-324a3628-e02c-4809-bbca-86b2f4b30a5b, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NvD9YGbgs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-16b4esb\",\"data-styles-preset\":\"SCSbMkxws\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-324a3628-e02c-4809-bbca-86b2f4b30a5b, rgb(255, 255, 255)))\"},children:\"Verhalen van klanten \u2192\"})})}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aGBW9.framer-38c09t, .framer-aGBW9 .framer-38c09t { display: block; }\",\".framer-aGBW9.framer-mzi8jy { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: hidden; padding: var(--17de8zo); position: relative; width: 1200px; }\",\".framer-aGBW9 .framer-1r7wo3f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-aGBW9 .framer-2n8710, .framer-aGBW9 .framer-5z4od8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-aGBW9 .framer-1ygiow2 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-aGBW9 .framer-10k4qav-container { flex: none; height: 100px; position: relative; width: 1000px; }\",\".framer-aGBW9 .framer-1vtfjy7 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: center; left: calc(50.00000000000002% - 1000px / 2); overflow: visible; padding: 0px; position: absolute; width: 1000px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aGBW9.framer-mzi8jy, .framer-aGBW9 .framer-1r7wo3f, .framer-aGBW9 .framer-1ygiow2, .framer-aGBW9 .framer-1vtfjy7 { gap: 0px; } .framer-aGBW9.framer-mzi8jy > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-aGBW9.framer-mzi8jy > :first-child, .framer-aGBW9 .framer-1r7wo3f > :first-child { margin-top: 0px; } .framer-aGBW9.framer-mzi8jy > :last-child, .framer-aGBW9 .framer-1r7wo3f > :last-child { margin-bottom: 0px; } .framer-aGBW9 .framer-1r7wo3f > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-aGBW9 .framer-1ygiow2 > *, .framer-aGBW9 .framer-1vtfjy7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-aGBW9 .framer-1ygiow2 > :first-child, .framer-aGBW9 .framer-1vtfjy7 > :first-child { margin-left: 0px; } .framer-aGBW9 .framer-1ygiow2 > :last-child, .framer-aGBW9 .framer-1vtfjy7 > :last-child { margin-right: 0px; } }\",\".framer-aGBW9.framer-v-xbl2pg .framer-1vtfjy7 { bottom: 0px; text-decoration: none; }\",\".framer-aGBW9.framer-v-xbl2pg .framer-5z4od8, .framer-aGBW9.framer-v-1oz881 .framer-2n8710 { order: 0; }\",\".framer-aGBW9.framer-v-1oz881 .framer-1ygiow2 { order: 1; }\",\".framer-aGBW9.framer-v-1oz881 .framer-1vtfjy7 { order: 2; }\",\".framer-aGBW9.framer-v-95wydn .framer-1r7wo3f { justify-content: flex-end; }\",\".framer-aGBW9.framer-v-95wydn .framer-1vtfjy7 { text-decoration: none; }\",\".framer-aGBW9.framer-v-hq5gzw.framer-mzi8jy { width: 390px; }\",\".framer-aGBW9.framer-v-hq5gzw .framer-1r7wo3f, .framer-aGBW9.framer-v-v9nnbj .framer-1r7wo3f { gap: 0px; width: 100%; }\",\".framer-aGBW9.framer-v-hq5gzw .framer-1ygiow2, .framer-aGBW9.framer-v-v9nnbj .framer-1ygiow2 { align-self: unset; width: 100%; }\",\".framer-aGBW9.framer-v-hq5gzw .framer-10k4qav-container, .framer-aGBW9.framer-v-v9nnbj .framer-10k4qav-container { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aGBW9.framer-v-hq5gzw .framer-1r7wo3f { gap: 0px; } .framer-aGBW9.framer-v-hq5gzw .framer-1r7wo3f > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-aGBW9.framer-v-hq5gzw .framer-1r7wo3f > :first-child { margin-top: 0px; } .framer-aGBW9.framer-v-hq5gzw .framer-1r7wo3f > :last-child { margin-bottom: 0px; } }\",\".framer-aGBW9.framer-v-v9nnbj.framer-mzi8jy { gap: 80px; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aGBW9.framer-v-v9nnbj.framer-mzi8jy, .framer-aGBW9.framer-v-v9nnbj .framer-1r7wo3f { gap: 0px; } .framer-aGBW9.framer-v-v9nnbj.framer-mzi8jy > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-aGBW9.framer-v-v9nnbj.framer-mzi8jy > :first-child, .framer-aGBW9.framer-v-v9nnbj .framer-1r7wo3f > :first-child { margin-top: 0px; } .framer-aGBW9.framer-v-v9nnbj.framer-mzi8jy > :last-child, .framer-aGBW9.framer-v-v9nnbj .framer-1r7wo3f > :last-child { margin-bottom: 0px; } .framer-aGBW9.framer-v-v9nnbj .framer-1r7wo3f > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 292\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yQLZduGyl\":{\"layout\":[\"fixed\",\"auto\"]},\"KOSjuKOXR\":{\"layout\":[\"fixed\",\"auto\"]},\"NvD9YGbgs\":{\"layout\":[\"fixed\",\"auto\"]},\"R4bXBNZQ1\":{\"layout\":[\"fixed\",\"auto\"]},\"UctHRfco1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"gGaPnVUOX\":\"backgroundColor\",\"lCSY1Is1G\":\"padding\",\"m31noLXjI\":\"textVisible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFZrjPTVel=withCSS(Component,css,\"framer-aGBW9\");export default FramerFZrjPTVel;FramerFZrjPTVel.displayName=\"Sections/Logo\";FramerFZrjPTVel.defaultProps={height:292,width:1200};addPropertyControls(FramerFZrjPTVel,{variant:{options:[\"HO9OVWGl1\",\"yQLZduGyl\",\"KOSjuKOXR\",\"NvD9YGbgs\",\"R4bXBNZQ1\",\"UctHRfco1\"],optionTitles:[\"Light L\",\"Light L Hover\",\"Dark L\",\"Dark L Hover\",\"Dark S\",\"Light S\"],title:\"Variant\",type:ControlType.Enum},gGaPnVUOX:{defaultValue:'var(--token-324a3628-e02c-4809-bbca-86b2f4b30a5b, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"Background color\",type:ControlType.Color},lCSY1Is1G:{defaultValue:\"60px 40px 60px 40px\",title:\"Padding\",type:ControlType.Padding},m31noLXjI:{defaultValue:true,title:\"Text Visible\",type:ControlType.Boolean}});addFonts(FramerFZrjPTVel,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ElementsLogoSFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFZrjPTVel\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yQLZduGyl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KOSjuKOXR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NvD9YGbgs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R4bXBNZQ1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UctHRfco1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"gGaPnVUOX\\\":\\\"backgroundColor\\\",\\\"lCSY1Is1G\\\":\\\"padding\\\",\\\"m31noLXjI\\\":\\\"textVisible\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"292\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FZrjPTVel.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "keyframes", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "mouseEnter", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "zrf5WI6W0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter14px6u5", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "SVG", "css", "FramerBKPFNevS0", "withCSS", "BKPFNevS0_default", "addPropertyControls", "ControlType", "addFonts", "ElementsLogoSFonts", "getFonts", "BKPFNevS0_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "animation", "transition2", "textEffect", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "backgroundColor", "height", "id", "padding", "textVisible", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "gGaPnVUOX", "lCSY1Is1G", "m31noLXjI", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseLeave17gbw4u", "args", "onMouseEnter1q86j1k", "onMouseLeave11etek5", "onMouseEnternn0tl1", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText", "ComponentViewportProvider", "Link", "css", "FramerFZrjPTVel", "withCSS", "FZrjPTVel_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
