{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/oE9tXDzdCwU7OA1Pj3d5/591smG6Ei6BA5nkAsQUz/nQZdsTz7X.js", "ssg:https://framerusercontent.com/modules/qeWjRyXsweK5CZYaymlf/oY8dIYjGjTYS3yXwUYu4/hdd1hc7he.js", "ssg:https://framerusercontent.com/modules/i2UTrq0CZ67fjONQprcq/Utf2fppDdrrt02dtZWkh/augiA20Il.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 directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// 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[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=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);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)})});});}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:\"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(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// 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||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):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\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (f082bd6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Martian Mono-regular\",\"GF;Martian Mono-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Martian Mono\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qu86TD75kdpF2.woff2\",weight:\"400\"},{family:\"Martian Mono\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY2NvM6TD75kdpF2.woff2\",weight:\"700\"}]}];export const css=[\".framer-1B4q0 .framer-styles-preset-filvvp:not(.rich-text-wrapper), .framer-1B4q0 .framer-styles-preset-filvvp.rich-text-wrapper p { --framer-font-family: \\\"Martian Mono\\\", monospace; --framer-font-family-bold: \\\"Martian Mono\\\", monospace; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #666666; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-1B4q0\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ControlType,cx,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as componentPresets from\"https://framerusercontent.com/modules/EVEUsOjbQgZ3fzUQToo2/xyfSjgC7P0piQaJERlLJ/componentPresets.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/BncGGlOcZwtULEhifqro/6n1XL0DnK7wjyMvAPlqv/Ar02y5aN9.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/zAzUjZjsKkyNZVdMSjTJ/pkGKKKi2QrvKQNhH60rA/HVuvuWOly.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/Ujqb5RwFVtVeILuo63YT/UTMJDEYbc8RSWJMr2plX/iuxW807GW.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/AnHirboVADGbQekVDqUW/kMrLqq1lf3zXU77nLvt7/JaKelVHq6.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/dH8P3qqqJwcoZcJpj53H/AGCiGric6dS4bi8GVz4o/MdL0l4ct5.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/oE9tXDzdCwU7OA1Pj3d5/591smG6Ei6BA5nkAsQUz/nQZdsTz7X.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/Pcw0JNbZHxZUejYz38Xy/H7lvDDr5OENUz0AsWNYw/PjclSbxIK.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/F6lKQlJE0mRwZunpX6lA/WO4uKWDaRF1iqa0alYPj/QXSd7L56G.js\";import*as sharedStyle11 from\"https://framerusercontent.com/modules/PzuauFNFwAlSw6gQEz8X/7wnlk0XB2atvCkIX9mAu/rGMqVpGWr.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/FyFtJRuVOF9dyBhYoxiD/7P689PZk69LfzaZAQ7HN/SZ5iS8LPt.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/CSuSguTOgaMD4XPsgpgd/B27JZRIZewJYM7lVuPFB/vvqQxuyRx.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/TA3gA0VAnT3x2MKra4M3/9OJO64ZPsYrqBZGZ9JLv/zMpsiMOLk.js\";const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-Jiaa3\";const variantClassNames={h7oYxxgGA:\"framer-v-12kpq5l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:8};const transition1={delay:.1,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transition2={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 getProps=({content,height,id,image,name1,title,width,...props})=>{return{...props,eR3Q3tL5z:name1??props.eR3Q3tL5z??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(Link,{href:\"https://nl.linkedin.com/in/stefvanderfeen\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Stef van der Feen\"})})})}),fTKuurrYC:image??props.fTKuurrYC??{alt:\"\",src:\"https://framerusercontent.com/images/ZO3dNEU4o7s3ixrgmLOEK29LfM.png\"},KuFP1WcRL:title??props.KuFP1WcRL??\"Head of Design at bol\",Oem60Da1X:content??props.Oem60Da1X??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{children:\"Jan-Paul is one of the most creative and passionate designers I\u2019ve worked with. He has a clear vision, translates it into strong designs, and understands product, business, and customers.\"}),/*#__PURE__*/_jsx(motion.p,{children:\"At bol, he inspires and mentors many designers, raising our design quality.\u201D\"})]})};};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,Oem60Da1X,KuFP1WcRL,fTKuurrYC,eR3Q3tL5z,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"h7oYxxgGA\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-12kpq5l\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"h7oYxxgGA\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lj3hzb\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"yZLk68KqV\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.02)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-epbaw1\",\"data-styles-preset\":\"JaKelVHq6\",children:\"\u201C\"})}),className:\"framer-udsuaj\",\"data-framer-name\":'\"',fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NoPAHlbop\",style:{\"--framer-paragraph-spacing\":\"32px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"fw7UJFCgf\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"ql1EQsxvt\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Oem60Da1X,className:\"framer-1qdokjo\",\"data-framer-name\":\"Quote\",fonts:[\"GF;Alegreya-regular\"],layoutDependency:layoutDependency,layoutId:\"RDQ1cBgQN\",style:{\"--extracted-1iakedh\":\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgb(19, 52, 113))\",\"--extracted-2gxw0f\":\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgb(19, 52, 113))\",\"--extracted-r6o4lv\":\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgb(19, 52, 113))\",\"--framer-paragraph-spacing\":\"16px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-57rakp\",code:\"framer-styles-preset-7sa5vl\",h1:\"framer-styles-preset-2feyaq\",h2:\"framer-styles-preset-12s94e1\",h3:\"framer-styles-preset-2n1qad\",h4:\"framer-styles-preset-ge5u19\",h5:\"framer-styles-preset-19maziq\",h6:\"framer-styles-preset-19sfvx5\",img:\"framer-styles-preset-mj30ou\",p:\"framer-styles-preset-epbaw1\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d58t4g\",layoutDependency:layoutDependency,layoutId:\"lF8QHc2m1\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/stefvanderfeen\",nodeId:\"JaNMP_M7l\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+296+32.9),sizes:\"48px\",...toResponsiveImage(fTKuurrYC)},className:\"framer-1s84c3o framer-r4vrby\",layoutDependency:layoutDependency,layoutId:\"JaNMP_M7l\",style:{borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-163vhs2\",layoutDependency:layoutDependency,layoutId:\"C5xVoahEz\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"fw7UJFCgf\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"ql1EQsxvt\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:eR3Q3tL5z,className:\"framer-1optagv\",\"data-framer-name\":\"name\",fonts:[\"GF;Martian Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"Vjc9bLebo\",style:{\"--extracted-a0htzi\":\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8))\",\"--framer-paragraph-spacing\":\"32px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-1gg6pev\",code:\"framer-styles-preset-7sa5vl\",h1:\"framer-styles-preset-2feyaq\",h2:\"framer-styles-preset-12s94e1\",h3:\"framer-styles-preset-2n1qad\",h4:\"framer-styles-preset-ge5u19\",h5:\"framer-styles-preset-19maziq\",h6:\"framer-styles-preset-19sfvx5\",img:\"framer-styles-preset-mj30ou\",p:\"framer-styles-preset-filvvp\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7TWFydGlhbiBNb25vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Martian Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-112ba13e-725d-4731-a34e-2918e9999aa2, rgba(251, 250, 249, 0.6)))\",\"--framer-text-transform\":\"inherit\"},children:\"Head of Design at bol\"})}),className:\"framer-ilek8n\",\"data-framer-name\":\"title\",fonts:[\"GF;Martian Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"RTkdgR39n\",style:{\"--extracted-a0htzi\":\"var(--token-112ba13e-725d-4731-a34e-2918e9999aa2, rgba(251, 250, 249, 0.6))\",\"--framer-paragraph-spacing\":\"32px\"},text:KuFP1WcRL,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Jiaa3.framer-r4vrby, .framer-Jiaa3 .framer-r4vrby { display: block; }\",\".framer-Jiaa3.framer-12kpq5l { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 640px; }\",\".framer-Jiaa3 .framer-lj3hzb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jiaa3 .framer-udsuaj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Jiaa3 .framer-1qdokjo { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Jiaa3 .framer-1d58t4g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 40px; position: relative; width: 100%; }\",\".framer-Jiaa3 .framer-1s84c3o { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; text-decoration: none; width: 48px; }\",\".framer-Jiaa3 .framer-163vhs2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Jiaa3 .framer-1optagv, .framer-Jiaa3 .framer-ilek8n { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jiaa3.framer-12kpq5l, .framer-Jiaa3 .framer-lj3hzb, .framer-Jiaa3 .framer-1d58t4g, .framer-Jiaa3 .framer-163vhs2 { gap: 0px; } .framer-Jiaa3.framer-12kpq5l > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Jiaa3.framer-12kpq5l > :first-child, .framer-Jiaa3 .framer-163vhs2 > :first-child { margin-top: 0px; } .framer-Jiaa3.framer-12kpq5l > :last-child, .framer-Jiaa3 .framer-163vhs2 > :last-child { margin-bottom: 0px; } .framer-Jiaa3 .framer-lj3hzb > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Jiaa3 .framer-lj3hzb > :first-child, .framer-Jiaa3 .framer-1d58t4g > :first-child { margin-left: 0px; } .framer-Jiaa3 .framer-lj3hzb > :last-child, .framer-Jiaa3 .framer-1d58t4g > :last-child { margin-right: 0px; } .framer-Jiaa3 .framer-1d58t4g > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-Jiaa3 .framer-163vhs2 > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,'.framer-Jiaa3[data-border=\"true\"]::after, .framer-Jiaa3 [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 278\n * @framerIntrinsicWidth 640\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Oem60Da1X\":\"content\",\"KuFP1WcRL\":\"title\",\"fTKuurrYC\":\"image\",\"eR3Q3tL5z\":\"name1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerhdd1hc7he=withCSS(Component,css,\"framer-Jiaa3\");export default Framerhdd1hc7he;Framerhdd1hc7he.displayName=\"Quote\";Framerhdd1hc7he.defaultProps={height:278,width:640};addPropertyControls(Framerhdd1hc7he,{Oem60Da1X:{defaultValue:\"<p>Jan-Paul is one of the most creative and passionate designers I\u2019ve worked with. He has a clear vision, translates it into strong designs, and understands product, business, and customers.</p><p>At bol, he inspires and mentors many designers, raising our design quality.\u201D</p>\",title:\"Content\",type:ControlType.RichText},KuFP1WcRL:{defaultValue:\"Head of Design at bol\",displayTextArea:false,title:\"Title\",type:ControlType.String},fTKuurrYC:{__defaultAssetReference:\"data:framer/asset-reference,ZO3dNEU4o7s3ixrgmLOEK29LfM.png?originalFilename=image.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,ZO3dNEU4o7s3ixrgmLOEK29LfM.png?originalFilename=image.png&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},eR3Q3tL5z:{defaultValue:'<p><a data-framer-link=\"Link:{&quot;url&quot;:&quot;https://nl.linkedin.com/in/stefvanderfeen&quot;,&quot;type&quot;:&quot;url&quot;}\" data-framer-open-in-new-tab=\"\">Stef van der Feen</a></p>',title:\"Name\",type:ControlType.RichText}});addFonts(Framerhdd1hc7he,[{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\"},{family:\"Alegreya\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/alegreya/v36/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hUI-aCisSGVrw.woff2\",weight:\"400\"},{family:\"Martian Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qu86TD75kdpF2.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...componentPresets.fonts?.[\"ql1EQsxvt\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"ql1EQsxvt\"]):[],...componentPresets.fonts?.[\"fw7UJFCgf\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"fw7UJFCgf\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerhdd1hc7he\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"Oem60Da1X\\\":\\\"content\\\",\\\"KuFP1WcRL\\\":\\\"title\\\",\\\"fTKuurrYC\\\":\\\"image\\\",\\\"eR3Q3tL5z\\\":\\\"name1\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"640\",\"framerIntrinsicHeight\":\"278\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hdd1hc7he.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import Footer from\"#framer/local/canvasComponent/C2ABbFdQi/C2ABbFdQi.js\";import Quote from\"#framer/local/canvasComponent/hdd1hc7he/hdd1hc7he.js\";import WorkCard3 from\"#framer/local/canvasComponent/QOp0lWZZ8/QOp0lWZZ8.js\";import Navigation2 from\"#framer/local/canvasComponent/tr0p3dTIH/tr0p3dTIH.js\";import Work from\"#framer/local/collection/GN1Ilg2Ff/GN1Ilg2Ff.js\";import*as sharedStyle from\"#framer/local/css/MdL0l4ct5/MdL0l4ct5.js\";import*as sharedStyle2 from\"#framer/local/css/SaPUTEjxF/SaPUTEjxF.js\";import*as sharedStyle1 from\"#framer/local/css/xgUnScoyo/xgUnScoyo.js\";import*as sharedStyle3 from\"#framer/local/css/zMpsiMOLk/zMpsiMOLk.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const Navigation2Fonts=getFonts(Navigation2);const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const TickerFonts=getFonts(Ticker);const ContainerWithFX=withFX(Container);const VideoFonts=getFonts(Video);const WorkCard3Fonts=getFonts(WorkCard3);const QuoteFonts=getFonts(Quote);const CarouselFonts=getFonts(Carousel);const FooterFonts=getFonts(Footer);const breakpoints={Ezb0E_mrV:\"(min-width: 768px) and (max-width: 1023px)\",LBrzMDCpd:\"(max-width: 767px)\",mrsBovbnL:\"(min-width: 1024px) and (max-width: 1279px)\",WQLkyLRf1:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Y8i9R\";const variantClassNames={Ezb0E_mrV:\"framer-v-1xex2io\",LBrzMDCpd:\"framer-v-84f2mh\",mrsBovbnL:\"framer-v-dm5tim\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:1,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:8};const transition2={delay:.5,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:8};const transition3={delay:.4,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:8};const transition4={delay:.8,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:8};const animation5={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition5={bounce:0,delay:.075,duration:.4,type:\"spring\"};const textEffect={effect:animation5,repeat:false,startDelay:.8,tokenization:\"word\",transition:transition5,trigger:\"onMount\",type:\"appear\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition6={delay:1.8,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={delay:1.2,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:8};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:8};const transition8={delay:1.4,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:8};const transition9={delay:.3,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:8};const transition10={delay:.6,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:8};const transition11={delay:.9,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:8};const transition12={delay:1.5,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:0,y:8};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:8};const transition13={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation16={opacity:1,rotate:1,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:16};const transition14={delay:.3,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition14,x:0,y:16};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Tablet Landscape\":\"mrsBovbnL\",\"Tablet Portrait\":\"Ezb0E_mrV\",Desktop:\"WQLkyLRf1\",Phone:\"LBrzMDCpd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,BT9AMyqVoY4TAWFWDM,nkqCq5tdtY4TAWFWDM,p9zea4nRjY4TAWFWDM,ZGyvILccsY4TAWFWDM,EXPXtDaenY4TAWFWDM,zvt4VBmgkY4TAWFWDM,xnodaKaotY4TAWFWDM,LJoyePgZkY4TAWFWDM,LOiuthnCFY4TAWFWDM,idY4TAWFWDM,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"Ezb0E_mrV\",\"LBrzMDCpd\"].includes(baseVariant))return false;return true;};const router=useRouter();const elementId=useRouteElementId(\"Nh7VOggtA\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-885e3888-1a13-468d-8a89-5610a31c1d4a, rgb(248, 234, 211)); } @media (max-width: 767px) { html body { background: var(--token-5c465288-5223-49df-84b2-4cb45cc97e29, rgb(5, 30, 59)) } }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"header\",{className:\"framer-1mtp6bo\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"min(100vw, 1920px)\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13nu9q6-container\",nodeId:\"AojkIahZO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LBrzMDCpd:{variant:\"StvbWKfYH\"}},children:/*#__PURE__*/_jsx(Navigation2,{height:\"100%\",id:\"AojkIahZO\",layoutId:\"AojkIahZO\",style:{width:\"100%\"},variant:\"Dgw9aHwF1\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mwlk0d\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jxci8i\",\"data-framer-name\":\"Intro\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1th25qc\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5vm7fr\",\"data-framer-name\":\"Text-Image\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fa7o3v\",\"data-framer-name\":\"Image\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ezb0E_mrV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+80+0+0+0+311.8+0+0),pixelHeight:1081,pixelWidth:1081,sizes:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,src:\"https://framerusercontent.com/images/TczBmTyJ6lTkRzrZqnQBCHrYU.png\",srcSet:\"https://framerusercontent.com/images/TczBmTyJ6lTkRzrZqnQBCHrYU.png?scale-down-to=512 512w,https://framerusercontent.com/images/TczBmTyJ6lTkRzrZqnQBCHrYU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TczBmTyJ6lTkRzrZqnQBCHrYU.png 1081w\"}},LBrzMDCpd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+80+0+0+0+0+0+0),pixelHeight:1081,pixelWidth:1081,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/TczBmTyJ6lTkRzrZqnQBCHrYU.png\",srcSet:\"https://framerusercontent.com/images/TczBmTyJ6lTkRzrZqnQBCHrYU.png?scale-down-to=512 512w,https://framerusercontent.com/images/TczBmTyJ6lTkRzrZqnQBCHrYU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TczBmTyJ6lTkRzrZqnQBCHrYU.png 1081w\"}},mrsBovbnL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+209.89224137931035+0+0+0+0+0),pixelHeight:1081,pixelWidth:1081,sizes:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 120px) / 2, 1px)`,src:\"https://framerusercontent.com/images/TczBmTyJ6lTkRzrZqnQBCHrYU.png\",srcSet:\"https://framerusercontent.com/images/TczBmTyJ6lTkRzrZqnQBCHrYU.png?scale-down-to=512 512w,https://framerusercontent.com/images/TczBmTyJ6lTkRzrZqnQBCHrYU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TczBmTyJ6lTkRzrZqnQBCHrYU.png 1081w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+209.89224137931035+0+0+0+0+0),pixelHeight:1081,pixelWidth:1081,sizes:\"560px\",src:\"https://framerusercontent.com/images/TczBmTyJ6lTkRzrZqnQBCHrYU.png\",srcSet:\"https://framerusercontent.com/images/TczBmTyJ6lTkRzrZqnQBCHrYU.png?scale-down-to=512 512w,https://framerusercontent.com/images/TczBmTyJ6lTkRzrZqnQBCHrYU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TczBmTyJ6lTkRzrZqnQBCHrYU.png 1081w\"},className:\"framer-f73tfi\",\"data-framer-name\":\"Image\",style:{rotate:-1,transformPerspective:1200}})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hrf7lt\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n2bkpt\",\"data-framer-name\":\"Heading+P\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-2n1qad\",\"data-styles-preset\":\"MdL0l4ct5\",style:{\"--framer-text-color\":\"var(--token-da5f1ac1-1c4a-4c8d-97bc-e00560821a24, rgb(53, 158, 164))\"},children:\"hi. I\u2019m Jan-Paul\"})}),className:\"framer-f50bok\",\"data-framer-name\":\"about me\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d0tii\",\"data-styles-preset\":\"xgUnScoyo\",style:{\"--framer-text-color\":\"var(--token-33ba5326-9745-4852-8706-590b89d9ccf9, rgb(250, 250, 250))\"},children:\"I design digital\\xa0products that are beautiful, functional, and drive\\xa0results.\"})}),className:\"framer-jdpavp\",\"data-framer-name\":\"My name is Jan-Paul Koudstaal. I\u2019m a freelance digital designer with over 20 years of experience. I lead design across a wide range of projects, from responsive websites and design systems to iOS and Android apps.\",effect:textEffect,fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+209.89224137931035+0+0+104.1+271.8- -99),pixelHeight:33,pixelWidth:155,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zPDjyLTYh3fYRNv9xrkdFnj2OoQ.svg\"},className:\"framer-2ab0xv hidden-1xex2io hidden-84f2mh\",\"data-framer-name\":\"arrow-right\",style:{rotate:-50}})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gbuhbv\",\"data-framer-name\":\"Clients\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-15b8li8\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gqsxq6\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-v3wle9\",\"data-framer-name\":\"Clients\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qizmmx\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LBrzMDCpd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-2n1qad\",\"data-styles-preset\":\"MdL0l4ct5\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-da5f1ac1-1c4a-4c8d-97bc-e00560821a24, rgb(53, 158, 164))\"},children:\"Selected Clients\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-2n1qad\",\"data-styles-preset\":\"MdL0l4ct5\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-da5f1ac1-1c4a-4c8d-97bc-e00560821a24, rgb(53, 158, 164))\"},children:\"Selected Clients\"})}),className:\"framer-7591y2\",\"data-framer-name\":\"Selected Clients\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ep7no2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"TrZR6msOd\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:64,height:\"100%\",hoverFactor:1,id:\"TrZR6msOd\",layoutId:\"TrZR6msOd\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-szbwtw\",\"data-framer-name\":\"hogeveluwe\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 140 22\"><g transform=\"translate(0.021 0.633)\" id=\"ss10932793536_1\"><path d=\"M 26.498 4.525 L 26.471 3.813 L 26.651 3.813 C 26.705 4.326 26.939 4.506 27.379 4.525 C 27.874 4.541 28.153 4.02 28.064 3.695 C 27.982 3.4 27.794 3.246 27.398 3.049 C 26.886 2.789 26.552 2.499 26.525 2.023 C 26.49 1.43 27.002 0.854 28.388 1.151 L 28.432 1.781 L 28.252 1.781 C 28.171 1.376 28 1.304 27.676 1.268 C 27.406 1.24 27.127 1.358 27.028 1.574 C 26.822 2.041 27.208 2.294 27.694 2.563 C 28.504 3.013 28.612 3.353 28.604 3.733 C 28.576 4.344 27.676 5.055 26.498 4.525 Z M 30.438 3.866 L 30.438 1.419 L 29.925 1.419 L 29.925 1.229 C 30.331 1.229 30.591 0.906 30.727 0.437 L 30.951 0.437 L 30.951 1.149 L 32.131 1.149 L 32.131 1.419 L 30.951 1.419 L 30.951 3.641 C 30.951 4.208 30.943 4.703 32.148 4.171 L 32.211 4.351 C 30.591 5.243 30.438 4.234 30.438 3.866 Z M 34.53 1.637 L 34.53 4.058 C 34.53 4.391 34.55 4.462 34.936 4.462 L 34.936 4.625 L 34.432 4.606 L 34.09 4.606 L 33.604 4.625 L 33.604 4.462 C 33.99 4.462 34.027 4.372 34.027 4.067 L 34.027 1.674 C 34.027 1.414 33.973 1.314 33.604 1.314 L 33.604 1.152 L 34.09 1.162 L 34.432 1.162 L 34.944 1.152 L 34.944 1.313 C 34.63 1.313 34.531 1.377 34.53 1.638 Z M 39.443 4.461 C 39.309 4.534 38.733 4.697 38.221 4.697 C 37.041 4.697 36.359 3.913 36.359 2.933 C 36.359 1.916 37.204 1.287 37.861 1.179 C 38.526 1.061 39.165 1.187 39.452 1.359 L 39.48 2.033 L 39.29 2.033 C 39.156 1.421 38.714 1.349 38.274 1.34 C 37.5 1.313 36.844 1.9 36.898 2.896 C 36.952 3.815 37.608 4.481 38.221 4.481 C 38.508 4.481 39.246 4.444 39.335 3.788 L 39.515 3.788 M 44.239 4.607 L 43.897 4.607 L 43.447 4.625 L 43.447 4.462 C 43.743 4.462 43.797 4.409 43.797 4.076 L 43.797 2.961 L 41.737 2.961 L 41.737 4.041 C 41.737 4.374 41.773 4.463 42.124 4.463 L 42.124 4.626 L 41.621 4.606 L 41.279 4.606 L 40.811 4.626 L 40.811 4.463 C 41.171 4.463 41.224 4.381 41.224 4.059 L 41.224 1.656 C 41.224 1.377 41.171 1.313 40.828 1.313 L 40.828 1.153 L 41.368 1.162 L 41.719 1.162 L 42.114 1.152 L 42.114 1.313 C 41.728 1.313 41.737 1.422 41.737 1.648 L 41.737 2.71 L 43.797 2.71 L 43.797 1.637 C 43.797 1.377 43.761 1.312 43.41 1.312 L 43.41 1.152 L 43.824 1.161 L 44.184 1.161 L 44.697 1.151 L 44.697 1.312 C 44.301 1.312 44.31 1.421 44.31 1.61 L 44.31 4.075 C 44.31 4.372 44.337 4.461 44.715 4.461 L 44.715 4.624 M 46.514 3.866 L 46.514 1.419 L 46.002 1.419 L 46.002 1.229 C 46.406 1.229 46.667 0.906 46.802 0.437 L 47.028 0.437 L 47.028 1.149 L 48.206 1.149 L 48.206 1.419 L 47.028 1.419 L 47.028 3.641 C 47.028 4.208 47.018 4.703 48.224 4.171 L 48.287 4.351 C 46.667 5.243 46.514 4.234 46.514 3.866 Z M 50.609 1.637 L 50.609 4.058 C 50.609 4.391 50.626 4.462 51.013 4.462 L 51.013 4.625 L 50.51 4.606 L 50.167 4.606 L 49.681 4.625 L 49.681 4.462 C 50.067 4.462 50.104 4.372 50.104 4.067 L 50.104 1.674 C 50.104 1.414 50.05 1.314 49.681 1.314 L 49.681 1.152 L 50.167 1.162 L 50.51 1.162 L 51.021 1.152 L 51.021 1.313 C 50.707 1.313 50.608 1.377 50.608 1.638 Z M 56.015 1.805 L 56.015 4.639 L 55.773 4.639 C 55.493 4.307 53.533 2.21 53.343 1.904 L 53.343 3.756 C 53.343 4.369 53.416 4.459 53.847 4.459 L 53.847 4.621 L 53.379 4.601 L 53.038 4.601 L 52.57 4.621 L 52.57 4.459 C 52.965 4.459 53.029 4.352 53.029 3.729 L 53.029 1.896 C 53.029 1.411 52.929 1.31 52.471 1.31 L 52.471 1.15 L 52.92 1.16 L 53.343 1.16 C 53.585 1.465 55.511 3.506 55.691 3.794 L 55.691 1.787 C 55.691 1.417 55.573 1.309 55.214 1.309 L 55.214 1.149 L 55.655 1.159 L 56.005 1.159 L 56.438 1.149 L 56.438 1.309 C 56.06 1.309 56.015 1.41 56.015 1.805 Z M 60.594 5.062 C 60.594 5.682 60.171 6.043 59.488 6.079 C 58.813 6.105 58.013 5.853 58.201 5.286 C 58.318 4.953 59.029 4.738 59.64 4.756 C 60.127 4.775 60.495 4.702 60.594 4.639 Z M 61.161 4.846 L 61.161 4.064 L 60.981 4.064 C 60.477 4.523 60.153 4.514 59.793 4.486 C 59.056 4.423 58.525 3.758 58.462 2.876 C 58.39 1.878 59.038 1.285 59.829 1.302 C 60.27 1.31 60.702 1.393 60.892 2.004 L 61.072 2.004 L 61.044 1.338 C 60.711 1.168 60.072 1.041 59.407 1.148 C 58.75 1.265 57.895 1.888 57.895 2.885 C 57.895 3.65 58.255 4.324 58.985 4.575 C 58.381 4.603 57.815 4.864 57.67 5.26 C 57.41 5.988 58.516 6.402 59.317 6.385 C 60.487 6.349 61.161 5.737 61.161 4.846 Z M 68.799 4.607 L 68.456 4.607 L 68.006 4.625 L 68.006 4.462 C 68.303 4.462 68.356 4.409 68.356 4.076 L 68.356 2.961 L 66.297 2.961 L 66.297 4.041 C 66.297 4.374 66.332 4.463 66.684 4.463 L 66.684 4.626 L 66.18 4.606 L 65.838 4.606 L 65.37 4.626 L 65.37 4.463 C 65.73 4.463 65.785 4.381 65.785 4.059 L 65.785 1.656 C 65.785 1.377 65.73 1.313 65.388 1.313 L 65.388 1.153 L 65.928 1.162 L 66.279 1.162 L 66.675 1.152 L 66.675 1.313 C 66.288 1.313 66.297 1.422 66.297 1.648 L 66.297 2.71 L 68.357 2.71 L 68.357 1.637 C 68.357 1.377 68.321 1.312 67.971 1.312 L 67.971 1.152 L 68.384 1.161 L 68.744 1.161 L 69.257 1.151 L 69.257 1.312 C 68.861 1.312 68.87 1.421 68.87 1.61 L 68.87 4.075 C 68.87 4.372 68.897 4.461 69.275 4.461 L 69.275 4.624 M 73.08 2.311 C 73.071 2.563 72.936 2.608 72.379 2.608 L 71.254 2.608 C 71.254 1.898 71.677 1.376 72.182 1.358 C 72.722 1.34 73.098 1.89 73.08 2.311 Z M 73.638 4.318 L 73.575 4.148 C 71.641 4.93 71.263 3.563 71.255 2.861 C 71.884 2.851 72.828 2.842 73.422 2.851 C 73.539 2.851 73.602 2.888 73.612 2.635 C 73.639 1.843 73.099 1.115 72.208 1.133 C 71.389 1.143 70.678 1.843 70.678 2.995 C 70.678 3.975 71.507 5.334 73.638 4.318 Z M 75.393 3.866 L 75.393 1.419 L 74.88 1.419 L 74.88 1.229 C 75.285 1.229 75.546 0.906 75.682 0.437 L 75.907 0.437 L 75.907 1.149 L 77.086 1.149 L 77.086 1.419 L 75.906 1.419 L 75.906 3.641 C 75.906 4.208 75.898 4.703 77.103 4.171 L 77.167 4.351 C 75.547 5.243 75.393 4.234 75.393 3.866 Z M 84.891 1.805 L 84.891 4.639 L 84.65 4.639 C 84.37 4.307 82.409 2.21 82.22 1.904 L 82.22 3.756 C 82.22 4.369 82.291 4.459 82.723 4.459 L 82.723 4.621 L 82.256 4.601 L 81.912 4.601 L 81.445 4.621 L 81.445 4.459 C 81.842 4.459 81.904 4.352 81.904 3.729 L 81.904 1.896 C 81.904 1.411 81.805 1.31 81.346 1.31 L 81.346 1.15 L 81.796 1.16 L 82.22 1.16 C 82.462 1.465 84.386 3.506 84.566 3.794 L 84.566 1.787 C 84.566 1.417 84.449 1.309 84.089 1.309 L 84.089 1.149 L 84.531 1.159 L 84.884 1.159 L 85.316 1.149 L 85.316 1.309 C 84.936 1.309 84.891 1.41 84.891 1.805 Z M 88.787 4.007 C 87.609 4.779 87.312 4.131 87.32 3.753 C 87.329 3.295 87.85 2.988 88.787 2.98 L 88.787 4.006 Z M 90.01 4.365 L 89.911 4.239 C 89.816 4.322 89.701 4.378 89.577 4.401 C 89.308 4.454 89.318 4.167 89.318 3.842 L 89.318 1.9 C 89.318 1.378 89.003 1.107 88.48 1.117 C 87.888 1.127 87.291 1.433 87.042 1.765 C 86.924 1.927 86.842 2.251 87.069 2.251 C 87.141 2.251 87.427 2.171 87.427 2.062 C 87.427 1.712 87.77 1.362 88.319 1.362 C 88.676 1.362 88.777 1.558 88.777 2.07 L 88.777 2.736 C 87.454 2.736 86.798 3.285 86.752 3.851 C 86.698 4.381 87.319 5.291 88.796 4.248 C 88.796 4.554 89.054 4.707 89.346 4.707 C 89.605 4.707 89.794 4.544 90.01 4.365 Z M 91.639 3.866 L 91.639 1.419 L 91.126 1.419 L 91.126 1.229 C 91.531 1.229 91.792 0.906 91.927 0.437 L 92.151 0.437 L 92.151 1.149 L 93.331 1.149 L 93.331 1.419 L 92.151 1.419 L 92.151 3.641 C 92.151 4.208 92.141 4.703 93.349 4.171 L 93.412 4.351 C 91.792 5.243 91.638 4.234 91.638 3.866 Z M 95.733 1.637 L 95.733 4.058 C 95.733 4.391 95.749 4.462 96.136 4.462 L 96.136 4.625 L 95.633 4.606 L 95.291 4.606 L 94.806 4.625 L 94.806 4.462 C 95.192 4.462 95.229 4.372 95.229 4.067 L 95.229 1.674 C 95.229 1.414 95.174 1.314 94.806 1.314 L 94.806 1.152 L 95.291 1.162 L 95.633 1.162 L 96.146 1.152 L 96.146 1.313 C 95.831 1.313 95.733 1.377 95.733 1.638 Z M 100.6 2.717 C 100.716 3.599 100.266 4.381 99.592 4.471 C 98.908 4.561 98.268 3.922 98.162 3.041 C 98.045 2.159 98.496 1.385 99.168 1.296 C 99.853 1.206 100.492 1.844 100.6 2.717 Z M 101.201 2.879 C 101.202 2.396 101.01 1.932 100.668 1.591 C 100.325 1.249 99.86 1.059 99.377 1.062 C 98.369 1.062 97.559 1.872 97.559 2.879 C 97.559 3.885 98.374 4.7 99.38 4.7 C 100.386 4.7 101.201 3.885 101.201 2.879 Z M 106.159 1.805 L 106.159 4.639 L 105.916 4.639 C 105.637 4.307 103.675 2.21 103.486 1.904 L 103.486 3.756 C 103.486 4.369 103.559 4.459 103.991 4.459 L 103.991 4.621 L 103.522 4.601 L 103.181 4.601 L 102.713 4.621 L 102.713 4.459 C 103.109 4.459 103.172 4.352 103.172 3.729 L 103.172 1.896 C 103.172 1.411 103.074 1.31 102.614 1.31 L 102.614 1.15 L 103.063 1.16 L 103.486 1.16 C 103.731 1.465 105.656 3.506 105.834 3.794 L 105.834 1.787 C 105.834 1.417 105.716 1.309 105.356 1.309 L 105.356 1.149 L 105.799 1.159 L 106.15 1.159 L 106.581 1.149 L 106.581 1.309 C 106.204 1.309 106.159 1.41 106.159 1.805 Z M 110.054 4.007 C 108.877 4.779 108.58 4.131 108.589 3.753 C 108.597 3.295 109.118 2.988 110.054 2.98 L 110.054 4.006 Z M 111.278 4.365 L 111.178 4.239 C 111.084 4.322 110.969 4.378 110.846 4.401 C 110.576 4.454 110.585 4.167 110.585 3.842 L 110.585 1.9 C 110.585 1.378 110.27 1.107 109.748 1.117 C 109.155 1.127 108.562 1.433 108.308 1.765 C 108.192 1.927 108.111 2.251 108.333 2.251 C 108.406 2.251 108.696 2.171 108.696 2.062 C 108.696 1.712 109.038 1.362 109.586 1.362 C 109.946 1.362 110.044 1.558 110.044 2.07 L 110.044 2.736 C 108.722 2.736 108.066 3.285 108.019 3.851 C 107.966 4.381 108.587 5.291 110.062 4.248 C 110.062 4.554 110.322 4.707 110.611 4.707 C 110.872 4.707 111.061 4.544 111.278 4.365 Z M 114.965 4.624 L 114.264 4.606 L 113.148 4.606 L 112.546 4.624 L 112.546 4.462 C 112.969 4.462 112.995 4.363 112.995 4.039 L 112.995 0.675 C 112.995 0.288 112.961 0.161 112.618 0.161 L 112.618 0 L 113.094 0.01 L 113.445 0.01 L 113.967 0 L 113.967 0.161 C 113.635 0.161 113.534 0.225 113.534 0.631 L 113.534 3.921 C 113.534 4.363 113.697 4.426 114.13 4.426 C 114.581 4.434 114.885 4.363 115.004 3.833 L 115.148 3.868 M 118.69 2.311 C 118.681 2.563 118.546 2.608 117.988 2.608 L 116.863 2.608 C 116.863 1.898 117.286 1.376 117.79 1.358 C 118.33 1.34 118.708 1.89 118.69 2.311 Z M 119.248 4.318 L 119.184 4.148 C 117.251 4.93 116.875 3.563 116.864 2.861 C 117.494 2.851 118.439 2.842 119.033 2.851 C 119.15 2.851 119.213 2.888 119.223 2.635 C 119.248 1.843 118.709 1.115 117.818 1.133 C 116.999 1.143 116.289 1.843 116.289 2.995 C 116.287 3.975 117.116 5.334 119.248 4.318 Z M 125.015 3.446 C 124.88 3.463 124.807 3.473 124.6 3.436 L 124.6 3.276 C 125.186 3.302 125.518 2.862 125.509 2.295 C 125.509 1.79 125.086 1.259 124.384 1.341 L 124.384 5.047 C 124.384 5.451 124.419 5.577 124.86 5.577 L 124.86 5.747 L 124.311 5.73 L 123.953 5.73 L 123.404 5.748 L 123.404 5.577 C 123.826 5.577 123.864 5.496 123.864 5.047 L 123.864 1.727 C 123.864 1.386 123.835 1.314 123.432 1.314 L 123.432 1.152 L 123.907 1.162 L 124.437 1.152 C 125.509 1.144 125.993 1.602 126.056 2.242 C 126.112 2.78 125.599 3.402 125.015 3.446 Z M 129.541 4.007 C 128.36 4.779 128.064 4.131 128.073 3.753 C 128.082 3.295 128.604 2.988 129.541 2.98 L 129.541 4.006 Z M 130.763 4.365 L 130.664 4.239 C 130.57 4.322 130.455 4.378 130.331 4.401 C 130.063 4.454 130.07 4.167 130.07 3.842 L 130.07 1.9 C 130.07 1.378 129.755 1.107 129.234 1.117 C 128.642 1.127 128.046 1.433 127.795 1.765 C 127.677 1.927 127.597 2.251 127.821 2.251 C 127.894 2.251 128.183 2.171 128.183 2.062 C 128.183 1.712 128.523 1.362 129.072 1.362 C 129.432 1.362 129.531 1.558 129.531 2.07 L 129.531 2.736 C 128.208 2.736 127.552 3.285 127.508 3.851 C 127.454 4.381 128.073 5.291 129.551 4.248 C 129.551 4.554 129.81 4.707 130.099 4.707 C 130.358 4.707 130.547 4.544 130.763 4.365 Z M 134.128 2.152 C 134.155 2.665 133.832 2.989 132.941 2.962 L 132.941 1.362 C 133.66 1.242 134.1 1.55 134.128 2.152 Z M 135.478 4.627 L 135.478 4.464 C 134.883 4.392 134.442 3.654 133.948 3.061 C 134.227 2.926 134.632 2.683 134.613 2.144 C 134.596 1.397 134.029 1.099 133.021 1.145 L 132.554 1.163 L 132.034 1.153 L 132.034 1.314 C 132.329 1.314 132.437 1.361 132.437 1.756 L 132.437 4.068 C 132.437 4.41 132.401 4.464 132.034 4.464 L 132.034 4.626 L 132.484 4.607 L 132.842 4.607 L 133.436 4.627 L 133.436 4.464 C 132.995 4.464 132.942 4.401 132.942 4.041 L 132.942 3.205 C 133.112 3.214 133.311 3.195 133.436 3.177 C 133.725 3.475 134.318 4.671 135.227 4.635 Z M 139.713 4.641 C 138.742 4.696 137.708 3.22 137.429 2.87 L 137.429 4.03 C 137.429 4.399 137.473 4.462 137.825 4.462 L 137.825 4.624 L 137.374 4.606 L 137.024 4.606 L 136.564 4.624 L 136.564 4.462 C 136.86 4.462 136.906 4.417 136.906 4.138 L 136.906 0.548 C 136.906 0.233 136.942 0.162 136.564 0.162 L 136.564 0 L 137.032 0.01 L 137.383 0.01 L 137.806 0 L 137.806 0.162 C 137.464 0.162 137.428 0.225 137.428 0.584 L 137.428 2.754 C 137.868 2.382 138.294 1.994 138.706 1.592 C 138.905 1.404 138.923 1.312 138.58 1.312 L 138.58 1.152 L 139.021 1.162 L 139.373 1.162 L 139.714 1.152 L 139.705 1.312 C 139.508 1.312 139.345 1.36 139.003 1.674 L 137.914 2.689 C 139.02 4.112 139.605 4.434 139.957 4.463 L 139.957 4.625 M 32.932 13.445 C 32.952 15.57 31.322 16.741 29.932 16.741 C 28.919 16.741 28.482 16.601 28.482 15.709 L 28.482 10.009 C 29.059 9.969 29.297 9.969 29.734 9.969 C 31.621 9.969 32.892 11.379 32.932 13.445 Z M 34.142 13.047 C 33.845 10.367 31.76 9.492 29.774 9.512 L 28.006 9.532 L 26.457 9.512 L 26.457 9.87 C 27.152 9.87 27.371 9.91 27.371 10.565 L 27.371 15.887 C 27.371 16.601 27.291 16.82 26.458 16.82 L 26.458 17.177 L 28.184 17.137 L 30.032 17.177 C 32.276 17.218 34.46 15.629 34.142 13.047 Z M 40.955 12.074 C 40.935 12.631 40.637 12.73 39.405 12.73 L 36.923 12.73 C 36.923 11.16 37.857 10.01 38.969 9.97 C 40.16 9.93 40.995 11.14 40.955 12.074 Z M 42.187 16.502 L 42.047 16.125 C 37.777 17.855 36.943 14.835 36.923 13.286 C 38.313 13.266 40.398 13.247 41.709 13.266 C 41.968 13.266 42.107 13.346 42.127 12.789 C 42.187 11.042 40.994 9.433 39.029 9.473 C 37.221 9.493 35.652 11.042 35.652 13.583 C 35.652 15.75 37.479 18.747 42.187 16.503 Z M 55.851 17.138 L 55.096 17.138 L 54.103 17.178 L 54.103 16.821 C 54.758 16.821 54.877 16.701 54.877 15.966 L 54.877 13.503 L 50.329 13.503 L 50.329 15.887 C 50.329 16.621 50.409 16.821 51.184 16.821 L 51.184 17.178 L 50.071 17.138 L 49.316 17.138 L 48.284 17.178 L 48.284 16.821 C 49.078 16.821 49.197 16.641 49.197 15.928 L 49.197 10.624 C 49.197 10.009 49.078 9.869 48.323 9.869 L 48.323 9.512 L 49.515 9.532 L 50.289 9.532 L 51.163 9.512 L 51.163 9.869 C 50.309 9.869 50.329 10.107 50.329 10.604 L 50.329 12.947 L 54.877 12.947 L 54.877 10.584 C 54.877 10.009 54.797 9.869 54.023 9.869 L 54.023 9.512 L 54.937 9.532 L 55.731 9.532 L 56.863 9.512 L 56.863 9.869 C 55.989 9.869 56.009 10.107 56.009 10.525 L 56.009 15.966 C 56.009 16.622 56.069 16.82 56.903 16.82 L 56.903 17.177 M 65.145 12.969 C 65.403 14.915 64.41 16.643 62.92 16.842 C 61.411 17.04 60.001 15.631 59.763 13.685 C 59.505 11.737 60.498 10.031 61.987 9.831 C 63.497 9.633 64.907 11.043 65.145 12.969 Z M 66.475 13.328 C 66.477 12.26 66.052 11.235 65.295 10.482 C 64.538 9.728 63.511 9.309 62.443 9.316 C 61.378 9.313 60.357 9.735 59.604 10.488 C 58.851 11.241 58.43 12.263 58.433 13.328 C 58.433 15.551 60.219 17.358 62.443 17.358 C 63.513 17.361 64.54 16.937 65.296 16.181 C 66.053 15.424 66.477 14.398 66.475 13.328 Z M 74.061 18.151 C 74.061 19.523 73.127 20.315 71.618 20.396 C 70.128 20.456 68.362 19.899 68.778 18.648 C 69.036 17.914 70.606 17.436 71.956 17.476 C 73.029 17.516 73.843 17.356 74.061 17.218 Z M 75.311 17.675 L 75.311 15.947 L 74.915 15.947 C 73.803 16.959 73.088 16.939 72.295 16.881 C 70.666 16.74 69.494 15.271 69.355 13.326 C 69.195 11.121 70.625 9.811 72.373 9.851 C 73.347 9.871 74.299 10.049 74.717 11.4 L 75.113 11.4 L 75.053 9.93 C 74.319 9.553 72.909 9.275 71.44 9.513 C 69.99 9.772 68.102 11.141 68.102 13.346 C 68.102 15.034 68.897 16.522 70.505 17.081 C 69.175 17.14 67.925 17.716 67.606 18.591 C 67.03 20.198 69.472 21.111 71.24 21.073 C 73.824 20.99 75.312 19.64 75.312 17.673 Z M 82.106 12.074 C 82.086 12.631 81.789 12.73 80.556 12.73 L 78.074 12.73 C 78.074 11.16 79.007 10.01 80.119 9.97 C 81.311 9.93 82.147 11.14 82.106 12.074 Z M 83.338 16.502 L 83.197 16.125 C 78.927 17.855 78.094 14.835 78.073 13.286 C 79.463 13.266 81.549 13.247 82.859 13.266 C 83.117 13.266 83.256 13.346 83.277 12.789 C 83.336 11.042 82.145 9.433 80.18 9.473 C 78.372 9.493 76.802 11.042 76.802 13.583 C 76.804 15.75 78.631 18.747 83.338 16.503 Z M 95.352 10.902 L 92.869 17.298 L 92.233 17.298 L 89.749 10.783 C 89.531 10.186 89.332 9.869 88.639 9.869 L 88.639 9.512 L 89.769 9.532 L 90.425 9.532 L 91.517 9.512 L 91.517 9.869 C 90.862 9.869 90.625 9.949 90.862 10.624 L 92.748 15.848 L 94.695 10.683 C 94.934 10.049 94.855 9.869 94.199 9.869 L 94.199 9.512 L 94.815 9.512 L 95.588 9.532 L 96.283 9.512 L 96.283 9.869 C 95.81 9.869 95.669 10.128 95.353 10.902 Z M 102.342 12.074 C 102.323 12.631 102.023 12.73 100.792 12.73 L 98.31 12.73 C 98.31 11.16 99.244 10.01 100.356 9.97 C 101.548 9.93 102.382 11.14 102.342 12.074 Z M 103.574 16.502 L 103.434 16.125 C 99.162 17.855 98.331 14.835 98.309 13.286 C 99.699 13.266 101.785 13.247 103.096 13.266 C 103.353 13.266 103.493 13.346 103.512 12.789 C 103.573 11.042 102.38 9.433 100.415 9.473 C 98.608 9.493 97.038 11.042 97.038 13.583 C 97.039 15.75 98.866 18.747 103.574 16.503 Z M 110.427 17.176 L 108.876 17.136 L 106.414 17.136 L 105.083 17.176 L 105.083 16.819 C 106.016 16.819 106.077 16.6 106.077 15.885 L 106.077 8.458 C 106.077 7.604 105.997 7.326 105.243 7.326 L 105.243 6.969 L 106.296 6.987 L 107.068 6.987 L 108.22 6.969 L 108.22 7.326 C 107.486 7.326 107.269 7.466 107.269 8.359 L 107.269 15.628 C 107.269 16.6 107.625 16.739 108.579 16.739 C 109.572 16.759 110.246 16.6 110.505 15.429 L 110.821 15.509 M 118.705 10.923 L 118.705 14.258 C 118.705 16.483 117.356 17.398 115.648 17.398 C 113.921 17.378 112.61 16.602 112.61 14.497 L 112.61 10.783 C 112.61 10.147 112.69 9.87 111.855 9.87 L 111.855 9.512 L 112.968 9.532 L 113.743 9.532 L 114.556 9.512 L 114.556 9.87 C 113.86 9.87 113.762 10.029 113.762 10.684 L 113.762 14.674 C 113.762 16.024 114.496 16.76 115.827 16.76 C 117.157 16.76 117.953 15.707 117.953 14.635 L 117.953 10.882 C 117.953 9.93 117.871 9.869 117.04 9.869 L 117.04 9.512 L 118.05 9.532 L 118.806 9.532 L 119.459 9.512 L 119.459 9.869 C 118.886 9.869 118.705 9.949 118.705 10.923 Z M 132.001 10.765 L 129.459 17.299 L 128.862 17.299 L 126.777 11.857 L 124.712 17.299 L 124.076 17.299 L 121.593 10.783 C 121.374 10.187 121.235 9.87 120.501 9.87 L 120.48 9.512 L 121.612 9.532 L 122.268 9.532 L 123.361 9.512 L 123.361 9.87 C 122.705 9.87 122.467 9.95 122.705 10.624 L 124.612 15.827 L 126.043 12.033 C 126.598 10.486 126.202 9.869 125.269 9.869 L 125.249 9.512 L 126.44 9.532 L 127.432 9.532 L 128.288 9.512 L 128.288 9.869 C 127.691 9.869 127.312 10.127 127.531 10.724 L 129.361 15.848 L 131.287 10.724 C 131.506 10.107 131.525 9.869 130.611 9.869 L 130.611 9.512 L 131.584 9.532 L 132.201 9.532 L 132.896 9.512 L 132.896 9.869 C 132.418 9.87 132.32 9.969 132.001 10.765 Z M 138.725 12.074 C 138.707 12.631 138.409 12.73 137.177 12.73 L 134.693 12.73 C 134.693 11.16 135.628 10.01 136.739 9.97 C 137.932 9.93 138.765 11.14 138.725 12.074 Z M 139.956 16.502 L 139.818 16.125 C 135.547 17.855 134.713 14.835 134.693 13.286 C 136.083 13.266 138.17 13.247 139.479 13.266 C 139.737 13.266 139.877 13.346 139.897 12.789 C 139.956 11.042 138.765 9.433 136.798 9.473 C 134.992 9.493 133.424 11.042 133.424 13.583 C 133.424 15.75 135.25 18.747 139.956 16.503 Z M 8.327 13.789 L 5.767 13.789 L 5.767 15.265 L 10.86 15.265 L 10.86 13.789 Z M 12.547 6.597 L 10.137 6.597 L 10.137 6.809 L 9.741 6.809 L 9.741 5.711 L 6.886 5.711 L 6.886 6.809 L 6.49 6.809 L 6.49 6.597 L 4.081 6.597 L 2.208 9.787 L 2.208 11.303 L 3.461 11.303 L 3.461 12.823 L 5.766 12.823 L 5.766 13.265 L 6.49 13.265 L 6.49 10.58 L 4.298 10.58 L 5.158 9.115 L 5.158 10.229 L 6.887 10.229 L 6.887 12.919 L 9.741 12.919 L 9.741 10.229 L 11.468 10.229 L 11.468 9.115 L 12.328 10.579 L 10.137 10.579 L 10.137 13.263 L 10.86 13.263 L 10.86 12.822 L 13.166 12.822 L 13.166 11.302 L 14.421 11.302 L 14.421 9.786 Z M 5.766 11.301 L 5.766 12.097 L 4.185 12.097 L 4.185 11.301 Z M 5.158 8.287 L 4.805 8.287 L 3.459 10.578 L 2.932 10.578 L 2.932 9.983 L 4.496 7.321 L 5.159 7.321 L 5.159 8.286 Z M 11.288 8.287 L 10.138 8.287 L 10.138 9.493 L 10.861 9.493 L 10.861 9.011 L 11.29 9.011 L 11.29 10.047 L 9.561 10.047 L 9.561 12.737 L 7.069 12.737 L 7.069 10.047 L 5.34 10.047 L 5.34 9.01 L 5.766 9.01 L 5.766 9.492 L 6.49 9.492 L 6.49 8.287 L 5.34 8.287 L 5.34 7.322 L 5.767 7.322 L 5.767 7.804 L 6.491 7.804 L 6.491 6.99 L 7.069 6.99 L 7.069 5.891 L 9.563 5.891 L 9.563 6.989 L 10.139 6.989 L 10.139 7.803 L 10.862 7.803 L 10.862 7.321 L 11.29 7.321 L 11.29 8.286 L 11.288 8.286 Z M 12.443 12.098 L 10.861 12.098 L 10.861 11.302 L 12.443 11.302 Z M 13.696 10.579 L 13.169 10.579 L 11.822 8.287 L 11.469 8.287 L 11.469 7.322 L 12.132 7.322 C 12.312 7.627 13.607 9.835 13.696 9.984 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgb(32, 18, 113)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path><path d=\"M 8.387 2.148 C 3.762 2.148 0 5.911 0 10.537 C 0 15.16 3.762 18.923 8.387 18.923 C 13.012 18.923 16.773 15.16 16.773 10.537 C 16.773 5.912 13.012 2.149 8.387 2.149 Z M 8.387 18.421 C 4.038 18.421 0.5 14.884 0.5 10.536 C 0.5 6.186 4.039 2.649 8.387 2.649 C 12.735 2.649 16.272 6.186 16.272 10.536 C 16.272 14.885 12.735 18.421 8.387 18.421 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgb(32, 18, 113)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></g></svg>',svgContentId:10932793536,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1k4fq06\",\"data-framer-name\":\"hartstichting\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 142 43\"><path d=\"M 17.714 34.171 C 17.628 34.578 17.406 34.943 17.084 35.206 C 16.424 35.744 15.477 35.744 14.817 35.206 C 14.495 34.943 14.273 34.578 14.187 34.171 L 13.787 23.684 L 18.114 23.684 Z M 16.782 18.183 C 18.185 18.183 19.557 18.284 20.89 18.426 L 21.47 21.46 C 17.8 21.151 14.11 21.151 10.44 21.46 L 11.01 18.426 C 12.379 18.282 13.753 18.201 15.129 18.183 C 14.349 17.121 13.332 16.255 12.16 15.653 C 10.992 15.053 9.699 14.735 8.386 14.724 C 7.298 14.709 6.217 14.911 5.208 15.318 C 4.196 15.726 3.275 16.33 2.498 17.096 C 1.718 17.864 1.097 18.778 0.669 19.786 C 0.24 20.795 0.013 21.879 0 22.975 C 0 30.653 8.015 36.862 15.95 43 C 23.875 36.861 31.91 30.652 31.91 22.977 C 31.881 21.546 31.49 20.146 30.775 18.907 C 30.062 17.672 29.047 16.639 27.825 15.905 C 25.349 14.419 22.278 14.328 19.718 15.665 C 24.316 7.332 11.332 5.714 13.706 0 C 12.943 0.389 12.272 0.936 11.738 1.605 C 10.083 3.685 9.96 6.595 11.432 8.808 C 10.902 8.606 10.422 8.293 10.022 7.891 C 9.621 7.488 9.309 7.004 9.107 6.472 C 7.464 11.902 12.654 11.306 13.115 14.492 C 15.119 13.4 13.555 10.811 13.555 10.811 C 16.702 12.176 18.795 14.856 16.722 18.183 M 56.247 31.707 L 56.247 32.233 L 58.481 32.233 L 58.481 24.143 L 56.247 24.143 L 56.247 24.699 C 55.537 24.211 54.693 23.957 53.832 23.97 C 52.755 23.937 51.715 24.368 50.977 25.154 C 50.208 25.977 49.781 27.062 49.782 28.188 C 49.781 29.314 50.209 30.398 50.977 31.221 C 51.708 32.022 52.748 32.471 53.832 32.455 C 54.692 32.464 55.535 32.21 56.247 31.727 M 56.247 29.553 C 55.787 30.201 55.037 30.579 54.243 30.564 C 53.64 30.576 53.062 30.325 52.66 29.876 C 51.832 28.918 51.832 27.497 52.66 26.539 C 53.053 26.075 53.635 25.815 54.243 25.831 C 55.038 25.814 55.789 26.193 56.247 26.842 L 56.247 29.552 Z M 62.59 27.335 C 63.342 26.545 64.385 26.099 65.476 26.101 L 65.476 23.957 C 64.394 23.955 63.355 24.384 62.59 25.15 L 62.59 24.14 L 60.355 24.14 L 60.355 32.23 L 62.59 32.23 Z M 66.677 21.5 L 66.677 29.014 C 66.581 29.924 66.881 30.831 67.499 31.506 C 68.116 32.175 68.994 32.542 69.903 32.513 C 70.628 32.5 71.347 32.381 72.037 32.159 L 71.747 30.207 C 71.314 30.333 70.865 30.401 70.414 30.41 C 69.412 30.41 68.891 29.924 68.891 28.963 L 68.891 25.93 L 71.446 25.93 L 71.446 24.14 L 68.89 24.14 L 68.89 21.5 L 66.676 21.5 Z M 72.969 29.54 C 72.985 30.429 73.415 31.259 74.131 31.786 C 74.915 32.296 75.835 32.55 76.766 32.514 C 79.01 32.514 80.403 31.503 80.403 29.784 C 80.403 28.469 79.591 27.67 77.978 27.407 L 76.486 27.174 C 75.624 27.033 75.484 26.628 75.484 26.314 C 75.484 25.839 75.984 25.536 76.776 25.536 C 77.568 25.536 78.269 25.89 78.349 26.547 L 80.353 26.547 C 80.328 26.101 80.19 25.668 79.951 25.29 C 79.713 24.914 79.383 24.605 78.991 24.393 C 78.292 24.04 77.519 23.859 76.736 23.867 C 74.622 23.867 73.249 24.879 73.249 26.537 C 73.249 27.811 74.091 28.661 75.614 28.924 L 77.367 29.217 C 78.099 29.339 78.249 29.703 78.249 29.986 C 78.249 30.461 77.678 30.774 76.786 30.774 C 75.894 30.774 75.153 30.36 75.003 29.541 L 72.969 29.541 Z M 81.836 21.5 L 81.836 29.014 C 81.741 29.924 82.04 30.832 82.659 31.506 C 83.274 32.177 84.152 32.545 85.062 32.513 C 85.787 32.501 86.506 32.382 87.196 32.159 L 86.906 30.238 C 86.473 30.364 86.024 30.432 85.573 30.44 C 84.571 30.44 84.06 29.954 84.06 28.994 L 84.06 25.96 L 86.605 25.96 L 86.605 24.14 L 84.06 24.14 L 84.06 21.5 Z M 91.024 24.09 L 88.779 24.09 L 88.779 32.25 L 91.024 32.25 Z M 89.901 19.742 C 89.642 19.75 89.392 19.834 89.181 19.984 C 88.746 20.292 88.536 20.829 88.647 21.35 C 88.7 21.606 88.827 21.84 89.01 22.024 C 89.384 22.398 89.946 22.512 90.436 22.314 C 90.676 22.217 90.882 22.051 91.029 21.836 C 91.176 21.622 91.258 21.368 91.264 21.107 C 91.266 20.747 91.125 20.401 90.87 20.146 C 90.616 19.893 90.27 19.755 89.911 19.762 M 121.661 24.09 L 119.417 24.09 L 119.417 32.25 L 121.661 32.25 Z M 120.539 19.742 C 120.009 19.758 119.538 20.087 119.342 20.58 C 119.147 21.076 119.261 21.64 119.634 22.02 C 120.007 22.396 120.57 22.513 121.062 22.316 C 121.554 22.114 121.879 21.64 121.892 21.108 C 121.897 20.747 121.756 20.399 121.501 20.143 C 121.246 19.89 120.898 19.753 120.539 19.763 M 96.875 23.916 C 95.718 23.885 94.598 24.331 93.779 25.149 C 92.959 25.942 92.508 27.042 92.537 28.183 C 92.519 29.321 92.968 30.418 93.779 31.217 C 94.609 32.015 95.724 32.448 96.875 32.42 C 97.875 32.447 98.851 32.117 99.63 31.49 C 100.352 30.898 100.818 30.051 100.933 29.124 L 98.688 29.124 C 98.583 29.518 98.344 29.863 98.012 30.1 C 97.682 30.336 97.28 30.448 96.875 30.418 C 96.29 30.431 95.726 30.196 95.323 29.772 C 94.917 29.346 94.706 28.771 94.741 28.183 C 94.705 27.59 94.914 27.009 95.318 26.574 C 95.721 26.143 96.285 25.898 96.875 25.898 C 97.283 25.87 97.687 25.988 98.018 26.23 C 98.349 26.472 98.586 26.823 98.688 27.222 L 100.933 27.222 C 100.822 26.3 100.354 25.458 99.63 24.876 C 98.857 24.236 97.879 23.895 96.875 23.916 Z M 104.819 26.96 C 105.246 26.326 105.941 25.924 106.703 25.868 C 107.875 25.868 108.546 26.637 108.546 27.972 L 108.546 32.229 L 110.791 32.229 L 110.791 27.769 C 110.841 26.718 110.482 25.689 109.789 24.897 C 109.127 24.202 108.193 23.833 107.234 23.887 C 106.335 23.884 105.467 24.215 104.799 24.817 L 104.799 20.094 L 102.585 20.094 L 102.585 32.229 L 104.819 32.229 L 104.819 26.961 Z M 125.98 26.963 C 126.407 26.329 127.101 25.927 127.863 25.871 C 129.035 25.871 129.707 26.639 129.707 27.974 L 129.707 32.232 L 131.951 32.232 L 131.951 27.772 C 132.001 26.721 131.642 25.692 130.949 24.9 C 130.289 24.202 129.353 23.832 128.394 23.889 C 127.495 23.886 126.628 24.217 125.96 24.819 L 125.96 24.141 L 123.725 24.141 L 123.725 32.231 L 125.96 32.231 Z M 112.474 21.5 L 112.474 29.014 C 112.381 29.923 112.682 30.829 113.3 31.502 C 113.915 32.172 114.791 32.541 115.7 32.512 C 116.425 32.501 117.144 32.382 117.834 32.159 L 117.554 30.238 C 117.12 30.364 116.672 30.431 116.221 30.44 C 115.219 30.44 114.698 29.954 114.698 28.994 L 114.698 25.96 L 117.253 25.96 L 117.253 24.14 L 114.698 24.14 L 114.698 21.5 Z M 139.776 31.216 L 139.776 32.227 C 139.826 32.781 139.634 33.329 139.249 33.731 C 138.864 34.128 138.324 34.337 137.772 34.301 C 137.319 34.364 136.859 34.25 136.488 33.983 C 136.115 33.715 135.858 33.315 135.768 32.865 L 133.504 32.865 C 133.585 33.827 134.06 34.712 134.816 35.312 C 135.644 35.993 136.69 36.353 137.762 36.323 C 138.872 36.366 139.953 35.966 140.768 35.211 C 141.595 34.444 142.046 33.354 142 32.227 L 142 24.137 L 139.776 24.137 L 139.776 24.532 C 139.063 24.053 138.22 23.803 137.361 23.814 C 136.284 23.789 135.246 24.213 134.496 24.986 C 133.702 25.791 133.277 26.89 133.323 28.02 C 133.316 29.074 133.744 30.083 134.506 30.811 C 135.265 31.551 136.291 31.953 137.351 31.924 C 138.212 31.938 139.056 31.684 139.766 31.196 M 139.766 28.981 C 139.33 29.661 138.57 30.064 137.762 30.043 C 137.173 30.058 136.605 29.823 136.199 29.396 C 135.803 29.013 135.573 28.49 135.558 27.939 C 135.524 27.335 135.743 26.744 136.162 26.308 C 136.58 25.875 137.161 25.638 137.762 25.654 C 138.559 25.625 139.315 26.007 139.766 26.665 Z M 45.987 32.25 L 48.332 32.25 L 48.332 21.5 L 45.987 21.5 L 45.987 25.778 L 41.46 25.778 L 41.46 21.5 L 39.115 21.5 L 39.115 32.25 L 41.46 32.25 L 41.46 27.922 L 45.988 27.922 L 45.988 32.25 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></svg>',svgContentId:11774914849,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ho1n9k\",\"data-framer-name\":\"unicef\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 124 30\"><path d=\"M 112.97 20.315 C 111.437 19.474 111.407 18.31 111.489 17.881 C 111.571 17.445 111.87 17.636 112.06 17.636 C 113.066 17.636 114.125 17.338 115.429 16.006 C 116.9 14.504 117.363 11.169 115.101 8.994 C 112.666 6.65 110.075 7.06 108.404 9.167 C 108.062 9.599 107.226 9.915 106.503 9.891 C 105.432 9.85 106.107 10.694 106.107 10.868 C 106.107 11.046 105.944 11.168 105.849 11.142 C 105.485 11.037 105.632 11.576 105.632 11.739 C 105.63 11.868 105.53 11.974 105.402 11.984 C 104.952 11.984 105.075 12.389 105.089 12.501 C 105.102 12.608 105.062 12.796 104.912 12.88 C 104.768 12.961 104.6 13.315 104.6 13.587 C 104.6 14.077 105.048 14.415 105.797 14.974 C 106.542 15.531 106.638 16.06 106.651 16.442 C 106.666 16.821 106.7 17.435 106.871 17.842 C 107.072 18.329 107.046 19.227 106.013 19.267 C 104.75 19.318 102.508 20.327 102.318 20.395 C 101.606 20.648 100.664 20.74 99.929 20.555 C 99.533 20.275 99.156 19.969 98.799 19.64 C 98.652 19.132 98.908 18.587 99.166 18.22 C 99.586 18.642 100.213 18.614 100.564 18.626 C 100.917 18.642 102.642 18.37 102.887 18.289 C 103.133 18.207 103.24 18.234 103.39 18.289 C 104.048 18.527 104.953 18.599 105.319 17.338 C 105.687 16.074 104.818 16.427 104.709 16.481 C 104.6 16.537 104.449 16.522 104.504 16.415 C 104.666 16.093 104.424 16.126 104.287 16.114 C 103.935 16.079 103.473 16.454 103.323 16.589 C 103.173 16.726 103.024 16.712 102.969 16.685 C 102.501 16.452 101.106 16.789 100.672 16.032 C 100.713 15.83 100.318 12.758 100.117 12.229 C 100.047 12.064 100.067 11.874 100.17 11.727 C 100.524 11.194 101.501 11.766 102.032 11.753 C 102.667 11.735 102.768 11.471 102.943 11.257 C 103.109 11.049 103.232 11.166 103.323 11.108 C 103.439 11.033 103.329 10.883 103.37 10.802 C 103.412 10.721 103.46 10.761 103.566 10.666 C 103.676 10.569 103.551 10.367 103.607 10.286 C 103.764 10.05 104.191 10.238 103.935 9.622 C 103.794 9.282 103.989 8.913 104.179 8.669 C 104.487 8.272 105.676 6.599 103.581 4.864 C 101.583 3.208 99.558 3.341 98.254 4.754 C 96.951 6.167 97.602 8.234 97.738 8.777 C 97.874 9.321 97.482 9.814 97.031 10.027 C 96.674 10.197 95.86 10.739 95.245 11.275 C 95.33 6.856 98.055 2.918 102.161 1.281 C 102.336 1.501 102.533 1.708 102.745 1.904 C 102.284 2.24 101.281 3.136 101.281 3.136 C 101.457 3.194 101.638 3.238 101.822 3.266 C 101.822 3.266 102.705 2.515 103.119 2.216 C 103.442 2.461 103.795 2.666 104.169 2.83 C 103.968 3.17 103.466 4.116 103.466 4.116 C 103.466 4.116 103.582 4.186 103.685 4.255 C 103.791 4.325 103.856 4.386 103.856 4.386 C 103.856 4.386 104.406 3.351 104.613 3.006 C 105.075 3.16 105.557 3.249 106.044 3.27 L 106.044 5.166 C 105.628 5.155 105.211 5.133 104.796 5.101 L 104.619 5.084 L 104.718 5.231 C 104.793 5.341 104.851 5.449 104.902 5.548 L 104.922 5.588 L 104.968 5.592 C 105.173 5.609 105.808 5.632 106.044 5.638 L 106.044 9.088 L 106.523 9.088 L 106.523 8.298 C 107.188 8.264 107.851 8.216 108.514 8.155 L 108.545 8.152 L 109.164 7.604 L 108.827 7.634 C 108.081 7.731 107.426 7.776 106.832 7.809 L 106.523 7.827 L 106.523 5.637 C 107.395 5.618 108.262 5.497 109.105 5.275 C 109.337 5.845 109.774 7.226 109.774 7.226 L 110.224 7.086 C 110.224 7.086 109.788 5.714 109.559 5.144 C 110.277 4.922 110.971 4.624 111.626 4.264 C 112.156 4.916 112.612 5.626 112.989 6.38 C 112.649 6.538 112.03 6.757 112.031 6.757 C 112.326 6.789 112.618 6.846 112.903 6.929 C 112.903 6.929 113.079 6.854 113.191 6.804 L 113.321 7.104 L 113.94 7.379 L 113.869 7.207 C 113.869 7.207 113.664 6.716 113.615 6.603 C 114.278 6.276 114.919 5.905 115.533 5.493 C 118.699 10.341 117.58 16.812 112.97 20.315 Z M 105.082 0.556 C 104.402 0.853 103.752 1.21 103.139 1.628 C 102.957 1.466 102.787 1.292 102.628 1.107 C 103.422 0.829 104.245 0.645 105.082 0.557 Z M 104.418 2.426 C 104.106 2.294 103.81 2.129 103.535 1.932 C 104.161 1.519 104.826 1.168 105.52 0.884 C 105.124 1.377 104.756 1.892 104.418 2.427 Z M 106.044 0.982 L 106.044 2.797 C 105.646 2.776 105.253 2.706 104.872 2.589 C 105.231 2.031 105.622 1.494 106.044 0.982 Z M 106.523 3.273 C 107.017 3.25 107.503 3.162 107.971 3.006 C 108.322 3.591 108.639 4.205 108.915 4.837 C 108.132 5.037 107.329 5.149 106.523 5.167 Z M 106.523 0.96 C 106.947 1.472 107.346 2.017 107.712 2.589 C 107.326 2.707 106.926 2.779 106.523 2.797 Z M 109.053 1.932 C 108.777 2.128 108.481 2.294 108.17 2.426 C 107.827 1.891 107.457 1.375 107.059 0.88 C 107.757 1.166 108.426 1.52 109.053 1.932 Z M 109.954 1.109 C 109.798 1.295 109.627 1.469 109.444 1.629 C 108.836 1.213 108.19 0.856 107.515 0.562 C 108.353 0.652 109.171 0.833 109.954 1.109 Z M 111.315 3.898 C 110.697 4.231 110.047 4.502 109.376 4.708 C 109.094 4.063 108.773 3.437 108.415 2.831 C 108.788 2.668 109.141 2.462 109.466 2.217 C 110.14 2.707 110.76 3.273 111.315 3.898 Z M 110.422 1.285 C 111.34 1.655 112.206 2.153 113.002 2.765 C 112.607 3.092 112.18 3.392 111.733 3.659 C 111.166 3.01 110.531 2.423 109.839 1.908 C 110.049 1.715 110.246 1.508 110.422 1.285 Z M 115.265 5.103 C 114.673 5.503 114.054 5.862 113.413 6.176 C 113.033 5.413 112.572 4.692 112.039 4.026 C 112.511 3.737 112.962 3.416 113.379 3.066 C 114.091 3.663 114.725 4.347 115.265 5.103 Z M 106.287 0.016 C 99.939 0.016 94.775 5.179 94.775 11.528 C 94.775 17.875 99.939 23.04 106.287 23.04 C 112.633 23.04 117.799 17.875 117.799 11.528 C 117.799 5.179 112.633 0.016 106.287 0.016 Z M 93.733 3.076 L 93.553 3.234 C 92.878 3.832 91.335 5.41 91.573 7.142 C 91.603 7.297 91.636 7.452 91.673 7.606 L 91.888 7.409 C 92.833 6.544 93.542 5.079 93.831 3.389 L 93.913 2.915 L 93.733 3.075 Z M 90.6 6.066 L 90.522 6.276 C 90.324 6.827 90.188 7.398 90.116 7.979 C 89.971 9.122 90.004 10.739 90.996 11.945 L 91.106 12.088 L 91.221 12.235 L 91.368 11.501 C 91.532 10.203 91.316 7.485 90.84 6.271 L 90.675 5.859 Z M 89.456 10.742 L 89.442 10.956 C 89.359 12.119 89.419 14.99 91.743 16.512 C 91.743 16.514 92.019 16.691 92.019 16.691 L 92.007 16.365 C 91.967 15.275 90.695 12.023 89.741 10.858 L 89.471 10.528 Z M 89.856 15.878 L 89.896 16.075 C 90.236 17.725 91.8 20.397 94.216 21.172 L 94.546 21.279 L 94.427 20.953 C 93.977 19.719 91.647 16.844 90.152 15.897 L 89.814 15.682 Z M 94.71 5.561 L 94.519 5.677 C 92.719 6.774 91.879 8.104 91.942 9.746 L 91.959 10.121 L 92.219 9.901 C 93.193 9.097 94.409 7.039 94.769 5.871 L 94.899 5.444 L 94.709 5.561 Z M 93.652 9.154 L 93.515 9.283 C 93.055 9.722 91.565 11.306 91.693 13.268 C 91.713 13.569 91.782 13.892 91.898 14.23 L 92.003 14.544 L 92.196 14.274 C 92.908 13.272 93.852 10.628 93.801 9.398 L 93.785 9.026 Z M 93.729 12.558 L 93.627 12.708 C 92.876 13.823 92.493 14.968 92.517 16.024 C 92.537 16.804 92.787 17.552 93.257 18.244 L 93.414 18.479 L 93.546 18.232 C 93.871 17.621 94.128 15.642 94.091 14.076 C 94.076 13.523 94.02 13.066 93.929 12.753 L 93.829 12.408 Z M 94.6 16.197 L 94.553 16.354 C 94.333 17.034 94.227 17.745 94.239 18.459 C 94.283 19.981 94.956 21.171 96.244 21.996 L 96.461 22.133 L 96.509 21.84 L 96.528 21.607 C 96.492 20.369 95.57 17.254 94.848 16.303 L 94.649 16.042 L 94.6 16.196 Z M 92.065 21.023 L 92.158 21.18 C 93.127 22.803 94.77 24.898 97.844 24.36 L 98.101 24.315 L 97.956 24.1 C 97.382 23.247 93.651 21.141 92.332 20.926 L 91.972 20.866 Z M 96.612 25.147 L 96.13 25.277 L 96.593 25.467 C 98.547 26.267 100.998 26.503 102.419 26.025 C 102.953 25.843 103.276 25.551 103.673 25.164 C 106.174 25.423 108.516 27.502 109.882 29.201 L 109.956 29.285 L 110.061 29.252 C 110.215 29.199 110.451 29.016 110.55 28.91 L 110.646 28.806 L 110.56 28.692 C 109.136 26.83 106.905 25.674 106.808 25.628 C 104.8 24.65 101.257 23.886 96.612 25.147 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path><path d=\"M 96.716 19.95 L 96.743 20.113 C 97.036 21.955 97.783 24.372 100.894 24.104 L 101.094 24.088 L 101.044 23.894 C 100.834 23.057 97.984 20.624 96.988 19.94 L 96.69 19.785 Z M 118.704 2.916 L 118.786 3.391 C 119.075 5.081 119.784 6.546 120.73 7.411 L 120.946 7.607 L 121.021 7.264 L 121.044 7.144 C 121.283 5.412 119.74 3.834 119.065 3.236 L 118.884 3.077 L 118.704 2.917 Z M 121.943 5.861 L 121.779 6.273 C 121.301 7.486 121.084 10.205 121.249 11.503 L 121.396 12.236 L 121.512 12.089 L 121.621 11.947 C 122.613 10.74 122.648 9.123 122.502 7.98 C 122.43 7.399 122.294 6.828 122.097 6.277 L 122.019 6.067 Z M 123.148 10.529 L 122.876 10.859 C 121.923 12.025 120.651 15.277 120.612 16.366 L 120.6 16.692 L 120.873 16.514 C 123.199 14.991 123.258 12.121 123.177 10.957 L 123.16 10.743 Z M 122.803 15.684 L 122.464 15.899 C 120.97 16.846 118.64 19.721 118.19 20.955 L 118.069 21.28 L 118.401 21.173 C 120.817 20.399 122.382 17.727 122.721 16.077 L 122.764 15.88 Z M 117.809 5.39 L 117.934 5.819 C 118.268 6.995 119.443 9.076 120.401 9.9 L 120.661 10.124 L 120.681 9.748 C 120.779 8.108 119.962 6.762 118.186 5.63 L 117.996 5.51 Z M 118.831 9.027 L 118.817 9.4 C 118.767 10.63 119.708 13.273 120.42 14.275 L 120.614 14.545 L 120.721 14.232 C 120.831 13.921 120.898 13.598 120.923 13.269 C 121.054 11.308 119.563 9.723 119.103 9.285 L 118.967 9.155 Z M 118.791 12.41 L 118.688 12.755 C 118.596 13.067 118.541 13.525 118.528 14.078 C 118.49 15.643 118.746 17.622 119.069 18.233 L 119.203 18.481 L 119.362 18.246 C 119.831 17.553 120.08 16.806 120.099 16.026 C 120.125 14.97 119.743 13.825 118.991 12.709 L 118.89 12.559 L 118.791 12.409 Z M 117.965 16.044 L 117.768 16.304 C 117.046 17.256 116.124 20.371 116.09 21.608 C 116.09 21.608 116.107 21.836 116.109 21.841 L 116.156 22.135 L 116.374 21.997 C 117.66 21.172 118.335 19.982 118.379 18.461 C 118.391 17.747 118.285 17.035 118.063 16.356 L 118.014 16.198 Z M 120.645 20.868 L 120.287 20.928 C 118.967 21.143 115.236 23.248 114.661 24.102 L 114.517 24.317 L 114.773 24.362 C 117.849 24.9 119.492 22.805 120.459 21.182 L 120.553 21.025 Z M 105.811 25.63 C 105.713 25.676 103.481 26.831 102.059 28.693 L 101.972 28.807 L 102.069 28.911 C 102.168 29.018 102.403 29.201 102.557 29.253 L 102.663 29.287 L 102.736 29.203 C 104.099 27.504 106.442 25.424 108.943 25.166 C 109.339 25.552 109.664 25.844 110.2 26.026 C 111.62 26.505 114.069 26.268 116.026 25.468 L 116.489 25.278 L 116.006 25.148 C 111.36 23.888 107.817 24.651 105.811 25.63 Z M 115.928 19.785 L 115.63 19.94 C 114.633 20.624 111.784 23.056 111.574 23.894 L 111.525 24.088 L 111.722 24.104 C 114.834 24.372 115.581 21.955 115.875 20.114 L 115.903 19.95 Z M 36.677 25.95 L 39.982 25.95 L 39.982 8.485 L 36.677 8.485 Z M 36.365 4.415 L 40.296 4.415 L 40.296 0.83 L 36.365 0.83 Z M 11.725 8.5 L 15.031 8.5 L 15.031 25.965 L 11.795 25.965 L 11.795 23.39 L 11.725 23.39 C 10.403 25.582 8.177 26.486 5.74 26.486 C 2.088 26.486 0 23.703 0 20.189 L 0 8.5 L 3.307 8.5 L 3.307 18.834 C 3.307 21.862 4.002 24.087 7.167 24.087 C 8.526 24.087 10.369 23.391 11.064 21.584 C 11.689 19.948 11.726 17.894 11.726 17.477 L 11.726 8.501 Z M 21.63 11.073 L 21.7 11.073 C 22.813 8.883 25.249 7.978 26.988 7.978 C 28.205 7.978 33.598 8.291 33.598 13.892 L 33.598 25.965 L 30.295 25.965 L 30.295 14.972 C 30.295 12.085 29.075 10.52 26.292 10.52 C 26.292 10.52 24.482 10.415 23.092 11.806 C 22.606 12.293 21.701 13.058 21.701 16.468 L 21.701 25.966 L 18.395 25.966 L 18.395 8.501 L 21.63 8.501 L 21.63 11.074 Z M 53.823 14.102 C 53.649 11.923 52.615 10.405 50.263 10.405 C 47.12 10.405 45.908 13.131 45.908 17.213 C 45.908 21.292 47.12 24.023 50.262 24.023 C 52.438 24.023 53.786 22.611 53.958 20.117 L 57.245 20.117 C 56.965 24.024 54.065 26.407 50.225 26.407 C 44.663 26.407 42.451 22.469 42.451 17.351 C 42.451 12.264 45.007 8.016 50.507 8.016 C 54.171 8.016 56.934 10.335 57.102 14.102 L 53.822 14.102 Z M 70.96 15.555 C 71.03 12.653 69.713 10.405 66.534 10.405 C 63.8 10.405 62.181 12.714 62.181 15.555 L 70.961 15.555 Z M 62.18 17.833 C 61.939 20.876 63.184 24.023 66.534 24.023 C 69.092 24.023 70.37 23.023 70.749 20.493 L 74.209 20.493 C 73.689 24.44 70.646 26.407 66.502 26.407 C 60.935 26.407 58.719 22.469 58.719 17.351 C 58.719 12.264 61.283 8.016 66.777 8.016 C 71.96 8.124 74.413 11.403 74.413 16.213 L 74.413 17.833 Z M 78.134 25.889 L 78.134 10.82 L 75.148 10.82 L 75.148 8.532 L 78.134 8.532 L 78.134 4.805 C 78.241 1 81.106 0 83.561 0 C 84.355 0 85.119 0.205 85.916 0.342 L 85.916 3.072 C 85.357 3.042 84.806 2.967 84.251 2.967 C 82.389 2.967 81.316 3.457 81.417 5.354 L 81.417 8.534 L 85.428 8.534 L 85.428 10.819 L 81.418 10.819 L 81.418 25.89 L 78.134 25.89 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></svg>',svgContentId:8719852335,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wrn1se\",\"data-framer-name\":\"bol\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 103 46\"><path d=\"M 55.791 12.345 C 67.204 12.345 71.567 19.816 71.567 26.41 C 71.567 33.623 66.545 40.475 55.893 40.475 C 44.479 40.475 40.016 33.055 40.016 26.41 C 40.016 19.403 44.733 12.345 55.792 12.345 Z M 55.791 31.665 C 59.016 31.665 61.237 29.501 61.237 26.41 C 61.237 23.319 59.016 21.155 55.791 21.155 C 52.565 21.155 50.344 23.319 50.344 26.41 C 50.344 29.501 52.565 31.665 55.791 31.665 Z M 73.662 4.865 L 83.98 4.865 L 83.98 40.002 L 73.662 40.002 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path><path d=\"M 85.574 34.145 C 85.574 30.649 88.393 27.815 91.87 27.815 C 95.347 27.815 98.166 30.649 98.166 34.145 C 98.166 37.642 95.347 40.476 91.87 40.476 C 88.393 40.476 85.574 37.642 85.574 34.145 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path><path d=\"M 7.793 4.865 L 18.111 4.865 L 18.111 13.469 C 20.14 12.697 22.234 12.336 24.416 12.336 C 32.532 12.336 38.416 18.312 38.416 26.504 C 38.416 32.687 34.206 40.002 24.619 40.002 L 7.793 40.002 Z M 18.111 31.284 C 19.497 31.544 21.039 31.656 22.065 31.656 C 25.814 31.656 28.278 29.581 28.278 26.4 C 28.278 23.219 25.865 21.145 22.374 21.145 C 21.09 21.145 19.549 21.323 18.111 21.793 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></svg>',svgContentId:9459513116,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pbfb1f\",\"data-framer-name\":\"eneco\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 97 43\"><path d=\"M 52.455 23.242 C 52.455 17.349 55.281 15.655 59.41 15.655 C 64.468 15.655 66.675 17.09 66.144 24.994 L 57.754 24.994 C 57.804 26.511 58.714 26.77 60.409 26.77 C 61.681 26.747 62.949 26.626 64.203 26.41 L 65.1 30.203 C 63.354 30.723 61.542 30.985 59.72 30.981 C 55.73 30.981 52.455 29.135 52.455 23.242 Z M 59.688 19.297 C 58.278 19.297 57.532 20.542 57.444 22.174 L 62.097 21.965 C 62.072 19.98 61.098 19.297 59.688 19.297 Z M 36.188 17.027 C 38.721 16.175 41.368 15.712 44.04 15.655 C 47.992 15.655 50.11 17.425 50.11 22.597 L 50.11 30.595 L 44.944 30.595 L 44.944 22.945 C 44.944 20.909 44.659 20.226 42.902 20.226 C 42.38 20.244 41.862 20.31 41.352 20.422 L 41.352 30.595 L 36.187 30.595 L 36.187 17.027 Z M 79.269 20.561 C 78.231 20.236 77.156 20.048 76.07 20 C 74.35 20 73.415 20.19 73.408 23.37 C 73.408 26.335 74.344 26.645 76.064 26.645 C 77.158 26.616 78.24 26.402 79.263 26.012 L 80.274 30.306 C 78.749 30.775 77.159 31.001 75.564 30.976 C 71.264 30.976 68.243 29.129 68.243 23.231 C 68.243 17.331 71.29 15.643 75.564 15.643 C 77.159 15.627 78.747 15.84 80.281 16.276 L 79.269 20.562 Z M 32.76 11.273 L 33.873 16.022 L 25.787 16.022 L 25.787 18.507 L 32.014 18.507 L 32.014 23.197 L 25.793 23.197 C 25.793 25.05 26.495 25.777 27.797 25.879 L 33.589 25.879 L 33.589 30.595 L 26.299 30.595 C 23.244 30.555 21.302 29.433 20.644 26.406 C 22.755 25.286 24.054 23.07 24.001 20.681 C 23.948 18.291 22.553 16.136 20.394 15.11 L 20.394 11.273 Z M 81.678 23.243 C 81.678 17.316 84.185 15.657 88.87 15.655 C 93.637 15.657 96.144 17.284 96.144 23.242 C 96.144 29.204 93.628 30.987 88.879 30.987 C 84.131 30.987 81.679 29.173 81.679 23.242 Z M 88.87 15.655 L 88.88 15.655 L 88.86 15.655 Z M 86.844 23.337 C 86.844 26.637 87.266 27.034 88.87 27.036 C 90.5 27.034 90.922 26.637 90.94 23.337 C 90.94 19.917 90.492 19.607 88.88 19.607 C 87.267 19.607 86.844 19.917 86.844 23.337 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path><path d=\"M 15.342 25.878 C 15.36 28.635 13.896 31.189 11.507 32.567 C 9.118 33.944 6.174 33.932 3.797 32.535 C 1.42 31.138 -0.024 28.572 0.017 25.815 C 0.079 21.615 3.51 18.248 7.711 18.265 C 11.911 18.283 15.314 21.678 15.342 25.878 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path><path d=\"M 21.701 23.576 C 22.774 21.966 22.846 19.888 21.886 18.209 C 20.926 16.529 19.1 15.535 17.168 15.642 C 15.237 15.749 13.531 16.938 12.763 18.714 C 15.018 20.351 16.371 22.954 16.415 25.74 L 16.457 25.748 C 18.483 26.151 20.553 25.294 21.701 23.576 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path><path d=\"M 24.636 37.763 C 24.638 39.488 23.601 41.043 22.008 41.704 C 20.416 42.366 18.581 42.001 17.362 40.782 C 16.143 39.563 15.778 37.728 16.44 36.136 C 17.101 34.543 18.656 33.506 20.381 33.508 C 22.731 33.508 24.636 35.413 24.636 37.763 Z M 16.847 2.756 C 16.847 4.153 15.715 5.285 14.318 5.285 C 12.921 5.285 11.789 4.153 11.789 2.756 C 11.789 1.359 12.921 0.227 14.318 0.227 C 15.715 0.227 16.847 1.359 16.847 2.756 Z M 11.087 11.275 C 11.087 13.157 9.561 14.683 7.679 14.683 C 5.797 14.683 4.271 13.157 4.271 11.275 C 4.271 9.393 5.797 7.867 7.679 7.867 C 9.561 7.867 11.087 9.393 11.087 11.275 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></svg>',svgContentId:10843439563,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1muwngs\",\"data-framer-name\":\"DEPT\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 99 26\"><path d=\"M 25.064 12.697 C 25.064 5.544 21.213 0.039 11.409 0.039 L 0.928 0.039 L 0.928 25.346 L 11.408 25.346 C 21.212 25.346 25.065 19.839 25.065 12.696 L 25.063 12.696 Z M 17.933 12.697 C 17.933 17.691 15.153 19.547 11.3 19.547 L 7.735 19.547 L 7.735 5.838 L 11.3 5.838 C 15.153 5.838 17.933 7.7 17.933 12.695 Z M 26.691 25.346 L 46.508 25.346 L 46.508 19.586 L 33.502 19.586 L 33.502 15.246 L 44.922 15.246 L 44.922 9.776 L 33.502 9.776 L 33.502 5.805 L 46.182 5.805 L 46.182 0.039 L 26.69 0.039 L 26.69 25.346 Z M 69.564 8.83 C 69.564 2.447 65.532 0.04 59.265 0.04 L 48.426 0.04 L 48.426 25.346 L 55.232 25.346 L 55.232 17.617 L 59.264 17.617 C 65.53 17.617 69.564 15.21 69.564 8.83 Z M 62.511 8.83 C 62.511 11.307 61.359 12.33 58.584 12.33 L 55.232 12.33 L 55.232 5.327 L 58.584 5.327 C 61.357 5.327 62.511 6.349 62.511 8.83 Z M 70.313 5.946 L 78.198 5.946 L 78.198 25.346 L 85.005 25.346 L 85.005 5.946 L 92.896 5.946 L 92.896 0.039 L 70.313 0.039 Z M 90.068 21.802 C 90.068 24.092 91.901 25.949 94.158 25.949 C 96.424 25.949 98.275 24.092 98.275 21.802 C 98.275 19.512 96.425 17.64 94.156 17.64 C 91.901 17.64 90.068 19.512 90.068 21.802 Z M 90.854 21.802 C 90.854 19.912 92.329 18.366 94.156 18.366 C 95.991 18.366 97.481 19.913 97.481 21.802 C 97.481 23.692 95.991 25.222 94.156 25.222 C 92.327 25.222 90.854 23.692 90.854 21.802 Z M 92.238 23.855 L 93.533 23.855 L 93.533 22.445 L 94.27 22.445 L 95.04 23.855 L 96.44 23.855 L 95.507 22.185 C 95.935 22.005 96.26 21.515 96.26 20.964 C 96.26 20.008 95.648 19.547 94.613 19.547 L 92.238 19.547 Z M 94.95 20.987 C 94.95 21.33 94.737 21.477 94.326 21.477 L 93.533 21.477 L 93.533 20.569 L 94.325 20.569 C 94.737 20.569 94.95 20.677 94.95 20.987 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></svg>',svgContentId:10678290232,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ld3ymr\",\"data-framer-name\":\"koppert\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 28\"><g transform=\"translate(0.84 0.19)\" id=\"ss12569284590_1\"><path d=\"M 48.705 4.838 C 45.834 4.838 43.675 6.239 42.457 8.746 C 42.365 8.937 42.045 8.879 42.041 8.671 L 41.983 5.158 L 38.477 5.158 L 38.477 27.112 L 42.205 27.112 L 42.205 18.828 C 42.205 18.623 42.519 18.555 42.618 18.743 C 43.856 21.035 45.97 22.307 48.708 22.307 C 53.177 22.307 56.035 19.074 56.035 13.572 C 56.035 8.071 53.173 4.838 48.709 4.838 Z M 47.321 19.458 C 45.141 19.458 42.068 17.853 42.068 13.995 L 42.068 13.245 C 42.068 9.2 45.138 7.668 47.321 7.668 C 50.356 7.668 52.423 9.896 52.423 13.606 C 52.423 17.317 50.36 19.456 47.321 19.456 L 47.321 19.459 Z M 112.978 8.003 L 112.978 13.542 C 112.978 16.69 114.049 19.172 118.493 19.172 C 118.756 19.172 118.875 19.166 118.875 19.166 L 118.875 21.942 C 118.875 21.942 118.848 21.955 117.456 21.955 C 112.033 21.955 109.567 18.282 109.567 13.194 L 109.567 0 L 112.978 0 L 112.978 5.205 L 118.875 5.205 L 118.875 8.002 L 112.978 8.002 Z M 106.706 5.018 L 107.893 5.018 L 107.893 7.978 L 102.538 7.978 C 101.246 7.978 100.018 8.446 100.018 9.95 L 100.018 21.928 L 96.423 21.928 L 96.423 5.175 L 100.018 5.175 L 100.018 7.38 C 100.018 7.489 100.086 7.598 100.185 7.611 C 100.294 7.628 100.404 7.594 100.485 7.519 C 102.115 6.029 103.578 5.019 106.706 5.019 Z M 86.144 4.818 C 80.891 4.818 77.532 7.952 77.532 13.583 C 77.532 19.213 80.714 22.283 86.464 22.283 C 90.254 22.283 93.562 20.649 94.08 16.604 L 90.983 16.604 C 90.468 18.684 88.838 19.66 86.365 19.66 C 83.187 19.66 81.539 17.87 81.287 14.445 L 94.172 14.445 C 94.899 8.548 92.542 4.817 86.147 4.817 L 86.144 4.817 Z M 81.311 12.072 C 81.311 12.072 81.358 7.375 86.287 7.375 C 89.465 7.375 90.755 9.312 90.932 12.078 L 81.311 12.068 Z M 68.35 4.838 C 65.478 4.838 63.319 6.239 62.101 8.746 C 62.009 8.937 61.689 8.879 61.685 8.671 L 61.627 5.158 L 58.117 5.158 L 58.117 27.112 L 61.846 27.112 L 61.846 18.828 C 61.846 18.623 62.159 18.555 62.258 18.743 C 63.496 21.035 65.611 22.307 68.35 22.307 C 72.817 22.307 75.675 19.074 75.675 13.572 C 75.675 8.071 72.814 4.838 68.349 4.838 Z M 66.965 19.458 C 64.785 19.458 61.713 17.853 61.713 13.995 L 61.713 13.245 C 61.713 9.2 64.782 7.668 66.965 7.668 C 70 7.668 72.067 9.896 72.067 13.606 C 72.067 17.317 70.004 19.456 66.965 19.456 L 66.965 19.459 Z M 27.565 4.818 C 22.296 4.818 18.675 8.303 18.675 13.583 C 18.675 18.863 22.293 22.283 27.565 22.283 C 32.838 22.283 36.389 18.797 36.389 13.583 C 36.389 8.368 32.77 4.817 27.566 4.817 Z M 27.569 19.5 C 24.209 19.5 22.214 17.164 22.214 13.582 C 22.214 10.002 24.247 7.6 27.569 7.6 C 30.891 7.6 32.849 9.967 32.849 13.583 C 32.849 17.198 30.854 19.5 27.569 19.5 Z M 20.66 21.92 L 20.687 21.944 L 15.247 21.944 L 6.21 12.566 C 5.664 12.016 5.02 11.572 4.313 11.256 C 4.17 11.195 4.047 11.284 4.047 11.434 L 4.047 21.949 L 0 21.949 L 0 16.014 C 0 12.225 2.415 11.065 3.492 10.977 C 2.414 10.888 0 9.728 0 5.939 L 0 0.001 L 4.05 0.001 L 4.05 10.516 C 4.05 10.666 4.172 10.756 4.316 10.694 C 5.023 10.377 5.666 9.933 6.212 9.384 L 15.251 0.001 L 20.691 0.001 L 20.664 0.025 C 20.582 0.097 14.061 7.345 11.424 9.125 C 9.245 10.595 5.974 10.909 4.941 10.973 C 5.974 11.035 9.245 11.349 11.424 12.822 C 14.061 14.602 20.582 21.85 20.664 21.922 L 20.66 21.922 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></g></svg>',svgContentId:12569284590,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jazuvv\",\"data-framer-name\":\"Hello Energy\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 185 33\"><path d=\"M 0.08 13.424 L 2.742 10.762 L 8.066 16.086 C 9.536 17.556 9.536 19.94 8.066 21.41 Z M 13.39 0.113 L 10.728 2.775 L 16.053 8.1 C 17.523 9.57 19.907 9.57 21.377 8.1 Z M 18.715 32.058 L 21.377 29.396 L 16.053 24.071 C 15.347 23.365 14.389 22.968 13.39 22.968 C 12.392 22.968 11.434 23.365 10.728 24.071 Z M 32.025 18.748 L 29.363 21.41 L 24.039 16.086 C 22.569 14.616 22.569 12.232 24.039 10.762 Z M 0.08 29.396 L 8.066 21.41 L 10.728 24.072 L 2.742 32.058 Z M 18.715 10.762 L 10.729 18.748 L 13.391 21.41 L 21.377 13.424 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path><path d=\"M 29.363 0.113 L 21.377 8.1 L 24.039 10.762 L 32.025 2.776 Z M 174.037 29.903 C 173.624 29.895 173.214 29.829 172.819 29.705 C 172.389 29.573 171.941 29.4 171.477 29.185 L 172.344 27.246 C 172.709 27.411 173.024 27.536 173.289 27.618 C 173.571 27.7 173.794 27.741 173.96 27.741 C 174.374 27.741 174.722 27.624 175.003 27.391 C 175.301 27.16 175.541 26.836 175.722 26.422 L 177.159 23.016 L 181.569 12.202 L 184.103 12.199 L 178.232 26.171 C 177.955 26.859 177.623 27.524 177.24 28.159 C 176.893 28.723 176.463 29.154 175.95 29.453 C 175.453 29.752 174.816 29.902 174.037 29.903 Z M 176.515 24.633 L 171.059 12.215 L 173.568 12.212 L 178.079 22.99 L 178.801 24.63 L 176.515 24.632 Z M 162.984 29.944 C 162.223 29.952 161.464 29.87 160.723 29.698 C 160.136 29.578 159.562 29.404 159.008 29.178 C 158.544 28.98 158.196 28.806 157.964 28.658 L 158.856 26.743 C 159.071 26.876 159.378 27.024 159.776 27.189 C 160.173 27.371 160.637 27.519 161.168 27.635 C 161.698 27.767 162.286 27.832 162.932 27.832 C 163.694 27.831 164.373 27.672 164.969 27.357 C 165.565 27.058 166.028 26.585 166.359 25.939 C 166.706 25.293 166.879 24.464 166.877 23.454 L 166.863 12.223 L 169.224 12.22 L 169.238 23.401 C 169.239 24.826 168.968 26.019 168.422 26.98 C 167.893 27.958 167.157 28.696 166.213 29.194 C 165.286 29.692 164.21 29.942 162.984 29.944 Z M 162.754 24.477 C 161.628 24.479 160.642 24.223 159.796 23.711 C 158.967 23.181 158.312 22.454 157.831 21.527 C 157.366 20.583 157.132 19.498 157.131 18.273 C 157.129 16.997 157.36 15.887 157.822 14.943 C 158.302 13.997 158.955 13.259 159.783 12.728 C 160.627 12.198 161.612 11.931 162.738 11.93 C 163.765 11.928 164.66 12.192 165.423 12.722 C 166.202 13.251 166.799 13.995 167.215 14.956 C 167.647 15.899 167.863 17.009 167.865 18.284 C 167.866 19.51 167.652 20.595 167.223 21.54 C 166.81 22.468 166.214 23.19 165.436 23.704 C 164.675 24.218 163.781 24.476 162.754 24.477 Z M 163.348 22.489 C 164.044 22.489 164.648 22.305 165.161 21.94 C 165.686 21.543 166.104 21.022 166.377 20.423 C 166.674 19.777 166.822 19.039 166.821 18.211 C 166.82 17.383 166.67 16.654 166.371 16.025 C 166.072 15.395 165.658 14.908 165.127 14.561 C 164.613 14.197 164.008 14.015 163.313 14.016 C 162.584 14.017 161.938 14.2 161.375 14.566 C 160.829 14.914 160.399 15.403 160.085 16.033 C 159.771 16.663 159.614 17.392 159.616 18.22 C 159.617 19.048 159.775 19.785 160.09 20.43 C 160.4 21.034 160.853 21.554 161.409 21.945 C 161.973 22.308 162.619 22.49 163.348 22.489 Z M 150.605 17.98 C 150.603 16.638 150.858 15.544 151.371 14.699 C 151.883 13.853 152.545 13.223 153.356 12.808 C 154.147 12.398 155.024 12.184 155.915 12.184 L 155.917 14.42 C 155.172 14.42 154.46 14.537 153.781 14.77 C 153.141 14.971 152.572 15.352 152.142 15.866 C 151.729 16.363 151.523 17.042 151.524 17.904 Z M 149.172 24.665 L 149.156 12.242 L 151.517 12.239 L 151.532 24.662 Z M 141.051 24.973 C 139.841 24.974 138.773 24.703 137.844 24.157 C 136.92 23.599 136.163 22.802 135.655 21.849 C 135.124 20.872 134.857 19.746 134.856 18.471 C 134.854 17.195 135.118 16.068 135.647 15.091 C 136.148 14.14 136.904 13.347 137.83 12.801 C 138.774 12.238 139.85 11.955 141.059 11.953 C 142.186 11.952 143.18 12.24 144.042 12.819 C 144.921 13.381 145.601 14.192 146.083 15.251 C 146.581 16.294 146.831 17.528 146.833 18.953 L 144.472 18.956 C 144.487 17.896 144.354 17.001 144.071 16.273 C 143.805 15.544 143.407 14.998 142.877 14.634 C 142.363 14.254 141.741 14.064 141.012 14.065 C 140.234 14.066 139.563 14.249 139 14.615 C 138.438 14.963 137.999 15.469 137.685 16.131 C 137.388 16.778 137.24 17.573 137.241 18.517 C 137.242 19.395 137.417 20.157 137.766 20.803 C 138.099 21.416 138.588 21.93 139.184 22.292 C 139.781 22.639 140.46 22.812 141.222 22.811 C 142.034 22.81 142.704 22.619 143.234 22.237 C 143.78 21.855 144.21 21.367 144.524 20.77 L 146.637 21.736 C 146.31 22.379 145.873 22.959 145.347 23.452 C 144.797 23.945 144.156 24.326 143.46 24.572 C 142.748 24.838 141.945 24.972 141.051 24.972 Z M 136.397 18.966 L 136.419 17.028 L 145.513 17.016 L 145.516 18.955 L 136.397 18.965 Z M 121.633 24.702 L 121.618 12.278 L 123.829 12.276 L 123.981 14.562 L 123.993 24.699 Z M 130.23 24.692 L 130.222 18.331 L 132.582 17.582 L 132.59 24.689 L 130.23 24.691 Z M 130.222 18.331 C 130.221 17.204 130.087 16.351 129.821 15.771 C 129.572 15.176 129.216 14.762 128.751 14.531 C 128.304 14.299 127.782 14.176 127.186 14.16 C 126.175 14.161 125.389 14.518 124.826 15.231 C 124.264 15.944 123.984 16.947 123.985 18.239 L 122.967 18.24 C 122.965 16.932 123.154 15.813 123.534 14.885 C 123.914 13.94 124.46 13.219 125.171 12.721 C 125.899 12.223 126.769 11.974 127.779 11.973 C 129.27 11.971 130.438 12.433 131.284 13.36 C 132.147 14.27 132.579 15.677 132.582 17.582 Z M 107.525 24.718 L 107.504 7.325 L 109.939 7.322 L 109.96 24.715 Z M 109.563 24.716 L 109.56 22.48 L 118.033 22.47 L 118.036 24.705 L 109.563 24.715 Z M 109.553 16.914 L 109.55 14.727 L 117.179 14.717 L 117.181 16.904 Z M 109.544 9.559 L 109.541 7.323 L 117.965 7.313 L 117.967 9.549 Z M 92.089 25.035 C 90.846 25.037 89.753 24.765 88.808 24.219 C 87.869 23.663 87.095 22.866 86.568 21.911 C 86.038 20.935 85.771 19.809 85.769 18.533 C 85.768 17.258 86.032 16.131 86.56 15.153 C 87.067 14.198 87.833 13.404 88.77 12.864 C 89.713 12.3 90.797 12.017 92.023 12.016 C 93.249 12.014 94.334 12.294 95.279 12.856 C 96.217 13.394 96.984 14.186 97.493 15.14 C 98.025 16.116 98.291 17.242 98.293 18.518 C 98.294 19.793 98.03 20.92 97.501 21.898 C 96.991 22.857 96.227 23.657 95.293 24.211 C 94.366 24.759 93.298 25.034 92.089 25.035 Z M 92.086 22.874 C 92.832 22.873 93.494 22.69 94.073 22.324 C 94.652 21.942 95.116 21.409 95.413 20.782 C 95.743 20.136 95.908 19.382 95.907 18.521 C 95.907 17.659 95.74 16.906 95.407 16.261 C 95.108 15.633 94.633 15.107 94.039 14.746 C 93.438 14.365 92.738 14.167 92.026 14.177 C 91.264 14.178 90.593 14.37 90.014 14.751 C 89.429 15.123 88.957 15.648 88.649 16.269 C 88.319 16.915 88.154 17.669 88.155 18.53 C 88.155 19.392 88.323 20.145 88.655 20.79 C 88.972 21.42 89.453 21.952 90.048 22.33 C 90.645 22.693 91.324 22.875 92.086 22.874 Z M 80.844 24.751 L 80.822 7.358 L 83.182 7.355 L 83.204 24.748 Z M 75.213 24.76 L 75.19 7.365 L 77.55 7.362 L 77.572 24.755 L 75.212 24.758 Z M 67.093 25.067 C 65.884 25.068 64.815 24.797 63.887 24.251 C 62.962 23.693 62.206 22.896 61.697 21.943 C 61.167 20.966 60.9 19.84 60.898 18.564 C 60.897 17.289 61.16 16.162 61.689 15.184 C 62.191 14.234 62.947 13.442 63.873 12.896 C 64.817 12.331 65.893 12.048 67.103 12.046 C 68.229 12.046 69.223 12.334 70.085 12.913 C 70.964 13.475 71.644 14.286 72.125 15.345 C 72.624 16.388 72.874 17.622 72.875 19.047 L 70.515 19.049 C 70.53 17.989 70.397 17.095 70.114 16.367 C 69.848 15.638 69.45 15.092 68.919 14.728 C 68.405 14.348 67.784 14.158 67.055 14.158 C 66.277 14.16 65.605 14.343 65.043 14.708 C 64.48 15.057 64.042 15.562 63.728 16.225 C 63.431 16.872 63.283 17.667 63.284 18.611 C 63.284 19.489 63.46 20.251 63.808 20.896 C 64.141 21.509 64.631 22.023 65.227 22.386 C 65.823 22.733 66.503 22.906 67.265 22.905 C 68.076 22.904 68.747 22.712 69.277 22.331 C 69.819 21.953 70.262 21.449 70.567 20.863 L 72.68 21.83 C 72.353 22.472 71.916 23.053 71.39 23.546 C 70.84 24.039 70.199 24.419 69.503 24.666 C 68.791 24.932 67.988 25.066 67.093 25.066 Z M 62.44 19.059 L 62.462 17.121 L 71.556 17.111 L 71.558 19.048 L 62.44 19.06 Z M 55.316 24.783 L 55.294 7.39 L 57.73 7.387 L 57.751 24.78 Z M 43.514 24.797 L 43.492 7.404 L 45.927 7.401 L 45.949 24.794 Z M 45.541 16.967 L 45.539 14.732 L 56.074 14.719 L 56.077 16.955 L 45.541 16.968 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></svg>',svgContentId:10095811662,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-196isrf\",\"data-framer-name\":\"Dias\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 73 37\"><path d=\"M 5.063 30.695 C 4.908 30.511 4.714 30.364 4.494 30.265 C 4.131 30.086 3.715 30.045 3.324 30.149 C 3.185 30.183 3.052 30.239 2.931 30.316 C 2.81 30.39 2.708 30.491 2.633 30.611 C 2.553 30.744 2.512 30.898 2.517 31.054 C 2.514 31.196 2.55 31.336 2.62 31.459 C 2.686 31.576 2.779 31.675 2.892 31.748 C 3.025 31.834 3.168 31.903 3.318 31.953 C 3.48 32.017 3.668 32.075 3.868 32.133 C 4.068 32.191 4.326 32.287 4.565 32.383 C 4.797 32.473 5.015 32.597 5.211 32.749 C 5.416 32.902 5.586 33.097 5.709 33.321 C 5.846 33.587 5.913 33.883 5.903 34.181 C 5.911 34.523 5.838 34.861 5.689 35.171 C 5.56 35.441 5.369 35.678 5.134 35.864 C 4.893 36.055 4.616 36.197 4.32 36.281 C 3.551 36.501 2.731 36.46 1.988 36.165 C 1.57 36.014 1.198 35.758 0.908 35.421 L 1.806 34.586 C 1.982 34.832 2.221 35.026 2.498 35.151 C 2.762 35.285 3.054 35.358 3.351 35.363 C 3.501 35.363 3.651 35.343 3.796 35.305 C 4.093 35.244 4.353 35.063 4.513 34.805 C 4.593 34.657 4.631 34.491 4.623 34.323 C 4.632 34.159 4.586 33.996 4.494 33.86 C 4.401 33.732 4.282 33.625 4.145 33.546 C 3.983 33.447 3.809 33.369 3.628 33.314 L 2.982 33.102 C 2.762 33.037 2.546 32.958 2.336 32.865 C 2.127 32.777 1.934 32.653 1.768 32.499 C 1.593 32.343 1.452 32.153 1.354 31.94 C 1.237 31.68 1.181 31.397 1.192 31.112 C 1.185 30.791 1.263 30.474 1.419 30.194 C 1.565 29.939 1.766 29.72 2.007 29.552 C 2.258 29.38 2.538 29.254 2.834 29.179 C 3.139 29.095 3.454 29.052 3.771 29.051 C 4.143 29.053 4.512 29.118 4.862 29.243 C 5.22 29.361 5.549 29.553 5.825 29.809 Z M 10.428 32.718 C 10.424 33.07 10.483 33.42 10.602 33.751 C 10.712 34.053 10.882 34.331 11.1 34.567 C 11.555 35.047 12.19 35.315 12.851 35.305 C 13.191 35.31 13.528 35.242 13.839 35.106 C 14.43 34.848 14.888 34.358 15.105 33.751 C 15.225 33.42 15.285 33.07 15.28 32.717 C 15.283 32.373 15.224 32.032 15.106 31.709 C 14.998 31.408 14.831 31.13 14.615 30.894 C 14.398 30.662 14.137 30.476 13.846 30.348 C 13.531 30.216 13.192 30.151 12.851 30.155 C 12.511 30.15 12.175 30.215 11.862 30.348 C 11.572 30.474 11.313 30.661 11.1 30.894 C 10.882 31.13 10.712 31.407 10.602 31.709 C 10.484 32.032 10.425 32.374 10.428 32.718 Z M 9.065 32.718 C 9.059 32.197 9.155 31.68 9.349 31.196 C 9.711 30.314 10.433 29.629 11.333 29.314 C 11.815 29.136 12.325 29.047 12.838 29.051 C 13.358 29.046 13.875 29.135 14.363 29.314 C 15.267 29.629 15.995 30.313 16.366 31.196 C 16.558 31.68 16.652 32.197 16.644 32.717 C 16.651 33.231 16.557 33.742 16.366 34.22 C 16.181 34.658 15.91 35.055 15.571 35.389 C 15.223 35.72 14.812 35.977 14.363 36.146 C 13.877 36.335 13.359 36.429 12.838 36.422 C 12.323 36.428 11.812 36.335 11.333 36.146 C 10.887 35.978 10.48 35.721 10.137 35.389 C 9.798 35.057 9.53 34.659 9.349 34.22 C 9.157 33.743 9.06 33.232 9.065 32.718 Z M 20.186 29.23 L 24.742 29.23 L 24.742 30.322 L 21.44 30.322 L 21.44 32.242 L 24.548 32.242 L 24.548 33.295 L 21.44 33.295 L 21.44 36.242 L 20.186 36.242 L 20.186 29.231 Z M 29.876 30.322 L 27.712 30.322 L 27.712 29.231 L 33.294 29.231 L 33.294 30.322 L 31.13 30.322 L 31.13 36.242 L 29.876 36.242 Z M 36.118 29.23 L 37.494 29.23 L 38.858 34.38 L 38.878 34.38 L 40.434 29.23 L 41.726 29.23 L 43.258 34.38 L 43.278 34.38 L 44.666 29.23 L 46.004 29.23 L 43.943 36.242 L 42.728 36.242 L 41.074 30.983 L 41.054 30.983 L 39.4 36.243 L 38.186 36.243 Z M 52.498 33.571 L 51.394 30.721 L 50.282 33.571 Z M 50.902 29.231 L 51.988 29.231 L 55.025 36.242 L 53.59 36.242 L 52.944 34.637 L 49.888 34.637 L 49.242 36.242 L 47.84 36.242 Z M 60.444 32.255 C 60.626 32.255 60.807 32.241 60.987 32.21 C 61.156 32.189 61.32 32.139 61.471 32.062 C 61.786 31.91 61.98 31.584 61.962 31.234 C 61.968 31.068 61.923 30.904 61.833 30.765 C 61.749 30.641 61.636 30.539 61.503 30.47 C 61.362 30.396 61.209 30.346 61.051 30.322 C 60.887 30.297 60.72 30.284 60.554 30.284 L 59.424 30.284 L 59.424 32.254 L 60.444 32.254 Z M 58.164 29.23 L 60.618 29.23 C 60.942 29.232 61.265 29.266 61.581 29.333 C 61.868 29.401 62.139 29.521 62.382 29.686 C 62.629 29.846 62.83 30.068 62.964 30.328 C 63.119 30.616 63.194 30.94 63.184 31.266 C 63.204 31.721 63.049 32.166 62.751 32.512 C 62.433 32.842 62.02 33.067 61.568 33.154 L 63.455 36.262 L 61.937 36.262 L 60.308 33.289 L 59.391 33.289 L 59.391 36.262 L 58.131 36.262 L 58.163 29.23 Z M 66.746 29.23 L 71.418 29.23 L 71.418 30.322 L 68.006 30.322 L 68.006 32.107 L 71.243 32.107 L 71.243 33.154 L 68.006 33.154 L 68.006 35.131 L 71.598 35.131 L 71.598 36.242 L 66.746 36.242 L 66.746 29.231 Z M 29.959 1.094 L 24.815 1.094 L 24.815 22.136 L 29.958 22.136 L 29.958 1.094 Z M 43.547 6.712 L 40.853 13.936 L 46.177 13.936 Z M 49.227 22.123 L 47.579 17.994 L 39.386 17.994 L 37.829 22.136 L 32.273 22.136 L 41.15 1.094 L 46.119 1.094 L 54.912 22.136 Z M 68.913 6.566 C 68.453 5.995 67.864 5.542 67.194 5.244 C 66.555 4.934 65.856 4.767 65.146 4.756 C 64.8 4.755 64.454 4.783 64.112 4.839 C 63.78 4.899 63.461 5.016 63.169 5.186 C 62.893 5.348 62.656 5.567 62.471 5.828 C 62.268 6.128 62.168 6.487 62.187 6.848 C 62.174 7.161 62.251 7.47 62.407 7.741 C 62.569 8.002 62.79 8.222 63.052 8.384 C 63.379 8.582 63.726 8.748 64.086 8.878 C 64.486 9.026 64.933 9.18 65.43 9.34 C 66.147 9.578 66.897 9.835 67.672 10.124 C 68.432 10.401 69.148 10.786 69.798 11.267 C 70.441 11.744 70.979 12.347 71.381 13.039 C 71.831 13.84 72.055 14.748 72.027 15.665 C 72.055 16.751 71.823 17.828 71.349 18.805 C 70.923 19.663 70.304 20.411 69.539 20.988 C 68.765 21.574 67.889 22.01 66.955 22.273 C 65.971 22.55 64.954 22.691 63.931 22.69 C 62.431 22.692 60.942 22.425 59.538 21.9 C 58.208 21.429 57.002 20.663 56.01 19.66 L 59.357 16.269 C 59.92 16.938 60.618 17.48 61.405 17.861 C 62.185 18.271 63.05 18.491 63.931 18.503 C 64.302 18.504 64.673 18.466 65.036 18.388 C 65.372 18.316 65.692 18.184 65.979 17.996 C 66.253 17.819 66.476 17.573 66.625 17.283 C 66.791 16.953 66.873 16.587 66.865 16.217 C 66.874 15.855 66.768 15.5 66.561 15.203 C 66.332 14.897 66.044 14.639 65.714 14.445 C 65.279 14.184 64.818 13.968 64.338 13.803 C 63.716 13.592 63.092 13.389 62.465 13.193 C 61.789 12.975 61.127 12.718 60.481 12.423 C 59.845 12.135 59.259 11.75 58.743 11.28 C 58.226 10.801 57.809 10.225 57.515 9.584 C 57.188 8.82 57.031 7.994 57.056 7.164 C 57.026 6.116 57.274 5.079 57.774 4.158 C 58.238 3.342 58.881 2.642 59.654 2.11 C 60.455 1.564 61.348 1.166 62.29 0.935 C 63.257 0.686 64.25 0.561 65.25 0.563 C 66.498 0.568 67.737 0.785 68.913 1.205 C 70.125 1.618 71.239 2.273 72.189 3.131 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path><path d=\"M 22.32 11.618 C 22.32 9.537 21.699 7.502 20.535 5.771 C 19.369 4.038 17.715 2.689 15.783 1.895 C 14.387 1.321 12.885 1.05 11.377 1.1 L 1.108 1.1 L 1.108 22.142 L 11.73 22.142 C 13.121 22.143 14.498 21.872 15.784 21.343 C 17.068 20.815 18.235 20.04 19.22 19.062 C 20.203 18.086 20.983 16.925 21.516 15.646 C 22.047 14.37 22.321 13.002 22.32 11.62 L 22.319 11.62 Z M 22.319 11.619 L 11.003 20.606 L 6.299 15.95 L 6.299 7.295 L 11.003 2.633 Z M 17.497 9.439 L 11.68 7.121 L 11.68 4.81 L 17.496 9.44 Z M 11.649 8.495 L 19.577 11.616 L 11.649 14.73 Z M 10.389 10.03 L 7.947 7.462 L 7.947 7.442 L 10.389 5.034 Z M 10.138 11.603 L 7.566 8.932 L 7.566 14.274 L 10.138 11.604 Z M 11.688 16.111 L 17.503 13.799 L 11.688 18.422 Z M 7.96 15.796 L 10.396 13.228 L 10.396 18.243 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></svg>',svgContentId:9198628902,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1b3qz1y\",\"data-framer-name\":\"bijlpr\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 68 32\"><path d=\"M 0.523 25.833 L 0.523 0.784 L 5.86 0.784 C 8.526 0.784 11.233 0.663 13.701 1.911 C 16.129 3.159 17.841 5.816 17.841 8.593 C 17.841 10.927 16.765 13.222 14.616 14.268 C 16.149 14.765 17.358 15.654 18.205 16.814 Z M 19.603 20.735 C 19.623 20.977 19.633 21.222 19.633 21.471 C 19.633 24.37 18.318 26.825 16.05 28.555 C 13.701 30.286 10.716 30.447 7.889 30.528 L 0.523 30.528 L 0.523 30.47 Z M 23.643 18.688 L 29.11 15.896 L 29.11 30.356 L 23.643 30.356 L 23.643 18.687 Z M 42.488 9.06 L 47.955 6.272 L 47.955 21.554 C 47.955 23.848 47.875 25.62 46.519 27.632 C 45.082 29.805 42.647 31.052 40.013 31.052 C 35.703 31.052 31.872 28.035 31.792 23.485 L 37.26 23.485 C 37.539 24.774 38.457 25.538 39.774 25.538 C 42.049 25.538 42.488 23.848 42.488 21.916 Z M 67.313 24.984 L 67.313 30.336 L 52.83 30.336 L 52.83 3.793 L 58.297 0.993 L 58.297 24.986 L 67.313 24.985 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></svg>',svgContentId:11613913113,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-egtid4\",\"data-framer-name\":\"laadkompas\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 131 25\"><path d=\"M 6.45 8.274 L 9.209 10.896 L 2.445 23.2 L 16.565 16.188 L 13.805 13.567 L 20.57 1.262 L 6.449 8.274 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path><path d=\"M 20.559 1.267 L 11.496 9.735 L 11.496 14.601 L 2.45 23.19 L 2.445 23.199 L 16.568 16.189 L 13.8 13.559 L 20.569 1.261 L 20.559 1.266 Z M 3.883 16.484 C 3.055 15.08 2.615 13.48 2.61 11.85 C 2.61 6.747 6.754 2.593 11.854 2.575 L 14.981 0.941 C 13.975 0.65 12.934 0.501 11.887 0.5 C 5.63 0.5 0.537 5.592 0.537 11.85 C 0.537 14.378 1.376 16.709 2.779 18.597 L 3.882 16.484 Z\" fill=\"var(--token-112ba13e-725d-4731-a34e-2918e9999aa2, rgba(251, 250, 249, 0.6)) /* {&quot;name&quot;:&quot;Text Low&quot;} */\"></path><path d=\"M 19.891 7.219 C 20.719 8.623 21.158 10.223 21.163 11.853 C 21.163 16.956 17.019 21.11 11.919 21.127 L 8.793 22.761 C 9.778 23.044 10.813 23.203 11.888 23.203 C 18.146 23.203 23.236 18.111 23.236 11.853 C 23.236 9.325 22.398 6.994 20.996 5.105 L 19.89 7.22 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path><path d=\"M 28.844 4.008 L 31.384 4.008 L 31.384 16.392 L 28.844 16.392 Z M 42.008 7.86 L 42.008 16.392 L 39.501 16.392 L 39.501 15.13 C 39.243 15.567 38.879 15.91 38.408 16.156 C 37.913 16.408 37.364 16.535 36.809 16.526 C 36.069 16.526 35.413 16.346 34.841 15.988 C 34.28 15.628 33.837 15.118 33.511 14.457 C 33.197 13.784 33.041 13.01 33.041 12.135 C 33.041 11.26 33.197 10.48 33.511 9.795 C 33.837 9.112 34.285 8.585 34.857 8.215 C 35.435 7.831 36.115 7.632 36.809 7.642 C 37.404 7.642 37.937 7.772 38.408 8.029 C 38.861 8.27 39.238 8.631 39.5 9.072 L 39.5 7.861 L 42.008 7.861 Z M 37.55 14.591 C 38.178 14.591 38.66 14.378 38.997 13.951 C 39.333 13.526 39.501 12.909 39.501 12.101 C 39.501 11.293 39.333 10.676 38.997 10.251 C 38.66 9.813 38.177 9.594 37.55 9.594 C 36.922 9.594 36.434 9.818 36.086 10.267 C 35.738 10.716 35.564 11.338 35.564 12.135 C 35.564 12.931 35.733 13.542 36.069 13.969 C 36.417 14.384 36.91 14.591 37.549 14.591 Z M 52.607 7.86 L 52.607 16.392 L 50.1 16.392 L 50.1 15.13 C 49.842 15.567 49.477 15.91 49.006 16.156 C 48.512 16.408 47.963 16.535 47.408 16.526 C 46.668 16.526 46.011 16.346 45.438 15.988 C 44.878 15.628 44.435 15.118 44.11 14.457 C 43.796 13.784 43.639 13.01 43.639 12.135 C 43.639 11.26 43.796 10.48 44.109 9.795 C 44.435 9.112 44.884 8.585 45.456 8.215 C 46.034 7.831 46.714 7.632 47.408 7.642 C 48.002 7.642 48.535 7.772 49.006 8.029 C 49.459 8.27 49.838 8.631 50.1 9.072 L 50.1 7.861 L 52.607 7.861 Z M 48.147 14.591 C 48.776 14.591 49.258 14.378 49.595 13.951 C 49.931 13.526 50.1 12.909 50.1 12.101 C 50.1 11.293 49.931 10.676 49.595 10.251 C 49.258 9.813 48.776 9.594 48.148 9.594 C 47.52 9.594 47.032 9.818 46.684 10.267 C 46.336 10.716 46.162 11.338 46.162 12.135 C 46.162 12.931 46.331 13.542 46.667 13.969 C 47.015 14.384 47.508 14.591 48.147 14.591 Z M 63.205 4.008 L 63.205 16.392 L 60.698 16.392 L 60.698 15.13 C 60.44 15.567 60.075 15.91 59.604 16.156 C 59.11 16.408 58.561 16.535 58.006 16.526 C 57.276 16.526 56.626 16.341 56.054 15.971 C 55.482 15.589 55.034 15.062 54.708 14.389 C 54.394 13.705 54.237 12.926 54.237 12.051 C 54.237 11.176 54.394 10.407 54.708 9.745 C 55.033 9.072 55.476 8.556 56.038 8.197 C 56.609 7.827 57.266 7.642 58.006 7.642 C 58.55 7.635 59.088 7.762 59.571 8.012 C 60.023 8.231 60.403 8.576 60.664 9.005 L 60.664 4.008 Z M 58.746 14.59 C 59.374 14.59 59.856 14.377 60.193 13.95 C 60.53 13.513 60.698 12.89 60.698 12.083 C 60.698 11.287 60.524 10.675 60.176 10.249 C 59.84 9.812 59.363 9.593 58.746 9.593 C 58.118 9.593 57.63 9.806 57.282 10.233 C 56.935 10.659 56.761 11.264 56.761 12.049 C 56.761 12.857 56.935 13.485 57.282 13.934 C 57.63 14.372 58.118 14.59 58.746 14.59 Z M 71.145 16.392 L 67.796 12.572 L 67.796 16.392 L 65.256 16.392 L 65.256 4.008 L 67.796 4.008 L 67.796 11.528 L 70.993 7.878 L 74.039 7.878 L 70.421 11.966 L 74.257 16.392 Z M 78.89 16.526 C 77.982 16.526 77.186 16.346 76.501 15.988 C 75.838 15.638 75.293 15.1 74.937 14.44 C 74.577 13.767 74.398 12.982 74.398 12.084 C 74.398 11.187 74.578 10.402 74.937 9.729 C 75.293 9.069 75.837 8.53 76.5 8.18 C 77.185 7.82 77.981 7.641 78.89 7.641 C 79.787 7.641 80.572 7.821 81.245 8.18 C 81.906 8.527 82.446 9.067 82.793 9.728 C 83.163 10.401 83.349 11.186 83.349 12.083 C 83.349 12.981 83.163 13.766 82.793 14.439 C 82.446 15.1 81.906 15.64 81.245 15.987 C 80.572 16.346 79.787 16.525 78.89 16.525 Z M 78.89 14.591 C 79.519 14.591 79.996 14.384 80.32 13.969 C 80.657 13.554 80.826 12.926 80.826 12.084 C 80.826 11.254 80.657 10.632 80.321 10.217 C 79.996 9.79 79.519 9.577 78.891 9.577 C 78.251 9.577 77.763 9.79 77.427 10.217 C 77.09 10.632 76.922 11.254 76.922 12.084 C 76.922 13.755 77.578 14.591 78.891 14.591 Z M 95.405 7.642 C 96.381 7.642 97.105 7.939 97.575 8.534 C 98.058 9.117 98.299 10.014 98.299 11.226 L 98.299 16.392 L 95.759 16.392 L 95.759 11.31 C 95.759 10.716 95.663 10.29 95.473 10.031 C 95.282 9.762 94.968 9.628 94.53 9.628 C 94.014 9.628 93.616 9.808 93.336 10.166 C 93.056 10.525 92.916 11.03 92.916 11.68 L 92.916 16.392 L 90.375 16.392 L 90.375 11.31 C 90.375 10.727 90.273 10.3 90.072 10.031 C 89.881 9.762 89.572 9.628 89.146 9.628 C 88.63 9.628 88.226 9.808 87.935 10.166 C 87.655 10.525 87.515 11.03 87.515 11.68 L 87.515 16.392 L 84.973 16.392 L 84.973 10.3 C 84.973 9.391 84.929 8.578 84.839 7.86 L 87.229 7.86 L 87.379 9.139 C 87.622 8.672 87.997 8.286 88.456 8.029 C 88.927 7.77 89.466 7.641 90.072 7.641 C 91.339 7.641 92.18 8.168 92.595 9.223 C 92.875 8.74 93.263 8.359 93.757 8.079 C 94.257 7.788 94.826 7.637 95.405 7.641 Z M 105.52 7.642 C 106.249 7.642 106.9 7.832 107.472 8.214 C 108.044 8.584 108.487 9.112 108.801 9.796 C 109.126 10.48 109.289 11.26 109.289 12.135 C 109.289 13.01 109.132 13.784 108.818 14.457 C 108.504 15.118 108.061 15.629 107.489 15.987 C 106.916 16.347 106.26 16.527 105.52 16.527 C 104.965 16.536 104.416 16.409 103.921 16.156 C 103.469 15.928 103.095 15.571 102.845 15.13 L 102.845 20.026 L 100.304 20.026 L 100.304 10.3 C 100.304 9.391 100.259 8.578 100.169 7.86 L 102.559 7.86 L 102.727 9.273 C 102.949 8.77 103.327 8.352 103.804 8.079 C 104.308 7.787 104.881 7.641 105.52 7.641 Z M 104.796 14.592 C 105.425 14.592 105.907 14.384 106.243 13.969 C 106.58 13.542 106.748 12.931 106.748 12.135 C 106.748 11.338 106.574 10.715 106.227 10.267 C 105.89 9.818 105.413 9.594 104.796 9.594 C 104.168 9.594 103.68 9.813 103.333 10.25 C 102.996 10.676 102.828 11.293 102.828 12.101 C 102.828 12.909 102.996 13.526 103.333 13.951 C 103.68 14.378 104.168 14.591 104.796 14.591 Z M 119.466 7.86 L 119.466 16.392 L 116.959 16.392 L 116.959 15.13 C 116.701 15.567 116.336 15.91 115.865 16.156 C 115.371 16.408 114.822 16.535 114.267 16.526 C 113.527 16.526 112.87 16.346 112.298 15.988 C 111.737 15.628 111.294 15.118 110.969 14.457 C 110.655 13.784 110.498 13.01 110.498 12.135 C 110.498 11.26 110.655 10.48 110.969 9.795 C 111.294 9.112 111.743 8.585 112.315 8.215 C 112.893 7.832 113.573 7.632 114.267 7.642 C 114.861 7.642 115.394 7.772 115.865 8.029 C 116.336 8.287 116.701 8.635 116.959 9.072 L 116.959 7.861 L 119.466 7.861 Z M 115.007 14.591 C 115.635 14.591 116.118 14.378 116.454 13.951 C 116.791 13.526 116.959 12.909 116.959 12.101 C 116.959 11.293 116.791 10.676 116.454 10.251 C 116.118 9.813 115.635 9.594 115.007 9.594 C 114.379 9.594 113.891 9.818 113.543 10.267 C 113.196 10.716 113.022 11.338 113.022 12.135 C 113.022 12.931 113.19 13.542 113.527 13.969 C 113.874 14.384 114.368 14.591 115.007 14.591 Z M 124.781 16.526 C 123.166 16.526 121.893 16.178 120.962 15.483 L 121.635 13.716 C 122.083 14.042 122.582 14.294 123.132 14.473 C 123.677 14.641 124.245 14.726 124.815 14.726 C 125.252 14.726 125.589 14.658 125.824 14.524 C 126.06 14.389 126.178 14.193 126.178 13.935 C 126.184 13.735 126.089 13.545 125.925 13.43 C 125.757 13.307 125.46 13.2 125.033 13.11 L 123.637 12.79 C 122.818 12.611 122.212 12.325 121.82 11.933 C 121.438 11.54 121.248 11.018 121.248 10.368 C 121.248 9.841 121.399 9.37 121.702 8.955 C 122.016 8.54 122.448 8.22 122.998 7.995 C 123.547 7.76 124.181 7.642 124.899 7.642 C 125.505 7.642 126.107 7.739 126.682 7.928 C 127.243 8.097 127.772 8.358 128.247 8.702 L 127.54 10.402 C 127.126 10.111 126.673 9.878 126.194 9.712 C 125.773 9.56 125.33 9.48 124.882 9.476 C 124.467 9.476 124.142 9.549 123.906 9.695 C 123.671 9.841 123.553 10.043 123.553 10.301 C 123.553 10.491 123.62 10.648 123.755 10.771 C 123.9 10.884 124.153 10.979 124.512 11.058 L 125.942 11.378 C 126.817 11.579 127.451 11.882 127.843 12.286 C 128.236 12.69 128.432 13.228 128.432 13.901 C 128.432 14.709 128.107 15.348 127.456 15.819 C 126.806 16.291 125.914 16.526 124.781 16.526 Z\" fill=\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(253, 250, 247, 0.8)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></svg>',svgContentId:10999528288,withExternalLayout:true})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tptxjw\",\"data-framer-name\":\"Expertise\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-cnx0er\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ygzwus\",\"data-framer-name\":\"Text-Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-29xhh7\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1indxk\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1eytmtv\",\"data-styles-preset\":\"SaPUTEjxF\",style:{\"--framer-text-color\":\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(255, 255, 255, 0.8))\"},children:\"As a senior digital product designer I work on responsive websites, iOS and Android apps, and\\xa0scalable design systems.\"})}),className:\"framer-1b9uebe\",\"data-framer-name\":\"My name is Jan-Paul Koudstaal. I\u2019m a freelance digital designer with over 20 years of experience. I lead design across a wide range of projects, from responsive websites and design systems to iOS and Android apps.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LBrzMDCpd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1eytmtv\",\"data-styles-preset\":\"SaPUTEjxF\",style:{\"--framer-text-color\":\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(255, 255, 255, 0.8))\"},children:[\"Check out \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jMKspSsPc\"},motionChild:true,nodeId:\"RNEcegVQ6\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-57rakp\",\"data-styles-preset\":\"zMpsiMOLk\",children:\"my work\"})}),\" or read more\\xa0\",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BCpU5sTqT\"},motionChild:true,nodeId:\"RNEcegVQ6\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-57rakp\",\"data-styles-preset\":\"zMpsiMOLk\",children:\"about\\xa0me\"})}),\".\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1eytmtv\",\"data-styles-preset\":\"SaPUTEjxF\",style:{\"--framer-text-color\":\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(255, 255, 255, 0.8))\"},children:[\"Check out \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jMKspSsPc\"},motionChild:true,nodeId:\"RNEcegVQ6\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-57rakp\",\"data-styles-preset\":\"zMpsiMOLk\",children:\"my work\"})}),\" or\\xa0read\\xa0more\\xa0\",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BCpU5sTqT\"},motionChild:true,nodeId:\"RNEcegVQ6\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-57rakp\",\"data-styles-preset\":\"zMpsiMOLk\",children:\"about\\xa0me\"})}),\".\"]})}),className:\"framer-brux18\",\"data-framer-name\":\"My name is Jan-Paul Koudstaal. I\u2019m a freelance digital designer with over 20 years of experience. I lead design across a wide range of projects, from responsive websites and design systems to iOS and Android apps.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tduei8\",\"data-framer-name\":\"Expertise\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-2n1qad\",\"data-styles-preset\":\"MdL0l4ct5\",style:{\"--framer-text-color\":\"var(--token-da5f1ac1-1c4a-4c8d-97bc-e00560821a24, rgb(53, 158, 164))\"},children:\"I can help you with\"})}),className:\"framer-o3l4uj\",\"data-framer-name\":\"expertise\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1esziax\",\"data-framer-name\":\"Experites List\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1eytmtv\",\"data-styles-preset\":\"SaPUTEjxF\",style:{\"--framer-text-color\":\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(255, 255, 255, 0.8))\"},children:\"\u2013 Concept development\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1eytmtv\",\"data-styles-preset\":\"SaPUTEjxF\",style:{\"--framer-text-color\":\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(255, 255, 255, 0.8))\"},children:\"\u2013 UX/UI design\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1eytmtv\",\"data-styles-preset\":\"SaPUTEjxF\",style:{\"--framer-text-color\":\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(255, 255, 255, 0.8))\"},children:\"\u2013 Visual design\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1eytmtv\",\"data-styles-preset\":\"SaPUTEjxF\",style:{\"--framer-text-color\":\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(255, 255, 255, 0.8))\"},children:\"\u2013 Prototyping\"})]}),className:\"framer-47lcxt\",\"data-framer-name\":\"\u2014 Concept development \u2014 User Experience design \u2014 Visual design \u2014 Prototyping\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1eytmtv\",\"data-styles-preset\":\"SaPUTEjxF\",style:{\"--framer-text-color\":\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(255, 255, 255, 0.8))\"},children:\"\u2013 Creative direction\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1eytmtv\",\"data-styles-preset\":\"SaPUTEjxF\",style:{\"--framer-text-color\":\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(255, 255, 255, 0.8))\"},children:\"\u2013 Design systems\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1eytmtv\",\"data-styles-preset\":\"SaPUTEjxF\",style:{\"--framer-text-color\":\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(255, 255, 255, 0.8))\"},children:\"\u2013 Design consultation\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1eytmtv\",\"data-styles-preset\":\"SaPUTEjxF\",style:{\"--framer-text-color\":\"var(--token-c94dc2f8-a307-410d-8566-2d8e18d135c5, rgba(255, 255, 255, 0.8))\"},children:\"\u2013 Pitching & presenting\"})]}),className:\"framer-1xlto9r\",\"data-framer-name\":\"\u2014 Concept development \u2014 User Experience design \u2014 Visual design \u2014 Prototyping\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k4mkxf\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1akpbrk-container\",isModuleExternal:true,nodeId:\"txwEUDZdK\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation16,children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,controls:false,height:\"100%\",id:\"txwEUDZdK\",isMixedBorderRadius:false,layoutId:\"txwEUDZdK\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/svslSvX1mFURdc5fjB3UjqoVniU.jpg\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/dtGuko6TwCpRkTDw5y48nMlNP8.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:16,topRightRadius:16,volume:25,width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v6wg24\",\"data-framer-name\":\"Projects\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9784b0\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Y4TAWFWDM\",data:Work,type:\"Collection\"},orderBy:[{collection:\"Y4TAWFWDM\",name:\"V9_FU5k64\",type:\"Identifier\"}],select:[{collection:\"Y4TAWFWDM\",name:\"BT9AMyqVo\",type:\"Identifier\"},{collection:\"Y4TAWFWDM\",name:\"nkqCq5tdt\",type:\"Identifier\"},{collection:\"Y4TAWFWDM\",name:\"p9zea4nRj\",type:\"Identifier\"},{collection:\"Y4TAWFWDM\",name:\"ZGyvILccs\",type:\"Identifier\"},{collection:\"Y4TAWFWDM\",name:\"EXPXtDaen\",type:\"Identifier\"},{collection:\"Y4TAWFWDM\",name:\"zvt4VBmgk\",type:\"Identifier\"},{collection:\"Y4TAWFWDM\",name:\"xnodaKaot\",type:\"Identifier\"},{collection:\"Y4TAWFWDM\",name:\"LJoyePgZk\",type:\"Identifier\"},{collection:\"Y4TAWFWDM\",name:\"LOiuthnCF\",type:\"Identifier\"},{collection:\"Y4TAWFWDM\",name:\"id\",type:\"Identifier\"}],where:{collection:\"Y4TAWFWDM\",name:\"V_uVF4Hwr\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({BT9AMyqVo:BT9AMyqVoY4TAWFWDM,EXPXtDaen:EXPXtDaenY4TAWFWDM,id:idY4TAWFWDM,LJoyePgZk:LJoyePgZkY4TAWFWDM,LOiuthnCF:LOiuthnCFY4TAWFWDM,nkqCq5tdt:nkqCq5tdtY4TAWFWDM,p9zea4nRj:p9zea4nRjY4TAWFWDM,xnodaKaot:xnodaKaotY4TAWFWDM,ZGyvILccs:ZGyvILccsY4TAWFWDM,zvt4VBmgk:zvt4VBmgkY4TAWFWDM},index)=>{nkqCq5tdtY4TAWFWDM??=\"\";p9zea4nRjY4TAWFWDM??=\"\";ZGyvILccsY4TAWFWDM??=\"\";EXPXtDaenY4TAWFWDM??=\"#09F\";zvt4VBmgkY4TAWFWDM??=\"#09F\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Y4TAWFWDM-${idY4TAWFWDM}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ZGyvILccs:ZGyvILccsY4TAWFWDM},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ZGyvILccs:ZGyvILccsY4TAWFWDM},webPageId:\"AaH1lCLky\"},implicitPathVariables:undefined},{href:{pathVariables:{ZGyvILccs:ZGyvILccsY4TAWFWDM},webPageId:\"AaH1lCLky\"},implicitPathVariables:undefined},{href:{pathVariables:{ZGyvILccs:ZGyvILccsY4TAWFWDM},webPageId:\"AaH1lCLky\"},implicitPathVariables:undefined},{href:{pathVariables:{ZGyvILccs:ZGyvILccsY4TAWFWDM},webPageId:\"AaH1lCLky\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ezb0E_mrV:{y:(componentViewport?.y||0)+0+0+0+2399.3999999999996+80+0+0+0},LBrzMDCpd:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1248px)`,y:(componentViewport?.y||0)+0+0+0+2983.3999999999996+24+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1248px)`,y:(componentViewport?.y||0)+0+0+0+2147.384482758621+80+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q52oml-container\",nodeId:\"QsAtcsEll\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ezb0E_mrV:{PZwrdFWUO:resolvedLinks[2],variant:\"LoJs1WRk5\"},LBrzMDCpd:{PZwrdFWUO:resolvedLinks[3],variant:\"LoJs1WRk5\"},mrsBovbnL:{PZwrdFWUO:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(WorkCard3,{beky3r2L3:p9zea4nRjY4TAWFWDM,fCmZay0cs:toResponsiveImage(BT9AMyqVoY4TAWFWDM),height:\"100%\",id:\"QsAtcsEll\",Jw43ICAH0:nkqCq5tdtY4TAWFWDM,layoutId:\"QsAtcsEll\",pXuO35rGh:toResponsiveImage(LOiuthnCFY4TAWFWDM),PZwrdFWUO:resolvedLinks[0],qn9Sho1Qd:EXPXtDaenY4TAWFWDM,S3MAloPgi:toResponsiveImage(xnodaKaotY4TAWFWDM),style:{width:\"100%\"},t0vrTa82Q:toResponsiveImage(LJoyePgZkY4TAWFWDM),variant:\"BJ91pZiPZ\",width:\"100%\",wrqGZ7Iyh:zvt4VBmgkY4TAWFWDM})})})})})})})},idY4TAWFWDM);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fvp9g1\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pfd26g\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ksrm5i\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13g4j2q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dF_cd9vqg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ezb0E_mrV:{paddingLeft:40,paddingRight:40},LBrzMDCpd:{fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:24},paddingLeft:0,paddingRight:0,paddingTop:0,sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"stretch\"}},mrsBovbnL:{paddingLeft:40,paddingRight:40}},children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:24},gap:40,height:\"100%\",id:\"dF_cd9vqg\",layoutId:\"dF_cd9vqg\",padding:100,paddingBottom:0,paddingLeft:100,paddingPerSide:true,paddingRight:100,paddingTop:40,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:278,width:\"460px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i3jtgu-container\",\"data-framer-name\":\"Quote 1\",inComponentSlot:true,name:\"Quote 1\",nodeId:\"WVnRLdPgG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Quote,{eR3Q3tL5z:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:\"https://nl.linkedin.com/in/stefvanderfeen\",motionChild:true,nodeId:\"WVnRLdPgG\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Stef van der Feen\"})})})}),height:\"100%\",id:\"WVnRLdPgG\",KuFP1WcRL:\"Head of Design at bol\",layoutId:\"WVnRLdPgG\",name:\"Quote 1\",Oem60Da1X:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"JP is one of the most creative and passionate designers I\u2019ve worked with. He has a clear vision, translates it into strong designs, and understands product, business, and customers.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"At bol, he inspires and mentors many designers, raising our design quality.\u201D\"})]}),style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:338,width:\"460px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-nunpkn-container\",\"data-framer-name\":\"Quote 2\",inComponentSlot:true,name:\"Quote 2\",nodeId:\"ZcTt466fm\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Quote,{eR3Q3tL5z:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:\"https://nl.linkedin.com/in/bramvanrijen\",motionChild:true,nodeId:\"ZcTt466fm\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Bram van Rijen\"})})})}),fTKuurrYC:addImageAlt({src:\"https://framerusercontent.com/images/WnVFqGYzaqpM2b3imberJpG8yA.jpeg\"},\"\"),height:\"100%\",id:\"ZcTt466fm\",KuFP1WcRL:\"Head of Design at Hoppinger\",layoutId:\"ZcTt466fm\",name:\"Quote 2\",Oem60Da1X:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Jan-Paul is a passionate designer with a lot of knowledge of the industry. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"He sinks his teeth in complex design challenges and always comes up with great solutions. He\u2019s a great guy to collaborate with and a valuable asset to any team.\u201D\"})]}),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:278,width:\"460px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ol2gi4-container\",\"data-framer-name\":\"Quote 6\",inComponentSlot:true,name:\"Quote 6\",nodeId:\"IDt4KX5zA\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Quote,{eR3Q3tL5z:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:\"https://nl.linkedin.com/in/gideonheilbron\",motionChild:true,nodeId:\"IDt4KX5zA\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Gideon Heilbron\"})})})}),fTKuurrYC:addImageAlt({src:\"https://framerusercontent.com/images/DHbwBDhC2VE97HwdVVZdZZtOo.jpeg\"},\"\"),height:\"100%\",id:\"IDt4KX5zA\",KuFP1WcRL:\"Freelance Senior Front-end Developer\",layoutId:\"IDt4KX5zA\",name:\"Quote 6\",Oem60Da1X:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Jan-Paul is an amazing designer who knows how to create beautiful and user-friendly websites. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"He always finds a way to elevate the quality of a project to a higher level, while being able to explain all the steps and choices he made in his design process.\u201D\"})]}),style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:278,width:\"460px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-oj97kq-container\",\"data-framer-name\":\"Quote 3\",inComponentSlot:true,name:\"Quote 3\",nodeId:\"zRBrUhFhO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Quote,{eR3Q3tL5z:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:\"https://rubenbos.co/\",motionChild:true,nodeId:\"zRBrUhFhO\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Ruben Bos\"})})})}),fTKuurrYC:addImageAlt({src:\"https://framerusercontent.com/images/QvEdTJ17xAMizKfQmFCGEYSs.jpg\"},\"\"),height:\"100%\",id:\"zRBrUhFhO\",KuFP1WcRL:\"Former Creative Director\",layoutId:\"zRBrUhFhO\",name:\"Quote 3\",Oem60Da1X:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"JP is an excellent designer and active company promoter, a valuable asset to any agency.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"I\u2019ve worked with him for years and know him to have great attention to detail and a commitment to quality.\u201D\"})]}),style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:278,width:\"460px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tk7o43-container\",\"data-framer-name\":\"Quote 4\",inComponentSlot:true,name:\"Quote 4\",nodeId:\"yNO4rahmN\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Quote,{eR3Q3tL5z:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/ristyle/\",motionChild:true,nodeId:\"yNO4rahmN\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Richard de Vos\"})})})}),fTKuurrYC:addImageAlt({src:\"https://framerusercontent.com/images/AlrGtzNQOsfQiI3ZJi7mReFLwoY.png\",srcSet:\"https://framerusercontent.com/images/AlrGtzNQOsfQiI3ZJi7mReFLwoY.png?scale-down-to=512 512w,https://framerusercontent.com/images/AlrGtzNQOsfQiI3ZJi7mReFLwoY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AlrGtzNQOsfQiI3ZJi7mReFLwoY.png 1564w\"},\"\"),height:\"100%\",id:\"yNO4rahmN\",KuFP1WcRL:\"Freelance Product Design Lead\",layoutId:\"yNO4rahmN\",name:\"Quote 4\",Oem60Da1X:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Jan-Paul is a very talented and passionate designer, always trying to go for the extra mile in his designs.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Besides his awesome designs, he\u2019s also a very social personality and a real team player.\u201D\"})]}),style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:278,width:\"460px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-y2qyib-container\",\"data-framer-name\":\"Quote 5\",inComponentSlot:true,name:\"Quote 5\",nodeId:\"NzEmhn11j\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Quote,{eR3Q3tL5z:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:\"https://nl.linkedin.com/in/ivar-van-den-broek-a3b41110\",motionChild:true,nodeId:\"NzEmhn11j\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Ivar van den Broek\"})})})}),fTKuurrYC:addImageAlt({src:\"https://framerusercontent.com/images/4rLvOncHeOloaq2IdUo6qEScyIM.jpeg\"},\"\"),height:\"100%\",id:\"NzEmhn11j\",KuFP1WcRL:\"Product Designer turned teacher\",layoutId:\"NzEmhn11j\",name:\"Quote 5\",Oem60Da1X:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Jan-Paul is a self-critical perfectionist, always striving to improve his own work and help others.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"He\u2019s talented at designing beautiful, user-friendly interfaces and has a deep understanding of digital.\u201D\"})]}),style:{width:\"100%\"},width:\"100%\"})})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o9hwff\",\"data-framer-name\":\"Helper\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ezb0E_mrV:{height:400,y:600},LBrzMDCpd:{height:459.7156398104265,y:540.2843601895735}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:460,width:\"100vw\",y:540,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15u6j73-container\",id:elementId,layoutScroll:true,nodeId:\"Nh7VOggtA\",ref:ref1,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LBrzMDCpd:{variant:\"oLkkS7sK4\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Nh7VOggtA\",layoutId:\"Nh7VOggtA\",style:{height:\"100%\",width:\"100%\"},variant:\"SOBJxJSem\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Y8i9R.framer-lux5qc, .framer-Y8i9R .framer-lux5qc { display: block; }\",\".framer-Y8i9R.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-885e3888-1a13-468d-8a89-5610a31c1d4a, #f8ead3); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-Y8i9R .framer-1mtp6bo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; max-width: 1920px; overflow: hidden; padding: 0px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-Y8i9R .framer-13nu9q6-container, .framer-Y8i9R .framer-q52oml-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-mwlk0d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; pointer-events: none; position: relative; width: 100%; z-index: 2; }\",\".framer-Y8i9R .framer-1jxci8i { align-content: center; align-items: center; background-color: var(--token-885e3888-1a13-468d-8a89-5610a31c1d4a, #031326); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 89.97844827586206vh; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-1th25qc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Y8i9R .framer-5vm7fr, .framer-Y8i9R .framer-ygzwus { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-1fa7o3v { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: var(--framer-aspect-ratio-supported, 560px); justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Y8i9R .framer-f73tfi { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-1hrf7lt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Y8i9R .framer-n2bkpt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-f50bok { --framer-paragraph-spacing: 8px; flex: none; height: auto; opacity: 0.9; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Y8i9R .framer-jdpavp, .framer-Y8i9R .framer-1b9uebe, .framer-Y8i9R .framer-brux18 { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Y8i9R .framer-2ab0xv { bottom: -154px; flex: none; height: 55px; left: 139px; position: absolute; width: 151px; z-index: 1; }\",\".framer-Y8i9R .framer-1gbuhbv { align-content: center; align-items: center; background-color: var(--token-885e3888-1a13-468d-8a89-5610a31c1d4a, #031326); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-15b8li8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-1gqsxq6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Y8i9R .framer-v3wle9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-1qizmmx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-7591y2, .framer-Y8i9R .framer-o3l4uj { --framer-paragraph-spacing: 8px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Y8i9R .framer-ep7no2-container { flex: none; height: 80px; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-szbwtw { background-color: rgba(0, 0, 0, 0); height: 22px; position: relative; width: 140px; }\",\".framer-Y8i9R .framer-1k4fq06 { background-color: rgba(0, 0, 0, 0); height: 43px; position: relative; width: 142px; }\",\".framer-Y8i9R .framer-1ho1n9k { background-color: rgba(0, 0, 0, 0); height: 30px; position: relative; width: 124px; }\",\".framer-Y8i9R .framer-wrn1se { height: 46px; position: relative; width: 103px; }\",\".framer-Y8i9R .framer-1pbfb1f { background-color: rgba(0, 0, 0, 0); height: 43px; position: relative; width: 97px; }\",\".framer-Y8i9R .framer-1muwngs { height: 26px; position: relative; width: 99px; }\",\".framer-Y8i9R .framer-ld3ymr { background-color: rgba(0, 0, 0, 0); height: 28px; position: relative; width: 120px; }\",\".framer-Y8i9R .framer-jazuvv { height: 33px; position: relative; width: 185px; }\",\".framer-Y8i9R .framer-196isrf { background-color: rgba(0, 0, 0, 0); height: 37px; position: relative; width: 73px; }\",\".framer-Y8i9R .framer-1b3qz1y { height: 32px; position: relative; width: 68px; }\",\".framer-Y8i9R .framer-egtid4 { height: 25px; position: relative; width: 131px; }\",\".framer-Y8i9R .framer-tptxjw { align-content: center; align-items: center; background-color: var(--token-5c465288-5223-49df-84b2-4cb45cc97e29, #051e3b); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-cnx0er { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-29xhh7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Y8i9R .framer-1indxk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-1tduei8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-1esziax { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-47lcxt, .framer-Y8i9R .framer-1xlto9r { --framer-paragraph-spacing: 22px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Y8i9R .framer-k4mkxf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Y8i9R .framer-1akpbrk-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 560px); position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Y8i9R .framer-v6wg24 { align-content: center; align-items: center; background-color: var(--token-885e3888-1a13-468d-8a89-5610a31c1d4a, #031326); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-9784b0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; max-width: 1248px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-fvp9g1 { align-content: center; align-items: center; background-color: var(--token-885e3888-1a13-468d-8a89-5610a31c1d4a, #031326); border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; pointer-events: auto; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Y8i9R .framer-1pfd26g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-ksrm5i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-13g4j2q-container { flex: none; height: 490px; max-width: 1920px; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-1i3jtgu-container, .framer-Y8i9R .framer-ol2gi4-container, .framer-Y8i9R .framer-oj97kq-container, .framer-Y8i9R .framer-1tk7o43-container, .framer-Y8i9R .framer-y2qyib-container { height: auto; position: relative; width: 460px; }\",\".framer-Y8i9R .framer-nunpkn-container { height: 338px; position: relative; width: 460px; }\",\".framer-Y8i9R .framer-o9hwff { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 360px; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; pointer-events: none; position: relative; width: 100%; }\",\".framer-Y8i9R .framer-15u6j73-container { bottom: 0px; flex: none; height: 46vh; left: calc(50.00000000000002% - 100% / 2); position: fixed; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Y8i9R.framer-72rtr7, .framer-Y8i9R .framer-1mtp6bo, .framer-Y8i9R .framer-mwlk0d, .framer-Y8i9R .framer-1jxci8i, .framer-Y8i9R .framer-1th25qc, .framer-Y8i9R .framer-5vm7fr, .framer-Y8i9R .framer-1fa7o3v, .framer-Y8i9R .framer-1hrf7lt, .framer-Y8i9R .framer-n2bkpt, .framer-Y8i9R .framer-1gbuhbv, .framer-Y8i9R .framer-15b8li8, .framer-Y8i9R .framer-1gqsxq6, .framer-Y8i9R .framer-v3wle9, .framer-Y8i9R .framer-1qizmmx, .framer-Y8i9R .framer-tptxjw, .framer-Y8i9R .framer-cnx0er, .framer-Y8i9R .framer-ygzwus, .framer-Y8i9R .framer-29xhh7, .framer-Y8i9R .framer-1indxk, .framer-Y8i9R .framer-1tduei8, .framer-Y8i9R .framer-1esziax, .framer-Y8i9R .framer-k4mkxf, .framer-Y8i9R .framer-v6wg24, .framer-Y8i9R .framer-9784b0, .framer-Y8i9R .framer-fvp9g1, .framer-Y8i9R .framer-1pfd26g, .framer-Y8i9R .framer-ksrm5i, .framer-Y8i9R .framer-o9hwff { gap: 0px; } .framer-Y8i9R.framer-72rtr7 > *, .framer-Y8i9R .framer-mwlk0d > *, .framer-Y8i9R .framer-1gbuhbv > *, .framer-Y8i9R .framer-tptxjw > *, .framer-Y8i9R .framer-k4mkxf > *, .framer-Y8i9R .framer-v6wg24 > *, .framer-Y8i9R .framer-fvp9g1 > *, .framer-Y8i9R .framer-o9hwff > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Y8i9R.framer-72rtr7 > :first-child, .framer-Y8i9R .framer-1mtp6bo > :first-child, .framer-Y8i9R .framer-mwlk0d > :first-child, .framer-Y8i9R .framer-1th25qc > :first-child, .framer-Y8i9R .framer-1fa7o3v > :first-child, .framer-Y8i9R .framer-1hrf7lt > :first-child, .framer-Y8i9R .framer-n2bkpt > :first-child, .framer-Y8i9R .framer-1gbuhbv > :first-child, .framer-Y8i9R .framer-15b8li8 > :first-child, .framer-Y8i9R .framer-1gqsxq6 > :first-child, .framer-Y8i9R .framer-v3wle9 > :first-child, .framer-Y8i9R .framer-1qizmmx > :first-child, .framer-Y8i9R .framer-tptxjw > :first-child, .framer-Y8i9R .framer-cnx0er > :first-child, .framer-Y8i9R .framer-29xhh7 > :first-child, .framer-Y8i9R .framer-1indxk > :first-child, .framer-Y8i9R .framer-1tduei8 > :first-child, .framer-Y8i9R .framer-k4mkxf > :first-child, .framer-Y8i9R .framer-v6wg24 > :first-child, .framer-Y8i9R .framer-9784b0 > :first-child, .framer-Y8i9R .framer-fvp9g1 > :first-child, .framer-Y8i9R .framer-1pfd26g > :first-child, .framer-Y8i9R .framer-ksrm5i > :first-child, .framer-Y8i9R .framer-o9hwff > :first-child { margin-top: 0px; } .framer-Y8i9R.framer-72rtr7 > :last-child, .framer-Y8i9R .framer-1mtp6bo > :last-child, .framer-Y8i9R .framer-mwlk0d > :last-child, .framer-Y8i9R .framer-1th25qc > :last-child, .framer-Y8i9R .framer-1fa7o3v > :last-child, .framer-Y8i9R .framer-1hrf7lt > :last-child, .framer-Y8i9R .framer-n2bkpt > :last-child, .framer-Y8i9R .framer-1gbuhbv > :last-child, .framer-Y8i9R .framer-15b8li8 > :last-child, .framer-Y8i9R .framer-1gqsxq6 > :last-child, .framer-Y8i9R .framer-v3wle9 > :last-child, .framer-Y8i9R .framer-1qizmmx > :last-child, .framer-Y8i9R .framer-tptxjw > :last-child, .framer-Y8i9R .framer-cnx0er > :last-child, .framer-Y8i9R .framer-29xhh7 > :last-child, .framer-Y8i9R .framer-1indxk > :last-child, .framer-Y8i9R .framer-1tduei8 > :last-child, .framer-Y8i9R .framer-k4mkxf > :last-child, .framer-Y8i9R .framer-v6wg24 > :last-child, .framer-Y8i9R .framer-9784b0 > :last-child, .framer-Y8i9R .framer-fvp9g1 > :last-child, .framer-Y8i9R .framer-1pfd26g > :last-child, .framer-Y8i9R .framer-ksrm5i > :last-child, .framer-Y8i9R .framer-o9hwff > :last-child { margin-bottom: 0px; } .framer-Y8i9R .framer-1mtp6bo > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Y8i9R .framer-1jxci8i > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Y8i9R .framer-1jxci8i > :first-child, .framer-Y8i9R .framer-5vm7fr > :first-child, .framer-Y8i9R .framer-ygzwus > :first-child, .framer-Y8i9R .framer-1esziax > :first-child { margin-left: 0px; } .framer-Y8i9R .framer-1jxci8i > :last-child, .framer-Y8i9R .framer-5vm7fr > :last-child, .framer-Y8i9R .framer-ygzwus > :last-child, .framer-Y8i9R .framer-1esziax > :last-child { margin-right: 0px; } .framer-Y8i9R .framer-1th25qc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Y8i9R .framer-5vm7fr > *, .framer-Y8i9R .framer-ygzwus > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-Y8i9R .framer-1fa7o3v > *, .framer-Y8i9R .framer-1qizmmx > *, .framer-Y8i9R .framer-1indxk > *, .framer-Y8i9R .framer-1tduei8 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Y8i9R .framer-1hrf7lt > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Y8i9R .framer-n2bkpt > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Y8i9R .framer-15b8li8 > *, .framer-Y8i9R .framer-1gqsxq6 > *, .framer-Y8i9R .framer-v3wle9 > *, .framer-Y8i9R .framer-cnx0er > *, .framer-Y8i9R .framer-9784b0 > *, .framer-Y8i9R .framer-1pfd26g > *, .framer-Y8i9R .framer-ksrm5i > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Y8i9R .framer-29xhh7 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Y8i9R .framer-1esziax > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 1024px) and (max-width: 1279px) { .framer-Y8i9R.framer-72rtr7 { width: 1024px; } .framer-Y8i9R .framer-1th25qc { flex: 1 0 0px; padding: 0px 40px 0px 40px; width: 1px; } .framer-Y8i9R .framer-5vm7fr, .framer-Y8i9R .framer-ygzwus { gap: 40px; } .framer-Y8i9R .framer-1fa7o3v, .framer-Y8i9R .framer-1akpbrk-container { height: var(--framer-aspect-ratio-supported, 452px); } .framer-Y8i9R .framer-1gqsxq6 { padding: 0px 40px 0px 40px; width: 100%; } .framer-Y8i9R .framer-tptxjw { padding: 40px; } .framer-Y8i9R .framer-ksrm5i { padding: 0px 40px 0px 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Y8i9R .framer-5vm7fr, .framer-Y8i9R .framer-ygzwus { gap: 0px; } .framer-Y8i9R .framer-5vm7fr > *, .framer-Y8i9R .framer-ygzwus > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Y8i9R .framer-5vm7fr > :first-child, .framer-Y8i9R .framer-ygzwus > :first-child { margin-left: 0px; } .framer-Y8i9R .framer-5vm7fr > :last-child, .framer-Y8i9R .framer-ygzwus > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 768px) and (max-width: 1023px) { .framer-Y8i9R.framer-72rtr7 { width: 768px; } .framer-Y8i9R .framer-1jxci8i { height: min-content; padding: 80px 40px 0px 40px; } .framer-Y8i9R .framer-1th25qc { flex: 1 0 0px; gap: 0px; width: 1px; } .framer-Y8i9R .framer-5vm7fr, .framer-Y8i9R .framer-ygzwus { flex-direction: column; gap: 40px; } .framer-Y8i9R .framer-1fa7o3v { flex: none; height: var(--framer-aspect-ratio-supported, 688px); order: 1; width: 100%; } .framer-Y8i9R .framer-1hrf7lt { flex: none; order: 0; width: 100%; } .framer-Y8i9R .framer-15b8li8 { gap: 0px; padding: 0px; } .framer-Y8i9R .framer-1gqsxq6 { gap: 0px; width: 100%; } .framer-Y8i9R .framer-1qizmmx, .framer-Y8i9R .framer-tptxjw { padding: 40px; } .framer-Y8i9R .framer-cnx0er, .framer-Y8i9R .framer-ksrm5i { gap: 0px; } .framer-Y8i9R .framer-29xhh7, .framer-Y8i9R .framer-k4mkxf { flex: none; width: 100%; } .framer-Y8i9R .framer-1akpbrk-container { height: var(--framer-aspect-ratio-supported, 688px); } .framer-Y8i9R .framer-fvp9g1 { padding: 24px 0px 40px 0px; } .framer-Y8i9R .framer-1pfd26g { gap: 0px; padding: 0px 0px 40px 0px; } .framer-Y8i9R .framer-o9hwff { height: 400px; padding: 24px 0px 40px 0px; } .framer-Y8i9R .framer-15u6j73-container { height: 400px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Y8i9R .framer-1th25qc, .framer-Y8i9R .framer-5vm7fr, .framer-Y8i9R .framer-15b8li8, .framer-Y8i9R .framer-1gqsxq6, .framer-Y8i9R .framer-cnx0er, .framer-Y8i9R .framer-ygzwus, .framer-Y8i9R .framer-1pfd26g, .framer-Y8i9R .framer-ksrm5i { gap: 0px; } .framer-Y8i9R .framer-1th25qc > *, .framer-Y8i9R .framer-15b8li8 > *, .framer-Y8i9R .framer-1gqsxq6 > *, .framer-Y8i9R .framer-cnx0er > *, .framer-Y8i9R .framer-1pfd26g > *, .framer-Y8i9R .framer-ksrm5i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Y8i9R .framer-1th25qc > :first-child, .framer-Y8i9R .framer-5vm7fr > :first-child, .framer-Y8i9R .framer-15b8li8 > :first-child, .framer-Y8i9R .framer-1gqsxq6 > :first-child, .framer-Y8i9R .framer-cnx0er > :first-child, .framer-Y8i9R .framer-ygzwus > :first-child, .framer-Y8i9R .framer-1pfd26g > :first-child, .framer-Y8i9R .framer-ksrm5i > :first-child { margin-top: 0px; } .framer-Y8i9R .framer-1th25qc > :last-child, .framer-Y8i9R .framer-5vm7fr > :last-child, .framer-Y8i9R .framer-15b8li8 > :last-child, .framer-Y8i9R .framer-1gqsxq6 > :last-child, .framer-Y8i9R .framer-cnx0er > :last-child, .framer-Y8i9R .framer-ygzwus > :last-child, .framer-Y8i9R .framer-1pfd26g > :last-child, .framer-Y8i9R .framer-ksrm5i > :last-child { margin-bottom: 0px; } .framer-Y8i9R .framer-5vm7fr > *, .framer-Y8i9R .framer-ygzwus > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\",\"@media (max-width: 767px) { .framer-Y8i9R.framer-72rtr7 { background-color: var(--token-5c465288-5223-49df-84b2-4cb45cc97e29, #051e3b); width: 390px; } .framer-Y8i9R .framer-1jxci8i { height: min-content; padding: 80px 24px 16px 24px; } .framer-Y8i9R .framer-1th25qc { gap: 24px; width: 100%; } .framer-Y8i9R .framer-5vm7fr { flex-direction: column; gap: 24px; } .framer-Y8i9R .framer-1fa7o3v { flex: none; height: var(--framer-aspect-ratio-supported, 342px); order: 1; width: 100%; } .framer-Y8i9R .framer-1hrf7lt, .framer-Y8i9R .framer-k4mkxf { flex: none; order: 2; width: 100%; } .framer-Y8i9R .framer-15b8li8 { padding: 0px; } .framer-Y8i9R .framer-1gqsxq6 { gap: 24px; padding: 24px; width: 100%; } .framer-Y8i9R .framer-tptxjw, .framer-Y8i9R .framer-v6wg24 { padding: 24px; } .framer-Y8i9R .framer-ygzwus { flex-direction: column; gap: 48px; } .framer-Y8i9R .framer-29xhh7 { flex: none; order: 0; width: 100%; } .framer-Y8i9R .framer-1esziax { flex-direction: column; gap: 16px; } .framer-Y8i9R .framer-47lcxt, .framer-Y8i9R .framer-1xlto9r { flex: none; width: 100%; } .framer-Y8i9R .framer-1akpbrk-container { height: var(--framer-aspect-ratio-supported, 342px); } .framer-Y8i9R .framer-9784b0 { gap: 24px; } .framer-Y8i9R .framer-fvp9g1 { padding: 24px 0px 40px 0px; } .framer-Y8i9R .framer-1pfd26g { padding: 0px 0px 40px 0px; } .framer-Y8i9R .framer-ksrm5i { gap: 24px; padding: 24px; } .framer-Y8i9R .framer-o9hwff { height: 400px; padding: 24px 0px 40px 0px; } .framer-Y8i9R .framer-15u6j73-container { height: 45.97156398104265vh; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Y8i9R .framer-1th25qc, .framer-Y8i9R .framer-5vm7fr, .framer-Y8i9R .framer-1gqsxq6, .framer-Y8i9R .framer-ygzwus, .framer-Y8i9R .framer-1esziax, .framer-Y8i9R .framer-9784b0, .framer-Y8i9R .framer-ksrm5i { gap: 0px; } .framer-Y8i9R .framer-1th25qc > *, .framer-Y8i9R .framer-5vm7fr > *, .framer-Y8i9R .framer-1gqsxq6 > *, .framer-Y8i9R .framer-9784b0 > *, .framer-Y8i9R .framer-ksrm5i > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Y8i9R .framer-1th25qc > :first-child, .framer-Y8i9R .framer-5vm7fr > :first-child, .framer-Y8i9R .framer-1gqsxq6 > :first-child, .framer-Y8i9R .framer-ygzwus > :first-child, .framer-Y8i9R .framer-1esziax > :first-child, .framer-Y8i9R .framer-9784b0 > :first-child, .framer-Y8i9R .framer-ksrm5i > :first-child { margin-top: 0px; } .framer-Y8i9R .framer-1th25qc > :last-child, .framer-Y8i9R .framer-5vm7fr > :last-child, .framer-Y8i9R .framer-1gqsxq6 > :last-child, .framer-Y8i9R .framer-ygzwus > :last-child, .framer-Y8i9R .framer-1esziax > :last-child, .framer-Y8i9R .framer-9784b0 > :last-child, .framer-Y8i9R .framer-ksrm5i > :last-child { margin-bottom: 0px; } .framer-Y8i9R .framer-ygzwus > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Y8i9R .framer-1esziax > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5582\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mrsBovbnL\":{\"layout\":[\"fixed\",\"auto\"]},\"Ezb0E_mrV\":{\"layout\":[\"fixed\",\"auto\"]},\"LBrzMDCpd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Nh7VOggtA\":{\"pattern\":\":Nh7VOggtA\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Y8i9R\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5582,width:1280};addFonts(FrameraugiA20Il,[{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\"}]},...Navigation2Fonts,...TickerFonts,...VideoFonts,...WorkCard3Fonts,...QuoteFonts,...CarouselFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"Nh7VOggtA\\\":{\\\"pattern\\\":\\\":Nh7VOggtA\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerIntrinsicWidth\":\"1280\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mrsBovbnL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ezb0E_mrV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LBrzMDCpd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"5582\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "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", "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", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "content", "height", "id", "image", "name1", "title", "width", "props", "Link", "u", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "Oem60Da1X", "KuFP1WcRL", "fTKuurrYC", "eR3Q3tL5z", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "MotionDivWithFX", "RichText2", "ComponentPresetsProvider", "Image2", "getLoadingLazyAtYPosition", "css", "Framerhdd1hc7he", "withCSS", "hdd1hc7he_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "Navigation2Fonts", "getFonts", "tr0p3dTIH_default", "ImageWithFX", "withFX", "Image2", "RichTextWithFX", "RichText2", "TickerFonts", "Ticker", "ContainerWithFX", "Container", "VideoFonts", "Video", "WorkCard3Fonts", "QOp0lWZZ8_default", "QuoteFonts", "hdd1hc7he_default", "CarouselFonts", "Carousel", "FooterFonts", "C2ABbFdQi_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "animation5", "transition5", "textEffect", "animation6", "transition6", "animation7", "transition7", "animation8", "animation9", "transition8", "animation10", "transition9", "animation11", "transition10", "animation12", "transition11", "animation13", "transition12", "animation14", "animation15", "transition13", "animation16", "animation17", "transition14", "animation18", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "addImageAlt", "image", "alt", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "BT9AMyqVoY4TAWFWDM", "nkqCq5tdtY4TAWFWDM", "p9zea4nRjY4TAWFWDM", "ZGyvILccsY4TAWFWDM", "EXPXtDaenY4TAWFWDM", "zvt4VBmgkY4TAWFWDM", "xnodaKaotY4TAWFWDM", "LJoyePgZkY4TAWFWDM", "LOiuthnCFY4TAWFWDM", "idY4TAWFWDM", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "SVG", "Link", "ChildrenCanSuspend", "GN1Ilg2Ff_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
