{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bJnHw5VokAqNKlg6Rp7L/SlideShow.js", "ssg:https://framerusercontent.com/modules/DHNBqR33p1h2iJ8v3f7o/NlHtQJdthLyf0qxBp3X7/CVdofT00G.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/NL3doa6TYb1dgNvTaaCq/9QfbF45u9c91crcZHpWK/yOUsuICbg.js", "ssg:https://framerusercontent.com/modules/x8bWoltDC4gRiWhMvnEF/ZMBXh8xgjdeZDoGF6nwc/I9zBnJ8ts.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;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=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(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.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(slots,(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%\"};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]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"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\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){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 swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,memo,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];// when the slots change, generate new array\n},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].current;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const[firstChild,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[itemAmount]);/**\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     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(index===0){if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/memo(/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;const fallbackRef=useRef();/**\n         * Unique offsets + scroll range [0, 1, 1, 0]\n         */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n         * Effects\n         */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{const node=ref?.current??fallbackRef.current;node?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined})})});}));const Dot=/*#__PURE__*/memo(function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});});/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (5012657)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Tb7LQguAgKqFZqqbCbDR/rlfzDcj2AcGQgPF2IiVA/EH2m_u3MY.js\";const FeatherFonts=getFonts(Feather);const MotionAWithFX=withFX(motion.a);const enabledGestures={vHZweLKpX:{hover:true},WzYZ1JE2L:{hover:true},YX8KAdn5L:{hover:true}};const cycleOrder=[\"vHZweLKpX\",\"YX8KAdn5L\",\"WzYZ1JE2L\"];const serializationHash=\"framer-JDJ6N\";const variantClassNames={vHZweLKpX:\"framer-v-81jwfy\",WzYZ1JE2L:\"framer-v-1ffv696\",YX8KAdn5L:\"framer-v-5mvno2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const transition1={damping:30,delay:0,mass:1,stiffness:59,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={bounce:.1,delay:0,duration:1.5,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:90};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:120};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"vHZweLKpX\",\"Variant 2\":\"YX8KAdn5L\",\"Variant 3\":\"WzYZ1JE2L\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"vHZweLKpX\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vHZweLKpX\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"YX8KAdn5L-hover\",\"WzYZ1JE2L-hover\"].includes(gestureVariant))return false;if([\"YX8KAdn5L\",\"WzYZ1JE2L\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"YX8KAdn5L-hover\")return true;if(baseVariant===\"YX8KAdn5L\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"WzYZ1JE2L-hover\")return true;if(baseVariant===\"WzYZ1JE2L\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition3,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cSUz1cr5Y\"},motionChild:true,nodeId:\"vHZweLKpX\",openInNewTab:false,scopeId:\"CVdofT00G\",...addPropertyOverrides({WzYZ1JE2L:{href:{webPageId:\"Ht9Ds59yC\"}},YX8KAdn5L:{href:{webPageId:\"eG3mJzoBB\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionAWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:`${cx(scopingClassNames,\"framer-81jwfy\",className,classNames)} framer-4i6u71`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"vHZweLKpX\",ref:refBinding,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-baf2978d-fc32-405b-b414-f7e546cc3356, rgb(77, 77, 77))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"var(--token-baf2978d-fc32-405b-b414-f7e546cc3356, rgb(77, 77, 77))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},variants:{\"vHZweLKpX-hover\":{\"--border-color\":\"var(--token-18c755bc-86fd-4025-be51-268181b638e5, rgb(157, 250, 219))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},\"WzYZ1JE2L-hover\":{\"--border-color\":\"var(--token-62b7ae63-7ba4-4947-a8bf-c9e4cfbddd64, rgb(185, 168, 252))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},\"YX8KAdn5L-hover\":{\"--border-color\":\"var(--token-4f48a88d-39d8-4691-9157-38dc864a3932, rgb(255, 159, 135))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}},...addPropertyOverrides({\"vHZweLKpX-hover\":{\"data-framer-name\":undefined},\"WzYZ1JE2L-hover\":{\"data-framer-name\":undefined},\"YX8KAdn5L-hover\":{\"data-framer-name\":undefined},WzYZ1JE2L:{__framer__enter:animation3,\"data-framer-name\":\"Variant 3\"},YX8KAdn5L:{__framer__enter:animation2,\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1avmu2c\",\"data-framer-name\":\"Title + line\",layoutDependency:layoutDependency,layoutId:\"Eej3h7DLt\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xd3a3\",layoutDependency:layoutDependency,layoutId:\"fGin0U1iM\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1f29tbo\",\"data-framer-name\":\"Object\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"EVaXaDQSC\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 80 62\"><g transform=\"translate(0.04 0.292)\"><path d=\"M 0 60.855 L 0 0 L 79.872 0 L 79.872 60.855 Z\" fill=\"transparent\"></path><path d=\"M 71.744 0 L 2.082 0 C 0.932 0 0 0.951 0 2.126 L 0 48.154 C 0 49.329 0.932 50.281 2.082 50.281 L 71.744 50.281 C 72.895 50.281 73.808 49.329 73.808 48.154 L 73.808 2.126 C 73.808 0.951 72.895 0 71.744 0 Z M 69.169 42.541 L 4.639 42.541 L 4.639 4.607 L 69.169 4.607 Z\" fill=\"var(--token-18c755bc-86fd-4025-be51-268181b638e5, rgb(157, 250, 219)) /* {&quot;name&quot;:&quot;Green 0&quot;} */\"></path><path d=\"M 69.17 4.607 L 4.64 4.607 L 4.64 42.541 L 69.17 42.541 Z\" fill=\"var(--token-baf2978d-fc32-405b-b414-f7e546cc3356, rgb(77, 77, 77)) /* {&quot;name&quot;:&quot;Grey&quot;} */\"></path><path d=\"M 46.451 51.232 L 27.364 51.232 C 27.237 51.232 27.109 51.344 26.981 51.568 L 24.406 56.193 C 23.839 57.219 23.785 59.289 24.351 59.289 L 49.447 59.289 C 50.013 59.289 49.958 57.2 49.392 56.193 L 46.816 51.568 C 46.689 51.344 46.561 51.232 46.433 51.232 Z\" fill=\"var(--token-18c755bc-86fd-4025-be51-268181b638e5, rgb(157, 250, 219)) /* {&quot;name&quot;:&quot;Green 0&quot;} */\"></path><path d=\"M 77.567 37.177 L 64.348 37.177 C 63.507 37.177 62.85 37.874 62.85 38.689 L 62.85 58.155 C 62.85 59 63.52 59.668 64.348 59.668 L 77.567 59.668 C 78.409 59.668 79.065 58.971 79.065 58.155 L 79.065 38.689 C 79.065 37.845 78.395 37.177 77.567 37.177 Z M 75.961 56.441 L 66 56.441 L 66 40.404 L 75.961 40.404 Z\" fill=\"var(--token-18c755bc-86fd-4025-be51-268181b638e5, rgb(157, 250, 219)) /* {&quot;name&quot;:&quot;Green 0&quot;} */\" stroke-width=\"1.71\" stroke=\"var(--token-baf2978d-fc32-405b-b414-f7e546cc3356, rgb(77, 77, 77)) /* {&quot;name&quot;:&quot;Grey&quot;} */\" stroke-miterlimit=\"10\"></path><path d=\"M 77.567 38.034 L 64.348 38.034 C 63.998 38.034 63.708 38.33 63.708 38.689 L 63.708 58.155 C 63.708 58.529 63.998 58.81 64.348 58.81 L 77.567 58.81 C 77.918 58.81 78.208 58.514 78.208 58.155 L 78.208 38.689 C 78.208 38.315 77.918 38.034 77.567 38.034 Z M 76.819 57.298 L 65.142 57.298 L 65.142 39.546 L 76.819 39.546 Z\" fill=\"var(--token-18c755bc-86fd-4025-be51-268181b638e5, rgb(157, 250, 219)) /* {&quot;name&quot;:&quot;Green 0&quot;} */\"></path><path d=\"M 76.824 39.531 L 65.147 39.531 L 65.147 57.283 L 76.824 57.283 Z\" fill=\"var(--token-baf2978d-fc32-405b-b414-f7e546cc3356, rgb(77, 77, 77)) /* {&quot;name&quot;:&quot;Grey&quot;} */\"></path></g></svg>',svgContentId:10306183691,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-102urwr\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ivDzAX6KD\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 72 75\"><path d=\"M 55.237 24.707 L 55.237 15.774 C 57.658 14.649 59.202 12.236 59.211 9.572 L 59.211 9.37 C 59.211 5.572 56.124 2.495 52.314 2.495 L 52.111 2.495 C 48.301 2.495 45.214 5.572 45.214 9.37 L 45.214 9.572 C 45.224 12.226 46.777 14.639 49.188 15.774 L 49.188 24.707 C 45.783 25.226 42.581 26.63 39.899 28.784 L 15.329 9.707 C 15.503 9.082 15.599 8.428 15.609 7.774 C 15.609 3.495 12.146 0.024 7.853 0.015 C 3.56 0.015 0.078 3.466 0.068 7.745 C 0.068 12.024 3.532 15.495 7.824 15.505 C 9.165 15.505 10.487 15.139 11.654 14.466 L 35.847 33.226 C 31.4 39.928 31.516 48.649 36.146 55.226 L 28.786 62.562 C 28.188 62.37 27.571 62.274 26.944 62.264 C 23.423 62.264 20.567 65.12 20.567 68.63 C 20.567 72.139 23.432 74.985 26.953 74.985 C 30.474 74.985 33.33 72.139 33.33 68.63 C 33.33 68.004 33.223 67.389 33.031 66.793 L 40.314 59.533 C 48.909 66.12 61.227 64.524 67.835 55.957 C 74.443 47.389 72.842 35.11 64.247 28.524 C 61.613 26.505 58.507 25.187 55.227 24.687 M 52.217 54.072 C 46.651 54.072 42.147 49.572 42.156 44.024 C 42.166 38.476 46.671 33.985 52.237 33.995 C 57.793 33.995 62.298 38.495 62.298 44.034 C 62.298 49.582 57.793 54.072 52.227 54.072\" fill=\"var(--token-4f48a88d-39d8-4691-9157-38dc864a3932, rgb(255, 159, 135)) /* {&quot;name&quot;:&quot;Orange 0&quot;} */\"></path></svg>',svgContentId:12085628798,withExternalLayout:true,...addPropertyOverrides({YX8KAdn5L:{svgContentId:12436709059}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-7c2tha\",\"data-framer-name\":\"Frame 340\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"eMjeDh06S\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55 84\"><g transform=\"translate(-0.048 8.468)\"><path d=\"M 0.024 0 L 54.283 0 L 54.283 74.962 L 0.024 74.962 Z\" fill=\"transparent\"></path><path d=\"M 54.283 2.356 C 54.283 1.05 53.217 0 51.889 0 L 2.394 0 C 1.067 0 0 1.05 0 2.356 L 0 72.606 C 0 73.912 1.067 74.962 2.394 74.962 L 51.889 74.962 C 53.217 74.962 54.283 73.912 54.283 72.606 Z M 5.381 69.411 L 5.381 5.388 L 49.092 5.388 L 49.092 69.411 Z\" fill=\"var(--token-62b7ae63-7ba4-4947-a8bf-c9e4cfbddd64, rgb(185, 168, 252)) /* {&quot;name&quot;:&quot;Purple 0&quot;} */\"></path></g><g transform=\"translate(-3.682 0.652)\"><path d=\"M 24.971 67.769 L 0 24.805 L 43.252 0 L 68.223 42.964 Z\" fill=\"transparent\"></path><path d=\"M 27.796 58.379 L 27.651 58.479 L 25.255 67.36 L 25.33 67.519 L 25.492 67.477 L 33.524 56.659 L 33.551 56.559 L 32.448 50.492 L 32.349 50.38 L 26.936 48.94 L 26.795 48.987 L 23.207 53.806 L 23.18 53.905 L 24.69 67.264 L 24.809 67.38 L 24.954 67.28 L 27.35 58.399 L 27.275 58.24 C 26.598 57.921 26.211 57.167 26.422 56.423 C 26.648 55.586 27.499 55.098 28.341 55.322 C 29.183 55.546 29.675 56.392 29.449 57.228 C 29.258 57.978 28.543 58.439 27.796 58.379 Z\" fill=\"var(--token-62b7ae63-7ba4-4947-a8bf-c9e4cfbddd64, rgb(185, 168, 252)) /* {&quot;name&quot;:&quot;Purple 0&quot;} */\"></path><path d=\"M 28.413 32.014 L 40.021 35.104 C 43.654 20.799 46.237 1.188 43.169 0.372 C 40.095 -0.457 32.467 17.822 28.413 32.014 Z\" fill=\"var(--token-62b7ae63-7ba4-4947-a8bf-c9e4cfbddd64, rgb(185, 168, 252)) /* {&quot;name&quot;:&quot;Purple 0&quot;} */\"></path><path d=\"M 30.055 48.932 C 32.701 49.636 34.769 50.891 37.586 43.199 L 26.412 40.214 C 24.986 48.287 27.409 48.227 30.055 48.932 Z\" fill=\"var(--token-62b7ae63-7ba4-4947-a8bf-c9e4cfbddd64, rgb(185, 168, 252)) /* {&quot;name&quot;:&quot;Purple 0&quot;} */\"></path><path d=\"M 27.067 37.184 L 38.594 40.252 C 38.897 39.287 39.195 38.224 39.512 37.049 C 39.684 36.412 39.848 35.762 40.018 35.092 L 28.41 32.002 C 28.22 32.667 28.036 33.311 27.864 33.949 C 27.554 35.136 27.29 36.197 27.067 37.184 Z\" fill=\"var(--token-62b7ae63-7ba4-4947-a8bf-c9e4cfbddd64, rgb(185, 168, 252)) /* {&quot;name&quot;:&quot;Purple 0&quot;} */\"></path></g></svg>',svgContentId:9471713530,withExternalLayout:true,...addPropertyOverrides({WzYZ1JE2L:{svgContentId:9746455699}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10ahnw1\",layoutDependency:layoutDependency,layoutId:\"AVR4QtwFb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-mu6to1\",\"data-styles-preset\":\"EH2m_u3MY\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-1feadf05-e145-4403-8b82-fc8fd6dfae92, rgb(255, 255, 255)))\"},children:\"Websites & Ecommerce\"})}),className:\"framer-lkl6pm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZKrtI_knc\",style:{\"--extracted-1of0zx5\":\"var(--token-1feadf05-e145-4403-8b82-fc8fd6dfae92, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},variants:{\"vHZweLKpX-hover\":{\"--extracted-1of0zx5\":\"var(--token-18c755bc-86fd-4025-be51-268181b638e5, rgb(157, 250, 219))\"},\"WzYZ1JE2L-hover\":{\"--extracted-1of0zx5\":\"var(--token-62b7ae63-7ba4-4947-a8bf-c9e4cfbddd64, rgb(185, 168, 252))\"},\"YX8KAdn5L-hover\":{\"--extracted-1of0zx5\":\"var(--token-4f48a88d-39d8-4691-9157-38dc864a3932, rgb(255, 159, 135))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"vHZweLKpX-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-mu6to1\",\"data-styles-preset\":\"EH2m_u3MY\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-18c755bc-86fd-4025-be51-268181b638e5, rgb(157, 250, 219)))\"},children:\"Websites & Ecommerce\"})})},\"WzYZ1JE2L-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-mu6to1\",\"data-styles-preset\":\"EH2m_u3MY\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-62b7ae63-7ba4-4947-a8bf-c9e4cfbddd64, rgb(185, 168, 252)))\"},children:\"Branding & Design\"})})},\"YX8KAdn5L-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-mu6to1\",\"data-styles-preset\":\"EH2m_u3MY\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-4f48a88d-39d8-4691-9157-38dc864a3932, rgb(255, 159, 135)))\"},children:\"HubSpot Consulting\"})})},WzYZ1JE2L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-mu6to1\",\"data-styles-preset\":\"EH2m_u3MY\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-1feadf05-e145-4403-8b82-fc8fd6dfae92, rgb(255, 255, 255)))\"},children:\"Branding & Design\"})})},YX8KAdn5L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-mu6to1\",\"data-styles-preset\":\"EH2m_u3MY\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-1feadf05-e145-4403-8b82-fc8fd6dfae92, rgb(255, 255, 255)))\"},children:\"HubSpot Consulting\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-76tcsa\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"qgxy0JKK6\",style:{backgroundColor:\"var(--token-18c755bc-86fd-4025-be51-268181b638e5, rgb(157, 250, 219))\"},variants:{WzYZ1JE2L:{backgroundColor:\"var(--token-62b7ae63-7ba4-4947-a8bf-c9e4cfbddd64, rgb(185, 168, 252))\"},YX8KAdn5L:{backgroundColor:\"var(--token-4f48a88d-39d8-4691-9157-38dc864a3932, rgb(255, 159, 135))\"}}})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13adc2p\",layoutDependency:layoutDependency,layoutId:\"GS5FpaCc3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wngl66-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"TIGx0BY_J-container\",nodeId:\"TIGx0BY_J\",rendersWithMotion:true,scopeId:\"CVdofT00G\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-18c755bc-86fd-4025-be51-268181b638e5, rgb(157, 250, 219))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right-circle\",id:\"TIGx0BY_J\",layoutId:\"TIGx0BY_J\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"WzYZ1JE2L-hover\":{color:\"var(--token-62b7ae63-7ba4-4947-a8bf-c9e4cfbddd64, rgb(185, 168, 252))\"},\"YX8KAdn5L-hover\":{color:\"var(--token-4f48a88d-39d8-4691-9157-38dc864a3932, rgb(255, 159, 135))\"}},baseVariant,gestureVariant)})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JDJ6N.framer-4i6u71, .framer-JDJ6N .framer-4i6u71 { display: block; }\",\".framer-JDJ6N.framer-81jwfy { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 348px; }\",\".framer-JDJ6N .framer-1avmu2c { 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: center; overflow: visible; padding: 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-JDJ6N .framer-1xd3a3 { flex: none; height: 80px; overflow: visible; position: relative; width: 80px; }\",\".framer-JDJ6N .framer-1f29tbo { flex: none; height: 62px; left: calc(50.00000000000002% - 80px / 2); position: absolute; top: calc(50.00000000000002% - 62px / 2); width: 80px; }\",\".framer-JDJ6N .framer-102urwr { flex: none; height: 75px; left: calc(50.00000000000002% - 72px / 2); position: absolute; top: 0px; width: 72px; }\",\".framer-JDJ6N .framer-7c2tha { flex: none; height: 84px; left: calc(51.250000000000014% - 55px / 2); position: absolute; top: -5px; width: 55px; }\",\".framer-JDJ6N .framer-10ahnw1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JDJ6N .framer-lkl6pm { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JDJ6N .framer-76tcsa { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-JDJ6N .framer-13adc2p { align-content: center; align-items: center; bottom: 42px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 81px; justify-content: center; min-width: 64px; overflow: hidden; padding: 0px; position: absolute; right: 40px; width: min-content; z-index: 1; }\",\".framer-JDJ6N .framer-wngl66-container { bottom: -61px; flex: none; height: 60px; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-JDJ6N.framer-v-81jwfy.hover .framer-13adc2p { bottom: 41px; }\",\".framer-JDJ6N.framer-v-81jwfy.hover .framer-wngl66-container { bottom: unset; top: 3px; }\",\".framer-JDJ6N.framer-v-5mvno2.hover .framer-wngl66-container { bottom: 18px; height: unset; top: 2px; }\",\".framer-JDJ6N.framer-v-1ffv696.hover .framer-wngl66-container { bottom: 18px; }\",...sharedStyle.css,'.framer-JDJ6N[data-border=\"true\"]::after, .framer-JDJ6N [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 288\n * @framerIntrinsicWidth 348\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YX8KAdn5L\":{\"layout\":[\"fixed\",\"auto\"]},\"WzYZ1JE2L\":{\"layout\":[\"fixed\",\"auto\"]},\"y9Ki9cpjR\":{\"layout\":[\"fixed\",\"auto\"]},\"d35m3N760\":{\"layout\":[\"fixed\",\"auto\"]},\"LPifeoLjf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerCVdofT00G=withCSS(Component,css,\"framer-JDJ6N\");export default FramerCVdofT00G;FramerCVdofT00G.displayName=\"Websites & Ecommerce button\";FramerCVdofT00G.defaultProps={height:288,width:348};addPropertyControls(FramerCVdofT00G,{variant:{options:[\"vHZweLKpX\",\"YX8KAdn5L\",\"WzYZ1JE2L\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerCVdofT00G,[{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\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCVdofT00G\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"288\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"348\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YX8KAdn5L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WzYZ1JE2L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y9Ki9cpjR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"d35m3N760\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LPifeoLjf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CVdofT00G.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}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={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// 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,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 renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",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(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\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??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??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??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//     !isStaticRenderer\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??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??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?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\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},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\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (7e0329e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";const VideoFonts=getFonts(Video);const FeatherFonts=getFonts(Feather);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const cycleOrder=[\"J2M_wJDW1\",\"Sm5ek1JqR\",\"CjxZAJy1o\",\"gPocWN2lm\",\"BGgJ5nsVG\",\"VFeTm86Dn\",\"rYpfJ4p8z\",\"sWBP2PaTS\",\"bybqxgy1K\",\"RmnD9MbP1\",\"HJWVXUdTA\",\"o7LRDcLyJ\",\"xsnA2ZN5J\",\"LxmDYeCxv\",\"PqCNJcKna\",\"Vr9Ac2qBt\",\"tquFbXIUq\",\"kVHYbR1wW\"];const serializationHash=\"framer-8nBuJ\";const variantClassNames={BGgJ5nsVG:\"framer-v-ap25ot\",bybqxgy1K:\"framer-v-udt8ck\",CjxZAJy1o:\"framer-v-1u2duz9\",gPocWN2lm:\"framer-v-u3of91\",HJWVXUdTA:\"framer-v-mtcmin\",J2M_wJDW1:\"framer-v-zfghwq\",kVHYbR1wW:\"framer-v-1x9lcfy\",LxmDYeCxv:\"framer-v-1bh6wlz\",o7LRDcLyJ:\"framer-v-cfxtny\",PqCNJcKna:\"framer-v-19ehs7l\",RmnD9MbP1:\"framer-v-w09h5i\",rYpfJ4p8z:\"framer-v-46784t\",Sm5ek1JqR:\"framer-v-twrjbj\",sWBP2PaTS:\"framer-v-mp4b2z\",tquFbXIUq:\"framer-v-8cmg7q\",VFeTm86Dn:\"framer-v-6ku4bu\",Vr9Ac2qBt:\"framer-v-ip5kcg\",xsnA2ZN5J:\"framer-v-zl7frh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:1,duration:3.5,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:3,type:\"spring\"};const transition3={bounce:.2,delay:0,duration:1.3,type:\"spring\"};const transition4={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition5={bounce:.2,delay:0,duration:3.7,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:2,skewX:0,skewY:0,x:-58,y:170};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:2,skewX:0,skewY:0,x:-43,y:72};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"J2M_wJDW1\",\"Variant 10\":\"RmnD9MbP1\",\"Variant 11\":\"HJWVXUdTA\",\"Variant 12\":\"o7LRDcLyJ\",\"Variant 15\":\"LxmDYeCxv\",\"Variant 16\":\"PqCNJcKna\",\"Variant 17\":\"Vr9Ac2qBt\",\"Variant 18\":\"tquFbXIUq\",\"Variant 19\":\"kVHYbR1wW\",\"Variant 2\":\"Sm5ek1JqR\",\"Variant 3\":\"CjxZAJy1o\",\"Variant 4\":\"gPocWN2lm\",\"Variant 5\":\"BGgJ5nsVG\",\"Variant 6\":\"VFeTm86Dn\",\"Variant 8\":\"sWBP2PaTS\",\"Variant 9\":\"bybqxgy1K\",Phone:\"xsnA2ZN5J\",Tablet:\"rYpfJ4p8z\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"J2M_wJDW1\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"J2M_wJDW1\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearrtiacf=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Sm5ek1JqR\",true),2e3);});const onAppearbyulnc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"CjxZAJy1o\",true),2e3);});const onAppear1qqhxmv=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"sWBP2PaTS\",true),2e3);});const onAppearttdh6l=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"bybqxgy1K\",true),2e3);});const onAppearm31p4t=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"LxmDYeCxv\",true),2e3);});const onAppearrsgrlx=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"tquFbXIUq\",true),2e3);});const onAppeardrvyql=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"kVHYbR1wW\",true),3e3);});const onMouseEnter16qacuc=activeVariantCallback(async(...args)=>{setVariant(\"VFeTm86Dn\");});const onMouseLeave1750er5=activeVariantCallback(async(...args)=>{setVariant(\"CjxZAJy1o\");});const onMouseEnterox95p3=activeVariantCallback(async(...args)=>{setVariant(\"o7LRDcLyJ\");});const onMouseLeaveiewo80=activeVariantCallback(async(...args)=>{setVariant(\"bybqxgy1K\");});const onMouseEnter10locfz=activeVariantCallback(async(...args)=>{setVariant(\"gPocWN2lm\");});const onMouseEnter1ru08y5=activeVariantCallback(async(...args)=>{setVariant(\"RmnD9MbP1\");});const onMouseEnterqmbqqn=activeVariantCallback(async(...args)=>{setVariant(\"BGgJ5nsVG\");});const onMouseEnterpzf31n=activeVariantCallback(async(...args)=>{setVariant(\"HJWVXUdTA\");});useOnVariantChange(baseVariant,{BGgJ5nsVG:undefined,bybqxgy1K:undefined,CjxZAJy1o:undefined,default:onAppearrtiacf,gPocWN2lm:undefined,HJWVXUdTA:undefined,kVHYbR1wW:undefined,LxmDYeCxv:undefined,o7LRDcLyJ:undefined,PqCNJcKna:undefined,RmnD9MbP1:undefined,rYpfJ4p8z:onAppear1qqhxmv,Sm5ek1JqR:onAppearbyulnc,sWBP2PaTS:onAppearttdh6l,tquFbXIUq:onAppeardrvyql,VFeTm86Dn:undefined,Vr9Ac2qBt:onAppearrsgrlx,xsnA2ZN5J:onAppearm31p4t});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Vr9Ac2qBt\",\"tquFbXIUq\",\"kVHYbR1wW\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"CjxZAJy1o\",\"gPocWN2lm\",\"BGgJ5nsVG\",\"bybqxgy1K\",\"RmnD9MbP1\",\"HJWVXUdTA\",\"o7LRDcLyJ\",\"LxmDYeCxv\",\"PqCNJcKna\",\"Vr9Ac2qBt\",\"tquFbXIUq\",\"kVHYbR1wW\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"Sm5ek1JqR\",\"CjxZAJy1o\",\"gPocWN2lm\",\"BGgJ5nsVG\",\"VFeTm86Dn\",\"sWBP2PaTS\",\"bybqxgy1K\",\"RmnD9MbP1\",\"HJWVXUdTA\",\"o7LRDcLyJ\",\"LxmDYeCxv\",\"PqCNJcKna\",\"Vr9Ac2qBt\",\"tquFbXIUq\",\"kVHYbR1wW\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({BGgJ5nsVG:{value:transition3},bybqxgy1K:{value:transition3},CjxZAJy1o:{value:transition3},gPocWN2lm:{value:transition4},HJWVXUdTA:{value:transition3},LxmDYeCxv:{value:transition3},o7LRDcLyJ:{value:transition3},PqCNJcKna:{value:transition3},RmnD9MbP1:{value:transition3},Sm5ek1JqR:{value:transition2},sWBP2PaTS:{value:transition2},VFeTm86Dn:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-zfghwq\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"J2M_wJDW1\",ref:refBinding,style:{...style},...addPropertyOverrides({BGgJ5nsVG:{\"data-framer-name\":\"Variant 5\",\"data-highlight\":undefined},bybqxgy1K:{\"data-framer-name\":\"Variant 9\",\"data-highlight\":undefined},CjxZAJy1o:{\"data-framer-name\":\"Variant 3\",\"data-highlight\":undefined},gPocWN2lm:{\"data-framer-name\":\"Variant 4\",\"data-highlight\":undefined},HJWVXUdTA:{\"data-framer-name\":\"Variant 11\",\"data-highlight\":undefined},kVHYbR1wW:{\"data-framer-name\":\"Variant 19\",\"data-highlight\":undefined},LxmDYeCxv:{\"data-framer-name\":\"Variant 15\",\"data-highlight\":undefined},o7LRDcLyJ:{\"data-framer-name\":\"Variant 12\",\"data-highlight\":undefined},PqCNJcKna:{\"data-framer-name\":\"Variant 16\",\"data-highlight\":undefined},RmnD9MbP1:{\"data-framer-name\":\"Variant 10\",\"data-highlight\":undefined},rYpfJ4p8z:{\"data-framer-name\":\"Tablet\"},Sm5ek1JqR:{\"data-framer-name\":\"Variant 2\"},sWBP2PaTS:{\"data-framer-name\":\"Variant 8\"},tquFbXIUq:{\"data-framer-name\":\"Variant 18\"},VFeTm86Dn:{\"data-framer-name\":\"Variant 6\",\"data-highlight\":undefined},Vr9Ac2qBt:{\"data-framer-name\":\"Variant 17\"},xsnA2ZN5J:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1epckv1\",layoutDependency:layoutDependency,layoutId:\"J2M_wJDW1vhOXKP7Gq\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mrlanc\",layoutDependency:layoutDependency,layoutId:\"J2M_wJDW1G64K3PmwW\",children:[/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"J2M_wJDW1Er89PqhUo\",scopeId:\"yOUsuICbg\",...addPropertyOverrides({kVHYbR1wW:{href:{webPageId:\"cSUz1cr5Y\"}},o7LRDcLyJ:{href:{webPageId:\"cSUz1cr5Y\"}},VFeTm86Dn:{href:{webPageId:\"cSUz1cr5Y\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1dlj9yb framer-1d7neom\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"J2M_wJDW1Er89PqhUo\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,filter:\"none\",WebkitFilter:\"none\"},transformTemplate:transformTemplate1,variants:{bybqxgy1K:{filter:\"none\",WebkitFilter:\"none\"},HJWVXUdTA:{filter:\"none\",WebkitFilter:\"none\"},kVHYbR1wW:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},LxmDYeCxv:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,filter:\"none\",WebkitFilter:\"none\"},o7LRDcLyJ:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},PqCNJcKna:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,filter:\"none\",WebkitFilter:\"none\"},RmnD9MbP1:{filter:\"none\",WebkitFilter:\"none\"},rYpfJ4p8z:{filter:\"none\",WebkitFilter:\"none\"},sWBP2PaTS:{filter:\"none\",WebkitFilter:\"none\"},tquFbXIUq:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,filter:\"none\",WebkitFilter:\"none\"},VFeTm86Dn:{filter:\"saturate(0)\",WebkitFilter:\"saturate(0)\"},Vr9Ac2qBt:{filter:\"none\",WebkitFilter:\"none\"},xsnA2ZN5J:{filter:\"none\",WebkitFilter:\"none\"}},...addPropertyOverrides({BGgJ5nsVG:{\"data-highlight\":true,onMouseEnter:onMouseEnter16qacuc,transformTemplate:undefined},bybqxgy1K:{\"data-highlight\":true,onMouseEnter:onMouseEnterox95p3,transformTemplate:undefined},CjxZAJy1o:{\"data-highlight\":true,onMouseEnter:onMouseEnter16qacuc,transformTemplate:undefined},gPocWN2lm:{\"data-highlight\":true,onMouseEnter:onMouseEnter16qacuc,transformTemplate:undefined},HJWVXUdTA:{\"data-highlight\":true,onMouseEnter:onMouseEnterox95p3,transformTemplate:undefined},kVHYbR1wW:{transformTemplate:undefined},LxmDYeCxv:{\"data-highlight\":true,onMouseEnter:onMouseEnterox95p3,transformTemplate:undefined},o7LRDcLyJ:{\"data-highlight\":true,onMouseLeave:onMouseLeaveiewo80,transformTemplate:undefined},PqCNJcKna:{\"data-highlight\":true,onMouseEnter:onMouseEnterox95p3,transformTemplate:undefined},RmnD9MbP1:{\"data-highlight\":true,onMouseEnter:onMouseEnterox95p3,transformTemplate:undefined},tquFbXIUq:{transformTemplate:undefined},VFeTm86Dn:{\"data-highlight\":true,onMouseLeave:onMouseLeave1750er5,transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dl71ev-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"TBgfWhGGK-container\",nodeId:\"TBgfWhGGK\",rendersWithMotion:true,scopeId:\"yOUsuICbg\",...addPropertyOverrides({BGgJ5nsVG:{transformTemplate:transformTemplate1},bybqxgy1K:{transformTemplate:transformTemplate1},CjxZAJy1o:{transformTemplate:transformTemplate1},gPocWN2lm:{transformTemplate:transformTemplate1},HJWVXUdTA:{transformTemplate:transformTemplate1},kVHYbR1wW:{transformTemplate:transformTemplate1},LxmDYeCxv:{transformTemplate:transformTemplate1},o7LRDcLyJ:{transformTemplate:transformTemplate1},PqCNJcKna:{transformTemplate:transformTemplate1},RmnD9MbP1:{transformTemplate:transformTemplate1},tquFbXIUq:{transformTemplate:transformTemplate1},VFeTm86Dn:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"TBgfWhGGK\",isMixedBorderRadius:false,layoutId:\"TBgfWhGGK\",loop:true,muted:true,objectFit:\"fill\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/3YsN1j8CnyvGtsyZD90R4ZtGoA.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({BGgJ5nsVG:{loop:false},VFeTm86Dn:{loop:false}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fwiq0e\",layoutDependency:layoutDependency,layoutId:\"AwBFHLMrz\",...addPropertyOverrides({BGgJ5nsVG:{transformTemplate:transformTemplate1},bybqxgy1K:{transformTemplate:transformTemplate1},CjxZAJy1o:{transformTemplate:transformTemplate1},HJWVXUdTA:{transformTemplate:transformTemplate1},LxmDYeCxv:{transformTemplate:transformTemplate1},PqCNJcKna:{transformTemplate:transformTemplate1},RmnD9MbP1:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Websites & \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"E-commerce\"})]}),className:\"framer-tok8fl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xG5Ht1KJZ\",style:{\"--extracted-2gxw0f\":\"var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243))\",\"--extracted-r6o4lv\":\"var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bybqxgy1K:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Websites & \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"E-commerce\"})]})},HJWVXUdTA:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Websites & \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"E-commerce\"})]})},kVHYbR1wW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Websites &  E-commerce\"})})},LxmDYeCxv:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Websites & \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"E-commerce\"})]})},o7LRDcLyJ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Websites & \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"E-commerce\"})]})},PqCNJcKna:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Websites & \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"E-commerce\"})]})},RmnD9MbP1:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Websites & \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"E-commerce\"})]})},rYpfJ4p8z:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Websites & \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"E-commerce\"})]})},sWBP2PaTS:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Websites & \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"E-commerce\"})]})},tquFbXIUq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Websites &  E-commerce\"})})},Vr9Ac2qBt:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Websites & \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"E-commerce\"})]})},xsnA2ZN5J:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Websites & \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"E-commerce\"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1k04xgr-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"iD2aejH_B-container\",nodeId:\"iD2aejH_B\",rendersWithMotion:true,scopeId:\"yOUsuICbg\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-1feadf05-e145-4403-8b82-fc8fd6dfae92, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right-circle\",id:\"iD2aejH_B\",layoutId:\"iD2aejH_B\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-83rdvz\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"J2M_wJDW1enjNEbRX1\",style:{backgroundColor:\"rgb(212, 201, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{LxmDYeCxv:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},PqCNJcKna:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Branding that \"}),\"tells your story\"]})}),className:\"framer-1v7gimt\",fonts:[\"Inter-SemiBoldItalic\"],layoutDependency:layoutDependency,layoutId:\"doeTbrqSF\",style:{\"--extracted-r6o4lv\":\"var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bybqxgy1K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Branding that \"}),\"tells your story\"]})})},HJWVXUdTA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Branding that \"}),\"tells your story\"]})})},LxmDYeCxv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Branding that \"}),\"tells your story\"]})})},o7LRDcLyJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Branding that \"}),\"tells your story\"]})})},PqCNJcKna:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Branding that \"}),\"tells your story\"]})})},RmnD9MbP1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Branding that \"}),\"tells your story\"]})})},sWBP2PaTS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Branding that \"}),\"tells your story\"]})})},xsnA2ZN5J:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Branding that \"}),\"tells your story\"]})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cul4j\",\"data-framer-name\":\"6\",layoutDependency:layoutDependency,layoutId:\"J2M_wJDW1KR3kz3qiJ\",style:{backgroundColor:\"rgb(198, 247, 231)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{bybqxgy1K:{backgroundColor:\"var(--token-6975e926-e22d-4bdf-a214-273ef9b56bee, rgb(198, 247, 231))\"},CjxZAJy1o:{backgroundColor:\"var(--token-6975e926-e22d-4bdf-a214-273ef9b56bee, rgb(198, 247, 231))\"},HJWVXUdTA:{backgroundColor:\"var(--token-6975e926-e22d-4bdf-a214-273ef9b56bee, rgb(198, 247, 231))\"},LxmDYeCxv:{backgroundColor:\"var(--token-6975e926-e22d-4bdf-a214-273ef9b56bee, rgb(198, 247, 231))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},o7LRDcLyJ:{backgroundColor:\"var(--token-6975e926-e22d-4bdf-a214-273ef9b56bee, rgb(198, 247, 231))\"},PqCNJcKna:{backgroundColor:\"var(--token-6975e926-e22d-4bdf-a214-273ef9b56bee, rgb(198, 247, 231))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},RmnD9MbP1:{backgroundColor:\"var(--token-6975e926-e22d-4bdf-a214-273ef9b56bee, rgb(198, 247, 231))\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bbkmat\",layoutDependency:layoutDependency,layoutId:\"VqepPJLUu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Websites that \"}),\"make a statement\"]})}),className:\"framer-qbli7h\",fonts:[\"Inter-SemiBoldItalic\"],layoutDependency:layoutDependency,layoutId:\"Cvv6ituID\",style:{\"--extracted-r6o4lv\":\"var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bybqxgy1K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Websites that \"}),\"make a statement\"]})})},HJWVXUdTA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Websites that \"}),\"make a statement\"]})})},LxmDYeCxv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Websites that \"}),\"make a statement\"]})})},o7LRDcLyJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Websites that \"}),\"make a statement\"]})})},PqCNJcKna:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Websites that \"}),\"make a statement\"]})})},RmnD9MbP1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Websites that \"}),\"make a statement\"]})})},xsnA2ZN5J:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Websites that \"}),\"make a statement\"]})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"J2M_wJDW1jljCgJ6gS\",scopeId:\"yOUsuICbg\",...addPropertyOverrides({CjxZAJy1o:{href:{webPageId:\"Ht9Ds59yC\"}},gPocWN2lm:{href:{webPageId:\"Ht9Ds59yC\"}},kVHYbR1wW:{href:{webPageId:\"Ht9Ds59yC\"}},RmnD9MbP1:{href:{webPageId:\"Ht9Ds59yC\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-gy7cjf framer-1d7neom\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"J2M_wJDW1jljCgJ6gS\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,filter:\"none\",WebkitFilter:\"none\"},variants:{BGgJ5nsVG:{filter:\"none\",WebkitFilter:\"none\"},bybqxgy1K:{filter:\"none\",WebkitFilter:\"none\"},gPocWN2lm:{filter:\"saturate(0)\",WebkitFilter:\"saturate(0)\"},HJWVXUdTA:{filter:\"none\",WebkitFilter:\"none\"},kVHYbR1wW:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},LxmDYeCxv:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,filter:\"none\",WebkitFilter:\"none\"},o7LRDcLyJ:{filter:\"none\",WebkitFilter:\"none\"},PqCNJcKna:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,filter:\"none\",WebkitFilter:\"none\"},RmnD9MbP1:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},rYpfJ4p8z:{filter:\"none\",WebkitFilter:\"none\"},sWBP2PaTS:{filter:\"none\",WebkitFilter:\"none\"},tquFbXIUq:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,filter:\"none\",WebkitFilter:\"none\"},VFeTm86Dn:{filter:\"none\",WebkitFilter:\"none\"},Vr9Ac2qBt:{filter:\"none\",WebkitFilter:\"none\"},xsnA2ZN5J:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,filter:\"none\",WebkitFilter:\"none\"}},...addPropertyOverrides({BGgJ5nsVG:{\"data-highlight\":true,onMouseEnter:onMouseEnter10locfz},bybqxgy1K:{\"data-highlight\":true,onMouseEnter:onMouseEnter1ru08y5},CjxZAJy1o:{\"data-highlight\":true,onMouseEnter:onMouseEnter10locfz},gPocWN2lm:{\"data-highlight\":true,onMouseLeave:onMouseLeave1750er5},HJWVXUdTA:{\"data-highlight\":true,onMouseEnter:onMouseEnter1ru08y5},LxmDYeCxv:{\"data-highlight\":true,onMouseEnter:onMouseEnter1ru08y5},o7LRDcLyJ:{\"data-highlight\":true,onMouseEnter:onMouseEnter1ru08y5},PqCNJcKna:{\"data-highlight\":true,onMouseEnter:onMouseEnter1ru08y5},RmnD9MbP1:{\"data-highlight\":true,onMouseLeave:onMouseLeaveiewo80},VFeTm86Dn:{\"data-highlight\":true,onMouseEnter:onMouseEnter10locfz}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-a3ygcq-container\",\"data-framer-appear-id\":\"a3ygcq\",initial:animation1,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qTr7XxZup-container\",nodeId:\"qTr7XxZup\",optimized:true,rendersWithMotion:true,scopeId:\"yOUsuICbg\",...addPropertyOverrides({gPocWN2lm:{animate:undefined,initial:undefined,optimized:undefined},kVHYbR1wW:{initial:animation2},tquFbXIUq:{initial:animation2},Vr9Ac2qBt:{initial:animation2},xsnA2ZN5J:{initial:animation2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,controls:false,height:\"100%\",id:\"qTr7XxZup\",isMixedBorderRadius:false,layoutId:\"qTr7XxZup\",loop:true,muted:true,objectFit:\"fill\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/W8ZI0Je5NsUUNhPi3TkGFt5Vzg.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,volume:25,width:\"100%\",...addPropertyOverrides({BGgJ5nsVG:{loop:false},bybqxgy1K:{loop:false},CjxZAJy1o:{loop:false},HJWVXUdTA:{loop:false},LxmDYeCxv:{loop:false},o7LRDcLyJ:{loop:false},PqCNJcKna:{loop:false},RmnD9MbP1:{loop:false},VFeTm86Dn:{loop:false}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fsq8y2\",layoutDependency:layoutDependency,layoutId:\"yYPskZ9pb\",style:{backgroundColor:\"rgba(51, 51, 51, 0.5)\"},variants:{BGgJ5nsVG:{backgroundColor:\"rgba(0, 0, 0, 0)\"},bybqxgy1K:{backgroundColor:\"rgba(0, 0, 0, 0)\"},CjxZAJy1o:{backgroundColor:\"rgba(0, 0, 0, 0)\"},gPocWN2lm:{backgroundColor:\"rgba(0, 0, 0, 0)\"},HJWVXUdTA:{backgroundColor:\"rgba(0, 0, 0, 0)\"},kVHYbR1wW:{backgroundColor:\"rgba(0, 0, 0, 0)\"},LxmDYeCxv:{backgroundColor:\"rgba(0, 0, 0, 0)\"},o7LRDcLyJ:{backgroundColor:\"rgba(0, 0, 0, 0)\"},PqCNJcKna:{backgroundColor:\"rgba(0, 0, 0, 0)\"},RmnD9MbP1:{backgroundColor:\"rgba(0, 0, 0, 0)\"},tquFbXIUq:{backgroundColor:\"rgba(0, 0, 0, 0)\"},Vr9Ac2qBt:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({bybqxgy1K:{transformTemplate:transformTemplate1},CjxZAJy1o:{transformTemplate:transformTemplate1},gPocWN2lm:{transformTemplate:transformTemplate1},HJWVXUdTA:{transformTemplate:transformTemplate1},kVHYbR1wW:{transformTemplate:transformTemplate1},o7LRDcLyJ:{transformTemplate:transformTemplate1},PqCNJcKna:{transformTemplate:transformTemplate1},tquFbXIUq:{transformTemplate:transformTemplate1},Vr9Ac2qBt:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Branding & Design\"})}),className:\"framer-hg2y2u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"O4H4md1kd\",style:{\"--extracted-r6o4lv\":\"var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{PqCNJcKna:{\"--extracted-2gxw0f\":\"var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BGgJ5nsVG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Branding & Design\"})})},bybqxgy1K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Branding & Design\"})})},CjxZAJy1o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Branding & Design\"})})},gPocWN2lm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Branding & Design\"})})},HJWVXUdTA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Branding & Design\"})})},kVHYbR1wW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Branding & Design\"})})},LxmDYeCxv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Branding & Design\"})})},o7LRDcLyJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Branding & Design\"})})},PqCNJcKna:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Branding \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"& Design\"})]})},RmnD9MbP1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Branding & Design\"})})},tquFbXIUq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Branding & Design\"})})},Vr9Ac2qBt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Branding & Design\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j1yw1c-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"v_xFhV6mu-container\",nodeId:\"v_xFhV6mu\",rendersWithMotion:true,scopeId:\"yOUsuICbg\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-1feadf05-e145-4403-8b82-fc8fd6dfae92, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right-circle\",id:\"v_xFhV6mu\",layoutId:\"v_xFhV6mu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q29ifi\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"J2M_wJDW1oBKhtdoFF\",style:{backgroundColor:\"rgb(255, 186, 168)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{bybqxgy1K:{backgroundColor:\"var(--token-9521d1ba-49c2-4ee9-b191-34d0df5e2b4e, rgb(255, 186, 168))\"},CjxZAJy1o:{backgroundColor:\"var(--token-9521d1ba-49c2-4ee9-b191-34d0df5e2b4e, rgb(255, 186, 168))\"},HJWVXUdTA:{backgroundColor:\"var(--token-9521d1ba-49c2-4ee9-b191-34d0df5e2b4e, rgb(255, 186, 168))\"},LxmDYeCxv:{backgroundColor:\"var(--token-9521d1ba-49c2-4ee9-b191-34d0df5e2b4e, rgb(255, 186, 168))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},o7LRDcLyJ:{backgroundColor:\"var(--token-9521d1ba-49c2-4ee9-b191-34d0df5e2b4e, rgb(255, 186, 168))\"},PqCNJcKna:{backgroundColor:\"var(--token-9521d1ba-49c2-4ee9-b191-34d0df5e2b4e, rgb(255, 186, 168))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},RmnD9MbP1:{backgroundColor:\"var(--token-9521d1ba-49c2-4ee9-b191-34d0df5e2b4e, rgb(255, 186, 168))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Marketing and Sales \"}),\"Operations on Steroids\"]})}),className:\"framer-y3xrol\",fonts:[\"Inter-SemiBoldItalic\"],layoutDependency:layoutDependency,layoutId:\"heLPKbaLU\",style:{\"--extracted-gdpscs\":\"var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bybqxgy1K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Marketing and Sales \"}),\"Operations on Steroids\"]})})},HJWVXUdTA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Marketing and Sales \"}),\"Operations on Steroids\"]})})},LxmDYeCxv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Marketing and Sales \"}),\"Operations on Steroids\"]})})},o7LRDcLyJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Marketing and Sales \"}),\"Operations on Steroids\"]})})},PqCNJcKna:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Marketing and Sales \"}),\"Operations on Steroids\"]})})},RmnD9MbP1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Marketing and Sales \"}),\"Operations on Steroids\"]})})},sWBP2PaTS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Marketing and Sales \"}),\"Operations on Steroids\"]})})},xsnA2ZN5J:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"Marketing and Sales \"}),\"Operations on Steroids\"]})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"J2M_wJDW1NqHkKaT_g\",scopeId:\"yOUsuICbg\",...addPropertyOverrides({BGgJ5nsVG:{href:{webPageId:\"eG3mJzoBB\"}},HJWVXUdTA:{href:{webPageId:\"eG3mJzoBB\"}},kVHYbR1wW:{href:{webPageId:\"eG3mJzoBB\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-8s7z82 framer-1d7neom\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"J2M_wJDW1NqHkKaT_g\",style:{backgroundColor:\"rgb(204, 238, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,filter:\"none\",WebkitFilter:\"none\"},variants:{BGgJ5nsVG:{filter:\"saturate(0)\",WebkitFilter:\"saturate(0)\"},bybqxgy1K:{filter:\"none\",WebkitFilter:\"none\"},HJWVXUdTA:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},kVHYbR1wW:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},LxmDYeCxv:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,filter:\"none\",WebkitFilter:\"none\"},o7LRDcLyJ:{filter:\"none\",WebkitFilter:\"none\"},PqCNJcKna:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,filter:\"none\",WebkitFilter:\"none\"},RmnD9MbP1:{filter:\"none\",WebkitFilter:\"none\"},rYpfJ4p8z:{filter:\"none\",WebkitFilter:\"none\"},sWBP2PaTS:{filter:\"none\",WebkitFilter:\"none\"},tquFbXIUq:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,filter:\"none\",WebkitFilter:\"none\"},VFeTm86Dn:{filter:\"none\",WebkitFilter:\"none\"},Vr9Ac2qBt:{backgroundColor:\"rgba(0, 0, 0, 0)\",filter:\"none\",WebkitFilter:\"none\"},xsnA2ZN5J:{filter:\"none\",WebkitFilter:\"none\"}},...addPropertyOverrides({BGgJ5nsVG:{\"data-highlight\":true,onMouseLeave:onMouseLeave1750er5},bybqxgy1K:{\"data-highlight\":true,onMouseEnter:onMouseEnterpzf31n},CjxZAJy1o:{\"data-highlight\":true,onMouseEnter:onMouseEnterqmbqqn},gPocWN2lm:{\"data-highlight\":true,onMouseEnter:onMouseEnterqmbqqn},HJWVXUdTA:{\"data-highlight\":true,onMouseLeave:onMouseLeaveiewo80},LxmDYeCxv:{\"data-highlight\":true,onMouseEnter:onMouseEnterpzf31n},o7LRDcLyJ:{\"data-highlight\":true,onMouseEnter:onMouseEnterpzf31n},PqCNJcKna:{\"data-highlight\":true,onMouseEnter:onMouseEnterpzf31n},RmnD9MbP1:{\"data-highlight\":true,onMouseEnter:onMouseEnterpzf31n},VFeTm86Dn:{\"data-highlight\":true,onMouseEnter:onMouseEnterqmbqqn}},baseVariant,gestureVariant),children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1el4faw-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PA528J49a-container\",nodeId:\"PA528J49a\",rendersWithMotion:true,scopeId:\"yOUsuICbg\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"PA528J49a\",isMixedBorderRadius:false,layoutId:\"PA528J49a\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/0ow3KktdNrjD35Wzem8aKHvw78.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({BGgJ5nsVG:{loop:false},gPocWN2lm:{loop:false},Sm5ek1JqR:{loop:false},sWBP2PaTS:{loop:false},VFeTm86Dn:{loop:false}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r9ivjj\",layoutDependency:layoutDependency,layoutId:\"XxxHDsH98\",...addPropertyOverrides({BGgJ5nsVG:{transformTemplate:transformTemplate1},gPocWN2lm:{transformTemplate:transformTemplate1},kVHYbR1wW:{transformTemplate:transformTemplate1},PqCNJcKna:{transformTemplate:transformTemplate1},tquFbXIUq:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Husbpot Consulting\"})}),className:\"framer-lgvsoi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fUbmK25NO\",style:{\"--extracted-r6o4lv\":\"var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{PqCNJcKna:{\"--extracted-2gxw0f\":\"var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bybqxgy1K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Husbpot Consulting\"})})},HJWVXUdTA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Husbpot Consulting\"})})},kVHYbR1wW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Husbpot Consulting\"})})},LxmDYeCxv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Husbpot Consulting\"})})},PqCNJcKna:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Husbpot \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Consulting\"})]})},RmnD9MbP1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Husbpot Consulting\"})})},rYpfJ4p8z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Husbpot Consulting\"})})},sWBP2PaTS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Husbpot Consulting\"})})},tquFbXIUq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Husbpot Consulting\"})})},Vr9Ac2qBt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Husbpot Consulting\"})})},xsnA2ZN5J:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)))\"},children:\"Husbpot Consulting\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-e2hcgj-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Y9P6rxzKc-container\",nodeId:\"Y9P6rxzKc\",rendersWithMotion:true,scopeId:\"yOUsuICbg\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-1feadf05-e145-4403-8b82-fc8fd6dfae92, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right-circle\",id:\"Y9P6rxzKc\",layoutId:\"Y9P6rxzKc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8nBuJ.framer-1d7neom, .framer-8nBuJ .framer-1d7neom { display: block; }\",\".framer-8nBuJ.framer-zfghwq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 648px; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1200px; }\",\".framer-8nBuJ .framer-1epckv1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nBuJ .framer-mrlanc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8nBuJ .framer-1dlj9yb { aspect-ratio: 1.1329787234042554 / 1; bottom: -466px; flex: none; height: var(--framer-aspect-ratio-supported, 325px); left: 50%; position: absolute; width: 32%; z-index: 2; }\",\".framer-8nBuJ .framer-1dl71ev-container { aspect-ratio: 1.0953757225433527 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 345px); left: 0px; position: absolute; top: -10px; width: 103%; }\",\".framer-8nBuJ .framer-1fwiq0e { align-content: center; align-items: center; bottom: -89px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 20px; position: absolute; width: 100%; }\",\".framer-8nBuJ .framer-tok8fl { flex: none; height: 82px; position: relative; white-space: pre-wrap; width: 260px; word-break: break-word; word-wrap: break-word; }\",\".framer-8nBuJ .framer-1k04xgr-container, .framer-8nBuJ .framer-e2hcgj-container { flex: none; height: 60px; position: relative; width: 48px; }\",\".framer-8nBuJ .framer-83rdvz { flex: none; height: 60%; left: 0px; overflow: hidden; position: absolute; top: 752px; width: 49%; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-8nBuJ .framer-1v7gimt { flex: none; height: 91px; left: 55px; position: absolute; top: 61px; white-space: pre-wrap; width: 304px; word-break: break-word; word-wrap: break-word; }\",\".framer-8nBuJ .framer-1cul4j { bottom: -576px; flex: none; height: 52%; position: absolute; right: 0px; width: 32%; z-index: 1; }\",\".framer-8nBuJ .framer-1bbkmat { bottom: -14px; flex: none; left: -12px; overflow: visible; position: absolute; right: -12px; top: -19px; }\",\".framer-8nBuJ .framer-qbli7h { bottom: 44px; flex: none; height: 110px; left: calc(50.40650406504067% - 295px / 2); position: absolute; white-space: pre-wrap; width: 295px; word-break: break-word; word-wrap: break-word; }\",\".framer-8nBuJ .framer-gy7cjf { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 600px); left: -13px; overflow: hidden; position: absolute; top: 0px; width: 104%; will-change: var(--framer-will-change-override, transform); z-index: 6; }\",\".framer-8nBuJ .framer-a3ygcq-container { aspect-ratio: 1.8326300984528832 / 1; bottom: -35px; flex: none; position: absolute; right: 30px; top: 0px; width: var(--framer-aspect-ratio-supported, 1164px); }\",\".framer-8nBuJ .framer-1fsq8y2 { align-content: center; align-items: center; bottom: -109px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 20px; position: absolute; width: 100%; }\",\".framer-8nBuJ .framer-hg2y2u { flex: none; height: 76px; position: relative; white-space: pre-wrap; width: 205px; word-break: break-word; word-wrap: break-word; }\",\".framer-8nBuJ .framer-j1yw1c-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-8nBuJ .framer-1q29ifi { flex: none; height: 20%; overflow: visible; position: absolute; right: -680px; top: 0px; width: 49%; z-index: 5; }\",\".framer-8nBuJ .framer-y3xrol { flex: none; height: auto; left: 76px; position: absolute; right: 68px; top: -113px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-8nBuJ .framer-8s7z82 { bottom: -2px; flex: none; height: 78%; position: absolute; right: -790px; width: 49%; z-index: 4; }\",\".framer-8nBuJ .framer-1el4faw-container { aspect-ratio: 1.1525129982668978 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 580px); left: -12px; position: absolute; right: -3px; top: -59px; }\",\".framer-8nBuJ .framer-r9ivjj { align-content: center; align-items: center; bottom: -109px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 20px; position: absolute; width: 100%; }\",\".framer-8nBuJ .framer-lgvsoi { flex: none; height: 41px; position: relative; white-space: pre; width: auto; }\",\".framer-8nBuJ.framer-v-twrjbj .framer-mrlanc, .framer-8nBuJ.framer-v-1u2duz9 .framer-lgvsoi, .framer-8nBuJ.framer-v-u3of91 .framer-lgvsoi, .framer-8nBuJ.framer-v-ap25ot .framer-lgvsoi, .framer-8nBuJ.framer-v-6ku4bu .framer-lgvsoi, .framer-8nBuJ.framer-v-mp4b2z .framer-mrlanc, .framer-8nBuJ.framer-v-udt8ck .framer-lgvsoi, .framer-8nBuJ.framer-v-w09h5i .framer-lgvsoi, .framer-8nBuJ.framer-v-mtcmin .framer-lgvsoi, .framer-8nBuJ.framer-v-cfxtny .framer-lgvsoi, .framer-8nBuJ.framer-v-1bh6wlz .framer-lgvsoi, .framer-8nBuJ.framer-v-19ehs7l .framer-lgvsoi { order: 0; }\",\".framer-8nBuJ.framer-v-twrjbj .framer-1dlj9yb { bottom: -366px; }\",\".framer-8nBuJ.framer-v-twrjbj .framer-83rdvz, .framer-8nBuJ.framer-v-mp4b2z .framer-83rdvz { height: 45%; top: 330px; }\",\".framer-8nBuJ.framer-v-twrjbj .framer-1cul4j, .framer-8nBuJ.framer-v-mp4b2z .framer-1cul4j { bottom: -386px; height: 52%; }\",\".framer-8nBuJ.framer-v-twrjbj .framer-gy7cjf, .framer-8nBuJ.framer-v-mp4b2z .framer-gy7cjf { aspect-ratio: unset; height: 311px; left: 0px; width: 49%; }\",\".framer-8nBuJ.framer-v-twrjbj .framer-a3ygcq-container { bottom: unset; height: var(--framer-aspect-ratio-supported, 310px); left: 0px; right: unset; top: 1px; width: 569px; }\",\".framer-8nBuJ.framer-v-twrjbj .framer-1q29ifi, .framer-8nBuJ.framer-v-mp4b2z .framer-1q29ifi { height: 33%; right: 0px; width: 49%; }\",\".framer-8nBuJ.framer-v-twrjbj .framer-y3xrol { left: unset; right: 69px; top: 59px; width: 447px; }\",\".framer-8nBuJ.framer-v-twrjbj .framer-8s7z82, .framer-8nBuJ.framer-v-mp4b2z .framer-8s7z82 { height: 64%; overflow: hidden; right: 0px; width: 49%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nBuJ.framer-v-twrjbj .framer-1el4faw-container { height: var(--framer-aspect-ratio-supported, 504px); left: -12px; right: -4px; top: -19px; }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-1dlj9yb, .framer-8nBuJ.framer-v-u3of91 .framer-1dlj9yb, .framer-8nBuJ.framer-v-udt8ck .framer-1dlj9yb, .framer-8nBuJ.framer-v-w09h5i .framer-1dlj9yb, .framer-8nBuJ.framer-v-mtcmin .framer-1dlj9yb { aspect-ratio: unset; bottom: 0px; height: 39%; left: calc(49.69924812030078% - 33% / 2); overflow: hidden; width: 33%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-1dl71ev-container, .framer-8nBuJ.framer-v-u3of91 .framer-1dl71ev-container, .framer-8nBuJ.framer-v-ap25ot .framer-1dl71ev-container, .framer-8nBuJ.framer-v-6ku4bu .framer-1dl71ev-container { aspect-ratio: 1.5294117647058822 / 1; bottom: var(--framer-aspect-ratio-supported, -7px); height: unset; left: 50%; top: -6px; width: 100%; }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-1fwiq0e, .framer-8nBuJ.framer-v-udt8ck .framer-1fwiq0e, .framer-8nBuJ.framer-v-w09h5i .framer-1fwiq0e, .framer-8nBuJ.framer-v-mtcmin .framer-1fwiq0e, .framer-8nBuJ.framer-v-1bh6wlz .framer-1fwiq0e { bottom: -119px; left: 50%; }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-tok8fl, .framer-8nBuJ.framer-v-u3of91 .framer-tok8fl, .framer-8nBuJ.framer-v-ap25ot .framer-tok8fl, .framer-8nBuJ.framer-v-6ku4bu .framer-tok8fl, .framer-8nBuJ.framer-v-w09h5i .framer-tok8fl, .framer-8nBuJ.framer-v-mtcmin .framer-tok8fl { height: auto; width: 208px; }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-83rdvz, .framer-8nBuJ.framer-v-u3of91 .framer-83rdvz, .framer-8nBuJ.framer-v-ap25ot .framer-83rdvz, .framer-8nBuJ.framer-v-6ku4bu .framer-83rdvz, .framer-8nBuJ.framer-v-udt8ck .framer-83rdvz, .framer-8nBuJ.framer-v-w09h5i .framer-83rdvz, .framer-8nBuJ.framer-v-mtcmin .framer-83rdvz, .framer-8nBuJ.framer-v-cfxtny .framer-83rdvz { height: 39%; top: 366px; width: 32%; }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-1v7gimt, .framer-8nBuJ.framer-v-u3of91 .framer-1v7gimt, .framer-8nBuJ.framer-v-ap25ot .framer-1v7gimt, .framer-8nBuJ.framer-v-6ku4bu .framer-1v7gimt { bottom: 78px; height: unset; left: 40px; right: 22px; top: 80px; width: unset; }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-1cul4j, .framer-8nBuJ.framer-v-u3of91 .framer-1cul4j, .framer-8nBuJ.framer-v-ap25ot .framer-1cul4j, .framer-8nBuJ.framer-v-6ku4bu .framer-1cul4j, .framer-8nBuJ.framer-v-udt8ck .framer-1cul4j, .framer-8nBuJ.framer-v-w09h5i .framer-1cul4j, .framer-8nBuJ.framer-v-mtcmin .framer-1cul4j, .framer-8nBuJ.framer-v-cfxtny .framer-1cul4j { bottom: 0px; height: 39%; overflow: hidden; width: 32%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-qbli7h { bottom: 89px; height: unset; left: 41px; right: 37px; top: 100px; width: unset; }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-gy7cjf, .framer-8nBuJ.framer-v-u3of91 .framer-gy7cjf, .framer-8nBuJ.framer-v-w09h5i .framer-gy7cjf { aspect-ratio: unset; height: 58%; left: 0px; text-decoration: none; width: 49%; }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-a3ygcq-container, .framer-8nBuJ.framer-v-u3of91 .framer-a3ygcq-container, .framer-8nBuJ.framer-v-ap25ot .framer-a3ygcq-container, .framer-8nBuJ.framer-v-6ku4bu .framer-a3ygcq-container { bottom: 0px; height: var(--framer-aspect-ratio-supported, 348px); left: -36px; right: -36px; top: unset; width: unset; }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-1fsq8y2, .framer-8nBuJ.framer-v-udt8ck .framer-1fsq8y2, .framer-8nBuJ.framer-v-mtcmin .framer-1fsq8y2, .framer-8nBuJ.framer-v-cfxtny .framer-1fsq8y2 { bottom: -139px; gap: 16px; left: 50%; }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-hg2y2u, .framer-8nBuJ.framer-v-u3of91 .framer-hg2y2u, .framer-8nBuJ.framer-v-ap25ot .framer-hg2y2u, .framer-8nBuJ.framer-v-udt8ck .framer-hg2y2u, .framer-8nBuJ.framer-v-w09h5i .framer-hg2y2u, .framer-8nBuJ.framer-v-mtcmin .framer-hg2y2u, .framer-8nBuJ.framer-v-cfxtny .framer-hg2y2u, .framer-8nBuJ.framer-v-1bh6wlz .framer-hg2y2u { height: 41px; white-space: pre; width: auto; }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-j1yw1c-container, .framer-8nBuJ.framer-v-cfxtny .framer-j1yw1c-container { width: 48px; z-index: 1; }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-1q29ifi, .framer-8nBuJ.framer-v-u3of91 .framer-1q29ifi, .framer-8nBuJ.framer-v-ap25ot .framer-1q29ifi, .framer-8nBuJ.framer-v-6ku4bu .framer-1q29ifi, .framer-8nBuJ.framer-v-udt8ck .framer-1q29ifi, .framer-8nBuJ.framer-v-w09h5i .framer-1q29ifi, .framer-8nBuJ.framer-v-mtcmin .framer-1q29ifi, .framer-8nBuJ.framer-v-cfxtny .framer-1q29ifi { height: 23%; right: 0px; width: 49%; }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-y3xrol, .framer-8nBuJ.framer-v-u3of91 .framer-y3xrol, .framer-8nBuJ.framer-v-ap25ot .framer-y3xrol, .framer-8nBuJ.framer-v-6ku4bu .framer-y3xrol { right: 69px; top: 27px; }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-8s7z82, .framer-8nBuJ.framer-v-u3of91 .framer-8s7z82, .framer-8nBuJ.framer-v-6ku4bu .framer-8s7z82, .framer-8nBuJ.framer-v-udt8ck .framer-8s7z82, .framer-8nBuJ.framer-v-w09h5i .framer-8s7z82, .framer-8nBuJ.framer-v-cfxtny .framer-8s7z82 { bottom: unset; height: 32%; overflow: hidden; right: 0px; top: 159px; width: 49%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-1el4faw-container { height: var(--framer-aspect-ratio-supported, 507px); }\",\".framer-8nBuJ.framer-v-1u2duz9 .framer-e2hcgj-container, .framer-8nBuJ.framer-v-u3of91 .framer-e2hcgj-container, .framer-8nBuJ.framer-v-ap25ot .framer-e2hcgj-container, .framer-8nBuJ.framer-v-6ku4bu .framer-e2hcgj-container, .framer-8nBuJ.framer-v-cfxtny .framer-e2hcgj-container { order: 1; }\",\".framer-8nBuJ.framer-v-u3of91 .framer-qbli7h { bottom: 87px; height: unset; left: 41px; right: 37px; top: 100px; width: unset; }\",\".framer-8nBuJ.framer-v-u3of91 .framer-1fsq8y2 { bottom: 1px; gap: 16px; left: 50%; }\",\".framer-8nBuJ.framer-v-u3of91 .framer-j1yw1c-container, .framer-8nBuJ.framer-v-ap25ot .framer-j1yw1c-container { width: 48px; }\",\".framer-8nBuJ.framer-v-u3of91 .framer-r9ivjj { bottom: -159px; left: 50%; }\",\".framer-8nBuJ.framer-v-ap25ot .framer-1dlj9yb { aspect-ratio: unset; bottom: 0px; height: 39%; left: calc(49.73958333333336% - 33% / 2); overflow: hidden; width: 33%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nBuJ.framer-v-ap25ot .framer-1fwiq0e { bottom: -179px; left: 50%; }\",\".framer-8nBuJ.framer-v-ap25ot .framer-qbli7h { bottom: 88px; height: unset; left: 41px; right: 37px; top: 100px; width: unset; }\",\".framer-8nBuJ.framer-v-ap25ot .framer-gy7cjf, .framer-8nBuJ.framer-v-6ku4bu .framer-gy7cjf, .framer-8nBuJ.framer-v-udt8ck .framer-gy7cjf, .framer-8nBuJ.framer-v-mtcmin .framer-gy7cjf, .framer-8nBuJ.framer-v-cfxtny .framer-gy7cjf { aspect-ratio: unset; height: 58%; left: 0px; width: 49%; }\",\".framer-8nBuJ.framer-v-ap25ot .framer-8s7z82, .framer-8nBuJ.framer-v-mtcmin .framer-8s7z82 { bottom: unset; height: 32%; overflow: hidden; right: 0px; text-decoration: none; top: 159px; width: 49%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nBuJ.framer-v-ap25ot .framer-r9ivjj { bottom: 1px; left: 50%; }\",\".framer-8nBuJ.framer-v-6ku4bu .framer-1dlj9yb, .framer-8nBuJ.framer-v-cfxtny .framer-1dlj9yb { aspect-ratio: unset; bottom: 0px; height: 39%; left: calc(49.69924812030078% - 33% / 2); overflow: hidden; text-decoration: none; width: 33%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nBuJ.framer-v-6ku4bu .framer-1fwiq0e { bottom: -1px; left: -2px; }\",\".framer-8nBuJ.framer-v-6ku4bu .framer-qbli7h { bottom: 81px; height: unset; left: 41px; right: 37px; top: 100px; width: unset; }\",\".framer-8nBuJ.framer-v-46784t.framer-zfghwq, .framer-8nBuJ.framer-v-mp4b2z.framer-zfghwq, .framer-8nBuJ.framer-v-udt8ck.framer-zfghwq, .framer-8nBuJ.framer-v-w09h5i.framer-zfghwq, .framer-8nBuJ.framer-v-mtcmin.framer-zfghwq, .framer-8nBuJ.framer-v-cfxtny.framer-zfghwq { width: 830px; }\",\".framer-8nBuJ.framer-v-46784t .framer-1dlj9yb { height: var(--framer-aspect-ratio-supported, 221px); }\",\".framer-8nBuJ.framer-v-46784t .framer-1dl71ev-container, .framer-8nBuJ.framer-v-mp4b2z .framer-1dl71ev-container { height: var(--framer-aspect-ratio-supported, 235px); }\",\".framer-8nBuJ.framer-v-46784t .framer-1k04xgr-container, .framer-8nBuJ.framer-v-mp4b2z .framer-e2hcgj-container, .framer-8nBuJ.framer-v-w09h5i .framer-1k04xgr-container, .framer-8nBuJ.framer-v-mtcmin .framer-1k04xgr-container, .framer-8nBuJ.framer-v-cfxtny .framer-1k04xgr-container { width: 40px; }\",\".framer-8nBuJ.framer-v-46784t .framer-gy7cjf { height: var(--framer-aspect-ratio-supported, 602px); left: -208px; width: 154%; }\",\".framer-8nBuJ.framer-v-46784t .framer-a3ygcq-container { bottom: -42px; right: 77px; width: var(--framer-aspect-ratio-supported, 1180px); }\",\".framer-8nBuJ.framer-v-46784t .framer-e2hcgj-container { aspect-ratio: 0.8 / 1; height: var(--framer-aspect-ratio-supported, 53px); width: 40px; }\",\".framer-8nBuJ.framer-v-mp4b2z .framer-1dlj9yb { bottom: -366px; height: var(--framer-aspect-ratio-supported, 221px); }\",\".framer-8nBuJ.framer-v-mp4b2z .framer-1k04xgr-container { aspect-ratio: 0.8 / 1; height: var(--framer-aspect-ratio-supported, 52px); width: 40px; }\",\".framer-8nBuJ.framer-v-mp4b2z .framer-1v7gimt { height: 75px; left: calc(50.00000000000002% - 248px / 2); top: calc(51.11111111111113% - 75px / 2); width: 248px; }\",\".framer-8nBuJ.framer-v-mp4b2z .framer-a3ygcq-container { bottom: unset; height: var(--framer-aspect-ratio-supported, 310px); left: -120px; right: unset; top: 1px; width: 569px; }\",\".framer-8nBuJ.framer-v-mp4b2z .framer-y3xrol { left: unset; right: 26px; top: 59px; width: 302px; }\",\".framer-8nBuJ.framer-v-mp4b2z .framer-1el4faw-container { height: var(--framer-aspect-ratio-supported, 403px); left: -34px; right: -47px; top: -19px; }\",\".framer-8nBuJ.framer-v-udt8ck .framer-1dl71ev-container, .framer-8nBuJ.framer-v-w09h5i .framer-1dl71ev-container, .framer-8nBuJ.framer-v-mtcmin .framer-1dl71ev-container, .framer-8nBuJ.framer-v-cfxtny .framer-1dl71ev-container { aspect-ratio: 1.5294117647058822 / 1; bottom: var(--framer-aspect-ratio-supported, -8px); height: unset; left: 50%; top: -6px; width: 148%; }\",\".framer-8nBuJ.framer-v-udt8ck .framer-tok8fl, .framer-8nBuJ.framer-v-1bh6wlz .framer-tok8fl { height: auto; order: 0; width: 208px; }\",\".framer-8nBuJ.framer-v-udt8ck .framer-1k04xgr-container, .framer-8nBuJ.framer-v-udt8ck .framer-e2hcgj-container, .framer-8nBuJ.framer-v-w09h5i .framer-e2hcgj-container, .framer-8nBuJ.framer-v-mtcmin .framer-e2hcgj-container, .framer-8nBuJ.framer-v-1bh6wlz .framer-1k04xgr-container, .framer-8nBuJ.framer-v-1bh6wlz .framer-e2hcgj-container { order: 1; width: 40px; }\",\".framer-8nBuJ.framer-v-udt8ck .framer-1v7gimt { bottom: 78px; height: unset; left: 20px; right: 26px; top: 80px; width: unset; }\",\".framer-8nBuJ.framer-v-udt8ck .framer-qbli7h, .framer-8nBuJ.framer-v-w09h5i .framer-qbli7h, .framer-8nBuJ.framer-v-mtcmin .framer-qbli7h, .framer-8nBuJ.framer-v-cfxtny .framer-qbli7h { bottom: unset; height: 105px; left: calc(50.54151624548739% - 159px / 2); top: calc(52.43445692883897% - 105px / 2); width: 159px; }\",\".framer-8nBuJ.framer-v-udt8ck .framer-a3ygcq-container, .framer-8nBuJ.framer-v-w09h5i .framer-a3ygcq-container, .framer-8nBuJ.framer-v-mtcmin .framer-a3ygcq-container, .framer-8nBuJ.framer-v-cfxtny .framer-a3ygcq-container { bottom: -18px; height: var(--framer-aspect-ratio-supported, 366px); left: -173px; right: -113px; top: unset; width: unset; }\",\".framer-8nBuJ.framer-v-udt8ck .framer-j1yw1c-container, .framer-8nBuJ.framer-v-1bh6wlz .framer-j1yw1c-container { width: 40px; z-index: 1; }\",\".framer-8nBuJ.framer-v-udt8ck .framer-y3xrol, .framer-8nBuJ.framer-v-w09h5i .framer-y3xrol, .framer-8nBuJ.framer-v-mtcmin .framer-y3xrol, .framer-8nBuJ.framer-v-cfxtny .framer-y3xrol { left: 32px; right: 29px; top: 37px; }\",\".framer-8nBuJ.framer-v-udt8ck .framer-1el4faw-container { bottom: -130px; height: var(--framer-aspect-ratio-supported, 348px); left: -12px; right: -4px; top: unset; }\",\".framer-8nBuJ.framer-v-w09h5i .framer-1v7gimt, .framer-8nBuJ.framer-v-mtcmin .framer-1v7gimt, .framer-8nBuJ.framer-v-cfxtny .framer-1v7gimt { bottom: 78px; height: unset; left: 20px; right: 22px; top: 80px; width: unset; }\",\".framer-8nBuJ.framer-v-w09h5i .framer-1fsq8y2 { bottom: 11px; gap: 16px; left: -1px; }\",\".framer-8nBuJ.framer-v-w09h5i .framer-j1yw1c-container { aspect-ratio: 0.8 / 1; height: var(--framer-aspect-ratio-supported, 62px); width: 40px; z-index: 1; }\",\".framer-8nBuJ.framer-v-w09h5i .framer-1el4faw-container, .framer-8nBuJ.framer-v-mtcmin .framer-1el4faw-container, .framer-8nBuJ.framer-v-cfxtny .framer-1el4faw-container { bottom: -130px; left: -12px; right: -4px; top: unset; }\",\".framer-8nBuJ.framer-v-w09h5i .framer-r9ivjj { bottom: -89px; left: unset; right: 0px; }\",\".framer-8nBuJ.framer-v-mtcmin .framer-j1yw1c-container { aspect-ratio: 0.6666666666666666 / 1; height: var(--framer-aspect-ratio-supported, 60px); width: 40px; z-index: 1; }\",\".framer-8nBuJ.framer-v-mtcmin .framer-r9ivjj { bottom: -19px; left: unset; right: 0px; }\",\".framer-8nBuJ.framer-v-cfxtny .framer-1fwiq0e { bottom: -9px; left: -1px; }\",\".framer-8nBuJ.framer-v-cfxtny .framer-tok8fl { height: auto; width: 173px; }\",\".framer-8nBuJ.framer-v-zl7frh.framer-zfghwq { height: 353px; padding: 16px; width: 340px; }\",\".framer-8nBuJ.framer-v-zl7frh .framer-1dlj9yb, .framer-8nBuJ.framer-v-ip5kcg .framer-1dlj9yb { height: var(--framer-aspect-ratio-supported, 177px); }\",\".framer-8nBuJ.framer-v-zl7frh .framer-1dl71ev-container, .framer-8nBuJ.framer-v-ip5kcg .framer-1dl71ev-container { height: var(--framer-aspect-ratio-supported, 183px); }\",\".framer-8nBuJ.framer-v-zl7frh .framer-1k04xgr-container, .framer-8nBuJ.framer-v-ip5kcg .framer-1k04xgr-container, .framer-8nBuJ.framer-v-ip5kcg .framer-j1yw1c-container, .framer-8nBuJ.framer-v-8cmg7q .framer-1k04xgr-container, .framer-8nBuJ.framer-v-8cmg7q .framer-j1yw1c-container, .framer-8nBuJ.framer-v-1x9lcfy .framer-1k04xgr-container, .framer-8nBuJ.framer-v-1x9lcfy .framer-j1yw1c-container { width: 20px; }\",\".framer-8nBuJ.framer-v-zl7frh .framer-83rdvz { height: 60%; left: 320px; top: 2px; width: 49%; }\",\".framer-8nBuJ.framer-v-zl7frh .framer-1cul4j { bottom: -406px; }\",\".framer-8nBuJ.framer-v-zl7frh .framer-gy7cjf { height: var(--framer-aspect-ratio-supported, 338px); left: unset; right: -184px; top: -5px; width: 676px; }\",\".framer-8nBuJ.framer-v-zl7frh .framer-a3ygcq-container { bottom: -9px; right: 41px; top: -10px; width: var(--framer-aspect-ratio-supported, 654px); }\",\".framer-8nBuJ.framer-v-zl7frh .framer-1q29ifi { bottom: -103px; left: -4px; right: unset; top: unset; }\",\".framer-8nBuJ.framer-v-zl7frh .framer-8s7z82 { bottom: -272px; right: 10px; }\",\".framer-8nBuJ.framer-v-zl7frh .framer-e2hcgj-container, .framer-8nBuJ.framer-v-ip5kcg .framer-e2hcgj-container, .framer-8nBuJ.framer-v-8cmg7q .framer-e2hcgj-container, .framer-8nBuJ.framer-v-1x9lcfy .framer-e2hcgj-container { aspect-ratio: 0.8 / 1; height: var(--framer-aspect-ratio-supported, 52px); width: 20px; }\",\".framer-8nBuJ.framer-v-1bh6wlz.framer-zfghwq, .framer-8nBuJ.framer-v-19ehs7l.framer-zfghwq { width: 340px; }\",\".framer-8nBuJ.framer-v-1bh6wlz .framer-1dlj9yb, .framer-8nBuJ.framer-v-19ehs7l .framer-1dlj9yb { aspect-ratio: unset; bottom: 102px; height: 24%; left: 0px; overflow: hidden; width: 49%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nBuJ.framer-v-1bh6wlz .framer-1dl71ev-container, .framer-8nBuJ.framer-v-19ehs7l .framer-1dl71ev-container { aspect-ratio: 1.5294117647058822 / 1; bottom: var(--framer-aspect-ratio-supported, -6px); height: unset; left: 50%; top: -6px; width: 159%; }\",\".framer-8nBuJ.framer-v-1bh6wlz .framer-83rdvz { height: 152px; left: 148px; right: 0px; top: -1px; width: unset; }\",\".framer-8nBuJ.framer-v-1bh6wlz .framer-1v7gimt { height: 65px; left: calc(49.30555555555558% - 89px / 2); top: calc(49.34210526315791% - 65px / 2); width: 89px; }\",\".framer-8nBuJ.framer-v-1bh6wlz .framer-1cul4j, .framer-8nBuJ.framer-v-19ehs7l .framer-1cul4j { bottom: 101px; height: 24%; overflow: hidden; width: 49%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nBuJ.framer-v-1bh6wlz .framer-1bbkmat, .framer-8nBuJ.framer-v-19ehs7l .framer-1bbkmat { bottom: unset; height: 76px; left: calc(49.30555555555558% - 113px / 2); right: unset; top: calc(50.349650349650375% - 76px / 2); width: 113px; }\",\".framer-8nBuJ.framer-v-1bh6wlz .framer-qbli7h, .framer-8nBuJ.framer-v-19ehs7l .framer-qbli7h { bottom: unset; height: 68px; left: calc(53.09734513274339% - 104px / 2); top: calc(51.315789473684234% - 68px / 2); width: 104px; }\",\".framer-8nBuJ.framer-v-1bh6wlz .framer-gy7cjf, .framer-8nBuJ.framer-v-19ehs7l .framer-gy7cjf { aspect-ratio: unset; height: 25%; left: 0px; width: 49%; }\",\".framer-8nBuJ.framer-v-1bh6wlz .framer-a3ygcq-container, .framer-8nBuJ.framer-v-19ehs7l .framer-a3ygcq-container { bottom: unset; height: var(--framer-aspect-ratio-supported, 166px); left: -94px; right: -68px; top: -1px; width: unset; }\",\".framer-8nBuJ.framer-v-1bh6wlz .framer-1fsq8y2 { bottom: -276px; gap: 16px; left: unset; right: -150px; width: 206%; }\",\".framer-8nBuJ.framer-v-1bh6wlz .framer-1q29ifi { bottom: 254px; height: unset; left: -2px; right: unset; top: 158px; width: 49%; }\",\".framer-8nBuJ.framer-v-1bh6wlz .framer-y3xrol, .framer-8nBuJ.framer-v-19ehs7l .framer-y3xrol { left: 24px; right: 24px; top: 47px; }\",\".framer-8nBuJ.framer-v-1bh6wlz .framer-8s7z82 { bottom: unset; height: 31%; overflow: hidden; right: 0px; top: 158px; width: 49%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nBuJ.framer-v-1bh6wlz .framer-1el4faw-container { bottom: -3px; height: unset; left: unset; right: -47px; top: -2px; width: var(--framer-aspect-ratio-supported, 222px); }\",\".framer-8nBuJ.framer-v-19ehs7l .framer-1fwiq0e, .framer-8nBuJ.framer-v-19ehs7l .framer-r9ivjj { bottom: -9px; gap: 8px; left: 50%; }\",\".framer-8nBuJ.framer-v-19ehs7l .framer-tok8fl { height: auto; order: 0; white-space: pre; width: auto; }\",\".framer-8nBuJ.framer-v-19ehs7l .framer-1k04xgr-container { aspect-ratio: 0.6666666666666666 / 1; height: var(--framer-aspect-ratio-supported, 62px); order: 1; width: 20px; }\",\".framer-8nBuJ.framer-v-19ehs7l .framer-83rdvz { height: 25%; left: 148px; top: -1px; width: 49%; }\",\".framer-8nBuJ.framer-v-19ehs7l .framer-1v7gimt { height: 65px; left: calc(49.30555555555558% - 89px / 2); top: calc(51.973684210526336% - 65px / 2); width: 89px; }\",\".framer-8nBuJ.framer-v-19ehs7l .framer-1fsq8y2 { bottom: -16px; gap: 8px; left: 52%; width: 104%; }\",\".framer-8nBuJ.framer-v-19ehs7l .framer-hg2y2u { height: 42px; order: 0; width: 79px; }\",\".framer-8nBuJ.framer-v-19ehs7l .framer-j1yw1c-container { order: 1; width: 20px; z-index: 1; }\",\".framer-8nBuJ.framer-v-19ehs7l .framer-1q29ifi { height: 31%; left: -2px; right: unset; top: 158px; width: 49%; }\",\".framer-8nBuJ.framer-v-19ehs7l .framer-8s7z82 { bottom: unset; height: 32%; overflow: hidden; right: 0px; top: 157px; width: 49%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nBuJ.framer-v-19ehs7l .framer-1el4faw-container { bottom: -5px; height: var(--framer-aspect-ratio-supported, 193px); left: -32px; right: -47px; top: unset; }\",\".framer-8nBuJ.framer-v-19ehs7l .framer-e2hcgj-container { order: 1; width: 20px; }\",\".framer-8nBuJ.framer-v-ip5kcg.framer-zfghwq { height: 660px; padding: 16px; width: 340px; }\",\".framer-8nBuJ.framer-v-ip5kcg .framer-gy7cjf { height: var(--framer-aspect-ratio-supported, 638px); left: unset; right: -475px; top: -5px; width: 1276px; }\",\".framer-8nBuJ.framer-v-ip5kcg .framer-a3ygcq-container { bottom: unset; height: var(--framer-aspect-ratio-supported, 109px); left: -21px; right: unset; top: -10px; width: 97%; }\",\".framer-8nBuJ.framer-v-ip5kcg .framer-1fsq8y2 { left: 47%; width: 50%; }\",\".framer-8nBuJ.framer-v-ip5kcg .framer-8s7z82 { bottom: -512px; height: 78%; left: 0px; right: unset; width: 97%; }\",\".framer-8nBuJ.framer-v-ip5kcg .framer-1el4faw-container { height: var(--framer-aspect-ratio-supported, 174px); left: -161px; right: unset; top: -79px; width: 157%; }\",\".framer-8nBuJ.framer-v-8cmg7q.framer-zfghwq, .framer-8nBuJ.framer-v-1x9lcfy.framer-zfghwq { height: 660px; padding: 16px; width: 402px; }\",\".framer-8nBuJ.framer-v-8cmg7q .framer-1epckv1, .framer-8nBuJ.framer-v-1x9lcfy .framer-1epckv1 { height: min-content; }\",\".framer-8nBuJ.framer-v-8cmg7q .framer-mrlanc, .framer-8nBuJ.framer-v-1x9lcfy .framer-mrlanc { flex: none; flex-direction: column; height: 610px; }\",\".framer-8nBuJ.framer-v-8cmg7q .framer-1dlj9yb { align-content: center; align-items: center; aspect-ratio: unset; bottom: unset; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; left: unset; order: 2; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nBuJ.framer-v-8cmg7q .framer-1dl71ev-container, .framer-8nBuJ.framer-v-1x9lcfy .framer-1dl71ev-container { aspect-ratio: 1.0724637681159421 / 1; height: var(--framer-aspect-ratio-supported, 186px); left: 50%; order: 1; top: -79px; width: 100%; z-index: 1; }\",\".framer-8nBuJ.framer-v-8cmg7q .framer-1fwiq0e { bottom: -122px; gap: 8px; height: 120px; left: calc(50.00000000000002% - 100% / 2); order: 0; z-index: 5; }\",\".framer-8nBuJ.framer-v-8cmg7q .framer-tok8fl, .framer-8nBuJ.framer-v-1x9lcfy .framer-tok8fl { height: auto; white-space: pre; width: auto; }\",\".framer-8nBuJ.framer-v-8cmg7q .framer-gy7cjf { aspect-ratio: unset; flex: 1 0 0px; height: 1px; left: unset; order: 0; position: relative; top: unset; width: 100%; }\",\".framer-8nBuJ.framer-v-8cmg7q .framer-a3ygcq-container, .framer-8nBuJ.framer-v-1x9lcfy .framer-a3ygcq-container { aspect-ratio: 1.8333333333333333 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 109px); left: -56px; right: unset; top: -3px; width: 128%; }\",\".framer-8nBuJ.framer-v-8cmg7q .framer-1fsq8y2 { bottom: -68px; left: 50%; }\",\".framer-8nBuJ.framer-v-8cmg7q .framer-hg2y2u, .framer-8nBuJ.framer-v-1x9lcfy .framer-hg2y2u { height: 23px; white-space: pre; width: auto; }\",\".framer-8nBuJ.framer-v-8cmg7q .framer-8s7z82 { bottom: unset; flex: 1 0 0px; height: 1px; order: 1; overflow: hidden; position: relative; right: unset; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nBuJ.framer-v-8cmg7q .framer-1el4faw-container, .framer-8nBuJ.framer-v-1x9lcfy .framer-1el4faw-container { aspect-ratio: 1.6813186813186813 / 1; height: var(--framer-aspect-ratio-supported, 119px); left: -24px; right: unset; top: -12px; width: 124%; }\",\".framer-8nBuJ.framer-v-8cmg7q .framer-r9ivjj { bottom: -49px; gap: 8px; left: 50%; }\",\".framer-8nBuJ.framer-v-8cmg7q .framer-lgvsoi, .framer-8nBuJ.framer-v-1x9lcfy .framer-lgvsoi { height: 24px; }\",\".framer-8nBuJ.framer-v-1x9lcfy .framer-1dlj9yb { align-content: center; align-items: center; aspect-ratio: unset; bottom: unset; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; left: unset; order: 2; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nBuJ.framer-v-1x9lcfy .framer-1fwiq0e { bottom: -22px; gap: 8px; height: 120px; left: calc(50.00000000000002% - 100% / 2); order: 0; z-index: 4; }\",\".framer-8nBuJ.framer-v-1x9lcfy .framer-gy7cjf { aspect-ratio: unset; flex: 1 0 0px; height: 1px; left: unset; order: 0; position: relative; text-decoration: none; top: unset; width: 100%; }\",\".framer-8nBuJ.framer-v-1x9lcfy .framer-1fsq8y2 { bottom: -18px; left: 50%; }\",\".framer-8nBuJ.framer-v-1x9lcfy .framer-8s7z82 { bottom: unset; flex: 1 0 0px; height: 1px; order: 1; overflow: hidden; position: relative; right: unset; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nBuJ.framer-v-1x9lcfy .framer-r9ivjj { bottom: 1px; gap: 8px; left: 50%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 648\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Sm5ek1JqR\":{\"layout\":[\"fixed\",\"fixed\"]},\"CjxZAJy1o\":{\"layout\":[\"fixed\",\"fixed\"]},\"gPocWN2lm\":{\"layout\":[\"fixed\",\"fixed\"]},\"BGgJ5nsVG\":{\"layout\":[\"fixed\",\"fixed\"]},\"VFeTm86Dn\":{\"layout\":[\"fixed\",\"fixed\"]},\"rYpfJ4p8z\":{\"layout\":[\"fixed\",\"fixed\"]},\"sWBP2PaTS\":{\"layout\":[\"fixed\",\"fixed\"]},\"bybqxgy1K\":{\"layout\":[\"fixed\",\"fixed\"]},\"RmnD9MbP1\":{\"layout\":[\"fixed\",\"fixed\"]},\"HJWVXUdTA\":{\"layout\":[\"fixed\",\"fixed\"]},\"o7LRDcLyJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"xsnA2ZN5J\":{\"layout\":[\"fixed\",\"fixed\"]},\"LxmDYeCxv\":{\"layout\":[\"fixed\",\"fixed\"]},\"PqCNJcKna\":{\"layout\":[\"fixed\",\"fixed\"]},\"Vr9Ac2qBt\":{\"layout\":[\"fixed\",\"fixed\"]},\"tquFbXIUq\":{\"layout\":[\"fixed\",\"fixed\"]},\"kVHYbR1wW\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameryOUsuICbg=withCSS(Component,css,\"framer-8nBuJ\");export default FrameryOUsuICbg;FrameryOUsuICbg.displayName=\"Variant 1\";FrameryOUsuICbg.defaultProps={height:648,width:1200};addPropertyControls(FrameryOUsuICbg,{variant:{options:[\"J2M_wJDW1\",\"Sm5ek1JqR\",\"CjxZAJy1o\",\"gPocWN2lm\",\"BGgJ5nsVG\",\"VFeTm86Dn\",\"rYpfJ4p8z\",\"sWBP2PaTS\",\"bybqxgy1K\",\"RmnD9MbP1\",\"HJWVXUdTA\",\"o7LRDcLyJ\",\"xsnA2ZN5J\",\"LxmDYeCxv\",\"PqCNJcKna\",\"Vr9Ac2qBt\",\"tquFbXIUq\",\"kVHYbR1wW\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Tablet\",\"Variant 8\",\"Variant 9\",\"Variant 10\",\"Variant 11\",\"Variant 12\",\"Phone\",\"Variant 15\",\"Variant 16\",\"Variant 17\",\"Variant 18\",\"Variant 19\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameryOUsuICbg,[{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:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]},...VideoFonts,...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryOUsuICbg\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Sm5ek1JqR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CjxZAJy1o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gPocWN2lm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BGgJ5nsVG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VFeTm86Dn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rYpfJ4p8z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sWBP2PaTS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bybqxgy1K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RmnD9MbP1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HJWVXUdTA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"o7LRDcLyJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xsnA2ZN5J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LxmDYeCxv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PqCNJcKna\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Vr9Ac2qBt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tquFbXIUq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kVHYbR1wW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"648\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yOUsuICbg.map", "// Generated by Framer (1bcc82d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}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/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Carousel1 from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bJnHw5VokAqNKlg6Rp7L/SlideShow.js\";import WebsitesEcommerceButton from\"#framer/local/canvasComponent/CVdofT00G/CVdofT00G.js\";import NewMenuColors from\"#framer/local/canvasComponent/qE6IfyOIS/qE6IfyOIS.js\";import Footer from\"#framer/local/canvasComponent/yCywixkJE/yCywixkJE.js\";import Variant1 from\"#framer/local/canvasComponent/yOUsuICbg/yOUsuICbg.js\";import EBCCardWebsite from\"#framer/local/canvasComponent/zGlNPF8AZ/zGlNPF8AZ.js\";import HubspotReview from\"#framer/local/canvasComponent/ZUOAaU6C2/ZUOAaU6C2.js\";import*as sharedStyle from\"#framer/local/css/HgbbYrwvT/HgbbYrwvT.js\";import metadataProvider from\"#framer/local/webPageMetadata/I9zBnJ8ts/I9zBnJ8ts.js\";const NewMenuColorsFonts=getFonts(NewMenuColors);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const Variant1Fonts=getFonts(Variant1);const WebsitesEcommerceButtonFonts=getFonts(WebsitesEcommerceButton);const TickerFonts=getFonts(Ticker);const EBCCardWebsiteFonts=getFonts(EBCCardWebsite);const ContainerWithFX=withFX(Container);const CarouselFonts=getFonts(Carousel);const ImageWithFX=withFX(Image);const HubspotReviewFonts=getFonts(HubspotReview);const Carousel1Fonts=getFonts(Carousel1);const SlideshowFonts=getFonts(Slideshow);const EmbedFonts=getFonts(Embed);const FooterFonts=getFonts(Footer);const breakpoints={GvYAkJVeM:\"(min-width: 830px) and (max-width: 1219px)\",H1eNVZtuq:\"(min-width: 1220px)\",JYFzh1mxl:\"(max-width: 829px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-2UStg\";const variantClassNames={GvYAkJVeM:\"framer-v-5mqku8\",H1eNVZtuq:\"framer-v-p6fame\",JYFzh1mxl:\"framer-v-1q8q9dv\"};const transition1={damping:37,delay:.5,mass:1,stiffness:182,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-94};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition2={damping:30,delay:0,mass:1,stiffness:59,type:\"spring\"};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:120};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:180};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Phone 2\":\"JYFzh1mxl\",Desktop:\"H1eNVZtuq\",Tablet:\"GvYAkJVeM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"H1eNVZtuq\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"JYFzh1mxl\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"JYFzh1mxl\")return false;return true;};const elementId=useRouteElementId(\"bFCjjJXP9\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"UA6czoIo3\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"wtt9uZHYb\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"H1eNVZtuq\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-p6fame\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JYFzh1mxl:{y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-wvwqdu-container\",\"data-framer-appear-id\":\"wvwqdu\",initial:animation1,nodeId:\"glwJJ1WCx\",optimized:true,rendersWithMotion:true,scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{variant:\"uCNs34v23\"},JYFzh1mxl:{variant:\"uCNs34v23\"}},children:/*#__PURE__*/_jsx(NewMenuColors,{height:\"100%\",id:\"glwJJ1WCx\",layoutId:\"glwJJ1WCx\",style:{width:\"100%\"},variant:\"MNDN__3sR\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-es3thp\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3xyfhv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JYFzh1mxl:{y:(componentViewport?.y||0)+0+89+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:648,width:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qvs79y-container\",\"data-framer-name\":\"Grid complete\",name:\"Grid complete\",nodeId:\"cZA2MRH1t\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{variant:\"rYpfJ4p8z\"},JYFzh1mxl:{variant:\"Vr9Ac2qBt\"}},children:/*#__PURE__*/_jsx(Variant1,{height:\"100%\",id:\"cZA2MRH1t\",layoutId:\"cZA2MRH1t\",name:\"Grid complete\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"J2M_wJDW1\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-knccff\",\"data-framer-name\":\"Our Services\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kl7ptq\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ggbz8v\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-16948s7\",\"data-styles-preset\":\"HgbbYrwvT\",style:{\"--framer-text-color\":\"var(--token-1feadf05-e145-4403-8b82-fc8fd6dfae92, rgb(255, 255, 255))\"},children:[\"Our \",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Services\"})})]})}),className:\"framer-16usa08\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h7qwfl\",\"data-framer-name\":\"Services\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1220px) - 80px) / 3, 1px)`},JYFzh1mxl:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1220px) - 32px)`,y:(componentViewport?.y||0)+0+737+80+0+0+84.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,width:`max((min(${componentViewport?.width||\"100vw\"}, 1220px) - 176px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xq3ul1-container\",nodeId:\"dJ3YsdstR\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(WebsitesEcommerceButton,{height:\"100%\",id:\"dJ3YsdstR\",layoutId:\"dJ3YsdstR\",style:{width:\"100%\"},variant:\"vHZweLKpX\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1220px) - 80px) / 3, 1px)`},JYFzh1mxl:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1220px) - 32px)`,y:(componentViewport?.y||0)+0+737+80+0+0+84.8+0+304}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,width:`max((min(${componentViewport?.width||\"100vw\"}, 1220px) - 176px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1asf4w6-container\",nodeId:\"rNkpbZbCw\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(WebsitesEcommerceButton,{height:\"100%\",id:\"rNkpbZbCw\",layoutId:\"rNkpbZbCw\",style:{width:\"100%\"},variant:\"YX8KAdn5L\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1220px) - 80px) / 3, 1px)`},JYFzh1mxl:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1220px) - 32px)`,y:(componentViewport?.y||0)+0+737+80+0+0+84.8+0+608}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,width:`max((min(${componentViewport?.width||\"100vw\"}, 1220px) - 176px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ns5gbn-container\",nodeId:\"JHcuxqU8F\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(WebsitesEcommerceButton,{height:\"100%\",id:\"JHcuxqU8F\",layoutId:\"JHcuxqU8F\",style:{width:\"100%\"},variant:\"WzYZ1JE2L\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gofqh2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-agyroc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-16948s7\",\"data-styles-preset\":\"HgbbYrwvT\",style:{\"--framer-text-color\":\"var(--token-1feadf05-e145-4403-8b82-fc8fd6dfae92, rgb(255, 255, 255))\"},children:[\"Our \",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Clients\"})})]})}),className:\"framer-mnn6qi\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p3j728\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zaimfe-container\",id:\"zaimfe\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"J7htovpUS\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:28,overflow:false},gap:64,height:\"100%\",hoverFactor:.3,id:\"J7htovpUS\",layoutId:\"J7htovpUS\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mwy8gz\",\"data-framer-name\":\"Inukshuk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jlr1f\",\"data-framer-name\":\"Inukshuk_logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 189 33\"><path d=\"M 11.463 30.403 L 12.892 27.205 L 14.317 30.403 Z M 9.721 32.683 L 10.445 32.683 L 11.191 31.027 L 14.583 31.027 L 15.316 32.682 L 16.08 32.682 L 13.24 26.373 L 12.553 26.373 Z M 20.594 29.846 L 20.594 27.088 L 22.181 27.088 C 23.195 27.088 23.864 27.553 23.864 28.445 C 23.864 29.254 23.186 29.824 22.145 29.824 Z M 19.888 32.682 L 20.594 32.682 L 20.594 30.471 L 22.118 30.471 C 23.452 30.471 24.578 29.774 24.578 28.417 C 24.578 27.183 23.651 26.432 22.236 26.432 L 19.888 26.432 Z M 28.486 32.682 L 29.187 32.682 L 29.187 26.432 L 28.477 26.432 L 28.487 32.682 Z M 35.239 32.682 L 35.958 32.682 L 35.958 27.083 L 38.061 27.083 L 38.061 26.432 L 33.126 26.432 L 33.126 27.083 L 35.229 27.083 L 35.239 32.683 Z M 42.344 30.394 L 43.786 27.21 L 45.211 30.407 Z M 40.584 32.682 L 41.308 32.682 L 42.05 31.027 L 45.464 31.027 L 46.215 32.682 L 46.975 32.682 L 44.135 26.373 L 43.475 26.373 L 40.585 32.683 Z M 50.751 32.682 L 54.984 32.682 L 54.984 32.031 L 51.457 32.031 L 51.457 26.431 L 50.751 26.431 Z M 64.695 32.682 L 65.382 32.682 L 65.382 27.617 L 67.666 30.968 L 67.711 30.968 L 69.995 27.612 L 69.995 32.692 L 70.705 32.692 L 70.705 26.432 L 69.986 26.432 L 67.711 29.847 L 65.427 26.427 L 64.708 26.427 Z M 76.223 30.402 L 77.653 27.205 L 79.077 30.403 L 76.223 30.403 Z M 74.482 32.682 L 75.206 32.682 L 75.947 31.027 L 79.362 31.027 L 80.095 32.682 L 80.859 32.682 L 78 26.373 L 77.34 26.373 L 74.48 32.683 Z M 84.649 32.682 L 85.336 32.682 L 85.336 27.558 L 89.393 32.696 L 89.959 32.696 L 89.959 26.432 L 89.271 26.432 L 89.271 31.47 L 85.323 26.45 L 84.663 26.45 Z M 95.481 30.394 L 96.905 27.21 L 98.335 30.407 Z M 93.735 32.682 L 94.472 32.682 L 95.218 31.027 L 98.628 31.027 L 99.338 32.682 L 100.103 32.682 L 97.245 26.373 L 96.585 26.373 L 93.735 32.683 Z M 106.444 32.791 C 107.373 32.789 108.268 32.447 108.963 31.831 L 108.963 29.331 L 106.376 29.331 L 106.376 29.969 L 108.28 29.969 L 108.28 31.524 C 107.765 31.931 107.128 32.153 106.471 32.153 C 104.947 32.153 103.988 31.04 103.988 29.543 C 103.951 28.898 104.172 28.266 104.603 27.784 C 105.033 27.302 105.636 27.011 106.281 26.975 C 106.313 26.975 106.344 26.97 106.376 26.97 C 107.081 26.948 107.766 27.207 108.28 27.69 L 108.737 27.151 C 108.094 26.582 107.256 26.283 106.398 26.319 C 104.664 26.318 103.257 27.724 103.255 29.458 L 103.255 29.58 C 103.215 30.44 103.537 31.277 104.143 31.888 C 104.749 32.499 105.584 32.828 106.444 32.795 Z M 113.124 32.682 L 117.701 32.682 L 117.701 32.035 L 113.811 32.035 L 113.811 29.847 L 117.23 29.847 L 117.23 29.2 L 113.811 29.2 L 113.811 27.06 L 117.633 27.06 L 117.633 26.418 L 113.119 26.418 L 113.119 32.682 Z M 121.64 32.682 L 122.332 32.682 L 122.332 27.617 L 124.616 30.968 L 124.648 30.968 L 126.936 27.612 L 126.936 32.692 L 127.642 32.692 L 127.642 26.432 L 126.922 26.432 L 124.657 29.847 L 122.373 26.427 L 121.64 26.427 Z M 131.97 32.682 L 136.542 32.682 L 136.542 32.035 L 132.675 32.035 L 132.675 29.847 L 136.099 29.847 L 136.099 29.2 L 132.675 29.2 L 132.675 27.06 L 136.497 27.06 L 136.497 26.418 L 131.983 26.418 Z M 140.522 32.682 L 141.21 32.682 L 141.21 27.558 L 145.266 32.696 L 145.832 32.696 L 145.832 26.432 L 145.162 26.432 L 145.162 31.47 L 141.214 26.45 L 140.54 26.45 Z M 151.806 32.682 L 152.521 32.682 L 152.521 27.083 L 154.624 27.083 L 154.624 26.432 L 149.717 26.432 L 149.717 27.083 L 151.82 27.083 L 151.806 32.683 Z M 164.411 32.682 L 165.121 32.682 L 165.121 26.432 L 164.411 26.432 Z M 169.508 32.682 L 170.196 32.682 L 170.196 27.558 L 174.252 32.696 L 174.818 32.696 L 174.818 26.432 L 174.13 26.432 L 174.13 31.47 L 170.182 26.45 L 169.522 26.45 Z M 182.004 32.791 C 182.961 32.81 183.878 32.406 184.51 31.687 L 184.044 31.235 C 183.527 31.81 182.791 32.139 182.018 32.139 C 180.653 32.117 179.562 30.995 179.58 29.629 C 179.58 29.602 179.58 29.575 179.585 29.548 C 179.555 28.897 179.784 28.26 180.224 27.778 C 180.663 27.296 181.276 27.009 181.927 26.979 C 181.959 26.979 181.991 26.975 182.018 26.975 C 182.769 26.97 183.488 27.273 184.008 27.815 L 184.492 27.295 C 183.858 26.635 182.974 26.274 182.059 26.301 C 181.222 26.297 180.417 26.626 179.823 27.216 C 179.228 27.805 178.892 28.607 178.888 29.444 L 178.888 29.566 C 178.859 30.395 179.16 31.202 179.726 31.809 C 180.292 32.415 181.076 32.772 181.905 32.8 L 182.022 32.8 L 182.004 32.79 Z M 188.087 32.682 L 188.897 32.682 L 188.897 31.742 L 188.087 31.742 Z M 3.923 32.791 C 4.881 32.81 5.799 32.406 6.433 31.687 L 5.968 31.235 C 5.451 31.81 4.714 32.139 3.941 32.139 C 3.284 32.128 2.658 31.857 2.202 31.384 C 1.745 30.912 1.496 30.277 1.508 29.62 C 1.508 29.598 1.508 29.57 1.513 29.548 C 1.483 28.897 1.713 28.26 2.152 27.778 C 2.592 27.296 3.205 27.009 3.856 26.979 C 3.887 26.979 3.919 26.975 3.946 26.975 C 4.692 26.98 5.402 27.291 5.913 27.834 L 6.402 27.314 C 5.765 26.658 4.883 26.297 3.969 26.319 C 3.114 26.314 2.294 26.657 1.697 27.268 C 1.099 27.879 0.775 28.707 0.799 29.561 L 0.799 29.58 C 0.75 31.305 2.108 32.744 3.833 32.795 L 3.964 32.795 L 3.924 32.791 Z M 19.656 6.609 L 19.95 17.766 C 20 19.539 20.312 20.52 20.877 20.715 C 20.932 20.733 21.284 20.774 21.913 20.851 C 22.447 20.918 22.723 21.009 22.723 21.117 C 22.723 21.294 22.519 21.38 22.112 21.38 C 21.438 21.38 20.742 21.38 20.013 21.339 L 18.819 21.299 L 17.811 21.339 C 17.119 21.366 16.499 21.379 15.947 21.379 C 15.54 21.379 15.364 21.289 15.364 21.117 C 15.364 20.945 15.594 20.909 16.052 20.877 L 16.983 20.769 C 17.345 20.633 17.598 20.308 17.643 19.923 C 17.761 19.118 17.815 18.304 17.806 17.49 L 18.046 1.756 C 18.046 1.154 18.182 0.856 18.39 0.856 C 18.53 0.856 18.86 1.127 19.371 1.666 C 20.827 3.221 23.573 6.061 27.611 10.182 C 29.416 12.059 31.365 14.076 33.459 16.237 L 33.59 16.237 L 33.328 4.311 C 33.328 3.859 33.292 3.407 33.224 2.959 C 33.138 2.502 32.836 2.115 32.414 1.919 C 31.958 1.787 31.482 1.734 31.008 1.76 C 30.723 1.76 30.583 1.68 30.583 1.52 C 30.583 1.362 30.813 1.281 31.27 1.281 C 31.8 1.281 32.442 1.281 33.183 1.321 L 34.486 1.362 L 35.413 1.322 C 35.971 1.296 36.529 1.283 37.087 1.282 C 37.493 1.282 37.697 1.362 37.697 1.521 C 37.697 1.679 37.543 1.761 37.222 1.761 C 36.34 1.761 35.793 2.054 35.599 2.638 C 35.495 3.118 35.44 3.606 35.44 4.098 L 35.146 20.864 C 35.146 21.411 35.011 21.674 34.803 21.674 C 34.59 21.674 34.305 21.479 33.898 21.09 C 32.202 19.403 29.588 16.798 26.06 13.275 C 24.675 11.899 23.322 10.491 22.003 9.051 L 19.747 6.581 L 19.657 6.609 Z M 45.756 12.877 L 45.756 8.997 C 45.756 5.827 45.738 3.949 45.702 3.366 C 45.652 2.516 45.268 2.009 44.558 1.856 C 44.216 1.792 43.869 1.765 43.522 1.774 C 43.224 1.774 43.07 1.693 43.07 1.534 C 43.07 1.376 43.264 1.294 43.653 1.294 C 44.164 1.294 44.87 1.294 45.82 1.335 C 46.77 1.376 47.321 1.376 47.53 1.376 C 47.742 1.376 48.235 1.376 49.058 1.336 C 49.881 1.295 50.46 1.295 50.799 1.295 C 51.139 1.295 51.387 1.376 51.387 1.535 C 51.387 1.693 51.247 1.774 50.98 1.774 C 50.722 1.778 50.464 1.805 50.211 1.855 C 49.605 1.959 49.28 2.461 49.225 3.371 C 49.189 3.954 49.171 5.835 49.171 9.011 L 49.171 12.737 C 49.171 15.966 49.863 18.146 51.243 19.281 C 52.186 20.026 53.362 20.412 54.563 20.371 C 55.931 20.418 57.257 19.899 58.23 18.937 C 58.948 18.146 59.41 17.156 59.555 16.097 C 59.727 14.845 59.799 13.581 59.772 12.317 L 59.772 8.991 C 59.772 5.811 59.754 3.931 59.718 3.351 C 59.664 2.497 59.284 1.995 58.574 1.836 C 58.258 1.773 57.937 1.746 57.615 1.755 C 57.316 1.755 57.163 1.674 57.163 1.515 C 57.163 1.357 57.348 1.275 57.719 1.275 C 58.497 1.275 59.519 1.298 60.776 1.357 L 62.025 1.317 C 62.803 1.289 63.395 1.276 63.807 1.276 C 64.218 1.276 64.363 1.357 64.363 1.516 C 64.363 1.674 64.204 1.755 63.888 1.755 C 63.626 1.759 63.368 1.787 63.115 1.836 C 62.513 1.94 62.187 2.446 62.133 3.346 C 62.097 3.93 62.079 5.807 62.079 8.978 L 62.079 11.818 C 62.114 13.29 61.972 14.762 61.654 16.2 C 61.349 17.594 60.615 18.858 59.555 19.814 C 58.012 21.111 56.044 21.792 54.029 21.727 C 51.441 21.727 49.474 21.117 48.131 19.895 C 46.557 18.493 45.761 16.155 45.757 12.876 Z M 75.236 8.997 L 75.236 10.168 L 75.371 10.168 C 77.236 8.232 79.087 6.282 80.925 4.32 C 81.807 3.276 82.25 2.61 82.25 2.33 C 82.25 2.027 82.132 1.85 81.893 1.797 C 81.653 1.737 81.535 1.657 81.535 1.534 C 81.535 1.412 81.671 1.294 81.942 1.294 C 82.119 1.294 82.558 1.294 83.259 1.335 C 83.959 1.376 84.43 1.376 84.679 1.376 C 84.927 1.376 85.489 1.376 86.249 1.336 C 87.008 1.295 87.524 1.295 87.79 1.295 C 88.057 1.295 88.243 1.376 88.243 1.535 C 88.243 1.693 88.111 1.774 87.836 1.774 C 87.306 1.779 86.786 1.874 86.293 2.068 C 85.208 2.525 84.23 3.203 83.421 4.058 C 80.803 6.613 78.89 8.526 77.682 9.802 C 78.121 10.385 79.31 11.724 81.242 13.813 C 83.1 15.835 84.317 17.11 84.892 17.639 C 85.737 18.449 86.343 19.001 86.696 19.286 C 87.303 19.8 87.986 20.217 88.722 20.52 C 89.237 20.742 89.786 20.873 90.346 20.905 C 90.576 20.905 90.689 20.977 90.689 21.122 C 90.689 21.262 90.477 21.384 90.052 21.384 L 87.74 21.384 C 86.89 21.384 86.279 21.384 85.908 21.33 C 85.29 21.289 84.69 21.108 84.153 20.8 C 83.603 20.452 83.086 20.052 82.611 19.607 C 82.068 19.145 80.829 17.793 78.893 15.55 C 77.084 13.465 76.003 12.171 75.65 11.674 L 75.357 11.267 L 75.221 11.267 L 75.221 13.7 C 75.221 16.73 75.248 18.62 75.302 19.376 C 75.357 20.244 75.673 20.724 76.261 20.81 C 76.691 20.878 77.125 20.914 77.563 20.914 C 77.794 20.914 77.907 20.986 77.907 21.131 C 77.907 21.276 77.74 21.393 77.405 21.393 C 76.835 21.393 76.098 21.393 75.189 21.353 L 73.566 21.312 C 73.407 21.312 72.906 21.312 72.064 21.352 C 71.223 21.393 70.608 21.393 70.214 21.393 C 69.821 21.393 69.685 21.303 69.685 21.131 C 69.685 20.959 69.879 20.923 70.273 20.891 C 70.535 20.855 70.803 20.828 71.083 20.81 C 71.49 20.72 71.747 20.235 71.851 19.349 C 71.941 18.657 71.987 16.767 71.987 13.673 L 71.987 8.997 C 71.987 5.827 71.969 3.949 71.933 3.366 C 71.883 2.516 71.499 2.009 70.789 1.856 C 70.446 1.793 70.098 1.765 69.749 1.774 C 69.449 1.774 69.296 1.693 69.296 1.534 C 69.296 1.376 69.491 1.294 69.88 1.294 C 70.409 1.294 71.128 1.294 72.032 1.335 L 73.602 1.376 C 73.796 1.376 74.298 1.376 75.112 1.336 C 75.926 1.295 76.496 1.295 76.817 1.295 C 77.138 1.295 77.374 1.376 77.374 1.535 C 77.374 1.693 77.251 1.774 77.003 1.774 C 76.545 1.729 76.085 1.842 75.7 2.095 C 75.413 2.433 75.268 2.869 75.293 3.312 C 75.257 3.936 75.234 5.831 75.234 8.997 Z M 98.889 21.755 C 97.563 21.796 96.243 21.56 95.013 21.063 C 94.665 20.906 94.46 20.542 94.506 20.163 C 94.506 19.204 94.552 18.046 94.642 16.681 C 94.678 16.224 94.782 15.993 94.963 15.993 C 95.144 15.993 95.226 16.143 95.226 16.445 C 95.239 16.907 95.321 17.363 95.466 17.798 C 96.008 19.588 97.274 20.484 99.264 20.484 C 100.255 20.53 101.223 20.176 101.951 19.503 C 102.511 18.969 102.828 18.228 102.828 17.454 C 102.828 15.984 101.96 14.568 100.223 13.203 L 99.007 12.243 C 96.383 10.191 95.072 8.093 95.072 5.948 C 95.037 4.543 95.667 3.204 96.772 2.335 C 97.908 1.395 99.386 0.924 101.209 0.924 C 102.403 0.928 103.588 1.082 104.746 1.376 C 104.995 1.444 105.117 1.552 105.117 1.693 C 105.045 2.756 105.009 3.821 105.008 4.886 C 105.008 5.415 104.909 5.696 104.714 5.696 C 104.52 5.696 104.452 5.536 104.452 5.216 C 104.429 4.571 104.186 3.954 103.764 3.466 C 103.062 2.593 101.984 2.109 100.865 2.163 C 100.028 2.117 99.204 2.387 98.555 2.918 C 97.99 3.418 97.678 4.145 97.704 4.899 C 97.712 5.536 97.923 6.154 98.306 6.663 C 98.944 7.45 99.69 8.143 100.522 8.721 L 101.268 9.281 C 102.572 10.195 103.713 11.322 104.642 12.615 C 105.299 13.641 105.64 14.838 105.623 16.056 C 105.693 17.936 104.737 19.706 103.127 20.679 C 101.85 21.444 100.376 21.818 98.889 21.755 Z M 118.694 9.743 L 128.829 9.743 C 128.938 9.743 128.992 9.68 128.992 9.557 L 128.992 8.997 C 128.992 5.827 128.974 3.949 128.938 3.366 C 128.888 2.516 128.504 2.009 127.793 1.856 C 127.45 1.793 127.102 1.765 126.753 1.774 C 126.455 1.774 126.301 1.693 126.301 1.534 C 126.301 1.376 126.486 1.294 126.862 1.294 C 127.391 1.294 128.119 1.294 129.037 1.335 C 129.96 1.376 130.507 1.376 130.683 1.376 C 130.86 1.376 131.371 1.376 132.212 1.336 C 133.053 1.295 133.659 1.295 134.035 1.295 C 134.406 1.295 134.591 1.376 134.591 1.535 C 134.591 1.693 134.433 1.774 134.112 1.774 C 133.854 1.778 133.596 1.805 133.343 1.855 C 132.741 1.959 132.416 2.466 132.361 3.366 C 132.325 3.949 132.307 5.826 132.307 8.996 L 132.307 13.678 C 132.307 16.685 132.352 18.58 132.443 19.353 C 132.547 20.222 132.895 20.701 133.479 20.787 C 133.926 20.851 134.379 20.887 134.831 20.891 C 135.116 20.891 135.238 20.964 135.238 21.108 C 135.238 21.248 135.061 21.371 134.709 21.371 C 134.053 21.371 133.243 21.357 132.275 21.33 L 130.575 21.29 C 130.417 21.29 129.919 21.29 129.087 21.33 C 128.255 21.37 127.644 21.37 127.255 21.37 C 126.866 21.37 126.694 21.28 126.694 21.108 C 126.694 20.936 126.889 20.9 127.278 20.868 C 127.545 20.832 127.807 20.805 128.087 20.788 C 128.494 20.697 128.752 20.213 128.856 19.326 C 128.947 18.634 128.992 16.744 128.992 13.65 L 128.992 11.312 C 129.001 11.235 128.947 11.164 128.87 11.154 L 118.694 11.154 C 118.619 11.142 118.549 11.192 118.536 11.267 C 118.531 11.282 118.531 11.297 118.536 11.312 L 118.536 13.65 C 118.536 16.658 118.581 18.553 118.671 19.326 C 118.775 20.195 119.123 20.674 119.707 20.76 C 120.155 20.823 120.607 20.86 121.059 20.864 C 121.344 20.864 121.466 20.936 121.466 21.081 C 121.466 21.221 121.29 21.343 120.937 21.343 C 120.286 21.343 119.476 21.33 118.504 21.303 L 116.803 21.262 C 116.645 21.262 116.143 21.262 115.302 21.302 C 114.461 21.343 113.841 21.343 113.452 21.343 C 113.063 21.343 112.923 21.253 112.923 21.081 C 112.923 20.909 113.117 20.873 113.506 20.841 C 113.773 20.805 114.035 20.778 114.316 20.76 C 114.723 20.67 114.981 20.186 115.085 19.3 C 115.175 18.607 115.22 16.717 115.22 13.623 L 115.22 8.997 C 115.22 5.827 115.202 3.949 115.166 3.366 C 115.107 2.516 114.732 2.014 114.022 1.856 C 113.679 1.793 113.331 1.765 112.982 1.774 C 112.683 1.774 112.529 1.693 112.529 1.534 C 112.529 1.376 112.715 1.294 113.086 1.294 C 113.615 1.294 114.348 1.294 115.266 1.335 C 116.184 1.376 116.736 1.376 116.912 1.376 C 117.088 1.376 117.599 1.376 118.441 1.336 C 119.282 1.295 119.888 1.295 120.263 1.295 C 120.639 1.295 120.819 1.376 120.819 1.535 C 120.819 1.693 120.661 1.774 120.34 1.774 C 120.082 1.778 119.824 1.805 119.571 1.855 C 118.97 1.959 118.644 2.466 118.59 3.366 C 118.554 3.949 118.536 5.826 118.536 8.996 L 118.536 9.566 C 118.536 9.68 118.59 9.743 118.694 9.743 Z M 143.202 12.877 L 143.202 8.997 C 143.202 5.827 143.184 3.949 143.148 3.366 C 143.098 2.516 142.714 2.009 142.004 1.856 C 141.661 1.793 141.313 1.765 140.964 1.774 C 140.665 1.774 140.511 1.693 140.511 1.534 C 140.511 1.376 140.706 1.294 141.095 1.294 C 141.61 1.294 142.311 1.294 143.261 1.335 C 144.211 1.376 144.763 1.376 144.975 1.376 C 145.188 1.376 145.681 1.376 146.504 1.336 C 147.327 1.295 147.906 1.295 148.245 1.295 C 148.58 1.295 148.828 1.376 148.828 1.535 C 148.828 1.693 148.688 1.774 148.403 1.774 C 148.145 1.778 147.888 1.805 147.635 1.855 C 147.033 1.959 146.707 2.461 146.653 3.371 C 146.617 3.954 146.599 5.835 146.599 9.011 L 146.599 12.737 C 146.599 15.966 147.291 18.146 148.67 19.281 C 149.612 20.028 150.789 20.415 151.99 20.371 C 153.352 20.413 154.671 19.895 155.64 18.937 C 156.361 18.147 156.824 17.157 156.969 16.097 C 157.137 14.844 157.209 13.583 157.182 12.317 L 157.182 8.991 C 157.182 5.811 157.164 3.931 157.128 3.351 C 157.073 2.497 156.693 1.995 155.983 1.836 C 155.669 1.773 155.349 1.746 155.029 1.755 C 154.726 1.755 154.577 1.674 154.577 1.515 C 154.577 1.357 154.762 1.275 155.138 1.275 C 155.916 1.275 156.933 1.298 158.19 1.357 L 159.439 1.317 C 160.033 1.294 160.627 1.28 161.221 1.276 C 161.628 1.276 161.781 1.357 161.781 1.516 C 161.781 1.674 161.623 1.755 161.302 1.755 C 161.044 1.759 160.786 1.786 160.533 1.836 C 159.927 1.94 159.606 2.442 159.547 3.346 C 159.516 3.93 159.498 5.807 159.493 8.978 L 159.493 11.818 C 159.534 13.29 159.398 14.761 159.086 16.2 C 158.78 17.594 158.046 18.857 156.987 19.814 C 155.444 21.111 153.476 21.792 151.461 21.727 C 148.874 21.727 146.906 21.117 145.559 19.895 C 143.989 18.493 143.202 16.155 143.202 12.876 Z M 173.473 8.997 L 173.473 10.168 L 173.608 10.168 C 175.474 8.233 177.326 6.284 179.162 4.32 C 180.044 3.276 180.492 2.61 180.492 2.33 C 180.492 2.05 180.37 1.85 180.13 1.797 C 179.89 1.737 179.773 1.657 179.773 1.534 C 179.773 1.412 179.908 1.294 180.18 1.294 C 180.356 1.294 180.795 1.294 181.496 1.335 C 182.197 1.376 182.667 1.376 182.916 1.376 C 183.165 1.376 183.726 1.376 184.485 1.336 C 185.245 1.295 185.761 1.295 186.028 1.295 C 186.29 1.295 186.48 1.376 186.48 1.535 C 186.48 1.693 186.349 1.774 186.073 1.774 C 185.545 1.778 185.023 1.878 184.531 2.068 C 183.446 2.525 182.468 3.203 181.659 4.058 C 179.04 6.613 177.127 8.526 175.919 9.802 C 176.363 10.385 177.548 11.724 179.479 13.813 C 181.338 15.835 182.554 17.11 183.129 17.639 C 183.979 18.449 184.58 19.001 184.933 19.286 C 185.54 19.8 186.224 20.217 186.959 20.52 C 187.474 20.742 188.023 20.873 188.583 20.905 C 188.814 20.905 188.927 20.977 188.927 21.122 C 188.927 21.262 188.714 21.384 188.289 21.384 L 185.978 21.384 C 185.128 21.384 184.517 21.384 184.146 21.33 C 183.528 21.289 182.928 21.108 182.391 20.8 C 181.841 20.451 181.325 20.052 180.849 19.607 C 180.306 19.145 179.067 17.793 177.131 15.55 C 175.322 13.465 174.241 12.171 173.889 11.674 L 173.595 11.267 L 173.459 11.267 L 173.459 13.7 C 173.459 16.73 173.486 18.62 173.54 19.376 C 173.595 20.244 173.911 20.724 174.499 20.81 C 174.929 20.878 175.363 20.914 175.802 20.914 C 176.032 20.914 176.146 20.986 176.146 21.131 C 176.146 21.276 175.978 21.393 175.643 21.393 C 175.074 21.393 174.336 21.393 173.427 21.353 C 172.518 21.312 171.98 21.312 171.804 21.312 C 171.627 21.312 171.143 21.312 170.302 21.352 C 169.461 21.393 168.846 21.393 168.457 21.393 C 168.068 21.393 167.923 21.303 167.923 21.131 C 167.923 20.959 168.122 20.923 168.511 20.891 C 168.774 20.855 169.04 20.828 169.321 20.81 C 169.728 20.72 169.986 20.235 170.09 19.349 C 170.18 18.657 170.225 16.767 170.225 13.673 L 170.225 8.997 C 170.225 5.827 170.207 3.949 170.171 3.366 C 170.121 2.516 169.737 2.009 169.027 1.856 C 168.685 1.792 168.338 1.765 167.991 1.774 C 167.688 1.774 167.539 1.693 167.539 1.534 C 167.539 1.376 167.733 1.294 168.122 1.294 C 168.651 1.294 169.371 1.294 170.275 1.335 L 171.844 1.376 C 172.039 1.376 172.541 1.376 173.355 1.336 C 174.169 1.295 174.739 1.295 175.06 1.295 C 175.381 1.295 175.616 1.376 175.616 1.535 C 175.616 1.693 175.494 1.774 175.245 1.774 C 174.786 1.729 174.325 1.843 173.938 2.095 C 173.654 2.435 173.504 2.869 173.531 3.312 C 173.5 3.936 173.477 5.831 173.473 8.997 Z M 3.166 13.677 L 3.166 8.997 C 3.166 5.827 3.148 3.949 3.112 3.366 C 3.058 2.516 2.759 2.018 2.208 1.878 C 1.907 1.807 1.598 1.772 1.289 1.774 C 0.982 1.774 0.829 1.684 0.829 1.507 C 0.829 1.367 1.041 1.295 1.466 1.295 C 1.819 1.295 2.425 1.295 3.288 1.335 C 4.148 1.376 4.691 1.376 4.912 1.376 C 5.129 1.376 5.6 1.376 6.4 1.336 C 7.2 1.295 7.784 1.295 8.15 1.295 C 8.521 1.295 8.711 1.362 8.711 1.507 C 8.711 1.652 8.58 1.774 8.331 1.774 C 8.06 1.774 7.789 1.801 7.521 1.855 C 6.925 1.959 6.604 2.461 6.554 3.366 C 6.518 3.949 6.495 5.826 6.495 8.996 L 6.495 13.678 C 6.495 16.848 6.531 18.788 6.604 19.498 C 6.671 20.276 7.011 20.715 7.657 20.801 C 8.101 20.864 8.548 20.901 9.001 20.905 C 9.277 20.905 9.408 20.977 9.408 21.122 C 9.408 21.262 9.24 21.384 8.906 21.384 C 8.232 21.384 7.413 21.371 6.45 21.344 L 4.763 21.303 C 4.6 21.303 4.103 21.303 3.257 21.343 C 2.411 21.384 1.8 21.384 1.412 21.384 C 1.022 21.384 0.882 21.294 0.882 21.122 C 0.882 20.95 1.077 20.914 1.466 20.882 C 1.728 20.846 1.995 20.819 2.276 20.801 C 2.701 20.711 2.963 20.271 3.049 19.489 C 3.139 18.702 3.153 16.762 3.153 13.682 L 3.166 13.682 L 3.166 13.678 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path></svg>',svgContentId:11420048109,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13o80pe\",\"data-framer-name\":\"Stillman\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-iv499i\",\"data-framer-name\":\"stillman_LOGO\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 179 48\"><g transform=\"translate(0.027 0.234)\"><path d=\"M 0 0 L 178.721 0 L 178.721 47.187 L 0 47.187 Z\" fill=\"transparent\"></path><path d=\"M 70.608 17.533 C 69.793 16.188 67.554 14.908 64.978 14.908 C 61.655 14.908 60.061 16.288 60.061 18.04 C 60.061 20.094 62.503 20.666 65.351 21.004 C 70.303 21.611 74.912 22.888 74.912 28.513 C 74.912 33.763 70.232 36.019 64.942 36.019 C 60.091 36.019 56.362 34.537 54.598 30.229 L 58.329 28.309 C 59.38 30.901 62.126 32.045 65.01 32.045 C 67.825 32.045 70.47 31.07 70.47 28.51 C 70.47 26.287 68.13 25.377 64.974 25.043 C 60.127 24.471 55.652 23.191 55.652 17.907 C 55.652 13.059 60.467 11.074 64.843 11.038 C 68.539 11.038 72.372 12.081 74.169 15.717 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 81.503 15.438 L 81.503 20.149 L 86.115 20.149 L 86.115 23.685 L 81.47 23.685 L 81.47 30.853 C 81.47 32.435 82.35 33.212 83.64 33.212 C 84.285 33.212 85.031 33.01 85.64 32.705 L 86.792 36.205 C 85.604 36.675 84.622 36.877 83.365 36.913 C 79.738 37.049 77.362 34.996 77.362 30.853 L 77.362 23.685 L 74.242 23.685 L 74.242 20.149 L 77.362 20.149 L 77.362 15.876 L 81.502 15.438 Z M 93.708 15.438 C 93.708 18.635 88.825 18.635 88.825 15.438 C 88.825 12.24 93.708 12.238 93.708 15.438 Z M 89.201 36.711 L 93.338 36.711 L 93.338 20.048 L 89.201 20.048 Z M 101.171 13.182 L 97.067 13.182 L 97.067 36.714 L 101.171 36.714 Z M 108.902 13.182 L 104.797 13.182 L 104.797 36.714 L 108.902 36.714 Z M 123.654 36.711 L 123.654 27.824 C 123.654 25.634 122.502 23.649 120.23 23.649 C 117.991 23.649 116.669 25.634 116.669 27.824 L 116.669 36.711 L 112.532 36.711 L 112.532 20.081 L 116.365 20.081 L 116.669 22.099 C 117.553 20.416 119.484 19.811 121.078 19.811 C 123.078 19.811 125.081 20.621 126.027 22.908 C 127.52 20.552 129.454 19.88 131.625 19.88 C 136.371 19.88 138.715 22.775 138.715 27.756 L 138.715 36.711 L 134.577 36.711 L 134.577 27.756 C 134.577 25.566 133.661 23.717 131.422 23.717 C 129.183 23.717 127.792 25.634 127.792 27.824 L 127.792 36.711 Z M 154.818 20.116 L 158.788 20.116 L 158.788 36.714 L 154.886 36.714 L 154.683 34.29 C 153.734 36.243 151.122 37.185 149.256 37.221 C 144.304 37.254 140.641 34.225 140.641 28.403 C 140.641 22.68 144.474 19.685 149.354 19.717 C 151.593 19.717 153.731 20.76 154.68 22.411 L 154.818 20.117 Z M 144.782 28.399 C 144.782 31.564 146.988 33.449 149.734 33.449 C 156.245 33.449 156.245 23.382 149.734 23.382 C 146.985 23.382 144.782 25.234 144.782 28.399 Z M 174.592 36.711 L 174.592 28.029 C 174.592 25.504 173.201 23.584 170.556 23.584 C 168.013 23.584 166.285 25.705 166.285 28.23 L 166.285 36.714 L 162.18 36.714 L 162.18 20.081 L 165.876 20.081 L 166.147 22.336 C 167.843 20.686 169.538 19.844 171.64 19.844 C 175.574 19.844 178.726 22.771 178.726 27.99 L 178.726 36.708 Z M 31.866 9.501 L 16.603 9.504 C 12.757 9.504 9.631 12.611 9.631 16.425 C 9.631 20.227 12.737 23.321 16.564 23.343 C 16.57 23.343 16.577 23.346 16.584 23.346 L 31.873 23.346 C 33.389 23.342 34.622 24.566 34.629 26.082 C 34.623 27.599 33.39 28.825 31.873 28.822 L 19.303 28.818 C 19.297 28.818 19.29 28.822 19.283 28.822 L 16.623 28.822 C 9.782 28.822 4.213 23.295 4.213 16.503 C 4.213 9.713 9.778 4.185 16.623 4.185 L 25.225 4.185 C 25.782 4.187 26.318 3.968 26.713 3.576 C 27.108 3.183 27.331 2.649 27.333 2.092 C 27.333 0.936 26.393 0 25.228 0 L 16.629 0 C 7.461 0 0.004 7.402 0.004 16.503 C 0.004 25.605 7.461 33.007 16.629 33.007 L 19.31 33.007 C 19.317 33.007 19.323 33.004 19.33 33.004 L 31.876 33.007 C 35.719 33.007 38.848 29.9 38.848 26.086 C 38.848 22.271 35.719 19.165 31.876 19.165 L 16.606 19.165 C 15.084 19.165 13.847 17.936 13.847 16.429 C 13.847 14.918 15.084 13.689 16.607 13.689 L 31.87 13.686 C 38.71 13.686 44.279 19.21 44.279 26.004 C 44.279 32.562 38.829 37.699 31.869 37.699 L 19.822 37.699 C 18.945 37.699 18.159 38.239 17.852 39.054 C 17.542 39.869 17.772 40.791 18.43 41.364 L 24.516 46.67 C 24.915 47.018 25.412 47.19 25.906 47.19 C 26.493 47.19 27.076 46.95 27.491 46.482 C 28.261 45.612 28.175 44.292 27.301 43.528 L 25.412 41.888 L 31.873 41.888 C 41.195 41.888 48.498 34.911 48.498 26.008 C 48.491 16.903 41.035 9.501 31.866 9.501 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 25.408 41.881 L 22.407 41.793 L 27.437 43.668 Z M 125.972 39.772 L 123.602 39.772 L 123.602 39.324 L 128.846 39.324 L 128.846 39.772 L 126.476 39.772 L 126.476 45.826 L 125.972 45.826 Z M 129.456 41.231 L 129.476 42.049 C 129.764 41.429 130.422 41.185 131.011 41.185 C 131.358 41.175 131.695 41.27 132.003 41.455 L 131.797 41.828 C 131.323 41.548 130.736 41.543 130.258 41.816 C 129.78 42.089 129.485 42.598 129.486 43.148 L 129.486 45.825 L 129.028 45.825 L 129.028 41.231 Z M 137.427 41.231 L 137.427 45.826 L 136.965 45.826 L 136.965 44.848 C 136.568 45.512 135.846 45.912 135.073 45.898 C 133.78 45.898 132.723 44.932 132.723 43.525 C 132.723 42.121 133.78 41.173 135.073 41.173 C 135.823 41.173 136.582 41.517 136.965 42.232 L 136.965 41.228 Z M 133.181 43.528 C 133.181 44.682 134.026 45.452 135.073 45.452 C 137.649 45.452 137.649 41.612 135.073 41.612 C 134.026 41.612 133.181 42.375 133.181 43.529 Z M 139.405 41.231 L 139.405 42.05 C 139.762 41.416 140.41 41.156 141.055 41.15 C 142.292 41.15 143.143 41.904 143.143 43.177 L 143.143 45.826 L 142.685 45.826 L 142.685 43.184 C 142.685 42.141 142.037 41.585 141.035 41.594 C 140.079 41.604 139.415 42.32 139.415 43.268 L 139.415 45.826 L 138.953 45.826 L 138.953 41.231 Z M 147.799 42.069 C 147.331 41.66 146.869 41.585 146.355 41.585 C 145.632 41.575 144.941 41.845 144.961 42.43 C 144.98 43.044 145.786 43.164 146.365 43.268 C 147.19 43.408 148.322 43.548 148.277 44.617 C 148.25 45.631 147.19 45.9 146.375 45.9 C 145.56 45.9 144.755 45.592 144.352 44.98 L 144.689 44.682 C 145.075 45.231 145.766 45.462 146.385 45.462 C 146.944 45.462 147.799 45.316 147.828 44.588 C 147.848 43.928 147.079 43.798 146.319 43.675 C 145.419 43.528 144.529 43.359 144.522 42.44 C 144.512 41.536 145.422 41.147 146.358 41.156 C 147.033 41.156 147.622 41.341 148.083 41.77 L 147.799 42.07 Z M 150.037 39.317 L 149.578 39.317 L 149.578 45.826 L 150.037 45.826 L 150.037 39.316 Z M 156.052 41.231 L 156.052 45.826 L 155.594 45.826 L 155.594 44.848 C 155.197 45.512 154.475 45.912 153.702 45.898 C 152.409 45.898 151.352 44.932 151.352 43.525 C 151.352 42.121 152.409 41.173 153.702 41.173 C 154.452 41.173 155.211 41.517 155.594 42.232 L 155.594 41.228 Z M 151.81 43.528 C 151.81 44.682 152.651 45.452 153.702 45.452 C 156.278 45.452 156.278 41.612 153.702 41.612 C 152.651 41.612 151.81 42.375 151.81 43.529 Z M 158.442 39.847 L 158.442 41.231 L 160.016 41.231 L 160.016 41.615 L 158.442 41.615 L 158.442 44.412 C 158.442 45.036 158.573 45.472 159.293 45.472 C 159.519 45.472 159.771 45.397 160.006 45.286 L 160.167 45.66 C 159.876 45.8 159.584 45.89 159.296 45.89 C 158.311 45.89 157.993 45.316 157.993 44.412 L 157.993 41.616 L 157.008 41.616 L 157.008 41.232 L 157.993 41.232 L 157.993 39.893 L 158.442 39.848 Z M 161.963 39.733 C 161.963 40.214 161.223 40.214 161.223 39.733 C 161.22 39.249 161.963 39.249 161.963 39.733 Z M 161.354 45.826 L 161.812 45.826 L 161.812 41.212 L 161.354 41.212 Z M 163.293 43.538 C 163.293 42.079 164.344 41.15 165.644 41.15 C 166.946 41.15 167.994 42.08 167.994 43.538 C 167.994 45 166.943 45.891 165.644 45.891 C 164.344 45.891 163.293 44.997 163.293 43.538 Z M 167.545 43.538 C 167.545 42.348 166.694 41.576 165.644 41.576 C 164.593 41.576 163.742 42.349 163.742 43.538 C 163.742 44.731 164.593 45.445 165.644 45.445 C 166.694 45.445 167.545 44.727 167.545 43.538 Z M 169.784 41.231 L 169.784 42.05 C 170.138 41.416 170.786 41.156 171.431 41.15 C 172.668 41.15 173.519 41.904 173.519 43.177 L 173.519 45.826 L 173.061 45.826 L 173.061 43.184 C 173.061 42.141 172.416 41.585 171.411 41.594 C 170.455 41.604 169.791 42.32 169.791 43.268 L 169.791 45.826 L 169.332 45.826 L 169.332 41.231 Z M 178.174 42.069 C 177.706 41.66 177.247 41.585 176.73 41.585 C 176.01 41.575 175.316 41.845 175.336 42.43 C 175.355 43.044 176.161 43.164 176.74 43.268 C 177.565 43.408 178.697 43.548 178.652 44.617 C 178.625 45.631 177.565 45.9 176.75 45.9 C 175.935 45.9 175.13 45.592 174.727 44.98 L 175.064 44.682 C 175.447 45.231 176.141 45.462 176.76 45.462 C 177.319 45.462 178.174 45.316 178.203 44.588 C 178.223 43.928 177.454 43.798 176.694 43.675 C 175.794 43.528 174.907 43.359 174.897 42.44 C 174.887 41.536 175.794 41.147 176.733 41.156 C 177.408 41.156 177.997 41.341 178.455 41.77 L 178.174 42.07 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path></g></svg>',svgContentId:12363817880,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9gtuwk\",\"data-framer-name\":\"EBC\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1yz70l0\",\"data-framer-name\":\"EBC_logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 259 54\"><path d=\"M 96.418 15.196 L 96.788 15.196 L 96.788 18.236 L 96.418 18.236 C 96.288 17.702 96.124 17.37 95.933 17.234 C 95.743 17.097 95.329 17.032 94.691 17.032 L 91.631 17.032 L 91.631 21.51 C 91.631 21.82 91.701 22.044 91.837 22.169 C 91.973 22.294 92.207 22.359 92.534 22.359 L 94.691 22.359 C 95.465 22.359 95.999 22.316 96.293 22.234 C 96.587 22.153 96.837 21.989 97.039 21.76 C 97.241 21.532 97.459 21.156 97.693 20.638 L 98.063 20.638 L 97.497 22.975 L 88.602 22.975 L 88.602 22.61 C 89.157 22.61 89.528 22.469 89.718 22.18 C 89.908 21.891 90.001 21.38 90.001 20.65 L 90.001 12.827 C 90.001 12.064 89.903 11.541 89.707 11.257 C 89.511 10.974 89.141 10.833 88.602 10.833 L 88.602 10.468 L 97.497 10.468 L 97.497 12.56 L 97.262 12.56 C 97.137 11.96 96.957 11.568 96.718 11.372 C 96.483 11.176 95.971 11.078 95.188 11.078 L 91.63 11.078 L 91.63 16.428 L 95.084 16.428 C 95.552 16.428 95.874 16.34 96.048 16.171 C 96.216 15.991 96.342 15.671 96.418 15.196 Z M 110.102 12.175 L 107.041 16.179 L 110.184 20.521 C 110.751 21.306 111.192 21.834 111.502 22.095 C 111.813 22.362 112.194 22.525 112.646 22.597 L 112.646 22.962 L 107.7 22.962 L 107.7 22.597 C 108.332 22.58 108.643 22.287 108.643 21.714 C 108.643 21.344 108.49 20.946 108.19 20.532 L 106.017 17.509 L 103.637 20.625 C 103.266 21.11 103.081 21.523 103.081 21.855 C 103.081 22.292 103.402 22.537 104.051 22.597 L 104.051 22.962 L 100.102 22.962 L 100.102 22.597 C 100.548 22.597 100.935 22.493 101.251 22.281 C 101.567 22.068 101.932 21.692 102.346 21.148 L 105.598 16.92 L 102.618 12.77 C 102.106 12.05 101.67 11.55 101.316 11.255 C 100.976 10.97 100.546 10.815 100.102 10.819 L 100.102 10.454 L 104.84 10.454 L 104.84 10.819 C 104.241 10.819 103.942 11.037 103.942 11.473 C 103.942 11.707 104.045 11.974 104.258 12.263 L 106.6 15.563 L 108.909 12.611 C 109.269 12.148 109.449 11.761 109.449 11.451 C 109.449 11.031 109.116 10.824 108.463 10.824 L 108.463 10.46 L 112.412 10.46 L 112.412 10.824 C 111.905 10.824 111.508 10.906 111.214 11.07 C 110.914 11.228 110.544 11.598 110.102 12.175 Z M 125.997 10.275 L 125.997 14.007 L 125.627 14.007 C 125.333 12.847 124.859 11.997 124.211 11.447 C 123.563 10.902 122.696 10.624 121.618 10.624 C 120.213 10.624 119.101 11.136 118.279 12.16 C 117.456 13.184 117.048 14.546 117.048 16.251 C 117.048 18.12 117.484 19.623 118.35 20.767 C 119.216 21.906 120.349 22.477 121.754 22.477 C 123.699 22.477 125.131 21.563 126.057 19.727 L 126.384 20.037 C 125.984 21.017 125.282 21.843 124.38 22.397 C 123.459 22.974 122.408 23.262 121.226 23.262 C 120.141 23.271 119.072 22.995 118.126 22.462 C 117.199 21.952 116.436 21.188 115.926 20.261 C 115.408 19.324 115.152 18.251 115.152 17.036 C 115.152 15.047 115.757 13.396 116.961 12.095 C 118.17 10.793 119.69 10.139 121.531 10.139 C 122.146 10.139 122.931 10.249 123.879 10.472 C 124.412 10.597 124.783 10.662 124.984 10.662 C 125.3 10.662 125.524 10.532 125.649 10.27 L 125.997 10.27 Z M 138.498 20.614 L 138.498 16.98 L 131.771 16.98 L 131.771 20.614 C 131.771 21.354 131.874 21.872 132.081 22.161 C 132.288 22.455 132.664 22.597 133.203 22.597 L 133.203 22.962 L 128.742 22.962 L 128.742 22.597 C 129.281 22.597 129.652 22.449 129.848 22.155 C 130.044 21.861 130.142 21.344 130.142 20.614 L 130.142 12.813 C 130.142 12.045 130.044 11.522 129.843 11.238 C 129.641 10.955 129.276 10.819 128.742 10.819 L 128.742 10.454 L 133.203 10.454 L 133.203 10.819 C 132.664 10.819 132.288 10.972 132.081 11.271 C 131.874 11.571 131.771 12.088 131.771 12.813 L 131.771 16.375 L 138.498 16.375 L 138.498 12.813 C 138.498 12.045 138.4 11.522 138.209 11.238 C 138.019 10.955 137.654 10.819 137.12 10.819 L 137.12 10.454 L 141.543 10.454 L 141.543 10.819 C 141.014 10.819 140.649 10.966 140.448 11.255 C 140.246 11.549 140.143 12.067 140.143 12.813 L 140.143 20.613 C 140.143 21.36 140.246 21.878 140.448 22.166 C 140.649 22.455 141.014 22.596 141.543 22.596 L 141.543 22.962 L 137.12 22.962 L 137.12 22.597 C 137.664 22.597 138.035 22.455 138.22 22.167 C 138.405 21.877 138.498 21.36 138.498 20.614 Z M 151.189 22.961 L 151.189 22.596 C 151.897 22.596 152.251 22.346 152.251 21.85 C 152.251 21.708 152.218 21.545 152.158 21.37 L 151.009 17.9 L 147.044 17.9 L 146.199 20.412 C 145.987 21.044 145.883 21.507 145.883 21.79 C 145.883 22.318 146.21 22.585 146.858 22.602 L 146.858 22.966 L 143.672 22.966 L 143.672 22.602 C 144.129 22.536 144.483 22.384 144.734 22.144 C 144.985 21.904 145.241 21.398 145.502 20.635 L 148.917 10.317 L 150.187 10.317 L 153.771 21.093 C 153.983 21.724 154.201 22.139 154.43 22.323 C 154.659 22.509 155.024 22.602 155.53 22.602 L 155.53 22.966 L 151.189 22.966 Z M 147.278 17.132 L 150.758 17.132 L 149.01 11.832 Z M 166.703 10.82 L 166.703 10.456 L 170.429 10.456 L 170.429 10.821 C 169.83 10.821 169.421 10.962 169.187 11.246 C 168.953 11.529 168.838 12.046 168.838 12.793 L 168.838 22.963 L 168.462 22.963 L 159.715 12.09 L 159.715 20.871 C 159.715 21.492 159.84 21.934 160.09 22.201 C 160.341 22.467 160.755 22.598 161.338 22.598 L 161.338 22.963 L 157.59 22.963 L 157.59 22.598 C 158.184 22.598 158.592 22.44 158.799 22.124 C 159.012 21.808 159.115 21.253 159.115 20.452 L 159.115 13.13 C 159.115 12.34 158.974 11.774 158.69 11.43 C 158.407 11.088 157.939 10.88 157.285 10.815 L 157.285 10.45 L 160.455 10.45 L 168.212 20.185 L 168.212 12.88 C 168.212 12.112 168.103 11.578 167.891 11.273 C 167.673 10.973 167.28 10.821 166.703 10.821 Z M 185.606 17.549 L 185.606 17.913 C 185.061 17.913 184.669 18.039 184.435 18.295 C 184.201 18.545 184.081 18.981 184.081 19.602 L 184.081 22.969 C 183.792 23.045 183.253 23.116 182.463 23.181 C 181.673 23.247 181.063 23.279 180.627 23.279 C 178.345 23.279 176.569 22.713 175.295 21.574 C 174.02 20.436 173.383 18.938 173.383 17.074 C 173.383 15.773 173.661 14.601 174.222 13.555 C 174.759 12.529 175.567 11.67 176.558 11.071 C 177.561 10.461 178.617 10.156 179.745 10.156 C 180.42 10.156 181.15 10.276 181.946 10.521 C 182.452 10.668 182.839 10.745 183.106 10.745 C 183.454 10.745 183.689 10.608 183.803 10.331 L 184.19 10.331 L 184.19 14.019 L 183.841 14.019 C 183.699 12.994 183.242 12.177 182.468 11.562 C 181.695 10.946 180.785 10.642 179.745 10.642 C 178.438 10.642 177.37 11.169 176.537 12.226 C 175.703 13.283 175.284 14.645 175.284 16.312 C 175.284 18.148 175.769 19.668 176.733 20.877 C 177.697 22.087 178.912 22.691 180.371 22.691 C 181.755 22.691 182.447 22.244 182.447 21.356 L 182.447 20 C 182.447 19.232 182.349 18.692 182.147 18.387 C 181.946 18.082 181.597 17.93 181.09 17.93 L 180.616 17.93 L 180.616 17.565 L 185.606 17.565 L 185.606 17.548 Z M 195.668 15.196 L 196.038 15.196 L 196.038 18.236 L 195.668 18.236 C 195.537 17.702 195.374 17.37 195.183 17.234 C 194.993 17.097 194.579 17.032 193.941 17.032 L 190.88 17.032 L 190.88 21.51 C 190.88 21.82 190.951 22.044 191.087 22.169 C 191.223 22.294 191.457 22.359 191.784 22.359 L 193.941 22.359 C 194.715 22.359 195.249 22.316 195.543 22.234 C 195.832 22.151 196.091 21.986 196.289 21.76 C 196.491 21.532 196.708 21.156 196.943 20.638 L 197.313 20.638 L 196.747 22.975 L 187.852 22.975 L 187.852 22.61 C 188.407 22.61 188.778 22.469 188.968 22.18 C 189.159 21.891 189.251 21.38 189.251 20.65 L 189.251 12.827 C 189.251 12.064 189.153 11.541 188.957 11.257 C 188.761 10.974 188.391 10.833 187.852 10.833 L 187.852 10.468 L 196.747 10.468 L 196.747 12.56 L 196.512 12.56 C 196.387 11.96 196.207 11.568 195.968 11.372 C 195.733 11.176 195.221 11.078 194.437 11.078 L 190.88 11.078 L 190.88 16.428 L 194.334 16.428 C 194.802 16.428 195.123 16.34 195.298 16.171 C 195.467 15.991 195.592 15.671 195.668 15.196 Z M 211.122 22.962 L 205.43 22.962 L 205.43 22.597 C 205.958 22.597 206.323 22.455 206.525 22.167 C 206.726 21.877 206.83 21.36 206.83 20.614 L 206.83 12.813 C 206.83 12.05 206.732 11.527 206.541 11.244 C 206.35 10.961 205.98 10.819 205.43 10.819 L 205.43 10.454 L 210.087 10.454 C 211.421 10.454 212.473 10.732 213.235 11.293 C 214.003 11.849 214.385 12.589 214.385 13.505 C 214.385 14.845 213.557 15.793 211.901 16.337 L 211.901 16.392 C 212.843 16.582 213.606 17.008 214.199 17.656 C 214.793 18.304 215.087 19.056 215.087 19.9 C 215.087 20.826 214.722 21.567 213.998 22.123 C 213.279 22.683 212.315 22.962 211.122 22.962 Z M 208.464 10.939 L 208.464 16.239 L 209.738 16.239 C 210.632 16.239 211.34 16.005 211.868 15.531 C 212.396 15.057 212.658 14.42 212.658 13.619 C 212.658 12.775 212.402 12.116 211.884 11.647 C 211.367 11.179 210.637 10.944 209.695 10.944 L 208.464 10.944 Z M 209.635 16.713 L 208.464 16.713 L 208.464 20.379 C 208.464 21.191 208.551 21.741 208.725 22.035 C 208.899 22.33 209.237 22.477 209.738 22.477 L 210.762 22.477 C 211.481 22.477 212.064 22.232 212.516 21.747 C 212.968 21.262 213.197 20.608 213.197 19.791 C 213.197 18.86 212.87 18.113 212.222 17.552 C 211.574 16.997 210.713 16.713 209.635 16.713 Z M 224.517 22.961 L 224.517 22.596 C 225.225 22.596 225.579 22.346 225.579 21.85 C 225.579 21.708 225.546 21.545 225.487 21.37 L 224.337 17.9 L 220.372 17.9 L 219.527 20.412 C 219.315 21.044 219.212 21.507 219.212 21.79 C 219.212 22.318 219.538 22.585 220.187 22.602 L 220.187 22.966 L 217 22.966 L 217 22.602 C 217.458 22.536 217.812 22.384 218.062 22.144 C 218.313 21.904 218.569 21.398 218.83 20.635 L 222.246 10.317 L 223.515 10.317 L 227.099 21.093 C 227.311 21.724 227.529 22.139 227.758 22.323 C 227.987 22.509 228.352 22.602 228.858 22.602 L 228.858 22.966 L 224.517 22.966 Z M 220.6 17.132 L 224.081 17.132 L 222.333 11.832 Z M 240.031 10.82 L 240.031 10.456 L 243.757 10.456 L 243.757 10.821 C 243.158 10.821 242.749 10.962 242.515 11.246 C 242.281 11.529 242.167 12.046 242.167 12.793 L 242.167 22.963 L 241.791 22.963 L 233.043 12.09 L 233.043 20.871 C 233.043 21.492 233.168 21.934 233.419 22.201 C 233.669 22.467 234.083 22.598 234.666 22.598 L 234.666 22.963 L 230.918 22.963 L 230.918 22.598 C 231.512 22.598 231.921 22.44 232.128 22.124 C 232.34 21.808 232.443 21.253 232.443 20.452 L 232.443 13.13 C 232.443 12.34 232.302 11.774 232.019 11.43 C 231.735 11.088 231.267 10.88 230.613 10.815 L 230.613 10.45 L 233.783 10.45 L 241.54 20.185 L 241.54 12.88 C 241.54 12.112 241.431 11.578 241.219 11.273 C 241.001 10.973 240.603 10.821 240.031 10.821 Z M 246.277 22.962 L 246.277 22.597 C 246.817 22.597 247.187 22.449 247.383 22.155 C 247.579 21.861 247.677 21.344 247.677 20.614 L 247.677 12.813 C 247.677 12.061 247.579 11.538 247.389 11.249 C 247.198 10.961 246.827 10.819 246.277 10.819 L 246.277 10.454 L 250.7 10.454 L 250.7 10.819 C 250.183 10.819 249.823 10.966 249.622 11.266 C 249.42 11.566 249.322 12.078 249.322 12.813 L 249.322 16.588 L 253.353 12.573 C 253.783 12.137 253.996 11.789 253.996 11.527 C 253.996 11.162 253.734 10.928 253.217 10.825 L 253.217 10.46 L 257.88 10.46 L 257.88 10.824 L 257.27 10.824 C 256.899 10.824 256.469 10.95 255.989 11.2 C 255.51 11.451 255.069 11.783 254.671 12.197 L 250.831 16.043 L 255.935 21.278 C 256.442 21.807 256.828 22.15 257.101 22.308 C 257.373 22.466 257.754 22.564 258.25 22.597 L 258.25 22.962 L 255.314 22.962 L 249.328 16.833 L 249.328 20.613 C 249.328 21.349 249.426 21.861 249.616 22.155 C 249.807 22.449 250.172 22.597 250.706 22.597 L 250.706 22.962 Z M 89.14 36.885 C 89.14 35.028 89.772 33.48 91.036 32.244 C 92.3 31.002 93.874 30.386 95.764 30.386 C 97.594 30.386 99.147 31.013 100.411 32.271 C 101.674 33.529 102.312 35.066 102.312 36.885 C 102.312 38.743 101.674 40.306 100.394 41.586 C 99.12 42.866 97.556 43.504 95.71 43.504 C 93.869 43.504 92.316 42.867 91.047 41.586 C 89.777 40.306 89.141 38.743 89.141 36.886 Z M 91.036 36.907 C 91.036 38.732 91.466 40.208 92.322 41.336 C 93.177 42.463 94.299 43.025 95.688 43.025 C 97.093 43.025 98.232 42.447 99.103 41.298 C 99.975 40.148 100.416 38.71 100.416 36.988 C 100.416 35.142 99.986 33.655 99.131 32.538 C 98.275 31.421 97.164 30.86 95.802 30.86 C 94.359 30.86 93.199 31.41 92.332 32.51 C 91.472 33.617 91.036 35.082 91.036 36.907 Z M 111.494 37.152 L 108.232 37.152 L 108.232 40.846 C 108.232 41.592 108.335 42.11 108.537 42.398 C 108.738 42.687 109.109 42.828 109.642 42.828 L 109.642 43.193 L 105.203 43.193 L 105.203 42.829 C 105.737 42.829 106.102 42.687 106.303 42.399 C 106.505 42.109 106.603 41.592 106.603 40.846 L 106.603 33.045 C 106.603 32.293 106.505 31.77 106.309 31.481 C 106.113 31.193 105.742 31.051 105.203 31.051 L 105.203 30.686 L 113.673 30.686 L 113.673 32.903 L 113.39 32.903 C 113.259 32.244 113.08 31.808 112.862 31.601 C 112.644 31.394 112.148 31.291 111.38 31.291 L 108.232 31.291 L 108.232 36.526 L 111.451 36.526 C 111.887 36.526 112.208 36.411 112.42 36.188 C 112.633 35.965 112.769 35.583 112.829 35.044 L 113.167 35.044 L 113.167 38.564 L 112.829 38.564 C 112.791 37.626 112.344 37.152 111.494 37.152 Z M 133.048 30.512 L 133.048 34.243 L 132.678 34.243 C 132.384 33.083 131.91 32.233 131.262 31.683 C 130.613 31.138 129.747 30.86 128.669 30.86 C 127.263 30.86 126.152 31.372 125.33 32.397 C 124.507 33.421 124.099 34.783 124.099 36.487 C 124.099 38.357 124.534 39.86 125.401 41.004 C 126.267 42.142 127.4 42.714 128.805 42.714 C 130.75 42.714 132.182 41.799 133.108 39.964 L 133.435 40.274 C 133.034 41.253 132.332 42.079 131.43 42.632 C 130.51 43.21 129.459 43.499 128.277 43.499 C 127.191 43.507 126.123 43.231 125.177 42.698 C 124.25 42.188 123.487 41.424 122.977 40.497 C 122.459 39.56 122.203 38.487 122.203 37.272 C 122.203 35.284 122.808 33.633 124.012 32.332 C 125.221 31.029 126.741 30.375 128.582 30.375 C 129.197 30.375 129.982 30.485 130.929 30.708 C 131.463 30.833 131.833 30.898 132.035 30.898 C 132.351 30.898 132.574 30.768 132.7 30.506 L 133.048 30.506 Z M 143.005 43.197 L 143.005 42.832 C 143.713 42.832 144.067 42.582 144.067 42.086 C 144.067 41.944 144.035 41.781 143.975 41.606 L 142.825 38.136 L 138.86 38.136 L 138.016 40.648 C 137.803 41.28 137.7 41.743 137.7 42.026 C 137.7 42.555 138.027 42.821 138.675 42.838 L 138.675 43.203 L 135.488 43.203 L 135.488 42.838 C 135.946 42.772 136.3 42.62 136.55 42.38 C 136.801 42.14 137.057 41.634 137.318 40.871 L 140.734 30.554 L 142.003 30.554 L 145.587 41.329 C 145.8 41.961 146.017 42.375 146.246 42.56 C 146.475 42.745 146.84 42.838 147.347 42.838 L 147.347 43.203 L 143.005 43.203 Z M 139.089 37.363 L 142.569 37.363 L 140.821 32.063 Z M 158.519 31.056 L 158.519 30.692 L 162.245 30.692 L 162.245 31.056 C 161.646 31.056 161.238 31.198 161.003 31.481 C 160.769 31.765 160.655 32.282 160.655 33.028 L 160.655 43.2 L 160.279 43.2 L 151.531 32.327 L 151.531 41.108 C 151.531 41.729 151.656 42.17 151.907 42.438 C 152.157 42.704 152.571 42.835 153.154 42.835 L 153.154 43.2 L 149.407 43.2 L 149.407 42.835 C 150 42.835 150.409 42.677 150.616 42.361 C 150.828 42.045 150.932 41.49 150.932 40.689 L 150.932 33.367 C 150.932 32.577 150.79 32.011 150.507 31.667 C 150.224 31.324 149.755 31.117 149.102 31.052 L 149.102 30.687 L 152.272 30.687 L 160.028 40.422 L 160.028 33.112 C 160.028 32.343 159.919 31.809 159.707 31.504 C 159.489 31.21 159.097 31.057 158.519 31.057 Z M 171.919 43.197 L 171.919 42.832 C 172.627 42.832 172.981 42.582 172.981 42.086 C 172.981 41.944 172.949 41.781 172.889 41.606 L 171.739 38.136 L 167.774 38.136 L 166.93 40.648 C 166.717 41.28 166.614 41.743 166.614 42.026 C 166.614 42.555 166.941 42.821 167.589 42.838 L 167.589 43.203 L 164.402 43.203 L 164.402 42.838 C 164.86 42.772 165.214 42.62 165.464 42.38 C 165.715 42.14 165.971 41.634 166.233 40.871 L 169.648 30.554 L 170.917 30.554 L 174.501 41.329 C 174.714 41.961 174.931 42.375 175.16 42.56 C 175.389 42.745 175.754 42.838 176.261 42.838 L 176.261 43.203 L 171.919 43.203 Z M 168.003 37.363 L 171.483 37.363 L 169.735 32.063 Z M 178.273 43.197 L 178.273 42.833 C 178.802 42.833 179.167 42.685 179.368 42.391 C 179.57 42.097 179.673 41.58 179.673 40.85 L 179.673 33.049 C 179.673 32.302 179.57 31.785 179.368 31.491 C 179.167 31.197 178.802 31.055 178.273 31.055 L 178.273 30.69 L 183.982 30.69 C 186.09 30.69 187.779 31.3 189.048 32.515 C 190.317 33.73 190.943 35.277 190.943 37.151 C 190.943 38.992 190.344 40.457 189.146 41.552 C 187.947 42.647 186.281 43.192 184.14 43.192 L 178.273 43.192 Z M 183.65 31.169 L 181.302 31.169 L 181.302 40.403 C 181.302 41.291 181.405 41.901 181.618 42.228 C 181.83 42.555 182.25 42.718 182.882 42.718 L 184.156 42.718 C 185.671 42.718 186.863 42.222 187.735 41.231 C 188.606 40.239 189.042 38.888 189.042 37.172 C 189.042 35.353 188.568 33.899 187.615 32.809 C 186.662 31.714 185.338 31.169 183.65 31.169 Z M 199.865 43.197 L 199.865 42.832 C 200.573 42.832 200.927 42.582 200.927 42.086 C 200.927 41.944 200.894 41.781 200.834 41.606 L 199.685 38.136 L 195.719 38.136 L 194.875 40.648 C 194.663 41.28 194.559 41.743 194.559 42.026 C 194.559 42.555 194.886 42.821 195.534 42.838 L 195.534 43.203 L 192.348 43.203 L 192.348 42.838 C 192.805 42.772 193.159 42.62 193.41 42.38 C 193.66 42.14 193.916 41.634 194.178 40.871 L 197.593 30.554 L 198.862 30.554 L 202.446 41.329 C 202.659 41.961 202.877 42.375 203.106 42.56 C 203.334 42.745 203.699 42.838 204.206 42.838 L 204.206 43.203 L 199.865 43.203 Z M 195.948 37.363 L 199.429 37.363 L 197.68 32.063 Z M 70.703 17.395 C 68.007 11.485 63.557 8.412 61.405 6.963 C 57.701 4.468 51.475 2.289 48.713 1.689 C 49.699 2.147 62.223 7.927 63.443 17.727 C 64.074 22.787 62.064 26.699 61.421 27.914 C 56.955 36.346 45.445 40.775 32.301 39.904 L 32.301 39.914 C 32.252 39.909 32.209 39.898 32.16 39.898 C 30.95 39.898 29.976 40.878 29.976 42.083 C 29.976 43.233 30.869 44.169 31.996 44.251 L 31.996 44.261 C 33.484 44.409 35.656 44.545 38.276 44.403 C 41.856 44.207 56.688 43.445 63.693 32.871 C 64.728 31.308 67.283 27.341 67.228 21.845 C 67.19 18.103 65.958 15.357 65.463 14.268 C 64.863 12.963 64.118 11.729 63.241 10.591 C 65.675 13.374 67.767 16.975 68.317 21.464 C 69.053 27.462 66.677 32.092 65.932 33.508 C 60.648 43.483 47.042 48.718 31.495 47.688 L 31.495 47.699 C 31.441 47.694 31.386 47.683 31.332 47.683 C 30.647 47.682 29.99 47.954 29.506 48.439 C 29.021 48.923 28.749 49.58 28.75 50.265 C 28.754 51.614 29.796 52.732 31.141 52.831 L 31.141 52.847 C 32.895 53.021 35.471 53.185 38.566 53.016 C 42.798 52.787 60.332 51.883 68.622 39.381 C 69.848 37.534 72.866 32.844 72.8 26.345 C 72.751 21.927 71.291 18.68 70.703 17.395 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 32.895 36.14 L 32.895 36.15 C 34.12 36.27 35.918 36.385 38.075 36.265 C 41.027 36.101 53.261 35.475 59.041 26.753 C 59.896 25.468 62.004 22.193 61.955 17.656 C 61.922 14.567 60.904 12.306 60.495 11.408 C 57.314 4.44 50.178 2.13 48.691 1.689 C 49.519 2.071 57.826 6.091 58.828 14.257 C 59.34 18.441 57.684 21.671 57.161 22.657 C 53.474 29.613 43.985 33.269 33.14 32.55 L 33.14 32.56 C 33.102 32.56 33.064 32.55 33.026 32.55 C 32.029 32.55 31.223 33.356 31.223 34.353 C 31.228 35.294 31.957 36.072 32.895 36.139 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 3.003 36.26 C 5.699 42.171 10.149 45.244 12.301 46.693 C 16.005 49.188 22.231 51.367 24.992 51.966 C 24.007 51.508 11.484 45.728 10.264 35.928 C 9.632 30.868 11.642 26.956 12.284 25.742 C 16.751 17.309 28.261 12.88 41.404 13.752 L 41.404 13.741 C 41.454 13.746 41.497 13.757 41.546 13.757 C 42.756 13.757 43.73 12.777 43.73 11.573 C 43.73 10.423 42.837 9.486 41.71 9.404 L 41.71 9.394 C 39.623 9.187 37.524 9.139 35.43 9.252 C 31.85 9.448 17.018 10.211 10.013 20.784 C 8.978 22.348 6.423 26.314 6.478 31.81 C 6.516 35.552 7.748 38.298 8.248 39.388 C 8.848 40.694 9.594 41.927 10.471 43.065 C 8.036 40.28 5.944 36.68 5.394 32.19 C 4.659 26.193 7.034 21.562 7.78 20.146 C 13.063 10.172 26.67 4.936 42.216 5.966 L 42.216 5.956 C 42.271 5.961 42.326 5.971 42.379 5.971 C 43.064 5.972 43.721 5.7 44.205 5.215 C 44.69 4.731 44.962 4.074 44.961 3.389 C 44.957 2.041 43.915 0.923 42.571 0.824 L 42.571 0.808 C 40.104 0.562 37.621 0.506 35.145 0.64 C 30.913 0.87 13.379 1.772 5.089 14.274 C 3.863 16.121 0.846 20.811 0.911 27.31 C 0.955 31.728 2.415 34.975 3.003 36.26 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 40.81 17.514 L 40.81 17.504 C 39.089 17.333 37.357 17.295 35.63 17.389 C 32.678 17.552 20.444 18.179 14.665 26.9 C 13.81 28.186 11.702 31.46 11.751 35.997 C 11.784 39.087 12.802 41.347 13.211 42.246 C 16.391 49.213 23.527 51.523 25.014 51.964 C 24.186 51.583 15.88 47.563 14.877 39.397 C 14.365 35.213 16.021 31.983 16.544 30.997 C 20.232 24.04 29.721 20.385 40.566 21.104 L 40.566 21.093 C 40.604 21.093 40.642 21.103 40.68 21.103 C 41.158 21.104 41.617 20.914 41.955 20.576 C 42.294 20.238 42.484 19.779 42.483 19.301 C 42.477 18.361 41.749 17.583 40.811 17.514 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path></svg>',svgContentId:11896786506,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hmudt1\",\"data-framer-name\":\"Rethink\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-knuu6p\",\"data-framer-name\":\"rethink\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 154 90\"><g><path d=\"M 0 0 L 153.358 0 L 153.358 89.656 L 0 89.656 Z\" fill=\"transparent\"></path><path d=\"M 98.183 40.497 C 99.144 40.497 100.052 40.469 100.956 40.519 C 101.152 40.529 101.373 40.784 101.52 40.978 C 103.479 43.562 105.433 46.149 107.381 48.741 L 117.379 61.995 C 117.43 62.064 117.485 62.129 117.641 62.326 L 117.641 40.55 L 121.112 40.55 L 121.112 68.682 C 120.114 68.682 119.125 68.703 118.139 68.662 C 117.958 68.656 117.753 68.425 117.617 68.251 C 115.1 64.951 112.594 61.642 110.086 58.337 C 107.433 54.841 104.783 51.344 102.129 47.851 C 102.03 47.721 101.915 47.599 101.701 47.349 L 101.701 68.64 L 98.18 68.64 C 98.183 59.281 98.183 49.942 98.183 40.496 Z M 58.762 40.49 L 62.3 40.49 L 62.3 52.62 L 77.38 52.62 L 77.38 40.52 L 80.977 40.52 L 80.977 68.687 L 77.423 68.687 L 77.423 56.101 C 76.896 55.917 63.021 55.885 62.331 56.061 L 62.331 68.637 L 58.761 68.637 L 58.761 40.49 Z M 128.277 40.63 L 131.853 40.63 L 131.853 55.93 C 132.129 55.639 132.317 55.446 132.498 55.25 C 136.862 50.493 141.233 45.74 145.588 40.973 C 145.892 40.641 146.196 40.479 146.647 40.489 C 147.675 40.513 148.703 40.498 149.778 40.576 C 146.18 44.748 142.494 48.809 138.805 52.951 C 142.688 58.152 146.558 63.338 150.493 68.604 C 150.198 68.626 150.032 68.651 149.87 68.651 C 149.311 68.657 148.749 68.66 148.191 68.651 C 147.614 68.641 146.948 68.787 146.481 68.548 C 146.012 68.306 145.729 67.681 145.382 67.212 C 142.583 63.425 139.79 59.637 136.991 55.85 C 136.85 55.66 136.703 55.474 136.537 55.256 C 136.411 55.343 136.291 55.396 136.211 55.483 C 134.839 56.928 133.48 58.385 132.099 59.82 C 131.871 60.057 131.859 60.308 131.859 60.591 L 131.859 68.601 L 128.28 68.601 C 128.277 59.286 128.277 49.974 128.277 40.628 Z M 41.17 43.723 L 31.531 43.723 L 31.531 40.489 L 54.463 40.489 L 54.463 43.692 C 52.85 43.714 51.243 43.698 49.637 43.702 C 48.047 43.704 46.455 43.702 44.811 43.702 L 44.811 68.687 L 41.171 68.687 L 41.171 43.723 Z M 100.442 30.2 C 100.584 30.076 100.706 29.988 100.803 29.88 C 102.422 28.034 104.53 27.083 106.802 26.44 C 108.014 26.098 109.238 25.808 110.456 25.48 C 112.382 24.96 114.143 24.109 115.571 22.643 C 119.131 18.99 119.453 13.163 116.333 9.101 C 114.912 7.249 113.159 5.884 110.936 5.198 C 108.199 4.353 105.617 4.796 103.178 6.223 C 101.526 7.19 100.047 8.387 99.254 10.226 C 98.816 11.239 98.482 12.309 98.2 13.381 C 97.847 14.709 97.614 16.069 97.295 17.406 C 96.654 20.078 95.317 22.319 93.285 24.118 C 92.835 24.517 92.323 24.536 91.97 24.165 C 91.648 23.825 91.645 23.27 91.994 22.852 C 92.269 22.519 92.566 22.204 92.884 21.911 C 94.13 20.776 94.834 19.329 95.224 17.702 C 95.59 16.151 95.941 14.596 96.277 13.038 C 97.607 6.868 102.455 3.564 106.984 2.988 C 110.83 2.498 114.052 3.916 116.722 6.71 C 118.22 8.278 119.371 10.102 119.939 12.23 C 120.965 16.093 120.255 19.641 117.873 22.809 C 116.431 24.729 114.432 25.861 112.257 26.653 C 110.672 27.229 109.04 27.663 107.434 28.177 C 106.662 28.423 105.894 28.688 105.14 28.991 C 103.719 29.558 102.577 30.525 101.556 31.671 C 100.533 32.819 100.384 32.807 99.321 31.741 C 98.178 30.593 97.034 29.446 95.888 28.301 C 95.618 28.034 95.39 27.741 95.493 27.326 C 95.588 26.946 95.809 26.656 96.18 26.522 C 96.535 26.394 96.794 26.59 97.03 26.83 C 98.005 27.81 98.984 28.785 99.962 29.76 C 100.104 29.901 100.265 30.038 100.442 30.2 Z M 87.426 40.49 L 91.009 40.49 L 91.009 68.687 L 87.426 68.687 Z M 27.1 64.811 C 27.348 64.887 27.568 64.957 27.872 65.053 C 27.719 65.39 27.612 65.699 27.449 65.973 C 26.229 68.025 24.409 69.231 22.211 69.816 C 18.071 70.92 13.979 69.094 11.646 65.174 C 9.341 61.298 9.51 56.157 12.112 52.494 C 13.684 50.277 15.772 48.845 18.438 48.521 C 21.074 48.199 23.483 48.864 25.537 50.665 C 28.041 52.867 29.327 55.683 29.38 59.097 C 29.383 59.313 29.358 59.529 29.343 59.822 L 10.953 59.822 C 11.067 61.461 11.465 62.927 12.213 64.277 C 13.559 66.711 15.468 68.394 18.159 69.024 C 21.659 69.841 25.555 67.936 26.903 65.104 C 26.943 65.024 27.002 64.957 27.1 64.811 Z M 10.926 58.84 L 28.38 58.84 C 28.401 58.72 28.42 58.656 28.42 58.589 C 28.424 58.478 28.421 58.366 28.41 58.255 C 28.187 56.435 27.641 54.742 26.623 53.225 C 24.233 49.658 19.865 48.321 16.197 50.173 C 12.779 51.901 11.296 54.983 10.925 58.84 Z M 0.86 69.41 L 0 69.41 L 0 49.214 L 0.845 49.214 L 0.845 53.838 C 2.725 51.054 5.024 49.122 8.6 49.168 L 8.6 49.995 C 8.168 50.063 7.742 50.106 7.329 50.192 C 4.485 50.792 2.559 52.512 1.369 55.13 C 1.016 55.893 0.837 56.726 0.845 57.567 C 0.875 61.234 0.857 64.901 0.857 68.572 C 0.86 68.824 0.86 69.08 0.86 69.412 Z M 30.12 84.216 C 30.862 82.966 31.544 81.818 32.228 80.672 C 32.666 79.935 33.119 79.208 33.538 78.459 C 33.738 78.106 33.984 78.009 34.396 78.162 L 34.396 86.763 L 33.753 86.763 L 33.753 79.733 C 33.712 79.72 33.67 79.704 33.626 79.692 C 33.461 79.963 33.29 80.235 33.129 80.51 C 32.289 81.927 31.452 83.348 30.605 84.762 C 30.235 85.386 30.003 85.392 29.632 84.775 C 28.761 83.325 27.902 81.865 27.036 80.413 C 26.913 80.191 26.761 79.987 26.583 79.807 C 26.463 80.569 26.497 81.334 26.491 82.093 C 26.485 82.861 26.491 83.625 26.491 84.393 L 26.491 86.76 L 25.797 86.76 L 25.797 78.171 C 26.294 77.959 26.535 78.171 26.751 78.543 C 27.724 80.213 28.719 81.874 29.705 83.538 C 29.816 83.726 29.933 83.91 30.12 84.216 Z M 90.684 25.306 C 90.854 25.429 91.203 25.616 91.477 25.885 C 92.767 27.155 94.037 28.449 95.314 29.733 C 96.324 30.748 97.34 31.757 98.344 32.776 C 98.514 32.947 98.667 33.148 98.784 33.361 C 98.994 33.749 98.887 34.115 98.601 34.415 C 98.306 34.729 97.947 34.79 97.573 34.59 C 97.399 34.491 97.24 34.368 97.101 34.224 C 94.76 31.884 92.423 29.541 90.09 27.194 C 89.926 27.04 89.788 26.861 89.68 26.664 C 89.366 26.037 89.797 25.309 90.684 25.306 Z M 87.017 28.921 C 87.171 29.041 87.474 29.222 87.712 29.478 C 89.544 31.448 91.365 33.436 93.188 35.42 C 93.567 35.83 93.965 36.225 94.317 36.669 C 94.718 37.177 94.675 37.743 94.262 38.106 C 93.907 38.416 93.5 38.397 93.095 37.999 C 92.668 37.579 92.266 37.125 91.856 36.682 C 90.045 34.717 88.239 32.746 86.424 30.788 C 86.165 30.507 85.967 30.228 85.999 29.792 C 86.04 29.277 86.372 28.912 87.017 28.922 Z M 96.742 35.317 C 96.722 35.924 96.058 36.33 95.457 36.073 C 95.223 35.974 95.015 35.795 94.83 35.622 C 92.568 33.534 90.309 31.442 88.053 29.348 C 87.896 29.201 87.735 29.055 87.609 28.885 C 87.332 28.502 87.376 28.033 87.697 27.735 C 88.027 27.424 88.5 27.375 88.9 27.681 C 89.294 27.979 89.647 28.331 90.01 28.666 L 96.172 34.367 C 96.455 34.633 96.748 34.896 96.742 35.317 Z M 88.122 85.368 L 88.122 78.145 C 88.349 78.123 88.528 78.105 88.657 78.089 C 88.875 78.288 88.93 85.619 88.767 86.676 C 88.343 86.89 88.073 86.685 87.808 86.346 C 86.182 84.259 84.544 82.18 82.909 80.099 C 82.773 79.91 82.591 79.758 82.381 79.658 L 82.381 86.713 C 82.116 86.728 81.935 86.741 81.695 86.756 L 81.695 78.185 C 82.119 77.933 82.335 78.213 82.553 78.493 C 83.73 79.996 84.908 81.498 86.087 83 C 86.714 83.802 87.344 84.6 87.974 85.399 C 88.024 85.386 88.073 85.377 88.122 85.368 Z M 116.065 86.724 L 115.379 86.724 L 115.379 78.186 C 115.794 77.935 116.013 78.208 116.234 78.487 C 117.277 79.819 118.324 81.147 119.37 82.479 C 120.133 83.45 120.899 84.419 121.792 85.374 L 121.792 78.124 L 122.373 78.124 C 122.576 78.292 122.607 85.964 122.425 86.696 C 121.97 86.892 121.718 86.628 121.459 86.296 C 119.844 84.229 118.219 82.168 116.594 80.107 C 116.457 79.917 116.275 79.764 116.065 79.66 Z M 128.277 78.123 C 129.414 78.123 130.496 78.029 131.561 78.144 C 133.111 78.312 134.088 79.33 134.526 80.951 C 134.786 81.914 134.794 82.889 134.549 83.851 C 134.133 85.478 133.154 86.511 131.613 86.698 C 130.53 86.828 129.425 86.723 128.28 86.723 C 128.277 83.863 128.277 81.029 128.277 78.123 Z M 128.978 78.787 C 128.944 78.93 128.91 79.01 128.91 79.094 C 128.904 81.271 128.907 83.447 128.898 85.624 C 128.898 85.994 129.058 86.127 129.377 86.118 C 130.035 86.098 130.695 86.127 131.351 86.078 C 132.604 85.984 133.413 85.226 133.826 83.96 C 134.166 82.942 134.16 81.841 133.811 80.827 C 133.433 79.694 132.686 78.948 131.587 78.809 C 130.744 78.7 129.881 78.787 128.978 78.787 Z M 146.906 82.48 C 146.891 84.614 145.418 86.4 143.402 86.721 C 142.506 86.865 141.683 86.635 140.937 86.144 C 138.41 84.471 138.383 80.489 140.874 78.761 C 142.371 77.723 144.267 77.897 145.563 79.189 C 146.404 80.025 146.915 81.283 146.906 82.48 Z M 143.038 86.223 C 143.54 86.028 144.087 85.909 144.538 85.628 C 146.443 84.446 146.777 81.488 145.229 79.793 C 143.841 78.27 141.692 78.389 140.471 80.056 C 139.476 81.401 139.428 83.225 140.351 84.62 C 140.982 85.564 141.854 86.095 143.038 86.223 Z M 71.664 78.087 L 77.21 78.087 C 77.355 78.682 77.336 78.729 76.802 78.732 C 75.589 78.745 74.38 78.735 73.167 78.735 L 72.411 78.735 L 72.411 82.002 L 76.641 82.002 L 76.641 82.585 L 72.405 82.585 L 72.405 86.099 C 72.673 86.115 72.905 86.137 73.136 86.137 C 74.392 86.14 75.645 86.134 76.901 86.143 C 77.411 86.146 77.411 86.162 77.391 86.763 L 71.667 86.763 C 71.664 83.885 71.664 81 71.664 78.087 Z M 60.914 78.122 C 62.344 78.122 63.729 78.029 65.091 78.147 C 66.623 78.277 67.687 80.035 67.274 81.525 C 66.96 82.648 65.962 83.637 64.524 83.544 C 63.614 83.484 62.694 83.531 61.66 83.531 C 61.657 84.104 61.65 84.639 61.647 85.171 C 61.644 85.691 61.647 86.206 61.647 86.763 L 60.917 86.763 C 60.914 83.883 60.914 81.021 60.914 78.122 Z M 61.694 82.791 C 61.85 82.822 61.919 82.847 61.984 82.847 C 62.836 82.853 63.684 82.859 64.534 82.857 C 65.657 82.853 66.344 82.324 66.567 81.295 C 66.803 80.2 66.096 78.912 65.091 78.825 C 63.981 78.728 62.859 78.803 61.693 78.803 L 61.693 82.791 Z M 0.775 85.69 C 0.632 86.596 0.632 86.596 0.06 86.576 C 0.04 86.421 0.004 86.263 0.004 86.102 C 0.001 83.612 -0.003 81.123 0.004 78.634 C 0.004 78.029 0.017 78.029 0.715 78.151 L 0.715 81.555 C 0.785 81.6 0.857 81.642 0.927 81.686 C 1.033 81.531 1.109 81.346 1.251 81.221 C 2.733 79.937 4.783 80.178 5.875 81.755 C 6.943 83.296 6.477 85.353 4.85 86.31 C 3.708 86.978 2.336 86.903 1.3 86.113 C 1.128 85.983 0.966 85.845 0.775 85.69 Z M 5.739 83.374 C 5.624 83.079 5.495 82.539 5.21 82.08 C 4.661 81.192 3.586 80.837 2.524 81.102 C 1.525 81.35 0.734 82.292 0.732 83.228 C 0.732 83.583 0.745 83.938 0.728 84.292 C 0.705 84.844 0.976 85.261 1.436 85.586 C 2.246 86.158 3.153 86.343 4.102 85.938 C 5.167 85.484 5.627 84.65 5.739 83.374 Z M 93.879 85.438 L 94.167 84.97 C 94.296 85.053 94.403 85.11 94.497 85.184 C 95.659 86.098 96.973 86.318 98.386 85.988 C 99.173 85.805 99.529 85.365 99.571 84.668 C 99.617 83.906 99.332 83.445 98.545 83.161 C 98.003 82.961 97.436 82.843 96.878 82.687 C 96.403 82.555 95.916 82.454 95.457 82.28 C 94.026 81.74 93.677 80.043 94.749 78.936 C 95.34 78.325 96.106 78.138 96.915 78.096 C 98.003 78.037 99.002 78.261 99.847 79.098 L 99.621 79.462 C 98.934 79.208 98.34 78.89 97.709 78.78 C 97.157 78.686 96.55 78.762 95.996 78.884 C 95.266 79.044 94.896 79.6 94.881 80.342 C 94.862 81.116 95.111 81.479 95.935 81.736 C 96.587 81.941 97.265 82.066 97.926 82.25 C 98.358 82.372 98.793 82.5 99.201 82.687 C 99.924 83.02 100.316 83.592 100.328 84.411 C 100.34 85.257 100.019 85.906 99.258 86.315 C 97.58 87.214 94.964 86.679 93.878 85.438 Z M 111.078 86.684 C 110.632 86.854 110.373 86.761 110.201 86.309 C 109.895 85.501 109.53 84.711 109.183 83.893 C 107.903 83.893 106.658 83.903 105.412 83.887 C 105.09 83.884 105.003 84.079 104.912 84.302 C 104.638 84.965 104.344 85.618 104.094 86.29 C 103.932 86.73 103.673 86.86 103.195 86.68 C 103.258 86.498 103.311 86.315 103.383 86.142 C 104.463 83.627 105.546 81.112 106.629 78.598 C 106.639 78.579 106.647 78.559 106.654 78.539 C 106.745 78.319 106.804 78.093 107.129 78.087 C 107.447 78.081 107.532 78.291 107.625 78.514 C 107.991 79.375 108.359 80.234 108.724 81.094 C 109.458 82.813 110.195 84.531 110.925 86.25 C 110.985 86.386 111.025 86.529 111.078 86.684 Z M 105.346 83.264 L 108.933 83.264 C 108.337 81.84 107.766 80.484 107.138 78.988 C 106.505 80.502 105.936 81.856 105.346 83.265 Z M 46.582 86.683 C 46.13 86.857 45.877 86.755 45.705 86.304 C 45.399 85.493 45.035 84.7 44.688 83.884 C 43.408 83.884 42.16 83.892 40.915 83.877 C 40.593 83.874 40.509 84.073 40.415 84.297 C 40.141 84.962 39.848 85.617 39.598 86.292 C 39.436 86.732 39.177 86.86 38.699 86.68 C 38.765 86.494 38.815 86.313 38.889 86.14 C 39.969 83.616 41.052 81.092 42.135 78.569 C 42.16 78.509 42.166 78.429 42.21 78.389 C 42.344 78.27 42.49 78.09 42.638 78.087 C 42.781 78.084 42.99 78.237 43.065 78.376 C 43.271 78.758 43.421 79.172 43.593 79.573 C 44.541 81.798 45.487 84.023 46.433 86.251 C 46.489 86.388 46.529 86.531 46.583 86.683 Z M 44.442 83.265 C 43.845 81.835 43.277 80.465 42.647 78.954 C 42.013 80.474 41.445 81.841 40.853 83.264 L 44.441 83.264 Z M 15.764 80.352 C 15.434 81.229 15.108 82.099 14.778 82.967 C 14.048 84.897 13.318 86.832 12.58 88.76 C 12.32 89.444 11.975 89.682 11.427 89.653 C 11.111 89.637 11.035 89.479 11.126 89.12 C 11.754 89.068 12.019 88.567 12.203 87.963 C 12.266 87.75 12.347 87.542 12.445 87.343 C 12.617 86.999 12.595 86.691 12.442 86.328 C 11.71 84.57 11.003 82.797 10.288 81.029 C 10.198 80.808 10.118 80.583 10.031 80.349 C 10.449 80.159 10.676 80.255 10.843 80.686 C 11.435 82.218 12.057 83.735 12.67 85.258 C 12.752 85.46 12.84 85.662 12.982 85.997 C 13.102 85.704 13.181 85.517 13.251 85.328 C 13.826 83.789 14.407 82.25 14.964 80.702 C 15.119 80.281 15.335 80.152 15.764 80.352 Z M 91.73 37.49 C 90.493 37.877 88.641 37.19 87.405 35.981 C 86.327 34.928 85.719 33.381 86.12 32.537 C 87.182 33.261 88.04 34.153 88.972 34.963 C 89.894 35.761 90.862 36.53 91.729 37.49 Z M 56.612 86.2 L 56.612 86.763 L 51.029 86.763 C 50.853 86.284 50.819 78.788 50.996 78.087 L 51.482 78.087 C 51.519 78.156 51.568 78.209 51.571 78.269 C 51.589 78.532 51.607 78.795 51.607 79.058 C 51.61 81.191 51.607 83.321 51.61 85.454 C 51.613 86.127 51.64 86.153 52.304 86.156 C 53.478 86.162 54.653 86.156 55.827 86.159 C 56.077 86.156 56.329 86.181 56.612 86.199 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path></g></svg>',svgContentId:11584930874,withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19ss37c\",\"data-framer-name\":\"Cxi-logo2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 268 41\"><path d=\"M 172.12 9.16 L 169.25 13.65 C 169.17 13.79 169.09 13.94 169.01 14.1 L 168.92 14.31 L 168.92 14.17 C 168.92 14.01 168.88 13.83 168.84 13.64 L 167.9 9.16 L 164.89 9.16 L 167.01 16.71 L 166.11 20.96 L 168.92 20.96 L 169.81 16.69 L 175.28 9.16 L 172.13 9.16 Z M 169.66 16.62 L 169.66 16.64 L 168.79 20.8 L 166.29 20.8 L 167.16 16.7 L 165.08 9.31 L 167.77 9.31 L 168.68 13.67 C 168.72 13.85 168.75 14.02 168.75 14.17 C 168.75 14.33 168.77 14.47 168.79 14.6 L 168.79 14.66 L 168.93 14.66 L 168.95 14.61 C 169.01 14.46 169.07 14.31 169.15 14.15 C 169.22 14 169.3 13.86 169.38 13.72 L 172.2 9.3 L 174.97 9.3 L 169.65 16.62 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 174.97 9.31 L 169.65 16.63 L 169.65 16.65 L 168.78 20.81 L 166.28 20.81 L 167.15 16.71 L 165.07 9.32 L 167.76 9.32 L 168.67 13.68 C 168.71 13.86 168.74 14.03 168.75 14.18 C 168.75 14.34 168.77 14.48 168.78 14.61 L 168.78 14.67 L 168.92 14.67 L 168.94 14.62 C 169 14.47 169.06 14.32 169.14 14.16 C 169.21 14.01 169.29 13.87 169.37 13.73 L 172.19 9.31 Z M 252.06 16.44 L 254.43 16.44 L 253.96 18.67 C 253.82 18.71 253.66 18.75 253.49 18.78 C 253.31 18.81 253.07 18.83 252.77 18.83 C 252.34 18.83 251.95 18.76 251.6 18.62 C 251.25 18.48 250.96 18.29 250.71 18.03 C 250.46 17.77 250.27 17.46 250.14 17.08 C 250.01 16.69 249.94 16.26 249.94 15.78 C 249.94 15.1 250.04 14.5 250.24 13.94 C 250.44 13.39 250.73 12.92 251.11 12.53 C 251.48 12.14 251.94 11.83 252.47 11.62 C 253.01 11.4 253.61 11.3 254.28 11.3 C 254.59 11.3 254.89 11.32 255.18 11.37 C 255.47 11.42 255.75 11.48 256.01 11.56 C 256.28 11.64 256.51 11.73 256.73 11.83 C 256.95 11.93 257.14 12.04 257.31 12.16 L 257.4 12.22 L 257.42 12.11 L 257.95 9.65 L 257.89 9.63 C 257.69 9.55 257.47 9.48 257.22 9.4 C 256.97 9.32 256.7 9.25 256.4 9.18 C 255.74 9.032 255.066 8.958 254.39 8.96 C 253.57 8.96 252.82 9.04 252.13 9.22 C 251.45 9.39 250.83 9.63 250.28 9.94 C 249.73 10.25 249.25 10.62 248.84 11.05 C 248.43 11.48 248.09 11.95 247.83 12.46 C 247.56 12.98 247.36 13.53 247.22 14.11 C 247.08 14.69 247.01 15.29 247.01 15.9 C 247.01 16.67 247.13 17.39 247.37 18.03 C 247.62 18.68 247.97 19.23 248.42 19.7 C 248.87 20.16 249.44 20.52 250.11 20.77 C 250.78 21.02 251.53 21.15 252.38 21.15 C 252.82 21.15 253.23 21.12 253.6 21.07 C 253.98 21.02 254.34 20.95 254.66 20.86 C 254.99 20.77 255.3 20.68 255.57 20.57 C 255.85 20.46 256.11 20.35 256.34 20.24 L 256.37 20.22 L 257.65 14.19 L 252.5 14.19 L 252.01 16.43 Z M 257.5 14.35 L 256.27 20.12 C 256.04 20.23 255.81 20.34 255.55 20.43 C 255.27 20.53 254.97 20.63 254.65 20.72 C 254.33 20.8 253.98 20.88 253.61 20.92 C 253.24 20.97 252.84 21 252.41 21 C 251.59 21 250.85 20.87 250.19 20.63 C 249.54 20.38 249 20.04 248.55 19.59 C 248.11 19.14 247.77 18.61 247.53 17.98 C 247.291 17.313 247.172 16.609 247.18 15.9 C 247.18 15.3 247.25 14.71 247.38 14.14 C 247.51 13.57 247.71 13.04 247.98 12.53 C 248.24 12.03 248.57 11.57 248.98 11.15 C 249.37 10.73 249.84 10.37 250.38 10.07 C 250.91 9.76 251.51 9.53 252.19 9.36 C 252.86 9.19 253.6 9.11 254.41 9.11 C 255.076 9.108 255.741 9.181 256.39 9.33 C 256.68 9.39 256.95 9.46 257.19 9.54 C 257.41 9.61 257.61 9.68 257.79 9.75 L 257.31 11.98 C 257.16 11.89 257 11.79 256.81 11.7 C 256.58 11.59 256.34 11.5 256.07 11.42 C 255.8 11.34 255.51 11.27 255.22 11.23 C 254.92 11.18 254.61 11.16 254.29 11.16 C 253.6 11.16 252.98 11.27 252.43 11.49 C 251.87 11.72 251.4 12.03 251.01 12.43 C 250.62 12.84 250.32 13.33 250.11 13.9 C 249.9 14.47 249.8 15.1 249.8 15.79 C 249.8 16.29 249.87 16.74 250.01 17.14 C 250.14 17.54 250.34 17.88 250.61 18.15 C 250.87 18.43 251.19 18.63 251.55 18.78 C 251.92 18.92 252.33 19 252.77 19 C 253.07 19 253.32 18.98 253.51 18.94 C 253.71 18.91 253.88 18.86 254.04 18.81 L 254.08 18.81 L 254.61 16.3 L 252.24 16.3 L 252.65 14.36 L 257.49 14.36 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 252.66 14.35 L 257.5 14.35 L 256.27 20.12 C 256.04 20.23 255.81 20.34 255.55 20.43 C 255.27 20.53 254.97 20.63 254.65 20.72 C 254.33 20.8 253.98 20.87 253.61 20.92 C 253.24 20.97 252.84 21 252.41 21 C 251.59 21 250.85 20.87 250.19 20.63 C 249.54 20.38 249 20.04 248.55 19.59 C 248.11 19.14 247.77 18.61 247.53 17.98 C 247.291 17.313 247.172 16.609 247.18 15.9 C 247.18 15.3 247.25 14.71 247.38 14.14 C 247.51 13.57 247.71 13.04 247.98 12.53 C 248.24 12.03 248.58 11.57 248.98 11.15 C 249.37 10.73 249.84 10.37 250.38 10.07 C 250.91 9.76 251.51 9.53 252.19 9.36 C 252.86 9.19 253.6 9.11 254.41 9.11 C 255.076 9.108 255.741 9.181 256.39 9.33 C 256.68 9.39 256.95 9.46 257.19 9.54 C 257.41 9.61 257.61 9.68 257.79 9.75 L 257.31 11.98 C 257.16 11.89 257 11.79 256.81 11.7 C 256.58 11.59 256.34 11.5 256.07 11.42 C 255.8 11.34 255.51 11.27 255.22 11.23 C 254.92 11.18 254.61 11.16 254.29 11.16 C 253.6 11.16 252.98 11.27 252.42 11.49 C 251.86 11.72 251.39 12.03 251 12.43 C 250.61 12.84 250.31 13.33 250.1 13.9 C 249.89 14.47 249.79 15.1 249.79 15.79 C 249.79 16.29 249.86 16.74 250 17.14 C 250.13 17.54 250.33 17.88 250.6 18.15 C 250.86 18.43 251.18 18.63 251.54 18.78 C 251.91 18.92 252.32 19 252.76 19 C 253.06 19 253.31 18.98 253.5 18.94 C 253.7 18.91 253.87 18.86 254.03 18.81 L 254.07 18.81 L 254.6 16.3 L 252.23 16.3 L 252.65 14.36 Z M 119.81 11.04 C 119.67 10.67 119.45 10.34 119.14 10.07 C 118.83 9.78 118.44 9.56 117.95 9.4 C 117.46 9.24 116.87 9.16 116.19 9.16 L 112.14 9.16 L 109.63 20.95 L 112.44 20.95 L 113.39 16.49 L 113.78 16.49 C 114.19 16.49 114.5 16.61 114.73 16.84 C 114.96 17.07 115.13 17.42 115.22 17.89 L 115.87 20.95 L 118.84 20.95 L 118 17.49 C 117.88 16.97 117.69 16.57 117.44 16.25 C 117.23 15.99 116.99 15.8 116.72 15.68 C 117.12 15.61 117.52 15.5 117.88 15.34 C 118.31 15.15 118.68 14.91 118.99 14.61 C 119.3 14.31 119.55 13.96 119.74 13.55 C 119.92 13.15 120.01 12.68 120.01 12.19 C 120.01 11.79 119.95 11.4 119.81 11.04 Z M 119.61 13.5 C 119.43 13.89 119.2 14.23 118.89 14.51 C 118.59 14.8 118.23 15.03 117.82 15.21 C 117.41 15.39 116.98 15.52 116.51 15.58 L 116.44 15.58 L 116.44 15.74 L 116.49 15.76 C 116.81 15.86 117.08 16.06 117.31 16.36 C 117.54 16.65 117.72 17.04 117.84 17.54 L 118.63 20.81 L 115.97 20.81 L 115.35 17.87 C 115.25 17.38 115.08 17 114.82 16.74 C 114.56 16.48 114.2 16.35 113.77 16.35 L 113.26 16.35 L 112.31 20.81 L 109.8 20.81 L 112.25 9.31 L 116.18 9.31 C 116.85 9.31 117.42 9.39 117.89 9.54 C 118.36 9.69 118.74 9.91 119.03 10.17 C 119.32 10.43 119.53 10.74 119.66 11.08 C 119.79 11.43 119.86 11.8 119.86 12.18 C 119.86 12.66 119.77 13.1 119.6 13.48 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 119.67 11.09 C 119.54 10.75 119.33 10.44 119.04 10.18 C 118.75 9.91 118.37 9.7 117.9 9.55 C 117.43 9.4 116.87 9.32 116.19 9.32 L 112.26 9.32 L 109.81 20.82 L 112.32 20.82 L 113.27 16.36 L 113.78 16.36 C 114.22 16.36 114.58 16.48 114.83 16.75 C 115.09 17.01 115.26 17.39 115.36 17.88 L 115.98 20.82 L 118.64 20.82 L 117.85 17.55 C 117.73 17.05 117.56 16.66 117.32 16.37 C 117.09 16.08 116.82 15.88 116.5 15.77 L 116.45 15.75 L 116.45 15.6 L 116.52 15.6 C 116.99 15.53 117.42 15.4 117.83 15.23 C 118.24 15.05 118.59 14.82 118.9 14.53 C 119.2 14.24 119.44 13.91 119.62 13.52 C 119.79 13.13 119.88 12.7 119.88 12.22 C 119.88 11.83 119.82 11.47 119.69 11.12 Z M 117.07 13.34 C 116.97 13.57 116.82 13.77 116.63 13.94 C 116.43 14.11 116.18 14.25 115.88 14.35 C 115.58 14.45 115.22 14.51 114.82 14.51 L 113.66 14.51 L 114.4 11.12 L 115.56 11.12 C 116.11 11.12 116.53 11.25 116.82 11.52 C 117.1 11.79 117.24 12.16 117.24 12.63 C 117.24 12.88 117.19 13.12 117.09 13.34 Z M 199.64 9.16 L 196.38 9.16 L 193.58 12.83 C 193.53 12.9 193.48 12.98 193.44 13.06 L 193.32 13.3 C 193.29 13.36 193.28 13.41 193.25 13.46 C 193.25 13.4 193.25 13.35 193.23 13.29 C 193.23 13.2 193.21 13.11 193.2 13.02 C 193.19 12.94 193.17 12.86 193.15 12.79 L 192.1 9.15 L 188.86 9.15 L 191.14 14.85 L 186.06 20.94 L 189.52 20.94 L 192.34 17.16 C 192.44 17.02 192.52 16.87 192.59 16.69 C 192.62 16.63 192.64 16.58 192.66 16.53 C 192.66 16.59 192.66 16.65 192.67 16.72 C 192.67 16.81 192.69 16.89 192.7 16.97 C 192.7 17.05 192.73 17.13 192.76 17.2 L 193.95 20.95 L 197.09 20.95 L 194.76 15.13 L 199.63 9.16 Z M 196.88 20.8 L 194.06 20.8 L 192.91 17.15 C 192.89 17.09 192.87 17.03 192.86 16.95 C 192.84 16.87 192.84 16.79 192.83 16.7 C 192.83 16.62 192.82 16.54 192.81 16.46 L 192.81 16.19 L 192.65 16.19 L 192.63 16.23 C 192.58 16.32 192.53 16.46 192.46 16.62 C 192.4 16.78 192.31 16.93 192.22 17.05 L 189.44 20.77 L 186.38 20.77 L 191.31 14.86 L 189.08 9.28 L 191.98 9.28 L 192.99 12.81 C 193 12.87 193.02 12.95 193.03 13.03 L 193.06 13.28 C 193.06 13.36 193.07 13.44 193.07 13.52 L 193.07 13.78 L 193.23 13.78 L 193.25 13.73 C 193.25 13.73 193.29 13.63 193.31 13.57 C 193.33 13.5 193.37 13.43 193.41 13.35 C 193.45 13.27 193.49 13.19 193.52 13.12 C 193.56 13.04 193.6 12.97 193.65 12.91 L 196.41 9.3 L 199.28 9.3 L 194.55 15.1 L 194.55 15.14 L 196.83 20.8 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 194.61 15.15 L 196.88 20.81 L 194.06 20.81 L 192.91 17.16 C 192.89 17.1 192.87 17.04 192.86 16.96 L 192.83 16.71 C 192.83 16.63 192.82 16.55 192.81 16.47 L 192.81 16.2 L 192.65 16.2 L 192.63 16.24 L 192.46 16.63 C 192.4 16.79 192.31 16.94 192.22 17.06 L 189.44 20.78 L 186.38 20.78 L 191.31 14.87 L 189.08 9.29 L 191.98 9.29 L 193 12.82 C 193.01 12.88 193.03 12.96 193.04 13.04 L 193.07 13.29 C 193.07 13.37 193.08 13.45 193.08 13.53 L 193.08 13.79 L 193.24 13.79 L 193.26 13.74 C 193.26 13.74 193.3 13.64 193.32 13.58 C 193.34 13.51 193.38 13.44 193.42 13.36 C 193.46 13.28 193.5 13.2 193.53 13.13 C 193.57 13.05 193.61 12.98 193.66 12.92 L 196.42 9.31 L 199.29 9.31 L 194.56 15.11 L 194.56 15.15 Z M 260.85 9.16 L 258.33 20.95 L 265.49 20.95 L 265.98 18.67 L 261.62 18.67 L 262.16 16.21 L 265.95 16.21 L 266.44 13.92 L 262.64 13.92 L 263.16 11.44 L 267.24 11.44 L 267.24 11.38 L 267.72 9.15 L 260.85 9.15 Z M 267.12 11.29 L 263.04 11.29 L 262.46 14.06 L 266.26 14.06 L 265.83 16.05 L 262.04 16.05 L 261.44 18.82 L 265.8 18.82 L 265.38 20.8 L 258.53 20.8 L 260.98 9.3 L 267.55 9.3 L 267.13 11.28 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 263.03 11.29 L 262.45 14.06 L 266.25 14.06 L 265.82 16.05 L 262.03 16.05 L 261.43 18.82 L 265.79 18.82 L 265.37 20.8 L 258.52 20.8 L 260.97 9.3 L 267.54 9.3 L 267.12 11.29 L 263.04 11.29 Z M 209.09 9.49 C 208.652 9.343 208.204 9.226 207.75 9.14 C 207.48 9.09 207.2 9.05 206.91 9.02 C 206.61 8.98 206.3 8.97 205.99 8.97 C 205.16 8.97 204.39 9.06 203.69 9.24 C 203 9.42 202.38 9.66 201.84 9.98 C 201.29 10.3 200.81 10.68 200.42 11.12 C 200.01 11.55 199.68 12.04 199.41 12.56 C 199.14 13.09 198.94 13.64 198.81 14.23 C 198.68 14.82 198.61 15.42 198.61 16.04 C 198.61 16.81 198.73 17.51 198.97 18.14 C 199.21 18.77 199.56 19.31 200.01 19.76 C 200.47 20.21 201.02 20.56 201.68 20.81 C 202.34 21.06 203.08 21.18 203.9 21.18 C 204.51 21.18 205.06 21.13 205.55 21.04 C 206.04 20.95 206.49 20.82 206.9 20.65 L 206.94 20.63 L 207.54 17.96 L 207.39 18.03 C 207.21 18.13 207 18.22 206.79 18.31 C 206.59 18.39 206.36 18.47 206.13 18.54 C 205.9 18.6 205.66 18.66 205.4 18.7 C 205.15 18.74 204.87 18.76 204.57 18.76 C 204.1 18.76 203.69 18.7 203.32 18.57 C 202.95 18.44 202.63 18.25 202.37 18 C 202.11 17.75 201.9 17.44 201.76 17.07 C 201.61 16.7 201.54 16.28 201.54 15.79 C 201.54 15.2 201.63 14.64 201.82 14.12 C 202.01 13.59 202.28 13.13 202.64 12.73 C 203 12.34 203.45 12.02 203.98 11.78 C 204.51 11.54 205.12 11.42 205.81 11.42 C 206.11 11.42 206.39 11.44 206.64 11.48 C 206.89 11.52 207.13 11.58 207.35 11.64 C 207.57 11.71 207.77 11.79 207.96 11.87 C 208.14 11.96 208.32 12.04 208.48 12.13 L 208.56 12.18 L 208.58 12.08 L 209.14 9.53 L 209.08 9.51 Z M 208.47 11.94 L 208.03 11.72 C 207.84 11.63 207.63 11.56 207.41 11.49 C 207.18 11.43 206.94 11.36 206.67 11.32 C 206.41 11.27 206.12 11.26 205.81 11.26 C 205.1 11.26 204.46 11.38 203.91 11.63 C 203.36 11.88 202.9 12.21 202.52 12.62 C 202.14 13.03 201.86 13.52 201.66 14.06 C 201.47 14.6 201.37 15.18 201.37 15.78 C 201.37 16.28 201.45 16.73 201.6 17.12 C 201.75 17.51 201.97 17.83 202.24 18.1 C 202.52 18.36 202.85 18.56 203.24 18.7 C 203.63 18.84 204.06 18.9 204.54 18.9 C 205.081 18.903 205.62 18.829 206.14 18.68 C 206.38 18.61 206.6 18.53 206.81 18.45 C 206.97 18.39 207.12 18.31 207.27 18.23 L 206.76 20.52 C 206.37 20.68 205.95 20.8 205.48 20.89 C 205 20.98 204.46 21.03 203.85 21.03 C 203.04 21.03 202.32 20.91 201.69 20.67 C 201.05 20.43 200.52 20.09 200.08 19.66 C 199.64 19.23 199.31 18.7 199.07 18.1 C 198.832 17.443 198.713 16.749 198.72 16.05 C 198.72 15.44 198.78 14.85 198.91 14.28 C 199.04 13.7 199.24 13.16 199.49 12.65 C 200.024 11.601 200.85 10.729 201.87 10.14 C 202.4 9.83 203.01 9.58 203.69 9.41 C 204.72 9.16 205.786 9.089 206.84 9.2 C 207.13 9.23 207.41 9.28 207.67 9.33 C 207.94 9.38 208.18 9.44 208.41 9.5 C 208.61 9.55 208.78 9.61 208.94 9.66 L 208.43 11.98 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 208.98 9.61 L 208.47 11.93 L 208.03 11.71 C 207.84 11.62 207.63 11.55 207.41 11.48 C 207.18 11.42 206.94 11.35 206.67 11.31 C 206.41 11.26 206.13 11.25 205.81 11.25 C 205.1 11.25 204.46 11.37 203.91 11.62 C 203.36 11.87 202.9 12.2 202.52 12.61 C 202.14 13.02 201.86 13.51 201.66 14.05 C 201.47 14.59 201.37 15.17 201.37 15.77 C 201.37 16.27 201.45 16.72 201.6 17.11 C 201.75 17.5 201.97 17.82 202.24 18.09 C 202.52 18.35 202.85 18.55 203.24 18.69 C 203.63 18.83 204.06 18.89 204.54 18.89 C 205.081 18.893 205.62 18.819 206.14 18.67 C 206.38 18.6 206.6 18.52 206.81 18.44 C 206.97 18.38 207.12 18.3 207.27 18.22 L 206.76 20.51 C 206.37 20.67 205.95 20.79 205.48 20.88 C 205 20.97 204.46 21.02 203.86 21.02 C 203.05 21.02 202.33 20.9 201.7 20.66 C 201.06 20.42 200.53 20.08 200.09 19.65 C 199.65 19.22 199.32 18.69 199.08 18.09 C 198.842 17.433 198.723 16.739 198.73 16.04 C 198.73 15.43 198.8 14.84 198.92 14.27 C 199.05 13.69 199.25 13.15 199.5 12.64 C 200.034 11.591 200.86 10.719 201.88 10.13 C 202.41 9.82 203.02 9.57 203.7 9.4 C 204.734 9.15 205.802 9.079 206.86 9.19 C 207.39 9.254 207.914 9.354 208.43 9.49 C 208.62 9.53 208.8 9.59 208.95 9.64 Z M 97.94 9.49 C 97.76 9.43 97.56 9.37 97.34 9.31 C 97.11 9.25 96.86 9.19 96.6 9.14 C 96.33 9.09 96.05 9.05 95.75 9.02 C 95.45 8.98 95.15 8.97 94.83 8.97 C 93.99 8.97 93.23 9.06 92.53 9.24 C 91.84 9.42 91.21 9.66 90.67 9.98 C 90.13 10.3 89.65 10.68 89.24 11.12 C 88.84 11.55 88.5 12.04 88.23 12.56 C 87.96 13.09 87.77 13.64 87.63 14.23 C 87.5 14.82 87.43 15.42 87.43 16.04 C 87.43 16.81 87.55 17.51 87.79 18.14 C 88.03 18.77 88.38 19.31 88.83 19.76 C 89.28 20.21 89.84 20.56 90.5 20.81 C 91.15 21.06 91.89 21.18 92.71 21.18 C 93.33 21.18 93.87 21.13 94.37 21.04 C 94.86 20.95 95.31 20.82 95.72 20.65 L 95.76 20.63 L 96.35 17.96 L 96.21 18.03 C 96.02 18.13 95.82 18.22 95.62 18.31 C 95.41 18.39 95.2 18.47 94.97 18.54 C 94.74 18.6 94.5 18.66 94.24 18.7 C 93.98 18.74 93.7 18.76 93.41 18.76 C 92.94 18.76 92.52 18.7 92.15 18.57 C 91.78 18.44 91.46 18.25 91.2 18 C 90.94 17.75 90.73 17.44 90.59 17.07 C 90.45 16.7 90.38 16.28 90.38 15.79 C 90.38 15.2 90.48 14.64 90.66 14.12 C 90.85 13.59 91.12 13.13 91.48 12.73 C 91.84 12.34 92.28 12.02 92.82 11.78 C 93.35 11.54 93.96 11.42 94.65 11.42 C 94.95 11.42 95.23 11.44 95.48 11.48 C 95.74 11.52 95.97 11.58 96.2 11.64 C 96.42 11.71 96.62 11.79 96.8 11.87 C 96.99 11.96 97.16 12.04 97.32 12.13 L 97.41 12.18 L 97.43 12.08 L 97.99 9.53 L 97.93 9.51 Z M 97.31 11.94 L 96.87 11.72 C 96.68 11.63 96.47 11.56 96.25 11.49 C 96.02 11.43 95.78 11.36 95.52 11.32 C 95.26 11.27 94.97 11.26 94.66 11.26 C 93.94 11.26 93.31 11.38 92.76 11.63 C 92.21 11.88 91.75 12.21 91.37 12.62 C 90.99 13.03 90.71 13.52 90.52 14.06 C 90.33 14.6 90.23 15.18 90.23 15.78 C 90.23 16.28 90.3 16.73 90.45 17.12 C 90.6 17.51 90.82 17.83 91.09 18.1 C 91.37 18.36 91.71 18.56 92.1 18.7 C 92.49 18.84 92.92 18.9 93.4 18.9 C 93.941 18.902 94.48 18.828 95 18.68 C 95.24 18.61 95.46 18.53 95.67 18.45 C 95.83 18.39 95.98 18.31 96.14 18.24 L 95.63 20.53 C 95.24 20.69 94.82 20.81 94.35 20.9 C 93.87 20.99 93.33 21.04 92.72 21.04 C 91.92 21.04 91.2 20.92 90.56 20.68 C 89.92 20.44 89.38 20.1 88.95 19.67 C 88.51 19.24 88.17 18.71 87.94 18.11 C 87.702 17.453 87.583 16.759 87.59 16.06 C 87.59 15.45 87.65 14.86 87.78 14.29 C 87.91 13.71 88.11 13.17 88.36 12.66 C 88.894 11.611 89.72 10.739 90.74 10.15 C 91.27 9.84 91.88 9.59 92.55 9.42 C 93.584 9.171 94.652 9.1 95.71 9.21 C 96 9.24 96.28 9.29 96.54 9.34 C 96.8 9.39 97.05 9.45 97.27 9.51 C 97.47 9.56 97.64 9.62 97.8 9.67 L 97.3 11.99 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 97.83 9.61 L 97.32 11.93 L 96.88 11.71 C 96.69 11.62 96.48 11.55 96.26 11.48 C 96.03 11.42 95.79 11.35 95.53 11.31 C 95.246 11.264 94.958 11.244 94.67 11.25 C 93.95 11.25 93.33 11.37 92.77 11.62 C 92.22 11.87 91.76 12.2 91.38 12.61 C 91 13.02 90.72 13.51 90.53 14.05 C 90.34 14.59 90.24 15.17 90.24 15.77 C 90.24 16.27 90.31 16.72 90.46 17.11 C 90.61 17.5 90.83 17.82 91.1 18.09 C 91.38 18.35 91.72 18.55 92.11 18.69 C 92.5 18.83 92.93 18.89 93.41 18.89 C 93.951 18.892 94.49 18.818 95.01 18.67 C 95.25 18.6 95.47 18.52 95.68 18.44 C 95.84 18.38 96 18.3 96.15 18.23 L 95.64 20.52 C 95.25 20.68 94.82 20.8 94.36 20.89 C 93.88 20.98 93.34 21.03 92.73 21.03 C 91.93 21.03 91.21 20.91 90.57 20.67 C 89.93 20.43 89.39 20.09 88.96 19.66 C 88.52 19.23 88.18 18.7 87.95 18.1 C 87.712 17.443 87.593 16.749 87.6 16.05 C 87.6 15.44 87.67 14.85 87.79 14.28 C 87.92 13.7 88.11 13.16 88.37 12.65 C 88.904 11.601 89.73 10.729 90.75 10.14 C 91.28 9.83 91.89 9.58 92.57 9.41 C 93.604 9.161 94.672 9.09 95.73 9.2 C 96.02 9.23 96.3 9.28 96.56 9.33 C 96.83 9.38 97.07 9.44 97.29 9.5 C 97.5 9.54 97.68 9.6 97.83 9.65 Z M 106.97 9.16 L 105.47 16.07 C 105.36 16.58 105.23 17.01 105.07 17.35 C 104.91 17.69 104.72 17.97 104.53 18.17 C 104.32 18.38 104.09 18.52 103.84 18.6 C 103.58 18.69 103.3 18.74 103 18.74 C 102.74 18.74 102.5 18.7 102.28 18.62 C 102.066 18.541 101.869 18.422 101.7 18.27 C 101.54 18.11 101.41 17.92 101.32 17.69 C 101.23 17.46 101.18 17.19 101.18 16.89 C 101.18 16.69 101.2 16.45 101.25 16.17 C 101.29 15.88 101.35 15.6 101.41 15.31 C 101.47 15.02 102.75 9.17 102.75 9.17 L 99.94 9.17 L 98.62 15.27 C 98.56 15.56 98.5 15.88 98.46 16.22 C 98.42 16.56 98.4 16.88 98.4 17.16 C 98.4 17.79 98.5 18.35 98.69 18.84 C 98.89 19.34 99.18 19.76 99.55 20.1 C 99.93 20.45 100.38 20.71 100.91 20.89 C 101.44 21.07 102.03 21.16 102.7 21.16 C 103.61 21.16 104.38 21.04 105.01 20.81 C 105.65 20.58 106.18 20.25 106.61 19.81 C 107.04 19.37 107.38 18.85 107.64 18.23 C 107.9 17.61 108.11 16.92 108.28 16.16 L 109.79 9.16 L 106.99 9.16 Z M 108.12 16.12 C 107.96 16.88 107.75 17.56 107.5 18.17 C 107.25 18.77 106.92 19.29 106.5 19.71 C 106.08 20.13 105.57 20.45 104.96 20.67 C 104.34 20.9 103.59 21.01 102.7 21.01 C 102.06 21.01 101.48 20.92 100.97 20.75 C 100.489 20.588 100.047 20.329 99.67 19.99 C 99.32 19.66 99.04 19.26 98.85 18.78 C 98.66 18.31 98.56 17.77 98.56 17.16 C 98.56 16.88 98.58 16.58 98.62 16.25 C 98.67 15.91 98.72 15.6 98.78 15.31 C 98.84 15.02 100.07 9.33 100.07 9.33 L 102.57 9.33 L 101.27 15.3 C 101.21 15.59 101.16 15.87 101.11 16.17 C 101.06 16.46 101.04 16.71 101.04 16.92 C 101.04 17.24 101.08 17.52 101.19 17.78 C 101.29 18.03 101.42 18.24 101.61 18.41 C 101.78 18.58 102 18.7 102.23 18.8 C 102.47 18.89 102.73 18.93 103 18.93 C 103.32 18.93 103.61 18.88 103.89 18.79 C 104.17 18.7 104.42 18.54 104.63 18.32 C 104.85 18.1 105.04 17.81 105.21 17.46 C 105.37 17.1 105.51 16.67 105.62 16.14 L 107.09 9.35 L 109.59 9.35 L 108.11 16.15 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 109.59 9.31 L 108.12 16.12 C 107.96 16.88 107.75 17.56 107.5 18.17 C 107.25 18.77 106.92 19.29 106.5 19.71 C 106.09 20.13 105.57 20.45 104.96 20.67 C 104.34 20.9 103.59 21.01 102.7 21.01 C 102.06 21.01 101.48 20.92 100.96 20.75 C 100.479 20.588 100.037 20.329 99.66 19.99 C 99.31 19.66 99.03 19.26 98.84 18.78 C 98.65 18.31 98.55 17.77 98.55 17.16 C 98.55 16.88 98.57 16.58 98.61 16.25 C 98.65 15.91 98.71 15.6 98.77 15.31 C 98.83 15.02 100.06 9.33 100.06 9.33 L 102.56 9.33 L 101.26 15.3 C 101.2 15.59 101.15 15.87 101.1 16.17 C 101.06 16.46 101.03 16.71 101.03 16.92 C 101.03 17.24 101.08 17.52 101.18 17.78 C 101.28 18.03 101.42 18.24 101.6 18.41 C 101.78 18.58 101.99 18.7 102.23 18.8 C 102.47 18.89 102.73 18.93 103 18.93 C 103.31 18.93 103.61 18.88 103.89 18.79 C 104.17 18.7 104.42 18.54 104.63 18.32 C 104.85 18.1 105.04 17.81 105.21 17.46 C 105.37 17.1 105.51 16.67 105.62 16.14 L 107.09 9.35 L 109.58 9.35 Z M 116.8 11.52 C 116.51 11.25 116.09 11.12 115.54 11.12 L 114.38 11.12 L 113.64 14.51 L 114.8 14.51 C 115.21 14.51 115.56 14.46 115.87 14.36 C 116.16 14.26 116.41 14.12 116.62 13.95 C 116.82 13.78 116.97 13.58 117.06 13.35 C 117.16 13.12 117.21 12.89 117.21 12.64 C 117.21 12.18 117.07 11.8 116.79 11.53 Z M 116.93 13.28 C 116.84 13.49 116.7 13.67 116.52 13.83 C 116.34 13.99 116.11 14.11 115.82 14.22 C 115.54 14.31 115.2 14.37 114.81 14.37 L 113.84 14.37 L 114.51 11.28 L 115.54 11.28 C 116.07 11.28 116.45 11.4 116.69 11.63 C 116.94 11.87 117.07 12.19 117.07 12.63 C 117.07 12.85 117.03 13.07 116.94 13.28 Z M 228.3 12.33 C 228.3 12.25 228.3 12.16 228.29 12.05 L 228.29 11.75 C 228.29 11.66 228.29 11.57 228.3 11.49 C 228.3 11.41 228.3 11.35 228.31 11.32 L 228.31 11.24 L 228.13 11.24 L 228.13 11.3 C 228.13 11.3 228.09 11.41 228.06 11.48 C 228.03 11.56 228 11.63 227.96 11.73 C 227.92 11.82 227.89 11.91 227.84 12.01 C 227.8 12.11 227.75 12.2 227.7 12.29 L 225.5 16.36 L 228.71 16.36 L 228.28 12.34 Z M 227.84 12.35 C 227.89 12.26 227.94 12.16 227.98 12.06 C 228.03 11.96 228.07 11.86 228.11 11.77 C 228.11 11.74 228.13 11.72 228.14 11.69 L 228.14 12.05 C 228.14 12.16 228.14 12.26 228.15 12.34 C 228.16 12.42 228.56 16.19 228.56 16.19 L 225.76 16.19 L 227.84 12.34 Z M 150.51 9.16 L 149.02 16.17 C 149 16.25 148.99 16.33 148.97 16.43 L 148.91 16.73 C 148.89 16.84 148.88 16.94 148.87 17.04 C 148.84 16.96 148.8 16.88 148.77 16.8 C 148.73 16.71 148.69 16.62 148.65 16.54 C 148.61 16.46 148.57 16.39 148.55 16.33 C 148.53 16.27 145.03 9.16 145.03 9.16 L 142.31 9.16 L 139.82 20.95 L 142.44 20.95 L 143.94 13.94 C 144 13.69 144.05 13.45 144.08 13.2 L 144.14 12.74 L 144.14 12.76 C 144.18 12.84 144.21 12.93 144.25 13.02 C 144.29 13.11 144.33 13.2 144.36 13.28 C 144.4 13.37 144.44 13.45 144.47 13.51 L 148.14 20.95 L 150.65 20.95 L 150.65 20.89 L 153.15 9.16 Z M 150.53 20.8 L 148.23 20.8 L 144.6 13.44 C 144.57 13.38 144.54 13.3 144.5 13.22 C 144.46 13.13 144.42 13.05 144.38 12.96 C 144.35 12.87 144.31 12.79 144.28 12.71 C 144.25 12.63 144.23 12.56 144.21 12.5 L 144.21 12.44 L 144.02 12.44 L 144.02 12.5 C 143.99 12.7 143.96 12.93 143.92 13.18 C 143.89 13.43 143.84 13.67 143.78 13.91 L 142.3 20.81 L 139.99 20.81 L 142.42 9.31 L 144.92 9.31 L 148.4 16.38 C 148.43 16.44 148.46 16.52 148.5 16.6 C 148.54 16.68 148.58 16.77 148.62 16.86 C 148.66 16.95 148.7 17.03 148.73 17.12 C 148.76 17.2 148.79 17.27 148.8 17.34 L 148.82 17.4 L 148.98 17.4 L 148.98 17.33 C 148.98 17.25 149 17.16 149.01 17.06 C 149.01 16.96 149.03 16.86 149.05 16.76 C 149.06 16.66 149.08 16.56 149.1 16.46 C 149.12 16.36 149.13 16.28 149.15 16.2 L 150.62 9.31 L 152.95 9.31 L 150.51 20.81 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 152.96 9.31 L 150.53 20.81 L 148.23 20.81 L 144.6 13.45 C 144.57 13.39 144.54 13.31 144.5 13.23 C 144.46 13.14 144.42 13.06 144.38 12.97 C 144.35 12.88 144.31 12.8 144.28 12.72 C 144.25 12.64 144.23 12.57 144.21 12.51 L 144.21 12.45 L 144.02 12.45 L 144.02 12.51 C 143.99 12.71 143.96 12.94 143.92 13.19 C 143.89 13.44 143.84 13.68 143.78 13.92 L 142.3 20.82 L 139.99 20.82 L 142.42 9.32 L 144.92 9.32 L 148.4 16.39 C 148.43 16.45 148.46 16.53 148.5 16.61 C 148.54 16.69 148.58 16.78 148.62 16.87 C 148.66 16.96 148.69 17.04 148.73 17.13 C 148.76 17.21 148.79 17.28 148.81 17.35 L 148.81 17.41 L 148.98 17.41 L 148.98 17.34 C 148.98 17.26 149 17.17 149.01 17.07 C 149.01 16.97 149.03 16.87 149.05 16.77 C 149.06 16.67 149.08 16.57 149.1 16.47 C 149.12 16.37 149.13 16.29 149.15 16.21 L 150.62 9.32 L 152.95 9.32 Z M 218.69 9.16 L 217.69 13.81 L 213.04 13.81 L 214.04 9.16 L 211.23 9.16 L 208.72 20.95 L 211.53 20.95 L 212.53 16.24 L 217.18 16.24 L 216.19 20.95 L 218.99 20.95 L 218.99 20.89 L 221.51 9.16 L 218.71 9.16 Z M 218.85 20.8 L 216.36 20.8 L 217.35 16.09 L 212.4 16.09 L 211.4 20.8 L 208.89 20.8 L 211.34 9.3 L 213.84 9.3 L 212.84 13.95 L 217.8 13.95 L 218.8 9.3 L 221.29 9.3 L 218.84 20.8 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 221.3 9.31 L 218.85 20.81 L 216.36 20.81 L 217.35 16.1 L 212.4 16.1 L 211.4 20.81 L 208.9 20.81 L 211.36 9.31 L 213.86 9.31 L 212.86 13.96 L 217.82 13.96 L 218.82 9.31 L 221.31 9.31 Z M 180.95 9.16 L 178.44 20.95 L 185.59 20.95 L 186.08 18.67 L 181.72 18.67 L 182.26 16.21 L 186.05 16.21 L 186.54 13.92 L 182.74 13.92 L 183.26 11.44 L 187.34 11.44 L 187.34 11.38 L 187.83 9.15 L 180.95 9.15 Z M 187.22 11.29 L 183.14 11.29 L 182.56 14.06 L 186.36 14.06 L 185.93 16.05 L 182.14 16.05 L 181.54 18.82 L 185.89 18.82 L 185.46 20.8 L 178.61 20.8 L 181.06 9.3 L 187.63 9.3 L 187.21 11.28 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 183.14 11.29 L 182.56 14.06 L 186.36 14.06 L 185.92 16.05 L 182.14 16.05 L 181.54 18.82 L 185.89 18.82 L 185.46 20.8 L 178.61 20.8 L 181.06 9.3 L 187.63 9.3 L 187.21 11.29 L 183.13 11.29 Z M 164.08 9.49 C 163.91 9.43 163.71 9.37 163.48 9.31 C 163.25 9.25 163 9.19 162.74 9.14 C 162.47 9.09 162.19 9.05 161.89 9.02 C 161.6 8.98 161.29 8.97 160.97 8.97 C 160.13 8.97 159.37 9.06 158.67 9.24 C 157.98 9.42 157.35 9.66 156.81 9.98 C 156.26 10.3 155.79 10.68 155.38 11.12 C 154.98 11.55 154.64 12.04 154.37 12.56 C 154.11 13.09 153.91 13.64 153.77 14.23 C 153.64 14.82 153.57 15.42 153.57 16.04 C 153.57 16.81 153.69 17.51 153.93 18.14 C 154.17 18.77 154.52 19.31 154.97 19.76 C 155.42 20.21 155.98 20.56 156.63 20.81 C 157.29 21.06 158.03 21.18 158.85 21.18 C 159.46 21.18 160.01 21.13 160.5 21.04 C 160.99 20.95 161.44 20.82 161.84 20.65 L 161.87 20.63 L 162.47 17.96 L 162.33 18.03 C 162.14 18.13 161.94 18.22 161.74 18.31 C 161.53 18.39 161.32 18.47 161.09 18.54 C 160.86 18.6 160.62 18.66 160.37 18.7 C 160.11 18.74 159.83 18.76 159.54 18.76 C 159.07 18.76 158.65 18.7 158.28 18.57 C 157.91 18.44 157.6 18.25 157.33 18 C 157.07 17.75 156.86 17.44 156.72 17.07 C 156.58 16.7 156.51 16.28 156.51 15.79 C 156.51 15.2 156.6 14.64 156.79 14.12 C 156.98 13.59 157.25 13.13 157.61 12.73 C 157.97 12.34 158.41 12.02 158.95 11.78 C 159.48 11.54 160.09 11.42 160.78 11.42 C 161.08 11.42 161.36 11.44 161.61 11.48 C 161.87 11.52 162.1 11.58 162.33 11.64 C 162.55 11.71 162.75 11.79 162.93 11.87 C 163.11 11.96 163.29 12.04 163.45 12.13 L 163.54 12.18 L 163.56 12.08 L 164.12 9.53 L 164.06 9.51 Z M 163.46 11.94 L 163.02 11.72 C 162.83 11.63 162.62 11.56 162.4 11.49 C 162.17 11.43 161.93 11.36 161.67 11.32 C 161.386 11.274 161.098 11.254 160.81 11.26 C 160.09 11.26 159.46 11.38 158.91 11.63 C 158.36 11.88 157.9 12.21 157.52 12.62 C 157.14 13.03 156.86 13.52 156.67 14.06 C 156.48 14.6 156.38 15.18 156.38 15.78 C 156.38 16.28 156.45 16.73 156.6 17.12 C 156.75 17.51 156.97 17.83 157.24 18.1 C 157.52 18.36 157.86 18.56 158.25 18.7 C 158.64 18.84 159.07 18.9 159.55 18.9 C 160.091 18.902 160.63 18.828 161.15 18.68 C 161.39 18.61 161.61 18.53 161.82 18.45 C 161.98 18.39 162.14 18.31 162.28 18.24 L 161.77 20.53 C 161.38 20.69 160.95 20.81 160.49 20.9 C 160.01 20.99 159.47 21.04 158.86 21.04 C 158.05 21.04 157.33 20.92 156.7 20.68 C 156.06 20.44 155.52 20.1 155.09 19.67 C 154.66 19.24 154.32 18.71 154.09 18.11 C 153.85 17.49 153.74 16.81 153.74 16.06 C 153.74 15.45 153.8 14.86 153.93 14.29 C 154.06 13.71 154.26 13.17 154.51 12.66 C 155.044 11.611 155.87 10.739 156.89 10.15 C 157.42 9.84 158.03 9.59 158.71 9.42 C 159.744 9.17 160.812 9.099 161.87 9.21 C 162.16 9.24 162.44 9.29 162.7 9.34 C 162.96 9.39 163.21 9.45 163.43 9.51 C 163.63 9.56 163.8 9.62 163.96 9.67 L 163.46 11.99 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 163.97 9.61 L 163.46 11.93 L 163.02 11.71 C 162.83 11.62 162.62 11.55 162.4 11.48 C 162.17 11.42 161.93 11.35 161.67 11.31 C 161.386 11.264 161.098 11.244 160.81 11.25 C 160.09 11.25 159.46 11.37 158.91 11.62 C 158.36 11.87 157.89 12.2 157.51 12.61 C 157.13 13.02 156.85 13.51 156.66 14.05 C 156.47 14.59 156.37 15.17 156.37 15.77 C 156.37 16.27 156.44 16.72 156.59 17.11 C 156.74 17.5 156.96 17.82 157.23 18.09 C 157.51 18.35 157.85 18.55 158.24 18.69 C 158.63 18.83 159.06 18.89 159.54 18.89 C 160.081 18.892 160.62 18.818 161.14 18.67 C 161.38 18.6 161.59 18.52 161.81 18.44 C 161.97 18.38 162.12 18.3 162.27 18.23 L 161.76 20.52 C 161.37 20.68 160.95 20.8 160.48 20.89 C 160 20.98 159.46 21.03 158.85 21.03 C 158.04 21.03 157.32 20.91 156.69 20.67 C 156.05 20.43 155.51 20.09 155.07 19.66 C 154.64 19.23 154.3 18.7 154.07 18.1 C 153.83 17.48 153.72 16.8 153.72 16.05 C 153.72 15.44 153.78 14.85 153.91 14.28 C 154.04 13.7 154.24 13.16 154.49 12.65 C 155.024 11.601 155.85 10.729 156.87 10.14 C 157.4 9.83 158.01 9.58 158.69 9.41 C 159.724 9.16 160.792 9.089 161.85 9.2 C 162.14 9.23 162.41 9.28 162.68 9.33 C 162.94 9.38 163.19 9.44 163.41 9.5 C 163.61 9.54 163.79 9.6 163.94 9.65 Z M 130.48 11.04 C 130.34 10.67 130.12 10.34 129.81 10.07 C 129.5 9.78 129.11 9.56 128.62 9.4 C 128.13 9.24 127.54 9.16 126.86 9.16 L 122.81 9.16 L 120.3 20.95 L 123.11 20.95 L 124.06 16.49 L 124.45 16.49 C 124.86 16.49 125.17 16.61 125.4 16.84 C 125.63 17.07 125.79 17.42 125.89 17.89 L 126.54 20.95 L 129.51 20.95 L 128.67 17.5 C 128.55 16.98 128.36 16.57 128.12 16.26 C 127.92 16 127.67 15.81 127.4 15.69 C 127.8 15.62 128.19 15.51 128.56 15.35 C 128.98 15.16 129.36 14.92 129.67 14.62 C 129.99 14.32 130.24 13.97 130.42 13.56 C 130.6 13.16 130.69 12.69 130.69 12.2 C 130.69 11.8 130.62 11.41 130.48 11.05 Z M 130.28 13.5 C 130.11 13.89 129.87 14.23 129.56 14.51 C 129.26 14.8 128.9 15.03 128.5 15.21 C 128.09 15.39 127.65 15.52 127.18 15.58 L 127.12 15.58 L 127.12 15.74 L 127.17 15.76 C 127.49 15.86 127.76 16.06 128 16.36 C 128.23 16.65 128.41 17.04 128.52 17.54 L 129.31 20.81 L 126.65 20.81 L 126.03 17.87 C 125.93 17.38 125.76 17 125.5 16.74 C 125.24 16.48 124.88 16.35 124.45 16.35 L 123.94 16.35 L 122.99 20.81 L 120.49 20.81 L 122.94 9.31 L 126.87 9.31 C 127.54 9.31 128.11 9.39 128.58 9.54 C 129.05 9.69 129.42 9.91 129.71 10.17 C 130 10.43 130.21 10.74 130.34 11.08 C 130.48 11.43 130.54 11.8 130.54 12.18 C 130.54 12.66 130.46 13.1 130.28 13.48 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 130.34 11.09 C 130.21 10.75 130 10.44 129.71 10.18 C 129.42 9.91 129.05 9.7 128.58 9.55 C 128.11 9.4 127.54 9.32 126.87 9.32 L 122.94 9.32 L 120.49 20.82 L 122.99 20.82 L 123.94 16.36 L 124.45 16.36 C 124.89 16.36 125.25 16.48 125.5 16.75 C 125.76 17.01 125.93 17.39 126.03 17.88 L 126.65 20.82 L 129.31 20.82 L 128.52 17.55 C 128.4 17.05 128.23 16.66 128 16.37 C 127.76 16.08 127.49 15.88 127.17 15.77 L 127.12 15.75 L 127.12 15.6 L 127.19 15.6 C 127.66 15.53 128.09 15.4 128.51 15.23 C 128.91 15.05 129.27 14.82 129.57 14.53 C 129.87 14.24 130.11 13.91 130.29 13.52 C 130.46 13.13 130.55 12.7 130.55 12.22 C 130.55 11.83 130.49 11.47 130.36 11.12 Z M 127.74 13.34 C 127.64 13.57 127.49 13.77 127.29 13.94 C 127.09 14.11 126.84 14.25 126.54 14.35 C 126.23 14.45 125.88 14.51 125.47 14.51 L 124.31 14.51 L 125.05 11.12 L 126.21 11.12 C 126.76 11.12 127.18 11.25 127.47 11.52 C 127.75 11.79 127.89 12.16 127.89 12.63 C 127.89 12.88 127.84 13.12 127.74 13.34 Z M 243.89 9.16 L 242.4 16.17 C 242.38 16.25 242.37 16.33 242.35 16.43 C 242.33 16.53 242.31 16.63 242.3 16.73 C 242.28 16.84 242.26 16.94 242.25 17.04 C 242.22 16.96 242.19 16.88 242.15 16.8 C 242.11 16.71 242.07 16.62 242.03 16.54 C 241.99 16.45 241.95 16.39 241.93 16.33 C 241.91 16.27 238.41 9.16 238.41 9.16 L 235.69 9.16 L 233.2 20.95 L 235.82 20.95 L 237.32 13.94 C 237.38 13.69 237.42 13.44 237.46 13.2 L 237.52 12.74 L 237.52 12.76 C 237.55 12.84 237.58 12.93 237.62 13.02 C 237.66 13.11 237.7 13.2 237.73 13.28 C 237.77 13.37 237.81 13.45 237.84 13.51 L 241.51 20.95 L 244.02 20.95 L 244.04 20.89 L 246.53 9.16 Z M 243.91 20.8 L 241.62 20.8 L 237.98 13.44 C 237.95 13.38 237.92 13.3 237.88 13.21 C 237.837 13.126 237.801 13.039 237.77 12.95 C 237.73 12.86 237.69 12.78 237.66 12.69 C 237.63 12.61 237.61 12.54 237.6 12.48 L 237.58 12.42 L 237.4 12.42 L 237.4 12.48 C 237.37 12.68 237.34 12.91 237.3 13.16 C 237.27 13.41 237.22 13.65 237.16 13.89 L 235.68 20.79 L 233.37 20.79 L 235.81 9.29 L 238.31 9.29 L 241.79 16.36 C 241.81 16.42 241.85 16.5 241.89 16.58 C 241.93 16.66 241.97 16.75 242.01 16.84 C 242.05 16.93 242.09 17.01 242.12 17.1 C 242.16 17.18 242.18 17.25 242.2 17.32 L 242.2 17.38 L 242.37 17.38 L 242.37 17.31 C 242.38 17.23 242.39 17.14 242.4 17.04 C 242.42 16.94 242.43 16.84 242.44 16.74 C 242.46 16.64 242.47 16.54 242.49 16.44 C 242.51 16.34 242.53 16.26 242.54 16.18 L 244.01 9.29 L 246.34 9.29 L 243.9 20.79 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 246.34 9.31 L 243.91 20.81 L 241.62 20.81 L 237.98 13.45 C 237.95 13.39 237.92 13.31 237.88 13.22 C 237.837 13.136 237.801 13.049 237.77 12.96 C 237.73 12.87 237.69 12.79 237.66 12.7 C 237.63 12.62 237.61 12.55 237.6 12.49 L 237.58 12.43 L 237.4 12.43 L 237.4 12.49 C 237.37 12.69 237.34 12.92 237.31 13.17 C 237.28 13.42 237.23 13.66 237.17 13.9 L 235.69 20.8 L 233.38 20.8 L 235.82 9.3 L 238.32 9.3 L 241.8 16.37 C 241.82 16.43 241.86 16.51 241.9 16.59 C 241.94 16.67 241.98 16.76 242.02 16.85 C 242.06 16.94 242.1 17.02 242.13 17.11 C 242.17 17.19 242.19 17.26 242.21 17.33 L 242.23 17.39 L 242.39 17.39 L 242.39 17.32 C 242.4 17.24 242.41 17.15 242.42 17.05 C 242.43 16.95 242.45 16.85 242.46 16.75 C 242.47 16.65 242.49 16.55 242.51 16.45 C 242.53 16.35 242.55 16.27 242.56 16.19 L 244.03 9.3 L 246.36 9.3 Z M 127.47 11.52 C 127.18 11.25 126.76 11.12 126.21 11.12 L 125.05 11.12 L 124.31 14.51 L 125.47 14.51 C 125.88 14.51 126.23 14.46 126.54 14.36 C 126.83 14.26 127.09 14.12 127.29 13.95 C 127.49 13.78 127.64 13.58 127.74 13.35 C 127.84 13.12 127.88 12.89 127.88 12.64 C 127.88 12.18 127.74 11.8 127.46 11.53 Z M 127.6 13.28 C 127.51 13.49 127.38 13.67 127.19 13.83 C 127.01 13.99 126.78 14.11 126.49 14.22 C 126.21 14.31 125.87 14.37 125.48 14.37 L 124.51 14.37 L 125.18 11.28 L 126.21 11.28 C 126.74 11.28 127.12 11.4 127.37 11.63 C 127.62 11.87 127.74 12.19 127.74 12.63 C 127.74 12.85 127.7 13.07 127.6 13.28 Z M 230.26 9.16 L 227.01 9.16 L 220.19 20.95 L 223.33 20.95 L 224.7 18.36 L 228.78 18.36 L 229.11 20.95 L 231.95 20.95 Z M 228.91 18.21 L 224.61 18.21 L 223.24 20.81 L 220.45 20.81 L 227.1 9.31 L 230.13 9.31 L 231.78 20.81 L 229.25 20.81 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 230.13 9.31 L 227.1 9.31 L 220.45 20.81 L 223.24 20.81 L 224.61 18.21 L 228.91 18.21 L 229.24 20.81 L 231.77 20.81 Z M 225.51 16.35 L 227.71 12.28 C 227.76 12.19 227.81 12.1 227.85 12 C 227.89 11.9 227.93 11.81 227.97 11.72 C 228.01 11.63 228.03 11.55 228.07 11.47 C 228.1 11.4 228.11 11.34 228.12 11.29 L 228.12 11.23 L 228.33 11.23 L 228.33 11.31 C 228.33 11.31 228.31 11.4 228.3 11.48 C 228.3 11.56 228.3 11.64 228.28 11.74 L 228.28 12.04 C 228.28 12.15 228.28 12.24 228.3 12.32 L 228.73 16.34 L 225.52 16.34 Z M 133.5 9.16 L 130.98 20.95 L 138.13 20.95 L 138.62 18.67 L 134.27 18.67 L 134.81 16.21 L 138.6 16.21 L 139.1 13.92 L 135.3 13.92 L 135.82 11.44 L 139.9 11.44 L 139.9 11.38 L 140.38 9.15 L 133.51 9.15 Z M 139.76 11.29 L 135.68 11.29 L 135.1 14.06 L 138.9 14.06 L 138.47 16.05 L 134.68 16.05 L 134.08 18.82 L 138.44 18.82 L 138.01 20.8 L 131.16 20.8 L 133.61 9.3 L 140.18 9.3 L 139.76 11.28 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 135.68 11.29 L 135.1 14.06 L 138.9 14.06 L 138.47 16.05 L 134.68 16.05 L 134.08 18.82 L 138.44 18.82 L 138.01 20.8 L 131.16 20.8 L 133.61 9.3 L 140.18 9.3 L 139.76 11.29 Z M 85.48 37.62 L 87.34 28.28 L 89.29 28.28 L 87.42 37.62 L 85.47 37.62 Z M 89.69 37.62 L 91.55 28.28 L 93.29 28.28 L 96.33 34.79 L 97.63 28.28 L 99.15 28.28 L 97.29 37.62 L 95.6 37.62 L 92.54 31.1 L 91.24 37.62 L 89.67 37.62 Z M 101.95 37.62 L 103.56 29.56 L 100.16 29.56 L 100.41 28.28 L 109.16 28.28 L 108.91 29.56 L 105.52 29.56 L 103.91 37.62 Z M 108.54 37.62 L 114.71 37.62 L 114.96 36.33 L 110.75 36.33 L 111.34 33.38 L 114.5 33.38 L 114.74 32.17 L 111.58 32.17 L 112.1 29.57 L 116.04 29.57 L 116.29 28.29 L 110.4 28.29 L 108.54 37.63 Z M 116.31 37.62 L 118.17 28.28 L 121.72 28.28 C 122.35 28.28 122.83 28.34 123.15 28.45 C 123.48 28.57 123.73 28.78 123.92 29.07 C 124.11 29.36 124.2 29.7 124.2 30.08 C 124.2 30.7 123.99 31.29 123.57 31.86 C 123.15 32.43 122.54 32.9 121.73 33.27 L 123.73 37.62 L 121.62 37.62 L 120.03 33.73 L 118.99 33.73 L 118.21 37.62 L 116.3 37.62 Z M 119.25 32.48 L 119.84 32.48 C 120.57 32.48 121.15 32.25 121.56 31.8 C 121.97 31.35 122.18 30.87 122.18 30.39 C 122.18 30.2 122.13 30.05 122.04 29.93 C 121.95 29.81 121.8 29.72 121.59 29.65 C 121.38 29.59 120.98 29.55 120.38 29.55 L 119.82 29.55 L 119.24 32.47 Z M 125.06 37.62 L 126.92 28.28 L 128.66 28.28 L 131.7 34.79 L 133 28.28 L 134.52 28.28 L 132.66 37.62 L 130.97 37.62 L 127.91 31.1 L 126.61 37.62 L 125.05 37.62 Z M 134.08 37.62 L 135.65 37.62 L 136.96 35.25 L 140.66 35.25 L 141.13 37.62 L 143.06 37.62 L 141.26 28.28 L 139.27 28.28 L 134.09 37.62 Z M 137.66 33.96 L 139.69 30.31 L 140.43 33.96 Z M 146.83 37.62 L 148.44 29.56 L 145.05 29.56 L 145.3 28.28 L 154.04 28.28 L 153.79 29.56 L 150.39 29.56 L 148.78 37.62 L 146.82 37.62 Z M 153.43 37.62 L 155.38 37.62 L 157.25 28.28 L 155.3 28.28 L 153.44 37.62 Z M 161.52 37.85 C 160.36 37.85 159.46 37.53 158.81 36.89 C 158.16 36.25 157.84 35.39 157.84 34.31 C 157.84 33.23 158.11 32.26 158.65 31.29 C 159.167 30.342 159.909 29.535 160.81 28.94 C 161.71 28.35 162.76 28.05 163.96 28.05 C 165.16 28.05 166.08 28.37 166.72 29.02 C 167.36 29.66 167.68 30.52 167.68 31.6 C 167.68 32.68 167.42 33.64 166.88 34.61 C 166.34 35.58 165.63 36.36 164.73 36.96 C 163.83 37.56 162.76 37.86 161.53 37.86 Z M 161.95 36.57 C 162.56 36.57 163.14 36.37 163.69 35.97 C 164.23 35.57 164.69 34.97 165.05 34.17 C 165.41 33.37 165.59 32.56 165.59 31.74 C 165.59 30.92 165.4 30.33 165.03 29.93 C 164.65 29.53 164.17 29.33 163.56 29.33 C 162.95 29.33 162.4 29.53 161.84 29.94 C 161.29 30.35 160.83 30.95 160.48 31.75 C 160.13 32.55 159.95 33.35 159.95 34.16 C 159.95 34.97 160.14 35.6 160.53 35.99 C 160.91 36.39 161.39 36.58 161.95 36.58 Z M 168.26 37.62 L 170.12 28.28 L 171.86 28.28 L 174.9 34.79 L 176.2 28.28 L 177.72 28.28 L 175.86 37.62 L 174.17 37.62 L 171.11 31.1 L 169.81 37.62 L 168.24 37.62 Z M 177.28 37.62 L 178.85 37.62 L 180.16 35.25 L 183.86 35.25 L 184.33 37.62 L 186.26 37.62 L 184.46 28.28 L 182.47 28.28 L 177.29 37.62 Z M 180.86 33.96 L 182.89 30.31 L 183.63 33.96 Z M 187.65 37.62 L 189.51 28.28 L 191.46 28.28 L 189.85 36.33 L 194.19 36.33 L 193.93 37.62 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 0.418 31.673 C -2.569 22.284 10.871 9.626 30.439 3.4 C 50.006 -2.826 68.29 -0.262 71.278 9.127 C 74.265 18.516 60.824 31.174 41.257 37.4 C 21.69 43.626 3.405 41.062 0.418 31.673 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 4.293 29.729 C 2.068 22.203 14.394 11.925 31.824 6.772 C 49.254 1.619 65.187 3.543 67.412 11.069 C 69.637 18.595 57.311 28.873 39.881 34.026 C 22.452 39.179 6.518 37.255 4.293 29.729 Z\" fill=\"var(--token-bf248c9a-a6d5-4e66-99ea-e9a70e534220, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;darker&quot;} */\"></path><path d=\"M 6.029 29.216 C 3.924 22.098 15.571 12.38 32.042 7.51 C 48.514 2.641 63.572 4.464 65.677 11.582 C 67.781 18.7 56.134 28.418 39.663 33.288 C 23.192 38.157 8.133 36.334 6.029 29.216 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 31.25 17.09 L 28.97 17.09 C 28.9 16.58 28.75 16.11 28.52 15.68 C 28.29 15.25 27.97 14.89 27.59 14.6 C 27.21 14.3 26.75 14.07 26.21 13.91 C 25.638 13.744 25.045 13.664 24.45 13.67 C 23.59 13.67 22.82 13.82 22.13 14.13 C 21.44 14.44 20.86 14.87 20.39 15.44 C 19.92 16.01 19.55 16.71 19.3 17.55 C 19.05 18.39 18.92 19.34 18.92 20.41 C 18.92 21.48 19.05 22.46 19.31 23.29 C 19.57 24.13 19.94 24.83 20.41 25.41 C 20.88 25.98 21.45 26.42 22.13 26.71 C 22.8 27 23.56 27.15 24.41 27.15 C 25.79 27.15 26.87 26.82 27.64 26.18 C 28.41 25.53 28.85 24.62 28.97 23.45 L 31.25 23.45 C 31.17 24.35 30.94 25.15 30.57 25.85 C 30.19 26.55 29.71 27.13 29.1 27.61 C 28.5 28.08 27.8 28.44 27 28.68 C 26.2 28.92 25.35 29.04 24.44 29.04 C 23.25 29.04 22.17 28.84 21.2 28.44 C 20.24 28.04 19.42 27.46 18.74 26.71 C 18.06 25.96 17.54 25.05 17.17 23.99 C 16.8 22.92 16.62 21.73 16.62 20.41 C 16.62 19.09 16.81 17.89 17.17 16.82 C 17.54 15.75 18.06 14.85 18.74 14.1 C 19.42 13.35 20.24 12.77 21.2 12.37 C 22.16 11.97 23.24 11.77 24.44 11.77 C 25.34 11.77 26.18 11.9 26.98 12.16 C 27.78 12.42 28.47 12.78 29.08 13.24 C 29.69 13.7 30.18 14.27 30.56 14.93 C 30.95 15.59 31.18 16.31 31.26 17.1 Z M 46.82 28.76 L 44.1 28.76 L 39.15 21.68 L 34.15 28.76 L 31.43 28.76 L 37.86 19.94 L 32.06 12.06 L 34.8 12.06 L 39.13 18.22 L 43.49 12.06 L 46.18 12.06 L 40.35 19.94 L 46.81 28.76 Z M 50.19 12.06 L 47.94 12.06 L 47.94 28.76 L 50.19 28.76 Z\" fill=\"var(--token-bf248c9a-a6d5-4e66-99ea-e9a70e534220, rgb(28, 28, 28)) /* {&quot;name&quot;:&quot;darker&quot;} */\"></path></svg>',svgContentId:12180666711,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jinl05\",\"data-framer-name\":\"Frame 1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 276 87\"><path d=\"M 20.205 55.34 C 18.751 55.34 17.424 55.104 16.224 54.63 C 15.061 54.157 14.007 53.683 13.062 53.21 C 12.262 52.772 11.589 52.445 11.044 52.226 C 10.535 52.008 10.081 51.898 9.681 51.898 C 9.172 51.898 8.809 52.117 8.59 52.554 C 8.409 52.955 8.263 53.41 8.154 53.92 L 7.991 54.739 L 6.627 54.739 L 6.9 48.292 L 6.736 41.244 L 8.1 41.244 L 8.699 43.812 C 9.099 45.415 9.808 46.981 10.826 48.511 C 11.863 50.024 13.199 51.307 14.752 52.281 C 16.352 53.264 18.169 53.756 20.205 53.756 C 21.332 53.756 22.404 53.519 23.422 53.046 C 24.476 52.536 25.331 51.771 25.985 50.751 C 26.676 49.731 27.021 48.401 27.021 46.762 C 27.021 44.322 26.221 42.355 24.622 40.861 C 23.059 39.368 20.877 37.948 18.078 36.6 L 15.788 35.507 C 13.062 34.196 11.026 32.757 9.681 31.191 C 8.372 29.588 7.718 27.548 7.718 25.071 C 7.718 23.141 8.191 21.429 9.136 19.935 C 10.081 18.442 11.371 17.276 13.007 16.438 C 14.68 15.601 16.588 15.182 18.733 15.182 C 20.223 15.182 21.477 15.382 22.495 15.783 C 23.513 16.183 24.313 16.53 24.895 16.821 C 25.84 17.295 26.585 17.531 27.13 17.531 C 27.712 17.531 28.057 16.967 28.166 15.837 L 29.529 15.837 L 29.366 21.083 L 29.475 26.382 L 28.112 26.382 C 27.894 24.343 27.33 22.612 26.421 21.192 C 25.512 19.735 24.404 18.624 23.095 17.859 C 21.823 17.094 20.46 16.712 19.005 16.712 C 16.861 16.712 15.116 17.331 13.771 18.569 C 12.462 19.808 11.808 21.392 11.808 23.323 C 11.808 25.399 12.48 27.038 13.825 28.24 C 15.17 29.406 16.915 30.517 19.06 31.573 L 21.296 32.666 C 23.295 33.649 25.004 34.669 26.421 35.725 C 27.876 36.746 28.984 37.948 29.748 39.332 C 30.547 40.716 30.947 42.446 30.947 44.522 C 30.947 46.672 30.456 48.565 29.475 50.204 C 28.53 51.844 27.239 53.119 25.603 54.029 C 24.004 54.903 22.205 55.34 20.205 55.34 Z M 48.317 55.34 C 45.918 55.34 43.828 54.831 42.046 53.811 C 40.265 52.754 38.866 51.316 37.848 49.494 C 36.866 47.636 36.375 45.524 36.375 43.156 C 36.375 40.606 36.921 38.348 38.011 36.381 C 39.102 34.378 40.556 32.812 42.374 31.682 C 44.228 30.517 46.263 29.934 48.481 29.934 C 51.28 29.934 53.461 30.827 55.024 32.611 C 56.624 34.396 57.424 36.746 57.424 39.659 C 57.424 40.096 57.405 40.461 57.369 40.752 C 57.333 41.044 57.296 41.244 57.26 41.353 L 40.792 41.353 C 40.756 41.862 40.738 42.373 40.738 42.883 C 40.738 44.814 41.047 46.617 41.665 48.292 C 42.283 49.931 43.21 51.243 44.446 52.226 C 45.718 53.21 47.263 53.701 49.081 53.701 C 50.789 53.701 52.298 53.228 53.607 52.281 C 54.952 51.297 55.988 49.859 56.715 47.964 L 58.023 48.456 C 56.497 53.046 53.261 55.34 48.317 55.34 Z M 48.481 31.3 C 46.227 31.3 44.464 32.101 43.191 33.704 C 41.955 35.307 41.192 37.438 40.901 40.096 L 47.826 40.096 C 49.462 40.096 50.698 39.915 51.534 39.55 C 52.407 39.15 52.989 38.676 53.279 38.13 C 53.606 37.547 53.77 36.982 53.77 36.436 C 53.77 34.833 53.225 33.577 52.134 32.666 C 51.044 31.755 49.826 31.3 48.481 31.3 Z M 72.395 54.739 L 63.507 35.07 C 63.18 34.341 62.78 33.722 62.307 33.212 C 61.835 32.702 61.126 32.393 60.181 32.283 L 59.199 32.174 L 59.199 30.917 L 64.816 31.081 L 70.377 30.917 L 70.377 32.174 L 69.505 32.283 C 68.706 32.393 68.142 32.593 67.815 32.884 C 67.487 33.139 67.324 33.504 67.324 33.977 C 67.324 34.378 67.469 34.924 67.76 35.616 L 74.631 50.805 L 81.011 35.835 C 81.338 35.106 81.501 34.505 81.501 34.032 C 81.501 33.085 80.665 32.502 78.993 32.283 L 78.066 32.174 L 78.066 30.917 L 82.974 31.081 L 87.554 30.917 L 87.554 32.174 L 86.3 32.338 C 85.282 32.484 84.5 32.884 83.955 33.54 C 83.41 34.159 82.865 35.106 82.319 36.381 L 74.467 54.739 Z M 100.29 55.34 C 97.891 55.34 95.801 54.831 94.019 53.811 C 92.238 52.754 90.838 51.316 89.82 49.494 C 88.839 47.636 88.348 45.524 88.348 43.156 C 88.348 40.606 88.893 38.348 89.984 36.381 C 91.075 34.378 92.529 32.812 94.346 31.682 C 96.2 30.517 98.236 29.934 100.454 29.934 C 103.253 29.934 105.434 30.827 106.997 32.611 C 108.597 34.396 109.396 36.746 109.396 39.659 C 109.396 40.096 109.378 40.461 109.342 40.752 C 109.306 41.044 109.269 41.244 109.233 41.353 L 92.765 41.353 C 92.729 41.862 92.711 42.373 92.71 42.883 C 92.71 44.814 93.02 46.617 93.637 48.292 C 94.256 49.931 95.183 51.243 96.418 52.226 C 97.691 53.21 99.236 53.701 101.053 53.701 C 102.762 53.701 104.271 53.228 105.579 52.281 C 106.924 51.297 107.96 49.859 108.687 47.964 L 109.996 48.456 C 108.469 53.046 105.234 55.34 100.29 55.34 Z M 100.454 31.3 C 98.2 31.3 96.437 32.101 95.164 33.704 C 93.929 35.307 93.165 37.438 92.874 40.096 L 99.799 40.096 C 101.435 40.096 102.671 39.915 103.507 39.55 C 104.38 39.15 104.961 38.676 105.252 38.13 C 105.579 37.547 105.743 36.982 105.743 36.436 C 105.743 34.833 105.198 33.577 104.107 32.666 C 103.016 31.755 101.799 31.3 100.454 31.3 Z M 113.407 54.903 L 113.407 53.647 L 114.28 53.537 C 115.334 53.392 116.134 53.228 116.679 53.046 C 117.261 52.827 117.661 52.372 117.879 51.68 C 118.097 50.951 118.206 49.767 118.206 48.128 L 118.206 36.6 C 118.206 34.706 117.806 33.504 117.006 32.994 C 116.243 32.447 115.171 32.174 113.789 32.174 L 113.407 32.174 L 113.407 30.917 C 114.844 30.919 116.281 30.882 117.715 30.808 C 119.097 30.699 120.533 30.517 122.023 30.262 L 122.023 34.687 C 122.859 33.449 124.041 32.356 125.567 31.409 C 127.094 30.426 128.876 29.934 130.911 29.934 C 133.384 29.934 135.328 30.571 136.746 31.846 C 138.2 33.085 138.927 34.87 138.927 37.201 L 138.927 48.128 C 138.927 49.767 139.036 50.951 139.254 51.68 C 139.472 52.372 139.854 52.827 140.399 53.046 C 140.981 53.228 141.799 53.392 142.853 53.537 L 143.726 53.647 L 143.726 54.903 L 137.018 54.739 L 130.311 54.903 L 130.311 53.647 L 131.184 53.537 C 132.238 53.392 133.038 53.228 133.583 53.046 C 134.165 52.827 134.565 52.372 134.783 51.68 C 135.001 50.951 135.11 49.767 135.11 48.128 L 135.11 37.201 C 135.11 35.38 134.638 33.995 133.692 33.048 C 132.747 32.065 131.42 31.573 129.712 31.573 C 128.403 31.573 127.222 31.883 126.167 32.502 C 125.113 33.085 124.241 33.813 123.55 34.687 C 122.859 35.562 122.35 36.4 122.023 37.201 L 122.023 48.128 C 122.023 49.767 122.132 50.951 122.35 51.68 C 122.568 52.372 122.95 52.827 123.495 53.046 C 124.077 53.228 124.895 53.392 125.949 53.537 L 126.822 53.647 L 126.822 54.903 L 120.115 54.739 Z M 160.869 54.903 L 160.869 53.537 L 161.96 53.428 C 163.233 53.283 164.196 53.1 164.85 52.882 C 165.541 52.627 166.014 52.117 166.268 51.352 C 166.522 50.551 166.649 49.258 166.649 47.473 L 166.649 23.213 C 166.649 21.392 166.522 20.099 166.268 19.334 C 166.014 18.569 165.541 18.078 164.85 17.859 C 164.196 17.604 163.233 17.404 161.96 17.258 L 160.869 17.149 L 160.869 15.783 L 168.94 15.947 L 168.994 15.947 L 177.064 15.783 L 177.064 17.149 L 175.974 17.258 C 174.738 17.404 173.775 17.604 173.084 17.859 C 172.393 18.078 171.921 18.569 171.666 19.334 C 171.412 20.099 171.284 21.392 171.284 23.213 L 171.284 33.759 L 192.06 33.759 L 192.06 23.213 C 192.06 21.392 191.933 20.099 191.678 19.334 C 191.424 18.569 190.951 18.078 190.26 17.859 C 189.606 17.604 188.643 17.404 187.37 17.258 L 186.28 17.149 L 186.28 15.783 L 194.35 15.947 L 194.405 15.947 L 202.475 15.783 L 202.475 17.149 L 201.384 17.258 C 200.149 17.404 199.185 17.604 198.494 17.859 C 197.804 18.078 197.331 18.569 197.077 19.334 C 196.822 20.099 196.695 21.392 196.695 23.213 L 196.695 47.473 C 196.695 49.258 196.822 50.551 197.077 51.352 C 197.331 52.117 197.804 52.627 198.494 52.882 C 199.185 53.1 200.149 53.283 201.384 53.428 L 202.475 53.537 L 202.475 54.903 L 194.405 54.739 L 194.35 54.739 L 186.28 54.903 L 186.28 53.537 L 187.37 53.428 C 188.643 53.283 189.606 53.1 190.26 52.882 C 190.951 52.627 191.424 52.117 191.678 51.352 C 191.933 50.551 192.06 49.258 192.06 47.473 L 192.06 35.507 L 171.284 35.507 L 171.284 47.473 C 171.284 49.258 171.412 50.551 171.666 51.352 C 171.921 52.117 172.393 52.627 173.084 52.882 C 173.775 53.1 174.738 53.283 175.974 53.428 L 177.064 53.537 L 177.064 54.903 L 168.994 54.739 L 168.94 54.739 Z M 206.171 54.903 L 206.171 53.647 L 207.043 53.537 C 208.097 53.392 208.897 53.228 209.442 53.046 C 210.024 52.827 210.424 52.372 210.642 51.68 C 210.86 50.951 210.969 49.767 210.969 48.128 L 210.969 36.6 C 210.969 34.706 210.569 33.504 209.77 32.994 C 209.006 32.447 207.934 32.174 206.552 32.174 L 206.171 32.174 L 206.171 30.917 C 207.661 30.917 209.097 30.881 210.479 30.808 C 211.86 30.699 213.296 30.517 214.786 30.262 L 214.786 48.128 C 214.786 49.767 214.895 50.951 215.113 51.68 C 215.332 52.372 215.713 52.827 216.259 53.046 C 216.84 53.228 217.658 53.392 218.712 53.537 L 219.585 53.647 L 219.585 54.903 L 212.878 54.739 Z M 212.223 23.869 C 211.278 23.869 210.533 23.541 209.988 22.886 C 209.442 22.23 209.17 21.447 209.17 20.536 C 209.17 19.589 209.442 18.806 209.988 18.187 C 210.533 17.531 211.278 17.203 212.223 17.203 C 213.278 17.203 214.041 17.531 214.514 18.187 C 215.022 18.806 215.277 19.589 215.277 20.536 C 215.277 21.447 215.022 22.23 214.514 22.886 C 214.041 23.541 213.278 23.869 212.223 23.869 Z M 220.958 54.903 L 220.958 53.647 L 221.83 53.537 C 222.885 53.392 223.684 53.228 224.229 53.046 C 224.811 52.827 225.211 52.372 225.429 51.68 C 225.647 50.951 225.756 49.767 225.756 48.128 L 225.756 21.465 C 225.756 19.571 225.357 18.369 224.557 17.859 C 223.793 17.313 222.721 17.039 221.339 17.039 L 220.958 17.039 L 220.958 15.783 C 222.394 15.784 223.831 15.748 225.265 15.673 C 226.709 15.556 228.146 15.374 229.573 15.127 L 229.573 48.128 C 229.573 49.767 229.682 50.951 229.9 51.68 C 230.119 52.372 230.5 52.827 231.046 53.046 C 231.627 53.228 232.445 53.392 233.499 53.537 L 234.372 53.647 L 234.372 54.903 L 227.665 54.739 Z M 236.028 54.903 L 236.028 53.647 L 236.9 53.537 C 237.954 53.392 238.754 53.228 239.3 53.046 C 239.881 52.827 240.281 52.372 240.499 51.68 C 240.717 50.951 240.826 49.767 240.826 48.128 L 240.826 21.465 C 240.826 19.571 240.427 18.369 239.627 17.859 C 238.863 17.313 237.791 17.039 236.41 17.039 L 236.028 17.039 L 236.028 15.783 C 237.518 15.783 238.954 15.746 240.336 15.673 C 241.779 15.556 243.216 15.374 244.643 15.127 L 244.643 48.128 C 244.643 49.767 244.752 50.951 244.971 51.68 C 245.189 52.372 245.57 52.827 246.116 53.046 C 246.697 53.228 247.515 53.392 248.569 53.537 L 249.442 53.647 L 249.442 54.903 L 242.735 54.739 Z M 261.84 55.34 C 260.458 55.34 259.277 55.176 258.296 54.849 C 257.35 54.557 256.605 54.284 256.06 54.029 C 255.478 53.738 255.115 53.592 254.97 53.592 C 254.824 53.592 254.697 53.665 254.588 53.811 C 254.515 53.92 254.424 54.23 254.315 54.739 L 253.061 54.739 L 253.279 51.133 L 253.443 46.489 L 254.642 46.489 L 254.697 47.418 C 254.769 48.438 255.097 49.458 255.678 50.478 C 256.296 51.498 257.132 52.354 258.187 53.046 C 259.241 53.738 260.458 54.084 261.84 54.084 C 263.33 54.084 264.53 53.701 265.439 52.936 C 266.348 52.171 266.802 51.115 266.802 49.767 C 266.802 48.602 266.33 47.618 265.385 46.817 C 264.476 46.016 263.203 45.306 261.567 44.686 L 259.604 43.921 C 257.714 43.193 256.278 42.282 255.297 41.189 C 254.351 40.096 253.879 38.694 253.879 36.982 C 253.879 35.525 254.206 34.287 254.86 33.267 C 255.551 32.211 256.442 31.391 257.532 30.808 C 258.644 30.229 259.879 29.929 261.131 29.934 C 262.04 29.934 262.803 30.043 263.421 30.262 C 264.076 30.48 264.621 30.699 265.057 30.917 C 265.421 31.1 265.73 31.191 265.984 31.191 C 266.348 31.191 266.639 30.808 266.857 30.043 L 268.056 30.098 L 267.838 33.649 L 267.838 37.474 L 266.584 37.474 C 266.33 35.762 265.748 34.287 264.839 33.048 C 263.93 31.773 262.622 31.136 260.913 31.136 C 259.714 31.136 258.696 31.518 257.86 32.283 C 257.06 33.048 256.66 34.014 256.66 35.179 C 256.66 36.308 257.078 37.255 257.914 38.02 C 258.787 38.749 259.968 39.404 261.458 39.987 L 263.585 40.807 C 265.802 41.644 267.329 42.664 268.165 43.866 C 269.038 45.032 269.474 46.434 269.474 48.074 C 269.474 50.004 268.82 51.698 267.511 53.155 C 266.202 54.612 264.312 55.34 261.84 55.34 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path><path d=\"M 31.852 73.961 L 29.316 83.739 L 27.854 83.739 L 25.803 75.623 L 23.797 83.739 L 22.369 83.739 L 19.786 73.961 L 21.117 73.961 L 23.168 82.091 L 25.187 73.961 L 26.504 73.961 L 28.543 82.17 L 30.581 73.961 L 31.852 73.961 Z M 39.147 80.2 L 33.753 80.2 C 33.753 80.651 33.82 81.045 33.956 81.382 C 34.091 81.714 34.277 81.988 34.513 82.203 C 34.74 82.413 35.009 82.571 35.319 82.676 C 35.634 82.781 35.979 82.833 36.355 82.833 C 36.853 82.833 37.353 82.735 37.856 82.538 C 38.362 82.336 38.723 82.139 38.937 81.947 L 39.002 81.947 L 39.002 83.293 C 38.587 83.468 38.164 83.615 37.731 83.733 C 37.287 83.853 36.828 83.912 36.368 83.91 C 35.153 83.91 34.205 83.582 33.524 82.925 C 32.842 82.264 32.501 81.327 32.501 80.114 C 32.501 78.915 32.826 77.963 33.478 77.258 C 34.133 76.553 34.994 76.201 36.06 76.201 C 37.047 76.201 37.807 76.489 38.341 77.067 C 38.878 77.645 39.147 78.466 39.147 79.53 Z M 37.947 79.254 C 37.943 78.606 37.779 78.105 37.456 77.75 C 37.137 77.396 36.65 77.219 35.995 77.219 C 35.335 77.219 34.808 77.413 34.415 77.803 C 34.026 78.192 33.805 78.676 33.753 79.254 L 37.947 79.254 Z M 46.704 83.739 L 45.478 83.739 L 45.478 82.958 C 45.368 83.032 45.22 83.138 45.032 83.273 C 44.864 83.396 44.684 83.501 44.495 83.589 C 44.268 83.696 44.031 83.78 43.787 83.838 C 43.52 83.908 43.208 83.943 42.85 83.943 C 42.19 83.943 41.631 83.724 41.172 83.286 C 40.713 82.848 40.484 82.29 40.484 81.612 C 40.484 81.056 40.601 80.607 40.838 80.266 C 41.078 79.92 41.419 79.648 41.86 79.451 C 42.306 79.254 42.841 79.121 43.466 79.051 C 44.135 78.977 44.806 78.924 45.478 78.893 L 45.478 78.703 C 45.478 78.422 45.428 78.19 45.327 78.007 C 45.232 77.824 45.087 77.673 44.907 77.573 C 44.733 77.472 44.523 77.404 44.278 77.369 C 44.024 77.334 43.768 77.316 43.512 77.317 C 43.189 77.317 42.828 77.361 42.43 77.448 C 42.033 77.531 41.622 77.654 41.198 77.816 L 41.133 77.816 L 41.133 76.562 C 41.373 76.496 41.72 76.424 42.175 76.345 C 42.618 76.267 43.068 76.228 43.518 76.227 C 44.034 76.227 44.482 76.27 44.862 76.358 C 45.246 76.441 45.578 76.586 45.858 76.792 C 46.132 76.992 46.349 77.262 46.487 77.573 C 46.631 77.893 46.704 78.289 46.704 78.761 Z M 45.478 81.933 L 45.478 79.891 C 45.102 79.913 44.659 79.946 44.147 79.99 C 43.641 80.033 43.238 80.097 42.941 80.18 C 42.587 80.281 42.301 80.438 42.083 80.653 C 41.865 80.863 41.755 81.154 41.755 81.527 C 41.755 81.947 41.882 82.264 42.135 82.479 C 42.389 82.689 42.775 82.794 43.296 82.794 C 43.728 82.794 44.124 82.711 44.482 82.544 C 44.84 82.373 45.172 82.17 45.478 81.933 Z M 50.321 83.739 L 49.089 83.739 L 49.089 73.521 L 50.321 73.521 Z M 56.561 83.674 C 56.329 83.735 56.076 83.786 55.8 83.825 C 55.529 83.864 55.287 83.884 55.073 83.884 C 54.326 83.884 53.757 83.683 53.369 83.28 C 52.98 82.877 52.786 82.231 52.786 81.342 L 52.786 77.442 L 51.953 77.442 L 51.953 76.404 L 52.786 76.404 L 52.786 74.296 L 54.018 74.296 L 54.018 76.404 L 56.561 76.404 L 56.561 77.442 L 54.018 77.442 L 54.018 80.784 C 54.018 81.17 54.026 81.472 54.044 81.69 C 54.061 81.905 54.122 82.107 54.227 82.295 C 54.323 82.47 54.455 82.599 54.621 82.682 C 54.791 82.761 55.049 82.8 55.394 82.8 C 55.595 82.8 55.805 82.772 56.023 82.715 C 56.241 82.654 56.399 82.603 56.495 82.564 L 56.561 82.564 Z M 64.176 83.739 L 62.944 83.739 L 62.944 79.563 C 62.944 79.226 62.925 78.911 62.885 78.617 C 62.846 78.319 62.774 78.087 62.669 77.921 C 62.56 77.737 62.394 77.595 62.197 77.514 C 61.992 77.422 61.725 77.376 61.397 77.376 C 61.061 77.376 60.709 77.459 60.342 77.625 C 59.975 77.792 59.624 78.004 59.287 78.263 L 59.287 83.739 L 58.055 83.739 L 58.055 73.521 L 59.287 73.521 L 59.287 77.219 C 59.671 76.899 60.069 76.649 60.48 76.47 C 60.878 76.293 61.309 76.201 61.745 76.201 C 62.536 76.201 63.139 76.439 63.554 76.916 C 63.969 77.393 64.176 78.081 64.176 78.978 Z M 76.957 83.739 L 75.731 83.739 L 75.731 82.958 C 75.621 83.032 75.473 83.138 75.285 83.273 C 75.117 83.396 74.937 83.501 74.748 83.589 C 74.521 83.696 74.284 83.78 74.04 83.838 C 73.773 83.908 73.461 83.943 73.103 83.943 C 72.443 83.943 71.884 83.724 71.425 83.286 C 70.966 82.848 70.737 82.29 70.737 81.612 C 70.737 81.056 70.855 80.607 71.091 80.266 C 71.331 79.92 71.672 79.648 72.113 79.451 C 72.559 79.254 73.094 79.121 73.719 79.051 C 74.388 78.977 75.059 78.924 75.731 78.893 L 75.731 78.703 C 75.731 78.422 75.681 78.19 75.58 78.007 C 75.486 77.824 75.34 77.674 75.161 77.573 C 74.986 77.472 74.776 77.404 74.532 77.369 C 74.278 77.334 74.021 77.316 73.765 77.317 C 73.442 77.317 73.081 77.361 72.683 77.448 C 72.286 77.531 71.875 77.654 71.451 77.816 L 71.386 77.816 L 71.386 76.562 C 71.626 76.496 71.974 76.424 72.428 76.345 C 72.871 76.267 73.321 76.228 73.771 76.227 C 74.287 76.227 74.735 76.27 75.115 76.358 C 75.499 76.441 75.831 76.586 76.111 76.792 C 76.386 76.992 76.603 77.262 76.74 77.573 C 76.884 77.893 76.957 78.289 76.957 78.761 Z M 75.731 81.933 L 75.731 79.891 C 75.355 79.913 74.912 79.946 74.4 79.99 C 73.894 80.033 73.491 80.097 73.195 80.18 C 72.841 80.281 72.554 80.438 72.336 80.653 C 72.117 80.863 72.008 81.154 72.008 81.527 C 72.008 81.947 72.135 82.264 72.388 82.479 C 72.642 82.689 73.028 82.794 73.549 82.794 C 73.981 82.794 74.377 82.711 74.735 82.544 C 75.093 82.373 75.425 82.17 75.731 81.933 Z M 85.451 83.739 L 84.218 83.739 L 84.218 79.563 C 84.218 79.226 84.198 78.911 84.159 78.617 C 84.12 78.319 84.048 78.087 83.943 77.921 C 83.834 77.737 83.668 77.595 83.471 77.514 C 83.266 77.422 82.999 77.376 82.672 77.376 C 82.335 77.376 81.983 77.459 81.616 77.625 C 81.249 77.792 80.898 78.004 80.561 78.263 L 80.561 83.739 L 79.329 83.739 L 79.329 76.404 L 80.561 76.404 L 80.561 77.219 C 80.946 76.899 81.343 76.649 81.754 76.47 C 82.152 76.293 82.583 76.201 83.019 76.201 C 83.81 76.201 84.413 76.439 84.828 76.916 C 85.243 77.393 85.451 78.081 85.451 78.978 Z M 93.761 83.739 L 92.529 83.739 L 92.529 82.971 C 92.175 83.277 91.806 83.516 91.421 83.687 C 91.026 83.86 90.6 83.947 90.169 83.943 C 89.295 83.943 88.601 83.606 88.085 82.932 C 87.574 82.257 87.318 81.323 87.318 80.127 C 87.318 79.506 87.406 78.952 87.581 78.466 C 87.76 77.98 88 77.567 88.302 77.225 C 88.876 76.574 89.702 76.201 90.569 76.201 C 90.954 76.201 91.294 76.242 91.591 76.325 C 91.889 76.404 92.201 76.529 92.529 76.7 L 92.529 73.521 L 93.761 73.521 Z M 92.529 81.933 L 92.529 77.724 C 92.197 77.575 91.9 77.472 91.637 77.415 C 91.355 77.356 91.067 77.328 90.779 77.33 C 90.088 77.33 89.551 77.571 89.166 78.052 C 88.782 78.534 88.59 79.217 88.59 80.101 C 88.59 80.973 88.738 81.636 89.036 82.091 C 89.333 82.542 89.809 82.768 90.464 82.768 C 90.814 82.768 91.168 82.691 91.526 82.538 C 91.885 82.38 92.222 82.177 92.529 81.933 Z M 107.177 83.739 L 101.003 83.739 L 101.003 73.961 L 102.301 73.961 L 102.301 82.584 L 107.177 82.584 Z M 114.616 80.075 C 114.616 81.27 114.31 82.214 113.698 82.906 C 113.086 83.597 112.267 83.943 111.24 83.943 C 110.205 83.943 109.381 83.597 108.769 82.906 C 108.162 82.214 107.859 81.27 107.859 80.075 C 107.859 78.88 108.162 77.936 108.769 77.245 C 109.381 76.549 110.205 76.201 111.24 76.201 C 112.267 76.201 113.086 76.549 113.698 77.245 C 114.31 77.936 114.616 78.88 114.616 80.075 Z M 113.344 80.075 C 113.344 79.125 113.158 78.42 112.787 77.96 C 112.415 77.496 111.9 77.264 111.24 77.264 C 110.572 77.264 110.052 77.496 109.68 77.96 C 109.313 78.42 109.13 79.125 109.13 80.075 C 109.13 80.994 109.316 81.693 109.687 82.17 C 110.058 82.643 110.576 82.879 111.24 82.879 C 111.896 82.879 112.409 82.645 112.78 82.176 C 113.156 81.704 113.344 81.003 113.344 80.075 Z M 122.651 83.739 L 121.419 83.739 L 121.419 79.563 C 121.419 79.226 121.399 78.911 121.359 78.617 C 121.32 78.319 121.248 78.087 121.143 77.921 C 121.034 77.737 120.869 77.595 120.672 77.514 C 120.466 77.422 120.199 77.376 119.872 77.376 C 119.535 77.376 119.184 77.459 118.817 77.625 C 118.45 77.792 118.098 78.004 117.761 78.263 L 117.761 83.739 L 116.529 83.739 L 116.529 76.404 L 117.761 76.404 L 117.761 77.219 C 118.146 76.899 118.544 76.649 118.954 76.47 C 119.353 76.293 119.783 76.201 120.219 76.201 C 121.01 76.201 121.613 76.439 122.028 76.916 C 122.443 77.393 122.651 78.081 122.651 78.978 Z M 130.961 82.906 C 130.961 84.149 130.679 85.062 130.116 85.644 C 129.552 86.226 128.685 86.518 127.514 86.518 C 127.125 86.518 126.745 86.489 126.373 86.432 C 126.006 86.379 125.643 86.303 125.286 86.202 L 125.286 84.941 L 125.351 84.941 C 125.552 85.02 125.871 85.116 126.308 85.23 C 126.745 85.348 127.181 85.408 127.619 85.408 C 128.038 85.408 128.385 85.357 128.66 85.257 C 128.936 85.156 129.15 85.016 129.303 84.836 C 129.456 84.665 129.565 84.46 129.631 84.219 C 129.699 83.955 129.732 83.684 129.729 83.411 L 129.729 82.741 C 129.358 83.039 129.001 83.262 128.66 83.411 C 128.324 83.556 127.894 83.628 127.369 83.628 C 126.496 83.628 125.801 83.313 125.286 82.682 C 124.774 82.047 124.518 81.154 124.518 80.003 C 124.518 79.373 124.606 78.83 124.781 78.374 C 124.96 77.915 125.202 77.518 125.508 77.185 C 125.797 76.872 126.15 76.625 126.544 76.463 C 126.95 76.288 127.354 76.201 127.756 76.201 C 128.18 76.201 128.534 76.244 128.818 76.332 C 129.106 76.415 129.41 76.544 129.729 76.719 L 129.808 76.404 L 130.961 76.404 Z M 129.729 81.723 L 129.729 77.724 C 129.401 77.575 129.095 77.47 128.811 77.409 C 128.537 77.344 128.255 77.311 127.973 77.31 C 127.295 77.31 126.762 77.538 126.373 77.993 C 125.984 78.449 125.79 79.11 125.79 79.977 C 125.79 80.799 125.934 81.424 126.223 81.848 C 126.511 82.273 126.989 82.485 127.658 82.485 C 128.016 82.485 128.374 82.417 128.733 82.281 C 129.09 82.144 129.425 81.956 129.729 81.723 Z M 139.514 80.2 L 134.12 80.2 C 134.12 80.651 134.188 81.045 134.323 81.382 C 134.459 81.714 134.644 81.988 134.88 82.203 C 135.107 82.413 135.376 82.571 135.686 82.676 C 136.001 82.781 136.346 82.833 136.722 82.833 C 137.22 82.833 137.72 82.735 138.223 82.538 C 138.73 82.336 139.09 82.139 139.304 81.947 L 139.37 81.947 L 139.37 83.293 C 138.955 83.468 138.531 83.615 138.098 83.733 C 137.654 83.853 137.195 83.912 136.735 83.91 C 135.521 83.91 134.572 83.582 133.891 82.925 C 133.209 82.264 132.868 81.327 132.868 80.114 C 132.868 78.915 133.194 77.963 133.845 77.258 C 134.5 76.553 135.361 76.201 136.427 76.201 C 137.414 76.201 138.175 76.489 138.708 77.067 C 139.245 77.645 139.514 78.466 139.514 79.53 Z M 138.315 79.254 C 138.31 78.606 138.146 78.105 137.823 77.75 C 137.504 77.396 137.017 77.219 136.362 77.219 C 135.702 77.219 135.175 77.413 134.782 77.803 C 134.393 78.192 134.172 78.676 134.12 79.254 Z M 147.713 76.404 L 144.751 83.739 L 143.512 83.739 L 140.569 76.404 L 141.906 76.404 L 144.174 82.242 L 146.422 76.404 Z M 150.649 75.176 L 149.26 75.176 L 149.26 73.895 L 150.649 73.895 Z M 150.571 83.739 L 149.338 83.739 L 149.338 76.404 L 150.571 76.404 Z M 156.81 83.674 C 156.578 83.735 156.325 83.786 156.049 83.825 C 155.779 83.864 155.536 83.884 155.322 83.884 C 154.575 83.884 154.007 83.683 153.618 83.28 C 153.229 82.877 153.035 82.231 153.035 81.342 L 153.035 77.442 L 152.202 77.442 L 152.202 76.404 L 153.035 76.404 L 153.035 74.296 L 154.267 74.296 L 154.267 76.404 L 156.81 76.404 L 156.81 77.442 L 154.267 77.442 L 154.267 80.784 C 154.267 81.17 154.276 81.472 154.293 81.69 C 154.31 81.905 154.372 82.107 154.477 82.295 C 154.573 82.47 154.704 82.599 154.87 82.682 C 155.04 82.761 155.298 82.8 155.643 82.8 C 155.844 82.8 156.054 82.772 156.272 82.715 C 156.491 82.654 156.648 82.603 156.745 82.564 L 156.81 82.564 Z M 164.57 76.404 L 160.296 86.445 L 158.979 86.445 L 160.343 83.385 L 157.426 76.404 L 158.763 76.404 L 161.011 81.842 L 163.279 76.404 Z M 179.69 83.739 L 178.392 83.739 L 178.392 75.314 L 175.679 81.047 L 174.905 81.047 L 172.211 75.314 L 172.211 83.739 L 170.999 83.739 L 170.999 73.961 L 172.769 73.961 L 175.371 79.405 L 177.887 73.961 L 179.69 73.961 Z M 187.902 83.739 L 186.676 83.739 L 186.676 82.958 C 186.567 83.032 186.418 83.138 186.23 83.273 C 186.062 83.396 185.882 83.501 185.693 83.589 C 185.467 83.696 185.229 83.78 184.985 83.838 C 184.719 83.908 184.406 83.943 184.048 83.943 C 183.388 83.943 182.829 83.724 182.37 83.286 C 181.912 82.848 181.682 82.29 181.682 81.612 C 181.682 81.056 181.8 80.607 182.036 80.266 C 182.276 79.92 182.617 79.648 183.058 79.451 C 183.504 79.254 184.039 79.121 184.664 79.051 C 185.333 78.977 186.004 78.924 186.676 78.893 L 186.676 78.703 C 186.676 78.422 186.626 78.19 186.526 78.007 C 186.431 77.824 186.285 77.674 186.106 77.573 C 185.931 77.472 185.722 77.404 185.477 77.369 C 185.223 77.334 184.966 77.316 184.71 77.317 C 184.387 77.317 184.026 77.361 183.629 77.448 C 183.231 77.531 182.82 77.654 182.397 77.816 L 182.331 77.816 L 182.331 76.562 C 182.571 76.496 182.919 76.424 183.373 76.345 C 183.817 76.267 184.266 76.228 184.717 76.227 C 185.232 76.227 185.68 76.27 186.06 76.358 C 186.445 76.441 186.776 76.586 187.056 76.792 C 187.331 76.992 187.548 77.262 187.685 77.573 C 187.83 77.893 187.902 78.289 187.902 78.761 Z M 186.676 81.933 L 186.676 79.891 C 186.3 79.913 185.857 79.946 185.346 79.99 C 184.839 80.033 184.437 80.097 184.14 80.18 C 183.786 80.281 183.5 80.438 183.281 80.653 C 183.063 80.863 182.954 81.154 182.954 81.527 C 182.954 81.947 183.08 82.264 183.334 82.479 C 183.587 82.689 183.974 82.794 184.494 82.794 C 184.926 82.794 185.322 82.711 185.68 82.544 C 186.038 82.373 186.37 82.17 186.676 81.933 Z M 196.396 83.739 L 195.163 83.739 L 195.163 79.563 C 195.163 79.226 195.144 78.911 195.105 78.617 C 195.065 78.319 194.993 78.087 194.888 77.921 C 194.779 77.737 194.614 77.595 194.416 77.514 C 194.211 77.422 193.945 77.376 193.617 77.376 C 193.281 77.376 192.929 77.459 192.562 77.625 C 192.195 77.792 191.843 78.004 191.506 78.263 L 191.506 83.739 L 190.274 83.739 L 190.274 76.404 L 191.506 76.404 L 191.506 77.219 C 191.891 76.899 192.289 76.649 192.699 76.47 C 193.098 76.293 193.528 76.201 193.964 76.201 C 194.755 76.201 195.358 76.439 195.773 76.916 C 196.188 77.393 196.396 78.081 196.396 78.978 Z M 204.457 83.739 L 203.232 83.739 L 203.232 82.958 C 203.122 83.032 202.974 83.138 202.786 83.273 C 202.617 83.396 202.437 83.501 202.248 83.589 C 202.022 83.696 201.785 83.78 201.54 83.838 C 201.274 83.908 200.962 83.943 200.603 83.943 C 199.944 83.943 199.384 83.724 198.926 83.286 C 198.467 82.848 198.237 82.29 198.237 81.612 C 198.237 81.056 198.356 80.607 198.591 80.266 C 198.832 79.92 199.173 79.648 199.614 79.451 C 200.059 79.254 200.595 79.121 201.22 79.051 C 201.888 78.977 202.559 78.924 203.232 78.893 L 203.232 78.703 C 203.232 78.422 203.181 78.19 203.081 78.007 C 202.986 77.824 202.84 77.673 202.661 77.573 C 202.487 77.472 202.277 77.404 202.032 77.369 C 201.778 77.334 201.522 77.316 201.265 77.317 C 200.942 77.317 200.582 77.361 200.184 77.448 C 199.786 77.531 199.376 77.654 198.952 77.816 L 198.886 77.816 L 198.886 76.562 C 199.126 76.496 199.474 76.424 199.928 76.345 C 200.372 76.267 200.822 76.228 201.272 76.227 C 201.787 76.227 202.235 76.27 202.615 76.358 C 203 76.441 203.332 76.586 203.612 76.792 C 203.886 76.992 204.103 77.262 204.241 77.573 C 204.385 77.893 204.457 78.289 204.457 78.761 Z M 203.232 81.933 L 203.232 79.891 C 202.856 79.913 202.412 79.946 201.901 79.99 C 201.394 80.033 200.992 80.097 200.695 80.18 C 200.341 80.281 200.055 80.438 199.837 80.653 C 199.618 80.863 199.509 81.154 199.509 81.527 C 199.509 81.947 199.636 82.264 199.889 82.479 C 200.142 82.689 200.529 82.794 201.049 82.794 C 201.482 82.794 201.877 82.711 202.235 82.544 C 202.594 82.373 202.925 82.17 203.232 81.933 Z M 212.767 82.906 C 212.767 84.149 212.486 85.062 211.922 85.644 C 211.359 86.226 210.491 86.518 209.32 86.518 C 208.931 86.518 208.551 86.489 208.179 86.432 C 207.812 86.379 207.449 86.302 207.092 86.202 L 207.092 84.941 L 207.157 84.941 C 207.358 85.02 207.677 85.116 208.114 85.23 C 208.541 85.347 208.982 85.407 209.425 85.408 C 209.844 85.408 210.192 85.357 210.467 85.257 C 210.742 85.156 210.956 85.016 211.109 84.836 C 211.262 84.665 211.372 84.46 211.437 84.219 C 211.505 83.955 211.538 83.684 211.535 83.411 L 211.535 82.741 C 211.164 83.039 210.808 83.262 210.467 83.411 C 210.131 83.556 209.7 83.628 209.176 83.628 C 208.302 83.628 207.607 83.313 207.092 82.682 C 206.581 82.047 206.325 81.154 206.325 80.003 C 206.325 79.373 206.412 78.83 206.587 78.374 C 206.766 77.915 207.009 77.518 207.315 77.185 C 207.603 76.872 207.956 76.625 208.35 76.463 C 208.757 76.288 209.161 76.201 209.562 76.201 C 209.987 76.201 210.341 76.244 210.624 76.332 C 210.913 76.415 211.216 76.544 211.535 76.719 L 211.614 76.404 L 212.767 76.404 Z M 211.535 81.723 L 211.535 77.724 C 211.208 77.575 210.902 77.47 210.618 77.409 C 210.343 77.344 210.061 77.31 209.779 77.31 C 209.101 77.31 208.569 77.538 208.179 77.993 C 207.791 78.449 207.596 79.11 207.596 79.977 C 207.596 80.799 207.741 81.424 208.029 81.848 C 208.317 82.273 208.796 82.485 209.464 82.485 C 209.822 82.485 210.181 82.417 210.539 82.281 C 210.896 82.144 211.232 81.956 211.535 81.723 Z M 221.321 80.2 L 215.926 80.2 C 215.926 80.651 215.994 81.045 216.13 81.382 C 216.265 81.714 216.451 81.988 216.687 82.203 C 216.914 82.413 217.183 82.571 217.493 82.676 C 217.808 82.781 218.153 82.833 218.528 82.833 C 219.027 82.833 219.527 82.735 220.029 82.538 C 220.536 82.336 220.896 82.139 221.111 81.947 L 221.176 81.947 L 221.176 83.293 C 220.761 83.468 220.337 83.615 219.905 83.733 C 219.46 83.853 219.002 83.912 218.542 83.91 C 217.327 83.91 216.379 83.582 215.697 82.925 C 215.015 82.264 214.675 81.327 214.675 80.114 C 214.675 78.915 215 77.963 215.651 77.258 C 216.307 76.553 217.168 76.201 218.233 76.201 C 219.221 76.201 219.981 76.489 220.514 77.067 C 221.052 77.645 221.321 78.466 221.321 79.53 Z M 220.121 79.254 C 220.117 78.606 219.953 78.105 219.629 77.75 C 219.311 77.396 218.824 77.219 218.168 77.219 C 217.508 77.219 216.982 77.413 216.588 77.803 C 216.199 78.192 215.979 78.676 215.926 79.254 Z M 233.871 83.739 L 232.639 83.739 L 232.639 79.563 C 232.639 79.248 232.624 78.943 232.593 78.65 C 232.567 78.357 232.508 78.123 232.416 77.947 C 232.32 77.763 232.169 77.614 231.983 77.52 C 231.796 77.424 231.525 77.376 231.171 77.376 C 230.826 77.376 230.481 77.464 230.135 77.639 C 229.79 77.81 229.445 78.028 229.1 78.295 C 229.131 78.544 229.146 78.794 229.146 79.044 L 229.146 83.739 L 227.913 83.739 L 227.913 79.563 C 227.913 79.239 227.898 78.933 227.868 78.643 C 227.842 78.35 227.783 78.116 227.691 77.941 C 227.596 77.757 227.444 77.61 227.258 77.52 C 227.07 77.424 226.799 77.376 226.445 77.376 C 226.109 77.376 225.77 77.459 225.43 77.625 C 225.093 77.792 224.757 78.004 224.42 78.263 L 224.42 83.739 L 223.188 83.739 L 223.188 76.404 L 224.42 76.404 L 224.42 77.219 C 224.805 76.899 225.187 76.649 225.567 76.47 C 225.951 76.29 226.37 76.198 226.793 76.201 C 227.291 76.201 227.713 76.306 228.058 76.516 C 228.401 76.719 228.674 77.024 228.838 77.389 C 229.336 76.969 229.79 76.667 230.201 76.483 C 230.614 76.294 231.064 76.198 231.518 76.201 C 232.322 76.201 232.914 76.446 233.295 76.936 C 233.679 77.422 233.871 78.103 233.871 78.978 Z M 242.372 80.2 L 236.978 80.2 C 236.978 80.651 237.045 81.045 237.181 81.382 C 237.316 81.714 237.502 81.988 237.738 82.203 C 237.965 82.413 238.234 82.571 238.544 82.676 C 238.859 82.781 239.204 82.833 239.58 82.833 C 240.078 82.833 240.578 82.735 241.081 82.538 C 241.587 82.336 241.948 82.139 242.162 81.947 L 242.227 81.947 L 242.227 83.293 C 241.812 83.468 241.388 83.615 240.956 83.733 C 240.511 83.853 240.053 83.912 239.593 83.91 C 238.378 83.91 237.43 83.582 236.748 82.925 C 236.067 82.264 235.726 81.327 235.726 80.114 C 235.726 78.915 236.051 77.963 236.702 77.258 C 237.358 76.553 238.219 76.201 239.285 76.201 C 240.272 76.201 241.032 76.489 241.565 77.067 C 242.103 77.645 242.372 78.466 242.372 79.53 Z M 241.172 79.254 C 241.168 78.606 241.004 78.105 240.681 77.75 C 240.362 77.396 239.875 77.219 239.219 77.219 C 238.56 77.219 238.033 77.413 237.64 77.803 C 237.251 78.192 237.03 78.676 236.978 79.254 Z M 250.361 83.739 L 249.129 83.739 L 249.129 79.563 C 249.129 79.226 249.109 78.911 249.07 78.617 C 249.03 78.319 248.958 78.087 248.853 77.921 C 248.745 77.737 248.579 77.595 248.382 77.514 C 248.176 77.422 247.91 77.376 247.582 77.376 C 247.246 77.376 246.894 77.459 246.527 77.625 C 246.16 77.792 245.808 78.004 245.472 78.263 L 245.472 83.739 L 244.239 83.739 L 244.239 76.404 L 245.472 76.404 L 245.472 77.219 C 245.856 76.899 246.254 76.649 246.664 76.47 C 247.063 76.293 247.494 76.201 247.929 76.201 C 248.72 76.201 249.323 76.439 249.738 76.916 C 250.153 77.393 250.361 78.081 250.361 78.978 Z M 256.535 83.674 C 256.303 83.735 256.05 83.786 255.774 83.825 C 255.503 83.864 255.261 83.884 255.047 83.884 C 254.3 83.884 253.732 83.683 253.343 83.28 C 252.954 82.877 252.76 82.231 252.76 81.342 L 252.76 77.442 L 251.927 77.442 L 251.927 76.404 L 252.76 76.404 L 252.76 74.296 L 253.992 74.296 L 253.992 76.404 L 256.535 76.404 L 256.535 77.442 L 253.992 77.442 L 253.992 80.784 C 253.992 81.17 254.001 81.472 254.018 81.69 C 254.035 81.905 254.097 82.107 254.201 82.295 C 254.298 82.47 254.429 82.599 254.595 82.682 C 254.765 82.761 255.023 82.8 255.368 82.8 C 255.569 82.8 255.779 82.772 255.997 82.715 C 256.216 82.654 256.373 82.603 256.469 82.564 L 256.535 82.564 Z\" fill=\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)) /* {&quot;name&quot;:&quot;Middle grey&quot;} */\"></path></svg>',svgContentId:12368386667,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vglwr7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fh23ym\",\"data-framer-name\":\"Capa_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:62,intrinsicWidth:342,svg:'<svg width=\"342\" height=\"62\" viewBox=\"0 0 342 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_8340_188)\">\\n<path d=\"M18.0078 28.8649L38.2698 32.3521L32.3598 41.4633L41.0054 34.4541C42.0203 42.9389 43.9446 57.7333 43.9446 57.7333C43.9446 57.7333 45.869 42.9389 46.8838 34.4541L55.5295 41.4633L49.6194 32.3521L69.8814 28.8649M69.8814 28.8649L49.6194 25.3777L55.5295 16.2665L46.8838 23.2757C45.8655 14.7944 43.9446 0 43.9446 0C43.9446 0 42.0203 14.7944 41.0054 23.2757L32.3598 16.2665L38.2698 25.3777L18.0078 28.8649\" fill=\"#6F6F6E\"/>\\n<path d=\"M1.45732 24.8975L3.66262 31.2628L5.92059 24.8975H6.70719L8.86684 31.2628L11.2582 24.8975H12.4733L9.05295 32.9507H8.2523L6.22259 26.9821L3.90492 32.9507H3.06213L0 24.8975H1.45732Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M274.122 50.7724C274.108 50.8768 274.076 50.943 274.024 50.9708C273.996 50.9847 273.947 51.0056 273.873 51.0404C273.799 51.0752 273.75 51.0891 273.722 51.0891C273.708 51.0891 273.676 51.0787 273.62 51.0578C273.567 51.0369 273.508 51.016 273.441 50.9882C273.374 50.9604 273.311 50.936 273.251 50.9082C273.192 50.8838 273.146 50.8629 273.121 50.849C272.735 50.6785 272.25 50.5253 271.671 50.3931C271.092 50.2608 270.474 50.1947 269.82 50.1947C269.234 50.1947 268.651 50.2887 268.068 50.4731C267.489 50.6576 266.965 50.9534 266.498 51.3571C266.031 51.7608 265.656 52.2898 265.368 52.9441C265.08 53.5984 264.936 54.3953 264.936 55.335C264.936 56.2746 265.076 57.0438 265.357 57.7259C265.638 58.408 266.01 58.9718 266.477 59.4208C266.944 59.8697 267.478 60.2073 268.079 60.43C268.679 60.6562 269.294 60.7676 269.919 60.7676C270.491 60.7676 271.092 60.698 271.72 60.5588C272.349 60.4196 272.893 60.2316 273.36 59.995C273.508 59.9149 273.592 59.8697 273.62 59.8558C273.648 59.8419 273.666 59.8349 273.68 59.8349C273.708 59.8349 273.757 59.8593 273.831 59.9045C273.904 59.9497 273.954 59.988 273.982 60.0124C274.01 60.0402 274.013 60.1064 274.003 60.2108L273.841 61.2026C273.827 61.2966 273.806 61.3592 273.781 61.3906C273.753 61.4254 273.687 61.4532 273.581 61.481C273.314 61.575 272.83 61.6829 272.131 61.8082C271.432 61.9335 270.614 61.9961 269.68 61.9961C268.746 61.9961 267.9 61.8917 267.18 61.6794C266.46 61.4671 265.842 61.1887 265.329 60.8476C264.816 60.5031 264.388 60.1064 264.047 59.6574C263.707 59.2085 263.436 58.7526 263.236 58.2897C263.036 57.8268 262.895 57.3674 262.815 56.9115C262.734 56.4556 262.695 56.0484 262.695 55.69C262.695 54.9904 262.829 54.2457 263.096 53.4591C263.363 52.6726 263.801 51.9453 264.416 51.2771C265.031 50.6089 265.838 50.0555 266.839 49.61C267.84 49.168 269.079 48.9453 270.561 48.9453C271.562 48.9453 272.391 49.0184 273.044 49.1646C273.697 49.3107 274.073 49.4151 274.164 49.4813C274.217 49.5091 274.249 49.5509 274.256 49.61C274.263 49.6692 274.256 49.7179 274.245 49.7597L274.126 50.7724H274.122Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M283.564 49.1855L288.59 61.763H286.349L284.888 57.8165H279.603L277.981 61.763H276.039L282.005 49.1855H283.564ZM284.425 56.6262L282.385 51.1901L280.102 56.6262H284.425Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M293.514 61.7626H291.453V49.1851C291.587 49.1851 291.85 49.1851 292.243 49.1746C292.637 49.1677 293.051 49.1572 293.483 49.1433C293.915 49.1294 294.315 49.119 294.673 49.112C295.035 49.105 295.246 49.1016 295.312 49.1016C296.085 49.1016 296.826 49.1607 297.535 49.2791C298.241 49.3974 298.849 49.6828 299.358 50.1317C299.758 50.5006 300.05 50.9356 300.229 51.4298C300.408 51.924 300.499 52.4043 300.499 52.8672C300.499 53.25 300.436 53.6606 300.309 54.0957C300.183 54.5307 299.958 54.9448 299.639 55.3346C299.319 55.7244 298.887 56.062 298.346 56.3439C297.806 56.6293 297.128 56.8102 296.313 56.8903C296.074 56.9181 295.815 56.932 295.544 56.939C295.27 56.946 295 56.9494 294.733 56.9494C294.466 56.9494 294.245 56.9494 294.034 56.939C293.82 56.932 293.648 56.9286 293.514 56.9286V61.7487V61.7626ZM293.514 55.6513C293.701 55.6792 293.883 55.6966 294.055 55.7C294.227 55.707 294.477 55.7105 294.796 55.7105C295.116 55.7105 295.499 55.6896 295.906 55.6513C296.313 55.613 296.692 55.5017 297.047 55.3242C297.402 55.1467 297.697 54.8752 297.939 54.5098C298.178 54.1444 298.301 53.6328 298.301 52.9716C298.301 52.3103 298.185 51.8231 297.95 51.4646C297.714 51.1062 297.43 50.8486 297.089 50.6816C296.749 50.518 296.39 50.4206 296.018 50.3927C295.646 50.3649 295.312 50.3544 295.017 50.3544C294.87 50.3544 294.652 50.3579 294.357 50.3649C294.062 50.3718 293.785 50.3823 293.518 50.3927V55.6478L293.514 55.6513Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M304.319 49.1855V61.763H302.258V49.1855H304.319Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M318.849 49.1855V50.4941H313.627V61.7596H311.566V50.4941H306.383V49.1855H318.853H318.849Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M325.697 49.1855L330.722 61.763H328.482L327.021 57.8165H321.736L320.114 61.763H318.172L324.135 49.1855H325.697ZM326.561 56.6262L324.521 51.1901L322.238 56.6262H326.561Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M335.647 49.1851V60.4123H341.831V61.7591H333.586V49.1816H335.647V49.1851Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M150.72 15.8867V18.6535H136.456V27.3436H149.15V30.1974H136.456V40.3561H150.98V43.2969H131.961V15.8867H150.716H150.72Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M172.02 19.5622C172.079 19.7919 172.034 19.952 171.89 20.039L171.149 20.3418C171.061 20.4009 170.991 20.4288 170.931 20.4288C170.843 20.4288 170.661 20.3418 170.387 20.1712C170.109 19.9972 169.93 19.8824 169.843 19.8267C169.26 19.51 168.498 19.2002 167.553 18.8975C166.608 18.5947 165.611 18.445 164.565 18.445C163.894 18.445 163.241 18.5251 162.602 18.6817C161.962 18.8418 161.387 19.0854 160.881 19.416C160.372 19.7466 159.964 20.1712 159.659 20.6898C159.353 21.2083 159.199 21.8417 159.199 22.5934C159.199 23.2268 159.308 23.7663 159.525 24.2152C159.743 24.6607 160.101 25.0714 160.596 25.4472C161.092 25.8231 161.734 26.1885 162.521 26.5505C163.307 26.9124 164.27 27.337 165.407 27.8242C166.37 28.2558 167.325 28.7047 168.273 29.1641C169.221 29.627 170.067 30.1594 170.812 30.765C171.556 31.3705 172.153 32.091 172.606 32.9262C173.059 33.7615 173.284 34.7568 173.284 35.9087C173.284 36.9737 173.049 38.0038 172.585 38.9992C172.122 39.9945 171.437 40.8715 170.534 41.6372C169.632 42.4028 168.512 43.0153 167.177 43.4747C165.839 43.9341 164.284 44.1673 162.51 44.1673C161.811 44.1673 161.085 44.129 160.33 44.0594C159.575 43.9898 158.855 43.8958 158.17 43.7845C157.485 43.6696 156.885 43.5583 156.358 43.4434C155.835 43.3286 155.47 43.245 155.266 43.1894C154.974 43.0745 154.778 42.984 154.676 42.9144C154.574 42.8448 154.507 42.7091 154.479 42.5072L154.086 39.8901V39.5456C154.086 39.4586 154.142 39.3855 154.262 39.3298L154.915 38.9853C154.943 38.9853 154.981 38.9713 155.024 38.9435C155.066 38.9157 155.118 38.9017 155.175 38.9017C155.231 38.9017 155.378 38.9748 155.61 39.1175C155.842 39.2637 155.989 39.3611 156.045 39.4203C157.092 39.9945 158.233 40.4574 159.469 40.8019C160.705 41.1465 161.948 41.3205 163.199 41.3205C163.897 41.3205 164.596 41.2335 165.292 41.0629C165.99 40.8889 166.615 40.621 167.167 40.2625C167.718 39.9006 168.161 39.4412 168.498 38.8774C168.831 38.3136 169 37.6593 169 36.9076C169 36.215 168.859 35.6164 168.585 35.1118C168.308 34.6071 167.915 34.1582 167.409 33.7684C166.9 33.3786 166.296 33.0167 165.601 32.6861C164.902 32.352 164.133 32.0144 163.29 31.6698C162.184 31.207 161.13 30.7371 160.126 30.2638C159.122 29.7871 158.244 29.2476 157.489 28.6386C156.734 28.033 156.137 27.3265 155.701 26.5157C155.266 25.7082 155.048 24.7129 155.048 23.5261C155.048 22.3394 155.29 21.2744 155.782 20.3209C156.27 19.3673 156.962 18.5529 157.854 17.8743C158.746 17.1956 159.838 16.6701 161.134 16.2943C162.426 15.9184 163.859 15.7305 165.432 15.7305C166.131 15.7305 166.805 15.7688 167.462 15.8384C168.115 15.9114 168.705 15.988 169.228 16.075C169.751 16.162 170.187 16.256 170.538 16.3569C170.886 16.4578 171.103 16.524 171.191 16.5518C171.279 16.5796 171.374 16.6318 171.475 16.7014C171.577 16.7745 171.644 16.9242 171.672 17.1539L172.02 19.5761V19.5622Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M202.337 16.2354V19.0891H190.952V43.642H186.461V19.0891H175.164V16.2354H202.34H202.337Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M225.979 19.6946C225.947 19.9243 225.877 20.0704 225.761 20.1261C225.702 20.1539 225.593 20.2061 225.435 20.2758C225.273 20.3488 225.164 20.3836 225.108 20.3836C225.08 20.3836 225.006 20.3628 224.89 20.3175C224.775 20.2758 224.641 20.2235 224.497 20.1679C224.353 20.1087 224.213 20.053 224.083 19.9939C223.953 19.9347 223.858 19.8929 223.798 19.8651C222.956 19.4892 221.902 19.1586 220.634 18.8697C219.37 18.5809 218.025 18.4382 216.599 18.4382C215.318 18.4382 214.047 18.6401 212.782 19.0438C211.518 19.4475 210.377 20.0878 209.359 20.9683C208.34 21.8488 207.518 23.0008 206.893 24.4276C206.268 25.8545 205.956 27.5912 205.956 29.6375C205.956 31.6839 206.261 33.3614 206.872 34.8474C207.483 36.3335 208.298 37.5655 209.316 38.5434C210.335 39.5248 211.497 40.2591 212.807 40.7498C214.117 41.2406 215.451 41.4842 216.821 41.4842C218.071 41.4842 219.377 41.3345 220.747 41.0283C222.113 40.7255 223.303 40.3148 224.325 39.7963C224.645 39.6223 224.834 39.5213 224.894 39.4935C224.954 39.4656 224.996 39.4517 225.024 39.4517C225.084 39.4517 225.189 39.5039 225.35 39.6049C225.512 39.7058 225.621 39.7858 225.677 39.8415C225.733 39.9007 225.751 40.0434 225.719 40.2731L225.372 42.4343C225.343 42.6361 225.298 42.7719 225.242 42.8449C225.182 42.918 225.038 42.9841 224.806 43.0398C224.227 43.2417 223.17 43.4783 221.646 43.7533C220.118 44.0282 218.338 44.1639 216.301 44.1639C214.264 44.1639 212.421 43.9308 210.847 43.4714C209.278 43.012 207.933 42.4064 206.813 41.6547C205.692 40.9065 204.762 40.0399 204.021 39.0619C203.28 38.084 202.69 37.0887 202.255 36.0794C201.819 35.0701 201.514 34.0678 201.338 33.076C201.162 32.0806 201.078 31.1967 201.078 30.4171C201.078 28.8893 201.37 27.2675 201.953 25.5552C202.535 23.8395 203.494 22.256 204.832 20.8013C206.17 19.3465 207.929 18.1354 210.11 17.1714C212.291 16.2074 214.995 15.7236 218.225 15.7236C220.406 15.7236 222.208 15.8837 223.633 16.2004C225.059 16.5171 225.874 16.7468 226.074 16.893C226.19 16.9521 226.256 17.0461 226.27 17.1749C226.285 17.3036 226.278 17.4115 226.249 17.4985L225.986 19.705L225.979 19.6946Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M244.204 15.5845C246.325 15.5845 248.266 15.9465 250.026 16.6669C251.785 17.3873 253.299 18.3826 254.563 19.6494C255.827 20.9162 256.803 22.4023 257.484 24.1006C258.166 25.8024 258.51 27.633 258.51 29.5924C258.51 31.6666 258.138 33.5981 257.397 35.3835C256.656 37.1723 255.602 38.721 254.233 40.0296C252.867 41.3416 251.223 42.3787 249.302 43.1409C247.385 43.903 245.246 44.2859 242.89 44.2859C240.534 44.2859 238.353 43.8752 236.524 43.0539C234.691 42.2325 233.149 41.1537 231.899 39.8138C230.649 38.4739 229.711 36.953 229.086 35.2512C228.461 33.5529 228.148 31.8371 228.148 30.1075C228.148 27.9463 228.637 25.8442 229.609 23.7944C230.582 21.748 232.117 19.9766 234.209 18.4766C235.807 17.3525 237.423 16.5903 239.052 16.1866C240.681 15.7829 242.395 15.5811 244.2 15.5811L244.204 15.5845ZM243.463 18.4383C241.37 18.4383 239.652 18.8211 238.318 19.5833C236.98 20.3489 235.92 21.2921 235.133 22.4162C234.346 23.5403 233.802 24.7445 233.497 26.0252C233.191 27.3094 233.04 28.4544 233.04 29.4636C233.04 31.1341 233.307 32.7002 233.848 34.155C234.385 35.6097 235.13 36.88 236.074 37.9588C237.019 39.0412 238.146 39.8903 239.452 40.5098C240.762 41.1293 242.188 41.439 243.729 41.439C245.152 41.439 246.479 41.1571 247.698 40.5968C248.92 40.0365 249.966 39.2639 250.841 38.286C251.711 37.308 252.396 36.1387 252.888 34.7849C253.383 33.4311 253.629 31.9589 253.629 30.3754C253.629 28.8755 253.39 27.4068 252.909 25.966C252.428 24.5252 251.747 23.2514 250.858 22.1413C249.97 21.0311 248.902 20.1401 247.652 19.4615C246.402 18.7863 245.004 18.4453 243.463 18.4453V18.4383Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M267.206 16.2458V30.9427C267.206 32.0077 267.213 32.9404 267.227 33.7304C267.241 34.5239 267.28 35.2164 267.336 35.8046C267.395 36.3962 267.497 36.9217 267.641 37.3846C267.785 37.8475 267.989 38.2651 268.252 38.6375C268.632 39.1839 269.13 39.6085 269.759 39.9112C270.384 40.214 271.023 40.4368 271.676 40.5829C272.333 40.7291 272.926 40.8126 273.464 40.8405C274.001 40.8683 274.373 40.8822 274.577 40.8822C275.128 40.8822 275.725 40.8405 276.364 40.7535C277.003 40.6664 277.635 40.5098 278.26 40.2767C278.885 40.047 279.482 39.7512 280.048 39.3927C280.617 39.0308 281.087 38.5644 281.467 37.9867C282.018 37.2071 282.355 36.1561 282.467 34.8301C282.583 33.5042 282.643 31.9485 282.643 30.1597V16.2388H286.221L286.091 30.1144C286.091 31.4996 286.053 32.7316 285.982 33.8104C285.909 34.8928 285.772 35.8568 285.568 36.706C285.364 37.5586 285.094 38.3208 284.76 38.9959C284.427 39.6746 283.981 40.2871 283.429 40.8335C282.383 41.8706 281.006 42.685 279.307 43.2766C277.607 43.8682 275.634 44.1641 273.397 44.1641C271.883 44.1641 270.605 44.0423 269.559 43.7952C268.512 43.5515 267.641 43.2557 266.942 42.9077C266.244 42.5632 265.692 42.1803 265.285 41.7627C264.878 41.3451 264.558 40.9623 264.326 40.6177C263.979 40.1583 263.701 39.6676 263.498 39.1491C263.294 38.6305 263.132 38.018 263.016 37.3115C262.901 36.605 262.82 35.7559 262.778 34.7605C262.736 33.7652 262.711 32.5332 262.711 31.0645V16.2354H267.202L267.206 16.2458Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M296.366 43.6421H291.875V16.2354C292.138 16.2354 292.595 16.2284 293.248 16.2145C293.901 16.2006 294.593 16.1867 295.32 16.1728C296.047 16.1588 296.728 16.1449 297.371 16.131C298.01 16.1171 298.445 16.1101 298.681 16.1101C298.94 16.1101 299.239 16.1032 299.572 16.0892C299.906 16.0753 300.233 16.0684 300.552 16.0684C302.473 16.0684 304.166 16.1832 305.634 16.4129C307.101 16.6426 308.345 17.2203 309.363 18.1426C310.265 18.9187 310.869 19.8131 311.171 20.8223C311.477 21.8316 311.628 22.7225 311.628 23.5021C311.628 24.8281 311.375 25.9452 310.866 26.8535C310.357 27.7619 309.767 28.5032 309.1 29.0809C308.429 29.6586 307.748 30.0971 307.049 30.3999C306.35 30.7027 305.827 30.9115 305.479 31.0263C306.701 33.3615 307.877 35.2861 309.012 36.7965C310.146 38.3104 311.091 39.4415 311.849 40.1897C312.109 40.4507 312.537 40.7674 313.134 41.1433C313.731 41.5192 314.581 41.7628 315.687 41.8776L315.817 42.0516L315.382 43.4785C315.322 43.7082 315.083 43.8544 314.662 43.9101C314.241 43.9692 313.886 43.9971 313.594 43.9971C312.78 43.9971 311.856 43.8439 310.824 43.5412C309.791 43.2384 308.927 42.7999 308.229 42.2222C307.561 41.7036 306.87 40.9902 306.157 40.0818C305.444 39.1735 304.759 38.2234 304.106 37.2281C303.453 36.2327 302.856 35.2548 302.319 34.2873C301.781 33.3233 301.339 32.5228 300.988 31.8894C300.756 31.9173 300.507 31.9486 300.247 31.9764C299.983 32.0043 299.678 32.0286 299.33 32.0425C298.983 32.0565 298.558 32.0634 298.066 32.0634C297.599 32.0634 297.034 32.0495 296.366 32.0217V43.6491V43.6421ZM296.366 29.4185C296.686 29.4463 297.093 29.4707 297.588 29.4846C298.084 29.4985 298.621 29.5055 299.204 29.5055C299.931 29.5055 300.745 29.4707 301.648 29.3976C302.55 29.3245 303.376 29.1018 304.134 28.7259C304.889 28.3535 305.528 27.7897 306.051 27.0415C306.575 26.2932 306.838 25.2422 306.838 23.8849C306.838 22.5276 306.599 21.5949 306.118 20.9024C305.637 20.2098 305.051 19.7087 304.352 19.3885C303.653 19.0718 302.898 18.8839 302.083 18.8247C301.269 18.7655 300.528 18.7377 299.857 18.7377H298.593C297.982 18.7377 297.241 18.7655 296.37 18.8247V29.415L296.366 29.4185Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M342.001 16.2354V19.0891H330.616V43.642H326.125V19.0891H314.828V16.2354H342.005H342.001Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M77.3708 3.7793L88.1164 35.1708L99.3606 3.7793H103.048L113.667 35.2335L125.224 3.7793H131.095L114.538 43.0326H110.415L100.481 13.8093L89.4859 43.0326H85.1736L70.625 3.7793H77.3708Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M70.5312 55.123H258.484V56.1671H70.5312V55.123Z\" fill=\"#6F6F6E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_8340_188\">\\n<rect width=\"342\" height=\"62\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-59l3hl\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ml7bjn\",\"data-framer-name\":\"Capa_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:90,intrinsicWidth:194,svg:'<svg width=\"194\" height=\"90\" viewBox=\"0 0 194 90\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_8340_175)\">\\n<path d=\"M100.569 30.7003C104.409 30.7003 107.529 27.5803 107.529 23.7403C107.529 19.9003 104.409 16.7803 100.569 16.7803C96.7294 16.7803 93.6094 19.9003 93.6094 23.7403C93.6094 27.5803 96.7294 30.7003 100.569 30.7003Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M192.7 0H0.38C0.17 0 0 0.17 0 0.38V89.15C0 89.36 0.17 89.53 0.38 89.53H192.7C192.91 89.53 193.08 89.36 193.08 89.15V0.38C193.08 0.17 192.91 0 192.7 0ZM164.74 13.43C166.27 12.42 168.32 11.84 170.14 11.84C174.5 11.84 177.42 14.21 178.43 15.16C178.63 15.36 178.72 15.65 178.63 15.91L177.69 18.93C177.53 19.48 176.88 19.65 176.45 19.26C175.31 18.15 173.07 16.5 170.14 16.5C168.64 16.5 166.17 17.25 166.17 18.84C166.17 20.43 168.87 21.02 171.6 21.77C175.21 22.81 179.14 24.44 179.14 28.47C179.14 32.96 175.14 35.66 170.46 35.66C165.45 35.66 162.49 32.9 161.62 31.92C161.46 31.73 161.39 31.47 161.49 31.2L162.43 28.14C162.59 27.62 163.28 27.46 163.67 27.85C164.81 29.05 167.15 30.91 170.47 31C172.52 31 174.21 30.25 174.21 28.76C174.21 27.27 171.87 26.52 168.55 25.57C164.84 24.53 161.43 22.84 161.43 19.03C161.43 16.75 162.6 14.84 164.75 13.44L164.74 13.43ZM139.5 12.52C139.5 12.1 139.83 11.77 140.25 11.77H144.02C144.31 11.77 144.54 11.93 144.67 12.16L151.76 25.36V12.52C151.76 12.1 152.12 11.77 152.51 11.77H155.99C156.41 11.77 156.74 12.1 156.74 12.52V34.86C156.74 35.28 156.41 35.61 155.99 35.61H152.22C151.96 35.61 151.7 35.45 151.57 35.22L144.48 22.02V34.86C144.48 35.28 144.15 35.61 143.73 35.61H140.25C139.83 35.61 139.5 35.28 139.5 34.86V12.52ZM116.15 12.55C116.15 12.13 116.48 11.8 116.9 11.8H120.38C120.8 11.8 121.13 12.12 121.13 12.55V21.23H129.1V12.55C129.1 12.13 129.43 11.8 129.85 11.8H133.33C133.72 11.8 134.08 12.12 134.08 12.55V34.89C134.08 35.31 133.72 35.64 133.33 35.64H129.85C129.43 35.64 129.1 35.31 129.1 34.89V26.21H121.13V34.89C121.13 35.31 120.81 35.64 120.38 35.64H116.9C116.48 35.64 116.15 35.31 116.15 34.89V12.55ZM100.57 11.8C107.14 11.8 112.5 17.17 112.5 23.73C112.5 30.29 107.13 35.63 100.57 35.63C94.01 35.63 88.67 30.3 88.67 23.73C88.67 17.16 94 11.8 100.57 11.8ZM68.24 29.82L71.69 28.75C71.98 28.65 72.31 28.75 72.5 29.01C73.35 30.08 74.68 30.77 76.17 30.67C78.51 30.57 80.3 28.56 80.3 26.21V12.55C80.3 12.13 80.63 11.8 81.05 11.8H84.53C84.92 11.8 85.28 12.12 85.28 12.55V26.14C85.28 31.21 81.28 35.51 76.18 35.64C72.6 35.74 69.45 33.79 67.82 30.89C67.59 30.47 67.79 29.95 68.24 29.82ZM57.51 31.1C58.75 31.1 59.76 32.11 59.76 33.35C59.76 34.59 58.75 35.63 57.51 35.63C56.27 35.63 55.23 34.62 55.23 33.35C55.23 32.08 56.24 31.1 57.51 31.1ZM35.61 15.75L36.69 12.26C36.79 11.97 37.08 11.74 37.41 11.74H51.46C51.79 11.74 52.08 11.97 52.18 12.26L53.26 15.75C53.42 16.24 53.06 16.73 52.58 16.73H46.94V34.88C46.94 35.3 46.61 35.63 46.19 35.63H42.7C42.31 35.63 41.95 35.3 41.95 34.88V16.73H36.34C35.82 16.73 35.46 16.24 35.62 15.75H35.61ZM18.01 13.37C19.54 12.36 21.59 11.77 23.42 11.77C27.79 11.77 30.72 14.15 31.73 15.09C31.93 15.29 32.02 15.58 31.93 15.84L30.98 18.87C30.82 19.42 30.17 19.59 29.74 19.2C28.6 18.09 26.35 16.43 23.42 16.43C21.92 16.43 19.44 17.18 19.44 18.78C19.44 20.38 22.15 20.96 24.88 21.71C28.5 22.75 32.44 24.38 32.44 28.42C32.44 32.92 28.43 35.62 23.74 35.62C18.72 35.62 15.76 32.85 14.88 31.87C14.72 31.67 14.65 31.41 14.75 31.15L15.7 28.09C15.86 27.57 16.55 27.41 16.94 27.8C18.08 29.01 20.43 30.86 23.75 30.96C25.8 30.96 27.5 30.21 27.5 28.71C27.5 27.21 25.15 26.46 21.83 25.52C18.11 24.48 14.69 22.78 14.69 18.97C14.69 16.69 15.86 14.77 18.01 13.36V13.37ZM188.37 84.47C188.37 84.68 188.2 84.85 187.99 84.85H5.09C4.88 84.85 4.71 84.68 4.71 84.47V47.97C4.71 47.76 4.88 47.59 5.09 47.59H188C188.21 47.59 188.38 47.76 188.38 47.97V84.47H188.37Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M22.6531 56.2795H15.3331C14.9731 56.2795 14.7031 56.5495 14.7031 56.9095V75.7895C14.7031 76.1495 14.9831 76.4195 15.3331 76.4195H18.2831C18.6131 76.4195 18.9131 76.1395 18.9131 75.7895V68.6295H22.6531C26.0631 68.6295 28.8231 65.8495 28.8231 62.4395C28.8231 59.0295 26.0731 56.2695 22.6531 56.2695V56.2795ZM22.6531 64.4195H18.9131V60.4795H22.6531C23.8631 60.4795 24.6331 61.4995 24.6331 62.4295C24.6331 63.3595 23.8631 64.4095 22.6531 64.4095V64.4195Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M40.2409 56.69C40.1609 56.44 39.9109 56.25 39.6309 56.25H36.3309C36.0509 56.25 35.8109 56.44 35.7509 56.69L29.8309 75.6C29.6909 76.01 30.0009 76.43 30.4409 76.43H33.3309C33.6109 76.43 33.8509 76.26 33.9409 75.99L34.6009 73.87H41.4009L42.0609 75.99C42.1209 76.27 42.3609 76.43 42.6409 76.43H45.5309C45.9709 76.43 46.2709 76.02 46.1409 75.6L40.2509 56.69H40.2409ZM35.8909 69.66L37.9809 63L40.0709 69.66H35.8909Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M59.8131 60.4598C61.4131 60.4598 62.8431 61.0898 63.8831 62.1098C64.2431 62.4398 64.7931 62.2998 64.9331 61.8298L65.8931 58.8298C65.9731 58.5498 65.8631 58.2798 65.6431 58.1098C63.8031 56.8198 61.5131 56.0998 59.0631 56.2698C54.1331 56.6298 50.1131 60.6198 49.7631 65.5698C49.3231 71.4598 54.0031 76.4198 59.8131 76.4198C61.9831 76.4198 63.9931 75.7298 65.6531 74.5498C65.8731 74.4098 65.9831 74.1098 65.9031 73.8598L64.9431 70.8298C64.8031 70.3898 64.2531 70.2498 63.9231 70.5498C62.7431 71.7098 61.1131 72.3398 59.3231 72.1998C56.4631 71.9498 54.1531 69.5798 53.9531 66.7198C53.7331 63.3098 56.4631 60.4398 59.8131 60.4398V60.4598Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M79.0981 65.36L84.0281 57.21C84.2781 56.8 83.9681 56.25 83.4781 56.25H80.2881C80.0681 56.25 79.8781 56.36 79.7381 56.55L74.5381 65.22V56.88C74.5381 56.52 74.2681 56.25 73.9081 56.25H70.9581C70.5981 56.25 70.3281 56.53 70.3281 56.88V75.79C70.3281 76.15 70.6081 76.42 70.9581 76.42H73.9081C74.2681 76.42 74.5381 76.14 74.5381 75.79V72.93L76.5481 69.63L79.7681 76.07C79.8781 76.29 80.0981 76.43 80.3181 76.43H83.6181C84.0881 76.43 84.3881 75.93 84.1681 75.52L79.0981 65.36Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M98.3424 56.69C98.2624 56.44 98.0124 56.25 97.7324 56.25H94.4324C94.1624 56.25 93.9124 56.44 93.8524 56.69L87.9324 75.6C87.7924 76.01 88.1024 76.43 88.5424 76.43H91.4324C91.7024 76.43 91.9524 76.26 92.0424 75.99L92.7024 73.87H99.5024L100.162 75.99C100.212 76.27 100.462 76.43 100.742 76.43H103.632C104.072 76.43 104.372 76.02 104.242 75.6L98.3524 56.69H98.3424ZM93.9924 69.66L96.0824 63L98.1724 69.66H93.9924Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M127.142 65.6895H120.482C120.202 65.6895 119.962 65.8795 119.872 66.1295L118.962 69.0795C118.822 69.4895 119.132 69.9095 119.572 69.9095H122.382C121.202 71.4495 119.242 72.4195 117.122 72.2195C114.372 71.9395 112.142 69.7695 111.832 67.0195C111.422 63.4695 114.202 60.4695 117.672 60.4695C119.272 60.4695 120.702 61.0995 121.742 62.1195C122.102 62.4495 122.652 62.3095 122.812 61.8395L123.752 58.8395C123.832 58.5595 123.722 58.2895 123.502 58.1195C121.662 56.8295 119.372 56.1095 116.922 56.2795C111.992 56.6395 107.972 60.6295 107.622 65.5795C107.182 71.4695 111.862 76.4295 117.672 76.4295C123.482 76.4295 127.772 71.9195 127.772 66.3595V66.3095C127.772 65.9795 127.472 65.6995 127.142 65.6995V65.6895Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M135.01 56.25H132.06C131.7 56.25 131.43 56.53 131.43 56.88V75.79C131.43 76.15 131.71 76.42 132.06 76.42H135.01C135.37 76.42 135.64 76.12 135.64 75.79V56.88C135.64 56.52 135.34 56.25 135.01 56.25Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M153.887 56.22H150.938C150.607 56.22 150.307 56.5 150.307 56.85V67.72L144.307 56.54C144.197 56.35 144.007 56.21 143.757 56.21H140.568C140.208 56.21 139.938 56.49 139.938 56.84V75.75C139.938 76.11 140.208 76.38 140.568 76.38H143.518C143.878 76.38 144.147 76.11 144.147 75.75V64.88L150.147 76.06C150.257 76.25 150.477 76.39 150.697 76.39H153.887C154.247 76.39 154.518 76.12 154.518 75.76V56.85C154.518 56.49 154.237 56.22 153.887 56.22Z\" fill=\"#6F6F6E\"/>\\n<path d=\"M177.76 65.6895H171.1C170.83 65.6895 170.58 65.8795 170.49 66.1295L169.58 69.0795C169.44 69.4895 169.75 69.9095 170.19 69.9095H173C171.82 71.4495 169.86 72.4195 167.74 72.2195C164.99 71.9395 162.76 69.7695 162.45 67.0195C162.04 63.4695 164.82 60.4695 168.29 60.4695C169.89 60.4695 171.32 61.0995 172.36 62.1195C172.72 62.4495 173.27 62.3095 173.43 61.8395L174.37 58.8395C174.45 58.5595 174.34 58.2895 174.12 58.1195C172.28 56.8295 169.99 56.1095 167.54 56.2795C162.61 56.6395 158.59 60.6295 158.24 65.5795C157.8 71.4695 162.48 76.4295 168.29 76.4295C174.1 76.4295 178.39 71.9195 178.39 66.3595V66.3095C178.39 65.9795 178.09 65.6995 177.76 65.6995V65.6895Z\" fill=\"#6F6F6E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_8340_175\">\\n<rect width=\"193.08\" height=\"89.53\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gs23hd\",\"data-framer-name\":\"Recent Work\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ujquq4\",\"data-framer-name\":\"TExt\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xbimqd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-16948s7\",\"data-styles-preset\":\"HgbbYrwvT\",style:{\"--framer-text-color\":\"var(--token-1feadf05-e145-4403-8b82-fc8fd6dfae92, rgb(255, 255, 255))\"},children:[\"Recent \",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Work\"})})]})}),className:\"framer-83fkm3\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"center\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18w010z-container hidden-p6fame hidden-5mqku8\",isModuleExternal:true,nodeId:\"Fnary8sr2\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:4,arrowRadius:500,arrowSize:22,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:16,height:\"100%\",id:\"Fnary8sr2\",layoutId:\"Fnary8sr2\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:4,dotsFill:\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110))\",dotsGap:11,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:0,dotsRadius:200,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:407,width:\"383px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-198qyyv-container\",inComponentSlot:true,nodeId:\"Og0Nf04l5\",rendersWithMotion:true,scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(EBCCardWebsite,{height:\"100%\",id:\"Og0Nf04l5\",layoutId:\"Og0Nf04l5\",style:{width:\"100%\"},variant:\"proWd5saf\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:407,width:\"383px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15haex9-container\",inComponentSlot:true,nodeId:\"b4wH2Pgme\",rendersWithMotion:true,scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(EBCCardWebsite,{height:\"100%\",id:\"b4wH2Pgme\",layoutId:\"b4wH2Pgme\",style:{width:\"100%\"},variant:\"yErE3OFNv\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:407,width:\"383px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-j0semj-container\",inComponentSlot:true,nodeId:\"HyEEUs6Q_\",rendersWithMotion:true,scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(EBCCardWebsite,{height:\"100%\",id:\"HyEEUs6Q_\",layoutId:\"HyEEUs6Q_\",style:{width:\"100%\"},variant:\"FBT01RzYI\",width:\"100%\"})})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-n8se8p hidden-1q8q9dv\",\"data-framer-name\":\"Cards recent work\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1svh7qg\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uf6jlo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{width:`min(max((${componentViewport?.width||\"100vw\"} - 64px) / 2, 50px), 782px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:407,width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1220px) - 176px) / 3, 1px), 1200px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{__framer__enter:animation2}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ys0dsx-container\",nodeId:\"KDkUQQqCK\",rendersWithMotion:true,scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(EBCCardWebsite,{height:\"100%\",id:\"KDkUQQqCK\",layoutId:\"KDkUQQqCK\",style:{width:\"100%\"},variant:\"proWd5saf\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nagmy0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{width:`min(max((${componentViewport?.width||\"100vw\"} - 64px) / 2, 50px), 782px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:407,width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1220px) - 176px) / 3, 1px), 1200px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{__framer__enter:animation2}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10or4fz-container\",nodeId:\"uMx6_Xy4X\",rendersWithMotion:true,scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(EBCCardWebsite,{height:\"100%\",id:\"uMx6_Xy4X\",layoutId:\"uMx6_Xy4X\",style:{width:\"100%\"},variant:\"yErE3OFNv\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p38xhs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{width:`min(max((${componentViewport?.width||\"100vw\"} - 64px) / 2, 50px), 782px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:407,width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1220px) - 176px) / 3, 1px), 1200px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{__framer__enter:animation2}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jekkkm-container\",nodeId:\"le8QpPFh4\",rendersWithMotion:true,scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(EBCCardWebsite,{height:\"100%\",id:\"le8QpPFh4\",layoutId:\"le8QpPFh4\",style:{width:\"100%\"},variant:\"FBT01RzYI\",width:\"100%\"})})})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cq6s0d\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r1schd\",\"data-framer-name\":\"SECTION WHITE\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19x8smc\",\"data-framer-name\":\"REviews\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ea6jl8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-16948s7\",\"data-styles-preset\":\"HgbbYrwvT\",style:{\"--framer-text-color\":\"var(--token-1feadf05-e145-4403-8b82-fc8fd6dfae92, rgb(255, 255, 255))\"},children:[\"Our Clients \",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Love Us\"})})]})}),className:\"framer-3wb64g\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cqmyde\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rwgt3p\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{background:{alt:\"\",fit:\"fill\",pixelHeight:3785,pixelWidth:3e3,sizes:`max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1220px), 1092px) - 72px) / 2, 1px)`,src:\"https://framerusercontent.com/images/mSW21VhiwpZMHkKms5fUizXaJT8.png\",srcSet:\"https://framerusercontent.com/images/mSW21VhiwpZMHkKms5fUizXaJT8.png?scale-down-to=1024 811w,https://framerusercontent.com/images/mSW21VhiwpZMHkKms5fUizXaJT8.png?scale-down-to=2048 1623w,https://framerusercontent.com/images/mSW21VhiwpZMHkKms5fUizXaJT8.png 3000w\"}},JYFzh1mxl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2218.6+0+0+0+0+52.8+0+0+32+0),pixelHeight:3785,pixelWidth:3e3,sizes:`calc(min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1220px), 1092px) - 32px)`,src:\"https://framerusercontent.com/images/mSW21VhiwpZMHkKms5fUizXaJT8.png\",srcSet:\"https://framerusercontent.com/images/mSW21VhiwpZMHkKms5fUizXaJT8.png?scale-down-to=1024 811w,https://framerusercontent.com/images/mSW21VhiwpZMHkKms5fUizXaJT8.png?scale-down-to=2048 1623w,https://framerusercontent.com/images/mSW21VhiwpZMHkKms5fUizXaJT8.png 3000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:3785,pixelWidth:3e3,sizes:`max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1220px), 1092px) - 24px) / 2, 1px)`,src:\"https://framerusercontent.com/images/mSW21VhiwpZMHkKms5fUizXaJT8.png\",srcSet:\"https://framerusercontent.com/images/mSW21VhiwpZMHkKms5fUizXaJT8.png?scale-down-to=1024 811w,https://framerusercontent.com/images/mSW21VhiwpZMHkKms5fUizXaJT8.png?scale-down-to=2048 1623w,https://framerusercontent.com/images/mSW21VhiwpZMHkKms5fUizXaJT8.png 3000w\"},className:\"framer-2953b8\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19d8dxh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{width:`min(max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1220px), 1092px) - 72px) / 2, 1px), 534px)`},JYFzh1mxl:{width:`min(min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1220px), 1092px) - 32px, 534px)`,y:(componentViewport?.y||0)+0+2218.6+0+0+0+0+52.8+0+0+32+451+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:299,width:`min(max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1220px), 1092px) - 24px) / 2, 1px), 534px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1i2tl26-container\",nodeId:\"LFyCxczxS\",rendersWithMotion:true,scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{variant:\"BP446IRMi\"},JYFzh1mxl:{variant:\"BP446IRMi\"}},children:/*#__PURE__*/_jsx(HubspotReview,{height:\"100%\",id:\"LFyCxczxS\",layoutId:\"LFyCxczxS\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Nvu_wJqSG\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{width:`min(max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1220px), 1092px) - 72px) / 2, 1px), 534px)`},JYFzh1mxl:{width:`min(min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1220px), 1092px) - 32px, 534px)`,y:(componentViewport?.y||0)+0+2218.6+0+0+0+0+52.8+0+0+32+451+0+315}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:299,width:`min(max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1220px), 1092px) - 24px) / 2, 1px), 534px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-f1gcr0-container\",id:\"f1gcr0\",nodeId:\"BiJSFmEBl\",rendersWithMotion:true,scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{variant:\"ULH9uaISk\"},JYFzh1mxl:{variant:\"ULH9uaISk\"}},children:/*#__PURE__*/_jsx(HubspotReview,{height:\"100%\",id:\"BiJSFmEBl\",layoutId:\"BiJSFmEBl\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"iZ05KYzaZ\",width:\"100%\"})})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-3wp8y9 hidden-p6fame hidden-5mqku8\",children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bdiifi-container hidden-p6fame\",isModuleExternal:true,nodeId:\"b1BtbN39x\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(Carousel1,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"b1BtbN39x\",layoutId:\"b1BtbN39x\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"var(--token-6f774d89-e91d-4f53-b646-6ba4e96cd0c2, rgb(212, 212, 212))\",dotsBlur:4,dotsFill:\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110))\",dotsGap:10,dotsInset:21,dotSize:10,dotsOpacity:.5,dotsPadding:11,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:657.6,intrinsicWidth:746.4,pixelHeight:822,pixelWidth:933,sizes:\"746px\",src:\"https://framerusercontent.com/images/UD6IQHwhomPU7Xy2Y1NDJinm8rs.png\",srcSet:\"https://framerusercontent.com/images/UD6IQHwhomPU7Xy2Y1NDJinm8rs.png?scale-down-to=512 512w,https://framerusercontent.com/images/UD6IQHwhomPU7Xy2Y1NDJinm8rs.png 933w\"},className:\"framer-qrg867\",\"data-framer-name\":\"Reviewmobile-09\"}),/*#__PURE__*/_jsx(Link,{href:\"https://g.co/kgs/R9PxQRE\",motionChild:true,nodeId:\"n4tBhnfLo\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:657.6,intrinsicWidth:746.4,pixelHeight:822,pixelWidth:933,sizes:\"746px\",src:\"https://framerusercontent.com/images/KQDfibi0Fz0Qo2t2css5Rx8yE.png\",srcSet:\"https://framerusercontent.com/images/KQDfibi0Fz0Qo2t2css5Rx8yE.png?scale-down-to=512 512w,https://framerusercontent.com/images/KQDfibi0Fz0Qo2t2css5Rx8yE.png 933w\"},className:\"framer-6wh7w3 framer-qwfryg\",\"data-framer-name\":\"Reviewmobile-12\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://g.co/kgs/LxqFRWJ\",motionChild:true,nodeId:\"reW0vncuF\",openInNewTab:true,scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:657.6,intrinsicWidth:746.4,pixelHeight:822,pixelWidth:933,sizes:\"745.719px\",src:\"https://framerusercontent.com/images/3niGUYE3TD9Ij5hCGxMiaDhMLSA.png\",srcSet:\"https://framerusercontent.com/images/3niGUYE3TD9Ij5hCGxMiaDhMLSA.png?scale-down-to=512 512w,https://framerusercontent.com/images/3niGUYE3TD9Ij5hCGxMiaDhMLSA.png 933w\"},className:\"framer-1e9cd98 framer-qwfryg\",\"data-framer-name\":\"Reviewmobile-11\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://g.co/kgs/vXLWyaY\",motionChild:true,nodeId:\"Qj5gFtkXS\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:657.6,intrinsicWidth:746.4,pixelHeight:822,pixelWidth:933,sizes:\"745.719px\",src:\"https://framerusercontent.com/images/fG1BmDg1yjqkrGpPq7FoithkS8.png\",srcSet:\"https://framerusercontent.com/images/fG1BmDg1yjqkrGpPq7FoithkS8.png?scale-down-to=512 512w,https://framerusercontent.com/images/fG1BmDg1yjqkrGpPq7FoithkS8.png 933w\"},className:\"framer-1r595wk framer-qwfryg\",\"data-framer-name\":\"Reviewmobile-13\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://g.co/kgs/QnmtLZy\",motionChild:true,nodeId:\"gy_IvvgQp\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:657.6,intrinsicWidth:746.4,pixelHeight:822,pixelWidth:933,sizes:\"745.719px\",src:\"https://framerusercontent.com/images/5WawdgaH1fv9q4Lhd7GRWDSkEo.png\",srcSet:\"https://framerusercontent.com/images/5WawdgaH1fv9q4Lhd7GRWDSkEo.png?scale-down-to=512 512w,https://framerusercontent.com/images/5WawdgaH1fv9q4Lhd7GRWDSkEo.png 933w\"},className:\"framer-1428roq framer-qwfryg\",\"data-framer-name\":\"Reviewmobile-14\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://g.co/kgs/P58fXQC\",motionChild:true,nodeId:\"k1CDL5O2M\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:657.6,intrinsicWidth:746.4,pixelHeight:822,pixelWidth:933,sizes:\"745.719px\",src:\"https://framerusercontent.com/images/I9lNYiGwyhtEN2VijOA70gCz3M.png\",srcSet:\"https://framerusercontent.com/images/I9lNYiGwyhtEN2VijOA70gCz3M.png?scale-down-to=512 512w,https://framerusercontent.com/images/I9lNYiGwyhtEN2VijOA70gCz3M.png 933w\"},className:\"framer-n8ugyv framer-qwfryg\",\"data-framer-name\":\"Reviewmobile-10\"})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-17kq7tr hidden-1q8q9dv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iobinp-container\",isModuleExternal:true,nodeId:\"S2UIe_Z0e\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:0,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:500,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:.5,effectsPerspective:1200,effectsRotate:0,effectsScale:.85,playOffscreen:true},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:21,overflow:true},gap:10,height:\"100%\",id:\"S2UIe_Z0e\",intervalControl:2,itemAmount:1,layoutId:\"S2UIe_Z0e\",padding:0,paddingBottom:0,paddingLeft:80,paddingPerSide:true,paddingRight:80,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(255, 255, 255, 0)\",dotsBlur:0,dotsFill:\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110))\",dotsGap:8,dotsInset:-36,dotSize:10,dotsOpacity:.6,dotsPadding:9,dotsRadius:200,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://g.co/kgs/ouNZA3k\",motionChild:true,nodeId:\"Vm8Twal_C\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:391,pixelWidth:1376,sizes:\"538px\",src:\"https://framerusercontent.com/images/iPsd7niNQ8pSlnDP3KryYwioI3M.png\",srcSet:\"https://framerusercontent.com/images/iPsd7niNQ8pSlnDP3KryYwioI3M.png?scale-down-to=512 512w,https://framerusercontent.com/images/iPsd7niNQ8pSlnDP3KryYwioI3M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iPsd7niNQ8pSlnDP3KryYwioI3M.png 1376w\"},className:\"framer-4egdzo framer-qwfryg\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://g.co/kgs/LxqFRWJ\",motionChild:true,nodeId:\"ejjQhbAvA\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:398,pixelWidth:1377,sizes:\"530px\",src:\"https://framerusercontent.com/images/bpcunDesuvZWlw1CSNyfSXxvb2M.png\",srcSet:\"https://framerusercontent.com/images/bpcunDesuvZWlw1CSNyfSXxvb2M.png?scale-down-to=512 512w,https://framerusercontent.com/images/bpcunDesuvZWlw1CSNyfSXxvb2M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bpcunDesuvZWlw1CSNyfSXxvb2M.png 1377w\"},className:\"framer-1bu3yrf framer-qwfryg\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://g.co/kgs/P58fXQC\",motionChild:true,nodeId:\"NvpamTKD5\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:406,pixelWidth:1377,sizes:\"533px\",src:\"https://framerusercontent.com/images/ffic6mkkpeQfcKD0Mjxw5ot2mw.png\",srcSet:\"https://framerusercontent.com/images/ffic6mkkpeQfcKD0Mjxw5ot2mw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ffic6mkkpeQfcKD0Mjxw5ot2mw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ffic6mkkpeQfcKD0Mjxw5ot2mw.png 1377w\"},className:\"framer-ahm6mn framer-qwfryg\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://g.co/kgs/vXLWyaY\",motionChild:true,nodeId:\"wQOQ3dreM\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:397,pixelWidth:1466,sizes:\"534px\",src:\"https://framerusercontent.com/images/91auPVA3IlHbU3UYrVB4t9earMc.png\",srcSet:\"https://framerusercontent.com/images/91auPVA3IlHbU3UYrVB4t9earMc.png?scale-down-to=512 512w,https://framerusercontent.com/images/91auPVA3IlHbU3UYrVB4t9earMc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/91auPVA3IlHbU3UYrVB4t9earMc.png 1466w\"},className:\"framer-x9kr5k framer-qwfryg\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://g.co/kgs/R9PxQRE\",motionChild:true,nodeId:\"VyTtc9Vyh\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:367,pixelWidth:1376,sizes:\"534px\",src:\"https://framerusercontent.com/images/xAfEyTaHFVgMeBxxRnMszE6gJHA.png\",srcSet:\"https://framerusercontent.com/images/xAfEyTaHFVgMeBxxRnMszE6gJHA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xAfEyTaHFVgMeBxxRnMszE6gJHA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xAfEyTaHFVgMeBxxRnMszE6gJHA.png 1376w\"},className:\"framer-1k0emx7 framer-qwfryg\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://g.co/kgs/QnmtLZy\",motionChild:true,nodeId:\"FRwjbqkD6\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:406,pixelWidth:1471,sizes:\"534px\",src:\"https://framerusercontent.com/images/Ky3wVFawCHm8bbGQbxEj9Redo.png\",srcSet:\"https://framerusercontent.com/images/Ky3wVFawCHm8bbGQbxEj9Redo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ky3wVFawCHm8bbGQbxEj9Redo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ky3wVFawCHm8bbGQbxEj9Redo.png 1471w\"},className:\"framer-19g3mw2 framer-qwfryg\"})})],startFrom:2,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:69,delay:0,mass:3.5,stiffness:178,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l5ce2o\",\"data-framer-name\":\"TExt\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kvjyqy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-16948s7\",\"data-styles-preset\":\"HgbbYrwvT\",style:{\"--framer-text-color\":\"var(--token-1feadf05-e145-4403-8b82-fc8fd6dfae92, rgb(255, 255, 255))\"},children:[\"Let's \",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Connect\"})})]})}),className:\"framer-v4ynrn\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m3z66h\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-oszqku\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o5kdxd-container\",id:elementId2,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wtt9uZHYb\",ref:ref3,scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JYFzh1mxl:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!-- Start of Meetings Embed Script -->\\n    <div class=\"meetings-iframe-container\"  style=\"width: 100%;\\n\" data-src=\"https://meetings.hubspot.com/enriquepaula/website-meeting-scheduler?embed=true\"></div>\\n    <script type=\"text/javascript\" src=\"https://static.hsappstatic.net/MeetingsEmbed/ex/MeetingsEmbedCode.js\"></script>\\n  <!-- End of Meetings Embed Script -->',id:\"wtt9uZHYb\",layoutId:\"wtt9uZHYb\",style:{width:\"100%\"},type:\"html\",url:\"https://meetings.hubspot.com/enriquepaula/website-meeting-scheduler\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JYFzh1mxl:{y:(componentViewport?.y||0)+0+5042.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:409,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bld2c9-container\",nodeId:\"bfSmq2jTJ\",scopeId:\"I9zBnJ8ts\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GvYAkJVeM:{variant:\"MmTcPYgU_\"},JYFzh1mxl:{variant:\"USfOf2A6A\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"bfSmq2jTJ\",layoutId:\"bfSmq2jTJ\",style:{width:\"100%\"},variant:\"Q1LztVs_4\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2UStg.framer-qwfryg, .framer-2UStg .framer-qwfryg { display: block; }\",\".framer-2UStg.framer-p6fame { align-content: center; align-items: center; background-color: var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, #333333); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1220px; }\",\".framer-2UStg .framer-wvwqdu-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-2UStg .framer-es3thp { align-content: center; align-items: center; background-color: var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, #333333); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2UStg .framer-3xyfhv { align-content: center; align-items: center; background-color: var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, #333333); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-2UStg .framer-qvs79y-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; z-index: 0; }\",\".framer-2UStg .framer-knccff { align-content: center; align-items: center; background-color: var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, #333333); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 40px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-2UStg .framer-kl7ptq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2UStg .framer-1ggbz8v, .framer-2UStg .framer-agyroc, .framer-2UStg .framer-ea6jl8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1220px; overflow: hidden; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-2UStg .framer-16usa08, .framer-2UStg .framer-mnn6qi, .framer-2UStg .framer-83fkm3, .framer-2UStg .framer-3wb64g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 1200px; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2UStg .framer-h7qwfl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1220px; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-2UStg .framer-1xq3ul1-container, .framer-2UStg .framer-1asf4w6-container, .framer-2UStg .framer-ns5gbn-container, .framer-2UStg .framer-ys0dsx-container, .framer-2UStg .framer-10or4fz-container, .framer-2UStg .framer-1jekkkm-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-2UStg .framer-1gofqh2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2UStg .framer-1p3j728 { align-content: center; align-items: center; background-color: #292828; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2UStg .framer-zaimfe-container { flex: 1 0 0px; height: 216px; position: relative; width: 1px; }\",\".framer-2UStg .framer-mwy8gz { height: 33px; overflow: hidden; position: relative; width: 189px; }\",\".framer-2UStg .framer-1jlr1f { flex: none; height: 33px; left: 0px; position: absolute; top: 0px; width: 189px; }\",\".framer-2UStg .framer-13o80pe { height: 48px; overflow: hidden; position: relative; width: 179px; }\",\".framer-2UStg .framer-iv499i { flex: none; height: 48px; left: 0px; position: absolute; top: 0px; width: 179px; }\",\".framer-2UStg .framer-9gtuwk { height: 54px; overflow: hidden; position: relative; width: 259px; }\",\".framer-2UStg .framer-1yz70l0 { flex: none; height: 54px; left: 0px; position: absolute; top: 0px; width: 259px; }\",\".framer-2UStg .framer-hmudt1 { gap: 10px; height: 90px; overflow: hidden; position: relative; width: 154px; }\",\".framer-2UStg .framer-knuu6p { flex: none; height: 90px; left: 0px; position: absolute; top: 0px; width: 154px; }\",\".framer-2UStg .framer-19ss37c { height: 41px; position: relative; width: 268px; }\",\".framer-2UStg .framer-jinl05 { height: 87px; position: relative; width: 276px; }\",\".framer-2UStg .framer-1vglwr7 { height: 62px; overflow: hidden; position: relative; width: 342px; }\",\".framer-2UStg .framer-fh23ym, .framer-2UStg .framer-1ml7bjn { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2UStg .framer-59l3hl { height: 90px; overflow: hidden; position: relative; width: 194px; }\",\".framer-2UStg .framer-gs23hd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 80px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-2UStg .framer-1ujquq4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 1220px; overflow: hidden; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-2UStg .framer-1xbimqd, .framer-2UStg .framer-oszqku { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2UStg .framer-18w010z-container { flex: none; height: 552px; position: relative; width: 100%; }\",\".framer-2UStg .framer-198qyyv-container, .framer-2UStg .framer-15haex9-container, .framer-2UStg .framer-j0semj-container { height: auto; position: relative; width: 383px; }\",\".framer-2UStg .framer-n8se8p { align-content: center; align-items: center; background-color: var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, #333333); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1220px; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-2UStg .framer-1svh7qg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2UStg .framer-1uf6jlo, .framer-2UStg .framer-nagmy0, .framer-2UStg .framer-1p38xhs { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2UStg .framer-1cq6s0d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2UStg .framer-r1schd { 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: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2UStg .framer-19x8smc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-2UStg .framer-cqmyde { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1220px; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-2UStg .framer-rwgt3p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1092px; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-2UStg .framer-2953b8 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: 613px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2UStg .framer-19d8dxh { 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: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2UStg .framer-1i2tl26-container, .framer-2UStg .framer-f1gcr0-container { flex: none; height: auto; max-width: 534px; position: relative; width: 100%; }\",\".framer-2UStg .framer-3wp8y9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 201px; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-2UStg .framer-bdiifi-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-2UStg .framer-qrg867 { aspect-ratio: 1.135036496350365 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: var(--framer-aspect-ratio-supported, 657px); overflow: visible; position: relative; width: 746px; }\",\".framer-2UStg .framer-6wh7w3, .framer-2UStg .framer-1e9cd98, .framer-2UStg .framer-1r595wk, .framer-2UStg .framer-1428roq, .framer-2UStg .framer-n8ugyv { aspect-ratio: 1.135036496350365 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: var(--framer-aspect-ratio-supported, 657px); overflow: visible; position: relative; text-decoration: none; width: 746px; }\",\".framer-2UStg .framer-17kq7tr { align-content: center; align-items: center; background-color: var(--token-bf248c9a-a6d5-4e66-99ea-e9a70e534220, #1c1c1c); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 64px 200px 64px 200px; position: relative; width: 100%; }\",\".framer-2UStg .framer-1iobinp-container { aspect-ratio: 4.644295302013423 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 214px); max-width: 1200px; position: relative; width: 993px; }\",\".framer-2UStg .framer-4egdzo { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 157px; position: relative; text-decoration: none; width: 538px; }\",\".framer-2UStg .framer-1bu3yrf { aspect-ratio: 3.4415584415584415 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 154px); position: relative; text-decoration: none; width: 530px; }\",\".framer-2UStg .framer-ahm6mn { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 162px; position: relative; text-decoration: none; width: 533px; }\",\".framer-2UStg .framer-x9kr5k { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 142px; position: relative; text-decoration: none; width: 534px; }\",\".framer-2UStg .framer-1k0emx7 { aspect-ratio: 3.608108108108108 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 148px); position: relative; text-decoration: none; width: 534px; }\",\".framer-2UStg .framer-19g3mw2 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 147px; position: relative; text-decoration: none; width: 534px; }\",\".framer-2UStg .framer-l5ce2o { align-content: center; align-items: center; background-color: var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, #333333); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1220px; overflow: visible; padding: 120px 0px 0px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-2UStg .framer-kvjyqy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1220px; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-2UStg .framer-v4ynrn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: 50px; max-width: 1200px; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2UStg .framer-m3z66h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-2UStg .framer-o5kdxd-container { flex: none; height: auto; position: relative; width: 1092px; }\",\".framer-2UStg .framer-bld2c9-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",...sharedStyle.css,\"@media (min-width: 830px) and (max-width: 1219px) { .framer-2UStg.framer-p6fame { width: 830px; } .framer-2UStg .framer-wvwqdu-container, .framer-2UStg .framer-qvs79y-container { order: 0; } .framer-2UStg .framer-es3thp { gap: 64px; order: 1; } .framer-2UStg .framer-knccff { order: 2; } .framer-2UStg .framer-1ggbz8v, .framer-2UStg .framer-1ujquq4, .framer-2UStg .framer-ea6jl8, .framer-2UStg .framer-kvjyqy, .framer-2UStg .framer-m3z66h { padding: 0px 24px 0px 24px; } .framer-2UStg .framer-h7qwfl { gap: 16px; padding: 0px 24px 0px 24px; } .framer-2UStg .framer-gs23hd { gap: 48px; order: 4; padding: 0px 0px 64px 0px; } .framer-2UStg .framer-n8se8p { flex-direction: row; flex-wrap: wrap; max-width: unset; padding: 0px 24px 0px 24px; } .framer-2UStg .framer-1svh7qg { align-content: unset; align-items: unset; display: grid; flex: 1 0 0px; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); width: 1px; } .framer-2UStg .framer-1uf6jlo, .framer-2UStg .framer-nagmy0, .framer-2UStg .framer-1p38xhs { align-self: start; flex: none; gap: 16px; justify-self: start; max-width: 782px; width: 100%; } .framer-2UStg .framer-1cq6s0d { order: 3; } .framer-2UStg .framer-19x8smc { gap: 16px; padding: 0px; } .framer-2UStg .framer-cqmyde { gap: 64px; } .framer-2UStg .framer-rwgt3p { padding: 48px 24px 0px 24px; } .framer-2UStg .framer-17kq7tr { padding: 64px 40px 64px 40px; } .framer-2UStg .framer-1iobinp-container { aspect-ratio: unset; height: 177px; width: 785px; } .framer-2UStg .framer-l5ce2o { max-width: unset; padding: 60px 0px 40px 0px; } .framer-2UStg .framer-o5kdxd-container { flex: 1 0 0px; width: 1px; } .framer-2UStg .framer-bld2c9-container { order: 5; }}\",\"@media (max-width: 829px) { .framer-2UStg.framer-p6fame { width: 340px; } .framer-2UStg .framer-wvwqdu-container { order: 0; } .framer-2UStg .framer-es3thp { order: 1; } .framer-2UStg .framer-knccff, .framer-2UStg .framer-18w010z-container { order: 2; } .framer-2UStg .framer-kl7ptq, .framer-2UStg .framer-1gofqh2 { gap: 32px; } .framer-2UStg .framer-1ggbz8v, .framer-2UStg .framer-agyroc, .framer-2UStg .framer-ea6jl8, .framer-2UStg .framer-kvjyqy, .framer-2UStg .framer-m3z66h { padding: 0px 16px 0px 16px; } .framer-2UStg .framer-h7qwfl { flex-direction: column; gap: 16px; padding: 0px 16px 0px 16px; } .framer-2UStg .framer-1xq3ul1-container, .framer-2UStg .framer-1asf4w6-container, .framer-2UStg .framer-ns5gbn-container { flex: none; width: 100%; } .framer-2UStg .framer-gs23hd { gap: 0px; order: 4; padding: 0px 0px 48px 0px; } .framer-2UStg .framer-1ujquq4 { order: 1; padding: 0px 24px 0px 24px; } .framer-2UStg .framer-1cq6s0d { order: 3; } .framer-2UStg .framer-19x8smc, .framer-2UStg .framer-cqmyde { gap: 0px; padding: 0px; } .framer-2UStg .framer-rwgt3p { flex-direction: column; gap: 16px; padding: 32px 16px 0px 16px; } .framer-2UStg .framer-2953b8 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 435px; width: 100%; } .framer-2UStg .framer-19d8dxh { flex: none; gap: 16px; width: 100%; } .framer-2UStg .framer-3wp8y9 { flex-direction: row; min-height: unset; } .framer-2UStg .framer-bdiifi-container { flex: 1 0 0px; width: 1px; } .framer-2UStg .framer-l5ce2o { gap: 32px; max-width: unset; padding: 40px 0px 40px 0px; } .framer-2UStg .framer-o5kdxd-container { flex: 1 0 0px; height: 619px; width: 1px; } .framer-2UStg .framer-bld2c9-container { order: 5; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5151\n * @framerIntrinsicWidth 1220\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GvYAkJVeM\":{\"layout\":[\"fixed\",\"auto\"]},\"JYFzh1mxl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"bFCjjJXP9\":{\"pattern\":\":bFCjjJXP9\",\"name\":\"rrecent-work\"},\"UA6czoIo3\":{\"pattern\":\":UA6czoIo3\",\"name\":\"contactus\"},\"wtt9uZHYb\":{\"pattern\":\":wtt9uZHYb\",\"name\":\"lets-connect\"}}\n * @framerResponsiveScreen\n */const FramerI9zBnJ8ts=withCSS(Component,css,\"framer-2UStg\");export default FramerI9zBnJ8ts;FramerI9zBnJ8ts.displayName=\"Home\";FramerI9zBnJ8ts.defaultProps={height:5151,width:1220};addFonts(FramerI9zBnJ8ts,[{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:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]},...NewMenuColorsFonts,...Variant1Fonts,...WebsitesEcommerceButtonFonts,...TickerFonts,...EBCCardWebsiteFonts,...CarouselFonts,...HubspotReviewFonts,...Carousel1Fonts,...SlideshowFonts,...EmbedFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerI9zBnJ8ts\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"5151\",\"framerIntrinsicWidth\":\"1220\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GvYAkJVeM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JYFzh1mxl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"bFCjjJXP9\\\":{\\\"pattern\\\":\\\":bFCjjJXP9\\\",\\\"name\\\":\\\"rrecent-work\\\"},\\\"UA6czoIo3\\\":{\\\"pattern\\\":\\\":UA6czoIo3\\\",\\\"name\\\":\\\"contactus\\\"},\\\"wtt9uZHYb\\\":{\\\"pattern\\\":\\\":wtt9uZHYb\\\",\\\"name\\\":\\\"lets-connect\\\"}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__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", "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", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "index", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "FeatherFonts", "getFonts", "Icon", "MotionAWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "animation1", "transition3", "animation2", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "Link", "u", "SVG", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerCVdofT00G", "withCSS", "CVdofT00G_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ObjectFitType", "SrcType", "defaultVideo", "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", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "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", "VideoFonts", "getFonts", "Video", "FeatherFonts", "Icon", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "SmartComponentScopedContainer", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transition4", "transformTemplate1", "_", "t", "transition5", "animation", "animation1", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearrtiacf", "args", "onAppearbyulnc", "onAppear1qqhxmv", "onAppearttdh6l", "onAppearm31p4t", "onAppearrsgrlx", "onAppeardrvyql", "onMouseEnter16qacuc", "onMouseLeave1750er5", "onMouseEnterox95p3", "onMouseLeaveiewo80", "onMouseEnter10locfz", "onMouseEnter1ru08y5", "onMouseEnterqmbqqn", "onMouseEnterpzf31n", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "Link", "ComponentViewportProvider", "RichText", "css", "FrameryOUsuICbg", "withCSS", "yOUsuICbg_default", "addPropertyControls", "ControlType", "addFonts", "NewMenuColorsFonts", "getFonts", "qE6IfyOIS_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "Variant1Fonts", "yOUsuICbg_default", "WebsitesEcommerceButtonFonts", "CVdofT00G_default", "TickerFonts", "Ticker", "EBCCardWebsiteFonts", "zGlNPF8AZ_default", "ContainerWithFX", "withFX", "CarouselFonts", "Carousel", "ImageWithFX", "Image2", "HubspotReviewFonts", "ZUOAaU6C2_default", "Carousel1Fonts", "SlideshowFonts", "Slideshow", "EmbedFonts", "Embed", "FooterFonts", "yCywixkJE_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "transition3", "animation3", "animation4", "animation5", "animation6", "HTMLStyle", "value", "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", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "RichText", "x", "SVG", "getLoadingLazyAtYPosition", "Link", "css", "FramerI9zBnJ8ts", "withCSS", "I9zBnJ8ts_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
