{
  "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/SoqLDBOkuDr81UBTKnnr/5AMLkS7wowkfhdqhK6gJ/IZNeEiIuQ.js", "ssg:https://framerusercontent.com/modules/snMa8aQ4d1d09H94PR7S/2aOYpw38K2uMve8UwlzZ/guYXH9pt6.js", "ssg:https://framerusercontent.com/modules/kJfV6v9kMacyB5FZ5OF7/AKkSS9LHtxdDC1mq5l07/WCP9AnFDq.js", "ssg:https://framerusercontent.com/modules/ebXzyIwdCgnOSWZyvDqd/g19lcgdhOboHYGVH0z2D/KF_glbE47.js", "ssg:https://framerusercontent.com/modules/e8q1xLD2MScUNNQjsP9O/2vuy7fqkkpG5q1VBY6KI/Ry9rzN5pd.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", "// Generated by Framer (99ae5b3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/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:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{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/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{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\"}]}];export const css=['.framer-paOdb .framer-styles-preset-1w2qsxv:not(.rich-text-wrapper), .framer-paOdb .framer-styles-preset-1w2qsxv.rich-text-wrapper h2 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-paOdb\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d275c2b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/SoqLDBOkuDr81UBTKnnr/5AMLkS7wowkfhdqhK6gJ/IZNeEiIuQ.js\";const enabledGestures={cWVLLFV_5:{pressed:true},hX3NTXuBE:{hover:true},mzHLWzi0F:{hover:true},q45u6rIuz:{hover:true},qgkXFfdBi:{pressed:true},yBYRop6AH:{pressed:true}};const cycleOrder=[\"hX3NTXuBE\",\"mzHLWzi0F\",\"q45u6rIuz\",\"yBYRop6AH\",\"qgkXFfdBi\",\"cWVLLFV_5\"];const serializationHash=\"framer-cWXWE\";const variantClassNames={cWVLLFV_5:\"framer-v-14z5x6i\",hX3NTXuBE:\"framer-v-1mkdkwi\",mzHLWzi0F:\"framer-v-dbr3pc\",q45u6rIuz:\"framer-v-7oq1t0\",qgkXFfdBi:\"framer-v-1cpjrxs\",yBYRop6AH:\"framer-v-14am8be\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"hX3NTXuBE\",\"Variant 2\":\"mzHLWzi0F\",\"Variant 3\":\"q45u6rIuz\",\"Variant 4\":\"yBYRop6AH\",\"Variant 5\":\"qgkXFfdBi\",\"Variant 6\":\"cWVLLFV_5\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,knc9svhs_:link!==null&&link!==void 0?link:props.knc9svhs_,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"hX3NTXuBE\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,knc9svhs_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hX3NTXuBE\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:knc9svhs_,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1mkdkwi\",className,classNames)} framer-10s9k8b`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"hX3NTXuBE\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-6f774d89-e91d-4f53-b646-6ba4e96cd0c2, rgb(212, 212, 212))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"cWVLLFV_5-pressed\":{backgroundColor:\"var(--token-18c755bc-86fd-4025-be51-268181b638e5, rgb(157, 250, 219))\"},\"hX3NTXuBE-hover\":{backgroundColor:\"var(--token-4f48a88d-39d8-4691-9157-38dc864a3932, rgb(255, 159, 135))\"},\"mzHLWzi0F-hover\":{backgroundColor:\"var(--token-62b7ae63-7ba4-4947-a8bf-c9e4cfbddd64, rgb(185, 168, 252))\"},\"q45u6rIuz-hover\":{backgroundColor:\"var(--token-18c755bc-86fd-4025-be51-268181b638e5, rgb(157, 250, 219))\"},\"qgkXFfdBi-pressed\":{backgroundColor:\"var(--token-62b7ae63-7ba4-4947-a8bf-c9e4cfbddd64, rgb(185, 168, 252))\"},\"yBYRop6AH-pressed\":{backgroundColor:\"var(--token-4f48a88d-39d8-4691-9157-38dc864a3932, rgb(255, 159, 135))\"}},...addPropertyOverrides({\"cWVLLFV_5-pressed\":{\"data-framer-name\":undefined},\"hX3NTXuBE-hover\":{\"data-framer-name\":undefined},\"mzHLWzi0F-hover\":{\"data-framer-name\":undefined},\"q45u6rIuz-hover\":{\"data-framer-name\":undefined},\"qgkXFfdBi-pressed\":{\"data-framer-name\":undefined},\"yBYRop6AH-pressed\":{\"data-framer-name\":undefined},cWVLLFV_5:{\"data-framer-name\":\"Variant 6\"},mzHLWzi0F:{\"data-framer-name\":\"Variant 2\"},q45u6rIuz:{\"data-framer-name\":\"Variant 3\"},qgkXFfdBi:{\"data-framer-name\":\"Variant 5\"},yBYRop6AH:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zvdmiz\",layoutDependency:layoutDependency,layoutId:\"LTu6dF2b1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8gknw1\",layoutDependency:layoutDependency,layoutId:\"Aakw1gfdf\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:75,pixelWidth:94,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AltBThZXEfbH3QY5CVnIpxzrE00.svg\"},className:\"framer-1b6hp7f\",layoutDependency:layoutDependency,layoutId:\"N1JBjUra4\",...addPropertyOverrides({cWVLLFV_5:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:103,pixelWidth:73,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6X3A7RBLgF6L49AaUMM4mWZpF8.svg\"}},mzHLWzi0F:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:88,pixelWidth:89,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ylEFuy8ky1j3KB8H7N2OHTGdk.svg\"}},q45u6rIuz:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:103,pixelWidth:73,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6X3A7RBLgF6L49AaUMM4mWZpF8.svg\"}},qgkXFfdBi:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:88,pixelWidth:89,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ylEFuy8ky1j3KB8H7N2OHTGdk.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7scxsh\",layoutDependency:layoutDependency,layoutId:\"gSWsP6f8l\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1w2qsxv\",\"data-styles-preset\":\"IZNeEiIuQ\",children:\"HubSpot Consulting\"})}),className:\"framer-5pmr6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fqS86MeXO\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cWVLLFV_5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1w2qsxv\",\"data-styles-preset\":\"IZNeEiIuQ\",children:\"Websites & E-commerce\"})})},mzHLWzi0F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1w2qsxv\",\"data-styles-preset\":\"IZNeEiIuQ\",children:\"Branding & Marketing\"})})},q45u6rIuz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-1w2qsxv\",\"data-styles-preset\":\"IZNeEiIuQ\",children:[\"Websites & \",/*#__PURE__*/_jsx(motion.br,{}),\"E-commerce\"]})})},qgkXFfdBi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1w2qsxv\",\"data-styles-preset\":\"IZNeEiIuQ\",children:\"Branding &  Marketing\"})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17wfdpk\",layoutDependency:layoutDependency,layoutId:\"dBde83eDt\",style:{backgroundColor:\"var(--token-93deb8fe-cae5-4a22-aa7f-f609e06ae4a7, rgb(231, 231, 231))\"},variants:{\"cWVLLFV_5-pressed\":{backgroundColor:\"var(--token-c486fd45-2893-4006-9543-f4b544b4fb5a, rgb(72, 212, 165))\"},\"hX3NTXuBE-hover\":{backgroundColor:\"var(--token-149f71c4-ca36-465c-a16f-ff93ec63c6c1, rgb(255, 146, 119))\"},\"mzHLWzi0F-hover\":{backgroundColor:\"var(--token-586c067e-df93-479c-9220-1c12d3f80cc3, rgb(167, 145, 255))\"},\"q45u6rIuz-hover\":{backgroundColor:\"var(--token-c486fd45-2893-4006-9543-f4b544b4fb5a, rgb(72, 212, 165))\"},\"qgkXFfdBi-pressed\":{backgroundColor:\"var(--token-586c067e-df93-479c-9220-1c12d3f80cc3, rgb(167, 145, 255))\"},\"yBYRop6AH-pressed\":{backgroundColor:\"var(--token-149f71c4-ca36-465c-a16f-ff93ec63c6c1, rgb(255, 146, 119))\"}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cWXWE.framer-10s9k8b, .framer-cWXWE .framer-10s9k8b { display: block; }\",\".framer-cWXWE.framer-1mkdkwi { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px 30px 0px 30px; position: relative; text-decoration: none; width: 219px; }\",\".framer-cWXWE .framer-zvdmiz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cWXWE .framer-8gknw1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 104px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 120px; }\",\".framer-cWXWE .framer-1b6hp7f { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 104px); overflow: hidden; position: relative; width: 104px; z-index: 1; }\",\".framer-cWXWE .framer-7scxsh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 0px 24px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-cWXWE .framer-5pmr6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 122px; word-break: break-word; word-wrap: break-word; }\",\".framer-cWXWE .framer-17wfdpk { flex: none; height: 78px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(46.15384615384618% - 78px / 2); z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cWXWE.framer-1mkdkwi, .framer-cWXWE .framer-zvdmiz, .framer-cWXWE .framer-8gknw1, .framer-cWXWE .framer-7scxsh { gap: 0px; } .framer-cWXWE.framer-1mkdkwi > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-cWXWE.framer-1mkdkwi > :first-child, .framer-cWXWE .framer-zvdmiz > :first-child, .framer-cWXWE .framer-7scxsh > :first-child { margin-top: 0px; } .framer-cWXWE.framer-1mkdkwi > :last-child, .framer-cWXWE .framer-zvdmiz > :last-child, .framer-cWXWE .framer-7scxsh > :last-child { margin-bottom: 0px; } .framer-cWXWE .framer-zvdmiz > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-cWXWE .framer-8gknw1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-cWXWE .framer-8gknw1 > :first-child { margin-left: 0px; } .framer-cWXWE .framer-8gknw1 > :last-child { margin-right: 0px; } .framer-cWXWE .framer-7scxsh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-cWXWE.framer-v-dbr3pc .framer-1b6hp7f { height: var(--framer-aspect-ratio-supported, 98px); width: 98px; }\",\".framer-cWXWE.framer-v-14am8be.framer-1mkdkwi { flex-direction: row; padding: 30px; width: 320px; }\",\".framer-cWXWE.framer-v-14am8be .framer-zvdmiz { flex: 1 0 0px; flex-direction: row; justify-content: center; width: 1px; }\",\".framer-cWXWE.framer-v-14am8be .framer-7scxsh { flex: 1 0 0px; gap: unset; justify-content: space-between; width: 1px; }\",\".framer-cWXWE.framer-v-14am8be .framer-5pmr6, .framer-cWXWE.framer-v-1cpjrxs .framer-5pmr6 { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cWXWE.framer-v-14am8be.framer-1mkdkwi, .framer-cWXWE.framer-v-14am8be .framer-zvdmiz, .framer-cWXWE.framer-v-14am8be .framer-7scxsh { gap: 0px; } .framer-cWXWE.framer-v-14am8be.framer-1mkdkwi > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-cWXWE.framer-v-14am8be.framer-1mkdkwi > :first-child, .framer-cWXWE.framer-v-14am8be .framer-zvdmiz > :first-child { margin-left: 0px; } .framer-cWXWE.framer-v-14am8be.framer-1mkdkwi > :last-child, .framer-cWXWE.framer-v-14am8be .framer-zvdmiz > :last-child { margin-right: 0px; } .framer-cWXWE.framer-v-14am8be .framer-zvdmiz > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-cWXWE.framer-v-14am8be .framer-7scxsh > *, .framer-cWXWE.framer-v-14am8be .framer-7scxsh > :first-child, .framer-cWXWE.framer-v-14am8be .framer-7scxsh > :last-child { margin: 0px; } }\",\".framer-cWXWE.framer-v-1cpjrxs.framer-1mkdkwi, .framer-cWXWE.framer-v-14z5x6i.framer-1mkdkwi { padding: 30px; width: 320px; }\",\".framer-cWXWE.framer-v-1cpjrxs .framer-zvdmiz, .framer-cWXWE.framer-v-14z5x6i .framer-zvdmiz { flex-direction: row; justify-content: center; }\",\".framer-cWXWE.framer-v-1cpjrxs .framer-8gknw1 { width: 123px; }\",\".framer-cWXWE.framer-v-1cpjrxs .framer-1b6hp7f { width: 104px; }\",\".framer-cWXWE.framer-v-1cpjrxs .framer-7scxsh, .framer-cWXWE.framer-v-14z5x6i .framer-7scxsh { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cWXWE.framer-v-1cpjrxs .framer-zvdmiz { gap: 0px; } .framer-cWXWE.framer-v-1cpjrxs .framer-zvdmiz > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-cWXWE.framer-v-1cpjrxs .framer-zvdmiz > :first-child { margin-left: 0px; } .framer-cWXWE.framer-v-1cpjrxs .framer-zvdmiz > :last-child { margin-right: 0px; } }\",\".framer-cWXWE.framer-v-14z5x6i .framer-8gknw1 { width: 95px; }\",\".framer-cWXWE.framer-v-14z5x6i .framer-5pmr6 { width: 119px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cWXWE.framer-v-14z5x6i .framer-zvdmiz { gap: 0px; } .framer-cWXWE.framer-v-14z5x6i .framer-zvdmiz > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-cWXWE.framer-v-14z5x6i .framer-zvdmiz > :first-child { margin-left: 0px; } .framer-cWXWE.framer-v-14z5x6i .framer-zvdmiz > :last-child { margin-right: 0px; } }\",\".framer-cWXWE.framer-v-1mkdkwi.hover .framer-1b6hp7f { order: 0; }\",\".framer-cWXWE.framer-v-14am8be.pressed .framer-7scxsh { gap: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cWXWE.framer-v-14am8be.pressed .framer-7scxsh { gap: 0px; } .framer-cWXWE.framer-v-14am8be.pressed .framer-7scxsh > *, .framer-cWXWE.framer-v-14am8be.pressed .framer-7scxsh > :first-child, .framer-cWXWE.framer-v-14am8be.pressed .framer-7scxsh > :last-child { margin: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 240\n * @framerIntrinsicWidth 219\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mzHLWzi0F\":{\"layout\":[\"fixed\",\"auto\"]},\"q45u6rIuz\":{\"layout\":[\"fixed\",\"auto\"]},\"yBYRop6AH\":{\"layout\":[\"fixed\",\"auto\"]},\"qgkXFfdBi\":{\"layout\":[\"fixed\",\"auto\"]},\"cWVLLFV_5\":{\"layout\":[\"fixed\",\"auto\"]},\"bWxwxufGk\":{\"layout\":[\"fixed\",\"auto\"]},\"EcsKy8OLc\":{\"layout\":[\"fixed\",\"auto\"]},\"zYdg4TgmC\":{\"layout\":[\"fixed\",\"auto\"]},\"Y7umiuhMH\":{\"layout\":[\"fixed\",\"auto\"]},\"ceuG_nuAq\":{\"layout\":[\"fixed\",\"auto\"]},\"ciqX0fY7s\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"knc9svhs_\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerguYXH9pt6=withCSS(Component,css,\"framer-cWXWE\");export default FramerguYXH9pt6;FramerguYXH9pt6.displayName=\"Hubspot card\";FramerguYXH9pt6.defaultProps={height:240,width:219};addPropertyControls(FramerguYXH9pt6,{variant:{options:[\"hX3NTXuBE\",\"mzHLWzi0F\",\"q45u6rIuz\",\"yBYRop6AH\",\"qgkXFfdBi\",\"cWVLLFV_5\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\"],title:\"Variant\",type:ControlType.Enum},knc9svhs_:{title:\"Link\",type:ControlType.Link}});addFonts(FramerguYXH9pt6,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerguYXH9pt6\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"240\",\"framerIntrinsicWidth\":\"219\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"knc9svhs_\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mzHLWzi0F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"q45u6rIuz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yBYRop6AH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qgkXFfdBi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cWVLLFV_5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bWxwxufGk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EcsKy8OLc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zYdg4TgmC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y7umiuhMH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ceuG_nuAq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ciqX0fY7s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./guYXH9pt6.map", "// Generated by Framer (b75150a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"am0RgTvO8\"];const serializationHash=\"framer-uS1By\";const variantClassNames={am0RgTvO8:\"framer-v-1ghcphx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:83,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"am0RgTvO8\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ghcphx\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"am0RgTvO8\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zaxpz0\",\"data-framer-name\":\"Hubspot logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:118,intrinsicWidth:121,layoutDependency:layoutDependency,layoutId:\"btLHMxPty\",svg:'<svg width=\"121\" height=\"118\" viewBox=\"0 0 121 118\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M109.613 26.6878L64.6687 1.14615C62.0917 -0.311738 58.9032 -0.311738 56.3408 1.14615L11.4111 26.6878C8.84867 28.1457 7.26172 30.8471 7.26172 33.7486V83.7885C7.26172 86.7186 8.86323 89.4343 11.4548 90.8779L56.3845 116.034C57.6366 116.734 59.0634 117.106 60.5047 117.106C61.9461 117.106 63.3729 116.734 64.625 116.034L109.555 90.8779C112.146 89.4343 113.748 86.7043 113.748 83.7885V33.7486C113.762 30.8471 112.175 28.1457 109.613 26.6878Z\" fill=\"white\"/>\\n<path d=\"M60.5006 112.761C59.8309 112.761 59.1757 112.589 58.5788 112.261L13.6491 87.1049C12.4407 86.4189 11.6836 85.1611 11.6836 83.789V33.749C11.6836 32.3912 12.4261 31.1334 13.62 30.4473L58.5497 4.90566C59.7581 4.2196 61.2431 4.2196 62.4515 4.90566L107.381 30.4473C108.575 31.1334 109.318 32.3912 109.318 33.749V83.789C109.318 85.1611 108.575 86.4332 107.352 87.1049L62.4224 112.261C61.8401 112.589 61.1703 112.761 60.5006 112.761ZM19.4582 81.5735L60.5006 104.542L101.543 81.5735V35.9501L60.5006 12.6239L19.4582 35.9501V81.5735Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M117.615 73.6543H3.12136C1.47617 73.6543 0.136719 72.3393 0.136719 70.7242V45.497C0.136719 43.8819 1.47617 42.5669 3.12136 42.5669H117.615C119.26 42.5669 120.6 43.8819 120.6 45.497V70.7242C120.6 72.3393 119.26 73.6543 117.615 73.6543Z\" fill=\"white\"/>\\n<path d=\"M115.434 69.8385H5.45381C4.90056 69.8385 4.44922 69.3955 4.44922 68.8523V47.3842C4.44922 46.841 4.90056 46.3979 5.45381 46.3979H115.434C115.987 46.3979 116.439 46.841 116.439 47.3842V68.838C116.439 69.3955 115.987 69.8385 115.434 69.8385Z\" fill=\"#FF7A59\"/>\\n<path d=\"M36.1133 52.8862H39.6221C40.1171 52.8862 40.6121 52.9291 41.078 53.0292C41.5439 53.1292 41.9515 53.2864 42.3155 53.5151C42.6649 53.7438 42.9561 54.044 43.1599 54.4299C43.3783 54.8158 43.4802 55.2875 43.4802 55.8592C43.4802 56.5024 43.3638 57.0312 43.1454 57.4171C42.9124 57.8173 42.6212 58.1175 42.2281 58.3319C41.8496 58.5463 41.3983 58.7035 40.8887 58.775C40.3791 58.8464 39.855 58.8893 39.3017 58.8893H37.9769V63.1343H36.1133V52.8862ZM39.0834 57.3314C39.3454 57.3314 39.6221 57.3171 39.9132 57.3028C40.2044 57.2885 40.4665 57.2313 40.6994 57.1313C40.9469 57.0312 41.1362 56.8883 41.2964 56.7025C41.442 56.5024 41.5293 56.2451 41.5293 55.8878C41.5293 55.5733 41.4565 55.316 41.3255 55.1302C41.1944 54.9444 41.0052 54.8015 40.8013 54.7014C40.583 54.6014 40.35 54.5299 40.0734 54.5013C39.7968 54.4728 39.5493 54.4585 39.3017 54.4585H37.9769V57.3457H39.0834V57.3314Z\" fill=\"white\"/>\\n<path d=\"M49.3919 62.177H49.3482C49.0861 62.5772 48.7658 62.8631 48.3727 63.0346C47.9797 63.2061 47.5429 63.3062 47.077 63.3062C46.7567 63.3062 46.4364 63.2633 46.1306 63.1776C45.8249 63.0918 45.5483 62.9632 45.3008 62.7916C45.0532 62.6201 44.864 62.4057 44.7184 62.1342C44.5728 61.8769 44.5 61.5624 44.5 61.2194C44.5 60.8478 44.5728 60.519 44.7038 60.2618C44.8349 59.9902 45.0241 59.7758 45.2571 59.59C45.49 59.4185 45.7521 59.2755 46.0578 59.1612C46.3636 59.0611 46.6839 58.9754 47.0042 58.9182C47.339 58.8611 47.6593 58.8325 47.9942 58.8182C48.3291 58.8039 48.6494 58.7896 48.9406 58.7896H49.3773V58.6038C49.3773 58.175 49.2317 57.8462 48.926 57.6319C48.6203 57.4175 48.2272 57.3031 47.7613 57.3031C47.3827 57.3031 47.0333 57.3746 46.713 57.5032C46.3927 57.6318 46.1015 57.8034 45.8686 58.0321L44.9368 57.1173C45.3299 56.7171 45.7958 56.4312 46.3199 56.2597C46.844 56.0882 47.3827 56.0024 47.9505 56.0024C48.4455 56.0024 48.8678 56.0596 49.2172 56.174C49.5666 56.2883 49.8432 56.4312 50.0762 56.6028C50.3091 56.7743 50.4838 56.9744 50.6003 57.2031C50.7168 57.4317 50.8187 57.6604 50.8624 57.8891C50.9206 58.1178 50.9497 58.3465 50.9643 58.5609C50.9788 58.7753 50.9788 58.9754 50.9788 59.1326V63.1347H49.3919V62.177ZM49.29 60.0188H48.926C48.6785 60.0188 48.4019 60.0331 48.0961 60.0474C47.7904 60.0617 47.4992 60.1188 47.2371 60.1903C46.9605 60.2618 46.7421 60.3761 46.5528 60.5048C46.3636 60.6477 46.2762 60.8335 46.2762 61.0908C46.2762 61.248 46.3199 61.3909 46.3927 61.5053C46.4655 61.6196 46.5674 61.7054 46.6839 61.7911C46.8004 61.8626 46.9314 61.9198 47.077 61.9626C47.2226 61.9912 47.3682 62.0198 47.5138 62.0198C48.1252 62.0198 48.5766 61.8769 48.8678 61.591C49.1589 61.3052 49.3045 60.9193 49.3045 60.419V60.0188H49.29Z\" fill=\"white\"/>\\n<path d=\"M52.8828 56.1881H54.659V57.2887H54.6882C54.892 56.8885 55.1686 56.574 55.5326 56.3453C55.8966 56.1167 56.3188 56.0166 56.7847 56.0166C56.8866 56.0166 57.0031 56.0309 57.105 56.0452C57.2069 56.0595 57.3088 56.0881 57.4253 56.1167V57.8032C57.2797 57.7604 57.1341 57.7318 56.9885 57.7032C56.8429 57.6746 56.7119 57.6603 56.5663 57.6603C56.1586 57.6603 55.8238 57.7318 55.5763 57.889C55.3288 58.0319 55.1395 58.2034 54.9939 58.4035C54.8629 58.6036 54.7755 58.7895 54.7318 58.9896C54.6882 59.1897 54.659 59.3326 54.659 59.4184V63.1345H52.8828V56.1881Z\" fill=\"white\"/>\\n<path d=\"M57.7891 57.6603V56.1882H59.245V54.1729H61.0212V56.1882H62.9721V57.6603H61.0212V60.7048C61.0212 61.0478 61.094 61.3337 61.225 61.5338C61.3561 61.7339 61.6181 61.8339 62.0112 61.8339C62.1714 61.8339 62.3461 61.8196 62.5208 61.7768C62.7101 61.7482 62.8557 61.691 62.9576 61.6052V63.0631C62.7683 63.1489 62.5354 63.2061 62.2733 63.2489C61.9967 63.2775 61.7637 63.3061 61.5599 63.3061C61.094 63.3061 60.7009 63.2489 60.3952 63.1489C60.0894 63.0488 59.8565 62.8916 59.6818 62.6915C59.507 62.4771 59.3906 62.2198 59.3323 61.9197C59.2741 61.6052 59.2304 61.2479 59.2304 60.8477V57.6603H57.7891Z\" fill=\"white\"/>\\n<path d=\"M64.3544 56.1881H66.0433V57.303H66.0724C66.2325 56.9599 66.4946 56.6598 66.844 56.4025C67.1934 56.1452 67.6593 56.0166 68.2417 56.0166C68.7076 56.0166 69.1153 56.0881 69.4501 56.2453C69.785 56.4025 70.0471 56.6026 70.2509 56.8599C70.4547 57.1172 70.6003 57.403 70.6877 57.7318C70.775 58.0605 70.8187 58.4035 70.8187 58.7609V63.1488H69.0425V59.6327C69.0425 59.4326 69.0279 59.2183 69.0134 58.9896C68.9988 58.7466 68.9406 58.5322 68.8532 58.3178C68.7658 58.1034 68.6348 57.9319 68.4601 57.8032C68.2854 57.6603 68.0379 57.5888 67.7321 57.5888C67.441 57.5888 67.1934 57.6317 66.9896 57.7318C66.7858 57.8318 66.6256 57.9605 66.4946 58.1177C66.3636 58.2749 66.2617 58.475 66.2034 58.6894C66.1452 58.9038 66.1161 59.1182 66.1161 59.3612V63.1631H64.3398V56.1881H64.3544Z\" fill=\"white\"/>\\n<path d=\"M74.2432 60.2757C74.3014 60.7903 74.5053 61.2048 74.8692 61.4906C75.2332 61.7765 75.6554 61.9194 76.1505 61.9194C76.5872 61.9194 76.9658 61.8336 77.2715 61.6478C77.5773 61.4763 77.8393 61.2476 78.0577 60.9761L79.3244 61.9194C78.9167 62.4197 78.4508 62.777 77.9412 62.9914C77.4317 63.2058 76.893 63.3058 76.3397 63.3058C75.8156 63.3058 75.306 63.2201 74.8401 63.0485C74.3742 62.877 73.9666 62.634 73.6172 62.3053C73.2677 61.9909 73.0057 61.605 72.8018 61.1476C72.598 60.7045 72.4961 60.2042 72.4961 59.6468C72.4961 59.0894 72.598 58.6034 72.8018 58.146C73.0057 57.703 73.2823 57.317 73.6172 56.9883C73.9666 56.6739 74.3742 56.4166 74.8401 56.2451C75.306 56.0735 75.8156 55.9878 76.3397 55.9878C76.8347 55.9878 77.2861 56.0735 77.6937 56.2451C78.1014 56.4166 78.4508 56.6596 78.742 56.974C79.0332 57.2885 79.2516 57.6887 79.4263 58.1603C79.5864 58.632 79.6738 59.1608 79.6738 59.7754V60.2471H74.2432V60.2757ZM77.883 58.9607C77.8684 58.4462 77.7083 58.046 77.4025 57.7458C77.0822 57.4457 76.6455 57.3027 76.0922 57.3027C75.5681 57.3027 75.1459 57.4457 74.8256 57.7458C74.5198 58.046 74.3306 58.4462 74.2578 58.9464H77.883V58.9607Z\" fill=\"white\"/>\\n<path d=\"M81.3008 56.1881H83.077V57.2887H83.1061C83.31 56.8885 83.5866 56.574 83.9506 56.3453C84.3145 56.1167 84.7368 56.0166 85.2026 56.0166C85.3046 56.0166 85.421 56.0309 85.523 56.0452C85.6249 56.0595 85.7268 56.0881 85.8433 56.1167V57.8032C85.6977 57.7604 85.5521 57.7318 85.4065 57.7032C85.2609 57.6746 85.1299 57.6603 84.9843 57.6603C84.5766 57.6603 84.2417 57.7318 83.9942 57.889C83.7467 58.0319 83.5575 58.2034 83.4119 58.4035C83.2808 58.6036 83.1935 58.7895 83.1498 58.9896C83.1061 59.1897 83.077 59.3326 83.077 59.4184V63.1345H81.3008V56.1881Z\" fill=\"white\"/>\\n<path d=\"M32.0011 80.3015C32.103 80.4444 32.2194 80.5445 32.3796 80.616C32.5252 80.6874 32.6853 80.716 32.8455 80.716C32.9328 80.716 33.0348 80.7017 33.1221 80.6731C33.2095 80.6445 33.2968 80.6017 33.3842 80.5445C33.457 80.4873 33.5298 80.4159 33.5734 80.3444C33.6171 80.2586 33.6462 80.1729 33.6462 80.0585C33.6462 79.9013 33.6026 79.787 33.5006 79.7155C33.3987 79.644 33.2823 79.5726 33.1367 79.5154C32.9911 79.4582 32.8309 79.4153 32.6708 79.3582C32.4961 79.3153 32.3359 79.2438 32.1903 79.1438C32.0447 79.058 31.9283 78.9294 31.8263 78.7865C31.7244 78.6435 31.6807 78.4291 31.6807 78.1861C31.6807 78.0718 31.7099 77.9432 31.7535 77.8145C31.7972 77.6859 31.8846 77.5715 31.9865 77.4572C32.0884 77.3571 32.234 77.2571 32.4087 77.1856C32.5834 77.1142 32.7872 77.0713 33.0202 77.0713C33.2386 77.0713 33.4424 77.0999 33.6462 77.157C33.8501 77.2142 34.0248 77.3429 34.1704 77.5144L33.7336 77.9003C33.6608 77.8002 33.5734 77.7145 33.4424 77.6573C33.3114 77.6001 33.1803 77.5572 33.0202 77.5572C32.8746 77.5572 32.7436 77.5715 32.6417 77.6144C32.5397 77.6573 32.4669 77.7002 32.4087 77.7574C32.3505 77.8145 32.3068 77.886 32.2777 77.9575C32.2486 78.0289 32.234 78.0861 32.234 78.1576C32.234 78.3291 32.2777 78.4577 32.3796 78.5435C32.4815 78.6292 32.598 78.7007 32.7436 78.7579C32.8892 78.815 33.0493 78.8579 33.224 78.9008C33.3987 78.9437 33.5589 79.0008 33.6899 79.0866C33.8355 79.1724 33.952 79.2724 34.0539 79.4011C34.1558 79.5297 34.1995 79.7155 34.1995 79.9585C34.1995 80.1443 34.1558 80.3158 34.083 80.473C34.0102 80.6303 33.9083 80.7446 33.7918 80.8589C33.6608 80.959 33.5152 81.0447 33.3551 81.1019C33.1803 81.1591 33.0056 81.1877 32.8164 81.1877C32.5543 81.1877 32.3214 81.1448 32.0884 81.059C31.8555 80.9733 31.6807 80.8304 31.5352 80.6445L32.0011 80.3015Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M36.8515 81.2307C36.5458 81.2307 36.2691 81.1735 36.0071 81.0734C35.745 80.9734 35.5266 80.8305 35.3519 80.6446C35.1626 80.4588 35.0316 80.2444 34.9297 79.9872C34.8278 79.7299 34.7695 79.4726 34.7695 79.1725C34.7695 78.8866 34.8278 78.615 34.9297 78.3578C35.0316 78.1005 35.1772 77.8861 35.3519 77.7003C35.5412 77.5145 35.7596 77.3715 36.0071 77.2715C36.2691 77.1714 36.5458 77.1143 36.8515 77.1143C37.1572 77.1143 37.4339 77.1714 37.6959 77.2715C37.958 77.3715 38.1764 77.5145 38.3511 77.7003C38.5404 77.8861 38.6714 78.1005 38.7733 78.3578C38.8752 78.615 38.9335 78.8866 38.9335 79.1725C38.9335 79.4583 38.8752 79.7299 38.7733 79.9872C38.6714 80.2444 38.5258 80.4588 38.3511 80.6446C38.1618 80.8305 37.9434 80.9734 37.6959 81.0734C37.4339 81.1735 37.1572 81.2307 36.8515 81.2307ZM36.8515 80.7304C37.0844 80.7304 37.2883 80.6875 37.4775 80.6018C37.6668 80.516 37.8124 80.4017 37.958 80.273C38.089 80.1301 38.1909 79.9729 38.2637 79.7728C38.3365 79.587 38.3657 79.3868 38.3657 79.1725C38.3657 78.9581 38.3365 78.758 38.2637 78.5721C38.1909 78.3863 38.089 78.2148 37.958 78.0719C37.827 77.929 37.6668 77.8146 37.4775 77.7431C37.2883 77.6574 37.0844 77.6145 36.8515 77.6145C36.6185 77.6145 36.4147 77.6574 36.2255 77.7431C36.0362 77.8289 35.8906 77.9433 35.745 78.0719C35.614 78.2148 35.512 78.372 35.4393 78.5721C35.3665 78.758 35.3373 78.9581 35.3373 79.1725C35.3373 79.3868 35.3665 79.587 35.4393 79.7728C35.512 79.9586 35.614 80.1301 35.745 80.273C35.876 80.4159 36.0362 80.5303 36.2255 80.6018C36.4147 80.6875 36.6331 80.7304 36.8515 80.7304Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M39.7031 77.2144H40.2418V80.6304H42.0763V81.1306H39.7031V77.2144Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M43.0923 77.2144V79.6156C43.0923 79.7442 43.1069 79.8586 43.136 80.0015C43.1651 80.1301 43.2233 80.2588 43.3107 80.3588C43.3835 80.4732 43.5 80.5589 43.6164 80.6304C43.7475 80.7019 43.9076 80.7304 44.0823 80.7304C44.2716 80.7304 44.4318 80.7019 44.5628 80.6304C44.6938 80.5589 44.7957 80.4732 44.8685 80.3588C44.9413 80.2445 44.9996 80.1301 45.0432 80.0015C45.0724 79.8729 45.0869 79.7442 45.0869 79.6156V77.2144H45.6256V79.7013C45.6256 79.93 45.5819 80.1444 45.5091 80.3302C45.4363 80.516 45.3199 80.6733 45.1888 80.8162C45.0432 80.9591 44.8831 81.0592 44.6938 81.1306C44.5046 81.2021 44.3007 81.245 44.0823 81.245C43.864 81.245 43.6601 81.2021 43.4709 81.1306C43.2816 81.0592 43.1214 80.9448 42.9758 80.8162C42.8302 80.6733 42.7283 80.516 42.6555 80.3302C42.5827 80.1444 42.5391 79.93 42.5391 79.7013V77.2144H43.0923Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M47.4336 77.7005H46.1523V77.2002H49.268V77.7005H47.9868V81.1165H47.4481V77.7005H47.4336Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M49.8359 77.2144H50.3746V81.1306H49.8359V77.2144Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M53.2265 81.2307C52.9208 81.2307 52.6441 81.1735 52.3821 81.0734C52.12 80.9734 51.9016 80.8305 51.7269 80.6446C51.5376 80.4588 51.4066 80.2444 51.3047 79.9872C51.2028 79.7299 51.1445 79.4726 51.1445 79.1725C51.1445 78.8866 51.2028 78.615 51.3047 78.3578C51.4066 78.1005 51.5522 77.8861 51.7269 77.7003C51.9162 77.5145 52.1346 77.3715 52.3821 77.2715C52.6441 77.1714 52.9208 77.1143 53.2265 77.1143C53.5322 77.1143 53.8089 77.1714 54.0709 77.2715C54.333 77.3715 54.5514 77.5145 54.7261 77.7003C54.9154 77.8861 55.0464 78.1005 55.1483 78.3578C55.2502 78.615 55.3085 78.8866 55.3085 79.1725C55.3085 79.4583 55.2502 79.7299 55.1483 79.9872C55.0464 80.2444 54.9008 80.4588 54.7261 80.6446C54.5368 80.8305 54.3184 80.9734 54.0709 81.0734C53.8089 81.1735 53.5322 81.2307 53.2265 81.2307ZM53.2265 80.7304C53.4594 80.7304 53.6633 80.6875 53.8525 80.6018C54.0418 80.516 54.1874 80.4017 54.333 80.273C54.464 80.1301 54.5659 79.9729 54.6387 79.7728C54.7115 79.587 54.7407 79.3868 54.7407 79.1725C54.7407 78.9581 54.7115 78.758 54.6387 78.5721C54.5659 78.3863 54.464 78.2148 54.333 78.0719C54.202 77.929 54.0418 77.8146 53.8525 77.7431C53.6633 77.6574 53.4594 77.6145 53.2265 77.6145C52.9935 77.6145 52.7897 77.6574 52.6005 77.7431C52.4112 77.8289 52.2656 77.9433 52.12 78.0719C51.989 78.2148 51.887 78.372 51.8143 78.5721C51.7415 78.758 51.7123 78.9581 51.7123 79.1725C51.7123 79.3868 51.7415 79.587 51.8143 79.7728C51.887 79.9586 51.989 80.1301 52.12 80.273C52.251 80.4159 52.4112 80.5303 52.6005 80.6018C52.7897 80.6875 52.9935 80.7304 53.2265 80.7304Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M56.082 77.2144H56.7954L58.9939 80.4303H59.0084V77.2144H59.5471V81.1306H58.8628L56.6498 77.9147H56.6353V81.1306H56.0966V77.2144H56.082Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M60.6807 80.3015C60.7827 80.4444 60.8991 80.5445 61.0593 80.616C61.2049 80.6874 61.365 80.716 61.5252 80.716C61.6125 80.716 61.7144 80.7017 61.8018 80.6731C61.8892 80.6445 61.9765 80.6017 62.0639 80.5445C62.1367 80.4873 62.2095 80.4159 62.2531 80.3444C62.2968 80.2586 62.3259 80.1729 62.3259 80.0585C62.3259 79.9013 62.2823 79.787 62.1803 79.7155C62.0784 79.644 61.9619 79.5726 61.8164 79.5154C61.6708 79.4582 61.5106 79.4153 61.3505 79.3582C61.1757 79.3153 61.0156 79.2438 60.87 79.1438C60.7244 79.058 60.6079 78.9294 60.506 78.7865C60.4041 78.6435 60.3604 78.4291 60.3604 78.1861C60.3604 78.0718 60.3896 77.9432 60.4332 77.8145C60.4769 77.6859 60.5643 77.5715 60.6662 77.4572C60.7681 77.3571 60.9137 77.2571 61.0884 77.1856C61.2631 77.1142 61.4669 77.0713 61.6999 77.0713C61.9183 77.0713 62.1221 77.0999 62.3259 77.157C62.5298 77.2142 62.7045 77.3429 62.8501 77.5144L62.4133 77.9003C62.3405 77.8002 62.2531 77.7145 62.1221 77.6573C61.9911 77.6001 61.86 77.5572 61.6999 77.5572C61.5543 77.5572 61.4233 77.5715 61.3213 77.6144C61.2194 77.6573 61.1466 77.7002 61.0884 77.7574C61.0302 77.8145 60.9865 77.886 60.9574 77.9575C60.9282 78.0289 60.9137 78.0861 60.9137 78.1576C60.9137 78.3291 60.9574 78.4577 61.0593 78.5435C61.1612 78.6292 61.2777 78.7007 61.4233 78.7579C61.5688 78.815 61.729 78.8579 61.9037 78.9008C62.0784 78.9437 62.2386 79.0008 62.3696 79.0866C62.5152 79.1724 62.6317 79.2724 62.7336 79.4011C62.8355 79.5297 62.8792 79.7155 62.8792 79.9585C62.8792 80.1443 62.8355 80.3158 62.7627 80.473C62.6899 80.6303 62.588 80.7446 62.4715 80.8589C62.3405 80.959 62.1949 81.0447 62.0347 81.1019C61.86 81.1591 61.6853 81.1877 61.4961 81.1877C61.234 81.1877 61.001 81.1448 60.7681 81.059C60.5351 80.9733 60.3604 80.8304 60.2148 80.6445L60.6807 80.3015Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M65.2734 77.2144H66.6711C66.9332 77.2144 67.137 77.2429 67.2972 77.3144C67.4573 77.3859 67.5883 77.4716 67.6903 77.5717C67.7922 77.6717 67.8504 77.8004 67.8941 77.929C67.9378 78.0576 67.9523 78.1863 67.9523 78.3149C67.9523 78.4436 67.9378 78.5579 67.8941 78.7008C67.8504 78.8295 67.7922 78.9438 67.6903 79.0582C67.5883 79.1582 67.4573 79.244 67.2972 79.3154C67.137 79.3869 66.9186 79.4155 66.6711 79.4155H65.8121V81.1449H65.2734V77.2144ZM65.8121 78.9295H66.5255C66.6274 78.9295 66.7294 78.9152 66.8313 78.9009C66.9332 78.8866 67.0205 78.858 67.1079 78.8152C67.1952 78.7723 67.2535 78.7008 67.2972 78.6294C67.3408 78.5436 67.37 78.4436 67.37 78.3006C67.37 78.1577 67.3408 78.0576 67.2972 77.9719C67.2535 77.8861 67.1807 77.829 67.1079 77.7861C67.0205 77.7432 66.9332 77.7146 66.8313 77.7003C66.7294 77.686 66.6274 77.6717 66.5255 77.6717H65.8121V78.9295Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M69.4474 77.2144H69.9424L71.6458 81.1306H71.0198L70.6267 80.1587H68.734L68.3409 81.1306H67.7148L69.4474 77.2144ZM70.4083 79.687L69.6658 77.8861H69.6512L68.8941 79.687H70.4083Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M72.1562 77.2144H73.5539C73.816 77.2144 74.0198 77.2429 74.18 77.3144C74.3401 77.3859 74.4712 77.4716 74.5731 77.5717C74.675 77.6717 74.7332 77.8004 74.7769 77.929C74.8206 78.0576 74.8351 78.1863 74.8351 78.3149C74.8351 78.4436 74.806 78.5579 74.7624 78.6722C74.7187 78.7866 74.6459 78.8866 74.5731 78.9867C74.4857 79.0867 74.3838 79.1582 74.2673 79.2297C74.1509 79.3011 74.0053 79.3297 73.8597 79.344L74.9953 81.1306H74.3256L73.3064 79.4012H72.7095V81.1306H72.1708V77.2144H72.1562ZM72.6949 78.9295H73.4083C73.5103 78.9295 73.6122 78.9152 73.7141 78.9009C73.816 78.8866 73.9034 78.858 73.9907 78.8152C74.0781 78.7723 74.1363 78.7008 74.18 78.6294C74.2237 78.5436 74.2528 78.4436 74.2528 78.3006C74.2528 78.1577 74.2237 78.0576 74.18 77.9719C74.1363 77.8861 74.0635 77.829 73.9907 77.7861C73.9034 77.7432 73.816 77.7146 73.7141 77.7003C73.6122 77.686 73.5103 77.6717 73.4083 77.6717H72.6949V78.9295Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M76.3359 77.7005H75.0547V77.2002H78.1704V77.7005H76.8891V81.1165H76.3505V77.7005H76.3359Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M78.7383 77.2144H79.4517L81.6501 80.4303H81.6647V77.2144H82.2034V81.1306H81.5191L79.3061 77.9147H79.2915V81.1306H78.7528V77.2144H78.7383Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M83.2148 77.2144H85.7918V77.7146H83.7535V78.8866H85.6462V79.3869H83.7535V80.6447H85.8937V81.1449H83.2148V77.2144Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M86.6562 77.2144H88.0539C88.316 77.2144 88.5198 77.2429 88.68 77.3144C88.8401 77.3859 88.9712 77.4716 89.0731 77.5717C89.175 77.6717 89.2332 77.8004 89.2769 77.929C89.3206 78.0576 89.3351 78.1863 89.3351 78.3149C89.3351 78.4436 89.306 78.5579 89.2624 78.6722C89.2187 78.7866 89.1459 78.8866 89.0731 78.9867C88.9857 79.0867 88.8838 79.1582 88.7673 79.2297C88.6509 79.3011 88.5053 79.3297 88.3597 79.344L89.4953 81.1306H88.8256L87.8064 79.4012H87.2095V81.1306H86.6708V77.2144H86.6562ZM87.1949 78.9295H87.9083C88.0103 78.9295 88.1122 78.9152 88.2141 78.9009C88.316 78.8866 88.4034 78.858 88.4907 78.8152C88.5781 78.7723 88.6363 78.7008 88.68 78.6294C88.7237 78.5436 88.7528 78.4436 88.7528 78.3006C88.7528 78.1577 88.7237 78.0576 88.68 77.9719C88.6363 77.8861 88.5635 77.829 88.4907 77.7861C88.4034 77.7432 88.316 77.7146 88.2141 77.7003C88.1122 77.686 88.0103 77.6717 87.9083 77.6717H87.1949V78.9295Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M46.8125 84.8462H48.2102C48.4723 84.8462 48.6761 84.8748 48.8362 84.9462C48.9964 85.0177 49.1274 85.1035 49.2293 85.2035C49.3312 85.3036 49.3895 85.4322 49.4332 85.5608C49.4768 85.6895 49.4914 85.8181 49.4914 85.9468C49.4914 86.0754 49.4768 86.1897 49.4332 86.3327C49.3895 86.4613 49.3312 86.5757 49.2293 86.69C49.1274 86.79 48.9964 86.8758 48.8362 86.9473C48.6761 87.0187 48.4577 87.0473 48.2102 87.0473H47.3512V88.7768H46.8125V84.8462ZM47.3512 86.5757H48.0646C48.1665 86.5757 48.2684 86.5614 48.3703 86.5471C48.4723 86.5328 48.5596 86.5042 48.647 86.4613C48.7343 86.4184 48.7926 86.347 48.8362 86.2755C48.8799 86.1897 48.909 86.0897 48.909 85.9468C48.909 85.8038 48.8799 85.7038 48.8362 85.618C48.7926 85.5323 48.7198 85.4751 48.647 85.4322C48.5596 85.3893 48.4723 85.3607 48.3703 85.3464C48.2684 85.3322 48.1665 85.3179 48.0646 85.3179H47.3512V86.5757Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M50.1562 84.8462H51.5539C51.816 84.8462 52.0198 84.8748 52.18 84.9462C52.3401 85.0177 52.4712 85.1035 52.5731 85.2035C52.675 85.3036 52.7332 85.4322 52.7769 85.5608C52.8206 85.6895 52.8351 85.8181 52.8351 85.9468C52.8351 86.0754 52.806 86.1897 52.7623 86.3041C52.7187 86.4184 52.6459 86.5185 52.5731 86.6185C52.4857 86.7186 52.3838 86.7901 52.2673 86.8615C52.1509 86.933 52.0053 86.9616 51.8597 86.9759L52.9953 88.7625H52.3256L51.3064 87.033H50.7095V88.7625H50.1708V84.8462H50.1562ZM50.6949 86.5757H51.4083C51.5103 86.5757 51.6122 86.5614 51.7141 86.5471C51.816 86.5328 51.9034 86.5042 51.9907 86.4613C52.0781 86.4184 52.1363 86.347 52.18 86.2755C52.2237 86.1897 52.2528 86.0897 52.2528 85.9468C52.2528 85.8038 52.2237 85.7038 52.18 85.618C52.1363 85.5323 52.0635 85.4751 51.9907 85.4322C51.9034 85.3893 51.816 85.3607 51.7141 85.3464C51.6122 85.3322 51.5103 85.3179 51.4083 85.3179H50.6949V86.5757Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M55.4296 88.863C55.1239 88.863 54.8473 88.8058 54.5852 88.7058C54.3231 88.6057 54.1047 88.4628 53.93 88.277C53.7408 88.0912 53.6097 87.8768 53.5078 87.6195C53.4059 87.3622 53.3477 87.1049 53.3477 86.8048C53.3477 86.5189 53.4059 86.2474 53.5078 85.9901C53.6097 85.7328 53.7553 85.5184 53.93 85.3326C54.1193 85.1468 54.3377 85.0039 54.5852 84.9038C54.8473 84.8038 55.1239 84.7466 55.4296 84.7466C55.7354 84.7466 56.012 84.8038 56.2741 84.9038C56.5361 85.0039 56.7545 85.1468 56.9292 85.3326C57.1185 85.5184 57.2495 85.7328 57.3514 85.9901C57.4534 86.2474 57.5116 86.5189 57.5116 86.8048C57.5116 87.0906 57.4534 87.3622 57.3514 87.6195C57.2495 87.8768 57.1039 88.0912 56.9292 88.277C56.74 88.4628 56.5216 88.6057 56.2741 88.7058C56.012 88.8058 55.7354 88.863 55.4296 88.863ZM55.4296 88.3627C55.6626 88.3627 55.8664 88.3198 56.0557 88.2341C56.2449 88.1483 56.3905 88.034 56.5361 87.9053C56.6672 87.7624 56.7691 87.6052 56.8419 87.4051C56.9147 87.2193 56.9438 87.0192 56.9438 86.8048C56.9438 86.5904 56.9147 86.3903 56.8419 86.2045C56.7691 86.0187 56.6672 85.8471 56.5361 85.7042C56.4051 85.5613 56.2449 85.4469 56.0557 85.3755C55.8664 85.2897 55.6626 85.2468 55.4296 85.2468C55.1967 85.2468 54.9928 85.2897 54.8036 85.3755C54.6143 85.4612 54.4687 85.5756 54.3231 85.7042C54.1921 85.8471 54.0902 86.0044 54.0174 86.2045C53.9446 86.3903 53.9155 86.5904 53.9155 86.8048C53.9155 87.0192 53.9446 87.2193 54.0174 87.4051C54.0902 87.5909 54.1921 87.7624 54.3231 87.9053C54.4542 88.0483 54.6143 88.1626 54.8036 88.2341C54.9928 88.3198 55.1967 88.3627 55.4296 88.3627Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M61.6728 86.5764V88.506C61.5709 88.5632 61.469 88.6204 61.338 88.6632C61.2069 88.7061 61.0905 88.749 60.9449 88.7776C60.7993 88.8062 60.6828 88.8347 60.5372 88.849C60.4062 88.8633 60.2751 88.8776 60.1441 88.8776C59.8092 88.8776 59.5035 88.8205 59.2414 88.7061C58.9794 88.5918 58.7464 88.4488 58.5717 88.263C58.3824 88.0772 58.2514 87.8628 58.1495 87.6055C58.0476 87.3483 58.0039 87.091 58.0039 86.8194C58.0039 86.5336 58.0621 86.262 58.1641 86.0047C58.266 85.7475 58.4116 85.5331 58.5863 85.3472C58.7755 85.1614 58.9939 85.0185 59.2414 84.9185C59.5035 84.8184 59.7801 84.7612 60.0859 84.7612C60.4499 84.7612 60.7556 84.8041 60.9885 84.8899C61.2215 84.9756 61.4108 85.1043 61.5709 85.2615L61.1924 85.6617C61.0322 85.5045 60.8575 85.4044 60.6682 85.333C60.479 85.2758 60.2897 85.2472 60.0859 85.2472C59.8529 85.2472 59.6491 85.2901 59.4598 85.3758C59.2706 85.4616 59.125 85.5759 58.9794 85.7046C58.8483 85.8475 58.7464 86.0047 58.6736 86.2048C58.6008 86.3906 58.5717 86.5907 58.5717 86.8051C58.5717 87.0195 58.6154 87.2339 58.6882 87.4197C58.761 87.6055 58.8775 87.7771 59.0085 87.92C59.1541 88.0629 59.3142 88.163 59.5035 88.2487C59.6928 88.3345 59.8966 88.3631 60.115 88.3631C60.3043 88.3631 60.4935 88.3488 60.6537 88.3059C60.8138 88.263 60.974 88.2201 61.0905 88.1487V87.0624H60.2024V86.5622H61.6728V86.5764Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M62.6562 84.8462H64.0539C64.316 84.8462 64.5198 84.8748 64.68 84.9462C64.8401 85.0177 64.9712 85.1035 65.0731 85.2035C65.175 85.3036 65.2332 85.4322 65.2769 85.5608C65.3206 85.6895 65.3351 85.8181 65.3351 85.9468C65.3351 86.0754 65.306 86.1897 65.2624 86.3041C65.2187 86.4184 65.1459 86.5185 65.0731 86.6185C64.9857 86.7186 64.8838 86.7901 64.7673 86.8615C64.6509 86.933 64.5053 86.9616 64.3597 86.9759L65.4953 88.7625H64.8256L63.8064 87.033H63.1949V88.7625H62.6562V84.8462ZM63.1949 86.5757H63.9083C64.0103 86.5757 64.1122 86.5614 64.2141 86.5471C64.316 86.5328 64.4034 86.5042 64.4907 86.4613C64.5781 86.4184 64.6363 86.347 64.68 86.2755C64.7237 86.1897 64.7528 86.0897 64.7528 85.9468C64.7528 85.8038 64.7237 85.7038 64.68 85.618C64.6363 85.5323 64.5635 85.4751 64.4907 85.4322C64.4034 85.3893 64.316 85.3607 64.2141 85.3464C64.1122 85.3322 64.0103 85.3179 63.9083 85.3179H63.1949V86.5757Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M67.3536 84.8462H67.8487L69.5521 88.7625H68.926L68.5329 87.7906H66.6402L66.2471 88.7625H65.6211L67.3536 84.8462ZM68.3291 87.3332L67.5866 85.5323H67.572L66.815 87.3332H68.3291Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M70.0273 84.8462H70.8281L72.0947 87.8049H72.1239L73.376 84.8462H74.1767V88.7625H73.638V85.5466H73.6235L72.284 88.7625H71.9346L70.5951 85.5466H70.5806V88.7625H70.0419V84.8462H70.0273Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M105.94 60.348L105.168 61.7201C105.051 61.9345 104.746 61.9345 104.629 61.7201L103.858 60.348C103.566 59.8334 103.144 59.4189 102.62 59.1331L101.222 58.3755C101.004 58.2612 101.004 57.961 101.222 57.8467L102.62 57.0891C103.144 56.8033 103.566 56.3888 103.858 55.8742L104.629 54.5021C104.746 54.2877 105.051 54.2877 105.168 54.5021L105.94 55.8742C106.231 56.3888 106.653 56.8033 107.177 57.0891L108.575 57.8467C108.793 57.961 108.793 58.2612 108.575 58.3755L107.177 59.1473C106.653 59.4189 106.216 59.8477 105.94 60.348Z\" fill=\"white\"/>\\n<path d=\"M17.1427 60.348L16.3711 61.7201C16.2546 61.9345 15.9488 61.9345 15.8324 61.7201L15.0607 60.348C14.7695 59.8334 14.3473 59.4189 13.8232 59.1331L12.4255 58.3755C12.2071 58.2612 12.2071 57.961 12.4255 57.8467L13.8232 57.0891C14.3473 56.8033 14.7695 56.3888 15.0607 55.8742L15.8324 54.5021C15.9488 54.2877 16.2546 54.2877 16.3711 54.5021L17.1427 55.8742C17.4339 56.3888 17.8561 56.8033 18.3802 57.0891L19.7779 57.8467C19.9963 57.961 19.9963 58.2612 19.7779 58.3755L18.3802 59.1331C17.8561 59.4189 17.4193 59.8477 17.1427 60.348Z\" fill=\"white\"/>\\n<path d=\"M43.97 30.0464V33.3624H40.8689V30.0464H39.3984V37.9504H40.8689V34.7488H43.97V37.9504H45.4405V30.0464H43.97Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M50.1416 35.3923C50.1416 36.0498 49.6029 36.5787 48.9186 36.5787C48.2489 36.5787 47.7102 36.0498 47.7102 35.3923V32.0049H46.3125V35.3923C46.3125 36.8073 47.4772 37.9508 48.9186 37.9508C50.36 37.9508 51.5247 36.8073 51.5247 35.3923V32.0049H50.127V35.3923H50.1416Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M60.4595 32.3619C60.4595 31.6615 60.9254 31.4471 61.4349 31.4471C61.8426 31.4471 62.3958 31.7616 62.7453 32.1332L63.6625 31.0755C63.2112 30.4752 62.2794 30.0464 61.5223 30.0464C60.0081 30.0464 58.9162 30.9183 58.9162 32.3619C58.9162 35.0347 62.2502 34.1914 62.2502 35.6778C62.2502 36.1352 61.7989 36.5497 61.2748 36.5497C60.4449 36.5497 60.1828 36.1495 59.8043 35.735L58.7852 36.7641C59.4258 37.5502 60.2265 37.9361 61.1874 37.9361C62.6288 37.9361 63.779 37.05 63.779 35.6778C63.7935 32.7192 60.4595 33.6482 60.4595 32.3619Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M81.0649 36.6929C80.235 36.6929 80.0021 36.3499 80.0021 35.8068V33.4341H81.2833V32.2335H80.0021V30.647L78.5898 31.2759V36.1069C78.5898 37.3361 79.4634 37.965 80.6427 37.965C80.8174 37.965 81.0649 37.9507 81.1959 37.9221L81.5454 36.6786C81.3998 36.6786 81.2251 36.6929 81.0649 36.6929Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M55.4385 32.047C54.7542 32.047 54.2592 32.2471 53.8078 32.6902V30.0889H52.4102V34.9056C52.4102 36.7065 53.735 37.95 55.2346 37.95C56.8944 37.95 58.3503 36.6923 58.3503 35.0057C58.3358 33.3334 56.9963 32.047 55.4385 32.047ZM55.4385 36.5779C54.5649 36.5779 53.8515 35.8775 53.8515 35.02C53.8515 34.1624 54.5649 33.462 55.4385 33.462C56.312 33.462 57.0254 34.1624 57.0254 35.02C57.0109 35.8775 56.312 36.5779 55.4385 36.5779Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M70.6159 34.9351C70.6159 33.2342 69.16 31.9907 67.5003 31.9907C66.0007 31.9907 64.6758 33.2199 64.6758 35.0351V39.8519H66.0735V37.2506C66.5394 37.6936 67.0198 37.8937 67.7041 37.8937C69.2619 37.8795 70.6159 36.6074 70.6159 34.9351ZM69.2911 34.9208C69.2911 35.7784 68.5777 36.4787 67.7041 36.4787C66.8306 36.4787 66.1171 35.7784 66.1171 34.9208C66.1171 34.0632 66.8306 33.3629 67.7041 33.3629C68.5777 33.3629 69.2911 34.0632 69.2911 34.9208Z\" fill=\"#4D4D4D\"/>\\n<path d=\"M75.1063 31.9188V30.5466C75.4702 30.3751 75.7323 30.0178 75.7323 29.589V29.5604C75.7323 28.9744 75.2519 28.5027 74.6549 28.5027H74.6258C74.0289 28.5027 73.5484 28.9744 73.5484 29.5604V29.589C73.5484 30.0178 73.8105 30.3751 74.1745 30.5466V31.9188C73.6358 32.0045 73.1262 32.2189 72.7186 32.5477L68.8604 29.6033C68.8895 29.5033 68.904 29.4032 68.904 29.3032C68.904 28.6457 68.3654 28.1025 67.6956 28.1025C67.0259 28.1025 66.4727 28.6314 66.4727 29.2889C66.4727 29.9463 67.0113 30.4895 67.6811 30.4895C67.8995 30.4895 68.1033 30.4323 68.278 30.3323L72.0634 33.2194C71.7431 33.6911 71.5538 34.2628 71.5538 34.8774C71.5538 35.5206 71.7576 36.1209 72.1071 36.6069L70.9569 37.7361C70.8695 37.7075 70.7676 37.6932 70.6657 37.6932C70.1125 37.6932 69.6611 38.1363 69.6611 38.6794C69.6611 39.2225 70.1125 39.6656 70.6657 39.6656C71.219 39.6656 71.6703 39.2225 71.6703 38.6794C71.6703 38.5793 71.6557 38.4936 71.6266 38.3935L72.7622 37.2787C73.2864 37.6646 73.927 37.8933 74.6258 37.8933C76.3292 37.8933 77.6978 36.5354 77.6978 34.8774C77.7124 33.391 76.5913 32.1332 75.1063 31.9188ZM74.6404 36.4497C73.7668 36.4497 73.068 35.7636 73.068 34.906C73.068 34.0484 73.7668 33.3624 74.6404 33.3624C75.5139 33.3624 76.2128 34.0484 76.2128 34.906C76.2128 35.7493 75.5139 36.4497 74.6404 36.4497Z\" fill=\"#FF7A59\"/>\\n</svg>\\n',withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uS1By.framer-12ej8ii, .framer-uS1By .framer-12ej8ii { display: block; }\",\".framer-uS1By.framer-1ghcphx { height: 118px; overflow: visible; position: relative; width: 120px; }\",\".framer-uS1By .framer-zaxpz0 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 118\n * @framerIntrinsicWidth 120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWCP9AnFDq=withCSS(Component,css,\"framer-uS1By\");export default FramerWCP9AnFDq;FramerWCP9AnFDq.displayName=\"Hubspot logo\";FramerWCP9AnFDq.defaultProps={height:118,width:120};addFonts(FramerWCP9AnFDq,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWCP9AnFDq\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"120\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"118\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WCP9AnFDq.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,CycleVariantState,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/29DLGXqcJoFWNh2CLgdF/Q3t7YvYzGqJWvdkmaHEi/f7olBvGiH.js\";import HubspotCard from\"https://framerusercontent.com/modules/snMa8aQ4d1d09H94PR7S/2aOYpw38K2uMve8UwlzZ/guYXH9pt6.js\";import HubspotLogo from\"https://framerusercontent.com/modules/kJfV6v9kMacyB5FZ5OF7/AKkSS9LHtxdDC1mq5l07/WCP9AnFDq.js\";const HubspotLogoFonts=getFonts(HubspotLogo);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const HubspotCardFonts=getFonts(HubspotCard);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const cycleOrder=[\"CulKuxf5S\",\"niKD1Bdkp\",\"oMl84ysvd\",\"aveLkt31i\",\"nVnm6GWBB\",\"lq1FwdeIX\",\"DLz00lKVX\",\"Gb4LC09yd\",\"IhKbSCFQu\"];const serializationHash=\"framer-wGGkl\";const variantClassNames={aveLkt31i:\"framer-v-1ms49ed\",CulKuxf5S:\"framer-v-e9tb6n\",DLz00lKVX:\"framer-v-qporqo\",Gb4LC09yd:\"framer-v-3v232n\",IhKbSCFQu:\"framer-v-bjxw47\",lq1FwdeIX:\"framer-v-1prywz2\",niKD1Bdkp:\"framer-v-1hpivke\",nVnm6GWBB:\"framer-v-r1yncc\",oMl84ysvd:\"framer-v-kszi4s\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:19,delay:0,mass:.1,stiffness:89,type:\"spring\"};const transition2={damping:49,delay:0,mass:.1,stiffness:264,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-852,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition3={damping:30,delay:.5,mass:1,stiffness:135,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition4={damping:30,delay:0,mass:1,stiffness:151,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:230};const animation6={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:230};const transition5={damping:30,delay:.2,mass:1,stiffness:151,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:30,delay:.4,mass:1,stiffness:151,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={damping:35,delay:.5,mass:.1,stiffness:135,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:595};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={\"Desktop Hero section\":\"CulKuxf5S\",\"Mobile 2\":\"lq1FwdeIX\",\"Tablet dos\":\"aveLkt31i\",\"Variant 10\":\"IhKbSCFQu\",\"Variant 2\":\"niKD1Bdkp\",\"Variant 7\":\"DLz00lKVX\",\"Variant 9\":\"Gb4LC09yd\",Mobile:\"nVnm6GWBB\",Tablet:\"oMl84ysvd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"CulKuxf5S\"};};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:\"CulKuxf5S\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppeargvj7gj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),4e3);});const onAppear10d56ua=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"CulKuxf5S\"),4e3);});const onAppear1tf9t2n=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"aveLkt31i\"),4e3);});const onAppear119t0q4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"oMl84ysvd\"),4e3);});const onAppear1ikovxc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"IhKbSCFQu\"),4e3);});const onTapsx62z7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"DLz00lKVX\");});const onAppear1ki0s66=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"nVnm6GWBB\"),4e3);});const onTapik9zjc=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"lq1FwdeIX\");});const onAppearyz800u=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"lq1FwdeIX\"),4e3);});const onTapbrmthb=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"Gb4LC09yd\");});useOnVariantChange(baseVariant,{aveLkt31i:onAppear119t0q4,default:onAppeargvj7gj,DLz00lKVX:onAppearyz800u,Gb4LC09yd:undefined,IhKbSCFQu:onAppear1ki0s66,lq1FwdeIX:onAppear1ki0s66,niKD1Bdkp:onAppear10d56ua,nVnm6GWBB:onAppear1ikovxc,oMl84ysvd:onAppear1tf9t2n});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if([\"oMl84ysvd\",\"aveLkt31i\",\"nVnm6GWBB\",\"lq1FwdeIX\",\"DLz00lKVX\",\"Gb4LC09yd\",\"IhKbSCFQu\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-e9tb6n\",className,classNames),\"data-framer-name\":\"Desktop Hero section\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CulKuxf5S\",ref:refBinding,style:{backgroundColor:\"var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243))\",...style},...addPropertyOverrides({aveLkt31i:{\"data-framer-name\":\"Tablet dos\"},DLz00lKVX:{\"data-framer-name\":\"Variant 7\",onTap:onTapik9zjc},Gb4LC09yd:{\"data-framer-name\":\"Variant 9\",onTap:onTapbrmthb},IhKbSCFQu:{\"data-framer-name\":\"Variant 10\"},lq1FwdeIX:{\"data-framer-name\":\"Mobile 2\",onTap:onTapsx62z7},niKD1Bdkp:{\"data-framer-name\":\"Variant 2\"},nVnm6GWBB:{\"data-framer-name\":\"Mobile\"},oMl84ysvd:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-spy5u2\",layoutDependency:layoutDependency,layoutId:\"RelwmB0HB\",style:{backgroundColor:\"var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243))\"},variants:{oMl84ysvd:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-fk7l8q\",\"data-styles-preset\":\"f7olBvGiH\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110)))\"},children:\"HubSpot & RevOps Agency\"})}),className:\"framer-1kdfn8j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JBaiGe81z\",style:{\"--extracted-gdpscs\":\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:\"120px\",y:(componentViewport?.y||0)+((componentViewport?.height||686)*.49697885196374647-59),...addPropertyOverrides({aveLkt31i:{y:(componentViewport?.y||0)+185},DLz00lKVX:{y:(componentViewport?.y||0)+127},Gb4LC09yd:{y:(componentViewport?.y||0)+127},IhKbSCFQu:{y:(componentViewport?.y||0)+24+912},lq1FwdeIX:{y:(componentViewport?.y||0)+127},nVnm6GWBB:{y:(componentViewport?.y||0)+24+912},oMl84ysvd:{y:(componentViewport?.y||0)+185}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-d401u2-container\",\"data-framer-appear-id\":\"d401u2\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"Mx3u_lYAG-container\",nodeId:\"Mx3u_lYAG\",optimized:true,rendersWithMotion:true,scopeId:\"KF_glbE47\",...addPropertyOverrides({Gb4LC09yd:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(HubspotLogo,{height:\"100%\",id:\"Mx3u_lYAG\",layoutId:\"Mx3u_lYAG\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zpwqsp\",\"data-framer-name\":\"text + boex\",layoutDependency:layoutDependency,layoutId:\"Slu98qOcc\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vcli62\",\"data-border\":true,\"data-framer-name\":\"text\",layoutDependency:layoutDependency,layoutId:\"r_ieNPjmd\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bg5gzt\",\"data-framer-name\":\"Frame 782\",layoutDependency:layoutDependency,layoutId:\"inwBoivpW\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"51.7px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"Are you leaving \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZEl0YWxpYw==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"51.7px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(51, 51, 51))\"},children:\"revenue on the table?\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"51.7px\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(51, 51, 51))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"51.7px\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgb(51, 51, 51))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"51.7px\",\"--framer-text-color\":\"var(--extracted-ydz9fi, rgb(51, 51, 51))\"},children:[\"Are you making a great \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZEl0YWxpYw==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\"},children:\"first impression?\"})]})]}),className:\"framer-lpi2ix\",\"data-framer-appear-id\":\"lpi2ix\",\"data-framer-name\":\"Are you Leaving revenue on the table? Are you making a great first impression?\",fonts:[\"Inter-BoldItalic\"],initial:animation3,layoutDependency:layoutDependency,layoutId:\"Ja1URqPop\",optimized:true,style:{\"--extracted-14qxiz\":\"rgb(51, 51, 51)\",\"--extracted-1iakedh\":\"rgb(51, 51, 51)\",\"--extracted-2gxw0f\":\"rgb(51, 51, 51)\",\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--extracted-ydz9fi\":\"rgb(51, 51, 51)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DLz00lKVX:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"Are you leaving \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZEl0YWxpYw==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(51, 51, 51))\"},children:\"revenue on the table?\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(51, 51, 51))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgb(51, 51, 51))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-ydz9fi, rgb(51, 51, 51))\"},children:[\"Are you making a great \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZEl0YWxpYw==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\"},children:\"first impression?\"})]})]})},Gb4LC09yd:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"Are you leaving \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZEl0YWxpYw==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(51, 51, 51))\"},children:\"revenue on the table?\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(51, 51, 51))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgb(51, 51, 51))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-ydz9fi, rgb(51, 51, 51))\"},children:[\"Are you making a great \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZEl0YWxpYw==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\"},children:\"first impression?\"})]})]})},IhKbSCFQu:{animate:undefined,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"Are you leaving \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZEl0YWxpYw==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(51, 51, 51))\"},children:\"revenue on the table?\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(51, 51, 51))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgb(51, 51, 51))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-ydz9fi, rgb(51, 51, 51))\"},children:[\"Are you making a great \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZEl0YWxpYw==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\"},children:\"first impression?\"})]})]}),initial:undefined,optimized:undefined},lq1FwdeIX:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"Are you leaving \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZEl0YWxpYw==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(51, 51, 51))\"},children:\"revenue on the table?\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(51, 51, 51))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgb(51, 51, 51))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-ydz9fi, rgb(51, 51, 51))\"},children:[\"Are you making a great \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZEl0YWxpYw==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\"},children:\"first impression?\"})]})]})},nVnm6GWBB:{animate:undefined,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"Are you leaving \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZEl0YWxpYw==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(51, 51, 51))\"},children:\"revenue on the table?\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(51, 51, 51))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgb(51, 51, 51))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-ydz9fi, rgb(51, 51, 51))\"},children:[\"Are you making a great \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZEl0YWxpYw==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\"},children:\"first impression?\"})]})]}),initial:undefined,optimized:undefined}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ijrwee\",\"data-framer-name\":\"Services\",layoutDependency:layoutDependency,layoutId:\"DSkIuvdy4\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eG3mJzoBB\"},implicitPathVariables:undefined},{href:{webPageId:\"eG3mJzoBB\"},implicitPathVariables:undefined},{href:{webPageId:\"eG3mJzoBB\"},implicitPathVariables:undefined},{href:{webPageId:\"eG3mJzoBB\"},implicitPathVariables:undefined},{href:{webPageId:\"eG3mJzoBB\"},implicitPathVariables:undefined},{href:{webPageId:\"eG3mJzoBB\"},implicitPathVariables:undefined},{href:{webPageId:\"eG3mJzoBB\"},implicitPathVariables:undefined},{href:{webPageId:\"eG3mJzoBB\"},implicitPathVariables:undefined},{href:{webPageId:\"eG3mJzoBB\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"219.3333px\",y:(componentViewport?.y||0)+(64+((componentViewport?.height||686)-88-564)/2)+0+324+0+0,...addPropertyOverrides({aveLkt31i:{width:`max((max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 48px) / 3, 219px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||572)-48-524)/2)+0+284+0+0},DLz00lKVX:{width:`max(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 219px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||1027)-48-978)/2)+0+226+0+0},Gb4LC09yd:{width:`min(max(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 219px), 500px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||816)-48-978)/2)+0+226+0+0},IhKbSCFQu:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 219px), 500px)`,y:(componentViewport?.y||0)+24+0+0+136+0+0},lq1FwdeIX:{width:`max(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 219px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||1027)-48-978)/2)+0+226+0+0},nVnm6GWBB:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 219px), 500px)`,y:(componentViewport?.y||0)+24+0+0+136+0+0},oMl84ysvd:{width:`max((max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 48px) / 3, 238px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||572)-48-524)/2)+0+284+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-bes6du-container\",\"data-framer-appear-id\":\"bes6du\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"Wc9p4Z0TO-container\",nodeId:\"Wc9p4Z0TO\",optimized:true,rendersWithMotion:true,scopeId:\"KF_glbE47\",...addPropertyOverrides({nVnm6GWBB:{initial:animation6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(HubspotCard,{height:\"100%\",id:\"Wc9p4Z0TO\",knc9svhs_:resolvedLinks[0],layoutId:\"Wc9p4Z0TO\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"hX3NTXuBE\",width:\"100%\",...addPropertyOverrides({aveLkt31i:{knc9svhs_:resolvedLinks[3]},DLz00lKVX:{knc9svhs_:resolvedLinks[6]},Gb4LC09yd:{knc9svhs_:resolvedLinks[7],variant:\"yBYRop6AH\"},IhKbSCFQu:{knc9svhs_:resolvedLinks[8],variant:\"yBYRop6AH\"},lq1FwdeIX:{knc9svhs_:resolvedLinks[5]},niKD1Bdkp:{knc9svhs_:resolvedLinks[1]},nVnm6GWBB:{knc9svhs_:resolvedLinks[4],variant:\"yBYRop6AH\"},oMl84ysvd:{knc9svhs_:resolvedLinks[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"cSUz1cr5Y\"},implicitPathVariables:undefined},{href:{webPageId:\"cSUz1cr5Y\"},implicitPathVariables:undefined},{href:{webPageId:\"cSUz1cr5Y\"},implicitPathVariables:undefined},{href:{webPageId:\"cSUz1cr5Y\"},implicitPathVariables:undefined},{href:{webPageId:\"Ht9Ds59yC\"},implicitPathVariables:undefined},{href:{webPageId:\"cSUz1cr5Y\"},implicitPathVariables:undefined},{href:{webPageId:\"cSUz1cr5Y\"},implicitPathVariables:undefined},{href:{webPageId:\"Ht9Ds59yC\"},implicitPathVariables:undefined},{href:{webPageId:\"Ht9Ds59yC\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"219.3333px\",y:(componentViewport?.y||0)+(64+((componentViewport?.height||686)-88-564)/2)+0+324+0+0,...addPropertyOverrides({aveLkt31i:{width:`max((max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 48px) / 3, 219px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||572)-48-524)/2)+0+284+0+0},DLz00lKVX:{width:`max(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 219px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||1027)-48-978)/2)+0+226+0+256},Gb4LC09yd:{width:`min(max(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 219px), 500px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||816)-48-978)/2)+0+226+0+256},IhKbSCFQu:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 219px), 500px)`,y:(componentViewport?.y||0)+24+0+0+136+0+512},lq1FwdeIX:{width:`max(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 219px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||1027)-48-978)/2)+0+226+0+256},nVnm6GWBB:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 219px), 500px)`,y:(componentViewport?.y||0)+24+0+0+136+0+512},oMl84ysvd:{width:`max((max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 48px) / 3, 238px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||572)-48-524)/2)+0+284+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation7,className:\"framer-cibpcv-container\",\"data-framer-appear-id\":\"cibpcv\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"pwwVtZUx9-container\",nodeId:\"pwwVtZUx9\",optimized:true,rendersWithMotion:true,scopeId:\"KF_glbE47\",...addPropertyOverrides({nVnm6GWBB:{initial:animation6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(HubspotCard,{height:\"100%\",id:\"pwwVtZUx9\",knc9svhs_:resolvedLinks1[0],layoutId:\"pwwVtZUx9\",style:{width:\"100%\"},variant:\"q45u6rIuz\",width:\"100%\",...addPropertyOverrides({aveLkt31i:{knc9svhs_:resolvedLinks1[3]},DLz00lKVX:{knc9svhs_:resolvedLinks1[6]},Gb4LC09yd:{knc9svhs_:resolvedLinks1[7],style:{maxWidth:\"100%\",width:\"100%\"},variant:\"qgkXFfdBi\"},IhKbSCFQu:{knc9svhs_:resolvedLinks1[8],style:{maxWidth:\"100%\",width:\"100%\"},variant:\"qgkXFfdBi\"},lq1FwdeIX:{knc9svhs_:resolvedLinks1[5]},niKD1Bdkp:{knc9svhs_:resolvedLinks1[1]},nVnm6GWBB:{knc9svhs_:resolvedLinks1[4],style:{maxWidth:\"100%\",width:\"100%\"},variant:\"qgkXFfdBi\"},oMl84ysvd:{knc9svhs_:resolvedLinks1[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Ht9Ds59yC\"},implicitPathVariables:undefined},{href:{webPageId:\"Ht9Ds59yC\"},implicitPathVariables:undefined},{href:{webPageId:\"Ht9Ds59yC\"},implicitPathVariables:undefined},{href:{webPageId:\"Ht9Ds59yC\"},implicitPathVariables:undefined},{href:{webPageId:\"cSUz1cr5Y\"},implicitPathVariables:undefined},{href:{webPageId:\"Ht9Ds59yC\"},implicitPathVariables:undefined},{href:{webPageId:\"Ht9Ds59yC\"},implicitPathVariables:undefined},{href:{webPageId:\"cSUz1cr5Y\"},implicitPathVariables:undefined},{href:{webPageId:\"cSUz1cr5Y\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"219.3333px\",y:(componentViewport?.y||0)+(64+((componentViewport?.height||686)-88-564)/2)+0+324+0+0,...addPropertyOverrides({aveLkt31i:{width:`max((max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 48px) / 3, 219px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||572)-48-524)/2)+0+284+0+0},DLz00lKVX:{width:`max(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 219px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||1027)-48-978)/2)+0+226+0+512},Gb4LC09yd:{width:`min(max(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 219px), 500px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||816)-48-978)/2)+0+226+0+512},IhKbSCFQu:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 219px), 500px)`,y:(componentViewport?.y||0)+24+0+0+136+0+256},lq1FwdeIX:{width:`max(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 219px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||1027)-48-978)/2)+0+226+0+512},nVnm6GWBB:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 219px), 500px)`,y:(componentViewport?.y||0)+24+0+0+136+0+256},oMl84ysvd:{width:`max((max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 48px) / 3, 238px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||572)-48-524)/2)+0+284+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation8,className:\"framer-146ppsm-container\",\"data-framer-appear-id\":\"146ppsm\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"CV0NHVri7-container\",nodeId:\"CV0NHVri7\",optimized:true,rendersWithMotion:true,scopeId:\"KF_glbE47\",...addPropertyOverrides({nVnm6GWBB:{initial:animation6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(HubspotCard,{height:\"100%\",id:\"CV0NHVri7\",knc9svhs_:resolvedLinks2[0],layoutId:\"CV0NHVri7\",style:{width:\"100%\"},variant:\"mzHLWzi0F\",width:\"100%\",...addPropertyOverrides({aveLkt31i:{knc9svhs_:resolvedLinks2[3]},DLz00lKVX:{knc9svhs_:resolvedLinks2[6]},Gb4LC09yd:{knc9svhs_:resolvedLinks2[7],style:{maxWidth:\"100%\",width:\"100%\"},variant:\"cWVLLFV_5\"},IhKbSCFQu:{knc9svhs_:resolvedLinks2[8],style:{maxWidth:\"100%\",width:\"100%\"},variant:\"cWVLLFV_5\"},lq1FwdeIX:{knc9svhs_:resolvedLinks2[5]},niKD1Bdkp:{knc9svhs_:resolvedLinks2[1]},nVnm6GWBB:{knc9svhs_:resolvedLinks2[4],style:{maxWidth:\"100%\",width:\"100%\"},variant:\"cWVLLFV_5\"},oMl84ysvd:{knc9svhs_:resolvedLinks2[2]}},baseVariant,gestureVariant)})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n9q8s8\",\"data-framer-name\":\"Black Man\",layoutDependency:layoutDependency,layoutId:\"c7SfeASzQ\",style:{backgroundColor:\"var(--token-93deb8fe-cae5-4a22-aa7f-f609e06ae4a7, rgb(231, 231, 231))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation9,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(64+((componentViewport?.height||686)-88-598)/2)+0+0),pixelHeight:1200,pixelWidth:682,sizes:\"343px\",src:\"https://framerusercontent.com/images/nQR2leZuCJ9CLRDIideoLgw6GEs.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/nQR2leZuCJ9CLRDIideoLgw6GEs.png?scale-down-to=1024&lossless=1 581w,https://framerusercontent.com/images/nQR2leZuCJ9CLRDIideoLgw6GEs.png?lossless=1 682w\"},className:\"framer-iip4mb\",\"data-framer-appear-id\":\"iip4mb\",initial:animation10,layoutDependency:layoutDependency,layoutId:\"hwhuge53D\",optimized:true,...addPropertyOverrides({niKD1Bdkp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(64+((componentViewport?.height||686)-88-598)/2)+0+598),pixelHeight:1200,pixelWidth:682,sizes:\"343px\",src:\"https://framerusercontent.com/images/nQR2leZuCJ9CLRDIideoLgw6GEs.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/nQR2leZuCJ9CLRDIideoLgw6GEs.png?scale-down-to=1024&lossless=1 581w,https://framerusercontent.com/images/nQR2leZuCJ9CLRDIideoLgw6GEs.png?lossless=1 682w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(64+((componentViewport?.height||686)-88-598)/2)+0+598),pixelHeight:3855,pixelWidth:2422,sizes:\"345px\",src:\"https://framerusercontent.com/images/UG4sLR8nSWvUJKzYFtOpxYjPYJE.png\",srcSet:\"https://framerusercontent.com/images/UG4sLR8nSWvUJKzYFtOpxYjPYJE.png?scale-down-to=1024 643w,https://framerusercontent.com/images/UG4sLR8nSWvUJKzYFtOpxYjPYJE.png?scale-down-to=2048 1286w,https://framerusercontent.com/images/UG4sLR8nSWvUJKzYFtOpxYjPYJE.png 2422w\"},className:\"framer-lruh51\",layoutDependency:layoutDependency,layoutId:\"CwZVg0fo9\",...addPropertyOverrides({niKD1Bdkp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(64+((componentViewport?.height||686)-88-598)/2)+0+0),pixelHeight:3855,pixelWidth:2422,sizes:\"345px\",src:\"https://framerusercontent.com/images/UG4sLR8nSWvUJKzYFtOpxYjPYJE.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/UG4sLR8nSWvUJKzYFtOpxYjPYJE.png?scale-down-to=1024&lossless=1 643w,https://framerusercontent.com/images/UG4sLR8nSWvUJKzYFtOpxYjPYJE.png?scale-down-to=2048&lossless=1 1286w,https://framerusercontent.com/images/UG4sLR8nSWvUJKzYFtOpxYjPYJE.png?lossless=1 2422w\"}}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wGGkl.framer-ozduvs, .framer-wGGkl .framer-ozduvs { display: block; }\",\".framer-wGGkl.framer-e9tb6n { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: hidden; padding: 64px 64px 24px 64px; position: relative; width: 1200px; }\",\".framer-wGGkl .framer-spy5u2 { flex: none; height: 50px; left: 64px; overflow: visible; position: absolute; top: calc(45.48104956268224% - 50px / 2); width: 484px; z-index: 1; }\",\".framer-wGGkl .framer-1kdfn8j { bottom: 5px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; }\",\".framer-wGGkl .framer-d401u2-container { flex: none; height: 118px; position: absolute; right: 346px; top: calc(49.69788519637465% - 118px / 2); width: 120px; z-index: 2; }\",\".framer-wGGkl .framer-zpwqsp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-wGGkl .framer-1vcli62 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 260px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-wGGkl .framer-bg5gzt { flex: none; height: 145px; overflow: hidden; position: relative; width: 100%; }\",\".framer-wGGkl .framer-lpi2ix { bottom: -175px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre-wrap; width: 538px; word-break: break-word; word-wrap: break-word; }\",\".framer-wGGkl .framer-ijrwee { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(219px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 706px; }\",\".framer-wGGkl .framer-bes6du-container { align-self: start; flex: none; height: 100%; justify-self: start; max-width: 100%; position: relative; width: 100%; }\",\".framer-wGGkl .framer-cibpcv-container, .framer-wGGkl .framer-146ppsm-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-wGGkl .framer-1n9q8s8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 598px; justify-content: flex-start; max-width: 341px; overflow: hidden; padding: 0px; position: relative; width: 32%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-wGGkl .framer-iip4mb { flex: none; height: 598px; overflow: hidden; position: relative; width: 343px; }\",\".framer-wGGkl .framer-lruh51 { flex: none; height: 598px; overflow: hidden; position: relative; width: 345px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wGGkl .framer-zpwqsp, .framer-wGGkl .framer-1vcli62, .framer-wGGkl .framer-1n9q8s8 { gap: 0px; } .framer-wGGkl .framer-zpwqsp > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-wGGkl .framer-zpwqsp > :first-child, .framer-wGGkl .framer-1vcli62 > :first-child, .framer-wGGkl .framer-1n9q8s8 > :first-child { margin-top: 0px; } .framer-wGGkl .framer-zpwqsp > :last-child, .framer-wGGkl .framer-1vcli62 > :last-child, .framer-wGGkl .framer-1n9q8s8 > :last-child { margin-bottom: 0px; } .framer-wGGkl .framer-1vcli62 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-wGGkl .framer-1n9q8s8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-wGGkl.framer-v-1hpivke .framer-lpi2ix { bottom: unset; top: -190px; }\",\".framer-wGGkl.framer-v-1hpivke .framer-iip4mb { order: 1; }\",\".framer-wGGkl.framer-v-1hpivke .framer-lruh51 { order: 0; }\",\".framer-wGGkl.framer-v-kszi4s.framer-e9tb6n, .framer-wGGkl.framer-v-1ms49ed.framer-e9tb6n { padding: 24px; width: 810px; }\",\".framer-wGGkl.framer-v-kszi4s .framer-spy5u2 { left: 27px; top: 214px; }\",\".framer-wGGkl.framer-v-kszi4s .framer-1kdfn8j { bottom: unset; top: -4px; }\",\".framer-wGGkl.framer-v-kszi4s .framer-d401u2-container, .framer-wGGkl.framer-v-1ms49ed .framer-d401u2-container { right: 24px; top: 185px; }\",\".framer-wGGkl.framer-v-kszi4s .framer-1vcli62, .framer-wGGkl.framer-v-1ms49ed .framer-1vcli62 { height: 220px; }\",\".framer-wGGkl.framer-v-kszi4s .framer-ijrwee { grid-template-columns: repeat(3, minmax(238px, 1fr)); width: 100%; }\",\".framer-wGGkl.framer-v-1ms49ed .framer-spy5u2 { left: 30px; top: 190px; }\",\".framer-wGGkl.framer-v-1ms49ed .framer-lpi2ix { bottom: unset; top: -202px; }\",\".framer-wGGkl.framer-v-1ms49ed .framer-ijrwee { width: 100%; }\",\".framer-wGGkl.framer-v-r1yncc.framer-e9tb6n { flex-direction: column; gap: 24px; justify-content: flex-start; max-width: 500px; padding: 24px 16px 24px 16px; width: 340px; }\",\".framer-wGGkl.framer-v-r1yncc .framer-spy5u2 { left: calc(47.647058823529434% - 288px / 2); order: 0; top: 99px; width: 288px; }\",\".framer-wGGkl.framer-v-r1yncc .framer-d401u2-container, .framer-wGGkl.framer-v-bjxw47 .framer-d401u2-container { aspect-ratio: 1.0169491525423728 / 1; height: var(--framer-aspect-ratio-supported, 118px); order: 2; position: relative; right: unset; top: unset; }\",\".framer-wGGkl.framer-v-r1yncc .framer-zpwqsp, .framer-wGGkl.framer-v-bjxw47 .framer-zpwqsp { flex: none; gap: 58px; order: 1; width: 100%; }\",\".framer-wGGkl.framer-v-r1yncc .framer-1vcli62, .framer-wGGkl.framer-v-bjxw47 .framer-1vcli62 { height: 78px; overflow: hidden; }\",\".framer-wGGkl.framer-v-r1yncc .framer-lpi2ix { bottom: unset; right: 16px; top: 37px; width: unset; }\",\".framer-wGGkl.framer-v-r1yncc .framer-ijrwee, .framer-wGGkl.framer-v-3v232n .framer-ijrwee, .framer-wGGkl.framer-v-bjxw47 .framer-ijrwee { gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(219px, 1fr)); grid-template-rows: repeat(1, min-content); width: 100%; }\",\".framer-wGGkl.framer-v-r1yncc .framer-bes6du-container, .framer-wGGkl.framer-v-bjxw47 .framer-bes6du-container { height: auto; max-width: 500px; order: 0; }\",\".framer-wGGkl.framer-v-r1yncc .framer-cibpcv-container, .framer-wGGkl.framer-v-bjxw47 .framer-cibpcv-container { height: auto; max-width: 500px; order: 2; }\",\".framer-wGGkl.framer-v-r1yncc .framer-146ppsm-container, .framer-wGGkl.framer-v-bjxw47 .framer-146ppsm-container { height: auto; max-width: 500px; order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wGGkl.framer-v-r1yncc.framer-e9tb6n, .framer-wGGkl.framer-v-r1yncc .framer-zpwqsp, .framer-wGGkl.framer-v-r1yncc .framer-ijrwee { gap: 0px; } .framer-wGGkl.framer-v-r1yncc.framer-e9tb6n > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-wGGkl.framer-v-r1yncc.framer-e9tb6n > :first-child, .framer-wGGkl.framer-v-r1yncc .framer-zpwqsp > :first-child { margin-top: 0px; } .framer-wGGkl.framer-v-r1yncc.framer-e9tb6n > :last-child, .framer-wGGkl.framer-v-r1yncc .framer-zpwqsp > :last-child { margin-bottom: 0px; } .framer-wGGkl.framer-v-r1yncc .framer-zpwqsp > * { margin: 0px; margin-bottom: calc(58px / 2); margin-top: calc(58px / 2); } .framer-wGGkl.framer-v-r1yncc .framer-ijrwee > *, .framer-wGGkl.framer-v-r1yncc .framer-ijrwee > :first-child, .framer-wGGkl.framer-v-r1yncc .framer-ijrwee > :last-child { margin: 0px; } }\",\".framer-wGGkl.framer-v-1prywz2.framer-e9tb6n { cursor: pointer; max-width: 320px; padding: 24px 16px 24px 16px; width: 320px; }\",\".framer-wGGkl.framer-v-1prywz2 .framer-d401u2-container, .framer-wGGkl.framer-v-qporqo .framer-d401u2-container { left: calc(50.00000000000002% - 120px / 2); right: unset; top: 127px; }\",\".framer-wGGkl.framer-v-1prywz2 .framer-1vcli62, .framer-wGGkl.framer-v-qporqo .framer-1vcli62, .framer-wGGkl.framer-v-3v232n .framer-1vcli62 { height: 162px; }\",\".framer-wGGkl.framer-v-1prywz2 .framer-lpi2ix { bottom: unset; right: 0px; top: -165px; width: unset; }\",\".framer-wGGkl.framer-v-1prywz2 .framer-ijrwee, .framer-wGGkl.framer-v-qporqo .framer-ijrwee { gap: 16px; grid-template-columns: repeat(1, minmax(219px, 1fr)); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wGGkl.framer-v-1prywz2 .framer-ijrwee { gap: 0px; } .framer-wGGkl.framer-v-1prywz2 .framer-ijrwee > *, .framer-wGGkl.framer-v-1prywz2 .framer-ijrwee > :first-child, .framer-wGGkl.framer-v-1prywz2 .framer-ijrwee > :last-child { margin: 0px; } }\",\".framer-wGGkl.framer-v-qporqo.framer-e9tb6n { cursor: pointer; padding: 24px 16px 24px 16px; width: 320px; }\",\".framer-wGGkl.framer-v-qporqo .framer-lpi2ix { bottom: -83px; width: 272px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wGGkl.framer-v-qporqo .framer-ijrwee { gap: 0px; } .framer-wGGkl.framer-v-qporqo .framer-ijrwee > *, .framer-wGGkl.framer-v-qporqo .framer-ijrwee > :first-child, .framer-wGGkl.framer-v-qporqo .framer-ijrwee > :last-child { margin: 0px; } }\",\".framer-wGGkl.framer-v-3v232n.framer-e9tb6n { cursor: pointer; max-width: 500px; padding: 24px 16px 24px 16px; width: 320px; }\",\".framer-wGGkl.framer-v-3v232n .framer-d401u2-container { aspect-ratio: 1.0169491525423728 / 1; height: var(--framer-aspect-ratio-supported, 118px); left: 50%; right: unset; top: 127px; }\",\".framer-wGGkl.framer-v-3v232n .framer-lpi2ix { bottom: unset; top: -154px; width: 272px; }\",\".framer-wGGkl.framer-v-3v232n .framer-bes6du-container, .framer-wGGkl.framer-v-3v232n .framer-cibpcv-container, .framer-wGGkl.framer-v-3v232n .framer-146ppsm-container { height: auto; max-width: 500px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wGGkl.framer-v-3v232n .framer-ijrwee { gap: 0px; } .framer-wGGkl.framer-v-3v232n .framer-ijrwee > *, .framer-wGGkl.framer-v-3v232n .framer-ijrwee > :first-child, .framer-wGGkl.framer-v-3v232n .framer-ijrwee > :last-child { margin: 0px; } }\",\".framer-wGGkl.framer-v-bjxw47.framer-e9tb6n { flex-direction: column; gap: 24px; height: 828px; justify-content: flex-start; max-width: 500px; padding: 24px 16px 24px 16px; width: 340px; }\",\".framer-wGGkl.framer-v-bjxw47 .framer-spy5u2 { left: unset; order: 0; right: -164px; top: 102px; }\",\".framer-wGGkl.framer-v-bjxw47 .framer-lpi2ix { bottom: unset; top: -134px; width: 272px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wGGkl.framer-v-bjxw47.framer-e9tb6n, .framer-wGGkl.framer-v-bjxw47 .framer-zpwqsp, .framer-wGGkl.framer-v-bjxw47 .framer-ijrwee { gap: 0px; } .framer-wGGkl.framer-v-bjxw47.framer-e9tb6n > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-wGGkl.framer-v-bjxw47.framer-e9tb6n > :first-child, .framer-wGGkl.framer-v-bjxw47 .framer-zpwqsp > :first-child { margin-top: 0px; } .framer-wGGkl.framer-v-bjxw47.framer-e9tb6n > :last-child, .framer-wGGkl.framer-v-bjxw47 .framer-zpwqsp > :last-child { margin-bottom: 0px; } .framer-wGGkl.framer-v-bjxw47 .framer-zpwqsp > * { margin: 0px; margin-bottom: calc(58px / 2); margin-top: calc(58px / 2); } .framer-wGGkl.framer-v-bjxw47 .framer-ijrwee > *, .framer-wGGkl.framer-v-bjxw47 .framer-ijrwee > :first-child, .framer-wGGkl.framer-v-bjxw47 .framer-ijrwee > :last-child { margin: 0px; } }\",...sharedStyle.css,'.framer-wGGkl[data-border=\"true\"]::after, .framer-wGGkl [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 686\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"niKD1Bdkp\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"oMl84ysvd\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"aveLkt31i\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"nVnm6GWBB\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"500px\",null,null]},\"lq1FwdeIX\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"320px\",null,null]},\"DLz00lKVX\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"Gb4LC09yd\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"500px\",null,null]},\"IhKbSCFQu\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"500px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKF_glbE47=withCSS(Component,css,\"framer-wGGkl\");export default FramerKF_glbE47;FramerKF_glbE47.displayName=\"hero 1\";FramerKF_glbE47.defaultProps={height:686,width:1200};addPropertyControls(FramerKF_glbE47,{variant:{options:[\"CulKuxf5S\",\"niKD1Bdkp\",\"oMl84ysvd\",\"aveLkt31i\",\"nVnm6GWBB\",\"lq1FwdeIX\",\"DLz00lKVX\",\"Gb4LC09yd\",\"IhKbSCFQu\"],optionTitles:[\"Desktop Hero section\",\"Variant 2\",\"Tablet\",\"Tablet dos\",\"Mobile\",\"Mobile 2\",\"Variant 7\",\"Variant 9\",\"Variant 10\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerKF_glbE47,[{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/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\"}]},...HubspotLogoFonts,...HubspotCardFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKF_glbE47\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"niKD1Bdkp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"oMl84ysvd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"aveLkt31i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"nVnm6GWBB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"500px\\\",null,null]},\\\"lq1FwdeIX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"320px\\\",null,null]},\\\"DLz00lKVX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"Gb4LC09yd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"500px\\\",null,null]},\\\"IhKbSCFQu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"500px\\\",null,null]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"686\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KF_glbE47.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,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 Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import ButtonMenuBarFull from\"#framer/local/canvasComponent/IdR0dC7Bz/IdR0dC7Bz.js\";import Hero1 from\"#framer/local/canvasComponent/KF_glbE47/KF_glbE47.js\";import NewMenuColors from\"#framer/local/canvasComponent/qE6IfyOIS/qE6IfyOIS.js\";import Footer from\"#framer/local/canvasComponent/yCywixkJE/yCywixkJE.js\";import EBCCardWebsite from\"#framer/local/canvasComponent/zGlNPF8AZ/zGlNPF8AZ.js\";import HubspotReview from\"#framer/local/canvasComponent/ZUOAaU6C2/ZUOAaU6C2.js\";import*as sharedStyle1 from\"#framer/local/css/EH2m_u3MY/EH2m_u3MY.js\";import*as sharedStyle from\"#framer/local/css/GXlrXm4Wm/GXlrXm4Wm.js\";import*as sharedStyle3 from\"#framer/local/css/HgbbYrwvT/HgbbYrwvT.js\";import*as sharedStyle2 from\"#framer/local/css/YjM7Sjj4E/YjM7Sjj4E.js\";import metadataProvider from\"#framer/local/webPageMetadata/Ry9rzN5pd/Ry9rzN5pd.js\";const NewMenuColorsFonts=getFonts(NewMenuColors);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const Hero1Fonts=getFonts(Hero1);const EBCCardWebsiteFonts=getFonts(EBCCardWebsite);const CarouselFonts=getFonts(Carousel);const ButtonMenuBarFullFonts=getFonts(ButtonMenuBarFull);const TickerFonts=getFonts(Ticker);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const HubspotReviewFonts=getFonts(HubspotReview);const EmbedFonts=getFonts(Embed);const FooterFonts=getFonts(Footer);const breakpoints={imudaHM_7:\"(max-width: 829px)\",mJOnVcw7n:\"(min-width: 830px) and (max-width: 1219px)\",U05VR5gVW:\"(min-width: 1220px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Y0LYY\";const variantClassNames={imudaHM_7:\"framer-v-l6bkt5\",mJOnVcw7n:\"framer-v-z2da3d\",U05VR5gVW:\"framer-v-1w13n1a\"};const transition1={damping:37,delay:1,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:80};const transition2={damping:30,delay:.6,mass:1,stiffness:130,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:150};const transition4={damping:30,delay:0,mass:1,stiffness:151,type:\"spring\"};const transition5={damping:30,delay:.2,mass:1,stiffness:151,type:\"spring\"};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\":\"imudaHM_7\",Desktop:\"U05VR5gVW\",Tablet:\"mJOnVcw7n\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"U05VR5gVW\"};};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,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"imudaHM_7\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"imudaHM_7\")return false;return true;};const elementId=useRouteElementId(\"i06khXM57\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"SmfNv0fJU\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"U05VR5gVW\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, rgb(243, 243, 243)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1w13n1a\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{imudaHM_7:{y:(componentViewport?.y||0)+0+0},mJOnVcw7n:{y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,width:`min(${componentViewport?.width||\"100vw\"}, 1220px)`,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1ne06it-container\",\"data-framer-appear-id\":\"1ne06it\",initial:animation1,nodeId:\"h7wiRxlsa\",optimized:true,rendersWithMotion:true,scopeId:\"Ry9rzN5pd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{imudaHM_7:{variant:\"CfaCVmwTd\"},mJOnVcw7n:{variant:\"CfaCVmwTd\"}},children:/*#__PURE__*/_jsx(NewMenuColors,{height:\"100%\",id:\"h7wiRxlsa\",layoutId:\"h7wiRxlsa\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Ogb7ySiMU\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w3ufzk\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{imudaHM_7:{width:`min(${componentViewport?.width||\"100vw\"}, 500px)`,y:(componentViewport?.y||0)+0+89+0+0},mJOnVcw7n:{y:(componentViewport?.y||0)+0+89+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:686,width:`min(${componentViewport?.width||\"100vw\"}, 1220px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y32pyt-container\",id:\"1y32pyt\",nodeId:\"z1dXj2WTd\",scopeId:\"Ry9rzN5pd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{imudaHM_7:{variant:\"nVnm6GWBB\"},mJOnVcw7n:{variant:\"oMl84ysvd\"}},children:/*#__PURE__*/_jsx(Hero1,{height:\"100%\",id:\"z1dXj2WTd\",layoutId:\"z1dXj2WTd\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"CulKuxf5S\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-col0o2-container hidden-1w13n1a hidden-z2da3d\",isModuleExternal:true,nodeId:\"X47XyWCrt\",scopeId:\"Ry9rzN5pd\",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:10,height:\"100%\",id:\"X47XyWCrt\",layoutId:\"X47XyWCrt\",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:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:0,dotsRadius:200,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:449,width:\"309px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3z91mq-container\",inComponentSlot:true,nodeId:\"XiHdq4lsl\",rendersWithMotion:true,scopeId:\"Ry9rzN5pd\",children:/*#__PURE__*/_jsx(EBCCardWebsite,{height:\"100%\",id:\"XiHdq4lsl\",layoutId:\"XiHdq4lsl\",style:{width:\"100%\"},variant:\"b_AMUZY1w\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:449,width:\"309px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a8karm-container\",inComponentSlot:true,nodeId:\"QpoccnIS3\",rendersWithMotion:true,scopeId:\"Ry9rzN5pd\",children:/*#__PURE__*/_jsx(EBCCardWebsite,{height:\"100%\",id:\"QpoccnIS3\",layoutId:\"QpoccnIS3\",style:{width:\"100%\"},variant:\"heHGp8plb\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:449,width:\"309px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-c1gg0c-container\",inComponentSlot:true,nodeId:\"M9_1OjJ_L\",rendersWithMotion:true,scopeId:\"Ry9rzN5pd\",children:/*#__PURE__*/_jsx(EBCCardWebsite,{height:\"100%\",id:\"M9_1OjJ_L\",layoutId:\"M9_1OjJ_L\",style:{width:\"100%\"},variant:\"vz1fBfRmh\",width:\"100%\"})})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1llwhfc hidden-1w13n1a hidden-z2da3d\",\"data-framer-name\":\"Testimonials 2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ia4t3g\",\"data-framer-name\":\"\u201C\",fill:'var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)) /* {\"name\":\"dark grey\"} */',intrinsicHeight:131,intrinsicWidth:164,svg:'<svg width=\"164\" height=\"131\" viewBox=\"-1 -1 164 131\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M126.509 128.992C114.413 128.992 104.391 125.036 96.4427 117.125C88.8398 109.213 85.0383 97.8621 85.0383 83.071C85.0383 67.248 89.531 51.5969 98.5162 36.1179C107.847 20.6388 120.807 8.59949 137.395 0L149.318 18.0589C131.347 30.4422 120.634 46.0932 117.178 65.0121C120.288 63.6362 123.917 62.9482 128.064 62.9482C137.74 62.9482 145.689 66.044 151.909 72.2357C158.13 78.4273 161.24 86.3388 161.24 95.9702C161.24 105.602 157.957 113.513 151.391 119.705C144.825 125.896 136.531 128.992 126.509 128.992ZM41.4705 128.992C29.3749 128.992 19.3529 125.036 11.4044 117.125C3.80146 109.213 0 97.8621 0 83.071C0 67.248 4.49263 51.5969 13.4779 36.1179C22.8087 20.6388 35.7683 8.59949 52.3565 9.00031e-07L64.2792 18.0589C46.3087 30.4422 35.5955 46.0932 32.1396 65.0121C35.2499 63.6362 38.8786 62.9482 43.0256 62.9482C52.702 62.9482 60.6505 66.044 66.8711 72.2357C73.0917 78.4273 76.202 86.3388 76.202 95.9702C76.202 105.602 72.9189 113.513 66.3527 119.705C59.7866 125.896 51.4925 128.992 41.4705 128.992Z\" fill=\"#333333\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oj75y7\",\"data-framer-name\":\"\u201C\",fill:'var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)) /* {\"name\":\"dark grey\"} */',intrinsicHeight:131,intrinsicWidth:164,style:{rotate:-180},svg:'<svg width=\"164\" height=\"131\" viewBox=\"-1 -1 164 131\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M126.509 128.992C114.413 128.992 104.391 125.036 96.4427 117.125C88.8398 109.213 85.0383 97.8621 85.0383 83.071C85.0383 67.248 89.531 51.5969 98.5162 36.1179C107.847 20.6388 120.807 8.59949 137.395 0L149.318 18.0589C131.347 30.4422 120.634 46.0932 117.178 65.0121C120.288 63.6362 123.917 62.9482 128.064 62.9482C137.74 62.9482 145.689 66.044 151.909 72.2357C158.13 78.4273 161.24 86.3388 161.24 95.9702C161.24 105.602 157.957 113.513 151.391 119.705C144.825 125.896 136.531 128.992 126.509 128.992ZM41.4705 128.992C29.3749 128.992 19.3529 125.036 11.4044 117.125C3.80146 109.213 0 97.8621 0 83.071C0 67.248 4.49263 51.5969 13.4779 36.1179C22.8087 20.6388 35.7683 8.59949 52.3565 9.00031e-07L64.2792 18.0589C46.3087 30.4422 35.5955 46.0932 32.1396 65.0121C35.2499 63.6362 38.8786 62.9482 43.0256 62.9482C52.702 62.9482 60.6505 66.044 66.8711 72.2357C73.0917 78.4273 76.202 86.3388 76.202 95.9702C76.202 105.602 72.9189 113.513 66.3527 119.705C59.7866 125.896 51.4925 128.992 41.4705 128.992Z\" fill=\"#333333\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13s1744\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9rjxvy-container\",isModuleExternal:true,nodeId:\"VWX93zk4H\",scopeId:\"Ry9rzN5pd\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-c486fd45-2893-4006-9543-f4b544b4fb5a, rgb(72, 212, 165))\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:20,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:0,height:\"100%\",id:\"VWX93zk4H\",layoutId:\"VWX93zk4H\",padding:0,paddingBottom:40,paddingLeft:40,paddingPerSide:true,paddingRight:40,paddingTop:40,progressObject:{dotsActiveOpacity:.9,dotsBackground:\"rgba(255, 255, 255, 0)\",dotsBlur:0,dotsFill:\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110))\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:16,dotsRadius:200,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13q0lbo\",\"data-framer-name\":\"EBC testimonials\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18l64ea\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16i9uwt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qxsc65\",\"data-styles-preset\":\"GXlrXm4Wm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Paula Inc has been an outstanding partner to Exchange Bank of Canada in rebuilding our website from scratch. They got to know our business and industry far more deeply than we expected from an external vendor. And their care and dedication showed in the final product. Paula is now a key partner for us in multiple projects\"})}),className:\"framer-19cecis\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:54,pixelWidth:259,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RQfHRdSOSNH6KKSY8CF5rjTA8g.svg\"},className:\"framer-ci4s26\",\"data-framer-name\":\"Avatar\"})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yxtppm\",\"data-framer-name\":\"Inukshuk testimonials\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h70z1o\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ye74rw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qxsc65\",\"data-styles-preset\":\"GXlrXm4Wm\",style:{\"--framer-text-alignment\":\"center\"},children:\"[The Paula] team asked all the right questions. They helped us present some complex details about our investment process into a very effective marketing deck, which has been invaluable in telling our story. The entire Inukshuk team were so impressed with the folks at Paula that now we don\u2019t launch any new products without their involvement.\"})}),className:\"framer-1f9jphk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:33,pixelWidth:189,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VXJAc4IfCRjaqpc7Q0inXE2n9CI.svg\"},className:\"framer-lf0j9t\",\"data-framer-name\":\"Avatar\"})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2n0lqk\",\"data-framer-name\":\"CXI testimonials\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u5ay9o\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-v2wac\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qxsc65\",\"data-styles-preset\":\"GXlrXm4Wm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Paula has worked hand in hand with our internal teams to design customer centric solutions that are core to our digital transformation. As a result, we know more than ever about our clients and can provide enhanced experiences for them. We are thrilled to have measurable and personal campaigns at scale.\"})}),className:\"framer-z49qb5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:43,pixelWidth:289,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8tXf3UWGjHK9bJyD2z98x19tF7Y.svg\"},className:\"framer-1mr5t28\",\"data-framer-name\":\"Avatar\"})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z91gb1\",\"data-framer-name\":\"Rethink testimonials\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-82yugt\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xbid1v\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qxsc65\",\"data-styles-preset\":\"GXlrXm4Wm\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Organization = Revenue. \",/*#__PURE__*/_jsx(\"br\",{}),\"That\u2019s the big lesson we drew from this engagement.\",/*#__PURE__*/_jsx(\"br\",{}),\"Paula's work has given us the ability to easily segment and organize our clients, empowering us to act more quickly and find opportunities in places we would have never thought to look.\"]})}),className:\"framer-1ihr9hg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:90,pixelWidth:154,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/U9SkykNTdGy9lmI3diSuJKFDwI.svg\"},className:\"framer-ag9127\",\"data-framer-name\":\"Avatar\"})]})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15ptrh8\",\"data-framer-name\":\"2 Columns Text Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x5yrc5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{imudaHM_7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+89+0+686+24+0+40+0),pixelHeight:2006,pixelWidth:2056,positionX:\"center\",positionY:\"center\",sizes:\"245px\",src:\"https://framerusercontent.com/images/z3otb8JwL5CWxr34qPW0LlFuRM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/z3otb8JwL5CWxr34qPW0LlFuRM.png?scale-down-to=512 512w,https://framerusercontent.com/images/z3otb8JwL5CWxr34qPW0LlFuRM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z3otb8JwL5CWxr34qPW0LlFuRM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/z3otb8JwL5CWxr34qPW0LlFuRM.png 2056w\"}},mJOnVcw7n:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+89+0+686+40+-173.5),pixelHeight:2006,pixelWidth:2056,positionX:\"center\",positionY:\"center\",sizes:\"308px\",src:\"https://framerusercontent.com/images/z3otb8JwL5CWxr34qPW0LlFuRM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/z3otb8JwL5CWxr34qPW0LlFuRM.png?scale-down-to=512 512w,https://framerusercontent.com/images/z3otb8JwL5CWxr34qPW0LlFuRM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z3otb8JwL5CWxr34qPW0LlFuRM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/z3otb8JwL5CWxr34qPW0LlFuRM.png 2056w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:2006,pixelWidth:2056,positionX:\"center\",positionY:\"center\",sizes:\"380px\",src:\"https://framerusercontent.com/images/z3otb8JwL5CWxr34qPW0LlFuRM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/z3otb8JwL5CWxr34qPW0LlFuRM.png?scale-down-to=512 512w,https://framerusercontent.com/images/z3otb8JwL5CWxr34qPW0LlFuRM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z3otb8JwL5CWxr34qPW0LlFuRM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/z3otb8JwL5CWxr34qPW0LlFuRM.png 2056w\"},className:\"framer-m1utfa\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e4fwib\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s778o8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-mu6to1\",\"data-styles-preset\":\"EH2m_u3MY\",style:{\"--framer-text-color\":\"var(--token-18c755bc-86fd-4025-be51-268181b638e5, rgb(157, 250, 219))\"},children:\"Operational Excellence in International Student Recruitment\"})}),className:\"framer-nw0062\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{imudaHM_7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-1feadf05-e145-4403-8b82-fc8fd6dfae92, rgb(255, 255, 255))\"},children:\"How Canadian Institutions Can Revamp Their Marketing and Sales Operations to Boost Enrollment Efficiency\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eu5h9m\",\"data-styles-preset\":\"YjM7Sjj4E\",style:{\"--framer-text-color\":\"var(--token-1feadf05-e145-4403-8b82-fc8fd6dfae92, rgb(255, 255, 255))\"},children:\"How Canadian Institutions Can Revamp Their Marketing and Sales Operations to Boost Enrollment Efficiency\"})}),className:\"framer-i6soot\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{imudaHM_7:{y:(componentViewport?.y||0)+0+89+0+686+24+0+40+263+0+214.4},mJOnVcw7n:{y:(componentViewport?.y||0)+0+89+0+686+40+-130.2+0+219.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15z01z3-container\",nodeId:\"cawpkr8Fr\",scopeId:\"Ry9rzN5pd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{imudaHM_7:{cn6MszD3D:\"Save Your Spot\"}},children:/*#__PURE__*/_jsx(ButtonMenuBarFull,{cn6MszD3D:\"Save Your Spot on Eventbrite\",height:\"100%\",id:\"cawpkr8Fr\",layoutId:\"cawpkr8Fr\",variant:\"tqPWN4wvB\",width:\"100%\",z6NvAdAye:\"https://www.eventbrite.ca/e/operational-excellence-in-international-student-recruitment-tickets-1279361898879?aff=oddtdtcreator\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h6hizl\",\"data-framer-name\":\"Our Clients\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fglyiq\",\"data-framer-name\":\"TExt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mJOnVcw7n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-16948s7\",\"data-styles-preset\":\"HgbbYrwvT\",children:[\"Our \",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Clients \"})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-16948s7\",\"data-styles-preset\":\"HgbbYrwvT\",children:[\"Our \",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Clients\"})})]})}),className:\"framer-1afgaax\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14ozbkn\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1htjq91-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wex8wjS6F\",scopeId:\"Ry9rzN5pd\",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:\"wex8wjS6F\",layoutId:\"wex8wjS6F\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6ejogy\",\"data-framer-name\":\"Inukshuk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1v6tqrx\",\"data-framer-name\":\"Inukshuk_logo\",fill:\"black\",intrinsicHeight:33,intrinsicWidth:189,svg:'<svg width=\"189\" height=\"33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m11.463 30.403 1.429-3.198 1.425 3.198h-2.854Zm-1.742 2.28h.724l.746-1.656h3.392l.733 1.655h.764l-2.84-6.309h-.687l-2.832 6.31Zm10.873-2.837v-2.758h1.587c1.014 0 1.683.465 1.683 1.357 0 .809-.678 1.379-1.719 1.379l-1.551.022Zm-.706 2.836h.706v-2.211h1.524c1.334 0 2.46-.697 2.46-2.054 0-1.234-.927-1.985-2.342-1.985h-2.348v6.25Zm8.598 0h.701v-6.25h-.71l.01 6.25Zm6.753 0h.719v-5.599h2.103v-.651h-4.935v.651h2.103l.01 5.6Zm7.105-2.288 1.442-3.184 1.425 3.197-2.867-.013Zm-1.76 2.288h.724l.742-1.655h3.414l.751 1.655h.76l-2.84-6.309h-.66l-2.89 6.31Zm10.167 0h4.233v-.651h-3.527v-5.6h-.706v6.251Zm13.944 0h.687v-5.065l2.284 3.351h.045l2.284-3.356v5.08h.71v-6.26h-.719l-2.275 3.415-2.284-3.42h-.719l-.013 6.255Zm11.528-2.28 1.43-3.197 1.424 3.198h-2.854Zm-1.741 2.28h.724l.741-1.655h3.415l.733 1.655h.764L78 26.373h-.66l-2.86 6.31Zm10.167 0h.687v-5.124l4.057 5.138h.566v-6.264h-.688v5.038l-3.948-5.02h-.66l-.014 6.232Zm10.832-2.288 1.424-3.184 1.43 3.197-2.854-.013Zm-1.746 2.288h.737l.746-1.655h3.41l.71 1.655h.765l-2.858-6.309h-.66l-2.85 6.31Zm12.709.109a3.81 3.81 0 0 0 2.519-.96v-2.5h-2.587v.638h1.904v1.555a2.921 2.921 0 0 1-1.809.629c-1.524 0-2.483-1.113-2.483-2.61a2.434 2.434 0 0 1 2.293-2.568c.032 0 .063-.005.095-.005a2.655 2.655 0 0 1 1.904.72l.457-.539a3.32 3.32 0 0 0-2.339-.832 3.142 3.142 0 0 0-3.143 3.139v.122a3.074 3.074 0 0 0 3.189 3.215v-.004Zm6.68-.109h4.577v-.647h-3.89v-2.188h3.419V29.2h-3.419v-2.14h3.822v-.642h-4.514v6.264h.005Zm8.516 0h.692v-5.065l2.284 3.351h.032l2.288-3.356v5.08h.706v-6.26h-.72l-2.265 3.415-2.284-3.42h-.733v6.255Zm10.33 0h4.572v-.647h-3.867v-2.188h3.424V29.2h-3.424v-2.14h3.822v-.642h-4.514l-.013 6.264Zm8.552 0h.688v-5.124l4.056 5.138h.566v-6.264h-.67v5.038l-3.948-5.02h-.674l-.018 6.232Zm11.284 0h.715v-5.599h2.103v-.651h-4.907v.651h2.103l-.014 5.6Zm12.605 0h.71v-6.25h-.71v6.25Zm5.097 0h.688v-5.124l4.056 5.138h.566v-6.264h-.688v5.038l-3.948-5.02h-.66l-.014 6.232Zm12.496.109a3.252 3.252 0 0 0 2.506-1.104l-.466-.452a2.726 2.726 0 0 1-2.026.904 2.478 2.478 0 0 1-2.438-2.51c0-.027 0-.054.005-.081a2.457 2.457 0 0 1 2.342-2.569c.032 0 .064-.004.091-.004a2.73 2.73 0 0 1 1.99.84l.484-.52a3.242 3.242 0 0 0-2.433-.994 3.157 3.157 0 0 0-3.171 3.143v.122a3.125 3.125 0 0 0 3.017 3.234h.117l-.018-.01Zm6.083-.109h.81v-.94h-.81v.94Zm-184.164.109a3.26 3.26 0 0 0 2.51-1.104l-.465-.452a2.725 2.725 0 0 1-2.027.904 2.473 2.473 0 0 1-2.433-2.519c0-.022 0-.05.005-.072a2.458 2.458 0 0 1 2.343-2.569c.031 0 .063-.004.09-.004a2.726 2.726 0 0 1 1.967.859l.489-.52a3.283 3.283 0 0 0-2.433-.995 3.154 3.154 0 0 0-3.17 3.242v.019a3.127 3.127 0 0 0 3.034 3.215h.131l-.04-.004ZM19.656 6.609l.294 11.157c.05 1.773.362 2.754.927 2.949.055.018.407.059 1.036.136.534.067.81.158.81.266 0 .177-.204.263-.611.263-.674 0-1.37 0-2.099-.041l-1.194-.04-1.008.04c-.692.027-1.312.04-1.864.04-.407 0-.583-.09-.583-.262 0-.172.23-.208.688-.24l.931-.108c.362-.136.615-.461.66-.846.118-.805.172-1.619.163-2.433l.24-15.734c0-.602.136-.9.344-.9.14 0 .47.271.981.81 1.456 1.555 4.202 4.395 8.24 8.516 1.805 1.877 3.754 3.894 5.848 6.055h.131l-.262-11.926c0-.452-.036-.904-.104-1.352a1.442 1.442 0 0 0-.81-1.04 4.222 4.222 0 0 0-1.406-.159c-.285 0-.425-.08-.425-.24 0-.158.23-.239.687-.239.53 0 1.172 0 1.913.04l1.303.041.927-.04a37.56 37.56 0 0 1 1.674-.04c.406 0 .61.08.61.239 0 .158-.154.24-.475.24-.882 0-1.429.293-1.623.877-.104.48-.159.968-.159 1.46l-.294 16.766c0 .547-.135.81-.343.81-.213 0-.498-.195-.905-.584-1.696-1.687-4.31-4.292-7.838-7.815a124.008 124.008 0 0 1-4.057-4.224l-2.256-2.47-.09.028Zm26.1 6.268v-3.88c0-3.17-.018-5.048-.054-5.631-.05-.85-.434-1.357-1.144-1.51a4.952 4.952 0 0 0-1.036-.082c-.298 0-.452-.081-.452-.24 0-.158.194-.24.583-.24.511 0 1.217 0 2.167.041.95.041 1.501.041 1.71.041.212 0 .705 0 1.528-.04.823-.041 1.402-.041 1.741-.041.34 0 .588.081.588.24 0 .158-.14.239-.407.239a4.393 4.393 0 0 0-.769.081c-.606.104-.931.606-.986 1.516-.036.583-.054 2.464-.054 5.64v3.726c0 3.229.692 5.409 2.072 6.544a5.078 5.078 0 0 0 3.32 1.09 4.972 4.972 0 0 0 3.667-1.434 5.289 5.289 0 0 0 1.325-2.84 24 24 0 0 0 .217-3.78V8.991c0-3.18-.018-5.06-.054-5.64-.054-.854-.434-1.356-1.144-1.515a4.271 4.271 0 0 0-.959-.081c-.299 0-.452-.081-.452-.24 0-.158.185-.24.556-.24.778 0 1.8.023 3.057.082l1.249-.04c.778-.028 1.37-.041 1.782-.041.411 0 .556.081.556.24 0 .158-.159.239-.475.239-.262.004-.52.032-.773.081-.602.104-.928.61-.982 1.51-.036.584-.054 2.461-.054 5.632v2.84a18.293 18.293 0 0 1-.425 4.382 6.828 6.828 0 0 1-2.099 3.614 8.178 8.178 0 0 1-5.526 1.913c-2.588 0-4.555-.61-5.898-1.832-1.574-1.402-2.37-3.74-2.374-7.019Zm29.48-3.88v1.171h.135a578.46 578.46 0 0 0 5.554-5.848c.882-1.044 1.325-1.71 1.325-1.99 0-.303-.118-.48-.357-.533-.24-.06-.358-.14-.358-.263 0-.122.136-.24.407-.24.177 0 .616 0 1.317.041.7.041 1.171.041 1.42.041.248 0 .81 0 1.57-.04.759-.041 1.275-.041 1.541-.041.267 0 .453.081.453.24 0 .158-.132.239-.407.239-.53.005-1.05.1-1.543.294a8.495 8.495 0 0 0-2.872 1.99c-2.618 2.555-4.531 4.468-5.739 5.744.439.583 1.628 1.922 3.56 4.011 1.858 2.022 3.075 3.297 3.65 3.826.845.81 1.451 1.362 1.804 1.647a7.631 7.631 0 0 0 2.026 1.234 4.788 4.788 0 0 0 1.624.385c.23 0 .343.072.343.217 0 .14-.212.262-.637.262H87.74c-.85 0-1.461 0-1.832-.054a4.068 4.068 0 0 1-1.755-.53 10.395 10.395 0 0 1-1.542-1.193c-.543-.462-1.782-1.814-3.718-4.057-1.809-2.085-2.89-3.379-3.243-3.876l-.293-.407h-.136V13.7c0 3.03.027 4.92.081 5.676.055.868.371 1.348.959 1.434.43.068.864.104 1.302.104.231 0 .344.072.344.217 0 .145-.167.262-.502.262-.57 0-1.307 0-2.216-.04l-1.623-.041c-.159 0-.66 0-1.502.04-.841.041-1.456.041-1.85.041-.393 0-.529-.09-.529-.262 0-.172.194-.208.588-.24.262-.036.53-.063.81-.081.407-.09.664-.575.768-1.461.09-.692.136-2.582.136-5.676V8.997c0-3.17-.018-5.048-.054-5.631-.05-.85-.434-1.357-1.144-1.51a5.02 5.02 0 0 0-1.04-.082c-.3 0-.453-.081-.453-.24 0-.158.195-.24.584-.24.529 0 1.248 0 2.152.041l1.57.041c.194 0 .696 0 1.51-.04.814-.041 1.384-.041 1.705-.041.321 0 .557.081.557.24 0 .158-.123.239-.371.239a2.01 2.01 0 0 0-1.303.321 1.73 1.73 0 0 0-.407 1.217c-.036.624-.059 2.519-.059 5.685Zm23.653 12.758a9.557 9.557 0 0 1-3.876-.692.872.872 0 0 1-.507-.9c0-.959.046-2.117.136-3.482.036-.457.14-.688.321-.688s.263.15.263.452c.013.462.095.918.24 1.353.542 1.79 1.808 2.686 3.798 2.686a3.706 3.706 0 0 0 2.687-.981 2.828 2.828 0 0 0 .877-2.049c0-1.47-.868-2.886-2.605-4.251l-1.216-.96c-2.624-2.052-3.935-4.15-3.935-6.295a4.454 4.454 0 0 1 1.7-3.613c1.136-.94 2.614-1.411 4.437-1.411 1.194.004 2.379.158 3.537.452.249.068.371.176.371.317a47.833 47.833 0 0 0-.109 3.193c0 .529-.099.81-.294.81-.194 0-.262-.16-.262-.48a2.833 2.833 0 0 0-.688-1.75 3.503 3.503 0 0 0-2.899-1.303 3.356 3.356 0 0 0-2.31.755 2.531 2.531 0 0 0-.851 1.981 3 3 0 0 0 .602 1.764 10.752 10.752 0 0 0 2.216 2.058l.746.56a14.146 14.146 0 0 1 3.374 3.334 6.228 6.228 0 0 1 .981 3.441 5.178 5.178 0 0 1-2.496 4.623 7.628 7.628 0 0 1-4.238 1.076Zm19.805-12.012h10.135c.109 0 .163-.063.163-.186v-.56c0-3.17-.018-5.048-.054-5.631-.05-.85-.434-1.357-1.145-1.51a5.009 5.009 0 0 0-1.04-.082c-.298 0-.452-.081-.452-.24 0-.158.185-.24.561-.24.529 0 1.257 0 2.175.041.923.041 1.47.041 1.646.041.177 0 .688 0 1.529-.04.841-.041 1.447-.041 1.823-.041.371 0 .556.081.556.24 0 .158-.158.239-.479.239a4.389 4.389 0 0 0-.769.081c-.602.104-.927.611-.982 1.511-.036.583-.054 2.46-.054 5.63v4.682c0 3.007.045 4.902.136 5.675.104.869.452 1.348 1.036 1.434.447.064.9.1 1.352.104.285 0 .407.073.407.217 0 .14-.177.263-.529.263-.656 0-1.466-.014-2.434-.041l-1.7-.04c-.158 0-.656 0-1.488.04s-1.443.04-1.832.04-.561-.09-.561-.262c0-.172.195-.208.584-.24.267-.036.529-.063.809-.08.407-.091.665-.575.769-1.462.091-.692.136-2.582.136-5.676v-2.338a.142.142 0 0 0-.122-.158h-10.176a.138.138 0 0 0-.158.113.07.07 0 0 0 0 .045v2.338c0 3.008.045 4.903.135 5.676.104.869.452 1.348 1.036 1.434.448.063.9.1 1.352.104.285 0 .407.072.407.217 0 .14-.176.262-.529.262-.651 0-1.461-.013-2.433-.04l-1.701-.041c-.158 0-.66 0-1.501.04-.841.041-1.461.041-1.85.041s-.529-.09-.529-.262c0-.172.194-.208.583-.24.267-.036.529-.063.81-.081.407-.09.665-.574.769-1.46.09-.693.135-2.583.135-5.677V8.997c0-3.17-.018-5.048-.054-5.631-.059-.85-.434-1.352-1.144-1.51a5.02 5.02 0 0 0-1.04-.082c-.299 0-.453-.081-.453-.24 0-.158.186-.24.557-.24.529 0 1.262 0 2.18.041.918.041 1.47.041 1.646.041.176 0 .687 0 1.529-.04.841-.041 1.447-.041 1.822-.041.376 0 .556.081.556.24 0 .158-.158.239-.479.239a4.4 4.4 0 0 0-.769.081c-.601.104-.927.611-.981 1.511-.036.583-.054 2.46-.054 5.63v.57c0 .114.054.177.158.177Zm24.508 3.134v-3.88c0-3.17-.018-5.048-.054-5.631-.05-.85-.434-1.357-1.144-1.51a5.02 5.02 0 0 0-1.04-.082c-.299 0-.453-.081-.453-.24 0-.158.195-.24.584-.24.515 0 1.216 0 2.166.041s1.502.041 1.714.041c.213 0 .706 0 1.529-.04.823-.041 1.402-.041 1.741-.041.335 0 .583.081.583.24 0 .158-.14.239-.425.239a4.388 4.388 0 0 0-.768.081c-.602.104-.928.606-.982 1.516-.036.583-.054 2.464-.054 5.64v3.726c0 3.229.692 5.409 2.071 6.544a5.046 5.046 0 0 0 3.32 1.09 4.974 4.974 0 0 0 3.65-1.434 5.274 5.274 0 0 0 1.329-2.84c.168-1.253.24-2.514.213-3.78V8.991c0-3.18-.018-5.06-.054-5.64-.055-.854-.435-1.356-1.145-1.515a4.207 4.207 0 0 0-.954-.081c-.303 0-.452-.081-.452-.24 0-.158.185-.24.561-.24.778 0 1.795.023 3.052.082l1.249-.04a55.64 55.64 0 0 1 1.782-.041c.407 0 .56.081.56.24 0 .158-.158.239-.479.239a4.389 4.389 0 0 0-.769.081c-.606.104-.927.606-.986 1.51-.031.584-.049 2.461-.054 5.632v2.84a18.286 18.286 0 0 1-.407 4.382 6.856 6.856 0 0 1-2.099 3.614 8.176 8.176 0 0 1-5.526 1.913c-2.587 0-4.555-.61-5.902-1.832-1.57-1.402-2.357-3.74-2.357-7.019Zm30.271-3.88v1.171h.135a521.59 521.59 0 0 0 5.554-5.848c.882-1.044 1.33-1.71 1.33-1.99s-.122-.48-.362-.533c-.24-.06-.357-.14-.357-.263 0-.122.135-.24.407-.24.176 0 .615 0 1.316.041.701.041 1.171.041 1.42.041.249 0 .81 0 1.569-.04.76-.041 1.276-.041 1.543-.041.262 0 .452.081.452.24 0 .158-.131.239-.407.239a4.384 4.384 0 0 0-1.542.294 8.483 8.483 0 0 0-2.872 1.99c-2.619 2.555-4.532 4.468-5.74 5.744.444.583 1.629 1.922 3.56 4.011 1.859 2.022 3.075 3.297 3.65 3.826.85.81 1.451 1.362 1.804 1.647a7.64 7.64 0 0 0 2.026 1.234 4.791 4.791 0 0 0 1.624.385c.231 0 .344.072.344.217 0 .14-.213.262-.638.262h-2.311c-.85 0-1.461 0-1.832-.054a4.075 4.075 0 0 1-1.755-.53 10.445 10.445 0 0 1-1.542-1.193c-.543-.462-1.782-1.814-3.718-4.057-1.809-2.085-2.89-3.379-3.242-3.876l-.294-.407h-.136V13.7c0 3.03.027 4.92.081 5.676.055.868.371 1.348.959 1.434.43.068.864.104 1.303.104.23 0 .344.072.344.217 0 .145-.168.262-.503.262-.569 0-1.307 0-2.216-.04-.909-.041-1.447-.041-1.623-.041-.177 0-.661 0-1.502.04-.841.041-1.456.041-1.845.041s-.534-.09-.534-.262c0-.172.199-.208.588-.24.263-.036.529-.063.81-.081.407-.09.665-.575.769-1.461.09-.692.135-2.582.135-5.676V8.997c0-3.17-.018-5.048-.054-5.631-.05-.85-.434-1.357-1.144-1.51a4.955 4.955 0 0 0-1.036-.082c-.303 0-.452-.081-.452-.24 0-.158.194-.24.583-.24.529 0 1.249 0 2.153.041l1.569.041c.195 0 .697 0 1.511-.04.814-.041 1.384-.041 1.705-.041.321 0 .556.081.556.24 0 .158-.122.239-.371.239a2.031 2.031 0 0 0-1.307.321c-.284.34-.434.774-.407 1.217-.031.624-.054 2.519-.058 5.685ZM3.166 13.677v-4.68c0-3.17-.018-5.048-.054-5.631-.054-.85-.353-1.348-.904-1.488a3.89 3.89 0 0 0-.919-.104c-.307 0-.46-.09-.46-.267 0-.14.212-.212.637-.212.353 0 .959 0 1.822.04.86.041 1.403.041 1.624.041.217 0 .688 0 1.488-.04.8-.041 1.384-.041 1.75-.041.371 0 .561.067.561.212s-.131.267-.38.267c-.271 0-.542.027-.81.081-.596.104-.917.606-.967 1.511-.036.583-.059 2.46-.059 5.63v4.682c0 3.17.036 5.11.109 5.82.067.778.407 1.217 1.053 1.303.444.063.891.1 1.344.104.276 0 .407.072.407.217 0 .14-.168.262-.502.262-.674 0-1.493-.013-2.456-.04l-1.687-.041c-.163 0-.66 0-1.506.04-.846.041-1.457.041-1.845.041-.39 0-.53-.09-.53-.262 0-.172.195-.208.584-.24.262-.036.529-.063.81-.081.425-.09.687-.53.773-1.312.09-.787.104-2.727.104-5.807h.013v-.004Z\" fill=\"#4D4D4D\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iw3uff\",\"data-framer-name\":\"Stillman\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1flfpsl\",\"data-framer-name\":\"stillman_LOGO\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:179,svg:'<svg width=\"179\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#4D4D4D\"><path d=\"M70.635 17.767c-.815-1.345-3.054-2.625-5.63-2.625-3.323 0-4.917 1.38-4.917 3.132 0 2.054 2.442 2.626 5.29 2.964 4.952.607 9.561 1.884 9.561 7.509 0 5.25-4.68 7.506-9.97 7.506-4.851 0-8.58-1.482-10.344-5.79l3.731-1.92c1.051 2.592 3.797 3.736 6.681 3.736 2.815 0 5.46-.975 5.46-3.535 0-2.223-2.34-3.133-5.496-3.467-4.847-.572-9.322-1.852-9.322-7.136 0-4.848 4.815-6.833 9.191-6.869 3.696 0 7.529 1.043 9.326 4.679l-3.561 1.816Z\"/><path d=\"M81.53 15.672v4.711h4.612v3.536h-4.645v7.168c0 1.582.88 2.359 2.17 2.359.645 0 1.391-.202 2-.507l1.152 3.5c-1.188.47-2.17.672-3.427.708-3.627.136-6.003-1.917-6.003-6.06v-7.168h-3.12v-3.536h3.12V16.11l4.14-.438Zm12.205 0c0 3.197-4.883 3.197-4.883 0 0-3.198 4.883-3.2 4.883 0Zm-4.507 21.273h4.137V20.282h-4.137v16.663Zm11.97-23.529h-4.104v23.532h4.104V13.416Zm7.731 0h-4.105v23.532h4.105V13.416Zm14.752 23.529v-8.887c0-2.19-1.152-4.175-3.424-4.175-2.239 0-3.561 1.985-3.561 4.175v8.887h-4.137v-16.63h3.833l.304 2.018c.884-1.683 2.815-2.288 4.409-2.288 2 0 4.003.81 4.949 3.097 1.493-2.356 3.427-3.028 5.598-3.028 4.746 0 7.09 2.895 7.09 7.876v8.955h-4.138V27.99c0-2.19-.916-4.039-3.155-4.039s-3.63 1.917-3.63 4.107v8.887h-4.138Zm31.164-16.595h3.97v16.598h-3.902l-.203-2.424c-.949 1.953-3.561 2.895-5.427 2.931-4.952.033-8.615-2.996-8.615-8.818 0-5.723 3.833-8.718 8.713-8.686 2.239 0 4.377 1.043 5.326 2.694l.138-2.294Zm-10.036 8.283c0 3.165 2.206 5.05 4.952 5.05 6.511 0 6.511-10.067 0-10.067-2.749 0-4.952 1.852-4.952 5.017Zm29.81 8.312v-8.682c0-2.525-1.391-4.445-4.036-4.445-2.543 0-4.271 2.121-4.271 4.646v8.484h-4.105V20.315h3.696l.271 2.255c1.696-1.65 3.391-2.492 5.493-2.492 3.934 0 7.086 2.927 7.086 8.146v8.718l-4.134.003ZM31.893 9.735l-15.263.003c-3.846 0-6.972 3.107-6.972 6.921 0 3.802 3.106 6.896 6.933 6.918.006 0 .013.003.02.003H31.9a2.748 2.748 0 0 1 2.756 2.736 2.751 2.751 0 0 1-2.756 2.74l-12.57-.004c-.006 0-.013.004-.02.004h-2.66c-6.841 0-12.41-5.527-12.41-12.319 0-6.79 5.565-12.318 12.41-12.318h8.602a2.099 2.099 0 0 0 2.108-2.093c0-1.156-.94-2.092-2.105-2.092h-8.599C7.488.234.031 7.636.031 16.737c0 9.102 7.457 16.504 16.625 16.504h2.681c.007 0 .013-.003.02-.003l12.546.003c3.843 0 6.972-3.107 6.972-6.921 0-3.815-3.129-6.921-6.972-6.921h-15.27c-1.522 0-2.759-1.229-2.759-2.736 0-1.511 1.237-2.74 2.76-2.74l15.263-.003c6.84 0 12.409 5.524 12.409 12.318 0 6.558-5.45 11.695-12.41 11.695H19.849c-.877 0-1.663.54-1.97 1.355a2.081 2.081 0 0 0 .578 2.31l6.086 5.306c.399.348.896.52 1.39.52.587 0 1.17-.24 1.585-.708.77-.87.684-2.19-.19-2.954l-1.889-1.64H31.9c9.322 0 16.625-6.977 16.625-15.88-.007-9.105-7.463-16.507-16.632-16.507Z\"/><path d=\"m25.435 42.115-3.001-.088 5.03 1.875-2.029-1.787Zm100.564-2.109h-2.37v-.448h5.244v.448h-2.37v6.054h-.504v-6.054Zm3.484 1.459.02.818c.288-.62.946-.864 1.535-.864.347-.01.684.085.992.27l-.206.373a1.531 1.531 0 0 0-2.311 1.32v2.677h-.458v-4.594h.428Zm7.971 0v4.595h-.462v-.978a2.159 2.159 0 0 1-1.892 1.05c-1.293 0-2.35-.966-2.35-2.373 0-1.404 1.057-2.352 2.35-2.352.75 0 1.509.344 1.892 1.059v-1.004l.462.003Zm-4.246 2.297c0 1.154.845 1.924 1.892 1.924 2.576 0 2.576-3.84 0-3.84-1.047 0-1.892.763-1.892 1.917Zm6.224-2.297v.819c.357-.634 1.005-.894 1.65-.9 1.237 0 2.088.754 2.088 2.027v2.649h-.458v-2.642c0-1.043-.648-1.599-1.65-1.59-.956.01-1.62.726-1.62 1.674v2.558h-.462v-4.595h.452Zm8.394.838c-.468-.409-.93-.484-1.444-.484-.723-.01-1.414.26-1.394.845.019.614.825.734 1.404.838.825.14 1.957.28 1.912 1.349-.027 1.014-1.087 1.283-1.902 1.283s-1.62-.308-2.023-.92l.337-.298c.386.549 1.077.78 1.696.78.559 0 1.414-.146 1.443-.874.02-.66-.749-.79-1.509-.913-.9-.147-1.79-.316-1.797-1.235-.01-.904.9-1.293 1.836-1.284.675 0 1.264.185 1.725.614l-.284.3Zm2.238-2.752h-.459v6.509h.459v-6.51Zm6.015 1.914v4.595h-.458v-.978a2.159 2.159 0 0 1-1.892 1.05c-1.293 0-2.35-.966-2.35-2.373 0-1.404 1.057-2.352 2.35-2.352.75 0 1.509.344 1.892 1.059v-1.004l.458.003Zm-4.242 2.297c0 1.154.841 1.924 1.892 1.924 2.576 0 2.576-3.84 0-3.84-1.051 0-1.892.763-1.892 1.917Zm6.632-3.681v1.384h1.574v.384h-1.574v2.797c0 .624.131 1.06.851 1.06.226 0 .478-.075.713-.186l.161.374c-.291.14-.583.23-.871.23-.985 0-1.303-.574-1.303-1.478V41.85h-.985v-.384h.985v-1.339l.449-.045Zm3.521-.114c0 .481-.74.481-.74 0-.003-.484.74-.484.74 0Zm-.609 6.093h.458v-4.614h-.458v4.614Zm1.939-2.288c0-1.459 1.051-2.388 2.351-2.388 1.302 0 2.35.93 2.35 2.388 0 1.462-1.051 2.353-2.35 2.353-1.3 0-2.351-.894-2.351-2.353Zm4.252 0c0-1.19-.851-1.962-1.901-1.962-1.051 0-1.902.773-1.902 1.962 0 1.193.851 1.907 1.902 1.907 1.05 0 1.901-.718 1.901-1.907Zm2.239-2.307v.819c.354-.634 1.002-.894 1.647-.9 1.237 0 2.088.754 2.088 2.027v2.649h-.458v-2.642c0-1.043-.645-1.599-1.65-1.59-.956.01-1.62.726-1.62 1.674v2.558h-.459v-4.595h.452Zm8.39.838c-.468-.409-.927-.484-1.444-.484-.72-.01-1.414.26-1.394.845.019.614.825.734 1.404.838.825.14 1.957.28 1.912 1.349-.027 1.014-1.087 1.283-1.902 1.283s-1.62-.308-2.023-.92l.337-.298c.383.549 1.077.78 1.696.78.559 0 1.414-.146 1.443-.874.02-.66-.749-.79-1.509-.913-.9-.147-1.787-.316-1.797-1.235-.01-.904.897-1.293 1.836-1.284.675 0 1.264.185 1.722.614l-.281.3Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.027 .234)\" d=\"M0 0h178.721v47.187H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bcahov\",\"data-framer-name\":\"Cxi\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-e9u5rq\",\"data-framer-name\":\"CXI\",fill:\"black\",intrinsicHeight:43,intrinsicWidth:289,svg:'<svg width=\"289\" height=\"43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"20\" y=\"1\" width=\"73\" height=\"42\"><path d=\"M28.086 32.348c-4.308-6.345 5.206-16.265 21.248-22.146 16.04-5.884 32.54-5.51 36.849.835 4.308 6.346-5.207 16.262-21.25 22.15-7.623 2.797-15.352 4.18-21.824 4.18-7.146-.004-12.765-1.69-15.023-5.019Zm19.017-25.86c-19.055 7.206-30.377 19.965-25.28 28.49 5.096 8.53 24.681 9.6 43.732 2.393C84.61 30.164 95.928 17.405 90.832 8.88 88.005 4.148 80.715 1.71 71.53 1.71c-7.363.004-15.948 1.573-24.428 4.777Z\" fill=\"#fff\"/></mask><g mask=\"url(#a)\"><path d=\"m.953 37.7 28.49-64.984 82.266 35.88-28.49 64.983L.954 37.699Z\" fill=\"#4D4D4D\"/></g><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"25\" y=\"5\" width=\"64\" height=\"34\"><path d=\"M48.974 9.676c-16.77 6.15-26.713 16.52-22.211 23.155 4.505 6.633 21.752 7.022 38.518.873 16.767-6.152 26.713-16.522 22.212-23.155-2.36-3.48-8.234-5.241-15.706-5.241-6.763 0-14.841 1.447-22.813 4.368Z\" fill=\"#fff\"/></mask><g mask=\"url(#b)\"><path d=\"m9.547 34.31 23.908-54.534 71.26 31.076-23.909 54.533L9.546 34.31Z\" fill=\"#fff\"/></g><mask id=\"c\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"27\" y=\"6\" width=\"61\" height=\"32\"><path d=\"M49.327 10.202c-16.04 5.884-25.553 15.804-21.25 22.146 4.309 6.345 20.81 6.719 36.849.835 16.039-5.884 25.553-15.805 21.249-22.15-2.262-3.33-7.878-5.015-15.024-5.015-6.471 0-14.2 1.383-21.824 4.184Z\" fill=\"#fff\"/></mask><g mask=\"url(#c)\"><path d=\"m11.613 33.761 22.87-52.164 68.161 29.727-22.867 52.164-68.164-29.727Z\" fill=\"#4D4D4D\"/></g><path d=\"m192.6 10.252-2.872 4.493a5.062 5.062 0 0 0-.235.446c-.034.072-.06.14-.094.211 0-.045-.004-.09-.008-.14a3.145 3.145 0 0 0-.076-.525l-.939-4.482h-3.013l2.122 7.547-.902 4.248h2.812l.886-4.267 5.468-7.528H192.6v-.004Zm-2.463 7.467v.015l-.867 4.165h-2.501l.871-4.104-2.08-7.392h2.69l.914 4.365c.041.181.072.347.075.498.008.16.019.303.035.428l.003.064h.137l.019-.046a6.005 6.005 0 0 1 .424-.888l2.823-4.421h2.773l-5.316 7.316Z\" fill=\"#4D4D4D\"/><path d=\"m195.452 10.403-5.32 7.316v.015l-.868 4.165h-2.501l.872-4.104-2.08-7.392h2.69l.913 4.365c.042.181.072.348.076.499.007.158.019.302.034.427l.004.064h.136l.019-.045a6.185 6.185 0 0 1 .424-.889l2.823-4.421h2.778Zm77.088 7.135h2.368l-.466 2.23c-.14.041-.299.079-.474.113a4.038 4.038 0 0 1-.716.053c-.428 0-.818-.072-1.167-.208a2.447 2.447 0 0 1-.89-.59 2.494 2.494 0 0 1-.565-.952 3.985 3.985 0 0 1-.201-1.3c0-.677.103-1.285.304-1.84a3.851 3.851 0 0 1 2.231-2.321c.538-.215 1.141-.317 1.808-.317.31 0 .61.018.905.071a6.024 6.024 0 0 1 1.55.461c.22.102.409.212.58.325l.091.06.022-.109.531-2.46-.057-.023a14.258 14.258 0 0 0-.667-.234 10.79 10.79 0 0 0-.818-.215 10.29 10.29 0 0 0-.948-.159 8.714 8.714 0 0 0-1.064-.06c-.819 0-1.573.083-2.259.256a7.303 7.303 0 0 0-1.845.722 6.16 6.16 0 0 0-2.451 2.521l-.004.004a6.852 6.852 0 0 0-.61 1.647 7.848 7.848 0 0 0-.208 1.792c0 .775.121 1.489.363 2.131a4.745 4.745 0 0 0 1.054 1.667 4.61 4.61 0 0 0 1.689 1.07c.667.253 1.425.381 2.27.381.443 0 .849-.026 1.224-.08a8.891 8.891 0 0 0 1.97-.499 8.54 8.54 0 0 0 .773-.332l.034-.015 1.281-6.031h-5.145l-.493 2.24Zm5.441-2.094-1.228 5.775a7.561 7.561 0 0 1-.723.313 12.1 12.1 0 0 1-.898.288 7.9 7.9 0 0 1-1.039.2c-.371.053-.773.08-1.204.08-.823 0-1.562-.13-2.217-.371a4.533 4.533 0 0 1-1.637-1.036 4.518 4.518 0 0 1-1.015-1.61c-.235-.623-.353-1.318-.353-2.078 0-.601.072-1.187.201-1.761a6.66 6.66 0 0 1 .603-1.61c.265-.503.594-.964.996-1.383a5.77 5.77 0 0 1 1.398-1.081 7.044 7.044 0 0 1 1.808-.71 9.067 9.067 0 0 1 2.22-.254c.367 0 .716.023 1.049.06.33.038.637.095.933.16.288.06.56.132.799.21.22.073.421.14.599.209l-.482 2.23a4.397 4.397 0 0 0-.503-.276 5.5 5.5 0 0 0-.739-.284 6.523 6.523 0 0 0-.853-.193 5.306 5.306 0 0 0-.928-.071c-.686 0-1.307.11-1.864.328a4.067 4.067 0 0 0-1.417.945 4.079 4.079 0 0 0-.898 1.467 5.486 5.486 0 0 0-.311 1.893c0 .499.072.948.212 1.345a2.594 2.594 0 0 0 1.538 1.637 3.36 3.36 0 0 0 1.224.215 4.063 4.063 0 0 0 1.273-.185l.042-.008.527-2.502h-2.368l.413-1.942h4.842Z\" fill=\"#4D4D4D\"/><path d=\"M273.143 15.444h4.839l-1.228 5.775a7.474 7.474 0 0 1-.724.313c-.276.102-.576.197-.898.288a7.917 7.917 0 0 1-1.038.2 8.56 8.56 0 0 1-1.205.08c-.822 0-1.561-.13-2.216-.371a4.536 4.536 0 0 1-1.637-1.036 4.535 4.535 0 0 1-1.016-1.61c-.235-.623-.352-1.319-.352-2.078 0-.601.072-1.187.201-1.761a6.614 6.614 0 0 1 .602-1.61c.265-.503.595-.964.997-1.383a5.77 5.77 0 0 1 1.398-1.081 7.033 7.033 0 0 1 1.807-.71 9.076 9.076 0 0 1 2.221-.254c.367 0 .716.023 1.049.06.33.038.637.095.932.16.288.06.561.131.8.21.219.073.42.14.598.209l-.481 2.23a4.331 4.331 0 0 0-.504-.276c-.227-.11-.473-.2-.739-.284a6.545 6.545 0 0 0-.852-.193 5.306 5.306 0 0 0-.928-.071 5.08 5.08 0 0 0-1.865.328 4.073 4.073 0 0 0-1.417.945c-.39.408-.693.896-.898 1.467a5.51 5.51 0 0 0-.31 1.893c0 .499.072.948.212 1.345a2.595 2.595 0 0 0 1.538 1.637c.371.143.777.215 1.224.215a4.08 4.08 0 0 0 1.273-.185l.042-.008.526-2.502h-2.368l.417-1.942Zm-132.849-3.311a2.498 2.498 0 0 0-.667-.97c-.31-.288-.704-.507-1.189-.673-.489-.16-1.076-.239-1.762-.239h-4.055l-2.512 11.795h2.812l.951-4.46h.386c.41 0 .72.118.948.349.231.23.401.582.492 1.05l.648 3.061h2.974l-.837-3.458c-.121-.517-.307-.918-.557-1.236h.004a2 2 0 0 0-.72-.574 5.119 5.119 0 0 0 1.159-.336 3.825 3.825 0 0 0 1.111-.73 3.3 3.3 0 0 0 .746-1.062 3.31 3.31 0 0 0 .273-1.364 3.2 3.2 0 0 0-.205-1.152Zm-.204 2.46c-.178.39-.413.726-.717 1.014a3.677 3.677 0 0 1-1.068.699 4.816 4.816 0 0 1-1.307.366l-.065.008v.155l.053.015c.319.102.591.298.823.597.231.291.409.68.526 1.18l.792 3.272h-2.66l-.625-2.94c-.098-.492-.273-.87-.53-1.13-.258-.265-.618-.39-1.054-.39h-.507l-.951 4.46h-2.505l2.452-11.496h3.929c.674 0 1.242.079 1.709.234.469.155.848.367 1.14.635.292.264.5.57.629.914.133.352.197.718.197 1.104 0 .484-.087.918-.261 1.304Z\" fill=\"#4D4D4D\"/><path d=\"M140.152 12.187a2.339 2.339 0 0 0-.629-.915c-.292-.268-.667-.48-1.141-.635-.466-.155-1.034-.234-1.708-.234h-3.93l-2.451 11.496h2.505l.951-4.46h.507c.44 0 .796.125 1.054.39.257.264.432.639.53 1.13l.625 2.94h2.66l-.792-3.273c-.117-.498-.295-.888-.526-1.179a1.726 1.726 0 0 0-.823-.597l-.053-.015v-.155l.065-.008a4.82 4.82 0 0 0 1.307-.366 3.732 3.732 0 0 0 1.068-.7c.3-.287.538-.623.717-1.012.174-.385.257-.82.257-1.304a3.082 3.082 0 0 0-.193-1.103Zm-2.603 2.248a1.64 1.64 0 0 1-.443.605c-.201.174-.451.31-.747.412h-.004a3.325 3.325 0 0 1-1.064.155h-1.164l.736-3.394h1.159c.549 0 .974.129 1.262.4.284.269.42.643.42 1.108-.007.25-.053.488-.155.714Zm82.574-4.183h-3.262l-2.804 3.673h-.004a1.669 1.669 0 0 0-.14.227c-.042.08-.08.159-.118.238-.026.06-.045.113-.072.162-.004-.056-.004-.113-.015-.173h.004a3.288 3.288 0 0 0-.034-.269c-.015-.083-.034-.159-.046-.226l-1.049-3.64h-3.236l2.281 5.703-5.081 6.092h3.455l2.823-3.78c.103-.135.182-.294.254-.468.027-.06.046-.113.072-.162a4.994 4.994 0 0 0 .049.442h.004a.706.706 0 0 0 .057.227l1.186 3.745h3.145l-2.334-5.82 4.865-5.971Zm-2.759 11.647h-2.815l-1.152-3.647h-.003a.904.904 0 0 1-.046-.196c-.015-.08-.023-.159-.034-.246a5.615 5.615 0 0 1-.026-.427v-.076h-.156l-.019.042a8.122 8.122 0 0 0-.17.393c-.065.162-.148.31-.239.435l-2.777 3.718h-3.058l4.933-5.914-2.231-5.582h2.902l1.015 3.526c.015.06.034.136.042.215.015.084.023.163.034.25v.004c.004.079.015.158.015.234v.004c.004.072.004.132.004.177v.076h.163l.023-.045c.015-.042.038-.099.064-.163.023-.072.057-.14.095-.22.038-.078.076-.158.114-.233.041-.076.083-.148.132-.208l2.762-3.613h2.872L215.08 16.2l.015.042 2.269 5.657Z\" fill=\"#4D4D4D\"/><path d=\"m215.089 16.241 2.274 5.658h-2.816l-1.151-3.647h-.004a.905.905 0 0 1-.046-.197c-.015-.079-.022-.158-.034-.245-.007-.083-.015-.163-.019-.238-.003-.08-.007-.148-.007-.19v-.075h-.156l-.019.042a8.133 8.133 0 0 0-.17.393c-.064.162-.148.31-.239.434l-2.777 3.72h-3.058l4.933-5.915-2.231-5.582h2.902l1.016 3.526c.015.06.034.136.041.215.015.083.023.163.034.25v.003c.004.08.015.16.015.235v.004c.004.071.004.132.004.177v.076h.163l.023-.046c.015-.041.038-.098.064-.162.023-.072.057-.14.095-.22l.114-.234c.041-.075.083-.147.132-.207l2.763-3.613h2.872l-4.729 5.797.011.041Zm66.239-5.989-2.519 11.795h7.157l.489-2.283h-4.358l.538-2.464h3.789l.493-2.29h-3.804l.523-2.48h4.081l.015-.056.47-2.226h-6.874v.004Zm6.271 2.139h-4.081l-.583 2.774h3.804l-.432 1.991h-3.789l-.602 2.767h4.357l-.424 1.98h-6.847l2.448-11.496h6.573l-.424 1.984Z\" fill=\"#4D4D4D\"/><path d=\"m283.516 12.39-.583 2.775h3.8l-.432 1.987h-3.789l-.602 2.767h4.357l-.42 1.98h-6.851l2.448-11.496h6.574l-.421 1.988h-4.081Zm-53.946-1.802a9.232 9.232 0 0 0-.602-.181c-.228-.06-.474-.117-.739-.174h-.004c-.269-.045-.549-.09-.841-.121a7.312 7.312 0 0 0-.921-.053c-.833 0-1.599.09-2.296.268a7.33 7.33 0 0 0-1.853.741 5.793 5.793 0 0 0-1.424 1.138 6.258 6.258 0 0 0-1.008 1.44 7.072 7.072 0 0 0-.599 1.666 8.125 8.125 0 0 0-.197 1.807c0 .77.117 1.474.356 2.1a4.542 4.542 0 0 0 1.042 1.622 4.64 4.64 0 0 0 1.667 1.047c.656.245 1.395.366 2.217.366.61 0 1.163-.045 1.652-.136.492-.09.939-.219 1.345-.389l.038-.015.598-2.672-.147.072a6.671 6.671 0 0 1-1.251.503c-.231.064-.47.12-.731.158a5.15 5.15 0 0 1-.83.06c-.466 0-.879-.063-1.25-.192a2.666 2.666 0 0 1-.951-.567 2.464 2.464 0 0 1-.606-.93c-.148-.37-.216-.793-.216-1.28 0-.586.094-1.146.276-1.671.193-.525.462-.986.822-1.39a4.024 4.024 0 0 1 1.342-.95c.526-.237 1.14-.355 1.834-.355.303 0 .579.02.833.065a7.1 7.1 0 0 1 .713.158c.219.072.42.148.606.23.182.092.356.175.523.258l.083.045.023-.098.557-2.547-.061-.023Zm-.621 2.445c-.141-.072-.284-.14-.444-.215a5.399 5.399 0 0 0-.621-.234 6.371 6.371 0 0 0-.735-.17 5.063 5.063 0 0 0-.856-.065c-.713 0-1.345.121-1.899.367a4.188 4.188 0 0 0-1.386.99c-.376.412-.66.896-.857 1.436a5.234 5.234 0 0 0-.288 1.723c0 .503.076.949.228 1.338.147.39.367.715.644.983.276.264.61.465 1.004.6.39.137.822.201 1.303.201a5.547 5.547 0 0 0 1.599-.223 7.96 7.96 0 0 0 .675-.234c.159-.065.31-.14.462-.216l-.512 2.29c-.386.16-.81.284-1.28.367a8.828 8.828 0 0 1-1.626.136c-.811 0-1.531-.117-2.163-.355a4.464 4.464 0 0 1-1.611-1.013 4.347 4.347 0 0 1-1.007-1.565c-.232-.616-.349-1.296-.349-2.052 0-.608.064-1.198.193-1.772a7.153 7.153 0 0 1 .584-1.633c.265-.506.587-.982.985-1.41a5.86 5.86 0 0 1 1.394-1.103 6.933 6.933 0 0 1 1.823-.725 9.08 9.08 0 0 1 2.254-.265c.315 0 .61.015.902.045a10.388 10.388 0 0 1 1.569.299c.197.053.371.11.526.159l-.511 2.316Z\" fill=\"#4D4D4D\"/><path d=\"m229.457 10.709-.508 2.324a14.43 14.43 0 0 0-.443-.215 5.47 5.47 0 0 0-.621-.235 6.41 6.41 0 0 0-.736-.17 5.055 5.055 0 0 0-.856-.064c-.712 0-1.345.121-1.898.367a4.18 4.18 0 0 0-1.387.99 4.302 4.302 0 0 0-.856 1.436 5.208 5.208 0 0 0-.288 1.723c0 .503.076.949.227 1.338.148.39.368.714.644.983.277.264.61.465 1.004.6.391.137.823.2 1.304.2a5.543 5.543 0 0 0 1.599-.222c.235-.072.462-.148.674-.235.159-.064.311-.14.462-.215l-.511 2.29a6.213 6.213 0 0 1-1.281.367 8.817 8.817 0 0 1-1.625.136c-.811 0-1.531-.117-2.164-.355a4.46 4.46 0 0 1-1.61-1.013 4.35 4.35 0 0 1-1.008-1.565 5.79 5.79 0 0 1-.349-2.052c0-.608.065-1.198.194-1.772a7.151 7.151 0 0 1 .583-1.633c.265-.506.587-.982.985-1.41a5.889 5.889 0 0 1 1.395-1.103c.53-.31 1.14-.556 1.822-.726a9.088 9.088 0 0 1 2.255-.264c.314 0 .61.015.901.045a10.414 10.414 0 0 1 1.569.299c.193.041.368.098.523.15Zm-111.036-.121a9.232 9.232 0 0 0-.602-.181c-.231-.06-.481-.117-.743-.174a13.51 13.51 0 0 0-.848-.121 7.26 7.26 0 0 0-.917-.053c-.838 0-1.599.09-2.296.268a7.27 7.27 0 0 0-1.861.741 5.97 5.97 0 0 0-1.425 1.138 6.412 6.412 0 0 0-1.007 1.44 7.152 7.152 0 0 0-.595 1.666 8.125 8.125 0 0 0-.197 1.807c0 .77.117 1.474.356 2.1a4.542 4.542 0 0 0 1.042 1.622c.451.45 1.008.801 1.667 1.047.655.245 1.394.366 2.213.366a9.12 9.12 0 0 0 1.656-.136c.488-.09.939-.219 1.345-.389l.038-.015.594-2.672-.14.072a6.968 6.968 0 0 1-.591.276 5.9 5.9 0 0 1-1.387.385c-.257.042-.538.06-.829.06-.466 0-.887-.063-1.258-.192a2.658 2.658 0 0 1-.951-.567 2.565 2.565 0 0 1-.607-.93 3.594 3.594 0 0 1-.212-1.28c0-.586.095-1.146.277-1.671.189-.525.462-.986.822-1.39a3.95 3.95 0 0 1 1.341-.95c.527-.237 1.141-.355 1.834-.355.299 0 .58.02.83.065.258.041.493.098.716.158.22.072.421.148.603.23.189.092.363.175.522.258l.091.045.019-.098.561-2.547-.061-.023Zm-.629 2.445c-.14-.072-.284-.14-.439-.215a5.263 5.263 0 0 0-.625-.234 6.316 6.316 0 0 0-.732-.17 5.087 5.087 0 0 0-.856-.065c-.716 0-1.345.121-1.898.367a4.29 4.29 0 0 0-1.394.99c-.376.412-.66.896-.853 1.436a5.132 5.132 0 0 0-.288 1.723c0 .503.072.949.22 1.338.151.39.367.715.644.983a2.82 2.82 0 0 0 1.008.6c.39.137.822.201 1.303.201a5.584 5.584 0 0 0 1.599-.223c.235-.072.462-.147.667-.234.163-.065.315-.14.466-.212l-.511 2.287a6.28 6.28 0 0 1-1.281.366 8.83 8.83 0 0 1-1.629.136c-.804 0-1.524-.117-2.16-.355a4.393 4.393 0 0 1-1.61-1.013 4.297 4.297 0 0 1-1.008-1.565 5.79 5.79 0 0 1-.349-2.052c0-.608.065-1.198.193-1.772a6.968 6.968 0 0 1 .584-1.633 6.15 6.15 0 0 1 .985-1.41c.39-.423.856-.793 1.387-1.103h.004c.53-.31 1.14-.555 1.814-.725a9.145 9.145 0 0 1 2.259-.265c.31 0 .61.015.902.045a10.458 10.458 0 0 1 1.564.299c.197.053.372.11.531.159l-.497 2.316Z\" fill=\"#4D4D4D\"/><path d=\"m118.308 10.709-.511 2.324c-.141-.072-.285-.14-.44-.215a5.198 5.198 0 0 0-.625-.235 6.319 6.319 0 0 0-.731-.17 5.107 5.107 0 0 0-.857-.064c-.716 0-1.345.121-1.898.367a4.294 4.294 0 0 0-1.394.99 4.23 4.23 0 0 0-.853 1.436 5.132 5.132 0 0 0-.288 1.723c0 .503.072.949.22 1.338.152.39.368.714.644.983a2.81 2.81 0 0 0 1.008.6c.39.137.822.2 1.303.2a5.584 5.584 0 0 0 1.599-.222c.235-.072.463-.148.667-.235.163-.064.315-.14.466-.211l-.511 2.286a6.286 6.286 0 0 1-1.281.367 8.831 8.831 0 0 1-1.629.136c-.803 0-1.523-.117-2.16-.355a4.4 4.4 0 0 1-1.61-1.013 4.298 4.298 0 0 1-1.008-1.565 5.79 5.79 0 0 1-.349-2.052c0-.608.065-1.198.194-1.772a6.921 6.921 0 0 1 .583-1.633c.258-.506.587-.982.985-1.41.39-.423.857-.793 1.387-1.103h.004c.53-.31 1.14-.556 1.815-.726a9.142 9.142 0 0 1 2.258-.264c.311 0 .61.015.902.045a10.458 10.458 0 0 1 1.565.299c.212.041.386.098.545.15Zm9.146-.457-1.497 6.908c-.11.51-.239.937-.402 1.281a2.91 2.91 0 0 1-.545.817 1.75 1.75 0 0 1-.694.434c-.257.09-.538.136-.837.136-.258 0-.5-.038-.72-.12a1.664 1.664 0 0 1-.576-.352 1.594 1.594 0 0 1-.383-.579 2.177 2.177 0 0 1-.136-.8c0-.197.023-.44.072-.723.045-.287.102-.566.163-.857l-.004.003 1.341-6.148h-2.811l-1.319 6.095v.004c-.06.291-.117.609-.159.949a7.246 7.246 0 0 0-.064.937c0 .627.098 1.187.295 1.682.197.499.485.922.857 1.262a3.78 3.78 0 0 0 1.356.794 5.495 5.495 0 0 0 1.785.272c.909 0 1.678-.117 2.311-.348.637-.23 1.171-.563 1.595-1.001a4.905 4.905 0 0 0 1.031-1.584c.257-.62.47-1.311.636-2.075l1.505-6.995h-2.8v.008Zm1.151 6.96c-.159.76-.367 1.44-.621 2.05a4.824 4.824 0 0 1-.997 1.537c-.413.42-.928.737-1.538.964-.617.227-1.368.336-2.262.336-.644 0-1.224-.09-1.735-.264a3.72 3.72 0 0 1-1.3-.76 3.338 3.338 0 0 1-.818-1.21c-.19-.468-.288-1.012-.288-1.624 0-.276.019-.582.06-.915.046-.336.099-.654.163-.937v-.004l1.289-5.978h2.5l-1.299 5.967c-.061.287-.114.574-.163.865a4.862 4.862 0 0 0-.072.749c0 .317.045.604.148.858.098.249.234.46.42.627.174.17.387.295.625.385.239.091.5.133.773.133.315 0 .61-.046.891-.14a1.9 1.9 0 0 0 .742-.473c.22-.219.41-.506.58-.858.163-.355.299-.793.409-1.315l1.474-6.79h2.501l-1.482 6.798Z\" fill=\"#4D4D4D\"/><path d=\"m130.073 10.403-1.474 6.81c-.159.76-.368 1.44-.622 2.048a4.82 4.82 0 0 1-.996 1.538c-.413.42-.929.737-1.539.964-.617.227-1.367.336-2.262.336-.644 0-1.223-.09-1.735-.264a3.718 3.718 0 0 1-1.3-.76 3.336 3.336 0 0 1-.818-1.21c-.189-.468-.288-1.012-.288-1.624 0-.276.019-.582.061-.915.045-.336.098-.654.163-.937v-.004l1.288-5.978h2.501l-1.3 5.967c-.061.287-.114.574-.163.865a4.99 4.99 0 0 0-.072.749c0 .317.046.604.148.858.098.249.235.46.42.627a1.8 1.8 0 0 0 .626.385c.238.091.5.133.773.133.314 0 .61-.046.89-.14.277-.095.527-.253.743-.473.219-.219.409-.506.579-.858a6.3 6.3 0 0 0 .41-1.315l1.473-6.79h2.494v-.012Zm7.208 2.211c-.288-.273-.712-.401-1.262-.401h-1.159l-.735 3.394h1.163c.406 0 .762-.053 1.065-.155h.004a2.25 2.25 0 0 0 .746-.412c.197-.174.349-.374.443-.605.103-.227.152-.465.152-.714 0-.465-.136-.84-.417-1.107Zm.133 1.764c-.091.208-.227.39-.409.548a2.07 2.07 0 0 1-.698.386 3.212 3.212 0 0 1-1.015.147h-.974l.667-3.087h1.034c.531 0 .91.117 1.152.351.25.238.375.563.375 1.002a1.64 1.64 0 0 1-.132.653Zm111.367-.952c-.004-.08-.008-.174-.015-.283v-.299c.004-.094.007-.181.015-.257a1.34 1.34 0 0 1 .015-.17l.015-.083h-.197l-.015.057a.73.73 0 0 1-.053.177 7.01 7.01 0 0 1-.216.521c-.042.1-.091.19-.136.284l-2.198 4.074h3.213l-.428-4.02Zm-.455.015c.046-.094.099-.189.141-.287.053-.102.09-.197.128-.287.008-.027.019-.046.027-.076 0 .02 0 .034-.004.053v.306c.004.11.008.208.015.291v.004l.413 3.851h-2.796l2.076-3.855Zm-77.333-3.189-1.493 7.006c-.019.08-.034.163-.053.265-.023.098-.038.2-.057.302a3.13 3.13 0 0 0-.041.31c-.034-.076-.065-.159-.103-.238a6.998 6.998 0 0 0-.121-.265 2.558 2.558 0 0 1-.098-.211v-.004l-3.524-7.162h-2.717l-2.493 11.795h2.618l1.501-7.014c.06-.246.109-.491.14-.74.023-.163.041-.314.06-.462 0 .008.004.015.004.019v.004c.038.08.072.162.11.253l.114.264v.004c.038.083.076.163.113.23l3.672 7.442h2.512l.008-.06 2.489-11.735h-2.641v-.004Zm.019 11.647h-2.296l-3.634-7.362c-.034-.06-.064-.136-.102-.22a7.66 7.66 0 0 0-.118-.264c-.034-.09-.071-.174-.102-.253-.026-.08-.053-.151-.072-.212l-.015-.06h-.174l-.008.064c-.023.2-.057.427-.091.677a5.55 5.55 0 0 1-.136.733l-1.478 6.897h-2.311l2.432-11.496h2.501l3.478 7.074c.027.06.061.136.103.22.041.079.079.17.121.256.038.091.076.174.114.265.034.08.056.155.075.215l.016.057h.159l.003-.072c.004-.08.016-.17.023-.268.008-.098.023-.2.042-.299.015-.102.034-.2.053-.302.019-.102.034-.181.053-.257l1.47-6.89h2.33L171.012 21.9Z\" fill=\"#4D4D4D\"/><path d=\"m173.446 10.403-2.432 11.496h-2.296l-3.634-7.362c-.034-.06-.064-.136-.102-.219a7.66 7.66 0 0 0-.118-.264c-.034-.091-.072-.174-.102-.254-.027-.08-.053-.15-.072-.211l-.015-.06h-.175l-.007.063c-.023.2-.057.428-.091.677a5.719 5.719 0 0 1-.136.733l-1.478 6.897h-2.311l2.432-11.496h2.501l3.478 7.074c.027.06.061.136.102.22.042.079.08.17.122.257l.113.264c.034.08.057.155.076.216l.015.056h.159l.004-.071c.004-.08.015-.17.023-.269.008-.098.023-.2.042-.298.015-.102.034-.2.053-.303.019-.102.034-.181.053-.257l1.47-6.89h2.326Zm65.73-.151-1.004 4.648h-4.649l1.004-4.649h-2.812l-2.512 11.795h2.812l.996-4.712h4.645l-.992 4.712h2.796l.015-.06 2.505-11.735h-2.804Zm.159 11.647h-2.489l.992-4.713h-4.952l-.996 4.713h-2.505l2.451-11.496h2.501l-.996 4.648h4.956l1.004-4.648h2.489l-2.455 11.496Z\" fill=\"#4D4D4D\"/><path d=\"m241.784 10.403-2.451 11.496h-2.49l.993-4.713h-4.948l-1.001 4.713h-2.504l2.455-11.496h2.497l-.996 4.648h4.956l1-4.648h2.489Zm-40.35-.151-2.512 11.795h7.154l.488-2.283h-4.357l.542-2.464h3.785l.493-2.29h-3.797l.519-2.48h4.081l.015-.056.474-2.226h-6.885v.004Zm6.267 2.139h-4.081l-.583 2.774h3.804l-.432 1.991h-3.785l-.603 2.767h4.354l-.425 1.98h-6.846l2.451-11.496h6.57l-.424 1.984Z\" fill=\"#4D4D4D\"/><path d=\"m203.618 12.39-.583 2.775h3.804l-.436 1.987h-3.781l-.603 2.767h4.354l-.425 1.98h-6.846l2.451-11.496h6.57l-.424 1.988h-4.081Zm-19.056-1.802a8.38 8.38 0 0 0-.598-.181c-.232-.06-.482-.117-.743-.174-.269-.045-.55-.09-.849-.121a7.237 7.237 0 0 0-.917-.053 9.25 9.25 0 0 0-2.296.268 7.264 7.264 0 0 0-1.86.741 5.951 5.951 0 0 0-1.425 1.138 6.416 6.416 0 0 0-1.008 1.44 7.245 7.245 0 0 0-.595 1.666 8.184 8.184 0 0 0-.197 1.807c0 .77.118 1.474.356 2.1a4.59 4.59 0 0 0 1.039 1.622c.45.45 1.007.801 1.659 1.047.659.245 1.398.366 2.22.366a9.19 9.19 0 0 0 1.653-.136c.488-.09.939-.219 1.345-.389l.034-.015.598-2.672-.14.072a6.968 6.968 0 0 1-.591.276 7.35 7.35 0 0 1-.655.227h-.004c-.228.064-.47.12-.724.158a5.21 5.21 0 0 1-.83.06c-.466 0-.886-.063-1.258-.192a2.675 2.675 0 0 1-.951-.567 2.563 2.563 0 0 1-.606-.93 3.594 3.594 0 0 1-.212-1.28c0-.586.091-1.146.277-1.671.189-.525.462-.986.822-1.39a3.94 3.94 0 0 1 1.341-.95c.527-.237 1.141-.355 1.834-.355.299 0 .576.02.83.065.257.041.488.098.716.158.216.072.42.148.602.23.182.092.364.175.523.258l.091.045.019-.098.561-2.547-.061-.023Zm-.621 2.445c-.14-.072-.284-.14-.44-.215a5.198 5.198 0 0 0-.625-.234 5.132 5.132 0 0 0-1.588-.234c-.716 0-1.345.12-1.898.366a4.263 4.263 0 0 0-1.394.99 4.245 4.245 0 0 0-.853 1.436 5.132 5.132 0 0 0-.288 1.723c0 .503.072.949.22 1.338.152.39.368.715.644.983a2.82 2.82 0 0 0 1.008.6c.39.137.822.201 1.304.201a5.58 5.58 0 0 0 1.602-.223 7.62 7.62 0 0 0 .667-.234c.163-.065.315-.14.462-.212l-.507 2.287a6.28 6.28 0 0 1-1.281.366 8.82 8.82 0 0 1-1.626.136c-.81 0-1.53-.117-2.163-.355a4.452 4.452 0 0 1-1.614-1.013 4.394 4.394 0 0 1-1.004-1.565c-.235-.616-.349-1.296-.349-2.052 0-.608.061-1.198.193-1.772a6.968 6.968 0 0 1 .584-1.633 6.059 6.059 0 0 1 2.372-2.513c.53-.31 1.14-.555 1.822-.725a9.104 9.104 0 0 1 2.259-.265c.31 0 .61.015.901.045a11.004 11.004 0 0 1 1.565.299c.197.053.372.11.527.159l-.5 2.316Z\" fill=\"#4D4D4D\"/><path d=\"m184.449 10.709-.508 2.324c-.14-.072-.284-.14-.439-.215a5.263 5.263 0 0 0-.625-.235 6.537 6.537 0 0 0-.732-.17 5.12 5.12 0 0 0-.856-.064c-.716 0-1.345.121-1.898.367-.55.25-1.016.578-1.395.99a4.227 4.227 0 0 0-.852 1.436 5.132 5.132 0 0 0-.288 1.723c0 .503.072.949.22 1.338.151.39.367.714.644.983a2.8 2.8 0 0 0 1.008.6c.39.137.822.2 1.303.2a5.593 5.593 0 0 0 1.603-.222 7.77 7.77 0 0 0 .667-.235c.163-.064.314-.14.462-.211l-.508 2.286a6.258 6.258 0 0 1-1.28.367 8.836 8.836 0 0 1-1.626.136c-.811 0-1.531-.117-2.163-.355a4.447 4.447 0 0 1-1.615-1.013 4.395 4.395 0 0 1-1.004-1.565c-.235-.616-.348-1.296-.348-2.052 0-.608.06-1.198.193-1.772a7.011 7.011 0 0 1 .583-1.633 6.066 6.066 0 0 1 2.372-2.513 6.936 6.936 0 0 1 1.823-.726 9.095 9.095 0 0 1 2.258-.264c.311 0 .61.015.902.045a11.004 11.004 0 0 1 1.565.299c.204.041.379.098.534.15Zm-33.483 1.424a2.498 2.498 0 0 0-.667-.97c-.31-.288-.704-.507-1.189-.673-.489-.16-1.076-.239-1.762-.239h-4.051l-2.512 11.795h2.812l.951-4.46h.386c.409 0 .72.118.951.349.231.23.394.582.489 1.05l.648 3.061h2.974l-.837-3.454c-.118-.518-.307-.926-.55-1.24-.2-.256-.447-.45-.719-.574a5.134 5.134 0 0 0 1.159-.336 3.82 3.82 0 0 0 1.11-.73c.315-.298.565-.653.747-1.062.181-.404.272-.865.272-1.364a3.369 3.369 0 0 0-.212-1.152Zm-.204 2.46c-.175.39-.413.726-.717 1.014a3.711 3.711 0 0 1-1.064.699 4.913 4.913 0 0 1-1.315.366l-.064.008v.155l.053.015c.318.102.594.298.829.597.232.291.406.68.523 1.18l.792 3.272h-2.66l-.625-2.94c-.098-.492-.273-.87-.53-1.13-.258-.261-.618-.39-1.054-.39h-.507l-.951 4.46h-2.501l2.448-11.496h3.929c.674 0 1.243.079 1.712.234.47.155.841.367 1.133.635.292.264.5.57.629.914a3 3 0 0 1 .197 1.104c.004.484-.083.918-.257 1.304Z\" fill=\"#4D4D4D\"/><path d=\"M150.824 12.187a2.339 2.339 0 0 0-.629-.915c-.292-.268-.663-.48-1.133-.635-.47-.155-1.042-.234-1.713-.234h-3.933l-2.447 11.496h2.5l.952-4.46h.507c.44 0 .796.125 1.054.39.257.264.432.639.53 1.13l.625 2.94h2.66l-.792-3.273c-.117-.498-.292-.888-.523-1.179a1.74 1.74 0 0 0-.829-.597l-.054-.015v-.155l.065-.008c.466-.06.898-.189 1.315-.366a3.767 3.767 0 0 0 1.064-.7c.304-.287.542-.623.717-1.012.174-.385.257-.82.257-1.304a2.937 2.937 0 0 0-.193-1.103Zm-2.599 2.248c-.099.23-.25.431-.447.605a2.19 2.19 0 0 1-.751.412 3.386 3.386 0 0 1-1.068.155h-1.163l.735-3.394h1.159c.55 0 .974.129 1.262.4.284.269.42.643.42 1.108-.003.25-.049.488-.147.714Zm116.147-4.183-1.493 7.006c-.019.08-.034.163-.053.265-.019.102-.038.2-.053.302-.019.11-.038.212-.045.31a1.636 1.636 0 0 0-.103-.238 6.998 6.998 0 0 0-.121-.265c-.042-.087-.076-.155-.098-.211v-.004l-3.524-7.162h-2.717l-2.493 11.795h2.622l1.5-7.014c.061-.25.103-.499.137-.74l.06-.458c.004.004.004.008.004.015l.004.004c.034.08.064.162.102.253.042.09.08.178.114.264v.004c.042.083.079.163.114.23l3.675 7.442h2.508l.015-.06 2.486-11.735h-2.641v-.004Zm.019 11.647h-2.292l-3.638-7.362c-.026-.06-.064-.136-.102-.227-.038-.083-.076-.17-.114-.257-.038-.09-.076-.174-.11-.257-.026-.083-.053-.15-.064-.207l-.015-.061h-.178l-.004.064-.091.677a7.255 7.255 0 0 1-.136.733h-.004l-1.478 6.897h-2.311l2.436-11.496h2.501l3.478 7.074c.023.06.061.136.102.22.038.079.076.17.118.256.042.091.076.174.114.265.037.08.06.155.075.215l.015.057h.16l.003-.072c.008-.08.016-.17.023-.268.015-.098.027-.2.042-.299.015-.102.034-.2.053-.302.019-.098.038-.181.053-.257l1.47-6.89h2.33L264.391 21.9Z\" fill=\"#4D4D4D\"/><path d=\"m266.821 10.403-2.432 11.496h-2.293l-3.637-7.362c-.027-.06-.064-.136-.102-.227-.038-.083-.076-.17-.114-.257-.038-.09-.076-.173-.11-.257-.026-.083-.053-.15-.064-.207l-.015-.06h-.179l-.003.063-.091.677a6.992 6.992 0 0 1-.137.733h-.003l-1.478 6.897h-2.311l2.436-11.496h2.501l3.478 7.074c.023.06.061.136.102.22.038.079.076.17.118.257.041.09.075.174.113.264.038.08.061.155.076.216l.015.056h.159l.004-.071c.008-.08.015-.17.023-.269.015-.098.026-.2.042-.298.015-.102.034-.2.053-.303.019-.098.038-.181.053-.257l1.47-6.89h2.326Zm-118.868 2.211c-.288-.273-.712-.401-1.262-.401h-1.159l-.735 3.394h1.163c.406 0 .762-.053 1.069-.155a2.27 2.27 0 0 0 .75-.412 1.695 1.695 0 0 0 .591-1.32c0-.464-.137-.838-.417-1.107Zm.133 1.764a1.48 1.48 0 0 1-.406.548c-.178.16-.413.284-.701.386a3.212 3.212 0 0 1-1.015.147h-.974l.667-3.087h1.034c.531 0 .91.117 1.16.351.25.238.371.563.371 1.002 0 .223-.042.442-.136.653Zm102.657-4.126h-3.247l-6.82 11.794h3.137l1.368-2.592h4.077l.33 2.592h2.841l-1.686-11.794Zm-1.353 9.05h-4.296l-1.368 2.597h-2.793l6.65-11.496h3.028l1.648 11.496h-2.531l-.338-2.596Z\" fill=\"#4D4D4D\"/><path d=\"M250.611 10.403h-3.028l-6.649 11.496h2.792l1.368-2.596h4.297l.333 2.596h2.531l-1.644-11.496Zm-4.615 7.04 2.197-4.074c.046-.094.095-.18.137-.283.045-.098.083-.189.121-.276.038-.09.064-.17.095-.245.026-.072.041-.133.053-.178l.015-.057h.197l-.015.083-.015.17c-.004.076-.008.163-.016.257v.299c.004.11.008.2.016.283l.428 4.018h-3.213v.003Zm-92.019-7.191-2.52 11.795h7.154l.488-2.283h-4.353l.538-2.464h3.785l.5-2.29h-3.804l.523-2.48h4.081l.007-.056.474-2.226h-6.873v.004Zm6.267 2.139h-4.081l-.584 2.774h3.797l-.428 1.991h-3.789l-.603 2.767h4.358l-.425 1.98h-6.846l2.447-11.496h6.574l-.42 1.984Z\" fill=\"#4D4D4D\"/><path d=\"m156.161 12.39-.583 2.775h3.796l-.428 1.987h-3.785l-.603 2.767h4.358l-.425 1.98h-6.846l2.447-11.496h6.574l-.424 1.988h-4.081Zm-50.2 26.326 1.864-9.338h1.948l-1.865 9.338h-1.947Zm4.213 0 1.864-9.338h1.743l3.043 6.511 1.3-6.511h1.519l-1.86 9.338h-1.686l-3.058-6.52-1.296 6.52h-1.569Zm12.254 0 1.61-8.057h-3.395l.25-1.281h8.745l-.253 1.28h-3.395l-1.607 8.058h-1.955Zm6.597 0h6.168l.254-1.289h-4.213l.587-2.951h3.164l.238-1.213h-3.163l.519-2.604h3.944l.254-1.281h-5.892l-1.86 9.338Zm7.771 0 1.864-9.338h3.55c.629 0 1.107.056 1.429.174.326.12.579.325.769.616.189.29.284.627.284 1.005 0 .616-.212 1.205-.633 1.78-.42.57-1.034 1.043-1.841 1.413l1.997 4.35h-2.111l-1.587-3.893h-1.035l-.777 3.893h-1.909Zm2.936-5.136h.588c.735 0 1.311-.227 1.724-.68.413-.454.621-.926.621-1.406a.739.739 0 0 0-.136-.461c-.091-.117-.239-.208-.448-.276-.208-.064-.61-.098-1.208-.098h-.561l-.58 2.921Zm5.813 5.136 1.864-9.338h1.743l3.042 6.511 1.3-6.511h1.519l-1.864 9.338h-1.686l-3.058-6.52-1.296 6.52h-1.564Zm9.014 0h1.568l1.311-2.373h3.698l.466 2.373h1.929l-1.804-9.338h-1.985l-5.183 9.338Zm3.58-3.662 2.031-3.647.739 3.647h-2.77Zm9.177 3.662 1.61-8.057h-3.394l.253-1.281h8.742l-.25 1.28h-3.399l-1.607 8.058h-1.955Zm6.597 0h1.947l1.865-9.338h-1.948l-1.864 9.338Zm8.086.234c-1.16 0-2.062-.321-2.71-.963-.648-.643-.973-1.5-.973-2.582 0-1.039.269-2.048.81-3.023a6.6 6.6 0 0 1 2.16-2.354c.898-.594 1.948-.892 3.145-.892s2.118.325 2.758.971c.641.643.959 1.504.959 2.577 0 1.04-.265 2.045-.799 3.012a6.67 6.67 0 0 1-2.149 2.355c-.898.597-1.966.9-3.201.9Zm.435-1.285c.61 0 1.19-.2 1.736-.6.541-.401.996-.998 1.356-1.8.36-.8.542-1.61.542-2.433 0-.805-.186-1.406-.561-1.807-.375-.404-.86-.604-1.466-.604-.591 0-1.163.204-1.717.612-.553.408-1.007 1.009-1.36 1.806a5.922 5.922 0 0 0-.527 2.408c0 .831.19 1.44.58 1.829.383.397.856.59 1.417.59Zm6.309 1.051 1.864-9.338h1.743l3.039 6.511 1.299-6.511h1.52l-1.861 9.338h-1.686l-3.057-6.52-1.296 6.52h-1.565Zm9.014 0h1.569l1.311-2.373h3.698l.466 2.373h1.928l-1.803-9.338h-1.986l-5.183 9.338Zm3.581-3.662 2.03-3.647.739 3.647h-2.769Zm6.797 3.662 1.864-9.338h1.948l-1.607 8.05h4.335l-.258 1.288h-6.282Z\" fill=\"#4D4D4D\"/><path d=\"M51.73 18.864h-2.284a3.975 3.975 0 0 0-.451-1.41 3.507 3.507 0 0 0-.928-1.084 4.192 4.192 0 0 0-1.376-.688 6.036 6.036 0 0 0-1.762-.242c-.86 0-1.633.152-2.319.458a4.728 4.728 0 0 0-1.739 1.311c-.473.567-.837 1.27-1.095 2.109-.254.835-.379 1.791-.379 2.86 0 1.085.13 2.049.39 2.884.262.835.626 1.542 1.1 2.12a4.497 4.497 0 0 0 1.716 1.304c.674.295 1.432.442 2.277.442 1.383 0 2.46-.325 3.228-.971.77-.646 1.213-1.557 1.33-2.729h2.285c-.08.904-.307 1.701-.682 2.4a5.482 5.482 0 0 1-1.47 1.758 6.37 6.37 0 0 1-2.1 1.073 8.757 8.757 0 0 1-2.56.363c-1.194 0-2.27-.2-3.236-.605a6.79 6.79 0 0 1-2.46-1.735c-.678-.752-1.2-1.659-1.568-2.724-.368-1.066-.553-2.257-.553-3.58 0-1.326.185-2.524.553-3.59.367-1.065.89-1.972 1.569-2.72a6.804 6.804 0 0 1 2.459-1.728c.962-.404 2.042-.604 3.236-.604.897 0 1.742.128 2.538.385.796.257 1.493.62 2.103 1.085a5.677 5.677 0 0 1 1.478 1.685c.39.658.621 1.383.7 2.173Zm15.571 11.67h-2.716l-4.953-7.078-5.001 7.078h-2.717l6.434-8.817-5.805-7.883h2.74l4.334 6.164 4.361-6.164h2.694l-5.827 7.883 6.456 8.817Zm3.371-16.7h-2.25v16.7h2.25v-16.7Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17huz7g\",\"data-framer-name\":\"EBC\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dxfqq5\",\"data-framer-name\":\"EBC_logo\",fill:\"black\",intrinsicHeight:54,intrinsicWidth:259,svg:'<svg width=\"259\" height=\"54\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M96.418 15.196h.37v3.04h-.37c-.13-.534-.294-.866-.485-1.002-.19-.137-.604-.202-1.242-.202h-3.06v4.478c0 .31.07.534.206.659.136.125.37.19.697.19h2.157c.774 0 1.308-.043 1.602-.125.294-.081.544-.245.746-.474.202-.228.42-.604.654-1.122h.37l-.566 2.337h-8.895v-.365c.555 0 .926-.141 1.116-.43.19-.289.283-.8.283-1.53v-7.823c0-.763-.098-1.286-.294-1.57-.196-.283-.566-.424-1.105-.424v-.365h8.895v2.092h-.235c-.125-.6-.305-.992-.544-1.188-.235-.196-.747-.294-1.53-.294H91.63v5.35h3.454c.468 0 .79-.088.964-.257.168-.18.294-.5.37-.975Zm13.684-3.021-3.061 4.004 3.143 4.342c.567.785 1.008 1.313 1.318 1.574.311.267.692.43 1.144.502v.365H107.7v-.365c.632-.017.943-.31.943-.883 0-.37-.153-.768-.453-1.182l-2.173-3.023-2.38 3.116c-.371.485-.556.898-.556 1.23 0 .437.321.682.97.742v.365h-3.949v-.365c.446 0 .833-.104 1.149-.316.316-.213.681-.589 1.095-1.133l3.252-4.228-2.98-4.15c-.512-.72-.948-1.22-1.302-1.515a1.867 1.867 0 0 0-1.214-.436v-.365h4.738v.365c-.599 0-.898.218-.898.654 0 .234.103.501.316.79l2.342 3.3 2.309-2.952c.36-.463.54-.85.54-1.16 0-.42-.333-.627-.986-.627v-.364h3.949v.364c-.507 0-.904.082-1.198.246-.3.158-.67.528-1.112 1.105Zm15.895-1.9v3.732h-.37c-.294-1.16-.768-2.01-1.416-2.56-.648-.545-1.515-.823-2.593-.823-1.405 0-2.517.512-3.339 1.536-.823 1.024-1.231 2.386-1.231 4.091 0 1.869.436 3.372 1.302 4.516.866 1.139 1.999 1.71 3.404 1.71 1.945 0 3.377-.914 4.303-2.75l.327.31a4.982 4.982 0 0 1-2.004 2.36c-.921.577-1.972.865-3.154.865a6.215 6.215 0 0 1-3.1-.8 5.585 5.585 0 0 1-2.2-2.201c-.518-.937-.774-2.01-.774-3.225 0-1.989.605-3.64 1.809-4.941 1.209-1.302 2.729-1.956 4.57-1.956.615 0 1.4.11 2.348.333.533.125.904.19 1.105.19.316 0 .54-.13.665-.392h.348v.005Zm12.501 10.339V16.98h-6.727v3.634c0 .74.103 1.258.31 1.547.207.294.583.436 1.122.436v.365h-4.461v-.365c.539 0 .91-.148 1.106-.442.196-.294.294-.811.294-1.541v-7.801c0-.768-.098-1.291-.299-1.575-.202-.283-.567-.419-1.101-.419v-.365h4.461v.365c-.539 0-.915.153-1.122.452-.207.3-.31.817-.31 1.542v3.562h6.727v-3.562c0-.768-.098-1.291-.289-1.575-.19-.283-.555-.419-1.089-.419v-.365h4.423v.365c-.529 0-.894.147-1.095.436-.202.294-.305.812-.305 1.558v7.8c0 .747.103 1.265.305 1.553.201.289.566.43 1.095.43v.366h-4.423v-.365c.544 0 .915-.142 1.1-.43.185-.29.278-.807.278-1.553Zm12.691 2.347v-.365c.708 0 1.062-.25 1.062-.746 0-.142-.033-.305-.093-.48l-1.149-3.47h-3.965l-.845 2.512c-.212.632-.316 1.095-.316 1.378 0 .528.327.795.975.812v.364h-3.186v-.364c.457-.066.811-.218 1.062-.458.251-.24.507-.746.768-1.509l3.415-10.318h1.27l3.584 10.776c.212.631.43 1.046.659 1.23.229.186.594.279 1.1.279v.364h-4.341v-.005Zm-3.911-5.829h3.48l-1.748-5.3-1.732 5.3Zm19.425-6.312v-.364h3.726v.365c-.599 0-1.008.141-1.242.425-.234.283-.349.8-.349 1.547v10.17h-.376l-8.747-10.873v8.781c0 .621.125 1.063.375 1.33.251.266.665.397 1.248.397v.365h-3.748v-.365c.594 0 1.002-.158 1.209-.474.213-.316.316-.871.316-1.672V13.13c0-.79-.141-1.356-.425-1.7-.283-.342-.751-.55-1.405-.615v-.365h3.17l7.757 9.735V12.88c0-.768-.109-1.302-.321-1.607-.218-.3-.611-.452-1.188-.452Zm18.903 6.729v.364c-.545 0-.937.126-1.171.382-.234.25-.354.686-.354 1.307v3.367c-.289.076-.828.147-1.618.212-.79.066-1.4.098-1.836.098-2.282 0-4.058-.566-5.332-1.705-1.275-1.138-1.912-2.636-1.912-4.5 0-1.301.278-2.473.839-3.519a6.327 6.327 0 0 1 2.336-2.484c1.003-.61 2.059-.915 3.187-.915.675 0 1.405.12 2.201.365.506.147.893.224 1.16.224.348 0 .583-.137.697-.414h.387v3.688h-.349c-.142-1.025-.599-1.842-1.373-2.457-.773-.616-1.683-.92-2.723-.92-1.307 0-2.375.527-3.208 1.584-.834 1.057-1.253 2.419-1.253 4.086 0 1.836.485 3.356 1.449 4.565.964 1.21 2.179 1.814 3.638 1.814 1.384 0 2.076-.447 2.076-1.335V20c0-.768-.098-1.308-.3-1.613-.201-.305-.55-.457-1.057-.457h-.474v-.365h4.99v-.017Zm10.062-2.353h.37v3.04h-.37c-.131-.534-.294-.866-.485-1.002-.19-.137-.604-.202-1.242-.202h-3.061v4.478c0 .31.071.534.207.659s.37.19.697.19h2.157c.774 0 1.308-.043 1.602-.125a1.57 1.57 0 0 0 .746-.474c.202-.228.419-.604.654-1.122h.37l-.566 2.337h-8.895v-.365c.555 0 .926-.141 1.116-.43.191-.289.283-.8.283-1.53v-7.823c0-.763-.098-1.286-.294-1.57-.196-.283-.566-.424-1.105-.424v-.365h8.895v2.092h-.235c-.125-.6-.305-.992-.544-1.188-.235-.196-.747-.294-1.531-.294h-3.557v5.35h3.454c.468 0 .789-.088.964-.257.169-.18.294-.5.37-.975Zm15.454 7.766h-5.692v-.365c.528 0 .893-.142 1.095-.43.201-.29.305-.807.305-1.553v-7.801c0-.763-.098-1.286-.289-1.569-.191-.283-.561-.425-1.111-.425v-.365h4.657c1.334 0 2.386.278 3.148.839.768.556 1.15 1.296 1.15 2.212 0 1.34-.828 2.288-2.484 2.832v.055c.942.19 1.705.616 2.298 1.264.594.648.888 1.4.888 2.244 0 .926-.365 1.667-1.089 2.223-.719.56-1.683.839-2.876.839Zm-2.658-12.023v5.3h1.274c.894 0 1.602-.234 2.13-.708.528-.474.79-1.111.79-1.912 0-.844-.256-1.503-.774-1.972-.517-.468-1.247-.703-2.189-.703h-1.231v-.005Zm1.171 5.774h-1.171v3.666c0 .812.087 1.362.261 1.656.174.295.512.442 1.013.442h1.024c.719 0 1.302-.245 1.754-.73.452-.485.681-1.139.681-1.956 0-.931-.327-1.678-.975-2.239-.648-.555-1.509-.839-2.587-.839Zm14.882 6.248v-.365c.708 0 1.062-.25 1.062-.746 0-.142-.033-.305-.092-.48l-1.15-3.47h-3.965l-.845 2.512c-.212.632-.315 1.095-.315 1.378 0 .528.326.795.975.812v.364H217v-.364c.458-.066.812-.218 1.062-.458.251-.24.507-.746.768-1.509l3.416-10.318h1.269l3.584 10.776c.212.631.43 1.046.659 1.23.229.186.594.279 1.1.279v.364h-4.341v-.005Zm-3.917-5.829h3.481l-1.748-5.3-1.733 5.3Zm19.431-6.312v-.364h3.726v.365c-.599 0-1.008.141-1.242.425-.234.283-.348.8-.348 1.547v10.17h-.376l-8.748-10.873v8.781c0 .621.125 1.063.376 1.33.25.266.664.397 1.247.397v.365h-3.748v-.365c.594 0 1.003-.158 1.21-.474.212-.316.315-.871.315-1.672V13.13c0-.79-.141-1.356-.424-1.7-.284-.342-.752-.55-1.406-.615v-.365h3.17l7.757 9.735V12.88c0-.768-.109-1.302-.321-1.607-.218-.3-.616-.452-1.188-.452Zm6.246 12.142v-.365c.54 0 .91-.148 1.106-.442.196-.294.294-.811.294-1.541v-7.801c0-.752-.098-1.275-.288-1.564-.191-.288-.562-.43-1.112-.43v-.365h4.423v.365c-.517 0-.877.147-1.078.447-.202.3-.3.812-.3 1.547v3.775l4.031-4.015c.43-.436.643-.784.643-1.046 0-.365-.262-.599-.779-.702v-.365h4.663v.364h-.61c-.371 0-.801.126-1.281.376-.479.251-.92.583-1.318.997l-3.84 3.846 5.104 5.235c.507.529.893.872 1.166 1.03.272.158.653.256 1.149.289v.365h-2.936l-5.986-6.129v3.78c0 .736.098 1.248.288 1.542.191.294.556.442 1.09.442v.365h-4.429ZM89.14 36.885c0-1.857.632-3.405 1.896-4.641 1.264-1.242 2.838-1.858 4.728-1.858 1.83 0 3.383.627 4.647 1.885 1.263 1.258 1.901 2.795 1.901 4.614 0 1.858-.638 3.421-1.918 4.701-1.274 1.28-2.838 1.918-4.684 1.918-1.841 0-3.394-.637-4.663-1.918-1.27-1.28-1.906-2.843-1.906-4.7Zm1.896.022c0 1.825.43 3.301 1.286 4.429.855 1.127 1.977 1.689 3.366 1.689 1.405 0 2.544-.578 3.415-1.727.872-1.15 1.313-2.588 1.313-4.31 0-1.846-.43-3.333-1.285-4.45-.856-1.117-1.967-1.678-3.329-1.678-1.443 0-2.603.55-3.47 1.65-.86 1.107-1.296 2.572-1.296 4.397Zm20.458.245h-3.262v3.694c0 .746.103 1.264.305 1.552.201.289.572.43 1.105.43v.365h-4.439v-.364c.534 0 .899-.142 1.1-.43.202-.29.3-.807.3-1.553v-7.801c0-.752-.098-1.275-.294-1.564-.196-.288-.567-.43-1.106-.43v-.365h8.47v2.217h-.283c-.131-.659-.31-1.095-.528-1.302-.218-.207-.714-.31-1.482-.31h-3.148v5.235h3.219c.436 0 .757-.115.969-.338.213-.223.349-.605.409-1.144h.338v3.52h-.338c-.038-.938-.485-1.412-1.335-1.412Zm21.554-6.64v3.731h-.37c-.294-1.16-.768-2.01-1.416-2.56-.649-.545-1.515-.823-2.593-.823-1.406 0-2.517.512-3.339 1.537-.823 1.024-1.231 2.386-1.231 4.09 0 1.87.435 3.373 1.302 4.517.866 1.138 1.999 1.71 3.404 1.71 1.945 0 3.377-.915 4.303-2.75l.327.31a4.979 4.979 0 0 1-2.005 2.358c-.92.578-1.971.867-3.153.867a6.216 6.216 0 0 1-3.1-.801 5.586 5.586 0 0 1-2.2-2.201c-.518-.937-.774-2.01-.774-3.225 0-1.988.605-3.639 1.809-4.94 1.209-1.303 2.729-1.957 4.57-1.957.615 0 1.4.11 2.347.333.534.125.904.19 1.106.19.316 0 .539-.13.665-.392h.348v.006Zm9.957 12.685v-.365c.708 0 1.062-.25 1.062-.746 0-.142-.032-.305-.092-.48l-1.15-3.47h-3.965l-.844 2.512c-.213.632-.316 1.095-.316 1.378 0 .529.327.795.975.812v.365h-3.187v-.365c.458-.066.812-.218 1.062-.458.251-.24.507-.746.768-1.509l3.416-10.317h1.269l3.584 10.775c.213.632.43 1.046.659 1.231.229.185.594.278 1.101.278v.365h-4.342v-.006Zm-3.916-5.834h3.48l-1.748-5.3-1.732 5.3Zm19.43-6.307v-.364h3.726v.364c-.599 0-1.007.142-1.242.425-.234.284-.348.801-.348 1.547V43.2h-.376l-8.748-10.873v8.781c0 .621.125 1.062.376 1.33.25.266.664.397 1.247.397v.365h-3.747v-.365c.593 0 1.002-.158 1.209-.474.212-.316.316-.871.316-1.672v-7.322c0-.79-.142-1.356-.425-1.7-.283-.343-.752-.55-1.405-.615v-.365h3.17l7.756 9.735v-7.31c0-.769-.109-1.303-.321-1.608-.218-.294-.61-.447-1.188-.447Zm13.4 12.141v-.365c.708 0 1.062-.25 1.062-.746 0-.142-.032-.305-.092-.48l-1.15-3.47h-3.965l-.844 2.512c-.213.632-.316 1.095-.316 1.378 0 .529.327.795.975.812v.365h-3.187v-.365c.458-.066.812-.218 1.062-.458.251-.24.507-.746.769-1.509l3.415-10.317h1.269l3.584 10.775c.213.632.43 1.046.659 1.231.229.185.594.278 1.101.278v.365h-4.342v-.006Zm-3.916-5.834h3.48l-1.748-5.3-1.732 5.3Zm10.27 5.834v-.364c.529 0 .894-.148 1.095-.442.202-.294.305-.811.305-1.541v-7.801c0-.747-.103-1.264-.305-1.558-.201-.294-.566-.436-1.095-.436v-.365h5.709c2.108 0 3.797.61 5.066 1.825 1.269 1.215 1.895 2.762 1.895 4.636 0 1.841-.599 3.306-1.797 4.401-1.199 1.095-2.865 1.64-5.006 1.64h-5.867v.005Zm5.377-12.028h-2.348v9.234c0 .888.103 1.498.316 1.825.212.327.632.49 1.264.49h1.274c1.515 0 2.707-.496 3.579-1.487.871-.992 1.307-2.343 1.307-4.059 0-1.819-.474-3.273-1.427-4.363-.953-1.095-2.277-1.64-3.965-1.64Zm16.215 12.028v-.365c.708 0 1.062-.25 1.062-.746 0-.142-.033-.305-.093-.48l-1.149-3.47h-3.966l-.844 2.512c-.212.632-.316 1.095-.316 1.378 0 .529.327.795.975.812v.365h-3.186v-.365c.457-.066.811-.218 1.062-.458.25-.24.506-.746.768-1.509l3.415-10.317h1.269l3.584 10.775c.213.632.431 1.046.66 1.231.228.185.593.278 1.1.278v.365h-4.341v-.006Zm-3.917-5.834h3.481l-1.749-5.3-1.732 5.3ZM70.703 17.395c-2.696-5.91-7.146-8.983-9.298-10.432-3.704-2.495-9.93-4.674-12.692-5.274.986.458 13.51 6.238 14.73 16.038.631 5.06-1.379 8.972-2.022 10.187-4.466 8.432-15.976 12.861-29.12 11.99v.01c-.049-.005-.092-.016-.141-.016-1.21 0-2.184.98-2.184 2.185 0 1.15.893 2.086 2.02 2.168v.01c1.488.148 3.66.284 6.28.142 3.58-.196 18.412-.958 25.417-11.532 1.035-1.563 3.59-5.53 3.535-11.026-.038-3.742-1.27-6.488-1.765-7.577a19.06 19.06 0 0 0-2.222-3.677c2.434 2.783 4.526 6.384 5.076 10.873.736 5.998-1.64 10.628-2.385 12.044-5.284 9.975-18.89 15.21-34.437 14.18v.011c-.054-.005-.109-.016-.163-.016a2.58 2.58 0 0 0-2.582 2.582 2.58 2.58 0 0 0 2.391 2.566v.016c1.754.174 4.33.338 7.425.169 4.232-.229 21.766-1.133 30.056-13.635 1.226-1.847 4.244-6.537 4.178-13.036-.049-4.418-1.509-7.665-2.097-8.95Z\" fill=\"#4D4D4D\"/><path d=\"M32.895 36.14v.01c1.225.12 3.023.235 5.18.115 2.952-.164 15.186-.79 20.966-9.512.855-1.285 2.963-4.56 2.914-9.097-.033-3.089-1.051-5.35-1.46-6.248C57.314 4.44 50.178 2.13 48.691 1.689c.828.382 9.135 4.402 10.137 12.568.512 4.184-1.144 7.414-1.667 8.4-3.687 6.956-13.176 10.612-24.021 9.893v.01c-.038 0-.076-.01-.114-.01-.997 0-1.803.806-1.803 1.803a1.8 1.8 0 0 0 1.672 1.786Z\" fill=\"#4D4D4D\"/><path d=\"M3.003 36.26c2.696 5.911 7.146 8.984 9.298 10.433 3.704 2.495 9.93 4.674 12.691 5.273-.985-.458-13.508-6.238-14.728-16.038-.632-5.06 1.378-8.972 2.02-10.186 4.467-8.433 15.977-12.862 29.12-11.99v-.011c.05.005.093.016.142.016 1.21 0 2.184-.98 2.184-2.184 0-1.15-.893-2.087-2.02-2.169v-.01a41.173 41.173 0 0 0-6.28-.142c-3.58.196-18.412.959-25.417 11.532-1.035 1.564-3.59 5.53-3.535 11.026.038 3.742 1.27 6.488 1.77 7.578a19.058 19.058 0 0 0 2.223 3.677C8.036 40.28 5.944 36.68 5.394 32.19c-.735-5.997 1.64-10.628 2.386-12.044 5.283-9.974 18.89-15.21 34.436-14.18v-.01c.055.005.11.015.163.015a2.58 2.58 0 0 0 2.582-2.582 2.58 2.58 0 0 0-2.39-2.565V.808A48.392 48.392 0 0 0 35.145.64C30.913.87 13.379 1.772 5.089 14.274 3.863 16.121.846 20.811.911 27.31c.044 4.418 1.504 7.665 2.092 8.95Z\" fill=\"#4D4D4D\"/><path d=\"M40.81 17.514v-.01a33.811 33.811 0 0 0-5.18-.115c-2.952.163-15.186.79-20.965 9.511-.855 1.286-2.963 4.56-2.914 9.097.033 3.09 1.051 5.35 1.46 6.249 3.18 6.967 10.316 9.277 11.803 9.718-.828-.381-9.134-4.401-10.137-12.567-.512-4.184 1.144-7.414 1.667-8.4 3.688-6.957 13.177-10.612 24.022-9.893v-.011c.038 0 .076.01.114.01a1.8 1.8 0 0 0 1.803-1.802 1.804 1.804 0 0 0-1.672-1.787Z\" fill=\"#4D4D4D\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i2p3rs\",\"data-framer-name\":\"Rethink\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10pnsgl\",\"data-framer-name\":\"rethink\",fill:\"black\",intrinsicHeight:90,intrinsicWidth:154,svg:'<svg width=\"154\" height=\"90\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#4D4D4D\"><path d=\"M98.183 40.497c.961 0 1.869-.028 2.773.022.196.01.417.265.564.459a2321.77 2321.77 0 0 1 5.861 7.763l9.998 13.254c.051.069.106.134.262.331V40.55h3.471v28.132c-.998 0-1.987.021-2.973-.02-.181-.006-.386-.237-.522-.411-2.517-3.3-5.023-6.609-7.531-9.914-2.653-3.496-5.303-6.993-7.957-10.486-.099-.13-.214-.252-.428-.502V68.64H98.18c.003-9.359.003-18.698.003-28.144Zm-39.421-.007H62.3v12.13h15.08v-12.1h3.597v28.167h-3.554V56.101c-.527-.184-14.402-.216-15.092-.04v12.576h-3.57V40.49Zm69.515.14h3.576v15.3c.276-.291.464-.484.645-.68 4.364-4.757 8.735-9.51 13.09-14.277.304-.332.608-.494 1.059-.484 1.028.024 2.056.009 3.131.087-3.598 4.172-7.284 8.233-10.973 12.375 3.883 5.201 7.753 10.387 11.688 15.653-.295.022-.461.047-.623.047-.559.006-1.121.009-1.679 0-.577-.01-1.243.136-1.71-.103-.469-.242-.752-.867-1.099-1.336-2.799-3.787-5.592-7.575-8.391-11.362-.141-.19-.288-.376-.454-.594-.126.087-.246.14-.326.227-1.372 1.445-2.731 2.902-4.112 4.337-.228.237-.24.488-.24.771v8.01h-3.579c-.003-9.315-.003-18.627-.003-27.973ZM41.17 43.723h-9.639v-3.234h22.932v3.203c-1.613.022-3.22.006-4.826.01-1.59.002-3.182 0-4.826 0v24.985h-3.64V43.723ZM100.442 30.2c.142-.124.264-.212.361-.32 1.619-1.846 3.727-2.797 5.999-3.44 1.212-.342 2.436-.632 3.654-.96 1.926-.52 3.687-1.371 5.115-2.837 3.56-3.653 3.882-9.48.762-13.542-1.421-1.852-3.174-3.217-5.397-3.903-2.737-.845-5.319-.402-7.758 1.025-1.652.967-3.131 2.164-3.924 4.003-.438 1.013-.772 2.083-1.054 3.155-.353 1.328-.586 2.688-.905 4.025-.641 2.672-1.978 4.913-4.01 6.712-.45.399-.962.418-1.315.047-.322-.34-.325-.895.024-1.313a9.53 9.53 0 0 1 .89-.941c1.246-1.135 1.95-2.582 2.34-4.209a243.9 243.9 0 0 0 1.053-4.664c1.33-6.17 6.178-9.474 10.707-10.05 3.846-.49 7.068.928 9.738 3.722 1.498 1.568 2.649 3.392 3.217 5.52 1.026 3.863.316 7.411-2.066 10.579-1.442 1.92-3.441 3.052-5.616 3.844-1.585.576-3.217 1.01-4.823 1.524-.772.246-1.54.511-2.294.814-1.421.567-2.563 1.534-3.584 2.68-1.023 1.148-1.172 1.136-2.235.07a1824.237 1824.237 0 0 0-3.433-3.44c-.27-.267-.498-.56-.395-.975.095-.38.316-.67.687-.804.355-.128.614.068.85.308.975.98 1.954 1.955 2.932 2.93.142.141.303.278.48.44ZM87.426 40.49h3.583v28.197h-3.583V40.49ZM27.1 64.811c.248.076.468.146.772.242-.153.337-.26.646-.423.92-1.22 2.052-3.04 3.258-5.238 3.843-4.14 1.104-8.232-.722-10.565-4.642-2.305-3.876-2.136-9.017.466-12.68 1.572-2.217 3.66-3.649 6.326-3.973 2.636-.322 5.045.343 7.099 2.144 2.504 2.202 3.79 5.018 3.843 8.432.003.216-.022.432-.037.725h-18.39c.114 1.639.512 3.105 1.26 4.455 1.346 2.434 3.255 4.117 5.946 4.747 3.5.817 7.396-1.088 8.744-3.92.04-.08.099-.147.197-.293ZM10.926 58.84H28.38c.021-.12.04-.184.04-.251a2.454 2.454 0 0 0-.01-.334c-.223-1.82-.769-3.513-1.787-5.03-2.39-3.567-6.758-4.904-10.426-3.052-3.418 1.728-4.901 4.81-5.272 8.667ZM.86 69.41H0V49.214h.845v4.624c1.88-2.784 4.179-4.716 7.755-4.67v.827c-.432.068-.858.111-1.271.197-2.844.6-4.77 2.32-5.96 4.938a5.671 5.671 0 0 0-.524 2.437c.03 3.667.012 7.334.012 11.005.003.252.003.508.003.84Zm29.26 14.806c.742-1.25 1.424-2.398 2.108-3.544.438-.737.891-1.464 1.31-2.213.2-.353.446-.45.858-.297v8.601h-.643v-7.03c-.041-.013-.083-.029-.127-.041-.165.271-.336.543-.497.818-.84 1.417-1.677 2.838-2.524 4.252-.37.624-.602.63-.973.013-.871-1.45-1.73-2.91-2.596-4.362a2.774 2.774 0 0 0-.453-.606c-.12.762-.086 1.527-.092 2.286-.006.768 0 1.532 0 2.3v2.367h-.694v-8.589c.497-.212.738 0 .954.372.973 1.67 1.968 3.331 2.954 4.995.111.188.228.372.415.678Zm60.564-58.91c.17.123.519.31.793.579 1.29 1.27 2.56 2.564 3.837 3.848 1.01 1.015 2.026 2.024 3.03 3.043.17.171.323.372.44.585.21.388.103.754-.183 1.054-.295.314-.654.375-1.028.175a2.073 2.073 0 0 1-.472-.366 3319.84 3319.84 0 0 1-7.011-7.03 2.119 2.119 0 0 1-.41-.53c-.314-.627.117-1.355 1.004-1.358Zm-3.667 3.615c.154.12.457.301.695.557 1.832 1.97 3.653 3.958 5.476 5.942.379.41.777.805 1.129 1.249.401.508.358 1.074-.055 1.437-.355.31-.762.291-1.167-.107-.427-.42-.829-.874-1.239-1.317-1.811-1.965-3.617-3.936-5.432-5.894-.259-.281-.457-.56-.425-.996.041-.515.373-.88 1.018-.87Zm9.725 6.396c-.02.607-.684 1.013-1.285.756-.234-.099-.442-.278-.627-.451a3670.71 3670.71 0 0 1-6.777-6.274c-.157-.147-.318-.293-.444-.463-.277-.383-.233-.852.088-1.15.33-.311.803-.36 1.203-.054.394.298.747.65 1.11.985l6.162 5.701c.283.266.576.529.57.95Zm-8.62 50.051v-7.223c.227-.022.406-.04.535-.056.218.199.273 7.53.11 8.587-.424.214-.694.009-.959-.33-1.626-2.087-3.264-4.166-4.899-6.247a1.38 1.38 0 0 0-.528-.441v7.055c-.265.015-.446.028-.686.043v-8.571c.424-.252.64.028.858.308A4631.53 4631.53 0 0 0 86.087 83c.627.802 1.257 1.6 1.887 2.399.05-.013.099-.022.148-.031Zm27.943 1.356h-.686v-8.538c.415-.251.634.022.855.301 1.043 1.332 2.09 2.66 3.136 3.992.763.971 1.529 1.94 2.422 2.895v-7.25h.581c.203.168.234 7.84.052 8.572-.455.196-.707-.068-.966-.4-1.615-2.067-3.24-4.128-4.865-6.189a1.434 1.434 0 0 0-.529-.447v7.064Zm12.212-8.601c1.137 0 2.219-.094 3.284.021 1.55.168 2.527 1.186 2.965 2.807.26.963.268 1.938.023 2.9-.416 1.627-1.395 2.66-2.936 2.847-1.083.13-2.188.025-3.333.025-.003-2.86-.003-5.694-.003-8.6Zm.701.664c-.034.143-.068.223-.068.307-.006 2.177-.003 4.353-.012 6.53 0 .37.16.503.479.494.658-.02 1.318.009 1.974-.04 1.253-.094 2.062-.852 2.475-2.118a4.877 4.877 0 0 0-.015-3.133c-.378-1.133-1.125-1.879-2.224-2.018-.843-.109-1.706-.022-2.609-.022Zm17.928 3.693c-.015 2.134-1.488 3.92-3.504 4.241-.896.144-1.719-.086-2.465-.577-2.527-1.673-2.554-5.655-.063-7.383 1.497-1.038 3.393-.864 4.689.428.841.836 1.352 2.094 1.343 3.291Zm-3.868 3.743c.502-.195 1.049-.314 1.5-.595 1.905-1.182 2.239-4.14.691-5.835-1.388-1.523-3.537-1.404-4.758.263a3.98 3.98 0 0 0-.12 4.564c.631.944 1.503 1.475 2.687 1.603Zm-71.374-8.136h5.546c.145.595.126.642-.408.645-1.213.013-2.422.003-3.635.003h-.756v3.267h4.23v.583h-4.236v3.514c.268.016.5.038.731.038 1.256.003 2.509-.003 3.765.006.51.003.51.019.49.62h-5.724c-.003-2.878-.003-5.763-.003-8.676Zm-10.75.035c1.43 0 2.815-.093 4.177.025 1.532.13 2.596 1.888 2.183 3.378-.314 1.123-1.312 2.112-2.75 2.019-.91-.06-1.83-.013-2.864-.013-.003.573-.01 1.108-.013 1.64-.003.52 0 1.035 0 1.592h-.73c-.003-2.88-.003-5.742-.003-8.641Zm.78 4.669c.156.031.225.056.29.056.852.006 1.7.012 2.55.01 1.123-.004 1.81-.533 2.033-1.562.236-1.095-.471-2.383-1.476-2.47-1.11-.097-2.232-.022-3.398-.022v3.988ZM.775 85.69c-.143.906-.143.906-.715.886-.02-.155-.056-.313-.056-.474-.003-2.49-.007-4.979 0-7.468 0-.605.013-.605.711-.483v3.404c.07.045.142.087.212.131.106-.155.182-.34.324-.465 1.482-1.284 3.532-1.043 4.624.534 1.068 1.541.602 3.598-1.025 4.555-1.142.668-2.514.593-3.55-.197-.172-.13-.334-.268-.525-.423Zm4.964-2.316c-.115-.295-.244-.835-.529-1.294-.549-.888-1.624-1.243-2.686-.978-.999.248-1.79 1.19-1.792 2.126 0 .355.013.71-.004 1.064-.023.552.248.969.708 1.294.81.572 1.717.757 2.666.352 1.065-.454 1.525-1.288 1.637-2.564Zm88.14 2.064.288-.468c.129.083.236.14.33.214 1.162.914 2.476 1.134 3.889.804.787-.183 1.143-.623 1.185-1.32.046-.762-.239-1.223-1.026-1.507-.542-.2-1.109-.318-1.667-.474-.475-.132-.962-.233-1.421-.407-1.431-.54-1.78-2.237-.708-3.344.591-.611 1.357-.798 2.166-.84 1.088-.059 2.087.165 2.932 1.002l-.226.364c-.687-.254-1.281-.572-1.912-.682-.552-.094-1.159-.018-1.713.104-.73.16-1.1.716-1.115 1.458-.019.774.23 1.137 1.054 1.394.652.205 1.33.33 1.991.514.432.122.867.25 1.275.437.723.333 1.115.905 1.127 1.724.012.846-.309 1.495-1.07 1.904-1.678.899-4.294.364-5.38-.877Zm17.199 1.246c-.446.17-.705.077-.877-.375-.306-.808-.671-1.598-1.018-2.416-1.28 0-2.525.01-3.771-.006-.322-.003-.409.192-.5.415-.274.663-.568 1.316-.818 1.988-.162.44-.421.57-.899.39.063-.182.116-.365.188-.538 1.08-2.515 2.163-5.03 3.246-7.544a.37.37 0 0 0 .025-.059c.091-.22.15-.446.475-.452.318-.006.403.204.496.427.366.861.734 1.72 1.099 2.58.734 1.719 1.471 3.437 2.201 5.156.06.136.1.279.153.434Zm-5.732-3.42h3.587c-.596-1.424-1.167-2.78-1.795-4.276-.633 1.514-1.202 2.868-1.792 4.277Zm-58.764 3.419c-.452.174-.705.072-.877-.379-.306-.811-.67-1.604-1.017-2.42-1.28 0-2.528.008-3.773-.007-.322-.003-.406.196-.5.42-.274.665-.567 1.32-.817 1.995-.162.44-.421.568-.899.388.066-.186.116-.367.19-.54 1.08-2.524 2.163-5.048 3.246-7.571.025-.06.031-.14.075-.18.134-.119.28-.299.428-.302.143-.003.352.15.427.289.206.382.356.796.528 1.197.948 2.225 1.894 4.45 2.84 6.678.056.137.096.28.15.432Zm-2.14-3.418c-.597-1.43-1.165-2.8-1.795-4.311-.634 1.52-1.202 2.887-1.794 4.31h3.588Zm-28.678-2.913c-.33.877-.656 1.747-.986 2.615-.73 1.93-1.46 3.865-2.198 5.793-.26.684-.605.922-1.153.893-.316-.016-.392-.174-.301-.533.628-.052.893-.553 1.077-1.157a3.85 3.85 0 0 1 .242-.62c.172-.344.15-.652-.003-1.015-.732-1.758-1.439-3.531-2.154-5.299-.09-.221-.17-.446-.257-.68.418-.19.645-.094.812.337.592 1.532 1.214 3.049 1.827 4.572.082.202.17.404.312.739.12-.293.199-.48.269-.669.575-1.539 1.156-3.078 1.713-4.626.155-.421.371-.55.8-.35ZM91.73 37.49c-1.237.387-3.089-.3-4.325-1.509-1.078-1.053-1.686-2.6-1.285-3.444 1.062.724 1.92 1.616 2.852 2.426.922.798 1.89 1.567 2.757 2.527ZM56.612 86.2v.563h-5.583c-.176-.479-.21-7.975-.033-8.676h.486c.037.069.086.122.089.182.018.263.036.526.036.789.003 2.133 0 4.263.003 6.396.003.673.03.699.694.702 1.174.006 2.349 0 3.523.003.25-.003.502.022.785.04Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h153.358v89.656H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4wplc9\",\"data-framer-name\":\"TExt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-16948s7\",\"data-styles-preset\":\"HgbbYrwvT\",children:[\"Recent \",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Work\"})})]})}),className:\"framer-1nz0ma4\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1efk3y0 hidden-1w13n1a hidden-z2da3d\",\"data-framer-name\":\"TExt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-16948s7\",\"data-styles-preset\":\"HgbbYrwvT\",children:[\"Our \",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Clients Love Us\"})})]})}),className:\"framer-8h8b6\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jagdja hidden-l6bkt5\",\"data-framer-name\":\"Cards recent work\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p4x9p0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mJOnVcw7n:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 782px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+89+0+1294+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:449,width:`min(${componentViewport?.width||\"100vw\"} - 128px, 1200px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mJOnVcw7n:{__framer__enter:animation4}},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-18hud13-container\",nodeId:\"VatjvLe3L\",rendersWithMotion:true,scopeId:\"Ry9rzN5pd\",children:/*#__PURE__*/_jsx(EBCCardWebsite,{height:\"100%\",id:\"VatjvLe3L\",layoutId:\"VatjvLe3L\",style:{width:\"100%\"},variant:\"vz1fBfRmh\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mJOnVcw7n:{height:449,width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 782px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+89+0+1294+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`min(${componentViewport?.width||\"100vw\"} - 128px, 1200px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mJOnVcw7n:{__framer__enter:animation4}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2jtvs9-container\",nodeId:\"mHtyGBLRb\",rendersWithMotion:true,scopeId:\"Ry9rzN5pd\",children:/*#__PURE__*/_jsx(EBCCardWebsite,{height:\"100%\",id:\"mHtyGBLRb\",layoutId:\"mHtyGBLRb\",style:{height:\"100%\",width:\"100%\"},variant:\"b_AMUZY1w\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mJOnVcw7n:{height:449,width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 782px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+89+0+1294+60+0+0+465}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`min(${componentViewport?.width||\"100vw\"} - 128px, 1200px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mJOnVcw7n:{__framer__enter:animation4}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hdpc78-container\",nodeId:\"YSp4FEHHP\",rendersWithMotion:true,scopeId:\"Ry9rzN5pd\",children:/*#__PURE__*/_jsx(EBCCardWebsite,{height:\"100%\",id:\"YSp4FEHHP\",layoutId:\"YSp4FEHHP\",style:{height:\"100%\",width:\"100%\"},variant:\"heHGp8plb\",width:\"100%\"})})})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-m5skpn hidden-l6bkt5\",\"data-framer-name\":\"TExt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mJOnVcw7n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-16948s7\",\"data-styles-preset\":\"HgbbYrwvT\",children:[\"Our Client \",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Love Us\"})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-16948s7\",\"data-styles-preset\":\"HgbbYrwvT\",children:[\"Our Clients \",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Love Us\"})})]})}),className:\"framer-qts1b7\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"center\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19d8wgb hidden-l6bkt5\",\"data-framer-name\":\"Testimonials 2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1lfoyts\",\"data-framer-name\":\"\u201C\",fill:'var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)) /* {\"name\":\"dark grey\"} */',intrinsicHeight:131,intrinsicWidth:164,svg:'<svg width=\"164\" height=\"131\" viewBox=\"-1 -1 164 131\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M126.509 128.992C114.413 128.992 104.391 125.036 96.4427 117.125C88.8398 109.213 85.0383 97.8621 85.0383 83.071C85.0383 67.248 89.531 51.5969 98.5162 36.1179C107.847 20.6388 120.807 8.59949 137.395 0L149.318 18.0589C131.347 30.4422 120.634 46.0932 117.178 65.0121C120.288 63.6362 123.917 62.9482 128.064 62.9482C137.74 62.9482 145.689 66.044 151.909 72.2357C158.13 78.4273 161.24 86.3388 161.24 95.9702C161.24 105.602 157.957 113.513 151.391 119.705C144.825 125.896 136.531 128.992 126.509 128.992ZM41.4705 128.992C29.3749 128.992 19.3529 125.036 11.4044 117.125C3.80146 109.213 0 97.8621 0 83.071C0 67.248 4.49263 51.5969 13.4779 36.1179C22.8087 20.6388 35.7683 8.59949 52.3565 9.00031e-07L64.2792 18.0589C46.3087 30.4422 35.5955 46.0932 32.1396 65.0121C35.2499 63.6362 38.8786 62.9482 43.0256 62.9482C52.702 62.9482 60.6505 66.044 66.8711 72.2357C73.0917 78.4273 76.202 86.3388 76.202 95.9702C76.202 105.602 72.9189 113.513 66.3527 119.705C59.7866 125.896 51.4925 128.992 41.4705 128.992Z\" fill=\"#333333\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5rwpfs\",\"data-framer-name\":\"\u201C\",fill:'var(--token-9cd4d6b9-d39e-4341-8687-23bd7cb3f870, rgb(51, 51, 51)) /* {\"name\":\"dark grey\"} */',intrinsicHeight:131,intrinsicWidth:164,style:{rotate:-180},svg:'<svg width=\"164\" height=\"131\" viewBox=\"-1 -1 164 131\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M126.509 128.992C114.413 128.992 104.391 125.036 96.4427 117.125C88.8398 109.213 85.0383 97.8621 85.0383 83.071C85.0383 67.248 89.531 51.5969 98.5162 36.1179C107.847 20.6388 120.807 8.59949 137.395 0L149.318 18.0589C131.347 30.4422 120.634 46.0932 117.178 65.0121C120.288 63.6362 123.917 62.9482 128.064 62.9482C137.74 62.9482 145.689 66.044 151.909 72.2357C158.13 78.4273 161.24 86.3388 161.24 95.9702C161.24 105.602 157.957 113.513 151.391 119.705C144.825 125.896 136.531 128.992 126.509 128.992ZM41.4705 128.992C29.3749 128.992 19.3529 125.036 11.4044 117.125C3.80146 109.213 0 97.8621 0 83.071C0 67.248 4.49263 51.5969 13.4779 36.1179C22.8087 20.6388 35.7683 8.59949 52.3565 9.00031e-07L64.2792 18.0589C46.3087 30.4422 35.5955 46.0932 32.1396 65.0121C35.2499 63.6362 38.8786 62.9482 43.0256 62.9482C52.702 62.9482 60.6505 66.044 66.8711 72.2357C73.0917 78.4273 76.202 86.3388 76.202 95.9702C76.202 105.602 72.9189 113.513 66.3527 119.705C59.7866 125.896 51.4925 128.992 41.4705 128.992Z\" fill=\"#333333\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-21cudl\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9bkf7p-container\",isModuleExternal:true,nodeId:\"WFlaRxz_u\",scopeId:\"Ry9rzN5pd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mJOnVcw7n:{paddingBottom:40,paddingLeft:40,paddingRight:40,paddingTop:40,progressObject:{dotsActiveOpacity:.9,dotsBackground:\"rgba(255, 255, 255, 0)\",dotsBlur:0,dotsFill:\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110))\",dotsGap:16,dotsInset:10,dotSize:16,dotsOpacity:.5,dotsPadding:16,dotsRadius:200,showProgressDots:true,showScrollbar:false}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-c486fd45-2893-4006-9543-f4b544b4fb5a, rgb(72, 212, 165))\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:20,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:0,height:\"100%\",id:\"WFlaRxz_u\",layoutId:\"WFlaRxz_u\",padding:0,paddingBottom:80,paddingLeft:64,paddingPerSide:true,paddingRight:64,paddingTop:120,progressObject:{dotsActiveOpacity:.9,dotsBackground:\"rgba(255, 255, 255, 0)\",dotsBlur:0,dotsFill:\"var(--token-c641b198-c69e-4eb9-8144-6b5e8166fe6c, rgb(111, 111, 110))\",dotsGap:24,dotsInset:10,dotSize:16,dotsOpacity:.5,dotsPadding:16,dotsRadius:200,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13q0lbo\",\"data-framer-name\":\"EBC testimonials\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18l64ea\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16i9uwt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qxsc65\",\"data-styles-preset\":\"GXlrXm4Wm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Paula Inc has been an outstanding partner to Exchange Bank of Canada in rebuilding our website from scratch. They got to know our business and industry far more deeply than we expected from an external vendor. And their care and dedication showed in the final product. Paula is now a key partner for us in multiple projects\"})}),className:\"framer-19cecis\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:54,pixelWidth:259,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RQfHRdSOSNH6KKSY8CF5rjTA8g.svg\"},className:\"framer-ci4s26\",\"data-framer-name\":\"Avatar\"})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yxtppm\",\"data-framer-name\":\"Inukshuk testimonials\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h70z1o\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ye74rw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qxsc65\",\"data-styles-preset\":\"GXlrXm4Wm\",style:{\"--framer-text-alignment\":\"center\"},children:\"[The Paula] team asked all the right questions. They helped us present some complex details about our investment process into a very effective marketing deck, which has been invaluable in telling our story. The entire Inukshuk team were so impressed with the folks at Paula that now we don\u2019t launch any new products without their involvement.\"})}),className:\"framer-1f9jphk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:33,pixelWidth:189,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VXJAc4IfCRjaqpc7Q0inXE2n9CI.svg\"},className:\"framer-lf0j9t\",\"data-framer-name\":\"Avatar\"})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2n0lqk\",\"data-framer-name\":\"CXI testimonials\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u5ay9o\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-v2wac\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qxsc65\",\"data-styles-preset\":\"GXlrXm4Wm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Paula has worked hand in hand with our internal teams to design customer centric solutions that are core to our digital transformation. As a result, we know more than ever about our clients and can provide enhanced experiences for them. We are thrilled to have measurable and personal campaigns at scale.\"})}),className:\"framer-z49qb5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:43,pixelWidth:289,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8tXf3UWGjHK9bJyD2z98x19tF7Y.svg\"},className:\"framer-1mr5t28\",\"data-framer-name\":\"Avatar\"})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z91gb1\",\"data-framer-name\":\"Rethink testimonials\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-82yugt\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xbid1v\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qxsc65\",\"data-styles-preset\":\"GXlrXm4Wm\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Organization = Revenue. \",/*#__PURE__*/_jsx(\"br\",{}),\"That\u2019s the big lesson we drew from this engagement.\",/*#__PURE__*/_jsx(\"br\",{}),\"Paula's work has given us the ability to easily segment and organize our clients, empowering us to act more quickly and find opportunities in places we would have never thought to look.\"]})}),className:\"framer-1ihr9hg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:90,pixelWidth:154,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/U9SkykNTdGy9lmI3diSuJKFDwI.svg\"},className:\"framer-ag9127\",\"data-framer-name\":\"Avatar\"})]})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jriein\",\"data-framer-name\":\"REviews\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{imudaHM_7:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 500px) - 48px)`,y:(componentViewport?.y||0)+0+89+0+2668.8+0+0},mJOnVcw7n:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px) / 2, 1px)`,y:(componentViewport?.y||0)+0+89+0+2800.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:299,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 152px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19cwikk-container\",nodeId:\"PK5m56nry\",scopeId:\"Ry9rzN5pd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{imudaHM_7:{variant:\"BP446IRMi\"},mJOnVcw7n:{variant:\"BP446IRMi\"}},children:/*#__PURE__*/_jsx(HubspotReview,{height:\"100%\",id:\"PK5m56nry\",layoutId:\"PK5m56nry\",style:{width:\"100%\"},variant:\"Nvu_wJqSG\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{imudaHM_7:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 500px) - 48px)`,y:(componentViewport?.y||0)+0+89+0+2668.8+0+315},mJOnVcw7n:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px) / 2, 1px)`,y:(componentViewport?.y||0)+0+89+0+2800.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:299,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 152px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vejqu8-container\",id:\"vejqu8\",nodeId:\"RT171go42\",scopeId:\"Ry9rzN5pd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{imudaHM_7:{variant:\"ULH9uaISk\"},mJOnVcw7n:{variant:\"ULH9uaISk\"}},children:/*#__PURE__*/_jsx(HubspotReview,{height:\"100%\",id:\"RT171go42\",layoutId:\"RT171go42\",style:{width:\"100%\"},variant:\"iZ05KYzaZ\",width:\"100%\"})})})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-13k0aw9 hidden-l6bkt5\",\"data-framer-name\":\"TExt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mJOnVcw7n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-16948s7\",\"data-styles-preset\":\"HgbbYrwvT\",children:[\"Let's \",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Connect\"})})]})}),fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGRJdGFsaWM=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"400\"},children:\"Let's \"}),\"Connect\"]})}),className:\"framer-fmdazn\",fonts:[\"Inter-SemiBoldItalic\",\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vt74kc-container\",id:elementId1,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SmfNv0fJU\",ref:ref2,scopeId:\"Ry9rzN5pd\",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:\"SmfNv0fJU\",layoutId:\"SmfNv0fJU\",style:{width:\"100%\"},type:\"html\",url:\"https://meetings.hubspot.com/enriquepaula/website-meeting-scheduler\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{imudaHM_7:{y:(componentViewport?.y||0)+0+3884.6},mJOnVcw7n:{y:(componentViewport?.y||0)+0+3738.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:409,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-n4jf86-container\",nodeId:\"F2HBRyxbW\",scopeId:\"Ry9rzN5pd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{imudaHM_7:{variant:\"USfOf2A6A\"},mJOnVcw7n:{variant:\"MmTcPYgU_\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"F2HBRyxbW\",layoutId:\"F2HBRyxbW\",style:{width:\"100%\"},variant:\"Q1LztVs_4\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-nprb1w hidden-1w13n1a hidden-z2da3d\",\"data-framer-name\":\"TExt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-16948s7\",\"data-styles-preset\":\"HgbbYrwvT\",children:[\"Let's \",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Connect\"})})]})}),className:\"framer-b96bae\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Y0LYY.framer-xcbgbj, .framer-Y0LYY .framer-xcbgbj { display: block; }\",\".framer-Y0LYY.framer-1w13n1a { align-content: center; align-items: center; background-color: var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, #f3f3f3); 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-Y0LYY .framer-1ne06it-container { flex: none; height: auto; max-width: 1220px; position: sticky; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 5; }\",\".framer-Y0LYY .framer-1w3ufzk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-1y32pyt-container { flex: none; height: auto; max-width: 1220px; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-col0o2-container { aspect-ratio: 0.6601941747572816 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 515px); position: relative; width: 340px; }\",\".framer-Y0LYY .framer-3z91mq-container, .framer-Y0LYY .framer-1a8karm-container, .framer-Y0LYY .framer-c1gg0c-container { height: auto; position: relative; width: 309px; }\",\".framer-Y0LYY .framer-1llwhfc { align-content: center; align-items: center; background-color: var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, #f3f3f3); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 340px; overflow: hidden; padding: 40px 16px 60px 16px; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-ia4t3g { aspect-ratio: 1.251908396946565 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 160px); left: 27px; position: absolute; top: 11px; width: 12%; z-index: 1; }\",\".framer-Y0LYY .framer-oj75y7 { aspect-ratio: 1.251908396946565 / 1; bottom: 42px; flex: none; height: var(--framer-aspect-ratio-supported, 160px); position: absolute; right: 43px; width: 12%; z-index: 1; }\",\".framer-Y0LYY .framer-13s1744, .framer-Y0LYY .framer-21cudl { align-content: center; align-items: center; background-color: var(--token-18c755bc-86fd-4025-be51-268181b638e5, #9dfadb); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-9rjxvy-container { flex: 1 0 0px; height: auto; max-width: 500px; position: relative; width: 1px; }\",\".framer-Y0LYY .framer-13q0lbo { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1072px; }\",\".framer-Y0LYY .framer-18l64ea, .framer-Y0LYY .framer-h70z1o, .framer-Y0LYY .framer-82yugt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-16i9uwt, .framer-Y0LYY .framer-1ye74rw, .framer-Y0LYY .framer-v2wac, .framer-Y0LYY .framer-xbid1v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 113px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-19cecis, .framer-Y0LYY .framer-1f9jphk, .framer-Y0LYY .framer-z49qb5, .framer-Y0LYY .framer-1ihr9hg, .framer-Y0LYY .framer-nw0062, .framer-Y0LYY .framer-i6soot { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Y0LYY .framer-ci4s26 { flex: none; height: 56px; min-width: 150px; overflow: hidden; position: relative; width: 28%; }\",\".framer-Y0LYY .framer-1yxtppm { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 65px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1072px; }\",\".framer-Y0LYY .framer-lf0j9t { aspect-ratio: 4.545454545454546 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); min-width: 130px; overflow: hidden; position: relative; width: 21%; }\",\".framer-Y0LYY .framer-2n0lqk, .framer-Y0LYY .framer-z91gb1 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1072px; }\",\".framer-Y0LYY .framer-u5ay9o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-1mr5t28 { flex: none; height: 52px; min-width: 160px; overflow: hidden; position: relative; width: 33%; }\",\".framer-Y0LYY .framer-ag9127 { flex: none; height: 115px; min-width: 100px; overflow: hidden; position: relative; width: 20%; }\",\".framer-Y0LYY .framer-15ptrh8 { align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 40px 64px 40px 64px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Y0LYY .framer-1x5yrc5 { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-baf2978d-fc32-405b-b414-f7e546cc3356, #4d4d4d); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: auto; justify-content: center; max-width: 1200px; overflow: hidden; padding: 40px 64px 40px 64px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Y0LYY .framer-m1utfa { align-content: center; align-items: center; aspect-ratio: 1.0269749518304432 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0.24087492070975713px 0.6021873017743928px 0.6485755729637491px -1.25px rgba(0, 0, 0, 0.29), 0.9154133212973828px 2.288533303243457px 2.464825800916388px -2.5px rgba(0, 0, 0, 0.25423), 4px 10px 10.770329614269007px -3.75px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 370px); justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 380px; }\",\".framer-Y0LYY .framer-1e4fwib { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 1px; }\",\".framer-Y0LYY .framer-1s778o8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-15z01z3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Y0LYY .framer-h6hizl { align-content: center; align-items: center; background-color: var(--token-93deb8fe-cae5-4a22-aa7f-f609e06ae4a7, #e7e7e7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-1fglyiq { 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-Y0LYY .framer-1afgaax, .framer-Y0LYY .framer-1nz0ma4 { --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-Y0LYY .framer-14ozbkn { align-content: center; align-items: center; background-color: var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, #f3f3f3); 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-Y0LYY .framer-1htjq91-container { flex: 1 0 0px; height: 216px; position: relative; width: 1px; }\",\".framer-Y0LYY .framer-6ejogy { height: 33px; overflow: hidden; position: relative; width: 189px; }\",\".framer-Y0LYY .framer-1v6tqrx { aspect-ratio: 5.7272727272727275 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Y0LYY .framer-1iw3uff { height: 48px; overflow: hidden; position: relative; width: 179px; }\",\".framer-Y0LYY .framer-1flfpsl { aspect-ratio: 3.7291666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Y0LYY .framer-bcahov { height: 43px; overflow: hidden; position: relative; width: 289px; }\",\".framer-Y0LYY .framer-e9u5rq { aspect-ratio: 6.72093023255814 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Y0LYY .framer-17huz7g { height: 54px; overflow: hidden; position: relative; width: 259px; }\",\".framer-Y0LYY .framer-1dxfqq5 { aspect-ratio: 4.796296296296297 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Y0LYY .framer-i2p3rs { height: 90px; overflow: hidden; position: relative; width: 154px; }\",\".framer-Y0LYY .framer-10pnsgl { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Y0LYY .framer-4wplc9 { 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: 100px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-1efk3y0 { 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: 500px; overflow: hidden; padding: 60px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-8h8b6 { --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-Y0LYY .framer-1jagdja { align-content: center; align-items: center; background-color: var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, #f3f3f3); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-p4x9p0 { align-content: center; align-items: center; display: flex; flex: none; 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: 100%; }\",\".framer-Y0LYY .framer-18hud13-container, .framer-Y0LYY .framer-19cwikk-container, .framer-Y0LYY .framer-vejqu8-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Y0LYY .framer-2jtvs9-container, .framer-Y0LYY .framer-hdpc78-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Y0LYY .framer-m5skpn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 1220px; overflow: hidden; padding: 120px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-qts1b7, .framer-Y0LYY .framer-b96bae { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 1200px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Y0LYY .framer-19d8wgb { align-content: center; align-items: center; background-color: var(--token-4c926350-a911-428e-bd60-4fc8ec008c52, #f3f3f3); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 100px 64px 100px 64px; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-1lfoyts { aspect-ratio: 1.251908396946565 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 131px); left: 125px; position: absolute; top: 45px; width: 15%; z-index: 1; }\",\".framer-Y0LYY .framer-5rwpfs { aspect-ratio: 1.251908396946565 / 1; bottom: 37px; flex: none; height: var(--framer-aspect-ratio-supported, 131px); position: absolute; right: 130px; width: 184px; z-index: 1; }\",\".framer-Y0LYY .framer-9bkf7p-container { flex: 1 0 0px; height: auto; max-width: 1200px; position: relative; width: 1px; }\",\".framer-Y0LYY .framer-jriein { 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: 1200px; overflow: hidden; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-13k0aw9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 1220px; overflow: hidden; padding: 120px 64px 60px 64px; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-fmdazn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: 50px; max-width: 1200px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Y0LYY .framer-1vt74kc-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Y0LYY .framer-n4jf86-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\".framer-Y0LYY .framer-nprb1w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 1220px; overflow: hidden; padding: 60px 24px 0px 24px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Y0LYY.framer-1w13n1a, .framer-Y0LYY .framer-1w3ufzk, .framer-Y0LYY .framer-1llwhfc, .framer-Y0LYY .framer-13s1744, .framer-Y0LYY .framer-13q0lbo, .framer-Y0LYY .framer-18l64ea, .framer-Y0LYY .framer-16i9uwt, .framer-Y0LYY .framer-1yxtppm, .framer-Y0LYY .framer-h70z1o, .framer-Y0LYY .framer-1ye74rw, .framer-Y0LYY .framer-2n0lqk, .framer-Y0LYY .framer-u5ay9o, .framer-Y0LYY .framer-v2wac, .framer-Y0LYY .framer-z91gb1, .framer-Y0LYY .framer-82yugt, .framer-Y0LYY .framer-xbid1v, .framer-Y0LYY .framer-15ptrh8, .framer-Y0LYY .framer-1x5yrc5, .framer-Y0LYY .framer-m1utfa, .framer-Y0LYY .framer-1e4fwib, .framer-Y0LYY .framer-1s778o8, .framer-Y0LYY .framer-h6hizl, .framer-Y0LYY .framer-1fglyiq, .framer-Y0LYY .framer-14ozbkn, .framer-Y0LYY .framer-4wplc9, .framer-Y0LYY .framer-1efk3y0, .framer-Y0LYY .framer-1jagdja, .framer-Y0LYY .framer-p4x9p0, .framer-Y0LYY .framer-m5skpn, .framer-Y0LYY .framer-19d8wgb, .framer-Y0LYY .framer-21cudl, .framer-Y0LYY .framer-jriein, .framer-Y0LYY .framer-13k0aw9, .framer-Y0LYY .framer-nprb1w { gap: 0px; } .framer-Y0LYY.framer-1w13n1a > *, .framer-Y0LYY .framer-1w3ufzk > *, .framer-Y0LYY .framer-1llwhfc > *, .framer-Y0LYY .framer-13q0lbo > *, .framer-Y0LYY .framer-1jagdja > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Y0LYY.framer-1w13n1a > :first-child, .framer-Y0LYY .framer-1w3ufzk > :first-child, .framer-Y0LYY .framer-1llwhfc > :first-child, .framer-Y0LYY .framer-13q0lbo > :first-child, .framer-Y0LYY .framer-18l64ea > :first-child, .framer-Y0LYY .framer-16i9uwt > :first-child, .framer-Y0LYY .framer-1yxtppm > :first-child, .framer-Y0LYY .framer-h70z1o > :first-child, .framer-Y0LYY .framer-1ye74rw > :first-child, .framer-Y0LYY .framer-2n0lqk > :first-child, .framer-Y0LYY .framer-u5ay9o > :first-child, .framer-Y0LYY .framer-v2wac > :first-child, .framer-Y0LYY .framer-z91gb1 > :first-child, .framer-Y0LYY .framer-82yugt > :first-child, .framer-Y0LYY .framer-xbid1v > :first-child, .framer-Y0LYY .framer-m1utfa > :first-child, .framer-Y0LYY .framer-1e4fwib > :first-child, .framer-Y0LYY .framer-1s778o8 > :first-child, .framer-Y0LYY .framer-h6hizl > :first-child, .framer-Y0LYY .framer-1jagdja > :first-child, .framer-Y0LYY .framer-m5skpn > :first-child, .framer-Y0LYY .framer-19d8wgb > :first-child, .framer-Y0LYY .framer-13k0aw9 > :first-child, .framer-Y0LYY .framer-nprb1w > :first-child { margin-top: 0px; } .framer-Y0LYY.framer-1w13n1a > :last-child, .framer-Y0LYY .framer-1w3ufzk > :last-child, .framer-Y0LYY .framer-1llwhfc > :last-child, .framer-Y0LYY .framer-13q0lbo > :last-child, .framer-Y0LYY .framer-18l64ea > :last-child, .framer-Y0LYY .framer-16i9uwt > :last-child, .framer-Y0LYY .framer-1yxtppm > :last-child, .framer-Y0LYY .framer-h70z1o > :last-child, .framer-Y0LYY .framer-1ye74rw > :last-child, .framer-Y0LYY .framer-2n0lqk > :last-child, .framer-Y0LYY .framer-u5ay9o > :last-child, .framer-Y0LYY .framer-v2wac > :last-child, .framer-Y0LYY .framer-z91gb1 > :last-child, .framer-Y0LYY .framer-82yugt > :last-child, .framer-Y0LYY .framer-xbid1v > :last-child, .framer-Y0LYY .framer-m1utfa > :last-child, .framer-Y0LYY .framer-1e4fwib > :last-child, .framer-Y0LYY .framer-1s778o8 > :last-child, .framer-Y0LYY .framer-h6hizl > :last-child, .framer-Y0LYY .framer-1jagdja > :last-child, .framer-Y0LYY .framer-m5skpn > :last-child, .framer-Y0LYY .framer-19d8wgb > :last-child, .framer-Y0LYY .framer-13k0aw9 > :last-child, .framer-Y0LYY .framer-nprb1w > :last-child { margin-bottom: 0px; } .framer-Y0LYY .framer-13s1744 > *, .framer-Y0LYY .framer-15ptrh8 > *, .framer-Y0LYY .framer-21cudl > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Y0LYY .framer-13s1744 > :first-child, .framer-Y0LYY .framer-15ptrh8 > :first-child, .framer-Y0LYY .framer-1x5yrc5 > :first-child, .framer-Y0LYY .framer-1fglyiq > :first-child, .framer-Y0LYY .framer-14ozbkn > :first-child, .framer-Y0LYY .framer-4wplc9 > :first-child, .framer-Y0LYY .framer-1efk3y0 > :first-child, .framer-Y0LYY .framer-p4x9p0 > :first-child, .framer-Y0LYY .framer-21cudl > :first-child, .framer-Y0LYY .framer-jriein > :first-child { margin-left: 0px; } .framer-Y0LYY .framer-13s1744 > :last-child, .framer-Y0LYY .framer-15ptrh8 > :last-child, .framer-Y0LYY .framer-1x5yrc5 > :last-child, .framer-Y0LYY .framer-1fglyiq > :last-child, .framer-Y0LYY .framer-14ozbkn > :last-child, .framer-Y0LYY .framer-4wplc9 > :last-child, .framer-Y0LYY .framer-1efk3y0 > :last-child, .framer-Y0LYY .framer-p4x9p0 > :last-child, .framer-Y0LYY .framer-21cudl > :last-child, .framer-Y0LYY .framer-jriein > :last-child { margin-right: 0px; } .framer-Y0LYY .framer-18l64ea > *, .framer-Y0LYY .framer-h70z1o > *, .framer-Y0LYY .framer-2n0lqk > *, .framer-Y0LYY .framer-z91gb1 > *, .framer-Y0LYY .framer-82yugt > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Y0LYY .framer-16i9uwt > *, .framer-Y0LYY .framer-1ye74rw > *, .framer-Y0LYY .framer-v2wac > *, .framer-Y0LYY .framer-xbid1v > * { margin: 0px; margin-bottom: calc(113px / 2); margin-top: calc(113px / 2); } .framer-Y0LYY .framer-1yxtppm > * { margin: 0px; margin-bottom: calc(65px / 2); margin-top: calc(65px / 2); } .framer-Y0LYY .framer-u5ay9o > *, .framer-Y0LYY .framer-19d8wgb > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Y0LYY .framer-1x5yrc5 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-Y0LYY .framer-m1utfa > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Y0LYY .framer-1e4fwib > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-Y0LYY .framer-1s778o8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Y0LYY .framer-h6hizl > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Y0LYY .framer-1fglyiq > *, .framer-Y0LYY .framer-4wplc9 > *, .framer-Y0LYY .framer-1efk3y0 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Y0LYY .framer-14ozbkn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Y0LYY .framer-p4x9p0 > *, .framer-Y0LYY .framer-jriein > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Y0LYY .framer-m5skpn > *, .framer-Y0LYY .framer-13k0aw9 > *, .framer-Y0LYY .framer-nprb1w > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 830px) and (max-width: 1219px) { .framer-Y0LYY.framer-1w13n1a { width: 830px; } .framer-Y0LYY .framer-15ptrh8 { padding: 40px 24px 40px 24px; } .framer-Y0LYY .framer-1x5yrc5 { gap: 40px; padding: 40px; } .framer-Y0LYY .framer-m1utfa { height: var(--framer-aspect-ratio-supported, 300px); width: 308px; } .framer-Y0LYY .framer-1e4fwib { gap: 40px; } .framer-Y0LYY .framer-h6hizl { gap: 60px; } .framer-Y0LYY .framer-1fglyiq { padding: 0px 24px 0px 24px; } .framer-Y0LYY .framer-1htjq91-container { height: 168px; } .framer-Y0LYY .framer-4wplc9 { padding: 80px 24px 0px 24px; } .framer-Y0LYY .framer-1jagdja { padding: 60px 24px 0px 24px; } .framer-Y0LYY .framer-p4x9p0 { align-content: unset; align-items: unset; display: grid; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: start; max-width: 782px; } .framer-Y0LYY .framer-18hud13-container, .framer-Y0LYY .framer-2jtvs9-container, .framer-Y0LYY .framer-hdpc78-container { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-Y0LYY .framer-m5skpn { padding: 60px 24px 60px 24px; } .framer-Y0LYY .framer-19d8wgb { gap: 0px; padding: 80px 24px 80px 24px; } .framer-Y0LYY .framer-1lfoyts { height: var(--framer-aspect-ratio-supported, 111px); left: 27px; top: 24px; width: 13%; } .framer-Y0LYY .framer-5rwpfs { bottom: 36px; height: var(--framer-aspect-ratio-supported, 90px); right: 53px; width: 13%; } .framer-Y0LYY .framer-jriein { gap: 16px; padding: 0px 24px 0px 24px; } .framer-Y0LYY .framer-13k0aw9 { padding: 60px 64px 40px 64px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Y0LYY .framer-1x5yrc5, .framer-Y0LYY .framer-1e4fwib, .framer-Y0LYY .framer-h6hizl, .framer-Y0LYY .framer-p4x9p0, .framer-Y0LYY .framer-19d8wgb, .framer-Y0LYY .framer-jriein { gap: 0px; } .framer-Y0LYY .framer-1x5yrc5 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Y0LYY .framer-1x5yrc5 > :first-child, .framer-Y0LYY .framer-jriein > :first-child { margin-left: 0px; } .framer-Y0LYY .framer-1x5yrc5 > :last-child, .framer-Y0LYY .framer-jriein > :last-child { margin-right: 0px; } .framer-Y0LYY .framer-1e4fwib > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Y0LYY .framer-1e4fwib > :first-child, .framer-Y0LYY .framer-h6hizl > :first-child, .framer-Y0LYY .framer-19d8wgb > :first-child { margin-top: 0px; } .framer-Y0LYY .framer-1e4fwib > :last-child, .framer-Y0LYY .framer-h6hizl > :last-child, .framer-Y0LYY .framer-19d8wgb > :last-child { margin-bottom: 0px; } .framer-Y0LYY .framer-h6hizl > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Y0LYY .framer-p4x9p0 > *, .framer-Y0LYY .framer-p4x9p0 > :first-child, .framer-Y0LYY .framer-p4x9p0 > :last-child { margin: 0px; } .framer-Y0LYY .framer-19d8wgb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Y0LYY .framer-jriein > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }}\",\"@media (max-width: 829px) { .framer-Y0LYY.framer-1w13n1a { width: 340px; } .framer-Y0LYY .framer-1ne06it-container { order: 0; } .framer-Y0LYY .framer-1w3ufzk { order: 1; } .framer-Y0LYY .framer-1y32pyt-container { max-width: 500px; order: 0; } .framer-Y0LYY .framer-col0o2-container { order: 4; } .framer-Y0LYY .framer-1llwhfc { order: 8; } .framer-Y0LYY .framer-ia4t3g { height: var(--framer-aspect-ratio-supported, 111px); } .framer-Y0LYY .framer-oj75y7 { height: var(--framer-aspect-ratio-supported, 90px); } .framer-Y0LYY .framer-15ptrh8 { flex-direction: column; order: 1; padding: 24px 16px 0px 16px; } .framer-Y0LYY .framer-1x5yrc5 { align-self: unset; flex: none; flex-direction: column; gap: 24px; height: min-content; padding: 40px 16px 40px 16px; width: 100%; } .framer-Y0LYY .framer-m1utfa { height: var(--framer-aspect-ratio-supported, 239px); max-width: 340px; width: 245px; } .framer-Y0LYY .framer-1e4fwib { align-content: center; align-items: center; flex: none; gap: 40px; max-width: 340px; padding: 0px 16px 0px 16px; width: 100%; } .framer-Y0LYY .framer-1s778o8 { gap: 16px; } .framer-Y0LYY .framer-h6hizl { gap: 40px; order: 2; padding: 60px 0px 40px 0px; } .framer-Y0LYY .framer-1fglyiq { max-width: 500px; padding: 0px 24px 0px 24px; } .framer-Y0LYY .framer-1afgaax, .framer-Y0LYY .framer-1nz0ma4 { height: auto; } .framer-Y0LYY .framer-1htjq91-container { height: 127px; } .framer-Y0LYY .framer-4wplc9 { max-width: 500px; order: 3; padding: 60px 24px 0px 24px; } .framer-Y0LYY .framer-1efk3y0, .framer-Y0LYY .framer-n4jf86-container { order: 6; } .framer-Y0LYY .framer-jriein { flex-direction: column; gap: 16px; max-width: 500px; order: 9; padding: 0px 24px 0px 24px; } .framer-Y0LYY .framer-19cwikk-container, .framer-Y0LYY .framer-vejqu8-container { flex: none; width: 100%; } .framer-Y0LYY .framer-1vt74kc-container { order: 3; } .framer-Y0LYY .framer-nprb1w { order: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Y0LYY .framer-15ptrh8, .framer-Y0LYY .framer-1x5yrc5, .framer-Y0LYY .framer-1e4fwib, .framer-Y0LYY .framer-1s778o8, .framer-Y0LYY .framer-h6hizl, .framer-Y0LYY .framer-jriein { gap: 0px; } .framer-Y0LYY .framer-15ptrh8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Y0LYY .framer-15ptrh8 > :first-child, .framer-Y0LYY .framer-1x5yrc5 > :first-child, .framer-Y0LYY .framer-1e4fwib > :first-child, .framer-Y0LYY .framer-1s778o8 > :first-child, .framer-Y0LYY .framer-h6hizl > :first-child, .framer-Y0LYY .framer-jriein > :first-child { margin-top: 0px; } .framer-Y0LYY .framer-15ptrh8 > :last-child, .framer-Y0LYY .framer-1x5yrc5 > :last-child, .framer-Y0LYY .framer-1e4fwib > :last-child, .framer-Y0LYY .framer-1s778o8 > :last-child, .framer-Y0LYY .framer-h6hizl > :last-child, .framer-Y0LYY .framer-jriein > :last-child { margin-bottom: 0px; } .framer-Y0LYY .framer-1x5yrc5 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Y0LYY .framer-1e4fwib > *, .framer-Y0LYY .framer-h6hizl > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Y0LYY .framer-1s778o8 > *, .framer-Y0LYY .framer-jriein > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5195\n * @framerIntrinsicWidth 1220\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mJOnVcw7n\":{\"layout\":[\"fixed\",\"auto\"]},\"imudaHM_7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"i06khXM57\":{\"pattern\":\":i06khXM57\",\"name\":\"rrecent-work\"},\"SmfNv0fJU\":{\"pattern\":\":SmfNv0fJU\",\"name\":\"lets-connect\"}}\n * @framerResponsiveScreen\n */const FramerRy9rzN5pd=withCSS(Component,css,\"framer-Y0LYY\");export default FramerRy9rzN5pd;FramerRy9rzN5pd.displayName=\"Page\";FramerRy9rzN5pd.defaultProps={height:5195,width:1220};addFonts(FramerRy9rzN5pd,[{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\"},{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\"}]},...NewMenuColorsFonts,...Hero1Fonts,...EBCCardWebsiteFonts,...CarouselFonts,...ButtonMenuBarFullFonts,...TickerFonts,...HubspotReviewFonts,...EmbedFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRy9rzN5pd\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mJOnVcw7n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"imudaHM_7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"5195\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1220\",\"framerScrollSections\":\"{\\\"i06khXM57\\\":{\\\"pattern\\\":\\\":i06khXM57\\\",\\\"name\\\":\\\"rrecent-work\\\"},\\\"SmfNv0fJU\\\":{\\\"pattern\\\":\\\":SmfNv0fJU\\\",\\\"name\\\":\\\"lets-connect\\\"}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\"}},\"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", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "knc9svhs_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "RichText2", "css", "FramerguYXH9pt6", "withCSS", "guYXH9pt6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "FramerWCP9AnFDq", "withCSS", "WCP9AnFDq_default", "addFonts", "HubspotLogoFonts", "getFonts", "WCP9AnFDq_default", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "SmartComponentScopedContainer", "RichTextWithFXWithOptimizedAppearEffect", "RichText2", "HubspotCardFonts", "guYXH9pt6_default", "ImageWithFXWithOptimizedAppearEffect", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transformTemplate1", "_", "t", "transition3", "animation2", "animation3", "transition4", "animation4", "animation5", "animation6", "transition5", "animation7", "transition6", "animation8", "transition7", "animation9", "animation10", "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", "onAppeargvj7gj", "args", "CycleVariantState", "onAppear10d56ua", "onAppear1tf9t2n", "onAppear119t0q4", "onAppear1ikovxc", "onTapsx62z7", "onAppear1ki0s66", "onTapik9zjc", "onAppearyz800u", "onTapbrmthb", "useOnVariantChange", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "getLoadingLazyAtYPosition", "css", "FramerKF_glbE47", "withCSS", "KF_glbE47_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NewMenuColorsFonts", "getFonts", "qE6IfyOIS_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "Hero1Fonts", "KF_glbE47_default", "EBCCardWebsiteFonts", "zGlNPF8AZ_default", "CarouselFonts", "Carousel", "ButtonMenuBarFullFonts", "IdR0dC7Bz_default", "TickerFonts", "Ticker", "ContainerWithFX", "withFX", "MotionDivWithFX", "motion", "HubspotReviewFonts", "ZUOAaU6C2_default", "EmbedFonts", "Embed", "FooterFonts", "yCywixkJE_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "transition3", "animation3", "animation4", "transition4", "transition5", "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", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "SVG", "RichText2", "x", "Image2", "getLoadingLazyAtYPosition", "css", "FramerRy9rzN5pd", "withCSS", "Ry9rzN5pd_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
