{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js", "ssg:https://framerusercontent.com/modules/j6dkX4RHS6wlKP71q5UD/yikdFh7h5Vt5D6bSDi73/KxyDXhYjD.js", "ssg:https://framerusercontent.com/modules/lkFz4aFwgQ5DzAHnZp7k/eFwD9jzSuGZf0ovzxS1T/klDbgmGZd.js", "ssg:https://framerusercontent.com/modules/irCq6acYtlLhu3M42e06/5Tc74tTUCCVsIoCkSpJC/CDlBFwY51.js", "ssg:https://framerusercontent.com/modules/bM2HBtj1pUt3NTm4tLAK/a6dSG6q9t8tVhQcyzCYV/QHhR4qlc4.js", "ssg:https://framerusercontent.com/modules/eTuSJgpJPN6FUPaAPwQH/p5ClI4Oa3r6a4aKO0zti/TFdfRjZIe.js", "ssg:https://framerusercontent.com/modules/wDQvVbyKlJmglVFHZ2rh/tWMAuqGPsxzYgWeRBp6X/Kx2Ggjrn6.js", "ssg:https://framerusercontent.com/modules/kDq2ObSgj3ObMOpACsMq/hlXhobHKfwnY3EjhFO6S/aZVH3umBF.js", "ssg:https://framerusercontent.com/modules/imkI5pzvjzPtu1A3W7Ut/D1m3PbeRBGskcx3qaeG9/pxv4834MF.js", "ssg:https://framerusercontent.com/modules/9mrOLeHfWlrj1bikKknA/pbhhOesYkA9LhtitPMB2/AnimatedText.js", "ssg:https://framerusercontent.com/modules/xabgNkM7dx2qmMegPn8J/HYqcQyCzf4NOyS3LBmF7/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.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 (abcfa95)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Sora-700\",\"GF;Sora-800\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Sora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSe1mX-PIwNhBti0.woff2\",weight:\"700\"},{family:\"Sora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSfSmX-PIwNhBti0.woff2\",weight:\"800\"}]}];export const css=['.framer-FGNop .framer-styles-preset-mu2mpl:not(.rich-text-wrapper), .framer-FGNop .framer-styles-preset-mu2mpl.rich-text-wrapper h3 { --framer-font-family: \"Sora\", \"Sora Placeholder\", sans-serif; --framer-font-family-bold: \"Sora\", \"Sora Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-2a5dd054-dc91-4422-b401-643bc738343b, #2a2a2a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-FGNop .framer-styles-preset-mu2mpl:not(.rich-text-wrapper), .framer-FGNop .framer-styles-preset-mu2mpl.rich-text-wrapper h3 { --framer-font-family: \"Sora\", \"Sora Placeholder\", sans-serif; --framer-font-family-bold: \"Sora\", \"Sora Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-2a5dd054-dc91-4422-b401-643bc738343b, #2a2a2a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-FGNop .framer-styles-preset-mu2mpl:not(.rich-text-wrapper), .framer-FGNop .framer-styles-preset-mu2mpl.rich-text-wrapper h3 { --framer-font-family: \"Sora\", \"Sora Placeholder\", sans-serif; --framer-font-family-bold: \"Sora\", \"Sora Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-2a5dd054-dc91-4422-b401-643bc738343b, #2a2a2a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-FGNop\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5ec741e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/j6dkX4RHS6wlKP71q5UD/yikdFh7h5Vt5D6bSDi73/KxyDXhYjD.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"wg7F87m0v\",\"khGmnLpMe\",\"LhxO9AyT1\"];const serializationHash=\"framer-TOKJo\";const variantClassNames={khGmnLpMe:\"framer-v-14srnzd\",LhxO9AyT1:\"framer-v-1208qr7\",wg7F87m0v:\"framer-v-1ig2sqq\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"wg7F87m0v\",Phone:\"LhxO9AyT1\",Tablet:\"khGmnLpMe\"};const getProps=({height,id,text1,text2,text3,text4,text5,text6,text7,text8,text9,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6,_ref7,_ref8,_ref9;return{...props,bTbZqKaVi:(_ref=text2!==null&&text2!==void 0?text2:props.bTbZqKaVi)!==null&&_ref!==void 0?_ref:\"\u201CThe ad performance was outstanding, ranking among the top performers. They delivered exceptional results, they were fast, professional, and delivered on time.\u201D\",GKA9nC0_k:(_ref1=text5!==null&&text5!==void 0?text5:props.GKA9nC0_k)!==null&&_ref1!==void 0?_ref1:\"\u201CMight be one of the best creative agencies I've worked with. They are quick to respond and make edits, do amazing work converting angles into solid creatives, and go above and beyond in delivering ads.\u201D\",RHi_oMwT7:(_ref2=text3!==null&&text3!==void 0?text3:props.RHi_oMwT7)!==null&&_ref2!==void 0?_ref2:\"\u201CThey absolutely nailed it, \\u2028with everything from creative strategy, to finding the perfect talent and ad structure.\u201D\",TFysv1fhc:(_ref3=text6!==null&&text6!==void 0?text6:props.TFysv1fhc)!==null&&_ref3!==void 0?_ref3:'\"Creative Milkshake has proven to be a great sparring partner to discuss any new angles, audiences, or concepts we could try out. They understood our product quickly and were able to get into the minds of our customers.\"',UJZa9XDlG:(_ref4=text7!==null&&text7!==void 0?text7:props.UJZa9XDlG)!==null&&_ref4!==void 0?_ref4:\"\u201CWe've worked with other UGC agencies and creators and none have been as professional as Creative Milkshake, we look forward to continuing our partnership for a long time.\u201D\",uqMMk71Fm:(_ref5=text4!==null&&text4!==void 0?text4:props.uqMMk71Fm)!==null&&_ref5!==void 0?_ref5:\"\u201CThey just get it! In an ever-changing, ever-growing market, [they] always hit the mark and are ahead of the social trends. Taking risks and pushing boundaries is what makes the team strategic trailblazers.\u201D\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"wg7F87m0v\",VoQKRkC6J:(_ref7=text8!==null&&text8!==void 0?text8:props.VoQKRkC6J)!==null&&_ref7!==void 0?_ref7:\"\\\"What I love most is that it's a hands-off approach for us. Everything is taken care of, and I'm part of the entire process. They take the least amount of my time but produce great content every time.\\\"\",YRuinxKiP:(_ref8=text1!==null&&text1!==void 0?text1:props.YRuinxKiP)!==null&&_ref8!==void 0?_ref8:\"\u201C[They] truly understand paid strategy and get creative \u2013 often you seem to find one or the other.\u201D\",zJpir2ivT:(_ref9=text9!==null&&text9!==void 0?text9:props.zJpir2ivT)!==null&&_ref9!==void 0?_ref9:'\"Creative Milkshake brought \\u2028a professional touch to our ideation and editing processes, enhancing the overall quality of our campaigns.\"'};};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,YRuinxKiP,bTbZqKaVi,RHi_oMwT7,uqMMk71Fm,GKA9nC0_k,TFysv1fhc,UJZa9XDlG,VoQKRkC6J,zJpir2ivT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wg7F87m0v\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"LhxO9AyT1\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"khGmnLpMe\")return true;return false;};const isDisplayed2=()=>{if([\"khGmnLpMe\",\"LhxO9AyT1\"].includes(baseVariant))return false;return true;};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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ig2sqq\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"wg7F87m0v\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216))\",...style},...addPropertyOverrides({khGmnLpMe:{\"data-framer-name\":\"Tablet\"},LhxO9AyT1:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e4jvvj-container\",\"data-framer-name\":\"Mobile\",layoutDependency:layoutDependency,layoutId:\"DpEpxi8vx-container\",name:\"Mobile\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"Testimomials\",arrowObject:{arrowFill:\"rgb(221, 212, 246)\",arrowPadding:0,arrowRadius:28,arrowSize:16,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:320,type:\"spring\"},fadeWidth:0},gap:40,height:\"100%\",id:\"DpEpxi8vx\",layoutId:\"DpEpxi8vx\",name:\"Mobile\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10z4v3t\",\"data-framer-name\":\"Review 2 \u2022 Mobile\",layoutDependency:layoutDependency,layoutId:\"Fp6A8XEX8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CThe ad performance was outstanding, ranking among the top performers. They delivered exceptional results, they were fast, professional, and delivered on time.\u201D\"})}),className:\"framer-1jocedu\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"tq6E__Q28\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:bTbZqKaVi,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Farah Al-Eryani\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Paid Social Manager, Dr. Smile\"})]}),className:\"framer-1487c07\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"kMjt1hxYL\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-151jtxg\",\"data-framer-name\":\"Vector 514\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:165,layoutDependency:layoutDependency,layoutId:\"X_McEvxPa\",svg:'<svg width=\"165\" height=\"25\" viewBox=\"-3 -3 165 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0644531 0.732422C49.9021 0.732422 151.224 0.732422 157.811 0.732422C166.046 0.732422 80.238 9.73081 59.0029 18.7293\" stroke=\"#ECF86E\" stroke-width=\"6\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-l4sr4m\",\"data-framer-name\":\"Layer 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:47,intrinsicWidth:63,layoutDependency:layoutDependency,layoutId:\"P6tnYhMVc\",svg:'<svg width=\"63\" height=\"47\" viewBox=\"0 0 63 47\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M53.92 30.5055C53.2971 26.0376 45.3962 26.0522 42.5936 27.79C40.9713 28.7849 39.7155 30.4403 39.4524 32.3337C39.1983 33.9907 39.7669 38.0877 41.7651 38.7099C43.5882 39.2662 44.3926 36.9061 44.2722 35.5173C44.0695 33.1782 42.4554 30.9541 41.2267 29.0132C38.8036 25.1874 35.7145 21.1542 31.155 19.8702C27.267 18.7711 22.2408 20.4292 21.8971 25.0471C21.7829 26.6183 22.349 31.6213 24.7872 30.6073C26.508 29.8984 26.6057 27.2019 26.2877 25.7418C25.3987 21.6873 21.9838 17.7192 19.3425 14.6046C16.3482 11.0713 12.9127 7.8856 9.17235 5.17554C6.7976 3.4371 8.99226 -0.641589 11.4121 1.10767C16.3711 4.70634 20.767 8.86196 24.5449 13.7045C27.8498 17.9326 32.1757 23.5745 30.8468 29.3162C29.7821 33.8567 23.9696 37.9985 19.9788 33.8446C16.3293 30.0588 16.3465 22.5234 19.7703 18.6917C23.4946 14.5025 29.5175 14.0616 34.4453 16.1974C40.153 18.6633 44.0791 24.281 46.9384 29.5713C49.2705 33.8763 50.1356 40.1202 44.9734 42.8432C39.8111 45.5662 35.6124 39.6923 34.921 35.1125C33.9412 28.6504 38.6533 23.0279 45.0153 22.1672C50.6861 21.4033 57.6853 24.155 58.5784 30.3816C58.9897 33.3434 54.3539 33.4726 53.9371 30.5335L53.92 30.5055Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wu53nf\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:75,intrinsicWidth:69,layoutDependency:layoutDependency,layoutId:\"IJBBhDhRX\",svg:'<svg width=\"69\" height=\"75\" viewBox=\"0 0 69 75\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M45.2915 45.9367C46.8012 48.701 48.2566 51.2955 49.6428 53.9279C50.6272 55.8009 51.597 57.694 52.3909 59.6529C52.6419 60.2771 52.5925 61.3614 52.183 61.8569C51.4743 62.7091 50.5314 62.2513 49.7983 61.6609C46.4695 58.9959 43.2485 56.1995 39.7922 53.6888C36.0674 50.9802 36.0201 51.1873 31.7457 53.3464C28.841 54.818 25.8014 56.0309 22.7846 57.2737C21.2452 57.9089 20.4158 57.5886 20.1409 55.9926C19.8228 54.1062 19.8569 52.1361 19.8415 50.193C19.8215 47.8537 19.9233 45.5144 19.953 43.1721C19.986 40.4716 18.8118 38.3216 16.8763 36.5632C13.1912 33.2107 9.47661 29.8864 5.77685 26.554C3.7535 24.7288 3.4419 23.1831 5.41729 21.1377C7.58936 18.9002 10.0064 16.7706 12.6353 15.0993C18.6608 11.283 25.109 8.31123 32.1169 6.82223C33.4862 6.53357 34.9422 6.42714 36.3186 6.52734C38.367 6.67139 39.0563 7.76911 39.4768 9.69033C40.0733 12.4156 40.955 15.0757 41.8094 17.7327C42.4546 19.7366 43.1298 21.7482 44.02 23.6485C44.4714 24.6043 45.3001 25.499 46.1974 26.0965C49.3179 28.1684 52.546 30.0969 55.7375 32.0756C56.3588 32.4613 57.007 32.8142 57.6062 33.2301C59.4315 34.4928 59.5489 36.6581 57.6597 37.9919C54.7912 40.0116 51.7788 41.838 48.8194 43.7382C47.7605 44.4192 46.6839 45.0675 45.2866 45.9394L45.2915 45.9367ZM37.2239 13.3071C33.2657 16.7617 29.0977 19.3038 24.6868 21.4831C20.2562 23.6732 15.6918 25.4893 10.6781 26.5296C11.0557 26.9155 11.2446 27.1205 11.4533 27.3146C14.2516 29.9128 17.0179 32.5346 19.8631 35.0892C21.6903 36.7315 22.6844 38.7986 22.8441 41.1703C23.0423 44.0708 22.9474 46.9985 22.9617 49.9148C22.9699 51.2456 22.9309 52.584 22.9123 53.9596C27.809 52.9166 53.6864 38.2587 55.4703 35.5807C55.157 35.3712 54.8485 35.147 54.5203 34.9456C51.4116 33.0243 48.3053 31.0958 45.1819 29.1947C42.4768 27.5544 40.7535 25.2331 39.9026 22.2299C39.0825 19.3185 38.1709 16.4391 37.2239 13.3071ZM35.9653 9.68676C30.0027 8.27287 9.74729 18.634 7.53508 23.3826C11.7989 25.41 33.0808 15.2133 35.9653 9.68676ZM39.2708 49.5268C41.6675 51.1663 43.8434 52.6484 46.0145 54.1331C46.0958 54.0706 46.1771 54.0081 46.2559 53.9409L42.7919 47.5979L39.2682 49.5222L39.2708 49.5268Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M37.9105 31.3859C36.7007 27.6905 35.4663 24.0086 34.3061 20.2982C34.0116 19.3595 34.377 18.5014 35.4803 18.219C36.5118 17.9578 37.0088 18.5624 37.3249 19.435C38.6973 23.2168 40.144 26.9701 41.4471 30.7776C41.6453 31.352 41.451 32.3825 41.0208 32.8048C40.271 33.5465 39.4375 33.0894 38.8671 32.3739C38.5995 32.0367 38.364 31.6759 38.1186 31.3206C38.0517 31.339 37.9823 31.3648 37.9154 31.3832L37.9105 31.3859Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xa24k2\",\"data-framer-name\":\"Review 1 \u2022 Mobile\",layoutDependency:layoutDependency,layoutId:\"R338uqO5z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201C[They] truly understand paid strategy and get creative \u2013 often you seem to find one or the other.\u201D\"})}),className:\"framer-1o99fvq\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"aHjIMbFL8\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YRuinxKiP,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-34y34z\",layoutDependency:layoutDependency,layoutId:\"Xyvf4NZ9c\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Alex Georgiades\"})}),className:\"framer-1oy7dq2\",fonts:[\"FS;Sora-bold\"],layoutDependency:layoutDependency,layoutId:\"H4d_MTUJw\",style:{\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Paid Social Senior Manager, Wise\"})}),className:\"framer-1hdzrp3\",fonts:[\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"ll9tkUzPk\",style:{\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1o57qw7\",\"data-framer-name\":\"Doodles\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:60,intrinsicWidth:66,layoutDependency:layoutDependency,layoutId:\"r_1abjbKL\",svg:'<svg width=\"66\" height=\"60\" viewBox=\"0 0 66 60\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.07423 32.9975C6.8708 32.8631 11.5927 31.6975 15.8662 29.486C17.8237 28.4699 19.6467 27.3492 20.0203 25.0182C20.364 22.8366 19.9007 20.4458 19.4525 18.3239C18.4364 13.5871 16.4042 9.0595 15.8961 4.2181C15.8662 3.97902 15.8961 3.68017 15.8214 3.44108C15.9858 3.99396 15.0743 3.29166 15.7019 3.53074C16.0306 3.65028 16.4938 3.65028 16.8375 3.73994C17.9134 4.0089 18.9444 4.38247 19.9306 4.87557C21.7835 5.80202 23.4123 7.05719 24.8019 8.61122C28.2088 12.4515 29.3295 17.8906 28.0743 22.8216C27.5364 24.9136 30.779 25.8102 31.3169 23.7182C33.7376 14.2147 28.6272 4.41235 19.4226 1.02038C17.6444 0.36291 15.149 -0.458933 13.4904 0.870958C11.6674 2.33533 12.6386 5.51811 13.0272 7.4457C14.0881 12.586 16.4341 17.517 16.718 22.8067C16.7479 23.4492 16.8973 24.4653 16.5237 25.0481C16.2249 25.5262 15.5524 25.7952 15.0743 26.0642C13.7743 26.7964 12.4145 27.4389 11.0099 27.932C8.12598 28.963 5.13746 29.5159 2.07423 29.6056C-0.0924503 29.6653 -0.0924503 33.0274 2.07423 32.9677V32.9975Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M30.8551 24.1215C33.5299 22.9859 36.3092 22.0594 39.1333 21.387C41.7931 20.7445 44.9161 19.9675 47.546 21.1031C51.9989 23.0456 54.3748 29.1572 55.3759 33.5353C56.4369 38.1974 56.6909 45.0411 53.2989 48.8664C50.3403 52.2136 44.4828 53.2894 40.2242 52.5722C39.5966 52.4676 38.7747 52.3182 38.2517 51.9446C38.2517 51.9446 37.7437 51.6906 37.7437 51.6607C37.7437 51.5113 38.7598 51.1527 38.8644 51.0929C40.3437 50.4055 41.838 49.748 43.3322 49.0756C46.6196 47.5814 49.9219 46.1021 53.2093 44.6078C55.1817 43.7112 53.4633 40.8273 51.5058 41.7089C47.6805 43.4423 43.8552 45.1607 40.0299 46.894C37.669 47.9549 32.9172 49.4193 34.6804 52.9906C36.0701 55.7998 40.1644 56.1285 42.8839 56.0538C45.9173 55.9791 48.9656 55.4262 51.73 54.1113C57.9909 51.1526 59.6346 44.1147 59.3058 37.7043C58.9771 31.2939 56.6162 24.1364 51.7598 19.8927C48.846 17.3376 45.3793 16.8743 41.6288 17.4422C37.3103 18.0996 33.1414 19.5042 29.1367 21.2077C27.1494 22.0594 28.8678 24.9583 30.8402 24.1066L30.8551 24.1215Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M39.8195 46.9986C39.162 47.2078 38.2505 47.0434 37.4137 46.8193C36.9953 46.6998 36.5769 46.5503 36.1585 46.4009C35.8149 46.2814 36.3528 46.5205 36.0838 46.371C35.9792 46.3113 35.77 46.2067 35.6804 46.132C35.6356 46.0871 35.4413 45.7883 35.4861 45.8929C35.4861 45.8779 35.3666 45.3699 35.3965 45.6239C35.3516 45.2802 35.3218 45.3251 35.531 44.8917C35.7103 44.5182 36.0091 44.2342 36.308 43.9503C36.3976 43.8756 36.7563 43.6067 36.3528 43.8906C36.5769 43.7262 36.7861 43.5768 37.0103 43.4273C38.7436 42.2618 40.5218 41.6641 42.4942 41.0066C45.1689 40.125 47.8138 39.1836 50.4736 38.2721C52.5057 37.5698 51.6391 34.3273 49.577 35.0296C47.0368 35.8963 44.5115 36.7779 41.9712 37.6296C40.0436 38.2871 38.0861 38.8549 36.308 39.8859C34.5298 40.917 32.8562 42.1273 32.2286 44.0848C31.6011 46.0423 32.5424 48.3584 34.4401 49.2699C36.3379 50.1814 38.7287 50.8538 40.7011 50.2113C42.6735 49.5688 41.8816 46.2963 39.8045 46.9687L39.8195 46.9986Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M37.0698 39.7666C35.8296 39.8413 33.8422 39.4677 33.125 38.3619C32.9606 38.1229 32.8112 37.555 33.2595 37.1964C33.9917 36.6137 35.0825 36.3298 35.9491 36.0309C38.1308 35.2987 40.3871 34.8355 42.6285 34.2826C45.0193 33.6849 47.3802 33.0573 49.7561 32.4297C51.8481 31.8918 50.9665 28.6343 48.8595 29.1872C45.9457 29.9493 43.0319 30.7412 40.0882 31.4286C37.3239 32.0861 34.3802 32.6987 31.8698 34.1033C30.6595 34.7757 29.6882 35.9114 29.5836 37.3458C29.4939 38.5263 29.9422 39.8562 30.7192 40.7378C32.1986 42.4114 34.8733 43.2631 37.0549 43.1286C39.2365 42.9942 39.2216 39.6321 37.0549 39.7666H37.0698Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M34.3196 33.1023C33.3184 33.1919 32.377 32.9229 31.4954 32.4597C31.2713 32.3402 31.0322 32.2057 30.823 32.0563C30.4494 31.8022 31.1667 32.4448 30.5839 31.8471C30.3299 31.5931 30.0011 31.2344 29.8965 30.9804C29.7621 30.6666 29.7322 30.6367 29.8667 30.2482C29.9115 30.0988 30.0759 29.8896 30.2701 29.6953C30.4494 29.531 30.7632 29.3218 31.1069 29.1425C31.1517 29.1275 31.6149 28.9333 31.2563 29.0678C31.3908 29.0229 31.5103 28.9781 31.6448 28.9333C33.5127 28.3505 35.4253 27.8574 37.338 27.454C38.5782 27.185 39.8184 27.0057 41.0736 26.8413C42.4782 26.6769 43.8529 26.4677 45.2725 26.6471C46.169 26.7666 46.9461 25.7953 46.9461 24.9735C46.9461 23.9723 46.169 23.4045 45.2725 23.2999C43.9725 23.1355 42.6874 23.2999 41.4023 23.4493C40.1173 23.5988 38.7874 23.7631 37.4874 24.0022C35.4253 24.3907 33.3931 24.9436 31.3759 25.5264C29.8368 25.9597 28.3873 26.6172 27.4011 27.9321C25.9965 29.7701 26.3402 32.0114 27.7448 33.7149C29.2391 35.523 32.0184 36.7184 34.3494 36.4942C35.246 36.4046 36.023 35.777 36.023 34.8207C36.023 33.9839 35.246 33.0574 34.3494 33.1471L34.3196 33.1023Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M1.01147 32.6538C1.23561 37.4056 1.51952 42.1424 1.8632 46.8941C2.04251 49.27 2.22182 51.6309 2.43102 54.0068C2.59539 55.8597 2.43102 58.3103 4.26896 59.3861C5.97242 60.3724 8.25863 59.8793 10.0517 59.4907C12.3081 59.0126 14.6989 58.654 16.9104 57.9666C19.2265 57.2344 18.5541 54.9183 18.2403 53.0953C17.8518 50.824 17.4483 48.5528 17.0299 46.2815C16.5518 43.7562 16.0437 41.2309 15.4759 38.7205C14.9081 36.2102 13.6828 33.4309 14.0265 30.9205C14.146 30.009 13.8023 29.1274 12.846 28.8584C12.069 28.6343 10.9035 29.1274 10.7839 30.0389C10.4851 32.2056 10.9035 34.163 11.4265 36.2699C11.9495 38.3769 12.4575 40.5884 12.9058 42.755C13.3541 44.9217 13.7426 46.939 14.1161 49.0309C14.3104 50.0769 14.4897 51.1229 14.669 52.1838C14.8184 53.0057 15.4909 54.9482 15.2069 55.7401L15.984 54.739C15.5506 55.0229 14.7587 55.0528 14.2506 55.1574C13.5334 55.3218 12.8161 55.4712 12.0989 55.6356C10.7242 55.9344 9.3345 56.3379 7.9299 56.5321C7.49656 56.5919 6.3161 56.816 5.94253 56.5022C6.13679 56.6666 6.0023 56.3229 5.97242 56.2183C5.88276 55.8896 5.8977 55.4712 5.86782 55.1275C5.73334 53.5735 5.59885 52.0344 5.47931 50.4804C5.00115 44.5631 4.62758 38.6309 4.35862 32.6837C4.25402 30.532 0.891933 30.517 0.996531 32.6837H1.01147V32.6538Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M8.23048 38.5113C10.3972 38.5113 10.3972 35.1492 8.23048 35.1492C6.0638 35.1492 6.0638 38.5113 8.23048 38.5113Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M17.988 57.1149C21.7834 57.5333 25.5191 56.9655 29.18 55.9943C30.8536 55.546 32.5571 54.8437 34.2904 54.7839C34.9927 54.769 35.7099 54.7839 36.3973 54.9333C36.6812 54.9931 36.9502 55.0529 37.2341 55.1425C37.4881 55.2172 37.2939 55.2023 37.1295 55.0379L36.6962 54.2908V54.3356C37.0548 55.1724 37.8318 55.7701 38.7881 55.5161C39.595 55.292 40.2973 54.2908 39.9686 53.454C39.3858 51.9896 37.7571 51.7356 36.3525 51.5563C34.3502 51.3023 32.5272 51.5563 30.5996 52.1241C26.4306 53.3195 22.3513 54.246 17.988 53.7529C17.0915 53.6483 16.3145 54.6046 16.3145 55.4264C16.3145 56.4126 17.0915 57.0103 17.988 57.1V57.1149Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M43.8531 12.0031L45.452 6.23522C45.6911 5.38349 45.1681 4.36739 44.2715 4.17314C43.375 3.97889 42.4485 4.44211 42.2094 5.3536L40.6106 11.1214C40.3715 11.9732 40.8945 12.9893 41.7911 13.1835C42.6876 13.3778 43.614 12.9146 43.8531 12.0031Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M51.8627 14.4088L54.8213 10.0157C55.0604 9.67203 55.1053 9.11916 54.9857 8.71571C54.8662 8.31226 54.5823 7.90881 54.2087 7.71455C53.357 7.26628 52.4305 7.53524 51.9075 8.31226L48.9489 12.7054C48.7098 13.0491 48.665 13.6019 48.7845 14.0054C48.9041 14.4088 49.188 14.8123 49.5616 15.0065C50.4133 15.4548 51.3397 15.1859 51.8627 14.4088Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M60.1405 19.7136C61.7543 18.4285 63.2933 17.0388 64.7129 15.5296C65.3255 14.8871 65.4003 13.7813 64.7129 13.1538C64.0255 12.5262 62.9796 12.4664 62.337 13.1538C60.9175 14.648 59.3784 16.0526 57.7646 17.3377C57.4508 17.5917 57.2715 18.1446 57.2715 18.5331C57.2715 18.9515 57.4508 19.4446 57.7646 19.7285C58.0784 20.0124 58.5117 20.2366 58.96 20.2216L59.4083 20.1618C59.6922 20.0871 59.9462 19.9377 60.1554 19.7285L60.1405 19.7136Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',transformTemplate:transformTemplate1,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wdj15k\",\"data-framer-name\":\"Vector 514\",fill:\"rgb(94, 48, 48)\",intrinsicHeight:25,intrinsicWidth:165,layoutDependency:layoutDependency,layoutId:\"IIVfLMrgv\",svg:'<svg width=\"165\" height=\"25\" viewBox=\"-3 -3 165 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0644531 0.732422C49.9021 0.732422 151.224 0.732422 157.811 0.732422C166.046 0.732422 80.238 9.73081 59.0029 18.7293\" stroke=\"#ECF86E\" stroke-width=\"6\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xljku6\",\"data-framer-name\":\"Layer 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:43,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"OsY1VpF3C\",svg:'<svg width=\"40\" height=\"43\" viewBox=\"0 0 40 43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.72721 20.6711C4.49493 21.5489 5.9987 22.6236 6.9857 21.3625C7.38579 20.8551 7.42206 20.113 7.45464 19.4938C7.49629 18.6335 7.39199 17.7937 7.18862 16.9575L6.31523 17.4119C6.84333 18.0477 7.46048 18.5776 8.18812 18.9731C8.8361 19.323 9.70801 19.6933 10.4592 19.4886C11.2478 19.2705 11.6764 18.4729 12.0846 17.8253C12.4927 17.1776 12.8785 16.4376 13.1983 15.7053C14.4982 12.7157 14.9329 9.37449 14.421 6.14927L13.4572 6.35061C13.869 8.25898 14.4343 10.1389 15.2853 11.9011C15.9849 13.358 16.9166 14.769 18.3749 15.5535C19.7505 16.2989 21.3385 16.2921 22.6665 15.4535C24.1545 14.5155 24.9367 12.8731 25.6312 11.3254C25.8927 10.7407 24.9944 10.3111 24.7346 10.9005C24.0431 12.4418 24.6553 14.305 26.0229 15.2646C27.5229 16.3142 29.4832 16.1218 31.0351 15.3036L30.3681 14.5748C28.5679 16.459 28.4453 19.4458 30.1571 21.429C30.9298 22.3209 31.9778 22.8292 33.0465 23.2772C34.1152 23.7253 35.3285 24.164 36.0517 25.1686L36.5516 24.3932C33.9856 24.1467 31.7032 25.4792 30.4723 27.715C29.2415 29.9508 29.3943 32.7177 30.3141 35.0576L30.9967 34.4388C29.6117 33.8448 28.36 32.7065 26.7915 32.664C25.5426 32.629 24.2511 33.2591 23.9747 34.5571C23.8401 35.1864 24.8181 35.3657 24.9544 34.7411C25.1752 33.7165 26.4978 33.5139 27.362 33.7443C28.5174 34.0505 29.4823 34.8737 30.5735 35.3402C30.9547 35.5053 31.4207 35.1381 31.2561 34.7214C30.4745 32.739 30.258 30.4598 31.2016 28.485C32.1452 26.5103 34.125 25.1589 36.374 25.3759C36.7841 25.4145 37.1463 24.9787 36.8739 24.6004C35.619 22.8609 33.4285 22.6601 31.7487 21.5214C29.5883 20.0576 29.3645 17.0623 31.1355 15.2149C31.5591 14.7732 30.9278 14.2482 30.4685 14.4861C29.3213 15.0911 27.7976 15.2334 26.6694 14.5002C25.6512 13.8386 25.1356 12.4534 25.6423 11.3268L24.7456 10.9019C24.1385 12.2651 23.4879 13.7284 22.198 14.5851C20.9081 15.4418 19.4709 15.2046 18.3145 14.3334C17.1582 13.4623 16.425 12.0596 15.8619 10.7337C15.2191 9.2142 14.7638 7.62783 14.412 6.0204C14.2919 5.47677 13.3579 5.67277 13.4482 6.22174C13.8729 8.89163 13.6478 11.6508 12.7416 14.2039C12.2959 15.4568 11.7045 16.6717 10.9565 17.7735C10.7429 18.0928 10.5045 18.5055 10.0804 18.546C9.72226 18.5787 9.30588 18.3892 8.99126 18.2479C8.27298 17.923 7.65214 17.4419 7.14981 16.834C6.78001 16.3901 6.13894 16.7404 6.27642 17.2884C6.5002 18.1966 6.56933 19.1599 6.4316 20.0915C6.3629 20.5651 6.20215 21.0029 5.63346 20.9047C5.19431 20.829 4.84224 20.4052 4.57284 20.0945C4.15986 19.6184 3.33599 20.182 3.757 20.6657L3.72888 20.6758L3.72721 20.6711Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m0b1nk\",\"data-framer-name\":\"Review 3 \u2022 Mobile\",layoutDependency:layoutDependency,layoutId:\"c6F_KJRHy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CThey absolutely nailed it, \\u2028\\u2028with everything from creative strategy, to finding the perfect talent and ad structure.\u201D\"})}),className:\"framer-8xjvkj\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"sGLumX4Dj\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:RHi_oMwT7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1222b4\",\"data-framer-name\":\"Layer 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:37,intrinsicWidth:37,layoutDependency:layoutDependency,layoutId:\"esd2Yv0oz\",svg:'<svg width=\"37\" height=\"37\" viewBox=\"0 0 37 37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M28.3196 25.2879C19.9511 29.314 12.8332 28.6918 6.13448 25.2457C4.42851 24.3717 2.69067 20.2661 3.38823 18.8188C4.29258 16.9477 7.77207 15.0456 9.89557 15.2785C16.7794 16.0395 22.1962 20.1466 28.321 25.2727L28.3196 25.2879ZM6.45892 20.459C9.3309 24.516 16.0928 26.2734 22.5175 24.6337C16.6079 18.909 10.9564 17.4443 6.45892 20.459Z\" fill=\"#DAD1F2\"/>\\n<path d=\"M30.3651 20.9342C23.4805 19.3488 17.853 13.6271 17.6814 7.92477C17.6277 6.17953 18.2697 3.58978 19.4718 2.88328C20.5362 2.26339 23.2633 3.2386 24.4901 4.34338C29.2269 8.62475 31.6712 13.9324 30.3582 20.9259L30.3651 20.9342ZM28.1472 18.2349C27.8476 10.5973 25.82 7.48798 20.2688 6.26143C19.6943 12.2769 23.6821 15.0699 28.1472 18.2349Z\" fill=\"#DAD1F2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Donna Ledwidge\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Co-Founder, KeyForHer\"})]}),className:\"framer-1evhjpe\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"tpRtZ0H4q\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18u7fue\",\"data-framer-name\":\"Vector 514\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:165,layoutDependency:layoutDependency,layoutId:\"M9sM2a2vb\",svg:'<svg width=\"165\" height=\"25\" viewBox=\"-3 -3 165 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0644531 0.732422C49.9021 0.732422 151.224 0.732422 157.811 0.732422C166.046 0.732422 80.238 9.73081 59.0029 18.7293\" stroke=\"#ECF86E\" stroke-width=\"6\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1upb9ej\",\"data-framer-name\":\"Group 375726\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:68,intrinsicWidth:90,layoutDependency:layoutDependency,layoutId:\"Rfg8OW2qo\",svg:'<svg width=\"90\" height=\"68\" viewBox=\"0 0 90 68\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.532 32.3906C10.848 31.9781 10.3525 31.6885 9.87437 31.3809C4.27381 27.7688 3.95233 20.1145 9.24759 16.4149C13.681 13.3152 20.9069 15.6427 23.0349 20.83C23.9418 23.0367 24.0867 25.2698 23.2665 27.8503C25.376 27.045 27.1946 26.3488 29.009 25.6536C29.0738 25.4807 29.1344 25.3088 29.2003 25.14C28.7606 25.0088 28.2568 24.9704 27.882 24.733C24.481 22.5766 22.6872 19.4827 22.8649 15.4337C23.0858 10.4173 27.5872 7.27268 32.4125 8.63844C37.5172 10.0849 40.7095 15.6273 39.3865 20.7612C39.3286 20.9767 39.276 21.1953 39.1568 21.663C40.7105 21.0733 42.0815 20.5815 43.4285 20.0338C44.8749 19.4417 45.727 19.5024 46.4897 20.9386C47.8455 23.5096 48.9763 26.2032 50.1286 28.8777C50.6155 30.0143 50.9193 31.2311 51.3607 32.58C52.1455 32.2897 52.8204 32.0377 53.6538 31.7299C53.2009 30.5042 52.7193 29.3706 52.3652 28.1984C52.0066 27.0095 51.7216 25.7966 51.4969 24.5764C51.3076 23.5378 51.7566 22.675 52.7391 22.3095C54.527 21.6482 56.3506 21.0706 58.178 20.5232C59.2642 20.1966 59.9874 20.7053 60.3537 21.7408C62.3636 27.3999 64.3693 33.0602 66.375 38.7204C66.8169 39.9713 67.2422 41.2267 67.6675 42.4821C67.9732 43.3739 67.7868 44.1885 66.9447 44.5964C65.5549 45.2667 64.14 45.9926 62.6529 46.3333C60.813 46.7507 59.5767 46.0194 58.7508 44.2978C57.9768 42.6868 57.2822 41.0234 56.684 39.3386C56.1286 37.7802 55.235 38.9088 54.5134 38.9866C53.6358 39.0795 53.8121 39.6547 54.0383 40.2832C54.9659 42.8489 55.8335 45.4396 56.7539 48.0118C57.0403 48.8153 57.358 49.6194 57.7747 50.3613C58.3505 51.3986 58.3026 52.0827 57.2113 52.5397C55.489 53.2634 53.6993 53.8186 51.9313 54.4213C46.2948 56.3495 40.6247 58.2022 35.022 60.2236C32.2408 61.2267 29.6223 62.6708 26.8464 63.6769C24.4018 64.5587 21.8506 65.1756 19.3116 65.7715C18.2159 66.0295 17.4793 65.222 17.053 64.2781C15.3919 60.5841 13.7183 56.8933 12.1398 53.1593C9.99203 48.0973 7.95822 42.9959 5.85611 37.9217C5.29154 36.5614 5.92836 34.7235 7.28174 34.1163C7.9558 33.8112 8.66342 33.5816 9.34941 33.3044C10.0199 33.0359 10.6807 32.7476 11.5279 32.3917L11.532 32.3906ZM7.90572 36.3455C8.15378 36.9726 8.31308 37.4012 8.48897 37.8253C9.78541 40.9547 11.0777 44.0852 12.3866 47.2112C14.49 52.2406 16.6101 57.2655 18.6969 62.2994C19.0509 63.1559 19.5967 63.4009 20.4288 63.138C22.6908 62.4207 24.9833 61.7842 27.2006 60.95C30.6207 59.6601 33.9556 58.1352 37.392 56.8899C40.4682 55.7766 43.6452 54.9565 46.7485 53.9115C48.959 53.1681 51.0971 52.2039 53.3117 51.4594C55.2001 50.8245 55.2253 50.9022 54.617 49.0467C54.5929 48.9731 54.5729 48.8985 54.5446 48.826C52.3677 42.527 50.2312 36.2127 47.989 29.9356C47.1669 27.6306 46.1014 25.413 45.1416 23.1582C44.8076 22.3763 44.2917 22.1766 43.465 22.5093C40.6135 23.6646 37.737 24.7599 34.8747 25.8914C29.2927 28.0896 23.7237 30.3198 18.1351 32.4931C14.7974 33.792 11.4303 35.0143 7.9035 36.3372L7.90572 36.3455ZM8.09424 25.1357C9.07569 28.7985 13.1164 31.3347 16.5589 30.4435C20.2128 29.4955 22.1317 26.4027 21.2233 22.9293C20.2192 19.0992 16.1938 16.6699 12.4558 17.636C9.0548 18.5161 7.18282 21.7342 8.09313 25.1315L8.09424 25.1357ZM28.3702 11.0242C26.9886 11.4433 25.8539 12.6677 25.3945 14.5203C24.399 18.5705 27.6929 23.2142 31.85 23.6297C34.3992 23.8848 36.5269 22.3677 37.1389 19.8562C37.5355 18.2339 37.2501 16.6876 36.5894 15.1841C35.2202 12.0653 31.7293 10.1375 28.3702 11.0242ZM54.1039 34.0902C54.1106 34.1151 54.1079 34.138 54.1104 34.164C53.7374 34.2818 53.3751 34.4233 52.9954 34.5161C51.9144 34.7791 52.4187 35.4665 52.5508 36.0757C52.708 36.8117 53.0671 37.04 53.7976 36.7465C54.5922 36.4268 55.3985 36.1174 56.2254 35.9181C57.4165 35.6345 58.0217 36.0681 58.4472 37.2079C59.1127 38.9946 59.8216 40.7609 60.5399 42.5291C60.8853 43.3702 61.2643 44.2868 62.4572 43.9271C63.3413 43.6591 64.1998 43.2957 65.0392 42.9107C65.1539 42.8578 65.1744 42.4032 65.102 42.1826C64.7102 41.0026 64.277 39.8338 63.8562 38.6617C62.3913 34.5549 60.8527 30.4723 59.482 26.3359C58.2682 22.6686 58.078 22.5062 54.5444 24.1688C54.2684 24.3006 53.9217 24.8647 54.0035 25.0873C54.8409 27.366 55.7725 29.615 56.6502 31.8785C56.8081 32.2852 57.0477 32.8479 56.8924 33.1474C56.7017 33.5142 56.157 33.7712 55.7134 33.9079C55.2088 34.0653 54.6469 34.0425 54.1103 34.0974L54.1039 34.0902Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M27.6516 56.6457C26.0218 56.9845 24.4252 57.3145 22.8245 57.6456C21.7885 57.861 21.0892 57.4748 20.6966 56.4908C18.7702 51.6407 16.8365 46.797 14.9101 41.9469C14.5946 41.1512 14.2573 40.3568 14.0319 39.5324C13.6238 38.059 14.3361 37.2991 15.7751 36.829C18.6542 35.8931 21.5494 34.9173 24.2746 33.6224C28.8931 31.429 33.5743 29.4366 38.5145 28.0952C40.185 27.6431 40.7272 27.8579 41.334 29.3759C43.4824 34.7223 45.6277 40.0739 47.7636 45.4236C48.4684 47.191 47.9166 48.4503 46.1366 49.2073C41.3395 51.2485 36.5532 53.3135 31.7356 55.3113C30.4114 55.8617 28.9974 56.2095 27.6494 56.6374L27.6516 56.6457ZM17.4225 38.9618C17.6496 39.6435 17.7766 40.134 17.9708 40.5933C19.6272 44.502 21.3188 48.3925 22.9586 52.3057C24.1058 55.0438 24.1536 55.2222 26.9362 54.3076C30.0711 53.2809 33.1128 51.9724 36.1767 50.7468C39.0315 49.604 41.8517 48.3815 44.7099 47.2511C45.486 46.9453 45.6501 46.5456 45.3131 45.8356C45.1803 45.5556 45.0939 45.2497 44.9807 44.96C43.7726 41.8781 42.5686 38.7951 41.3532 35.7196C40.6601 33.9624 39.9443 32.2202 39.2499 30.5079C31.3511 32.0241 24.9344 36.6823 17.4183 38.9629L17.4225 38.9618Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M16.1406 24.3804C15.8759 24.6869 15.5793 25.3222 15.1054 25.5114C14.3107 25.831 13.6623 25.369 13.4431 24.5341C13.2308 23.7418 13.5722 23.1079 14.3629 22.9227C15.221 22.7239 15.729 23.2592 16.1436 24.3751L16.1406 24.3804Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M31.1579 15.9187C32.0051 15.8118 32.6646 16.0663 32.929 16.9869C33.1868 17.8826 32.7552 18.7274 31.9399 18.9369C31.162 19.1365 30.2014 18.5714 30.0638 17.7591C29.917 16.8959 30.2423 16.2352 31.1548 15.924L31.1579 15.9187Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M28.5723 49.2992C27.7053 49.5315 26.8425 49.7627 25.9756 49.995C25.1376 50.2195 24.5469 49.9065 24.1344 49.1634C23.1009 47.2974 22.0467 45.4369 21.009 43.572C20.5546 42.7557 20.8368 41.8842 21.7474 41.7648C26.3373 41.1573 29.992 38.453 33.9614 36.4424C34.3416 36.2516 34.7053 36.0164 35.0918 35.8328C36.1109 35.3552 36.7993 35.6509 37.2248 36.675C38.099 38.7927 38.9887 40.9018 39.8743 43.012C40.1933 43.7712 40.0903 44.399 39.2913 44.7687C35.7695 46.3926 32.2433 47.9999 28.7182 49.6113C28.6685 49.509 28.6219 49.4015 28.5723 49.2992Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M70.3613 32.5839C69.9245 32.3038 69.3097 32.1225 69.0966 31.7234C68.719 31.0185 69.3056 30.5664 69.9038 30.3039C71.8611 29.4491 73.8318 28.6301 75.7987 27.7963C79.2237 26.3438 82.6402 24.8739 86.0778 23.4535C86.5133 23.2738 87.0674 23.2433 87.5351 23.3304C87.7541 23.37 88.0922 23.9125 88.0283 24.1144C87.8942 24.5239 87.6022 25.019 87.2413 25.1982C85.8184 25.8902 84.344 26.4779 82.8858 27.0967C78.8607 28.8044 74.8318 30.513 70.8067 32.2207C70.7116 32.262 70.6164 32.3032 70.5203 32.3407C70.4673 32.4218 70.418 32.5018 70.364 32.5792L70.3613 32.5839Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M84.4976 32.6793C80.4432 33.4707 76.3925 34.2612 72.3408 35.048C72.1058 35.0952 71.8198 35.1876 71.6314 35.1005C71.2078 34.8994 70.8287 34.5999 70.4338 34.3439C70.7161 33.9301 70.9162 33.2827 71.2999 33.1445C72.2275 32.8055 73.2364 32.6964 74.2163 32.5086C77.7658 31.8288 81.3127 31.1537 84.8632 30.4776C85.5254 30.3513 86.0482 30.5415 86.2103 31.2491C86.3763 31.9714 85.9456 32.3306 85.3046 32.5063C85.0404 32.5771 84.7726 32.6488 84.5084 32.7196C84.5045 32.7049 84.5006 32.6903 84.4976 32.6793Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M69.2232 29.4003C68.9061 29.2296 68.4132 29.1218 68.2294 28.8172C68.0627 28.5473 68.1489 28.0326 68.2907 27.6958C68.4149 27.4109 68.7616 27.2079 69.0363 27.0006C72.2937 24.5116 75.5548 22.0216 78.8262 19.5407C79.0973 19.3344 79.4053 19.0749 79.7145 19.055C80.0771 19.0286 80.638 19.1261 80.7858 19.3696C80.9697 19.6742 80.89 20.1989 80.7917 20.5948C80.7374 20.8178 80.4318 20.998 80.2171 21.1656C76.8705 23.7178 73.5219 26.2627 70.1722 28.8039C69.9266 28.9876 69.6554 29.135 69.2315 29.402L69.2232 29.4003Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n8b4cx\",\"data-framer-name\":\"Review 4 \u2022 Mobile\",layoutDependency:layoutDependency,layoutId:\"VQStrKa0d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CThey just get it! In an ever-changing, ever-growing market, [they] always hit the mark and are ahead of the social trends. Taking risks and pushing boundaries is what makes the team strategic trailblazers.\u201D\"})}),className:\"framer-1sn904y\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"WDteJNRva\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:uqMMk71Fm,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1h8wxgh\",\"data-framer-name\":\"Vector 548\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:74,intrinsicWidth:268,layoutDependency:layoutDependency,layoutId:\"JCmaBrO6h\",svg:'<svg width=\"268\" height=\"74\" viewBox=\"-2 -2 268 74\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M242.227 19.9646C209.951 8.58696 123.163 -8.15436 34.2242 15.9011C-76.9498 45.9705 114.317 89.0428 220.71 59.7861C292.41 40.0694 259.915 11.121 227.639 0.285156\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1g28qjv\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:51,intrinsicWidth:31,layoutDependency:layoutDependency,layoutId:\"CZ6p8dIWT\",svg:'<svg width=\"31\" height=\"51\" viewBox=\"-1 -1 31 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M28.9932 22.9729L29.0858 22.8378L28.9989 22.6989C28.8428 22.4496 28.7164 22.2193 28.5954 21.9987C28.5367 21.8918 28.4793 21.7871 28.4204 21.6837C28.245 21.376 28.0601 21.0872 27.8089 20.8545C22.5269 15.9548 18.943 9.91531 16.0214 3.39526L16.0207 3.39374C15.6856 2.6591 15.2809 1.79776 14.6395 1.24093C14.3271 0.969743 13.9225 0.695047 13.5035 0.50289C13.0915 0.313904 12.6299 0.188308 12.2189 0.264124L12.2186 0.264194C12.0212 0.300907 11.8359 0.40953 11.6746 0.541523C11.5107 0.675568 11.356 0.846536 11.2193 1.03173C10.9485 1.39856 10.7269 1.85087 10.6494 2.24153C9.23806 9.21998 5.70179 15.1532 1.4908 20.7505C0.944946 21.475 0.522917 22.1051 0.247773 22.6778C-0.0281997 23.2524 -0.163834 23.7843 -0.118292 24.3078C-0.02709 25.3562 0.779016 26.2551 2.23215 27.3433C6.4717 30.5247 9.23126 34.6896 10.5414 39.8011L10.5415 39.8013C10.863 41.0518 11.0442 42.3276 11.2275 43.619C11.31 44.1998 11.3929 44.7836 11.4892 45.3698L11.4894 45.3707C11.6125 46.1022 12.109 46.8536 12.7172 47.4081C13.3215 47.9591 14.0929 48.3666 14.8033 48.325L14.8038 48.325C15.2674 48.2969 15.637 48.1822 15.929 47.9908C16.222 47.7986 16.4202 47.5401 16.5578 47.252C16.785 46.7763 16.8565 46.1898 16.9212 45.6592C16.9322 45.5691 16.943 45.4806 16.9543 45.3945C16.9875 45.1452 17.0129 44.9056 17.0378 44.6701C17.0744 44.3245 17.11 43.9878 17.1682 43.6425C18.4089 36.3402 22.3321 30.5263 27.369 25.2879L27.3692 25.2877C27.6955 24.9477 27.9665 24.5635 28.222 24.1705C28.3198 24.02 28.4139 23.8705 28.5079 23.7213C28.6644 23.4727 28.8206 23.2246 28.9932 22.9729ZM23.4978 23.22C19.9403 27.2793 16.5541 31.8378 14.3607 37.744C12.3452 31.8804 9.26253 27.2993 4.81671 24.083C5.8943 22.168 6.9586 20.2756 8.0067 18.4121C9.89564 15.0536 11.7319 11.7887 13.4985 8.65304C15.1629 11.0759 16.8852 13.5857 18.6612 16.1738C20.2323 18.4632 21.8455 20.814 23.4978 23.22Z\" fill=\"#DAD1F2\" stroke=\"#DDD4F6\" stroke-width=\"0.5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16yrmsh\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:34,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"vlezfSQjC\",svg:'<svg width=\"22\" height=\"34\" viewBox=\"-1 -1 22 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.3299 15.1875L19.4225 15.0523L19.3356 14.9134C19.237 14.756 19.1584 14.6126 19.0816 14.4727C19.0437 14.4037 19.0063 14.3355 18.9672 14.2669C18.8541 14.0684 18.7302 13.8735 18.5588 13.7147C15.1908 10.5905 12.9033 6.73736 11.0361 2.57044L11.0354 2.56892C10.8224 2.102 10.5563 1.53186 10.1285 1.16055C9.92301 0.982126 9.65693 0.801365 9.38007 0.674376C9.11013 0.550557 8.79418 0.461362 8.50412 0.514868L8.50374 0.514938C8.3569 0.542258 8.22455 0.621672 8.11506 0.711248C8.00306 0.802875 7.89902 0.918215 7.80825 1.04118C7.62931 1.28358 7.48053 1.58507 7.42768 1.85128C6.52832 6.29806 4.27433 10.0824 1.58281 13.66C1.23241 14.1251 0.958004 14.534 0.777989 14.9088C0.597163 15.2852 0.504167 15.6422 0.535179 15.9987C0.597319 16.713 1.14569 17.3096 2.07513 18.0056C4.77179 20.0292 6.52624 22.6771 7.35967 25.9287L7.35972 25.9289C7.56423 26.7242 7.679 27.5326 7.79598 28.3565C7.84891 28.7294 7.90229 29.1054 7.96464 29.4848L7.9648 29.4857C8.04798 29.9799 8.38008 30.4777 8.77866 30.8412C9.17336 31.201 9.69005 31.4799 10.1796 31.4513L10.1802 31.4513C10.4888 31.4326 10.7413 31.3558 10.9442 31.2228C11.148 31.0891 11.2847 30.9097 11.3784 30.7135C11.5308 30.3945 11.5785 30.0017 11.6196 29.6634C11.6265 29.6064 11.6332 29.551 11.6402 29.4977C11.6622 29.3327 11.6786 29.1778 11.6945 29.0269C11.7175 28.809 11.7396 28.5994 11.7766 28.3798C12.5665 23.7311 15.0641 20.0261 18.2811 16.6805L18.2813 16.6803C18.496 16.4566 18.6731 16.2051 18.8376 15.952C18.9017 15.8534 18.9625 15.7568 19.0228 15.661C19.1221 15.5033 19.2202 15.3475 19.3299 15.1875ZM7.67281 1.90038C7.76048 1.45787 8.19046 0.827514 8.54947 0.760721L7.67281 1.90038ZM15.6249 15.288C13.4084 17.8232 11.2955 20.6695 9.8944 24.3261C8.60874 20.7002 6.66994 17.8469 3.90087 15.8213C4.57729 14.6192 5.24547 13.4312 5.90366 12.2609C7.08712 10.1568 8.23828 8.11001 9.34692 6.14209C10.3865 7.65562 11.4613 9.22174 12.5687 10.8355C13.5617 12.2826 14.5811 13.768 15.6249 15.288Z\" fill=\"#DAD1F2\" stroke=\"#DDD4F6\" stroke-width=\"0.5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Tiana Westwood\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Head of Content, Sitting Pretty\"})]}),className:\"framer-10wqj2k\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"KgJ4TMzy7\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dqalim\",\"data-framer-name\":\"Vector 514\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:165,layoutDependency:layoutDependency,layoutId:\"wDsVSk8oh\",svg:'<svg width=\"165\" height=\"25\" viewBox=\"-3 -3 165 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0644531 0.732422C49.9021 0.732422 151.224 0.732422 157.811 0.732422C166.046 0.732422 80.238 9.73081 59.0029 18.7293\" stroke=\"#ECF86E\" stroke-width=\"6\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-a9p6hg\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:83,intrinsicWidth:79,layoutDependency:layoutDependency,layoutId:\"aeIuCbcqs\",svg:'<svg width=\"79\" height=\"83\" viewBox=\"0 0 79 83\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M39.0523 46.7507C47.4782 37.7732 55.9405 28.7546 64.7489 19.3624C61.9987 19.626 59.5314 19.8468 57.0678 20.0855C56.4051 20.1538 55.7476 20.2659 55.0827 20.3421C53.4844 20.5159 52.3979 19.7923 52.2515 18.2183C52.1104 16.6881 53.214 15.9239 54.596 15.7346C56.436 15.4814 58.2859 15.3496 60.14 15.202C63.3212 14.9436 66.4993 14.6335 69.6925 14.4885C72.691 14.3423 74.2977 15.9091 74.2952 18.8931C74.2902 23.5639 74.1938 28.2272 74.1234 32.889C74.116 33.3279 74.021 33.7773 73.8986 34.2024C73.496 35.5784 72.8371 36.8349 71.1518 36.5105C69.3716 36.1607 69.2726 34.7266 69.3699 33.1925C69.5853 29.9517 69.7016 26.7013 69.8416 23.4573C69.8606 23.0384 69.7545 22.6115 69.6688 21.9186C69.088 22.3142 68.653 22.5453 68.3038 22.8672C58.7126 31.7953 49.8195 41.3769 41.5368 51.529C39.5406 53.9788 37.9 53.836 36.0876 51.2644C34.6439 49.2156 33.0175 47.279 31.3061 45.4383C30.9178 45.0205 29.5652 44.8785 29.1622 45.2115C21.2193 51.817 13.319 58.4848 5.48515 65.2212C4.22923 66.3007 3.20472 67.561 1.55726 66.0512C0.393082 64.9846 0.691607 63.3008 2.35585 61.805C6.27167 58.2669 10.1722 54.6907 14.2029 51.2936C18.5843 47.6004 23.1115 44.0905 27.5745 40.504C29.9188 38.6222 30.9929 38.6641 33.1388 40.7823C35.1439 42.7611 37.1126 44.781 39.0544 46.7428L39.0523 46.7507Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eqnil9\",\"data-framer-name\":\"Review 5 \u2022 Web\",layoutDependency:layoutDependency,layoutId:\"FtPSwQPV3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CMight be one of the best creative agencies I've worked with. They are quick to respond and make edits, do amazing work converting angles into solid creatives, and go above and beyond in delivering ads.\u201D\"})}),className:\"framer-1iy05j4\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"CyMX748iL\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:GKA9nC0_k,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Benjamin Tan\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Founder, 8Sheep Organics\"})]}),className:\"framer-c6qql\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"BKMlPjx0E\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13ymjsm\",\"data-framer-name\":\"Vector 515\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:378,layoutDependency:layoutDependency,layoutId:\"TxY32Wg9H\",svg:'<svg width=\"378\" height=\"19\" viewBox=\"-2 -2 378 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M373.186 11.1058C336.801 10.1089 297.412 9.71367 247.068 8.78794C155.998 7.11334 52.2452 5.90925 3.67646 8.78799C-14.6367 9.87343 62.519 24.3902 183.768 0.764341\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-y2z0sq\",\"data-framer-name\":\"Layer 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:45,layoutDependency:layoutDependency,layoutId:\"yVYqGC0un\",svg:'<svg width=\"45\" height=\"44\" viewBox=\"0 0 45 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.8239 30.2283C20.9344 35.0925 29.5339 34.3408 37.627 30.1774C39.6881 29.1215 41.7876 24.1613 40.9449 22.4127C39.8523 20.1521 35.6485 17.854 33.083 18.1354C24.7662 19.0548 18.2219 24.0168 10.8222 30.21L10.8239 30.2283ZM37.235 24.3943C33.7652 29.2958 25.5957 31.419 17.8337 29.438C24.9735 22.5216 31.8013 20.752 37.235 24.3943Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M8.35255 24.9687C16.6702 23.0532 23.4691 16.1405 23.6765 9.25122C23.7414 7.1427 22.9657 4.01386 21.5134 3.16031C20.2274 2.41138 16.9326 3.58959 15.4504 4.92434C9.72767 10.0969 6.77453 16.5094 8.36085 24.9587L8.35255 24.9687ZM11.0321 21.7074C11.394 12.4801 13.8438 8.72351 20.5505 7.24165C21.2446 14.5093 16.4267 17.8837 11.0321 21.7074Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lnacpv\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:68,intrinsicWidth:67,layoutDependency:layoutDependency,layoutId:\"DEio96j0K\",svg:'<svg width=\"67\" height=\"68\" viewBox=\"0 0 67 68\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.4507 21.3415C9.60183 22.8132 7.73563 24.2512 5.91916 25.7637C4.51086 26.9417 4.15461 28.3555 5.02662 30.0834C9.42132 38.7902 14.6518 46.9361 20.9622 54.3744C22.1981 55.8316 23.7678 55.6079 25.2236 54.943C28.658 53.3869 32.075 51.7971 35.4101 50.0447C36.6756 49.3793 37.4442 49.6887 38.4591 50.4386C40.3578 51.8336 42.3125 53.1556 44.358 54.3292C46.5472 55.588 48.3639 54.4458 48.1751 51.9176C47.9615 49.0958 47.6481 46.2679 47.1221 43.4952C46.8082 41.836 47.3168 40.7568 48.5527 39.8395C51.0466 37.9968 53.559 36.1773 56.0297 34.3056C59.1481 31.9468 59.3661 31.0514 57.0447 27.8368C52.388 21.3902 47.6465 14.9921 42.8166 8.67384C41.8263 7.38205 40.384 6.29806 38.9281 5.56685C38.097 5.15515 36.6239 5.321 35.7651 5.80518C30.4785 8.76913 25.2253 11.8109 20.067 14.9957C17.0357 16.8672 14.1998 19.0677 11.2748 21.1206C11.335 21.1962 11.3905 21.2659 11.4449 21.3461L11.4507 21.3415ZM53.7259 30.5641C53.2827 30.9739 52.965 31.3027 52.6046 31.5897C50.1127 33.5542 47.5931 35.4839 45.1198 37.4717C43.1418 39.0557 42.0568 40.9262 42.9054 43.6509C43.3903 45.2026 43.3873 46.9051 43.6026 48.5478C43.4446 48.6356 43.2807 48.7281 43.1227 48.8159C42.0187 47.966 40.7775 47.2539 39.8503 46.2443C38.3155 44.5786 36.7856 44.6851 34.9543 45.63C31.7239 47.2991 28.4449 48.8834 25.1557 50.419C24.6642 50.6487 23.7855 50.7023 23.416 50.417C22.4673 49.6905 21.5502 48.8249 20.8969 47.8252C17.6062 42.8082 14.2876 37.8039 11.2015 32.6621C8.72788 28.5524 8.89281 28.4971 12.5466 25.4746C19.981 19.3383 28.4964 14.906 36.6938 9.96688C37.9479 9.21557 38.5588 9.98302 39.173 10.8143C43.9862 17.3263 48.7774 23.8464 53.7409 30.5711L53.7259 30.5641Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M27.134 26.5234C25.928 26.1062 24.7559 25.624 23.5462 25.2857C20.9229 24.5435 18.3264 24.6822 15.8653 25.9099C13.3984 27.1422 12.6786 29.6623 14.3771 31.7961C15.3999 33.081 16.7096 34.261 18.1235 35.0826C23.5703 38.2503 29.6344 39.6159 35.7395 40.8065C37.5503 41.1602 38.9077 40.3836 39.1594 38.5401C39.8034 33.8008 40.5497 29.0467 40.7586 24.2738C40.9662 19.559 37.6427 16.5532 33.1786 16.7918C30.5183 16.9339 28.7522 18.2352 28.0611 20.8749C27.5925 22.6727 27.4428 24.5489 27.134 26.5234ZM17.7475 29.8255C19.7708 28.6804 21.4857 28.854 23.1181 29.5206C24.9163 30.2643 26.5639 31.4033 28.3996 32.0032C29.3122 32.3025 30.7031 32.0691 31.4751 31.5116C32.0227 31.1137 32.0422 29.778 32.0455 28.8635C32.055 26.8708 31.7535 24.8693 31.8988 22.892C31.9492 22.2156 32.9524 21.0656 33.5059 21.0808C34.4297 21.0959 35.4285 21.754 36.2092 22.3768C36.5775 22.6725 36.6927 23.5211 36.6344 24.0804C36.2044 28.1459 35.7013 32.2032 35.206 36.3776C28.9998 35.2391 23.1009 33.723 17.7475 29.8255Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eejlqu\",\"data-framer-name\":\"Review 6 \u2022 Mobile\",layoutDependency:layoutDependency,layoutId:\"Rvtlb1w_L\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:'\"Creative Milkshake has proven to be a great sparring partner to discuss any new angles, audiences, or concepts we could try out. They understood our product quickly and were able to get into the minds of our customers.\"'})}),className:\"framer-s7rqsw\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"pZT2RtQPJ\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:TFysv1fhc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Laurence Dochy\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"UGC Specialist, Loop Earplugs\"})]}),className:\"framer-zsab9c\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"e0C3WVkbT\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2phqb\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:60,layoutDependency:layoutDependency,layoutId:\"XLeGoiY18\",svg:'<svg width=\"60\" height=\"56\" viewBox=\"0 0 60 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M33.7715 50.3186C26.7233 51.8526 19.6809 50.8728 13.4813 46.0392C5.05321 39.4674 3.10746 27.7908 8.68054 18.0774C13.927 8.92718 24.9525 3.65514 35.2888 5.35972C43.937 6.78895 50.1973 11.4748 52.9352 19.9314C55.5826 28.1106 53.3928 35.4768 47.9108 41.9015C44.29 46.1435 39.6441 48.7998 33.7715 50.3186ZM49.2394 20.5285C47.8013 15.5638 43.4918 11.3667 36.9598 9.55429C26.9286 6.78238 16.1001 11.8097 11.4398 20.9318C5.72426 32.1115 11.7864 44.4257 24.1293 46.7864C29.1357 47.7455 33.8904 46.9182 38.4197 44.633C47.0795 40.2532 51.8005 30.8159 49.2411 20.535L49.2394 20.5285Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M38.8395 29.4404C38.6841 31.4961 38.8029 33.6157 38.3191 35.5862C37.4663 39.0098 34.4015 40.8447 31.0828 39.6864C28.7823 38.8875 26.7245 37.302 24.6751 35.8889C23.7308 35.239 23.563 34.0388 24.4608 33.1372C25.3324 32.27 26.3012 32.4881 27.2767 33.207C28.602 34.1802 29.9322 35.229 31.4167 35.8903C33.2624 36.7123 34.602 35.9025 34.851 33.8862C35.023 32.5102 34.901 31.0752 34.7151 29.6911C34.5407 28.353 34.1774 26.9575 35.9308 26.5466C37.7171 26.1274 38.0262 27.5853 38.355 28.8708C38.3993 29.0481 38.4306 29.2287 38.4701 29.4142C38.5981 29.424 38.7196 29.4355 38.8477 29.4453L38.8395 29.4404Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M30.4671 21.4452C29.8134 20.897 28.6853 20.3769 28.6408 19.7809C28.5848 19.0831 29.3643 17.8482 29.9898 17.6986C30.6137 17.5424 31.8733 18.2809 32.1476 18.931C32.3842 19.4859 31.6161 20.4598 31.2896 21.2463C31.0138 21.3154 30.7445 21.3828 30.4687 21.4518L30.4671 21.4452Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M21.8697 23.8762C20.9522 24.8665 20.4894 25.8058 19.9246 25.8635C19.3139 25.9326 18.6109 25.1874 17.9475 24.7951C18.3824 24.1071 18.6809 23.1251 19.2998 22.8376C19.7497 22.6273 20.6316 23.3347 21.8681 23.8696L21.8697 23.8762Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3r2ssk\",\"data-framer-name\":\"Vector 515\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:343,layoutDependency:layoutDependency,layoutId:\"XAORuHsCN\",svg:'<svg width=\"343\" height=\"17\" viewBox=\"-2 -2 343 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.25 0.516846C106.676 0.516846 323.043 0.516846 337.11 0.516846C354.694 0.516846 171.456 6.7292 126.11 12.9417\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1e72xqm\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:93,intrinsicWidth:78,layoutDependency:layoutDependency,layoutId:\"qmDQfZlcG\",svg:'<svg width=\"78\" height=\"93\" viewBox=\"0 0 78 93\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M48.9737 52.7533C51.4566 52.3807 52.6659 50.8339 53.2437 48.997C54.0535 46.4259 54.5256 43.7478 55.0659 41.0944C55.8118 37.3994 56.2506 33.6252 57.2515 30.0027C58.6893 24.8159 62.1038 21.0921 66.9554 18.7511C68.6807 17.9186 70.4608 17.1936 72.2296 16.4751C73.1416 16.1063 74.067 16.0854 74.5393 17.1588C75.0407 18.2942 74.4169 18.991 73.4346 19.4328C71.8822 20.1343 70.3008 20.7738 68.7597 21.4899C64.1675 23.6238 61.2316 27.2031 60.013 32.0638C59.2598 35.0969 58.8544 38.2225 58.3677 41.3217C57.8245 44.7361 57.465 48.1822 55.7927 51.311C54.2745 54.1477 52.0758 55.8841 48.7641 56.1024C48.242 56.1329 47.7473 56.6481 47.2535 56.9519C47.1703 57.002 47.1357 57.1271 47.0817 57.218C43.3546 64.0238 38.263 64.4938 32.1656 60.5011C30.0763 59.132 28.0542 57.6526 25.9306 56.3452C23.596 54.9102 21.1351 55.0504 18.7611 56.2804C14.6812 58.3983 12.3168 61.7895 11.8831 66.3655C11.4679 70.7561 12.2828 74.9563 14.346 78.8864C14.5462 79.2612 14.8894 79.6544 14.8701 80.03C14.8401 80.6527 14.7454 81.5922 14.3625 81.794C13.8525 82.0588 13.0225 81.8117 12.3695 81.627C12.0836 81.5479 11.8495 81.1079 11.6881 80.7805C8.35724 74.1119 6.99148 67.2525 10.3357 60.2176C12.3947 55.8934 15.9873 53.2078 20.7085 52.2274C23.4491 51.6606 26.0058 52.3972 28.3239 53.8777C30.6566 55.3681 32.8911 57.0255 35.2401 58.4915C38.8221 60.7298 41.6643 59.9698 43.8733 56.3682C44.4215 55.4792 44.4169 54.9605 43.4714 54.2966C37.6037 50.204 34.8096 44.3555 34.1776 37.4029C34.0481 35.9665 34.3077 34.4032 34.7504 33.0194C35.8053 29.737 39.2054 28.5044 42.2629 30.1145C44.7167 31.4037 46.4116 33.412 47.6138 35.859C49.9729 40.631 50.3766 45.6427 49.3746 50.8116C49.2652 51.3738 49.1378 51.9311 48.964 52.7468L48.9737 52.7533ZM45.9075 52.1334C46.1818 49.718 46.5648 47.7925 46.5852 45.8705C46.627 41.7305 45.6922 37.8453 42.8506 34.6423C41.8046 33.4659 40.5686 32.2253 38.8991 32.9328C37.2963 33.6145 37.3465 35.3791 37.419 36.8478C37.6801 42.124 39.7705 46.6022 43.5649 50.269C44.1481 50.8307 44.8375 51.287 45.9027 52.1301L45.9075 52.1334Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e98rdw\",\"data-framer-name\":\"Review 7 \u2022 Mobile\",layoutDependency:layoutDependency,layoutId:\"rugDzAtzG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CWe've worked with other UGC agencies and creators and none have been as professional as Creative Milkshake, we look forward to continuing our partnership for a long time.\u201D\"})}),className:\"framer-eov7jl\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"GFuhPLx8_\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:UJZa9XDlG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Laura\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Blosm Brands (Agency)\"})]}),className:\"framer-1j2vd38\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"cnsLkp4Ne\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-seceee\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"SoldClJIw\",svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M64.7611 23.0298C58.7376 15.8222 50.7739 12.8327 41.5199 13.4507C29.8907 14.2251 20.6596 19.4785 14.4104 29.4371C8.12944 39.4501 9.41455 50.7178 15.7631 58.0572C20.9168 64.017 27.6684 66.7444 35.4374 67.0626C40.6091 67.2808 45.5854 66.3177 50.2877 64.1679C58.5051 60.4167 64.7781 54.6482 67.9551 46.0417C70.9556 37.9213 70.0268 30.2064 64.7529 23.0288L64.7611 23.0298ZM26.0832 34.8824C29.3933 33.9967 32.5153 33.3541 35.488 32.3018C38.1647 31.3545 40.6953 29.9729 43.2722 28.7552C43.944 28.4386 44.46 28.1693 45.0111 28.999C48.0091 33.5064 50.1653 38.3594 51.0644 43.719C51.1228 44.0884 50.7059 44.836 50.3735 44.9323C45.5895 46.2937 41.1611 48.3484 37.1111 51.2489C36.7871 51.4794 35.902 51.3327 35.547 51.0391C34.4984 50.1604 33.5684 49.1299 32.618 48.1302C29.0246 44.3318 26.8393 39.8498 26.0796 34.8778L26.0832 34.8824ZM33.5269 53.8822C31.0533 56.353 28.7323 58.7344 26.3112 61.0161C26.0149 61.2917 25.1171 61.2141 24.6582 60.9868C20.5244 58.9364 17.4157 55.7972 15.4829 51.6294C12.6655 45.5584 13.1708 39.5107 15.864 33.5416C17.7582 33.8421 19.4726 34.2161 21.2082 34.3513C22.334 34.4362 22.7236 34.888 22.9307 35.9416C23.8638 40.756 25.7298 45.1611 29.0166 48.8801C30.4881 50.5477 31.9929 52.1819 33.5269 53.8822ZM54.5638 43.6932C54.5315 43.6518 54.4468 43.5623 54.4287 43.4726C53.2855 37.6292 51.1464 32.1998 47.786 27.2564C47.5996 26.9794 47.8898 26.0788 48.2326 25.7965C50.4238 23.9609 52.6592 22.1724 54.9592 20.4669C55.3855 20.1491 56.2912 20.0278 56.7327 20.2613C63.9624 24.105 68.1635 34.4091 65.7062 42.2095C65.5894 42.5822 65.0562 43.0575 64.691 43.0831C61.3676 43.3346 58.0425 43.4984 54.572 43.6943L54.5638 43.6932ZM25.472 31.2025C25.373 30.4202 25.2726 29.7502 25.2014 29.0796C25.0278 27.4516 25.0299 25.7828 24.6376 24.2068C24.4175 23.3264 24.5705 22.8957 25.2335 22.5489C27.9326 21.1174 30.5731 19.5537 33.3734 18.347C36.2224 17.1171 36.2989 17.2722 38.2194 19.6862C39.6778 21.527 41.1086 23.3893 42.6897 25.4159C36.9699 28.3225 31.7103 30.9738 25.4684 31.1979L25.472 31.2025ZM38.799 54.0961C42.9796 51.116 47.2348 49.0483 52.4295 47.9C52.8322 51.3128 53.3182 54.4903 53.5474 57.6902C53.6636 59.3112 51.0132 61.09 49.4619 60.5072C45.6154 59.0625 42.1895 56.8747 38.7944 54.0997L38.799 54.0961ZM29.7485 62.9431C29.991 62.3611 30.0604 61.8328 30.3587 61.5408C32.0209 59.9105 33.7103 58.296 35.4824 56.7875C35.7664 56.5437 36.6423 56.6976 37.0633 56.9619C39.2055 58.321 41.2854 59.7807 43.4006 61.1907C43.9816 61.5746 44.599 61.9005 45.5467 62.4504C40.0591 64.0496 35.03 64.2611 29.7531 62.9395L29.7485 62.9431ZM39.9751 16.827C44.5201 16.356 48.4198 16.7292 52.5856 18.2509C50.2274 20.0908 48.2142 21.6985 46.1434 23.2326C45.8911 23.4221 45.1291 23.3571 44.9448 23.1304C43.3371 21.1838 41.8042 19.1715 39.9751 16.827ZM57.0818 56.0663C56.4817 52.9038 55.9523 50.0789 55.3738 47.0107C58.3651 46.7515 61.1756 46.5075 64.3478 46.2332C62.5965 50.304 60.2006 53.2922 57.0854 56.0709L57.0818 56.0663ZM21.1304 25.9132C21.2812 25.9734 21.4365 26.03 21.5872 26.0903C21.7598 27.7265 21.9288 29.3582 22.131 31.2603C20.4894 30.9702 19.1364 30.7366 17.4046 30.4353C18.829 28.7091 19.9802 27.307 21.1304 25.9132Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-64ilrg\",\"data-framer-name\":\"Vector 548\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:79,intrinsicWidth:287,layoutDependency:layoutDependency,layoutId:\"JQanjbETx\",svg:'<svg width=\"287\" height=\"79\" viewBox=\"-2 -2 287 79\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M259.411 53.0907C224.841 65.2759 131.889 83.2056 36.6319 57.4425C-82.4395 25.2387 122.414 -20.8911 236.364 10.4424C313.158 31.5587 278.355 62.562 243.786 74.167\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h8mbgr\",\"data-framer-name\":\"Review 8 \u2022 Mobile\",layoutDependency:layoutDependency,layoutId:\"t946t75v9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\\\"What I love most is that it's a hands-off approach for us. Everything is taken care of, and I'm part of the entire process. They take the least amount of my time but produce great content every time.\\\"\"})}),className:\"framer-owe9u\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"EBZGGjEur\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:VoQKRkC6J,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Nino Levicar\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Marketing Manager, Jimmy Joy\"})]}),className:\"framer-qyom2w\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"ej11GyMQM\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ukvz7j\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:75,intrinsicWidth:53,layoutDependency:layoutDependency,layoutId:\"unzJLs_PF\",svg:'<svg width=\"53\" height=\"75\" viewBox=\"0 0 53 75\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M45.2999 40.8659C44.8349 41.2952 44.4491 41.7556 43.9664 42.073C40.0303 44.6554 36.6977 47.7728 34.8511 52.2313C34.7062 52.5825 34.5963 52.9504 34.4628 53.3086C34.1822 54.0651 33.965 54.9224 32.8663 54.7408C32.0844 54.6098 31.29 53.4353 31.3397 52.5743C31.4147 51.3564 31.5764 50.1366 31.5432 48.9199C31.4518 45.4789 30.3001 42.4263 28.0651 39.7873C26.5473 37.9986 26.7455 37.2622 28.5264 35.7599C31.9877 32.8359 35.0859 29.5916 36.9904 25.371C37.1759 24.9555 37.7401 24.4322 38.1081 24.4471C38.5487 24.4656 39.068 24.9339 39.3675 25.3434C39.6671 25.7529 39.7931 26.3171 39.8997 26.8338C40.8042 31.3672 42.1979 35.7057 44.8351 39.5722C45.0552 39.8945 45.1121 40.3264 45.2999 40.8659ZM42.1131 40.4107C40.5811 36.5459 39.1297 32.8766 37.77 29.4484C35.2614 32.2097 32.5891 35.1583 29.8199 38.21C32.2798 40.9608 33.5885 44.442 33.9654 48.6565C36.2447 45.0266 39.1574 42.5388 42.1141 40.4066L42.1131 40.4107Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M2.99719 53.8841C3.47226 53.2973 3.69852 52.7789 4.08965 52.5788C7.49762 50.8345 10.0328 48.0706 12.6514 45.3948C13.1126 44.9257 13.8308 44.39 14.4074 44.418C15.3122 44.4647 15.4915 45.3822 15.6722 46.218C16.3574 49.3843 17.9915 52.0071 20.3822 54.1721C20.9764 54.7093 21.6372 55.2012 22.1259 55.8223C22.4061 56.1842 22.5919 56.8269 22.4695 57.2308C22.3728 57.5413 21.7275 57.7006 21.3159 57.896C21.0215 58.0318 20.6201 58.0309 20.412 58.2425C18.2005 60.4585 15.9809 62.6725 13.8476 64.9624C13.1891 65.6716 12.8273 66.6513 12.2506 67.4568C11.9895 67.8248 11.5517 68.2862 11.1813 68.301C10.8149 68.3168 10.2547 67.8953 10.0878 67.529C9.72391 66.7204 9.40651 65.8405 9.32517 64.9669C9.07713 62.2501 8.50876 59.6503 6.68088 57.536C5.92232 56.659 4.87691 56.0361 4.01378 55.2389C3.61811 54.8722 3.34834 54.3702 2.99214 53.8873L2.99719 53.8841ZM6.6615 54.1201C9.64328 56.571 11.0825 59.8964 11.6106 63.7135C14.1516 61.1323 16.5735 58.6751 19.0534 56.1533C16.4671 53.8617 14.6672 51.1708 13.6931 47.9645C11.2753 50.0815 9.03611 52.0407 6.6615 54.1201Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M14.8664 14.9285C15.2143 14.4638 15.4077 14.1841 15.622 13.9264C17.0974 12.1729 18.6774 10.4909 20.0232 8.64311C20.9032 7.43613 21.3862 5.94421 22.1717 4.65951C22.5847 3.98509 23.1789 3.33041 23.8479 2.93463C24.5613 2.51445 25.2368 2.97953 25.4274 3.75283C26.2756 7.24567 28.4421 9.88199 30.8491 12.3918C31.5087 13.0778 32.1237 13.8271 32.6416 14.6232C33.4148 15.8145 32.9243 16.942 31.58 17.3261C31.2561 17.4207 30.9292 17.5663 30.6596 17.7639C27.7234 19.9008 25.1794 22.382 23.4647 25.657C23.1032 26.3519 22.3771 26.903 21.72 27.3792C21.1032 27.8301 20.295 27.4168 20.1524 26.6415C20.0798 26.2406 20.1402 25.8053 20.2124 25.3942C20.6252 23.0744 20.1505 20.9537 18.6386 19.1577C17.7822 18.1418 16.717 17.3028 15.8014 16.3381C15.4151 15.9304 15.1702 15.3952 14.8664 14.9285ZM29.8702 15.092C27.9072 12.5669 25.8571 9.93122 23.9213 7.43823C22.0514 9.8228 20.0362 12.3901 17.9533 15.0457C20.1884 16.9462 21.995 19.1722 22.564 21.9968C25.0024 19.6944 27.4349 17.3994 29.8743 15.0929L29.8702 15.092Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gkbxhp\",\"data-framer-name\":\"Layer 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:85,intrinsicWidth:75,layoutDependency:layoutDependency,layoutId:\"WsffIgc2o\",svg:'<svg width=\"75\" height=\"85\" viewBox=\"0 0 75 85\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M23.0449 61.3653L23.1382 61.3902L23.2212 60.9586C23.5113 59.4506 23.5337 57.9306 23.2753 56.4115C23.0148 54.8807 22.4192 53.5106 21.746 52.1923C21.0383 50.8033 20.3793 49.4566 19.901 48.0015C19.417 46.5289 19.0417 45.1074 18.7201 43.6341C18.0982 40.7716 17.8212 37.823 18.404 34.9798L18.404 34.9798C18.9428 32.349 20.1038 29.8755 21.7174 27.7213L21.7175 27.7212C24.9606 23.3877 29.9968 20.7293 35.3429 19.9921L35.343 19.9921C38.0388 19.6199 40.8274 19.7074 43.4821 20.2833L43.4825 20.2833C44.9587 20.6022 46.3847 21.08 47.6715 21.8241C48.9264 22.5498 50.0387 23.6034 51.1652 24.6705L51.2443 24.7455C52.3861 25.8268 53.5419 27.0051 54.3443 28.3708L54.3446 28.3711C55.0491 29.5672 55.5259 30.884 55.8135 32.2507L55.8136 32.2512C56.4021 35.0307 56.1646 37.9599 55.4044 40.7124L55.4042 40.7134C55.317 41.0323 55.3727 41.3331 55.5346 41.5707C55.6899 41.7989 55.9256 41.9446 56.167 42.0093C56.4084 42.074 56.6851 42.0655 56.9339 41.9469C57.1925 41.8235 57.3933 41.5934 57.4806 41.2751C57.4806 41.2748 57.4807 41.2745 57.4808 41.2742L57.0862 41.1663M23.0449 61.3653L22.4692 24.2376C26.6255 20.2094 32.3575 18.1441 38.0987 18.036C41.0846 17.9806 44.1856 18.3884 46.9529 19.5438M23.0449 61.3653C22.9572 61.4917 22.8424 61.5924 22.7064 61.6625C22.4583 61.7903 22.1794 61.7965 21.9395 61.7313C21.466 61.6028 20.992 61.1364 21.1216 60.4573L21.1217 60.4569C21.4452 58.7714 21.3267 57.0012 20.8019 55.3981C20.5393 54.596 20.1699 53.8311 19.7719 53.0525C19.6969 52.9059 19.6208 52.7584 19.5442 52.6101C19.2182 51.979 18.8841 51.3321 18.6003 50.6665L18.6002 50.6662C17.2113 47.4016 16.3222 43.7574 16.0108 40.2304C15.4706 34.1285 17.8058 28.1918 22.1844 23.944L22.1845 23.9439C26.4254 19.8336 32.2614 17.7367 38.091 17.6269L38.0911 17.6269C41.1159 17.5708 44.2765 17.983 47.1102 19.1661M23.0449 61.3653L47.1102 19.1661M57.0862 41.1663C58.5321 35.9243 58.1221 29.9367 54.5198 25.6324C53.4571 24.3634 52.2102 23.2153 50.9721 22.1201C49.7341 21.0249 48.4511 20.166 46.9529 19.5438M57.0862 41.1663C56.86 41.9933 55.5726 41.6484 55.7988 40.8213M57.0862 41.1663L55.7988 40.8213M46.9529 19.5438L47.1105 19.1662C47.1104 19.1662 47.1103 19.1661 47.1102 19.1661M46.9529 19.5438L47.1098 19.1659C47.1099 19.166 47.11 19.166 47.1102 19.1661M55.7988 40.8213C56.5723 38.0207 56.8188 35.0237 56.2138 32.1665C55.9185 30.7628 55.4273 29.4032 54.6971 28.1635L55.7988 40.8213Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M46.4025 55.6197L46.1273 55.317C46.0924 55.3487 46.0574 55.3805 46.0224 55.4123C44.6637 56.6474 43.2518 57.9308 42.1805 59.5149C41.5621 60.4279 41.0833 61.4211 40.6539 62.4174C40.4594 62.8687 40.2802 63.3076 40.1031 63.7411C39.879 64.2899 39.6583 64.8303 39.4146 65.3764L39.4145 65.3766C39.1365 66.0005 39.4751 66.5697 39.8943 66.8172C40.1072 66.943 40.3783 67.0124 40.6516 66.9509C40.9404 66.886 41.1756 66.6871 41.3099 66.3857C41.5652 65.8144 41.8005 65.2447 42.0333 64.6806C42.521 63.4993 42.9984 62.3429 43.6289 61.2501C44.5357 59.6784 46.0219 58.3215 47.4756 56.9961C50.5014 54.2426 53.1008 51.1318 55.0295 47.4843L55.0296 47.4841C56.1263 45.4073 56.9977 43.215 57.6356 40.956L57.6359 40.9548C57.7248 40.6363 57.6705 40.3351 57.509 40.0968C57.3541 39.8681 57.1183 39.7224 56.8769 39.6577C56.6355 39.593 56.3589 39.6015 56.11 39.7195C55.9664 39.7876 55.8404 39.8885 55.7414 40.0192L55.6657 39.9989L55.5563 40.388C54.4781 44.2258 52.6632 47.8474 50.2137 50.9938L50.2134 50.9942C48.9971 52.5603 47.6036 53.9674 46.1265 55.3177L46.4025 55.6197ZM46.4025 55.6197C47.8888 54.261 49.3007 52.8365 50.5365 51.2452L39.7882 65.5431C40.031 64.999 40.2588 64.4417 40.4874 63.8826C41.0715 62.4534 41.6608 61.0116 42.5195 59.7441C43.5628 58.2013 44.9428 56.9467 46.3118 55.7021C46.3421 55.6746 46.3723 55.6472 46.4025 55.6197Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M22.1506 62.1676L22.1569 62.144C24.5371 63.9843 27.5425 64.7307 30.314 65.3878L30.3145 65.388C33.61 66.1645 36.9644 66.6839 40.3331 66.9573L40.3337 66.9574C40.6634 66.9837 40.9506 66.8725 41.1482 66.6545C41.336 66.4474 41.4123 66.1786 41.4099 65.9302C41.4051 65.4401 41.0752 64.8644 40.3886 64.8096C37.2444 64.5522 34.1247 64.0682 31.053 63.3548L31.0528 63.3547C31.0013 63.3428 30.9497 63.3309 30.8981 63.3189C28.1242 62.6766 25.2225 62.0047 23.1401 60.1831L23.14 60.1831C22.6178 59.7264 21.9753 59.8996 21.6251 60.2458C21.448 60.4209 21.3136 60.6656 21.2997 60.9444C21.2851 61.2373 21.4066 61.5201 21.6564 61.7375L22.1506 62.1676Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M21.4836 63.0942L21.869 63.2313C21.8588 63.26 21.8517 63.317 21.8991 63.4269C21.9474 63.539 22.0383 63.6707 22.1663 63.8136C22.4219 64.099 22.7596 64.358 22.9731 64.5156L22.9742 64.5165C24.3102 65.5104 25.9312 66.0342 27.5864 66.5691C27.67 66.5961 27.7538 66.6232 27.8376 66.6504L27.8378 66.6504C29.7045 67.2562 31.5778 67.8263 33.4771 68.2487C35.3763 68.6711 37.3139 68.9494 39.2419 68.9302C39.5859 68.9262 39.8011 68.8687 39.9088 68.7883C39.9521 68.756 39.9791 68.7194 39.9955 68.6666C40.0137 68.6079 40.0252 68.5063 39.9932 68.3401L39.9931 68.3397C39.9433 68.0798 39.7759 67.85 39.5075 67.6264C39.2642 67.4236 38.9767 67.2563 38.6858 67.0871C38.651 67.0669 38.6162 67.0466 38.5815 67.0263L38.5814 67.0262C38.2957 66.8591 38.1256 66.6047 38.075 66.3218C38.0264 66.0502 38.0922 65.781 38.2189 65.5656C38.3455 65.3501 38.5488 65.1616 38.8099 65.0721C39.0817 64.979 39.3864 65.0042 39.6711 65.1724C40.6598 65.7518 41.8663 66.5638 42.1129 67.9887L42.1131 67.9895C42.3264 69.2362 41.7283 70.5727 40.3928 70.9528C39.7857 71.1256 39.1258 71.1483 38.4966 71.1188C38.0314 71.097 37.5597 71.0449 37.1281 70.9973C36.9792 70.9808 36.8351 70.9649 36.6976 70.951L36.6962 70.9508C35.4362 70.8182 34.1882 70.6095 32.9544 70.3347L32.9542 70.3347C30.4633 69.7786 28.0156 69.0112 25.6233 68.1765L25.6228 68.1763C24.5008 67.783 23.3474 67.324 22.3088 66.6629C21.4523 66.1177 20.4657 65.3734 19.9821 64.3241L19.9815 64.3229C19.7522 63.8213 19.6776 63.3275 19.7712 62.8465C19.8641 62.3691 20.1152 61.9423 20.4722 61.558C20.7389 61.2704 21.0873 60.9664 21.481 60.7371C21.8722 60.5092 22.3373 60.3382 22.8257 60.3629L23.3312 60.3886L23.3023 60.4962C23.676 60.6994 23.8591 61.1059 23.8621 61.4696C23.8641 61.719 23.7865 61.9866 23.6018 62.1947C23.4084 62.4127 23.1256 62.5326 22.7951 62.5166L22.8148 62.108M21.4836 63.0942C21.6306 62.6829 22.369 62.0897 22.8148 62.108M21.4836 63.0942L21.8688 63.2319C21.9029 63.1365 22.0502 62.9446 22.2853 62.7652C22.3945 62.6819 22.5058 62.6146 22.6051 62.5706C22.7099 62.5242 22.774 62.5158 22.7981 62.5168L22.8148 62.108M21.4836 63.0942C21.2596 63.7241 22.3 64.5272 22.73 64.8448C24.122 65.8803 25.8031 66.4232 27.4412 66.9522C27.5315 66.9813 27.6216 67.0105 27.7115 67.0396C29.5817 67.6465 31.4697 68.2214 33.3883 68.6481C35.3068 69.0747 37.2772 69.359 39.2464 69.3393C39.9707 69.331 40.5584 69.1114 40.3949 68.2627C40.2535 67.5248 39.5012 67.0876 38.892 66.7337C38.8568 66.7132 38.8221 66.693 38.788 66.6731C38.0485 66.2404 38.7252 65.088 39.4636 65.525C40.4613 66.1097 41.4986 66.8383 41.7098 68.0585C41.8962 69.1479 41.3712 70.249 40.2808 70.5593C39.3331 70.8291 38.1925 70.7031 37.1841 70.5918C37.0323 70.575 36.8836 70.5586 36.739 70.5439C35.4955 70.4131 34.2629 70.207 33.0433 69.9354C30.5741 69.3841 28.1429 68.6223 25.7581 67.7902C24.644 67.3996 23.5264 66.953 22.5285 66.3177C21.6798 65.7775 20.7841 65.0868 20.3536 64.1528C19.9535 63.2775 20.1321 62.5251 20.7719 61.8365C21.1702 61.4068 21.757 60.9491 22.3708 60.8113L22.4086 60.67L22.4098 60.6657L22.8041 60.7713L22.8148 62.108\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M20.9989 63.4161C21.542 63.4451 21.9088 63.8633 22.0219 64.2736C22.0875 64.5117 22.0841 64.792 21.9522 65.0398C21.8125 65.3023 21.5563 65.4752 21.2292 65.5225L21.2289 65.5226C21.113 65.5393 20.9299 65.634 20.7353 65.8128C20.5462 65.9865 20.4048 66.1862 20.3463 66.3294C20.3037 66.4339 20.3214 66.5819 20.5608 66.8082C20.7889 67.0239 21.1184 67.203 21.3559 67.2995L21.3574 67.3001C22.5364 67.7847 23.7673 68.1665 25.0056 68.5505C25.5727 68.7263 26.1414 68.9027 26.7073 69.0896C27.038 69.1988 27.3658 69.3095 27.6919 69.4196C29.1308 69.9053 30.5385 70.3805 32.0252 70.6757C33.8697 71.042 35.7425 71.3288 37.6115 71.5773L37.6122 71.5774C37.7862 71.6008 37.9662 71.6299 38.1432 71.6584C38.1659 71.6621 38.1886 71.6657 38.2111 71.6694C38.4124 71.7018 38.611 71.733 38.8083 71.7572C39.2057 71.8059 39.5735 71.8227 39.9016 71.7694L39.9018 71.7693C40.0352 71.7477 40.0746 71.7051 40.0884 71.6871C40.1085 71.6608 40.1338 71.6051 40.1375 71.4912C40.1456 71.246 40.0529 70.9322 39.956 70.6214L40.3466 70.4996M20.9989 63.4161L20.8204 63.8326C21.6587 63.7077 22.0175 64.995 21.1706 65.1176C20.7017 65.1852 20.1416 65.748 19.9674 66.175C19.6853 66.8675 20.671 67.4627 21.2018 67.6786C22.398 68.1702 23.6583 68.5611 24.9057 68.948C25.4685 69.1226 26.0286 69.2963 26.579 69.4781C26.9039 69.5854 27.2279 69.6948 27.5517 69.8042C28.9921 70.2905 30.4303 70.7762 31.9456 71.077C33.8015 71.4456 35.6835 71.7337 37.5576 71.9829C37.726 72.0056 37.9003 72.0337 38.0781 72.0624C38.702 72.163 39.3684 72.2705 39.9672 72.1732C40.823 72.0346 40.5297 71.0867 40.3466 70.4996M20.9989 63.4161L20.9705 63.3837L20.7508 63.4157C20.3266 63.4776 19.9479 63.6909 19.6362 63.9337C19.3219 64.1785 19.0506 64.473 18.8391 64.7352M20.9989 63.4161L20.8098 63.8206C20.1541 63.9162 19.557 64.4967 19.1575 64.9922M40.3466 70.4996L39.9565 70.6229C39.8567 70.307 39.901 70.0033 40.0601 69.7603C40.2122 69.528 40.4485 69.3813 40.6894 69.3158C41.1669 69.1861 41.8133 69.3568 42.0222 70.0276M40.3466 70.4996C40.0878 69.6806 41.3771 69.3316 41.6317 70.1494M42.0222 70.0276C42.0223 70.0277 42.0223 70.0278 42.0223 70.0278L41.6317 70.1494M42.0222 70.0276C42.0222 70.0275 42.0222 70.0274 42.0222 70.0274L41.6317 70.1494M42.0222 70.0276C42.1874 70.5561 42.3199 71.1811 42.2653 71.7858C42.2095 72.4051 41.9547 73.0139 41.346 73.4505L41.3452 73.4511C40.8412 73.8108 40.2703 73.9175 39.7321 73.9284C39.295 73.9373 38.8455 73.8823 38.4516 73.834C38.3692 73.8239 38.2892 73.8141 38.2123 73.8053L38.2109 73.8051C35.8379 73.5243 33.4626 73.1843 31.0843 72.6675C29.2919 72.2781 27.532 71.6666 25.8097 71.0682C25.2371 70.8692 24.6686 70.6717 24.1044 70.4843L24.104 70.4841C23.7609 70.3697 23.4102 70.2579 23.0563 70.145C22.2749 69.8958 21.4776 69.6414 20.7099 69.343M41.6317 70.1494C41.9487 71.1634 42.0925 72.4116 41.1076 73.1181C40.3563 73.6543 39.3834 73.5355 38.5111 73.429C38.426 73.4186 38.3419 73.4084 38.259 73.3988C35.8919 73.1187 33.5312 72.7805 31.1712 72.2677C29.4051 71.884 27.6788 71.2842 25.9625 70.688C25.3854 70.4875 24.8094 70.2874 24.2334 70.096C23.8793 69.9779 23.5226 69.8641 23.1656 69.7503C22.3905 69.5031 21.6138 69.2554 20.858 68.9616M20.7099 69.343L20.858 68.9616M20.7099 69.343C20.7099 69.343 20.7098 69.3429 20.7098 69.3429L20.858 68.9616M20.7099 69.343C19.7524 68.9711 18.7798 68.365 18.3515 67.2571M20.858 68.9616C19.9416 68.6057 19.0995 68.0581 18.7329 67.109M18.7329 67.109L18.3518 67.2578C18.3517 67.2576 18.3516 67.2574 18.3515 67.2571M18.7329 67.109C18.4219 66.3128 18.6414 65.6311 19.1575 64.9922M18.7329 67.109L18.3512 67.2564C18.3513 67.2567 18.3514 67.2569 18.3515 67.2571M18.3515 67.2571C18.168 66.787 18.1364 66.334 18.2363 65.8999C18.3349 65.4717 18.5556 65.0863 18.8391 64.7352M19.1575 64.9922L18.839 64.7353C18.8391 64.7353 18.8391 64.7353 18.8391 64.7352M19.1575 64.9922L18.8393 64.7351C18.8392 64.7351 18.8392 64.7352 18.8391 64.7352\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M38.7772 74.7554L38.7796 74.753C38.8089 74.7244 38.8537 74.6364 38.832 74.405C38.8144 74.217 38.7626 74.0238 38.7134 73.8403C38.7056 73.8112 38.6979 73.7823 38.6904 73.7537C38.6045 73.4349 38.6614 73.1348 38.8228 72.8978C38.9781 72.6698 39.2133 72.5233 39.4545 72.4579C39.6955 72.3924 39.9725 72.3996 40.2216 72.5183C40.481 72.6418 40.6809 72.8732 40.766 73.1926C40.9018 73.7008 41.0031 74.3006 40.9373 74.8798C40.8704 75.4694 40.6268 76.0542 40.0639 76.4763C39.5458 76.8654 38.9476 76.9603 38.3917 76.9538C37.9769 76.9489 37.5443 76.8848 37.1656 76.8286C37.0494 76.8114 36.9383 76.7949 36.8344 76.7812C32.4368 76.2042 28.0957 75.2076 23.8891 73.7936C22.8574 73.4477 21.8327 73.076 20.8149 72.6784C20.8149 72.6784 20.8148 72.6783 20.8148 72.6783L38.7772 74.7554ZM38.7772 74.7554C38.7611 74.7714 38.712 74.8027 38.5712 74.8095C38.4599 74.8149 38.3491 74.8041 38.2213 74.7917C38.1846 74.7882 38.1464 74.7845 38.1065 74.781C37.1936 74.7005 36.2778 74.5528 35.3541 74.4039C35.2866 74.393 35.2191 74.3821 35.1515 74.3713C33.0576 74.0297 30.985 73.5931 28.9347 73.0575C26.884 72.5217 24.9272 71.9105 22.9696 71.1986C22.4584 71.011 21.9566 70.8264 21.4592 70.6295L21.4579 70.629M38.7772 74.7554L21.4579 70.629M21.4579 70.629C21.391 70.6028 21.3265 70.5787 21.2636 70.5553C21.1267 70.5042 20.997 70.4559 20.8654 70.3935C20.6778 70.3044 20.5614 70.2185 20.5015 70.1357M21.4579 70.629L21.3086 71.0099C21.2549 70.9888 21.1978 70.9676 21.1388 70.9455C20.7909 70.8158 20.3746 70.6605 20.1684 70.3732M20.1684 70.3732L20.5025 70.1371C20.5022 70.1366 20.5019 70.1362 20.5015 70.1357M20.1684 70.3732L20.5008 70.1347C20.501 70.135 20.5013 70.1354 20.5015 70.1357M20.1684 70.3732L20.5015 70.1357M20.5015 70.1357C20.3968 69.9871 20.3832 69.8908 20.3856 69.8442C20.3877 69.8021 20.4044 69.7607 20.452 69.7165C20.5629 69.6134 20.8158 69.5321 21.1061 69.5942C21.7884 69.7427 22.2589 69.2705 22.3873 68.7942C22.4523 68.5536 22.445 68.2755 22.3202 68.0273C22.1896 67.7674 21.9482 67.578 21.6249 67.5073L21.2434 67.4239L21.2365 67.4497C20.4169 67.3657 19.551 67.5721 18.9028 68.1771C18.0984 68.9279 18.14 69.9852 18.4603 70.8176L20.5015 70.1357Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M25.0261 76.3554C25.1584 76.643 25.3826 76.882 25.7101 77.0498L31.0531 76.5077C31.0277 76.4997 31.0024 76.4916 30.9771 76.4833L30.9771 76.4833L30.9746 76.4825L30.1482 76.2197L30.1475 76.2195L28.4303 75.6766L28.4297 75.6764L28.4215 75.6738C28.1273 75.5813 27.8332 75.4888 27.5434 75.3975L27.5434 75.3975L27.5404 75.3966C27.4203 75.3598 27.3082 75.3254 27.1984 75.2874L27.1905 75.2846L27.1824 75.2822C27.1527 75.2733 27.126 75.2628 27.0884 75.2477C27.1033 75.1743 27.1187 75.0987 27.1342 75.0228C27.1701 74.847 27.2062 74.6699 27.2367 74.5154C27.3428 73.9895 27.0797 73.3872 26.4701 73.2239C26.1908 73.149 25.8965 73.2013 25.6618 73.3306C25.425 73.461 25.2115 73.6917 25.1471 74.0089L25.1164 74.1607L25.1212 74.169C25.1055 74.2374 25.0889 74.3064 25.0713 74.3791C25.0478 74.4765 25.0226 74.5807 24.9962 74.6992C24.9406 74.9482 24.8886 75.2258 24.8782 75.5019C24.8678 75.778 24.8978 76.0765 25.0261 76.3554ZM26.6355 75.4241L26.6329 75.425C26.6331 75.4246 26.6332 75.4241 26.6333 75.4237L26.6355 75.4241ZM26.9225 75.478C26.9225 75.4782 26.9217 75.4767 26.9199 75.4732C26.9217 75.4762 26.9225 75.4779 26.9225 75.478Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M29.3296 63.3133L29.3299 63.3134C30.7136 58.8356 32.1034 54.323 32.9813 49.683L32.9813 49.6826C33.3339 47.8096 33.6058 45.9181 33.7579 44.0142C34.9684 44.0467 36.2429 43.9156 37.4028 43.4849C38.0285 44.429 38.7842 45.2917 39.7882 45.9735C39.8544 46.0184 39.9209 46.0624 39.9878 46.1053C39.5403 46.8535 39.1264 47.6195 38.7361 48.3917C36.6319 52.5382 35.1679 57.0103 34.5802 61.6338C34.437 62.7587 34.3482 63.8885 34.3107 65.0177L34.3107 65.0182C34.3001 65.3488 34.4247 65.629 34.6432 65.8199C34.8521 66.0024 35.119 66.0799 35.3685 66.0779C35.8638 66.0738 36.438 65.7346 36.4607 65.0338C36.5838 61.319 37.3343 57.6503 38.5837 54.1427C39.4718 51.6494 40.5254 49.2185 41.8863 47.0345C43.0855 47.4606 44.3387 47.6357 45.5863 47.6324L45.5865 47.6324C46.5025 47.6295 47.6239 47.565 48.5191 46.9694C49.4219 46.3687 49.8976 45.3876 50.1018 44.4244L29.3296 63.3133ZM29.3296 63.3133C29.1202 63.9774 28.4794 64.1496 28.0028 64.0218C27.7617 63.9572 27.5251 63.8113 27.3721 63.58C27.2122 63.3382 27.1657 63.0352 27.2629 62.7189L27.263 62.7186C27.5457 61.8009 27.828 60.8842 28.1061 59.9666C29.2041 56.3316 30.2356 52.6856 30.9257 48.967M29.3296 63.3133L30.9257 48.967M41.1689 44.2959C41.5266 43.7963 41.9049 43.3101 42.3072 42.8412L42.3076 42.8407C42.9172 42.1321 43.6617 41.3378 44.5266 40.7583C45.3957 40.1759 46.4159 39.7913 47.5603 39.9549L47.5619 39.9551C48.4923 40.0919 49.4076 40.5743 49.9042 41.5159C50.3958 42.4482 50.2882 43.5532 50.1019 44.424L41.1689 44.2959ZM41.1689 44.2959C40.6893 43.9971 40.2492 43.6389 39.8634 43.2174C39.6465 42.9804 39.4401 42.7191 39.2439 42.4401C40.5369 41.4093 41.4697 39.957 41.9291 38.3839C42.1931 37.4797 42.3004 36.4455 42.0792 35.5127C41.8544 34.5646 41.2867 33.7191 40.2254 33.2629C38.2371 32.406 36.1234 33.501 35.3122 35.3558C34.4145 37.3997 35.2838 39.4598 36.1048 41.1436L36.105 41.144C36.1705 41.2779 36.2366 41.4117 36.3036 41.5453C35.6944 41.7275 35.0374 41.8137 34.3406 41.8365C34.1861 41.8416 34.0299 41.8437 33.8726 41.8425C33.8971 40.1533 33.6946 38.3526 32.5689 36.8912L32.5689 36.8912C31.9754 36.1209 31.0934 35.5059 30.1414 35.2656C29.1783 35.0224 28.1266 35.1622 27.2683 35.9356L27.2679 35.936C25.7368 37.3191 25.872 39.5886 26.9614 41.086L41.1689 44.2959ZM31.6171 43.787C29.8533 43.4393 28.0792 42.623 26.9614 41.0861L31.6171 43.787ZM31.6171 43.787C31.4845 45.5238 31.2442 47.2488 30.9257 48.967M31.6171 43.787L30.9257 48.967M31.1465 38.6139C31.6396 39.4943 31.7495 40.5269 31.7362 41.6007C30.9675 41.4196 30.2321 41.1257 29.5954 40.6824L29.5953 40.6823C29.1019 40.339 28.6503 39.8359 28.4206 39.2969C28.1963 38.7705 28.1895 38.235 28.5244 37.7407L28.5245 37.7405C28.7128 37.4623 28.9167 37.3427 29.1101 37.3006C29.3133 37.2564 29.5532 37.2877 29.8174 37.3988C30.3563 37.6254 30.8805 38.1367 31.1461 38.6132L31.1465 38.6139ZM48.0888 43.0793C48.1526 43.6792 47.966 44.3871 47.6682 44.8353L47.6678 44.8359C47.3473 45.3151 46.7555 45.4331 46.004 45.464C45.2278 45.4957 44.4528 45.4459 43.703 45.2888C43.5274 45.2517 43.3534 45.2096 43.1813 45.1623C43.363 44.9262 43.5495 44.6941 43.741 44.4665C43.7565 44.4481 43.7721 44.4296 43.7878 44.4109C44.2329 43.882 44.7588 43.257 45.3539 42.7757C45.9734 42.2747 46.6 41.9855 47.2252 42.0618C47.5181 42.0976 47.7063 42.2179 47.834 42.377C47.9687 42.545 48.0575 42.7842 48.0888 43.0793ZM38.4032 40.2942C38.3207 40.3785 38.2365 40.4585 38.1505 40.5346C37.8991 40.0118 37.6722 39.4789 37.4681 38.9639L37.468 38.9636C37.2141 38.3241 37.0508 37.6044 37.0984 36.9522C37.1451 36.3123 37.391 35.7536 37.9481 35.3634C38.3915 35.0534 39.0081 35.012 39.4762 35.2681C39.8854 35.4919 40.0764 36.0043 40.061 36.6258L40.061 36.6269C40.032 37.9429 39.3408 39.3357 38.4032 40.2942Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M19.2115 22.0133L19.4976 22.3058C19.9768 21.837 19.8426 21.2023 19.5358 20.817C19.5357 20.8168 19.5356 20.8167 19.5355 20.8166L16.1498 16.548L16.1498 16.548L16.1492 16.5472C15.937 16.2809 15.6222 16.1907 15.3529 16.1978C15.0862 16.2048 14.8026 16.3067 14.5998 16.5074L14.8875 16.7982L14.6014 16.5058C14.1222 16.9745 14.2564 17.6093 14.5633 17.9946C14.5634 17.9947 14.5635 17.9949 14.5636 17.995L17.9492 22.2636L17.9498 22.2644C18.1621 22.5307 18.4769 22.6209 18.7462 22.6138C19.0129 22.6068 19.2964 22.5049 19.4993 22.3042L19.2115 22.0133ZM19.2115 22.0133C19.492 21.739 19.4393 21.3523 19.2155 21.0716L18.2698 22.0093C18.4935 22.2901 18.9737 22.2486 19.2115 22.0133Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M31.4973 13.2286C31.6045 13.5838 31.3777 13.9324 31.0299 14.0461C30.6821 14.1599 30.3167 13.9102 30.2123 13.5787C29.7795 12.1737 29.4981 10.726 29.3613 9.26119L28.9721 9.48587M31.4973 13.2286L29.6843 8.12985L29.1192 8.45609L29.1137 8.45923L29.3168 8.81092L29.0228 8.83241L28.9157 8.84023C28.9315 9.05575 28.9502 9.27099 28.9721 9.48587M31.4973 13.2286C31.0447 11.7597 30.7654 10.2959 30.6547 8.80371L31.4973 13.2286ZM28.9721 9.48587C29.1174 10.9139 29.3983 12.326 29.8213 13.6992L29.8213 13.6992L29.8221 13.7015C29.9779 14.1967 30.543 14.6359 31.1571 14.435C31.6744 14.2658 32.0724 13.7182 31.889 13.1104L31.889 13.1104L31.8883 13.1081C31.4444 11.6676 31.1711 10.2341 31.0627 8.77345L31.0627 8.77261C31.0249 8.27633 30.6263 7.69932 29.9616 7.73178L29.9616 7.73177L29.9588 7.73193C29.4625 7.75966 28.8675 8.17308 28.91 8.8396L28.952 9.4975L28.9721 9.48587Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M44.8071 13.8181C44.7054 14.1634 44.33 14.3802 43.991 14.2893C43.652 14.1985 43.4181 13.8185 43.5198 13.4732L45.1996 13.9337L45.1991 13.9353L44.8071 13.8181ZM44.8071 13.8181L44.8076 13.8164C45.2939 12.1904 45.7802 10.5644 46.2621 8.93731L44.8071 13.8181ZM43.1275 13.357L43.1273 13.3576L44.9748 8.59237L44.5828 8.47515L44.5823 8.47676L44.5822 8.4771C44.096 10.1029 43.6096 11.7293 43.1275 13.357Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M55.627 19.9833L55.627 19.9833L55.6257 19.9845C55.1779 20.4031 55.2179 21.1142 55.6094 21.5121L55.6105 21.5132C56.0403 21.9469 56.7109 21.9126 57.1222 21.5281L56.8429 21.2292L57.1208 21.5295C58.5108 20.243 59.9992 19.0793 61.5868 18.0516L61.5874 18.0513C62.0431 17.7552 62.2724 17.1305 61.9626 16.5939C61.8169 16.3416 61.5715 16.1712 61.3135 16.0976C61.0539 16.0236 60.7433 16.0379 60.4761 16.2113C58.7534 17.327 57.1308 18.5904 55.627 19.9833Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M62.2555 34.8993C61.756 34.9583 61.2191 34.6913 61.0644 34.1213C61.0644 34.1212 61.0644 34.1211 61.0644 34.121L61.4593 34.014L62.2555 34.8993ZM62.2555 34.8993L62.2696 34.903L62.3651 34.883L66.3996 34.0371L66.3999 34.037L68.3576 33.6283C68.3576 33.6283 68.3577 33.6283 68.3578 33.6283C68.7031 33.5565 69.1066 33.4444 69.4337 33.2144C69.7835 32.9684 70.0333 32.5954 70.0575 32.0647L69.6488 32.0461M62.2555 34.8993L66.3159 33.6366L68.2744 33.2277C68.9416 33.0892 69.613 32.8321 69.6488 32.0461M69.6488 32.0461C69.6667 31.6875 69.3248 31.3844 68.9757 31.3828C68.841 31.3828 68.7204 31.4224 68.6201 31.4898C68.5459 31.4386 68.4635 31.4176 68.3903 31.4164C68.3138 31.4151 68.2496 31.4337 68.1983 31.4588C68.1543 31.4633 68.1133 31.4709 68.0777 31.4788M69.6488 32.0461L70.0574 32.0665C70.0734 31.7467 69.9281 31.471 69.732 31.2843C69.5373 31.0989 69.2667 30.975 68.9775 30.9737L68.9775 30.9737L68.9756 30.9737C68.5716 30.9738 68.2588 31.1857 68.0777 31.4788M68.0777 31.4788C68.0481 31.4854 68.0222 31.4923 68.0013 31.498C67.952 31.5115 67.9217 31.5207 67.8982 31.5278C67.8733 31.5353 67.8562 31.5405 67.8325 31.5459\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5wakrd\",\"data-framer-name\":\"Vector 515\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:280,layoutDependency:layoutDependency,layoutId:\"C6Wsjj2a9\",svg:'<svg width=\"280\" height=\"18\" viewBox=\"-2 -2 280 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.757812 0.933838C87.3677 0.933838 263.449 0.933838 274.897 0.933838C289.207 0.933838 140.087 7.14619 103.183 13.3586\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gllwfn\",\"data-framer-name\":\"Review 9 \u2022 Tablet\",layoutDependency:layoutDependency,layoutId:\"mnvkJMToz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:'\"Creative Milkshake brought \\u2028\\u2028a professional touch to our ideation and editing processes, enhancing the overall quality of our campaigns.\"'})}),className:\"framer-j2ryjx\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"cU2pZC6vr\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zJpir2ivT,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Clarence von Rosen\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Co-founder, Napper\"})]}),className:\"framer-101hpma\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"Lvdpt9Ufk\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-agtgw9\",\"data-framer-name\":\"Vector 516\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:287,layoutDependency:layoutDependency,layoutId:\"gHfp2giSR\",svg:'<svg width=\"287\" height=\"22\" viewBox=\"-2 -2 287 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.177734 1.75659C89.0176 1.45773 269.633 0.850123 281.375 0.81062C296.053 0.761242 41.6905 10.3067 138.282 17.3058\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})],snapObject:{fluid:false,snap:false,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-i91eyp-container\",\"data-framer-name\":\"Tablet\",layoutDependency:layoutDependency,layoutId:\"ojmAw9VDc-container\",name:\"Tablet\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"Testimomials\",arrowObject:{arrowFill:\"rgb(221, 212, 246)\",arrowPadding:0,arrowRadius:28,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:320,type:\"spring\"},fadeWidth:0},gap:40,height:\"100%\",id:\"ojmAw9VDc\",layoutId:\"ojmAw9VDc\",name:\"Tablet\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ogyg62\",\"data-framer-name\":\"Review 2 \u2022 Tablet\",layoutDependency:layoutDependency,layoutId:\"JDSoc9nhf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CThe ad performance was outstanding, ranking among the top performers. They delivered exceptional results, they were fast, professional, and delivered on time.\u201D\"})}),className:\"framer-4uzsce\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"Jg49kHQyq\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:bTbZqKaVi,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Farah Al-Eryani\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Paid Social Manager, Dr. Smile\"})]}),className:\"framer-vqu9qk\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"ZWM41dcSe\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1x76spt\",\"data-framer-name\":\"Vector 514\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:165,layoutDependency:layoutDependency,layoutId:\"QBkdzCK_h\",svg:'<svg width=\"165\" height=\"25\" viewBox=\"-3 -3 165 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0644531 0.732422C49.9021 0.732422 151.224 0.732422 157.811 0.732422C166.046 0.732422 80.238 9.73081 59.0029 18.7293\" stroke=\"#ECF86E\" stroke-width=\"6\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1uh8atg\",\"data-framer-name\":\"Layer 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:47,intrinsicWidth:63,layoutDependency:layoutDependency,layoutId:\"ePDOUAHzf\",svg:'<svg width=\"63\" height=\"47\" viewBox=\"0 0 63 47\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M53.92 30.5055C53.2971 26.0376 45.3962 26.0522 42.5936 27.79C40.9713 28.7849 39.7155 30.4403 39.4524 32.3337C39.1983 33.9907 39.7669 38.0877 41.7651 38.7099C43.5882 39.2662 44.3926 36.9061 44.2722 35.5173C44.0695 33.1782 42.4554 30.9541 41.2267 29.0132C38.8036 25.1874 35.7145 21.1542 31.155 19.8702C27.267 18.7711 22.2408 20.4292 21.8971 25.0471C21.7829 26.6183 22.349 31.6213 24.7872 30.6073C26.508 29.8984 26.6057 27.2019 26.2877 25.7418C25.3987 21.6873 21.9838 17.7192 19.3425 14.6046C16.3482 11.0713 12.9127 7.8856 9.17235 5.17554C6.7976 3.4371 8.99226 -0.641589 11.4121 1.10767C16.3711 4.70634 20.767 8.86196 24.5449 13.7045C27.8498 17.9326 32.1757 23.5745 30.8468 29.3162C29.7821 33.8567 23.9696 37.9985 19.9788 33.8446C16.3293 30.0588 16.3465 22.5234 19.7703 18.6917C23.4946 14.5025 29.5175 14.0616 34.4453 16.1974C40.153 18.6633 44.0791 24.281 46.9384 29.5713C49.2705 33.8763 50.1356 40.1202 44.9734 42.8432C39.8111 45.5662 35.6124 39.6923 34.921 35.1125C33.9412 28.6504 38.6533 23.0279 45.0153 22.1672C50.6861 21.4033 57.6853 24.155 58.5784 30.3816C58.9897 33.3434 54.3539 33.4726 53.9371 30.5335L53.92 30.5055Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wxdf5f\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:75,intrinsicWidth:69,layoutDependency:layoutDependency,layoutId:\"chJ1fA1sV\",svg:'<svg width=\"69\" height=\"75\" viewBox=\"0 0 69 75\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M45.2915 45.9367C46.8012 48.701 48.2566 51.2955 49.6428 53.9279C50.6272 55.8009 51.597 57.694 52.3909 59.6529C52.6419 60.2771 52.5925 61.3614 52.183 61.8569C51.4743 62.7091 50.5314 62.2513 49.7983 61.6609C46.4695 58.9959 43.2485 56.1995 39.7922 53.6888C36.0674 50.9802 36.0201 51.1873 31.7457 53.3464C28.841 54.818 25.8014 56.0309 22.7846 57.2737C21.2452 57.9089 20.4158 57.5886 20.1409 55.9926C19.8228 54.1062 19.8569 52.1361 19.8415 50.193C19.8215 47.8537 19.9233 45.5144 19.953 43.1721C19.986 40.4716 18.8118 38.3216 16.8763 36.5632C13.1912 33.2107 9.47661 29.8864 5.77685 26.554C3.7535 24.7288 3.4419 23.1831 5.41729 21.1377C7.58936 18.9002 10.0064 16.7706 12.6353 15.0993C18.6608 11.283 25.109 8.31123 32.1169 6.82223C33.4862 6.53357 34.9422 6.42714 36.3186 6.52734C38.367 6.67139 39.0563 7.76911 39.4768 9.69033C40.0733 12.4156 40.955 15.0757 41.8094 17.7327C42.4546 19.7366 43.1298 21.7482 44.02 23.6485C44.4714 24.6043 45.3001 25.499 46.1974 26.0965C49.3179 28.1684 52.546 30.0969 55.7375 32.0756C56.3588 32.4613 57.007 32.8142 57.6062 33.2301C59.4315 34.4928 59.5489 36.6581 57.6597 37.9919C54.7912 40.0116 51.7788 41.838 48.8194 43.7382C47.7605 44.4192 46.6839 45.0675 45.2866 45.9394L45.2915 45.9367ZM37.2239 13.3071C33.2657 16.7617 29.0977 19.3038 24.6868 21.4831C20.2562 23.6732 15.6918 25.4893 10.6781 26.5296C11.0557 26.9155 11.2446 27.1205 11.4533 27.3146C14.2516 29.9128 17.0179 32.5346 19.8631 35.0892C21.6903 36.7315 22.6844 38.7986 22.8441 41.1703C23.0423 44.0708 22.9474 46.9985 22.9617 49.9148C22.9699 51.2456 22.9309 52.584 22.9123 53.9596C27.809 52.9166 53.6864 38.2587 55.4703 35.5807C55.157 35.3712 54.8485 35.147 54.5203 34.9456C51.4116 33.0243 48.3053 31.0958 45.1819 29.1947C42.4768 27.5544 40.7535 25.2331 39.9026 22.2299C39.0825 19.3185 38.1709 16.4391 37.2239 13.3071ZM35.9653 9.68676C30.0027 8.27287 9.74729 18.634 7.53508 23.3826C11.7989 25.41 33.0808 15.2133 35.9653 9.68676ZM39.2708 49.5268C41.6675 51.1663 43.8434 52.6484 46.0145 54.1331C46.0958 54.0706 46.1771 54.0081 46.2559 53.9409L42.7919 47.5979L39.2682 49.5222L39.2708 49.5268Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M37.9105 31.3859C36.7007 27.6905 35.4663 24.0086 34.3061 20.2982C34.0116 19.3595 34.377 18.5014 35.4803 18.219C36.5118 17.9578 37.0088 18.5624 37.3249 19.435C38.6973 23.2168 40.144 26.9701 41.4471 30.7776C41.6453 31.352 41.451 32.3825 41.0208 32.8048C40.271 33.5465 39.4375 33.0894 38.8671 32.3739C38.5995 32.0367 38.364 31.6759 38.1186 31.3206C38.0517 31.339 37.9823 31.3648 37.9154 31.3832L37.9105 31.3859Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w3k1px\",\"data-framer-name\":\"Review 1 \u2022 Tablet\",layoutDependency:layoutDependency,layoutId:\"YzxqzbZaB\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201C[They] truly understand paid strategy and get creative \u2013 often you seem to find one or the other.\u201D\"})}),className:\"framer-1jv9tw4\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"UFcCvQmVE\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YRuinxKiP,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-162ev9m\",layoutDependency:layoutDependency,layoutId:\"MMnjoFQIg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Alex Georgiades\"})}),className:\"framer-g0kxgh\",fonts:[\"FS;Sora-bold\"],layoutDependency:layoutDependency,layoutId:\"pWu4KXMJR\",style:{\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Paid Social Senior Manager, Wise\"})}),className:\"framer-1lob3px\",fonts:[\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"JzNqIZbdP\",style:{\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1huyv8s\",\"data-framer-name\":\"Doodles\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:60,intrinsicWidth:66,layoutDependency:layoutDependency,layoutId:\"UPPa_T9sy\",svg:'<svg width=\"66\" height=\"60\" viewBox=\"0 0 66 60\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.07423 32.9975C6.8708 32.8631 11.5927 31.6975 15.8662 29.486C17.8237 28.4699 19.6467 27.3492 20.0203 25.0182C20.364 22.8366 19.9007 20.4458 19.4525 18.3239C18.4364 13.5871 16.4042 9.0595 15.8961 4.2181C15.8662 3.97902 15.8961 3.68017 15.8214 3.44108C15.9858 3.99396 15.0743 3.29166 15.7019 3.53074C16.0306 3.65028 16.4938 3.65028 16.8375 3.73994C17.9134 4.0089 18.9444 4.38247 19.9306 4.87557C21.7835 5.80202 23.4123 7.05719 24.8019 8.61122C28.2088 12.4515 29.3295 17.8906 28.0743 22.8216C27.5364 24.9136 30.779 25.8102 31.3169 23.7182C33.7376 14.2147 28.6272 4.41235 19.4226 1.02038C17.6444 0.36291 15.149 -0.458933 13.4904 0.870958C11.6674 2.33533 12.6386 5.51811 13.0272 7.4457C14.0881 12.586 16.4341 17.517 16.718 22.8067C16.7479 23.4492 16.8973 24.4653 16.5237 25.0481C16.2249 25.5262 15.5524 25.7952 15.0743 26.0642C13.7743 26.7964 12.4145 27.4389 11.0099 27.932C8.12598 28.963 5.13746 29.5159 2.07423 29.6056C-0.0924503 29.6653 -0.0924503 33.0274 2.07423 32.9677V32.9975Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M30.8551 24.1215C33.5299 22.9859 36.3092 22.0594 39.1333 21.387C41.7931 20.7445 44.9161 19.9675 47.546 21.1031C51.9989 23.0456 54.3748 29.1572 55.3759 33.5353C56.4369 38.1974 56.6909 45.0411 53.2989 48.8664C50.3403 52.2136 44.4828 53.2894 40.2242 52.5722C39.5966 52.4676 38.7747 52.3182 38.2517 51.9446C38.2517 51.9446 37.7437 51.6906 37.7437 51.6607C37.7437 51.5113 38.7598 51.1527 38.8644 51.0929C40.3437 50.4055 41.838 49.748 43.3322 49.0756C46.6196 47.5814 49.9219 46.1021 53.2093 44.6078C55.1817 43.7112 53.4633 40.8273 51.5058 41.7089C47.6805 43.4423 43.8552 45.1607 40.0299 46.894C37.669 47.9549 32.9172 49.4193 34.6804 52.9906C36.0701 55.7998 40.1644 56.1285 42.8839 56.0538C45.9173 55.9791 48.9656 55.4262 51.73 54.1113C57.9909 51.1526 59.6346 44.1147 59.3058 37.7043C58.9771 31.2939 56.6162 24.1364 51.7598 19.8927C48.846 17.3376 45.3793 16.8743 41.6288 17.4422C37.3103 18.0996 33.1414 19.5042 29.1367 21.2077C27.1494 22.0594 28.8678 24.9583 30.8402 24.1066L30.8551 24.1215Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M39.8195 46.9986C39.162 47.2078 38.2505 47.0434 37.4137 46.8193C36.9953 46.6998 36.5769 46.5503 36.1585 46.4009C35.8149 46.2814 36.3528 46.5205 36.0838 46.371C35.9792 46.3113 35.77 46.2067 35.6804 46.132C35.6356 46.0871 35.4413 45.7883 35.4861 45.8929C35.4861 45.8779 35.3666 45.3699 35.3965 45.6239C35.3516 45.2802 35.3218 45.3251 35.531 44.8917C35.7103 44.5182 36.0091 44.2342 36.308 43.9503C36.3976 43.8756 36.7563 43.6067 36.3528 43.8906C36.5769 43.7262 36.7861 43.5768 37.0103 43.4273C38.7436 42.2618 40.5218 41.6641 42.4942 41.0066C45.1689 40.125 47.8138 39.1836 50.4736 38.2721C52.5057 37.5698 51.6391 34.3273 49.577 35.0296C47.0368 35.8963 44.5115 36.7779 41.9712 37.6296C40.0436 38.2871 38.0861 38.8549 36.308 39.8859C34.5298 40.917 32.8562 42.1273 32.2286 44.0848C31.6011 46.0423 32.5424 48.3584 34.4401 49.2699C36.3379 50.1814 38.7287 50.8538 40.7011 50.2113C42.6735 49.5688 41.8816 46.2963 39.8045 46.9687L39.8195 46.9986Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M37.0698 39.7666C35.8296 39.8413 33.8422 39.4677 33.125 38.3619C32.9606 38.1229 32.8112 37.555 33.2595 37.1964C33.9917 36.6137 35.0825 36.3298 35.9491 36.0309C38.1308 35.2987 40.3871 34.8355 42.6285 34.2826C45.0193 33.6849 47.3802 33.0573 49.7561 32.4297C51.8481 31.8918 50.9665 28.6343 48.8595 29.1872C45.9457 29.9493 43.0319 30.7412 40.0882 31.4286C37.3239 32.0861 34.3802 32.6987 31.8698 34.1033C30.6595 34.7757 29.6882 35.9114 29.5836 37.3458C29.4939 38.5263 29.9422 39.8562 30.7192 40.7378C32.1986 42.4114 34.8733 43.2631 37.0549 43.1286C39.2365 42.9942 39.2216 39.6321 37.0549 39.7666H37.0698Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M34.3196 33.1023C33.3184 33.1919 32.377 32.9229 31.4954 32.4597C31.2713 32.3402 31.0322 32.2057 30.823 32.0563C30.4494 31.8022 31.1667 32.4448 30.5839 31.8471C30.3299 31.5931 30.0011 31.2344 29.8965 30.9804C29.7621 30.6666 29.7322 30.6367 29.8667 30.2482C29.9115 30.0988 30.0759 29.8896 30.2701 29.6953C30.4494 29.531 30.7632 29.3218 31.1069 29.1425C31.1517 29.1275 31.6149 28.9333 31.2563 29.0678C31.3908 29.0229 31.5103 28.9781 31.6448 28.9333C33.5127 28.3505 35.4253 27.8574 37.338 27.454C38.5782 27.185 39.8184 27.0057 41.0736 26.8413C42.4782 26.6769 43.8529 26.4677 45.2725 26.6471C46.169 26.7666 46.9461 25.7953 46.9461 24.9735C46.9461 23.9723 46.169 23.4045 45.2725 23.2999C43.9725 23.1355 42.6874 23.2999 41.4023 23.4493C40.1173 23.5988 38.7874 23.7631 37.4874 24.0022C35.4253 24.3907 33.3931 24.9436 31.3759 25.5264C29.8368 25.9597 28.3873 26.6172 27.4011 27.9321C25.9965 29.7701 26.3402 32.0114 27.7448 33.7149C29.2391 35.523 32.0184 36.7184 34.3494 36.4942C35.246 36.4046 36.023 35.777 36.023 34.8207C36.023 33.9839 35.246 33.0574 34.3494 33.1471L34.3196 33.1023Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M1.01147 32.6538C1.23561 37.4056 1.51952 42.1424 1.8632 46.8941C2.04251 49.27 2.22182 51.6309 2.43102 54.0068C2.59539 55.8597 2.43102 58.3103 4.26896 59.3861C5.97242 60.3724 8.25863 59.8793 10.0517 59.4907C12.3081 59.0126 14.6989 58.654 16.9104 57.9666C19.2265 57.2344 18.5541 54.9183 18.2403 53.0953C17.8518 50.824 17.4483 48.5528 17.0299 46.2815C16.5518 43.7562 16.0437 41.2309 15.4759 38.7205C14.9081 36.2102 13.6828 33.4309 14.0265 30.9205C14.146 30.009 13.8023 29.1274 12.846 28.8584C12.069 28.6343 10.9035 29.1274 10.7839 30.0389C10.4851 32.2056 10.9035 34.163 11.4265 36.2699C11.9495 38.3769 12.4575 40.5884 12.9058 42.755C13.3541 44.9217 13.7426 46.939 14.1161 49.0309C14.3104 50.0769 14.4897 51.1229 14.669 52.1838C14.8184 53.0057 15.4909 54.9482 15.2069 55.7401L15.984 54.739C15.5506 55.0229 14.7587 55.0528 14.2506 55.1574C13.5334 55.3218 12.8161 55.4712 12.0989 55.6356C10.7242 55.9344 9.3345 56.3379 7.9299 56.5321C7.49656 56.5919 6.3161 56.816 5.94253 56.5022C6.13679 56.6666 6.0023 56.3229 5.97242 56.2183C5.88276 55.8896 5.8977 55.4712 5.86782 55.1275C5.73334 53.5735 5.59885 52.0344 5.47931 50.4804C5.00115 44.5631 4.62758 38.6309 4.35862 32.6837C4.25402 30.532 0.891933 30.517 0.996531 32.6837H1.01147V32.6538Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M8.23048 38.5113C10.3972 38.5113 10.3972 35.1492 8.23048 35.1492C6.0638 35.1492 6.0638 38.5113 8.23048 38.5113Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M17.988 57.1149C21.7834 57.5333 25.5191 56.9655 29.18 55.9943C30.8536 55.546 32.5571 54.8437 34.2904 54.7839C34.9927 54.769 35.7099 54.7839 36.3973 54.9333C36.6812 54.9931 36.9502 55.0529 37.2341 55.1425C37.4881 55.2172 37.2939 55.2023 37.1295 55.0379L36.6962 54.2908V54.3356C37.0548 55.1724 37.8318 55.7701 38.7881 55.5161C39.595 55.292 40.2973 54.2908 39.9686 53.454C39.3858 51.9896 37.7571 51.7356 36.3525 51.5563C34.3502 51.3023 32.5272 51.5563 30.5996 52.1241C26.4306 53.3195 22.3513 54.246 17.988 53.7529C17.0915 53.6483 16.3145 54.6046 16.3145 55.4264C16.3145 56.4126 17.0915 57.0103 17.988 57.1V57.1149Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M43.8531 12.0031L45.452 6.23522C45.6911 5.38349 45.1681 4.36739 44.2715 4.17314C43.375 3.97889 42.4485 4.44211 42.2094 5.3536L40.6106 11.1214C40.3715 11.9732 40.8945 12.9893 41.7911 13.1835C42.6876 13.3778 43.614 12.9146 43.8531 12.0031Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M51.8627 14.4088L54.8213 10.0157C55.0604 9.67203 55.1053 9.11916 54.9857 8.71571C54.8662 8.31226 54.5823 7.90881 54.2087 7.71455C53.357 7.26628 52.4305 7.53524 51.9075 8.31226L48.9489 12.7054C48.7098 13.0491 48.665 13.6019 48.7845 14.0054C48.9041 14.4088 49.188 14.8123 49.5616 15.0065C50.4133 15.4548 51.3397 15.1859 51.8627 14.4088Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M60.1405 19.7136C61.7543 18.4285 63.2933 17.0388 64.7129 15.5296C65.3255 14.8871 65.4003 13.7813 64.7129 13.1538C64.0255 12.5262 62.9796 12.4664 62.337 13.1538C60.9175 14.648 59.3784 16.0526 57.7646 17.3377C57.4508 17.5917 57.2715 18.1446 57.2715 18.5331C57.2715 18.9515 57.4508 19.4446 57.7646 19.7285C58.0784 20.0124 58.5117 20.2366 58.96 20.2216L59.4083 20.1618C59.6922 20.0871 59.9462 19.9377 60.1554 19.7285L60.1405 19.7136Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',transformTemplate:transformTemplate1,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hiyghv\",\"data-framer-name\":\"Vector 514\",fill:\"rgb(94, 48, 48)\",intrinsicHeight:25,intrinsicWidth:165,layoutDependency:layoutDependency,layoutId:\"ZdyzU06zl\",svg:'<svg width=\"165\" height=\"25\" viewBox=\"-3 -3 165 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0644531 0.732422C49.9021 0.732422 151.224 0.732422 157.811 0.732422C166.046 0.732422 80.238 9.73081 59.0029 18.7293\" stroke=\"#ECF86E\" stroke-width=\"6\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-181zaux\",\"data-framer-name\":\"Layer 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:43,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"tCYXYAxcX\",svg:'<svg width=\"40\" height=\"43\" viewBox=\"0 0 40 43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.72721 20.6711C4.49493 21.5489 5.9987 22.6236 6.9857 21.3625C7.38579 20.8551 7.42206 20.113 7.45464 19.4938C7.49629 18.6335 7.39199 17.7937 7.18862 16.9575L6.31523 17.4119C6.84333 18.0477 7.46048 18.5776 8.18812 18.9731C8.8361 19.323 9.70801 19.6933 10.4592 19.4886C11.2478 19.2705 11.6764 18.4729 12.0846 17.8253C12.4927 17.1776 12.8785 16.4376 13.1983 15.7053C14.4982 12.7157 14.9329 9.37449 14.421 6.14927L13.4572 6.35061C13.869 8.25898 14.4343 10.1389 15.2853 11.9011C15.9849 13.358 16.9166 14.769 18.3749 15.5535C19.7505 16.2989 21.3385 16.2921 22.6665 15.4535C24.1545 14.5155 24.9367 12.8731 25.6312 11.3254C25.8927 10.7407 24.9944 10.3111 24.7346 10.9005C24.0431 12.4418 24.6553 14.305 26.0229 15.2646C27.5229 16.3142 29.4832 16.1218 31.0351 15.3036L30.3681 14.5748C28.5679 16.459 28.4453 19.4458 30.1571 21.429C30.9298 22.3209 31.9778 22.8292 33.0465 23.2772C34.1152 23.7253 35.3285 24.164 36.0517 25.1686L36.5516 24.3932C33.9856 24.1467 31.7032 25.4792 30.4723 27.715C29.2415 29.9508 29.3943 32.7177 30.3141 35.0576L30.9967 34.4388C29.6117 33.8448 28.36 32.7065 26.7915 32.664C25.5426 32.629 24.2511 33.2591 23.9747 34.5571C23.8401 35.1864 24.8181 35.3657 24.9544 34.7411C25.1752 33.7165 26.4978 33.5139 27.362 33.7443C28.5174 34.0505 29.4823 34.8737 30.5735 35.3402C30.9547 35.5053 31.4207 35.1381 31.2561 34.7214C30.4745 32.739 30.258 30.4598 31.2016 28.485C32.1452 26.5103 34.125 25.1589 36.374 25.3759C36.7841 25.4145 37.1463 24.9787 36.8739 24.6004C35.619 22.8609 33.4285 22.6601 31.7487 21.5214C29.5883 20.0576 29.3645 17.0623 31.1355 15.2149C31.5591 14.7732 30.9278 14.2482 30.4685 14.4861C29.3213 15.0911 27.7976 15.2334 26.6694 14.5002C25.6512 13.8386 25.1356 12.4534 25.6423 11.3268L24.7456 10.9019C24.1385 12.2651 23.4879 13.7284 22.198 14.5851C20.9081 15.4418 19.4709 15.2046 18.3145 14.3334C17.1582 13.4623 16.425 12.0596 15.8619 10.7337C15.2191 9.2142 14.7638 7.62783 14.412 6.0204C14.2919 5.47677 13.3579 5.67277 13.4482 6.22174C13.8729 8.89163 13.6478 11.6508 12.7416 14.2039C12.2959 15.4568 11.7045 16.6717 10.9565 17.7735C10.7429 18.0928 10.5045 18.5055 10.0804 18.546C9.72226 18.5787 9.30588 18.3892 8.99126 18.2479C8.27298 17.923 7.65214 17.4419 7.14981 16.834C6.78001 16.3901 6.13894 16.7404 6.27642 17.2884C6.5002 18.1966 6.56933 19.1599 6.4316 20.0915C6.3629 20.5651 6.20215 21.0029 5.63346 20.9047C5.19431 20.829 4.84224 20.4052 4.57284 20.0945C4.15986 19.6184 3.33599 20.182 3.757 20.6657L3.72888 20.6758L3.72721 20.6711Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-75s2oy\",\"data-framer-name\":\"Review 3 \u2022 Tablet\",layoutDependency:layoutDependency,layoutId:\"H2P0KlDO5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CThey absolutely nailed it, \\u2028\\u2028with everything from creative strategy, to finding the perfect talent and ad structure.\u201D\"})}),className:\"framer-3gf5oh\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"VtnV4bbfB\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:RHi_oMwT7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6e0q4u\",\"data-framer-name\":\"Layer 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:37,intrinsicWidth:37,layoutDependency:layoutDependency,layoutId:\"SLtvsOd2f\",svg:'<svg width=\"37\" height=\"37\" viewBox=\"0 0 37 37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M28.3196 25.2879C19.9511 29.314 12.8332 28.6918 6.13448 25.2457C4.42851 24.3717 2.69067 20.2661 3.38823 18.8188C4.29258 16.9477 7.77207 15.0456 9.89557 15.2785C16.7794 16.0395 22.1962 20.1466 28.321 25.2727L28.3196 25.2879ZM6.45892 20.459C9.3309 24.516 16.0928 26.2734 22.5175 24.6337C16.6079 18.909 10.9564 17.4443 6.45892 20.459Z\" fill=\"#DAD1F2\"/>\\n<path d=\"M30.3651 20.9342C23.4805 19.3488 17.853 13.6271 17.6814 7.92477C17.6277 6.17953 18.2697 3.58978 19.4718 2.88328C20.5362 2.26339 23.2633 3.2386 24.4901 4.34338C29.2269 8.62475 31.6712 13.9324 30.3582 20.9259L30.3651 20.9342ZM28.1472 18.2349C27.8476 10.5973 25.82 7.48798 20.2688 6.26143C19.6943 12.2769 23.6821 15.0699 28.1472 18.2349Z\" fill=\"#DAD1F2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Donna Ledwidge\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Co-Founder, KeyForHer\"})]}),className:\"framer-ofvphk\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"yuX2iI1QG\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1s3ftb2\",\"data-framer-name\":\"Vector 514\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:165,layoutDependency:layoutDependency,layoutId:\"M848uC1j4\",svg:'<svg width=\"165\" height=\"25\" viewBox=\"-3 -3 165 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0644531 0.732422C49.9021 0.732422 151.224 0.732422 157.811 0.732422C166.046 0.732422 80.238 9.73081 59.0029 18.7293\" stroke=\"#ECF86E\" stroke-width=\"6\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19mkcss\",\"data-framer-name\":\"Group 375726\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:68,intrinsicWidth:90,layoutDependency:layoutDependency,layoutId:\"KUuIDNyr7\",svg:'<svg width=\"90\" height=\"68\" viewBox=\"0 0 90 68\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.532 32.3906C10.848 31.9781 10.3525 31.6885 9.87437 31.3809C4.27381 27.7688 3.95233 20.1145 9.24759 16.4149C13.681 13.3152 20.9069 15.6427 23.0349 20.83C23.9418 23.0367 24.0867 25.2698 23.2665 27.8503C25.376 27.045 27.1946 26.3488 29.009 25.6536C29.0738 25.4807 29.1344 25.3088 29.2003 25.14C28.7606 25.0088 28.2568 24.9704 27.882 24.733C24.481 22.5766 22.6872 19.4827 22.8649 15.4337C23.0858 10.4173 27.5872 7.27268 32.4125 8.63844C37.5172 10.0849 40.7095 15.6273 39.3865 20.7612C39.3286 20.9767 39.276 21.1953 39.1568 21.663C40.7105 21.0733 42.0815 20.5815 43.4285 20.0338C44.8749 19.4417 45.727 19.5024 46.4897 20.9386C47.8455 23.5096 48.9763 26.2032 50.1286 28.8777C50.6155 30.0143 50.9193 31.2311 51.3607 32.58C52.1455 32.2897 52.8204 32.0377 53.6538 31.7299C53.2009 30.5042 52.7193 29.3706 52.3652 28.1984C52.0066 27.0095 51.7216 25.7966 51.4969 24.5764C51.3076 23.5378 51.7566 22.675 52.7391 22.3095C54.527 21.6482 56.3506 21.0706 58.178 20.5232C59.2642 20.1966 59.9874 20.7053 60.3537 21.7408C62.3636 27.3999 64.3693 33.0602 66.375 38.7204C66.8169 39.9713 67.2422 41.2267 67.6675 42.4821C67.9732 43.3739 67.7868 44.1885 66.9447 44.5964C65.5549 45.2667 64.14 45.9926 62.6529 46.3333C60.813 46.7507 59.5767 46.0194 58.7508 44.2978C57.9768 42.6868 57.2822 41.0234 56.684 39.3386C56.1286 37.7802 55.235 38.9088 54.5134 38.9866C53.6358 39.0795 53.8121 39.6547 54.0383 40.2832C54.9659 42.8489 55.8335 45.4396 56.7539 48.0118C57.0403 48.8153 57.358 49.6194 57.7747 50.3613C58.3505 51.3986 58.3026 52.0827 57.2113 52.5397C55.489 53.2634 53.6993 53.8186 51.9313 54.4213C46.2948 56.3495 40.6247 58.2022 35.022 60.2236C32.2408 61.2267 29.6223 62.6708 26.8464 63.6769C24.4018 64.5587 21.8506 65.1756 19.3116 65.7715C18.2159 66.0295 17.4793 65.222 17.053 64.2781C15.3919 60.5841 13.7183 56.8933 12.1398 53.1593C9.99203 48.0973 7.95822 42.9959 5.85611 37.9217C5.29154 36.5614 5.92836 34.7235 7.28174 34.1163C7.9558 33.8112 8.66342 33.5816 9.34941 33.3044C10.0199 33.0359 10.6807 32.7476 11.5279 32.3917L11.532 32.3906ZM7.90572 36.3455C8.15378 36.9726 8.31308 37.4012 8.48897 37.8253C9.78541 40.9547 11.0777 44.0852 12.3866 47.2112C14.49 52.2406 16.6101 57.2655 18.6969 62.2994C19.0509 63.1559 19.5967 63.4009 20.4288 63.138C22.6908 62.4207 24.9833 61.7842 27.2006 60.95C30.6207 59.6601 33.9556 58.1352 37.392 56.8899C40.4682 55.7766 43.6452 54.9565 46.7485 53.9115C48.959 53.1681 51.0971 52.2039 53.3117 51.4594C55.2001 50.8245 55.2253 50.9022 54.617 49.0467C54.5929 48.9731 54.5729 48.8985 54.5446 48.826C52.3677 42.527 50.2312 36.2127 47.989 29.9356C47.1669 27.6306 46.1014 25.413 45.1416 23.1582C44.8076 22.3763 44.2917 22.1766 43.465 22.5093C40.6135 23.6646 37.737 24.7599 34.8747 25.8914C29.2927 28.0896 23.7237 30.3198 18.1351 32.4931C14.7974 33.792 11.4303 35.0143 7.9035 36.3372L7.90572 36.3455ZM8.09424 25.1357C9.07569 28.7985 13.1164 31.3347 16.5589 30.4435C20.2128 29.4955 22.1317 26.4027 21.2233 22.9293C20.2192 19.0992 16.1938 16.6699 12.4558 17.636C9.0548 18.5161 7.18282 21.7342 8.09313 25.1315L8.09424 25.1357ZM28.3702 11.0242C26.9886 11.4433 25.8539 12.6677 25.3945 14.5203C24.399 18.5705 27.6929 23.2142 31.85 23.6297C34.3992 23.8848 36.5269 22.3677 37.1389 19.8562C37.5355 18.2339 37.2501 16.6876 36.5894 15.1841C35.2202 12.0653 31.7293 10.1375 28.3702 11.0242ZM54.1039 34.0902C54.1106 34.1151 54.1079 34.138 54.1104 34.164C53.7374 34.2818 53.3751 34.4233 52.9954 34.5161C51.9144 34.7791 52.4187 35.4665 52.5508 36.0757C52.708 36.8117 53.0671 37.04 53.7976 36.7465C54.5922 36.4268 55.3985 36.1174 56.2254 35.9181C57.4165 35.6345 58.0217 36.0681 58.4472 37.2079C59.1127 38.9946 59.8216 40.7609 60.5399 42.5291C60.8853 43.3702 61.2643 44.2868 62.4572 43.9271C63.3413 43.6591 64.1998 43.2957 65.0392 42.9107C65.1539 42.8578 65.1744 42.4032 65.102 42.1826C64.7102 41.0026 64.277 39.8338 63.8562 38.6617C62.3913 34.5549 60.8527 30.4723 59.482 26.3359C58.2682 22.6686 58.078 22.5062 54.5444 24.1688C54.2684 24.3006 53.9217 24.8647 54.0035 25.0873C54.8409 27.366 55.7725 29.615 56.6502 31.8785C56.8081 32.2852 57.0477 32.8479 56.8924 33.1474C56.7017 33.5142 56.157 33.7712 55.7134 33.9079C55.2088 34.0653 54.6469 34.0425 54.1103 34.0974L54.1039 34.0902Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M27.6516 56.6457C26.0218 56.9845 24.4252 57.3145 22.8245 57.6456C21.7885 57.861 21.0892 57.4748 20.6966 56.4908C18.7702 51.6407 16.8365 46.797 14.9101 41.9469C14.5946 41.1512 14.2573 40.3568 14.0319 39.5324C13.6238 38.059 14.3361 37.2991 15.7751 36.829C18.6542 35.8931 21.5494 34.9173 24.2746 33.6224C28.8931 31.429 33.5743 29.4366 38.5145 28.0952C40.185 27.6431 40.7272 27.8579 41.334 29.3759C43.4824 34.7223 45.6277 40.0739 47.7636 45.4236C48.4684 47.191 47.9166 48.4503 46.1366 49.2073C41.3395 51.2485 36.5532 53.3135 31.7356 55.3113C30.4114 55.8617 28.9974 56.2095 27.6494 56.6374L27.6516 56.6457ZM17.4225 38.9618C17.6496 39.6435 17.7766 40.134 17.9708 40.5933C19.6272 44.502 21.3188 48.3925 22.9586 52.3057C24.1058 55.0438 24.1536 55.2222 26.9362 54.3076C30.0711 53.2809 33.1128 51.9724 36.1767 50.7468C39.0315 49.604 41.8517 48.3815 44.7099 47.2511C45.486 46.9453 45.6501 46.5456 45.3131 45.8356C45.1803 45.5556 45.0939 45.2497 44.9807 44.96C43.7726 41.8781 42.5686 38.7951 41.3532 35.7196C40.6601 33.9624 39.9443 32.2202 39.2499 30.5079C31.3511 32.0241 24.9344 36.6823 17.4183 38.9629L17.4225 38.9618Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M16.1406 24.3804C15.8759 24.6869 15.5793 25.3222 15.1054 25.5114C14.3107 25.831 13.6623 25.369 13.4431 24.5341C13.2308 23.7418 13.5722 23.1079 14.3629 22.9227C15.221 22.7239 15.729 23.2592 16.1436 24.3751L16.1406 24.3804Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M31.1579 15.9187C32.0051 15.8118 32.6646 16.0663 32.929 16.9869C33.1868 17.8826 32.7552 18.7274 31.9399 18.9369C31.162 19.1365 30.2014 18.5714 30.0638 17.7591C29.917 16.8959 30.2423 16.2352 31.1548 15.924L31.1579 15.9187Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M28.5723 49.2992C27.7053 49.5315 26.8425 49.7627 25.9756 49.995C25.1376 50.2195 24.5469 49.9065 24.1344 49.1634C23.1009 47.2974 22.0467 45.4369 21.009 43.572C20.5546 42.7557 20.8368 41.8842 21.7474 41.7648C26.3373 41.1573 29.992 38.453 33.9614 36.4424C34.3416 36.2516 34.7053 36.0164 35.0918 35.8328C36.1109 35.3552 36.7993 35.6509 37.2248 36.675C38.099 38.7927 38.9887 40.9018 39.8743 43.012C40.1933 43.7712 40.0903 44.399 39.2913 44.7687C35.7695 46.3926 32.2433 47.9999 28.7182 49.6113C28.6685 49.509 28.6219 49.4015 28.5723 49.2992Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M70.3613 32.5839C69.9245 32.3038 69.3097 32.1225 69.0966 31.7234C68.719 31.0185 69.3056 30.5664 69.9038 30.3039C71.8611 29.4491 73.8318 28.6301 75.7987 27.7963C79.2237 26.3438 82.6402 24.8739 86.0778 23.4535C86.5133 23.2738 87.0674 23.2433 87.5351 23.3304C87.7541 23.37 88.0922 23.9125 88.0283 24.1144C87.8942 24.5239 87.6022 25.019 87.2413 25.1982C85.8184 25.8902 84.344 26.4779 82.8858 27.0967C78.8607 28.8044 74.8318 30.513 70.8067 32.2207C70.7116 32.262 70.6164 32.3032 70.5203 32.3407C70.4673 32.4218 70.418 32.5018 70.364 32.5792L70.3613 32.5839Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M84.4976 32.6793C80.4432 33.4707 76.3925 34.2612 72.3408 35.048C72.1058 35.0952 71.8198 35.1876 71.6314 35.1005C71.2078 34.8994 70.8287 34.5999 70.4338 34.3439C70.7161 33.9301 70.9162 33.2827 71.2999 33.1445C72.2275 32.8055 73.2364 32.6964 74.2163 32.5086C77.7658 31.8288 81.3127 31.1537 84.8632 30.4776C85.5254 30.3513 86.0482 30.5415 86.2103 31.2491C86.3763 31.9714 85.9456 32.3306 85.3046 32.5063C85.0404 32.5771 84.7726 32.6488 84.5084 32.7196C84.5045 32.7049 84.5006 32.6903 84.4976 32.6793Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M69.2232 29.4003C68.9061 29.2296 68.4132 29.1218 68.2294 28.8172C68.0627 28.5473 68.1489 28.0326 68.2907 27.6958C68.4149 27.4109 68.7616 27.2079 69.0363 27.0006C72.2937 24.5116 75.5548 22.0216 78.8262 19.5407C79.0973 19.3344 79.4053 19.0749 79.7145 19.055C80.0771 19.0286 80.638 19.1261 80.7858 19.3696C80.9697 19.6742 80.89 20.1989 80.7917 20.5948C80.7374 20.8178 80.4318 20.998 80.2171 21.1656C76.8705 23.7178 73.5219 26.2627 70.1722 28.8039C69.9266 28.9876 69.6554 29.135 69.2315 29.402L69.2232 29.4003Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1amift6\",\"data-framer-name\":\"Review 4 \u2022 Tablet\",layoutDependency:layoutDependency,layoutId:\"a40r_HTKq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CThey just get it! In an ever-changing, ever-growing market, [they] always hit the mark and are ahead of the social trends. Taking risks and pushing boundaries is what makes the team strategic trailblazers.\u201D\"})}),className:\"framer-1404afm\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"Tk3uabwoL\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:uqMMk71Fm,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-njseyg\",\"data-framer-name\":\"Vector 548\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:74,intrinsicWidth:268,layoutDependency:layoutDependency,layoutId:\"SPYwRU0so\",svg:'<svg width=\"268\" height=\"74\" viewBox=\"-2 -2 268 74\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M242.227 19.9646C209.951 8.58696 123.163 -8.15436 34.2242 15.9011C-76.9498 45.9705 114.317 89.0428 220.71 59.7861C292.41 40.0694 259.915 11.121 227.639 0.285156\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1doxkf7\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:51,intrinsicWidth:31,layoutDependency:layoutDependency,layoutId:\"NT8hCTVTs\",svg:'<svg width=\"31\" height=\"51\" viewBox=\"-1 -1 31 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M28.9932 22.9729L29.0858 22.8378L28.9989 22.6989C28.8428 22.4496 28.7164 22.2193 28.5954 21.9987C28.5367 21.8918 28.4793 21.7871 28.4204 21.6837C28.245 21.376 28.0601 21.0872 27.8089 20.8545C22.5269 15.9548 18.943 9.91531 16.0214 3.39526L16.0207 3.39374C15.6856 2.6591 15.2809 1.79776 14.6395 1.24093C14.3271 0.969743 13.9225 0.695047 13.5035 0.50289C13.0915 0.313904 12.6299 0.188308 12.2189 0.264124L12.2186 0.264194C12.0212 0.300907 11.8359 0.40953 11.6746 0.541523C11.5107 0.675568 11.356 0.846536 11.2193 1.03173C10.9485 1.39856 10.7269 1.85087 10.6494 2.24153C9.23806 9.21998 5.70179 15.1532 1.4908 20.7505C0.944946 21.475 0.522917 22.1051 0.247773 22.6778C-0.0281997 23.2524 -0.163834 23.7843 -0.118292 24.3078C-0.02709 25.3562 0.779016 26.2551 2.23215 27.3433C6.4717 30.5247 9.23126 34.6896 10.5414 39.8011L10.5415 39.8013C10.863 41.0518 11.0442 42.3276 11.2275 43.619C11.31 44.1998 11.3929 44.7836 11.4892 45.3698L11.4894 45.3707C11.6125 46.1022 12.109 46.8536 12.7172 47.4081C13.3215 47.9591 14.0929 48.3666 14.8033 48.325L14.8038 48.325C15.2674 48.2969 15.637 48.1822 15.929 47.9908C16.222 47.7986 16.4202 47.5401 16.5578 47.252C16.785 46.7763 16.8565 46.1898 16.9212 45.6592C16.9322 45.5691 16.943 45.4806 16.9543 45.3945C16.9875 45.1452 17.0129 44.9056 17.0378 44.6701C17.0744 44.3245 17.11 43.9878 17.1682 43.6425C18.4089 36.3402 22.3321 30.5263 27.369 25.2879L27.3692 25.2877C27.6955 24.9477 27.9665 24.5635 28.222 24.1705C28.3198 24.02 28.4139 23.8705 28.5079 23.7213C28.6644 23.4727 28.8206 23.2246 28.9932 22.9729ZM23.4978 23.22C19.9403 27.2793 16.5541 31.8378 14.3607 37.744C12.3452 31.8804 9.26253 27.2993 4.81671 24.083C5.8943 22.168 6.9586 20.2756 8.0067 18.4121C9.89564 15.0536 11.7319 11.7887 13.4985 8.65304C15.1629 11.0759 16.8852 13.5857 18.6612 16.1738C20.2323 18.4632 21.8455 20.814 23.4978 23.22Z\" fill=\"#DAD1F2\" stroke=\"#DDD4F6\" stroke-width=\"0.5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4t6ugy\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:34,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"ss8lktp2x\",svg:'<svg width=\"22\" height=\"34\" viewBox=\"-1 -1 22 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.3299 15.1875L19.4225 15.0523L19.3356 14.9134C19.237 14.756 19.1584 14.6126 19.0816 14.4727C19.0437 14.4037 19.0063 14.3355 18.9672 14.2669C18.8541 14.0684 18.7302 13.8735 18.5588 13.7147C15.1908 10.5905 12.9033 6.73736 11.0361 2.57044L11.0354 2.56892C10.8224 2.102 10.5563 1.53186 10.1285 1.16055C9.92301 0.982126 9.65693 0.801365 9.38007 0.674376C9.11013 0.550557 8.79418 0.461362 8.50412 0.514868L8.50374 0.514938C8.3569 0.542258 8.22455 0.621672 8.11506 0.711248C8.00306 0.802875 7.89902 0.918215 7.80825 1.04118C7.62931 1.28358 7.48053 1.58507 7.42768 1.85128C6.52832 6.29806 4.27433 10.0824 1.58281 13.66C1.23241 14.1251 0.958004 14.534 0.777989 14.9088C0.597163 15.2852 0.504167 15.6422 0.535179 15.9987C0.597319 16.713 1.14569 17.3096 2.07513 18.0056C4.77179 20.0292 6.52624 22.6771 7.35967 25.9287L7.35972 25.9289C7.56423 26.7242 7.679 27.5326 7.79598 28.3565C7.84891 28.7294 7.90229 29.1054 7.96464 29.4848L7.9648 29.4857C8.04798 29.9799 8.38008 30.4777 8.77866 30.8412C9.17336 31.201 9.69005 31.4799 10.1796 31.4513L10.1802 31.4513C10.4888 31.4326 10.7413 31.3558 10.9442 31.2228C11.148 31.0891 11.2847 30.9097 11.3784 30.7135C11.5308 30.3945 11.5785 30.0017 11.6196 29.6634C11.6265 29.6064 11.6332 29.551 11.6402 29.4977C11.6622 29.3327 11.6786 29.1778 11.6945 29.0269C11.7175 28.809 11.7396 28.5994 11.7766 28.3798C12.5665 23.7311 15.0641 20.0261 18.2811 16.6805L18.2813 16.6803C18.496 16.4566 18.6731 16.2051 18.8376 15.952C18.9017 15.8534 18.9625 15.7568 19.0228 15.661C19.1221 15.5033 19.2202 15.3475 19.3299 15.1875ZM7.67281 1.90038C7.76048 1.45787 8.19046 0.827514 8.54947 0.760721L7.67281 1.90038ZM15.6249 15.288C13.4084 17.8232 11.2955 20.6695 9.8944 24.3261C8.60874 20.7002 6.66994 17.8469 3.90087 15.8213C4.57729 14.6192 5.24547 13.4312 5.90366 12.2609C7.08712 10.1568 8.23828 8.11001 9.34692 6.14209C10.3865 7.65562 11.4613 9.22174 12.5687 10.8355C13.5617 12.2826 14.5811 13.768 15.6249 15.288Z\" fill=\"#DAD1F2\" stroke=\"#DDD4F6\" stroke-width=\"0.5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Tiana Westwood\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Head of Content, Sitting Pretty\"})]}),className:\"framer-1vmfdb1\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"BeUgMi6If\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16urk6e\",\"data-framer-name\":\"Vector 514\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:165,layoutDependency:layoutDependency,layoutId:\"bI5Tu1_aW\",svg:'<svg width=\"165\" height=\"25\" viewBox=\"-3 -3 165 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0644531 0.732422C49.9021 0.732422 151.224 0.732422 157.811 0.732422C166.046 0.732422 80.238 9.73081 59.0029 18.7293\" stroke=\"#ECF86E\" stroke-width=\"6\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-o2tl4l\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:83,intrinsicWidth:79,layoutDependency:layoutDependency,layoutId:\"CK6jDozSw\",svg:'<svg width=\"79\" height=\"83\" viewBox=\"0 0 79 83\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M39.0523 46.7507C47.4782 37.7732 55.9405 28.7546 64.7489 19.3624C61.9987 19.626 59.5314 19.8468 57.0678 20.0855C56.4051 20.1538 55.7476 20.2659 55.0827 20.3421C53.4844 20.5159 52.3979 19.7923 52.2515 18.2183C52.1104 16.6881 53.214 15.9239 54.596 15.7346C56.436 15.4814 58.2859 15.3496 60.14 15.202C63.3212 14.9436 66.4993 14.6335 69.6925 14.4885C72.691 14.3423 74.2977 15.9091 74.2952 18.8931C74.2902 23.5639 74.1938 28.2272 74.1234 32.889C74.116 33.3279 74.021 33.7773 73.8986 34.2024C73.496 35.5784 72.8371 36.8349 71.1518 36.5105C69.3716 36.1607 69.2726 34.7266 69.3699 33.1925C69.5853 29.9517 69.7016 26.7013 69.8416 23.4573C69.8606 23.0384 69.7545 22.6115 69.6688 21.9186C69.088 22.3142 68.653 22.5453 68.3038 22.8672C58.7126 31.7953 49.8195 41.3769 41.5368 51.529C39.5406 53.9788 37.9 53.836 36.0876 51.2644C34.6439 49.2156 33.0175 47.279 31.3061 45.4383C30.9178 45.0205 29.5652 44.8785 29.1622 45.2115C21.2193 51.817 13.319 58.4848 5.48515 65.2212C4.22923 66.3007 3.20472 67.561 1.55726 66.0512C0.393082 64.9846 0.691607 63.3008 2.35585 61.805C6.27167 58.2669 10.1722 54.6907 14.2029 51.2936C18.5843 47.6004 23.1115 44.0905 27.5745 40.504C29.9188 38.6222 30.9929 38.6641 33.1388 40.7823C35.1439 42.7611 37.1126 44.781 39.0544 46.7428L39.0523 46.7507Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-104fvlx\",\"data-framer-name\":\"Review 5 \u2022 Web\",layoutDependency:layoutDependency,layoutId:\"k9rjpXCFR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CMight be one of the best creative agencies I've worked with. They are quick to respond and make edits, do amazing work converting angles into solid creatives, and go above and beyond in delivering ads.\u201D\"})}),className:\"framer-1tf4fvq\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"iakuZSxZY\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:GKA9nC0_k,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Benjamin Tan\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Founder, 8Sheep Organics\"})]}),className:\"framer-yqbhze\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"QGVgkcV39\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1uv4nci\",\"data-framer-name\":\"Vector 515\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:378,layoutDependency:layoutDependency,layoutId:\"NBUdeOh_s\",svg:'<svg width=\"378\" height=\"19\" viewBox=\"-2 -2 378 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M373.186 11.1058C336.801 10.1089 297.412 9.71367 247.068 8.78794C155.998 7.11334 52.2452 5.90925 3.67646 8.78799C-14.6367 9.87343 62.519 24.3902 183.768 0.764341\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k4thvw\",\"data-framer-name\":\"Layer 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:45,layoutDependency:layoutDependency,layoutId:\"NAu_MdO3Z\",svg:'<svg width=\"45\" height=\"44\" viewBox=\"0 0 45 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.8239 30.2283C20.9344 35.0925 29.5339 34.3408 37.627 30.1774C39.6881 29.1215 41.7876 24.1613 40.9449 22.4127C39.8523 20.1521 35.6485 17.854 33.083 18.1354C24.7662 19.0548 18.2219 24.0168 10.8222 30.21L10.8239 30.2283ZM37.235 24.3943C33.7652 29.2958 25.5957 31.419 17.8337 29.438C24.9735 22.5216 31.8013 20.752 37.235 24.3943Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M8.35255 24.9687C16.6702 23.0532 23.4691 16.1405 23.6765 9.25122C23.7414 7.1427 22.9657 4.01386 21.5134 3.16031C20.2274 2.41138 16.9326 3.58959 15.4504 4.92434C9.72767 10.0969 6.77453 16.5094 8.36085 24.9587L8.35255 24.9687ZM11.0321 21.7074C11.394 12.4801 13.8438 8.72351 20.5505 7.24165C21.2446 14.5093 16.4267 17.8837 11.0321 21.7074Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1l1fay9\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:68,intrinsicWidth:67,layoutDependency:layoutDependency,layoutId:\"Agv9em0Ic\",svg:'<svg width=\"67\" height=\"68\" viewBox=\"0 0 67 68\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.4507 21.3415C9.60183 22.8132 7.73563 24.2512 5.91916 25.7637C4.51086 26.9417 4.15461 28.3555 5.02662 30.0834C9.42132 38.7902 14.6518 46.9361 20.9622 54.3744C22.1981 55.8316 23.7678 55.6079 25.2236 54.943C28.658 53.3869 32.075 51.7971 35.4101 50.0447C36.6756 49.3793 37.4442 49.6887 38.4591 50.4386C40.3578 51.8336 42.3125 53.1556 44.358 54.3292C46.5472 55.588 48.3639 54.4458 48.1751 51.9176C47.9615 49.0958 47.6481 46.2679 47.1221 43.4952C46.8082 41.836 47.3168 40.7568 48.5527 39.8395C51.0466 37.9968 53.559 36.1773 56.0297 34.3056C59.1481 31.9468 59.3661 31.0514 57.0447 27.8368C52.388 21.3902 47.6465 14.9921 42.8166 8.67384C41.8263 7.38205 40.384 6.29806 38.9281 5.56685C38.097 5.15515 36.6239 5.321 35.7651 5.80518C30.4785 8.76913 25.2253 11.8109 20.067 14.9957C17.0357 16.8672 14.1998 19.0677 11.2748 21.1206C11.335 21.1962 11.3905 21.2659 11.4449 21.3461L11.4507 21.3415ZM53.7259 30.5641C53.2827 30.9739 52.965 31.3027 52.6046 31.5897C50.1127 33.5542 47.5931 35.4839 45.1198 37.4717C43.1418 39.0557 42.0568 40.9262 42.9054 43.6509C43.3903 45.2026 43.3873 46.9051 43.6026 48.5478C43.4446 48.6356 43.2807 48.7281 43.1227 48.8159C42.0187 47.966 40.7775 47.2539 39.8503 46.2443C38.3155 44.5786 36.7856 44.6851 34.9543 45.63C31.7239 47.2991 28.4449 48.8834 25.1557 50.419C24.6642 50.6487 23.7855 50.7023 23.416 50.417C22.4673 49.6905 21.5502 48.8249 20.8969 47.8252C17.6062 42.8082 14.2876 37.8039 11.2015 32.6621C8.72788 28.5524 8.89281 28.4971 12.5466 25.4746C19.981 19.3383 28.4964 14.906 36.6938 9.96688C37.9479 9.21557 38.5588 9.98302 39.173 10.8143C43.9862 17.3263 48.7774 23.8464 53.7409 30.5711L53.7259 30.5641Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M27.134 26.5234C25.928 26.1062 24.7559 25.624 23.5462 25.2857C20.9229 24.5435 18.3264 24.6822 15.8653 25.9099C13.3984 27.1422 12.6786 29.6623 14.3771 31.7961C15.3999 33.081 16.7096 34.261 18.1235 35.0826C23.5703 38.2503 29.6344 39.6159 35.7395 40.8065C37.5503 41.1602 38.9077 40.3836 39.1594 38.5401C39.8034 33.8008 40.5497 29.0467 40.7586 24.2738C40.9662 19.559 37.6427 16.5532 33.1786 16.7918C30.5183 16.9339 28.7522 18.2352 28.0611 20.8749C27.5925 22.6727 27.4428 24.5489 27.134 26.5234ZM17.7475 29.8255C19.7708 28.6804 21.4857 28.854 23.1181 29.5206C24.9163 30.2643 26.5639 31.4033 28.3996 32.0032C29.3122 32.3025 30.7031 32.0691 31.4751 31.5116C32.0227 31.1137 32.0422 29.778 32.0455 28.8635C32.055 26.8708 31.7535 24.8693 31.8988 22.892C31.9492 22.2156 32.9524 21.0656 33.5059 21.0808C34.4297 21.0959 35.4285 21.754 36.2092 22.3768C36.5775 22.6725 36.6927 23.5211 36.6344 24.0804C36.2044 28.1459 35.7013 32.2032 35.206 36.3776C28.9998 35.2391 23.1009 33.723 17.7475 29.8255Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j43weo\",\"data-framer-name\":\"Review 6 \u2022 Tablet\",layoutDependency:layoutDependency,layoutId:\"KLmqi_Bfx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:'\"Creative Milkshake has proven to be a great sparring partner to discuss any new angles, audiences, or concepts we could try out. They understood our product quickly and were able to get into the minds of our customers.\"'})}),className:\"framer-1v9eky\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"SCt7IKpgu\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:TFysv1fhc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Laurence Dochy\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"UGC Specialist, Loop Earplugs\"})]}),className:\"framer-15qp5ob\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"Y_x1MESIM\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12b9eun\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:60,layoutDependency:layoutDependency,layoutId:\"WkpWAufub\",svg:'<svg width=\"60\" height=\"56\" viewBox=\"0 0 60 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M33.7715 50.3186C26.7233 51.8526 19.6809 50.8728 13.4813 46.0392C5.05321 39.4674 3.10746 27.7908 8.68054 18.0774C13.927 8.92718 24.9525 3.65514 35.2888 5.35972C43.937 6.78895 50.1973 11.4748 52.9352 19.9314C55.5826 28.1106 53.3928 35.4768 47.9108 41.9015C44.29 46.1435 39.6441 48.7998 33.7715 50.3186ZM49.2394 20.5285C47.8013 15.5638 43.4918 11.3667 36.9598 9.55429C26.9286 6.78238 16.1001 11.8097 11.4398 20.9318C5.72426 32.1115 11.7864 44.4257 24.1293 46.7864C29.1357 47.7455 33.8904 46.9182 38.4197 44.633C47.0795 40.2532 51.8005 30.8159 49.2411 20.535L49.2394 20.5285Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M38.8395 29.4404C38.6841 31.4961 38.8029 33.6157 38.3191 35.5862C37.4663 39.0098 34.4015 40.8447 31.0828 39.6864C28.7823 38.8875 26.7245 37.302 24.6751 35.8889C23.7308 35.239 23.563 34.0388 24.4608 33.1372C25.3324 32.27 26.3012 32.4881 27.2767 33.207C28.602 34.1802 29.9322 35.229 31.4167 35.8903C33.2624 36.7123 34.602 35.9025 34.851 33.8862C35.023 32.5102 34.901 31.0752 34.7151 29.6911C34.5407 28.353 34.1774 26.9575 35.9308 26.5466C37.7171 26.1274 38.0262 27.5853 38.355 28.8708C38.3993 29.0481 38.4306 29.2287 38.4701 29.4142C38.5981 29.424 38.7196 29.4355 38.8477 29.4453L38.8395 29.4404Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M30.4671 21.4452C29.8134 20.897 28.6853 20.3769 28.6408 19.7809C28.5848 19.0831 29.3643 17.8482 29.9898 17.6986C30.6137 17.5424 31.8733 18.2809 32.1476 18.931C32.3842 19.4859 31.6161 20.4598 31.2896 21.2463C31.0138 21.3154 30.7445 21.3828 30.4687 21.4518L30.4671 21.4452Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M21.8697 23.8762C20.9522 24.8665 20.4894 25.8058 19.9246 25.8635C19.3139 25.9326 18.6109 25.1874 17.9475 24.7951C18.3824 24.1071 18.6809 23.1251 19.2998 22.8376C19.7497 22.6273 20.6316 23.3347 21.8681 23.8696L21.8697 23.8762Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gsmbki\",\"data-framer-name\":\"Vector 515\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:343,layoutDependency:layoutDependency,layoutId:\"QDyCn5jX_\",svg:'<svg width=\"343\" height=\"17\" viewBox=\"-2 -2 343 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.25 0.516846C106.676 0.516846 323.043 0.516846 337.11 0.516846C354.694 0.516846 171.456 6.7292 126.11 12.9417\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n310m5\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:93,intrinsicWidth:78,layoutDependency:layoutDependency,layoutId:\"OtxZ7jgFy\",svg:'<svg width=\"78\" height=\"93\" viewBox=\"0 0 78 93\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M48.9737 52.7533C51.4566 52.3807 52.6659 50.8339 53.2437 48.997C54.0535 46.4259 54.5256 43.7478 55.0659 41.0944C55.8118 37.3994 56.2506 33.6252 57.2515 30.0027C58.6893 24.8159 62.1038 21.0921 66.9554 18.7511C68.6807 17.9186 70.4608 17.1936 72.2296 16.4751C73.1416 16.1063 74.067 16.0854 74.5393 17.1588C75.0407 18.2942 74.4169 18.991 73.4346 19.4328C71.8822 20.1343 70.3008 20.7738 68.7597 21.4899C64.1675 23.6238 61.2316 27.2031 60.013 32.0638C59.2598 35.0969 58.8544 38.2225 58.3677 41.3217C57.8245 44.7361 57.465 48.1822 55.7927 51.311C54.2745 54.1477 52.0758 55.8841 48.7641 56.1024C48.242 56.1329 47.7473 56.6481 47.2535 56.9519C47.1703 57.002 47.1357 57.1271 47.0817 57.218C43.3546 64.0238 38.263 64.4938 32.1656 60.5011C30.0763 59.132 28.0542 57.6526 25.9306 56.3452C23.596 54.9102 21.1351 55.0504 18.7611 56.2804C14.6812 58.3983 12.3168 61.7895 11.8831 66.3655C11.4679 70.7561 12.2828 74.9563 14.346 78.8864C14.5462 79.2612 14.8894 79.6544 14.8701 80.03C14.8401 80.6527 14.7454 81.5922 14.3625 81.794C13.8525 82.0588 13.0225 81.8117 12.3695 81.627C12.0836 81.5479 11.8495 81.1079 11.6881 80.7805C8.35724 74.1119 6.99148 67.2525 10.3357 60.2176C12.3947 55.8934 15.9873 53.2078 20.7085 52.2274C23.4491 51.6606 26.0058 52.3972 28.3239 53.8777C30.6566 55.3681 32.8911 57.0255 35.2401 58.4915C38.8221 60.7298 41.6643 59.9698 43.8733 56.3682C44.4215 55.4792 44.4169 54.9605 43.4714 54.2966C37.6037 50.204 34.8096 44.3555 34.1776 37.4029C34.0481 35.9665 34.3077 34.4032 34.7504 33.0194C35.8053 29.737 39.2054 28.5044 42.2629 30.1145C44.7167 31.4037 46.4116 33.412 47.6138 35.859C49.9729 40.631 50.3766 45.6427 49.3746 50.8116C49.2652 51.3738 49.1378 51.9311 48.964 52.7468L48.9737 52.7533ZM45.9075 52.1334C46.1818 49.718 46.5648 47.7925 46.5852 45.8705C46.627 41.7305 45.6922 37.8453 42.8506 34.6423C41.8046 33.4659 40.5686 32.2253 38.8991 32.9328C37.2963 33.6145 37.3465 35.3791 37.419 36.8478C37.6801 42.124 39.7705 46.6022 43.5649 50.269C44.1481 50.8307 44.8375 51.287 45.9027 52.1301L45.9075 52.1334Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mvizyt\",\"data-framer-name\":\"Review 7 \u2022 Tablet\",layoutDependency:layoutDependency,layoutId:\"vkoOCuR_T\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CWe've worked with other UGC agencies and creators and none have been as professional as Creative Milkshake, we look forward to continuing our partnership for a long time.\u201D\"})}),className:\"framer-1e0h784\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"G39D5SviE\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:UJZa9XDlG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Laura\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Blosm Brands (Agency)\"})]}),className:\"framer-e1rmna\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"hKZvQgOMH\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uevpcy\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"V6JPpnbqz\",svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M64.7611 23.0298C58.7376 15.8222 50.7739 12.8327 41.5199 13.4507C29.8907 14.2251 20.6596 19.4785 14.4104 29.4371C8.12944 39.4501 9.41455 50.7178 15.7631 58.0572C20.9168 64.017 27.6684 66.7444 35.4374 67.0626C40.6091 67.2808 45.5854 66.3177 50.2877 64.1679C58.5051 60.4167 64.7781 54.6482 67.9551 46.0417C70.9556 37.9213 70.0268 30.2064 64.7529 23.0288L64.7611 23.0298ZM26.0832 34.8824C29.3933 33.9967 32.5153 33.3541 35.488 32.3018C38.1647 31.3545 40.6953 29.9729 43.2722 28.7552C43.944 28.4386 44.46 28.1693 45.0111 28.999C48.0091 33.5064 50.1653 38.3594 51.0644 43.719C51.1228 44.0884 50.7059 44.836 50.3735 44.9323C45.5895 46.2937 41.1611 48.3484 37.1111 51.2489C36.7871 51.4794 35.902 51.3327 35.547 51.0391C34.4984 50.1604 33.5684 49.1299 32.618 48.1302C29.0246 44.3318 26.8393 39.8498 26.0796 34.8778L26.0832 34.8824ZM33.5269 53.8822C31.0533 56.353 28.7323 58.7344 26.3112 61.0161C26.0149 61.2917 25.1171 61.2141 24.6582 60.9868C20.5244 58.9364 17.4157 55.7972 15.4829 51.6294C12.6655 45.5584 13.1708 39.5107 15.864 33.5416C17.7582 33.8421 19.4726 34.2161 21.2082 34.3513C22.334 34.4362 22.7236 34.888 22.9307 35.9416C23.8638 40.756 25.7298 45.1611 29.0166 48.8801C30.4881 50.5477 31.9929 52.1819 33.5269 53.8822ZM54.5638 43.6932C54.5315 43.6518 54.4468 43.5623 54.4287 43.4726C53.2855 37.6292 51.1464 32.1998 47.786 27.2564C47.5996 26.9794 47.8898 26.0788 48.2326 25.7965C50.4238 23.9609 52.6592 22.1724 54.9592 20.4669C55.3855 20.1491 56.2912 20.0278 56.7327 20.2613C63.9624 24.105 68.1635 34.4091 65.7062 42.2095C65.5894 42.5822 65.0562 43.0575 64.691 43.0831C61.3676 43.3346 58.0425 43.4984 54.572 43.6943L54.5638 43.6932ZM25.472 31.2025C25.373 30.4202 25.2726 29.7502 25.2014 29.0796C25.0278 27.4516 25.0299 25.7828 24.6376 24.2068C24.4175 23.3264 24.5705 22.8957 25.2335 22.5489C27.9326 21.1174 30.5731 19.5537 33.3734 18.347C36.2224 17.1171 36.2989 17.2722 38.2194 19.6862C39.6778 21.527 41.1086 23.3893 42.6897 25.4159C36.9699 28.3225 31.7103 30.9738 25.4684 31.1979L25.472 31.2025ZM38.799 54.0961C42.9796 51.116 47.2348 49.0483 52.4295 47.9C52.8322 51.3128 53.3182 54.4903 53.5474 57.6902C53.6636 59.3112 51.0132 61.09 49.4619 60.5072C45.6154 59.0625 42.1895 56.8747 38.7944 54.0997L38.799 54.0961ZM29.7485 62.9431C29.991 62.3611 30.0604 61.8328 30.3587 61.5408C32.0209 59.9105 33.7103 58.296 35.4824 56.7875C35.7664 56.5437 36.6423 56.6976 37.0633 56.9619C39.2055 58.321 41.2854 59.7807 43.4006 61.1907C43.9816 61.5746 44.599 61.9005 45.5467 62.4504C40.0591 64.0496 35.03 64.2611 29.7531 62.9395L29.7485 62.9431ZM39.9751 16.827C44.5201 16.356 48.4198 16.7292 52.5856 18.2509C50.2274 20.0908 48.2142 21.6985 46.1434 23.2326C45.8911 23.4221 45.1291 23.3571 44.9448 23.1304C43.3371 21.1838 41.8042 19.1715 39.9751 16.827ZM57.0818 56.0663C56.4817 52.9038 55.9523 50.0789 55.3738 47.0107C58.3651 46.7515 61.1756 46.5075 64.3478 46.2332C62.5965 50.304 60.2006 53.2922 57.0854 56.0709L57.0818 56.0663ZM21.1304 25.9132C21.2812 25.9734 21.4365 26.03 21.5872 26.0903C21.7598 27.7265 21.9288 29.3582 22.131 31.2603C20.4894 30.9702 19.1364 30.7366 17.4046 30.4353C18.829 28.7091 19.9802 27.307 21.1304 25.9132Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cn8pho\",\"data-framer-name\":\"Vector 548\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:79,intrinsicWidth:287,layoutDependency:layoutDependency,layoutId:\"g5FOCllzw\",svg:'<svg width=\"287\" height=\"79\" viewBox=\"-2 -2 287 79\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M259.411 53.0907C224.841 65.2759 131.889 83.2056 36.6319 57.4425C-82.4395 25.2387 122.414 -20.8911 236.364 10.4424C313.158 31.5587 278.355 62.562 243.786 74.167\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dffm5t\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:65,intrinsicWidth:67,layoutDependency:layoutDependency,layoutId:\"bzFtmQp9R\",svg:'<svg width=\"67\" height=\"65\" viewBox=\"0 0 67 65\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.14852 40.8679C9.081 42.2325 8.52953 43.8274 9.05899 44.8943C9.99249 46.7815 11.8585 46.2153 13.3357 45.3347C18.1604 42.4465 22.9291 39.4748 27.7234 36.5339C36.0734 31.4137 44.4476 26.3385 52.7481 21.1426C53.799 20.4837 54.7117 19.3427 55.2402 18.2072C55.4902 17.6772 54.8442 16.1232 54.3138 15.9513C53.2311 15.6126 51.7235 15.4816 50.7875 15.981C47.1289 17.9728 43.6149 20.2343 40.059 22.4136C30.2445 28.4298 20.4223 34.4524 10.6077 40.4686C10.374 40.6095 10.1402 40.7504 9.91274 40.8989C9.658 40.8886 9.41097 40.8719 9.16259 40.8693L9.14852 40.8679Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M30.5537 10.4089C22.6582 17.8887 14.7705 25.3621 6.8892 32.8433C6.4285 33.2749 5.79345 33.7465 5.69197 34.2837C5.47545 35.4989 5.53775 36.7694 5.48244 38.0072C6.80109 38.0348 8.49458 38.5957 9.3775 37.9846C11.5224 36.5148 13.2988 34.5192 15.1996 32.7062C22.0838 26.1377 28.9538 19.5679 35.8316 12.9917C37.1148 11.7656 37.5065 10.3541 36.2376 8.92478C34.9433 7.46458 33.5149 7.83845 32.1582 8.94381C31.6026 9.40176 31.0393 9.86607 30.4837 10.324C30.5091 10.3549 30.5346 10.3857 30.5537 10.4089Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M14.2338 48.1705C14.1147 49.111 13.5922 50.3322 13.964 51.1921C14.2876 51.9621 15.5225 52.5641 16.4612 52.7753C17.2618 52.9447 18.227 52.512 19.0914 52.2401C29.4067 49.0639 39.7296 45.8814 50.0489 42.663C50.9057 42.3974 51.9327 42.134 52.4482 41.5017C53.0591 40.765 53.7078 39.4138 53.4119 38.7246C53.0401 37.8648 51.7939 37.2333 50.7947 36.8386C50.2338 36.6141 49.3803 36.9936 48.693 37.1974C38.1058 40.4681 27.5313 43.7543 16.9632 47.0482C16.1936 47.2938 15.4632 47.6496 14.2428 48.1501L14.2338 48.1705Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bjrr0e\",\"data-framer-name\":\"Review 8 \u2022 Tablet\",layoutDependency:layoutDependency,layoutId:\"NHOhpz7lt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\\\"What I love most is that it's a hands-off approach for us. Everything is taken care of, and I'm part of the entire process. They take the least amount of my time but produce great content every time.\\\"\"})}),className:\"framer-uydhka\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"k13MPcVJ2\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:VoQKRkC6J,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Nino Levicar\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Marketing Manager, Jimmy Joy\"})]}),className:\"framer-1xcovt7\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"yFKBdZW1Z\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tfxbx9\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:75,intrinsicWidth:53,layoutDependency:layoutDependency,layoutId:\"N4TMk8heY\",svg:'<svg width=\"53\" height=\"75\" viewBox=\"0 0 53 75\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M45.2999 40.8659C44.8349 41.2952 44.4491 41.7556 43.9664 42.073C40.0303 44.6554 36.6977 47.7728 34.8511 52.2313C34.7062 52.5825 34.5963 52.9504 34.4628 53.3086C34.1822 54.0651 33.965 54.9224 32.8663 54.7408C32.0844 54.6098 31.29 53.4353 31.3397 52.5743C31.4147 51.3564 31.5764 50.1366 31.5432 48.9199C31.4518 45.4789 30.3001 42.4263 28.0651 39.7873C26.5473 37.9986 26.7455 37.2622 28.5264 35.7599C31.9877 32.8359 35.0859 29.5916 36.9904 25.371C37.1759 24.9555 37.7401 24.4322 38.1081 24.4471C38.5487 24.4656 39.068 24.9339 39.3675 25.3434C39.6671 25.7529 39.7931 26.3171 39.8997 26.8338C40.8042 31.3672 42.1979 35.7057 44.8351 39.5722C45.0552 39.8945 45.1121 40.3264 45.2999 40.8659ZM42.1131 40.4107C40.5811 36.5459 39.1297 32.8766 37.77 29.4484C35.2614 32.2097 32.5891 35.1583 29.8199 38.21C32.2798 40.9608 33.5885 44.442 33.9654 48.6565C36.2447 45.0266 39.1574 42.5388 42.1141 40.4066L42.1131 40.4107Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M2.99719 53.8841C3.47226 53.2973 3.69852 52.7789 4.08965 52.5788C7.49762 50.8345 10.0328 48.0706 12.6514 45.3948C13.1126 44.9257 13.8308 44.39 14.4074 44.418C15.3122 44.4647 15.4915 45.3822 15.6722 46.218C16.3574 49.3843 17.9915 52.0071 20.3822 54.1721C20.9764 54.7093 21.6372 55.2012 22.1259 55.8223C22.4061 56.1842 22.5919 56.8269 22.4695 57.2308C22.3728 57.5413 21.7275 57.7006 21.3159 57.896C21.0215 58.0318 20.6201 58.0309 20.412 58.2425C18.2005 60.4585 15.9809 62.6725 13.8476 64.9624C13.1891 65.6716 12.8273 66.6513 12.2506 67.4568C11.9895 67.8248 11.5517 68.2862 11.1813 68.301C10.8149 68.3168 10.2547 67.8953 10.0878 67.529C9.72391 66.7204 9.40651 65.8405 9.32517 64.9669C9.07713 62.2501 8.50876 59.6503 6.68088 57.536C5.92232 56.659 4.87691 56.0361 4.01378 55.2389C3.61811 54.8722 3.34834 54.3702 2.99214 53.8873L2.99719 53.8841ZM6.6615 54.1201C9.64328 56.571 11.0825 59.8964 11.6106 63.7135C14.1516 61.1323 16.5735 58.6751 19.0534 56.1533C16.4671 53.8617 14.6672 51.1708 13.6931 47.9645C11.2753 50.0815 9.03611 52.0407 6.6615 54.1201Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M14.8664 14.9285C15.2143 14.4638 15.4077 14.1841 15.622 13.9264C17.0974 12.1729 18.6774 10.4909 20.0232 8.64311C20.9032 7.43613 21.3862 5.94421 22.1717 4.65951C22.5847 3.98509 23.1789 3.33041 23.8479 2.93463C24.5613 2.51445 25.2368 2.97953 25.4274 3.75283C26.2756 7.24567 28.4421 9.88199 30.8491 12.3918C31.5087 13.0778 32.1237 13.8271 32.6416 14.6232C33.4148 15.8145 32.9243 16.942 31.58 17.3261C31.2561 17.4207 30.9292 17.5663 30.6596 17.7639C27.7234 19.9008 25.1794 22.382 23.4647 25.657C23.1032 26.3519 22.3771 26.903 21.72 27.3792C21.1032 27.8301 20.295 27.4168 20.1524 26.6415C20.0798 26.2406 20.1402 25.8053 20.2124 25.3942C20.6252 23.0744 20.1505 20.9537 18.6386 19.1577C17.7822 18.1418 16.717 17.3028 15.8014 16.3381C15.4151 15.9304 15.1702 15.3952 14.8664 14.9285ZM29.8702 15.092C27.9072 12.5669 25.8571 9.93122 23.9213 7.43823C22.0514 9.8228 20.0362 12.3901 17.9533 15.0457C20.1884 16.9462 21.995 19.1722 22.564 21.9968C25.0024 19.6944 27.4349 17.3994 29.8743 15.0929L29.8702 15.092Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bol30w\",\"data-framer-name\":\"Layer 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:85,intrinsicWidth:75,layoutDependency:layoutDependency,layoutId:\"yTMacmscO\",svg:'<svg width=\"75\" height=\"85\" viewBox=\"0 0 75 85\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M23.0449 61.3653L23.1382 61.3902L23.2212 60.9586C23.5113 59.4506 23.5337 57.9306 23.2753 56.4115C23.0148 54.8807 22.4192 53.5106 21.746 52.1923C21.0383 50.8033 20.3793 49.4566 19.901 48.0015C19.417 46.5289 19.0417 45.1074 18.7201 43.6341C18.0982 40.7716 17.8212 37.823 18.404 34.9798L18.404 34.9798C18.9428 32.349 20.1038 29.8755 21.7174 27.7213L21.7175 27.7212C24.9606 23.3877 29.9968 20.7293 35.3429 19.9921L35.343 19.9921C38.0388 19.6199 40.8274 19.7074 43.4821 20.2833L43.4825 20.2833C44.9587 20.6022 46.3847 21.08 47.6715 21.8241C48.9264 22.5498 50.0387 23.6034 51.1652 24.6705L51.2443 24.7455C52.3861 25.8268 53.5419 27.0051 54.3443 28.3708L54.3446 28.3711C55.0491 29.5672 55.5259 30.884 55.8135 32.2507L55.8136 32.2512C56.4021 35.0307 56.1646 37.9599 55.4044 40.7124L55.4042 40.7134C55.317 41.0323 55.3727 41.3331 55.5346 41.5707C55.6899 41.7989 55.9256 41.9446 56.167 42.0093C56.4084 42.074 56.6851 42.0655 56.9339 41.9469C57.1925 41.8235 57.3933 41.5934 57.4806 41.2751C57.4806 41.2748 57.4807 41.2745 57.4808 41.2742L57.0862 41.1663M23.0449 61.3653L22.4692 24.2376C26.6255 20.2094 32.3575 18.1441 38.0987 18.036C41.0846 17.9806 44.1856 18.3884 46.9529 19.5438M23.0449 61.3653C22.9572 61.4917 22.8424 61.5924 22.7064 61.6625C22.4583 61.7903 22.1794 61.7965 21.9395 61.7313C21.466 61.6028 20.992 61.1364 21.1216 60.4573L21.1217 60.4569C21.4452 58.7714 21.3267 57.0012 20.8019 55.3981C20.5393 54.596 20.1699 53.8311 19.7719 53.0525C19.6969 52.9059 19.6208 52.7584 19.5442 52.6101C19.2182 51.979 18.8841 51.3321 18.6003 50.6665L18.6002 50.6662C17.2113 47.4016 16.3222 43.7574 16.0108 40.2304C15.4706 34.1285 17.8058 28.1918 22.1844 23.944L22.1845 23.9439C26.4254 19.8336 32.2614 17.7367 38.091 17.6269L38.0911 17.6269C41.1159 17.5708 44.2765 17.983 47.1102 19.1661M23.0449 61.3653L47.1102 19.1661M57.0862 41.1663C58.5321 35.9243 58.1221 29.9367 54.5198 25.6324C53.4571 24.3634 52.2102 23.2153 50.9721 22.1201C49.7341 21.0249 48.4511 20.166 46.9529 19.5438M57.0862 41.1663C56.86 41.9933 55.5726 41.6484 55.7988 40.8213M57.0862 41.1663L55.7988 40.8213M46.9529 19.5438L47.1105 19.1662C47.1104 19.1662 47.1103 19.1661 47.1102 19.1661M46.9529 19.5438L47.1098 19.1659C47.1099 19.166 47.11 19.166 47.1102 19.1661M55.7988 40.8213C56.5723 38.0207 56.8188 35.0237 56.2138 32.1665C55.9185 30.7628 55.4273 29.4032 54.6971 28.1635L55.7988 40.8213Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M46.4025 55.6197L46.1273 55.317C46.0924 55.3487 46.0574 55.3805 46.0224 55.4123C44.6637 56.6474 43.2518 57.9308 42.1805 59.5149C41.5621 60.4279 41.0833 61.4211 40.6539 62.4174C40.4594 62.8687 40.2802 63.3076 40.1031 63.7411C39.879 64.2899 39.6583 64.8303 39.4146 65.3764L39.4145 65.3766C39.1365 66.0005 39.4751 66.5697 39.8943 66.8172C40.1072 66.943 40.3783 67.0124 40.6516 66.9509C40.9404 66.886 41.1756 66.6871 41.3099 66.3857C41.5652 65.8144 41.8005 65.2447 42.0333 64.6806C42.521 63.4993 42.9984 62.3429 43.6289 61.2501C44.5357 59.6784 46.0219 58.3215 47.4756 56.9961C50.5014 54.2426 53.1008 51.1318 55.0295 47.4843L55.0296 47.4841C56.1263 45.4073 56.9977 43.215 57.6356 40.956L57.6359 40.9548C57.7248 40.6363 57.6705 40.3351 57.509 40.0968C57.3541 39.8681 57.1183 39.7224 56.8769 39.6577C56.6355 39.593 56.3589 39.6015 56.11 39.7195C55.9664 39.7876 55.8404 39.8885 55.7414 40.0192L55.6657 39.9989L55.5563 40.388C54.4781 44.2258 52.6632 47.8474 50.2137 50.9938L50.2134 50.9942C48.9971 52.5603 47.6036 53.9674 46.1265 55.3177L46.4025 55.6197ZM46.4025 55.6197C47.8888 54.261 49.3007 52.8365 50.5365 51.2452L39.7882 65.5431C40.031 64.999 40.2588 64.4417 40.4874 63.8826C41.0715 62.4534 41.6608 61.0116 42.5195 59.7441C43.5628 58.2013 44.9428 56.9467 46.3118 55.7021C46.3421 55.6746 46.3723 55.6472 46.4025 55.6197Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M22.1506 62.1676L22.1569 62.144C24.5371 63.9843 27.5425 64.7307 30.314 65.3878L30.3145 65.388C33.61 66.1645 36.9644 66.6839 40.3331 66.9573L40.3337 66.9574C40.6634 66.9837 40.9506 66.8725 41.1482 66.6545C41.336 66.4474 41.4123 66.1786 41.4099 65.9302C41.4051 65.4401 41.0752 64.8644 40.3886 64.8096C37.2444 64.5522 34.1247 64.0682 31.053 63.3548L31.0528 63.3547C31.0013 63.3428 30.9497 63.3309 30.8981 63.3189C28.1242 62.6766 25.2225 62.0047 23.1401 60.1831L23.14 60.1831C22.6178 59.7264 21.9753 59.8996 21.6251 60.2458C21.448 60.4209 21.3136 60.6656 21.2997 60.9444C21.2851 61.2373 21.4066 61.5201 21.6564 61.7375L22.1506 62.1676Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M21.4836 63.0942L21.869 63.2313C21.8588 63.26 21.8517 63.317 21.8991 63.4269C21.9474 63.539 22.0383 63.6707 22.1663 63.8136C22.4219 64.099 22.7596 64.358 22.9731 64.5156L22.9742 64.5165C24.3102 65.5104 25.9312 66.0342 27.5864 66.5691C27.67 66.5961 27.7538 66.6232 27.8376 66.6504L27.8378 66.6504C29.7045 67.2562 31.5778 67.8263 33.4771 68.2487C35.3763 68.6711 37.3139 68.9494 39.2419 68.9302C39.5859 68.9262 39.8011 68.8687 39.9088 68.7883C39.9521 68.756 39.9791 68.7194 39.9955 68.6666C40.0137 68.6079 40.0252 68.5063 39.9932 68.3401L39.9931 68.3397C39.9433 68.0798 39.7759 67.85 39.5075 67.6264C39.2642 67.4236 38.9767 67.2563 38.6858 67.0871C38.651 67.0669 38.6162 67.0466 38.5815 67.0263L38.5814 67.0262C38.2957 66.8591 38.1256 66.6047 38.075 66.3218C38.0264 66.0502 38.0922 65.781 38.2189 65.5656C38.3455 65.3501 38.5488 65.1616 38.8099 65.0721C39.0817 64.979 39.3864 65.0042 39.6711 65.1724C40.6598 65.7518 41.8663 66.5638 42.1129 67.9887L42.1131 67.9895C42.3264 69.2362 41.7283 70.5727 40.3928 70.9528C39.7857 71.1256 39.1258 71.1483 38.4966 71.1188C38.0314 71.097 37.5597 71.0449 37.1281 70.9973C36.9792 70.9808 36.8351 70.9649 36.6976 70.951L36.6962 70.9508C35.4362 70.8182 34.1882 70.6095 32.9544 70.3347L32.9542 70.3347C30.4633 69.7786 28.0156 69.0112 25.6233 68.1765L25.6228 68.1763C24.5008 67.783 23.3474 67.324 22.3088 66.6629C21.4523 66.1177 20.4657 65.3734 19.9821 64.3241L19.9815 64.3229C19.7522 63.8213 19.6776 63.3275 19.7712 62.8465C19.8641 62.3691 20.1152 61.9423 20.4722 61.558C20.7389 61.2704 21.0873 60.9664 21.481 60.7371C21.8722 60.5092 22.3373 60.3382 22.8257 60.3629L23.3312 60.3886L23.3023 60.4962C23.676 60.6994 23.8591 61.1059 23.8621 61.4696C23.8641 61.719 23.7865 61.9866 23.6018 62.1947C23.4084 62.4127 23.1256 62.5326 22.7951 62.5166L22.8148 62.108M21.4836 63.0942C21.6306 62.6829 22.369 62.0897 22.8148 62.108M21.4836 63.0942L21.8688 63.2319C21.9029 63.1365 22.0502 62.9446 22.2853 62.7652C22.3945 62.6819 22.5058 62.6146 22.6051 62.5706C22.7099 62.5242 22.774 62.5158 22.7981 62.5168L22.8148 62.108M21.4836 63.0942C21.2596 63.7241 22.3 64.5272 22.73 64.8448C24.122 65.8803 25.8031 66.4232 27.4412 66.9522C27.5315 66.9813 27.6216 67.0105 27.7115 67.0396C29.5817 67.6465 31.4697 68.2214 33.3883 68.6481C35.3068 69.0747 37.2772 69.359 39.2464 69.3393C39.9707 69.331 40.5584 69.1114 40.3949 68.2627C40.2535 67.5248 39.5012 67.0876 38.892 66.7337C38.8568 66.7132 38.8221 66.693 38.788 66.6731C38.0485 66.2404 38.7252 65.088 39.4636 65.525C40.4613 66.1097 41.4986 66.8383 41.7098 68.0585C41.8962 69.1479 41.3712 70.249 40.2808 70.5593C39.3331 70.8291 38.1925 70.7031 37.1841 70.5918C37.0323 70.575 36.8836 70.5586 36.739 70.5439C35.4955 70.4131 34.2629 70.207 33.0433 69.9354C30.5741 69.3841 28.1429 68.6223 25.7581 67.7902C24.644 67.3996 23.5264 66.953 22.5285 66.3177C21.6798 65.7775 20.7841 65.0868 20.3536 64.1528C19.9535 63.2775 20.1321 62.5251 20.7719 61.8365C21.1702 61.4068 21.757 60.9491 22.3708 60.8113L22.4086 60.67L22.4098 60.6657L22.8041 60.7713L22.8148 62.108\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M20.9989 63.4161C21.542 63.4451 21.9088 63.8633 22.0219 64.2736C22.0875 64.5117 22.0841 64.792 21.9522 65.0398C21.8125 65.3023 21.5563 65.4752 21.2292 65.5225L21.2289 65.5226C21.113 65.5393 20.9299 65.634 20.7353 65.8128C20.5462 65.9865 20.4048 66.1862 20.3463 66.3294C20.3037 66.4339 20.3214 66.5819 20.5608 66.8082C20.7889 67.0239 21.1184 67.203 21.3559 67.2995L21.3574 67.3001C22.5364 67.7847 23.7673 68.1665 25.0056 68.5505C25.5727 68.7263 26.1414 68.9027 26.7073 69.0896C27.038 69.1988 27.3658 69.3095 27.6919 69.4196C29.1308 69.9053 30.5385 70.3805 32.0252 70.6757C33.8697 71.042 35.7425 71.3288 37.6115 71.5773L37.6122 71.5774C37.7862 71.6008 37.9662 71.6299 38.1432 71.6584C38.1659 71.6621 38.1886 71.6657 38.2111 71.6694C38.4124 71.7018 38.611 71.733 38.8083 71.7572C39.2057 71.8059 39.5735 71.8227 39.9016 71.7694L39.9018 71.7693C40.0352 71.7477 40.0746 71.7051 40.0884 71.6871C40.1085 71.6608 40.1338 71.6051 40.1375 71.4912C40.1456 71.246 40.0529 70.9322 39.956 70.6214L40.3466 70.4996M20.9989 63.4161L20.8204 63.8326C21.6587 63.7077 22.0175 64.995 21.1706 65.1176C20.7017 65.1852 20.1416 65.748 19.9674 66.175C19.6853 66.8675 20.671 67.4627 21.2018 67.6786C22.398 68.1702 23.6583 68.5611 24.9057 68.948C25.4685 69.1226 26.0286 69.2963 26.579 69.4781C26.9039 69.5854 27.2279 69.6948 27.5517 69.8042C28.9921 70.2905 30.4303 70.7762 31.9456 71.077C33.8015 71.4456 35.6835 71.7337 37.5576 71.9829C37.726 72.0056 37.9003 72.0337 38.0781 72.0624C38.702 72.163 39.3684 72.2705 39.9672 72.1732C40.823 72.0346 40.5297 71.0867 40.3466 70.4996M20.9989 63.4161L20.9705 63.3837L20.7508 63.4157C20.3266 63.4776 19.9479 63.6909 19.6362 63.9337C19.3219 64.1785 19.0506 64.473 18.8391 64.7352M20.9989 63.4161L20.8098 63.8206C20.1541 63.9162 19.557 64.4967 19.1575 64.9922M40.3466 70.4996L39.9565 70.6229C39.8567 70.307 39.901 70.0033 40.0601 69.7603C40.2122 69.528 40.4485 69.3813 40.6894 69.3158C41.1669 69.1861 41.8133 69.3568 42.0222 70.0276M40.3466 70.4996C40.0878 69.6806 41.3771 69.3316 41.6317 70.1494M42.0222 70.0276C42.0223 70.0277 42.0223 70.0278 42.0223 70.0278L41.6317 70.1494M42.0222 70.0276C42.0222 70.0275 42.0222 70.0274 42.0222 70.0274L41.6317 70.1494M42.0222 70.0276C42.1874 70.5561 42.3199 71.1811 42.2653 71.7858C42.2095 72.4051 41.9547 73.0139 41.346 73.4505L41.3452 73.4511C40.8412 73.8108 40.2703 73.9175 39.7321 73.9284C39.295 73.9373 38.8455 73.8823 38.4516 73.834C38.3692 73.8239 38.2892 73.8141 38.2123 73.8053L38.2109 73.8051C35.8379 73.5243 33.4626 73.1843 31.0843 72.6675C29.2919 72.2781 27.532 71.6666 25.8097 71.0682C25.2371 70.8692 24.6686 70.6717 24.1044 70.4843L24.104 70.4841C23.7609 70.3697 23.4102 70.2579 23.0563 70.145C22.2749 69.8958 21.4776 69.6414 20.7099 69.343M41.6317 70.1494C41.9487 71.1634 42.0925 72.4116 41.1076 73.1181C40.3563 73.6543 39.3834 73.5355 38.5111 73.429C38.426 73.4186 38.3419 73.4084 38.259 73.3988C35.8919 73.1187 33.5312 72.7805 31.1712 72.2677C29.4051 71.884 27.6788 71.2842 25.9625 70.688C25.3854 70.4875 24.8094 70.2874 24.2334 70.096C23.8793 69.9779 23.5226 69.8641 23.1656 69.7503C22.3905 69.5031 21.6138 69.2554 20.858 68.9616M20.7099 69.343L20.858 68.9616M20.7099 69.343C20.7099 69.343 20.7098 69.3429 20.7098 69.3429L20.858 68.9616M20.7099 69.343C19.7524 68.9711 18.7798 68.365 18.3515 67.2571M20.858 68.9616C19.9416 68.6057 19.0995 68.0581 18.7329 67.109M18.7329 67.109L18.3518 67.2578C18.3517 67.2576 18.3516 67.2574 18.3515 67.2571M18.7329 67.109C18.4219 66.3128 18.6414 65.6311 19.1575 64.9922M18.7329 67.109L18.3512 67.2564C18.3513 67.2567 18.3514 67.2569 18.3515 67.2571M18.3515 67.2571C18.168 66.787 18.1364 66.334 18.2363 65.8999C18.3349 65.4717 18.5556 65.0863 18.8391 64.7352M19.1575 64.9922L18.839 64.7353C18.8391 64.7353 18.8391 64.7353 18.8391 64.7352M19.1575 64.9922L18.8393 64.7351C18.8392 64.7351 18.8392 64.7352 18.8391 64.7352\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M38.7772 74.7554L38.7796 74.753C38.8089 74.7244 38.8537 74.6364 38.832 74.405C38.8144 74.217 38.7626 74.0238 38.7134 73.8403C38.7056 73.8112 38.6979 73.7823 38.6904 73.7537C38.6045 73.4349 38.6614 73.1348 38.8228 72.8978C38.9781 72.6698 39.2133 72.5233 39.4545 72.4579C39.6955 72.3924 39.9725 72.3996 40.2216 72.5183C40.481 72.6418 40.6809 72.8732 40.766 73.1926C40.9018 73.7008 41.0031 74.3006 40.9373 74.8798C40.8704 75.4694 40.6268 76.0542 40.0639 76.4763C39.5458 76.8654 38.9476 76.9603 38.3917 76.9538C37.9769 76.9489 37.5443 76.8848 37.1656 76.8286C37.0494 76.8114 36.9383 76.7949 36.8344 76.7812C32.4368 76.2042 28.0957 75.2076 23.8891 73.7936C22.8574 73.4477 21.8327 73.076 20.8149 72.6784C20.8149 72.6784 20.8148 72.6783 20.8148 72.6783L38.7772 74.7554ZM38.7772 74.7554C38.7611 74.7714 38.712 74.8027 38.5712 74.8095C38.4599 74.8149 38.3491 74.8041 38.2213 74.7917C38.1846 74.7882 38.1464 74.7845 38.1065 74.781C37.1936 74.7005 36.2778 74.5528 35.3541 74.4039C35.2866 74.393 35.2191 74.3821 35.1515 74.3713C33.0576 74.0297 30.985 73.5931 28.9347 73.0575C26.884 72.5217 24.9272 71.9105 22.9696 71.1986C22.4584 71.011 21.9566 70.8264 21.4592 70.6295L21.4579 70.629M38.7772 74.7554L21.4579 70.629M21.4579 70.629C21.391 70.6028 21.3265 70.5787 21.2636 70.5553C21.1267 70.5042 20.997 70.4559 20.8654 70.3935C20.6778 70.3044 20.5614 70.2185 20.5015 70.1357M21.4579 70.629L21.3086 71.0099C21.2549 70.9888 21.1978 70.9676 21.1388 70.9455C20.7909 70.8158 20.3746 70.6605 20.1684 70.3732M20.1684 70.3732L20.5025 70.1371C20.5022 70.1366 20.5019 70.1362 20.5015 70.1357M20.1684 70.3732L20.5008 70.1347C20.501 70.135 20.5013 70.1354 20.5015 70.1357M20.1684 70.3732L20.5015 70.1357M20.5015 70.1357C20.3968 69.9871 20.3832 69.8908 20.3856 69.8442C20.3877 69.8021 20.4044 69.7607 20.452 69.7165C20.5629 69.6134 20.8158 69.5321 21.1061 69.5942C21.7884 69.7427 22.2589 69.2705 22.3873 68.7942C22.4523 68.5536 22.445 68.2755 22.3202 68.0273C22.1896 67.7674 21.9482 67.578 21.6249 67.5073L21.2434 67.4239L21.2365 67.4497C20.4169 67.3657 19.551 67.5721 18.9028 68.1771C18.0984 68.9279 18.14 69.9852 18.4603 70.8176L20.5015 70.1357Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M25.0261 76.3554C25.1584 76.643 25.3826 76.882 25.7101 77.0498L31.0531 76.5077C31.0277 76.4997 31.0024 76.4916 30.9771 76.4833L30.9771 76.4833L30.9746 76.4825L30.1482 76.2197L30.1475 76.2195L28.4303 75.6766L28.4297 75.6764L28.4215 75.6738C28.1273 75.5813 27.8332 75.4888 27.5434 75.3975L27.5434 75.3975L27.5404 75.3966C27.4203 75.3598 27.3082 75.3254 27.1984 75.2874L27.1905 75.2846L27.1824 75.2822C27.1527 75.2733 27.126 75.2628 27.0884 75.2477C27.1033 75.1743 27.1187 75.0987 27.1342 75.0228C27.1701 74.847 27.2062 74.6699 27.2367 74.5154C27.3428 73.9895 27.0797 73.3872 26.4701 73.2239C26.1908 73.149 25.8965 73.2013 25.6618 73.3306C25.425 73.461 25.2115 73.6917 25.1471 74.0089L25.1164 74.1607L25.1212 74.169C25.1055 74.2374 25.0889 74.3064 25.0713 74.3791C25.0478 74.4765 25.0226 74.5807 24.9962 74.6992C24.9406 74.9482 24.8886 75.2258 24.8782 75.5019C24.8678 75.778 24.8978 76.0765 25.0261 76.3554ZM26.6355 75.4241L26.6329 75.425C26.6331 75.4246 26.6332 75.4241 26.6333 75.4237L26.6355 75.4241ZM26.9225 75.478C26.9225 75.4782 26.9217 75.4767 26.9199 75.4732C26.9217 75.4762 26.9225 75.4779 26.9225 75.478Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M29.3296 63.3133L29.3299 63.3134C30.7136 58.8356 32.1034 54.323 32.9813 49.683L32.9813 49.6826C33.3339 47.8096 33.6058 45.9181 33.7579 44.0142C34.9684 44.0467 36.2429 43.9156 37.4028 43.4849C38.0285 44.429 38.7842 45.2917 39.7882 45.9735C39.8544 46.0184 39.9209 46.0624 39.9878 46.1053C39.5403 46.8535 39.1264 47.6195 38.7361 48.3917C36.6319 52.5382 35.1679 57.0103 34.5802 61.6338C34.437 62.7587 34.3482 63.8885 34.3107 65.0177L34.3107 65.0182C34.3001 65.3488 34.4247 65.629 34.6432 65.8199C34.8521 66.0024 35.119 66.0799 35.3685 66.0779C35.8638 66.0738 36.438 65.7346 36.4607 65.0338C36.5838 61.319 37.3343 57.6503 38.5837 54.1427C39.4718 51.6494 40.5254 49.2185 41.8863 47.0345C43.0855 47.4606 44.3387 47.6357 45.5863 47.6324L45.5865 47.6324C46.5025 47.6295 47.6239 47.565 48.5191 46.9694C49.4219 46.3687 49.8976 45.3876 50.1018 44.4244L29.3296 63.3133ZM29.3296 63.3133C29.1202 63.9774 28.4794 64.1496 28.0028 64.0218C27.7617 63.9572 27.5251 63.8113 27.3721 63.58C27.2122 63.3382 27.1657 63.0352 27.2629 62.7189L27.263 62.7186C27.5457 61.8009 27.828 60.8842 28.1061 59.9666C29.2041 56.3316 30.2356 52.6856 30.9257 48.967M29.3296 63.3133L30.9257 48.967M41.1689 44.2959C41.5266 43.7963 41.9049 43.3101 42.3072 42.8412L42.3076 42.8407C42.9172 42.1321 43.6617 41.3378 44.5266 40.7583C45.3957 40.1759 46.4159 39.7913 47.5603 39.9549L47.5619 39.9551C48.4923 40.0919 49.4076 40.5743 49.9042 41.5159C50.3958 42.4482 50.2882 43.5532 50.1019 44.424L41.1689 44.2959ZM41.1689 44.2959C40.6893 43.9971 40.2492 43.6389 39.8634 43.2174C39.6465 42.9804 39.4401 42.7191 39.2439 42.4401C40.5369 41.4093 41.4697 39.957 41.9291 38.3839C42.1931 37.4797 42.3004 36.4455 42.0792 35.5127C41.8544 34.5646 41.2867 33.7191 40.2254 33.2629C38.2371 32.406 36.1234 33.501 35.3122 35.3558C34.4145 37.3997 35.2838 39.4598 36.1048 41.1436L36.105 41.144C36.1705 41.2779 36.2366 41.4117 36.3036 41.5453C35.6944 41.7275 35.0374 41.8137 34.3406 41.8365C34.1861 41.8416 34.0299 41.8437 33.8726 41.8425C33.8971 40.1533 33.6946 38.3526 32.5689 36.8912L32.5689 36.8912C31.9754 36.1209 31.0934 35.5059 30.1414 35.2656C29.1783 35.0224 28.1266 35.1622 27.2683 35.9356L27.2679 35.936C25.7368 37.3191 25.872 39.5886 26.9614 41.086L41.1689 44.2959ZM31.6171 43.787C29.8533 43.4393 28.0792 42.623 26.9614 41.0861L31.6171 43.787ZM31.6171 43.787C31.4845 45.5238 31.2442 47.2488 30.9257 48.967M31.6171 43.787L30.9257 48.967M31.1465 38.6139C31.6396 39.4943 31.7495 40.5269 31.7362 41.6007C30.9675 41.4196 30.2321 41.1257 29.5954 40.6824L29.5953 40.6823C29.1019 40.339 28.6503 39.8359 28.4206 39.2969C28.1963 38.7705 28.1895 38.235 28.5244 37.7407L28.5245 37.7405C28.7128 37.4623 28.9167 37.3427 29.1101 37.3006C29.3133 37.2564 29.5532 37.2877 29.8174 37.3988C30.3563 37.6254 30.8805 38.1367 31.1461 38.6132L31.1465 38.6139ZM48.0888 43.0793C48.1526 43.6792 47.966 44.3871 47.6682 44.8353L47.6678 44.8359C47.3473 45.3151 46.7555 45.4331 46.004 45.464C45.2278 45.4957 44.4528 45.4459 43.703 45.2888C43.5274 45.2517 43.3534 45.2096 43.1813 45.1623C43.363 44.9262 43.5495 44.6941 43.741 44.4665C43.7565 44.4481 43.7721 44.4296 43.7878 44.4109C44.2329 43.882 44.7588 43.257 45.3539 42.7757C45.9734 42.2747 46.6 41.9855 47.2252 42.0618C47.5181 42.0976 47.7063 42.2179 47.834 42.377C47.9687 42.545 48.0575 42.7842 48.0888 43.0793ZM38.4032 40.2942C38.3207 40.3785 38.2365 40.4585 38.1505 40.5346C37.8991 40.0118 37.6722 39.4789 37.4681 38.9639L37.468 38.9636C37.2141 38.3241 37.0508 37.6044 37.0984 36.9522C37.1451 36.3123 37.391 35.7536 37.9481 35.3634C38.3915 35.0534 39.0081 35.012 39.4762 35.2681C39.8854 35.4919 40.0764 36.0043 40.061 36.6258L40.061 36.6269C40.032 37.9429 39.3408 39.3357 38.4032 40.2942Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M19.2115 22.0133L19.4976 22.3058C19.9768 21.837 19.8426 21.2023 19.5358 20.817C19.5357 20.8168 19.5356 20.8167 19.5355 20.8166L16.1498 16.548L16.1498 16.548L16.1492 16.5472C15.937 16.2809 15.6222 16.1907 15.3529 16.1978C15.0862 16.2048 14.8026 16.3067 14.5998 16.5074L14.8875 16.7982L14.6014 16.5058C14.1222 16.9745 14.2564 17.6093 14.5633 17.9946C14.5634 17.9947 14.5635 17.9949 14.5636 17.995L17.9492 22.2636L17.9498 22.2644C18.1621 22.5307 18.4769 22.6209 18.7462 22.6138C19.0129 22.6068 19.2964 22.5049 19.4993 22.3042L19.2115 22.0133ZM19.2115 22.0133C19.492 21.739 19.4393 21.3523 19.2155 21.0716L18.2698 22.0093C18.4935 22.2901 18.9737 22.2486 19.2115 22.0133Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M31.4973 13.2286C31.6045 13.5838 31.3777 13.9324 31.0299 14.0461C30.6821 14.1599 30.3167 13.9102 30.2123 13.5787C29.7795 12.1737 29.4981 10.726 29.3613 9.26119L28.9721 9.48587M31.4973 13.2286L29.6843 8.12985L29.1192 8.45609L29.1137 8.45923L29.3168 8.81092L29.0228 8.83241L28.9157 8.84023C28.9315 9.05575 28.9502 9.27099 28.9721 9.48587M31.4973 13.2286C31.0447 11.7597 30.7654 10.2959 30.6547 8.80371L31.4973 13.2286ZM28.9721 9.48587C29.1174 10.9139 29.3983 12.326 29.8213 13.6992L29.8213 13.6992L29.8221 13.7015C29.9779 14.1967 30.543 14.6359 31.1571 14.435C31.6744 14.2658 32.0724 13.7182 31.889 13.1104L31.889 13.1104L31.8883 13.1081C31.4444 11.6676 31.1711 10.2341 31.0627 8.77345L31.0627 8.77261C31.0249 8.27633 30.6263 7.69932 29.9616 7.73178L29.9616 7.73177L29.9588 7.73193C29.4625 7.75966 28.8675 8.17308 28.91 8.8396L28.952 9.4975L28.9721 9.48587Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M44.8071 13.8181C44.7054 14.1634 44.33 14.3802 43.991 14.2893C43.652 14.1985 43.4181 13.8185 43.5198 13.4732L45.1996 13.9337L45.1991 13.9353L44.8071 13.8181ZM44.8071 13.8181L44.8076 13.8164C45.2939 12.1904 45.7802 10.5644 46.2621 8.93731L44.8071 13.8181ZM43.1275 13.357L43.1273 13.3576L44.9748 8.59237L44.5828 8.47515L44.5823 8.47676L44.5822 8.4771C44.096 10.1029 43.6096 11.7293 43.1275 13.357Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M55.627 19.9833L55.627 19.9833L55.6257 19.9845C55.1779 20.4031 55.2179 21.1142 55.6094 21.5121L55.6105 21.5132C56.0403 21.9469 56.7109 21.9126 57.1222 21.5281L56.8429 21.2292L57.1208 21.5295C58.5108 20.243 59.9992 19.0793 61.5868 18.0516L61.5874 18.0513C62.0431 17.7552 62.2724 17.1305 61.9626 16.5939C61.8169 16.3416 61.5715 16.1712 61.3135 16.0976C61.0539 16.0236 60.7433 16.0379 60.4761 16.2113C58.7534 17.327 57.1308 18.5904 55.627 19.9833Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M62.2555 34.8993C61.756 34.9583 61.2191 34.6913 61.0644 34.1213C61.0644 34.1212 61.0644 34.1211 61.0644 34.121L61.4593 34.014L62.2555 34.8993ZM62.2555 34.8993L62.2696 34.903L62.3651 34.883L66.3996 34.0371L66.3999 34.037L68.3576 33.6283C68.3576 33.6283 68.3577 33.6283 68.3578 33.6283C68.7031 33.5565 69.1066 33.4444 69.4337 33.2144C69.7835 32.9684 70.0333 32.5954 70.0575 32.0647L69.6488 32.0461M62.2555 34.8993L66.3159 33.6366L68.2744 33.2277C68.9416 33.0892 69.613 32.8321 69.6488 32.0461M69.6488 32.0461C69.6667 31.6875 69.3248 31.3844 68.9757 31.3828C68.841 31.3828 68.7204 31.4224 68.6201 31.4898C68.5459 31.4386 68.4635 31.4176 68.3903 31.4164C68.3138 31.4151 68.2496 31.4337 68.1983 31.4588C68.1543 31.4633 68.1133 31.4709 68.0777 31.4788M69.6488 32.0461L70.0574 32.0665C70.0734 31.7467 69.9281 31.471 69.732 31.2843C69.5373 31.0989 69.2667 30.975 68.9775 30.9737L68.9775 30.9737L68.9756 30.9737C68.5716 30.9738 68.2588 31.1857 68.0777 31.4788M68.0777 31.4788C68.0481 31.4854 68.0222 31.4923 68.0013 31.498C67.952 31.5115 67.9217 31.5207 67.8982 31.5278C67.8733 31.5353 67.8562 31.5405 67.8325 31.5459\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rdry9x\",\"data-framer-name\":\"Vector 515\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:280,layoutDependency:layoutDependency,layoutId:\"p9dgWK49c\",svg:'<svg width=\"280\" height=\"18\" viewBox=\"-2 -2 280 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.757812 0.933838C87.3677 0.933838 263.449 0.933838 274.897 0.933838C289.207 0.933838 140.087 7.14619 103.183 13.3586\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rk7ys\",\"data-framer-name\":\"Review 9 \u2022 Tablet\",layoutDependency:layoutDependency,layoutId:\"m8k40I6n6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:'\"Creative Milkshake brought \\u2028\\u2028a professional touch to our ideation and editing processes, enhancing the overall quality of our campaigns.\"'})}),className:\"framer-1ps6rmc\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"KIOshOrKq\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zJpir2ivT,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Clarence von Rosen\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Co-founder, Napper\"})]}),className:\"framer-1va6a23\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"VOCQYmHAe\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tcmqdg\",\"data-framer-name\":\"Layer 13\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:62,layoutDependency:layoutDependency,layoutId:\"RGRJtQB6Y\",svg:'<svg width=\"62\" height=\"61\" viewBox=\"0 0 62 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M38.7622 15.8389C51.2331 15.8389 61.3427 25.9486 61.3427 38.4195C61.3427 50.8904 51.2331 61 38.7622 61C26.2913 61 16.1816 50.8904 16.1816 38.4195C16.1816 25.9486 26.2913 15.8389 38.7622 15.8389Z\" stroke=\"#DDD4F6\" stroke-width=\"2.29944\" stroke-miterlimit=\"10\"/>\\n<path d=\"M38.7622 20.9087C48.4329 20.9087 56.2725 28.7483 56.2725 38.4189C56.2725 48.0896 48.4329 55.9292 38.7622 55.9292C29.0916 55.9292 21.252 48.0896 21.252 38.4189C21.252 28.7483 29.0916 20.9087 38.7622 20.9087Z\" stroke=\"#DDD4F6\" stroke-width=\"2.29944\" stroke-miterlimit=\"10\"/>\\n<path d=\"M38.7637 27.3701C44.8658 27.3701 49.8125 32.3169 49.8125 38.4189C49.8125 44.521 44.8658 49.4678 38.7637 49.4678C32.6616 49.4678 27.7148 44.521 27.7148 38.4189C27.7148 32.3169 32.6616 27.3701 38.7637 27.3701Z\" stroke=\"#DDD4F6\" stroke-width=\"2.29944\" stroke-miterlimit=\"10\"/>\\n<path d=\"M38.7635 34.6595C40.8399 34.6595 42.5231 36.3428 42.5231 38.4191C42.5231 40.4955 40.8399 42.1787 38.7635 42.1787C36.6871 42.1787 35.0039 40.4955 35.0039 38.4191C35.0039 36.3428 36.6871 34.6595 38.7635 34.6595Z\" stroke=\"#DDD4F6\" stroke-width=\"2.29944\" stroke-miterlimit=\"10\"/>\\n<path d=\"M36.0277 38.0166C30.3596 33.0038 24.9559 27.7151 19.5867 22.3804C14.2175 17.0457 8.89427 11.665 3.8355 6.05432C2.84674 4.96209 4.46785 3.32948 5.45661 4.43321C10.5154 10.0439 15.8501 15.436 21.2078 20.7593C26.5655 26.0825 31.9807 31.3827 37.6488 36.3955C38.764 37.3727 37.1314 38.9938 36.0277 38.0166Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M8.31902 15.2752C9.75617 14.5739 11.2508 14.0105 12.8029 13.6196C12.8489 13.6196 12.9524 13.5621 12.9984 13.5736C12.8719 13.6196 12.7799 13.7001 12.7225 13.8381C12.6075 13.9071 12.55 13.999 12.55 14.114C12.5385 14.229 12.5385 14.206 12.55 14.0565V13.9301C12.5615 13.8266 12.573 13.7116 12.573 13.6081C12.596 13.2057 12.6075 12.7918 12.6075 12.3894C12.619 11.5386 12.6075 10.6763 12.573 9.82555C12.55 9.22769 13.1249 8.65283 13.7227 8.67583C14.3666 8.71032 14.8379 9.1817 14.8724 9.82555C14.9184 10.7453 14.9299 11.6651 14.9069 12.5849C14.9069 13.0333 14.8839 13.4817 14.8609 13.9301C14.8264 14.5739 14.7345 15.2062 14.1366 15.5742C13.7687 15.8041 13.3203 15.8731 12.9064 15.9881C12.4925 16.103 12.1131 16.218 11.7222 16.356C11.3313 16.4939 10.9059 16.6434 10.5035 16.8159L10.4 16.8618C10.4805 16.8274 10.4805 16.8274 10.4 16.8618C10.308 16.8963 10.2161 16.9423 10.1356 16.9768C9.91714 17.0688 9.71019 17.1723 9.49174 17.2757C8.95137 17.5402 8.22705 17.4367 7.91662 16.8618C7.64069 16.3445 7.75566 15.5742 8.33052 15.2867L8.31902 15.2752Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M4.90643 12.1255C5.49279 11.6886 6.19412 11.4126 6.88395 11.1597C7.20587 11.0447 7.5163 10.9412 7.83822 10.8263C7.9187 10.8033 7.98769 10.7688 8.06817 10.7458C8.09116 10.7458 8.3441 10.6308 8.19464 10.6998C8.04517 10.7688 8.28661 10.6538 8.3211 10.6423C8.40159 10.5963 8.49356 10.5618 8.57404 10.5158C8.71201 10.4469 8.84998 10.3664 8.97645 10.2744C8.97645 10.2744 9.19489 10.1019 9.09142 10.1939C8.98794 10.2859 9.1719 10.1134 9.19489 10.0904C9.27537 10.01 9.27537 9.99847 9.22938 10.0675C9.1834 10.1364 9.1834 10.1249 9.24088 10.0215L9.20639 10.1019C9.20639 10.1019 9.22938 9.99847 9.24088 9.95248C9.28687 9.82601 9.24088 10.1134 9.24088 9.89499C9.24088 9.79152 9.26388 9.69954 9.26388 9.59607C9.33286 8.73378 9.33286 7.87149 9.26388 7.00919C9.21789 6.41134 9.82724 5.83648 10.4136 5.85947C11.0689 5.89396 11.5173 6.36535 11.5633 7.00919C11.6323 7.92897 11.6208 8.84875 11.5403 9.76852C11.4943 10.2974 11.4369 10.8378 11.1379 11.2862C10.862 11.7001 10.4711 12.022 10.0457 12.2864C9.37885 12.7233 8.59704 12.9762 7.84972 13.2407C7.68876 13.2982 7.5163 13.3557 7.35534 13.4246C7.27486 13.4476 7.20587 13.4821 7.12539 13.5051C6.87246 13.5971 7.27486 13.4361 7.04491 13.5396C6.7 13.7006 6.36658 13.8845 6.05615 14.103C5.57327 14.4594 4.74547 14.195 4.48103 13.6891C4.15911 13.0912 4.37756 12.5049 4.89493 12.114L4.90643 12.1255Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M1.38595 6.74447C2.85759 6.42255 4.31774 6.08913 5.78938 5.74421L4.98458 6.54902C5.3065 4.74395 5.62842 2.93889 5.95034 1.13383C6.05382 0.535975 6.81263 0.156565 7.3645 0.329023C7.99685 0.535974 8.28428 1.11083 8.1693 1.74318C7.84738 3.54824 7.52546 5.3533 7.20354 7.15837C7.13456 7.52628 6.75515 7.88269 6.39873 7.96317C4.93859 8.30809 3.46694 8.64151 1.9953 8.96343C1.40894 9.0899 0.719109 8.79098 0.581143 8.15863C0.443176 7.57227 0.753601 6.88244 1.38595 6.74447Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jmpbz1\",\"data-framer-name\":\"Vector 516\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:287,layoutDependency:layoutDependency,layoutId:\"teV43AAqe\",svg:'<svg width=\"287\" height=\"22\" viewBox=\"-2 -2 287 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.177734 1.75659C89.0176 1.45773 269.633 0.850123 281.375 0.81062C296.053 0.761242 41.6905 10.3067 138.282 17.3058\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-o1dvl2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:42,intrinsicWidth:41,layoutDependency:layoutDependency,layoutId:\"jx1po5zmD\",svg:'<svg width=\"41\" height=\"42\" viewBox=\"0 0 41 42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18.646 15.1567C18.4781 12.1912 18.3422 9.84115 18.2143 7.48313C18.1744 6.75574 18.1504 6.02835 18.1824 5.30096C18.2543 3.91013 18.9017 2.64719 20.3485 2.91097C21.1718 3.06284 22.2509 4.27782 22.3948 5.14909C22.8265 7.70694 22.8504 10.3367 23.0343 12.9425C23.2901 13.1903 23.5459 13.4301 23.8016 13.6779C23.9855 13.1344 24.0494 12.5189 24.3612 12.0713C25.9758 9.74523 27.6464 7.45915 29.309 5.16508C30.1883 3.9501 31.2834 3.03886 32.7861 4.04602C34.3048 5.06116 33.8972 6.40404 33.0179 7.643C31.1235 10.3048 29.1971 12.9425 27.2867 15.5963C26.8391 16.2198 26.3995 16.8593 25.5761 18.0263C28.4937 18.0263 30.8517 18.0103 33.2097 18.0343C34.1529 18.0423 35.0962 18.1302 36.0314 18.2181C37.4062 18.338 38.5173 18.9055 38.4294 20.4562C38.3414 22.0869 37.1504 22.6144 35.6877 22.6064C33.2897 22.5984 30.8917 22.5425 28.5017 22.5105C27.7903 22.5025 27.0789 22.5105 25.8959 22.5105C26.5673 23.3178 26.919 23.8134 27.3427 24.2451C31.1555 28.1378 34.9842 32.0145 38.805 35.8993C39.2607 36.3629 39.9721 36.8025 40.084 37.3461C40.2838 38.3612 40.1239 39.4403 40.1079 40.4954C39.0448 40.4315 37.678 40.7752 36.9906 40.2396C35.1761 38.8168 33.6813 36.9944 32.0107 35.3717C29.2611 32.71 26.4794 30.0882 23.6498 27.3944C23.6498 29.5126 23.6737 31.6389 23.6418 33.7571C23.6178 35.1319 23.7697 36.5867 23.354 37.8496C23.0982 38.641 21.9392 39.1446 21.1798 39.768C20.5084 38.9527 19.3574 38.1934 19.2614 37.3141C18.9897 34.7243 19.1415 32.0945 19.1096 29.4807C19.1096 28.9371 19.0057 28.3856 18.8938 27.2505C16.4238 30.8315 14.2736 33.9649 12.1075 37.0823C11.404 38.0974 10.6767 39.0966 9.92528 40.0718C8.99007 41.2868 7.77509 42.0541 6.38426 41.007C4.96145 39.9279 5.52897 38.593 6.38426 37.3541C9.35776 33.0537 12.3233 28.7453 15.2808 24.4369C15.6805 23.8534 16.0242 23.2379 16.7036 22.1268C14.3536 22.1268 12.4352 22.1668 10.5168 22.1188C8.34261 22.0629 6.12847 22.1348 4.00225 21.7432C3.17095 21.5913 2.53948 20.3363 1.82009 19.585C2.61142 18.8896 3.36279 17.6586 4.19409 17.5946C7.35944 17.3548 10.5568 17.4987 14.1777 17.4987C13.5942 16.7873 13.2585 16.2917 12.8428 15.8681C9.29381 12.2551 5.72881 8.63416 2.1638 5.00521C1.75614 4.58956 1.3245 4.19789 0.964804 3.74227C0.125508 2.66318 -0.290143 1.28833 0.964804 0.504988C1.70019 0.0493699 3.13898 0.313149 4.05821 0.712813C4.92948 1.09649 5.52897 2.07167 6.24837 2.79906C9.70946 6.31611 13.1706 9.84914 16.6396 13.3582C17.1192 13.8458 17.6548 14.2774 18.646 15.1567Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]})],snapObject:{fluid:false,snap:false,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rgx9qv-container\",\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"LRJd8IyKn-container\",name:\"Desktop\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"Testimomials\",arrowObject:{arrowFill:\"rgb(221, 212, 246)\",arrowPadding:0,arrowRadius:28,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:320,type:\"spring\"},fadeWidth:20},gap:40,height:\"100%\",id:\"LRJd8IyKn\",layoutId:\"LRJd8IyKn\",name:\"Desktop\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:8,dotsOpacity:.5,dotsPadding:0,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gbdyes\",\"data-framer-name\":\"Review 2 \u2022 Web\",layoutDependency:layoutDependency,layoutId:\"KZCkjmru8\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1w0740c\",\"data-framer-name\":\"Layer 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:47,intrinsicWidth:63,layoutDependency:layoutDependency,layoutId:\"DRvHyPErY\",svg:'<svg width=\"63\" height=\"47\" viewBox=\"0 0 63 47\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M53.92 30.5055C53.2971 26.0376 45.3962 26.0522 42.5936 27.79C40.9713 28.7849 39.7155 30.4403 39.4524 32.3337C39.1983 33.9907 39.7669 38.0877 41.7651 38.7099C43.5882 39.2662 44.3926 36.9061 44.2722 35.5173C44.0695 33.1782 42.4554 30.9541 41.2267 29.0132C38.8036 25.1874 35.7145 21.1542 31.155 19.8702C27.267 18.7711 22.2408 20.4292 21.8971 25.0471C21.7829 26.6183 22.349 31.6213 24.7872 30.6073C26.508 29.8984 26.6057 27.2019 26.2877 25.7418C25.3987 21.6873 21.9838 17.7192 19.3425 14.6046C16.3482 11.0713 12.9127 7.8856 9.17235 5.17554C6.7976 3.4371 8.99226 -0.641589 11.4121 1.10767C16.3711 4.70634 20.767 8.86196 24.5449 13.7045C27.8498 17.9326 32.1757 23.5745 30.8468 29.3162C29.7821 33.8567 23.9696 37.9985 19.9788 33.8446C16.3293 30.0588 16.3465 22.5234 19.7703 18.6917C23.4946 14.5025 29.5175 14.0616 34.4453 16.1974C40.153 18.6633 44.0791 24.281 46.9384 29.5713C49.2705 33.8763 50.1356 40.1202 44.9734 42.8432C39.8111 45.5662 35.6124 39.6923 34.921 35.1125C33.9412 28.6504 38.6533 23.0279 45.0153 22.1672C50.6861 21.4033 57.6853 24.155 58.5784 30.3816C58.9897 33.3434 54.3539 33.4726 53.9371 30.5335L53.92 30.5055Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-mu2mpl\",\"data-styles-preset\":\"KxyDXhYjD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CThe ad performance was outstanding, ranking among the top performers. They delivered exceptional results, they were fast, professional, and delivered on time.\u201D\"})}),className:\"framer-9h8bdd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wNETpRyI_\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:bTbZqKaVi,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Farah Al-Eryani\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Paid Social Manager, Dr. Smile\"})]}),className:\"framer-hviubh\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"MNfiCCNkc\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13er8px\",\"data-framer-name\":\"Vector 514\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:165,layoutDependency:layoutDependency,layoutId:\"EnDy2CLpl\",svg:'<svg width=\"165\" height=\"25\" viewBox=\"-3 -3 165 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0644531 0.732422C49.9021 0.732422 151.224 0.732422 157.811 0.732422C166.046 0.732422 80.238 9.73081 59.0029 18.7293\" stroke=\"#ECF86E\" stroke-width=\"6\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1a24bgd\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:75,intrinsicWidth:69,layoutDependency:layoutDependency,layoutId:\"H8mx4GEX5\",svg:'<svg width=\"69\" height=\"75\" viewBox=\"0 0 69 75\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M45.2915 45.9367C46.8012 48.701 48.2566 51.2955 49.6428 53.9279C50.6272 55.8009 51.597 57.694 52.3909 59.6529C52.6419 60.2771 52.5925 61.3614 52.183 61.8569C51.4743 62.7091 50.5314 62.2513 49.7983 61.6609C46.4695 58.9959 43.2485 56.1995 39.7922 53.6888C36.0674 50.9802 36.0201 51.1873 31.7457 53.3464C28.841 54.818 25.8014 56.0309 22.7846 57.2737C21.2452 57.9089 20.4158 57.5886 20.1409 55.9926C19.8228 54.1062 19.8569 52.1361 19.8415 50.193C19.8215 47.8537 19.9233 45.5144 19.953 43.1721C19.986 40.4716 18.8118 38.3216 16.8763 36.5632C13.1912 33.2107 9.47661 29.8864 5.77685 26.554C3.7535 24.7288 3.4419 23.1831 5.41729 21.1377C7.58936 18.9002 10.0064 16.7706 12.6353 15.0993C18.6608 11.283 25.109 8.31123 32.1169 6.82223C33.4862 6.53357 34.9422 6.42714 36.3186 6.52734C38.367 6.67139 39.0563 7.76911 39.4768 9.69033C40.0733 12.4156 40.955 15.0757 41.8094 17.7327C42.4546 19.7366 43.1298 21.7482 44.02 23.6485C44.4714 24.6043 45.3001 25.499 46.1974 26.0965C49.3179 28.1684 52.546 30.0969 55.7375 32.0756C56.3588 32.4613 57.007 32.8142 57.6062 33.2301C59.4315 34.4928 59.5489 36.6581 57.6597 37.9919C54.7912 40.0116 51.7788 41.838 48.8194 43.7382C47.7605 44.4192 46.6839 45.0675 45.2866 45.9394L45.2915 45.9367ZM37.2239 13.3071C33.2657 16.7617 29.0977 19.3038 24.6868 21.4831C20.2562 23.6732 15.6918 25.4893 10.6781 26.5296C11.0557 26.9155 11.2446 27.1205 11.4533 27.3146C14.2516 29.9128 17.0179 32.5346 19.8631 35.0892C21.6903 36.7315 22.6844 38.7986 22.8441 41.1703C23.0423 44.0708 22.9474 46.9985 22.9617 49.9148C22.9699 51.2456 22.9309 52.584 22.9123 53.9596C27.809 52.9166 53.6864 38.2587 55.4703 35.5807C55.157 35.3712 54.8485 35.147 54.5203 34.9456C51.4116 33.0243 48.3053 31.0958 45.1819 29.1947C42.4768 27.5544 40.7535 25.2331 39.9026 22.2299C39.0825 19.3185 38.1709 16.4391 37.2239 13.3071ZM35.9653 9.68676C30.0027 8.27287 9.74729 18.634 7.53508 23.3826C11.7989 25.41 33.0808 15.2133 35.9653 9.68676ZM39.2708 49.5268C41.6675 51.1663 43.8434 52.6484 46.0145 54.1331C46.0958 54.0706 46.1771 54.0081 46.2559 53.9409L42.7919 47.5979L39.2682 49.5222L39.2708 49.5268Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M37.9105 31.3859C36.7007 27.6905 35.4663 24.0086 34.3061 20.2982C34.0116 19.3595 34.377 18.5014 35.4803 18.219C36.5118 17.9578 37.0088 18.5624 37.3249 19.435C38.6973 23.2168 40.144 26.9701 41.4471 30.7776C41.6453 31.352 41.451 32.3825 41.0208 32.8048C40.271 33.5465 39.4375 33.0894 38.8671 32.3739C38.5995 32.0367 38.364 31.6759 38.1186 31.3206C38.0517 31.339 37.9823 31.3648 37.9154 31.3832L37.9105 31.3859Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-je2nnm\",\"data-framer-name\":\"Review 1 \u2022 Web\",layoutDependency:layoutDependency,layoutId:\"y5XWPFPZA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-mu2mpl\",\"data-styles-preset\":\"KxyDXhYjD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201C[They] truly understand paid strategy and get creative \u2013 often you seem to find one or the other.\u201D\"})}),className:\"framer-4enkbt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CdkfwsEUp\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YRuinxKiP,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lm58p5\",layoutDependency:layoutDependency,layoutId:\"mV7TlJ9a8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Alex Georgiades\"})}),className:\"framer-hpg0da\",fonts:[\"FS;Sora-bold\"],layoutDependency:layoutDependency,layoutId:\"jnIH9aKUg\",style:{\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Paid Social Senior Manager, Wise\"})}),className:\"framer-10vpl0n\",fonts:[\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"YVCB2KDJQ\",style:{\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sqkxdk\",\"data-framer-name\":\"Doodles\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:60,intrinsicWidth:66,layoutDependency:layoutDependency,layoutId:\"M8GDzOyMz\",svg:'<svg width=\"66\" height=\"60\" viewBox=\"0 0 66 60\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.07423 32.9975C6.8708 32.8631 11.5927 31.6975 15.8662 29.486C17.8237 28.4699 19.6467 27.3492 20.0203 25.0182C20.364 22.8366 19.9007 20.4458 19.4525 18.3239C18.4364 13.5871 16.4042 9.0595 15.8961 4.2181C15.8662 3.97902 15.8961 3.68017 15.8214 3.44108C15.9858 3.99396 15.0743 3.29166 15.7019 3.53074C16.0306 3.65028 16.4938 3.65028 16.8375 3.73994C17.9134 4.0089 18.9444 4.38247 19.9306 4.87557C21.7835 5.80202 23.4123 7.05719 24.8019 8.61122C28.2088 12.4515 29.3295 17.8906 28.0743 22.8216C27.5364 24.9136 30.779 25.8102 31.3169 23.7182C33.7376 14.2147 28.6272 4.41235 19.4226 1.02038C17.6444 0.36291 15.149 -0.458933 13.4904 0.870958C11.6674 2.33533 12.6386 5.51811 13.0272 7.4457C14.0881 12.586 16.4341 17.517 16.718 22.8067C16.7479 23.4492 16.8973 24.4653 16.5237 25.0481C16.2249 25.5262 15.5524 25.7952 15.0743 26.0642C13.7743 26.7964 12.4145 27.4389 11.0099 27.932C8.12598 28.963 5.13746 29.5159 2.07423 29.6056C-0.0924503 29.6653 -0.0924503 33.0274 2.07423 32.9677V32.9975Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M30.8551 24.1215C33.5299 22.9859 36.3092 22.0594 39.1333 21.387C41.7931 20.7445 44.9161 19.9675 47.546 21.1031C51.9989 23.0456 54.3748 29.1572 55.3759 33.5353C56.4369 38.1974 56.6909 45.0411 53.2989 48.8664C50.3403 52.2136 44.4828 53.2894 40.2242 52.5722C39.5966 52.4676 38.7747 52.3182 38.2517 51.9446C38.2517 51.9446 37.7437 51.6906 37.7437 51.6607C37.7437 51.5113 38.7598 51.1527 38.8644 51.0929C40.3437 50.4055 41.838 49.748 43.3322 49.0756C46.6196 47.5814 49.9219 46.1021 53.2093 44.6078C55.1817 43.7112 53.4633 40.8273 51.5058 41.7089C47.6805 43.4423 43.8552 45.1607 40.0299 46.894C37.669 47.9549 32.9172 49.4193 34.6804 52.9906C36.0701 55.7998 40.1644 56.1285 42.8839 56.0538C45.9173 55.9791 48.9656 55.4262 51.73 54.1113C57.9909 51.1526 59.6346 44.1147 59.3058 37.7043C58.9771 31.2939 56.6162 24.1364 51.7598 19.8927C48.846 17.3376 45.3793 16.8743 41.6288 17.4422C37.3103 18.0996 33.1414 19.5042 29.1367 21.2077C27.1494 22.0594 28.8678 24.9583 30.8402 24.1066L30.8551 24.1215Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M39.8195 46.9986C39.162 47.2078 38.2505 47.0434 37.4137 46.8193C36.9953 46.6998 36.5769 46.5503 36.1585 46.4009C35.8149 46.2814 36.3528 46.5205 36.0838 46.371C35.9792 46.3113 35.77 46.2067 35.6804 46.132C35.6356 46.0871 35.4413 45.7883 35.4861 45.8929C35.4861 45.8779 35.3666 45.3699 35.3965 45.6239C35.3516 45.2802 35.3218 45.3251 35.531 44.8917C35.7103 44.5182 36.0091 44.2342 36.308 43.9503C36.3976 43.8756 36.7563 43.6067 36.3528 43.8906C36.5769 43.7262 36.7861 43.5768 37.0103 43.4273C38.7436 42.2618 40.5218 41.6641 42.4942 41.0066C45.1689 40.125 47.8138 39.1836 50.4736 38.2721C52.5057 37.5698 51.6391 34.3273 49.577 35.0296C47.0368 35.8963 44.5115 36.7779 41.9712 37.6296C40.0436 38.2871 38.0861 38.8549 36.308 39.8859C34.5298 40.917 32.8562 42.1273 32.2286 44.0848C31.6011 46.0423 32.5424 48.3584 34.4401 49.2699C36.3379 50.1814 38.7287 50.8538 40.7011 50.2113C42.6735 49.5688 41.8816 46.2963 39.8045 46.9687L39.8195 46.9986Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M37.0698 39.7666C35.8296 39.8413 33.8422 39.4677 33.125 38.3619C32.9606 38.1229 32.8112 37.555 33.2595 37.1964C33.9917 36.6137 35.0825 36.3298 35.9491 36.0309C38.1308 35.2987 40.3871 34.8355 42.6285 34.2826C45.0193 33.6849 47.3802 33.0573 49.7561 32.4297C51.8481 31.8918 50.9665 28.6343 48.8595 29.1872C45.9457 29.9493 43.0319 30.7412 40.0882 31.4286C37.3239 32.0861 34.3802 32.6987 31.8698 34.1033C30.6595 34.7757 29.6882 35.9114 29.5836 37.3458C29.4939 38.5263 29.9422 39.8562 30.7192 40.7378C32.1986 42.4114 34.8733 43.2631 37.0549 43.1286C39.2365 42.9942 39.2216 39.6321 37.0549 39.7666H37.0698Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M34.3196 33.1023C33.3184 33.1919 32.377 32.9229 31.4954 32.4597C31.2713 32.3402 31.0322 32.2057 30.823 32.0563C30.4494 31.8022 31.1667 32.4448 30.5839 31.8471C30.3299 31.5931 30.0011 31.2344 29.8965 30.9804C29.7621 30.6666 29.7322 30.6367 29.8667 30.2482C29.9115 30.0988 30.0759 29.8896 30.2701 29.6953C30.4494 29.531 30.7632 29.3218 31.1069 29.1425C31.1517 29.1275 31.6149 28.9333 31.2563 29.0678C31.3908 29.0229 31.5103 28.9781 31.6448 28.9333C33.5127 28.3505 35.4253 27.8574 37.338 27.454C38.5782 27.185 39.8184 27.0057 41.0736 26.8413C42.4782 26.6769 43.8529 26.4677 45.2725 26.6471C46.169 26.7666 46.9461 25.7953 46.9461 24.9735C46.9461 23.9723 46.169 23.4045 45.2725 23.2999C43.9725 23.1355 42.6874 23.2999 41.4023 23.4493C40.1173 23.5988 38.7874 23.7631 37.4874 24.0022C35.4253 24.3907 33.3931 24.9436 31.3759 25.5264C29.8368 25.9597 28.3873 26.6172 27.4011 27.9321C25.9965 29.7701 26.3402 32.0114 27.7448 33.7149C29.2391 35.523 32.0184 36.7184 34.3494 36.4942C35.246 36.4046 36.023 35.777 36.023 34.8207C36.023 33.9839 35.246 33.0574 34.3494 33.1471L34.3196 33.1023Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M1.01147 32.6538C1.23561 37.4056 1.51952 42.1424 1.8632 46.8941C2.04251 49.27 2.22182 51.6309 2.43102 54.0068C2.59539 55.8597 2.43102 58.3103 4.26896 59.3861C5.97242 60.3724 8.25863 59.8793 10.0517 59.4907C12.3081 59.0126 14.6989 58.654 16.9104 57.9666C19.2265 57.2344 18.5541 54.9183 18.2403 53.0953C17.8518 50.824 17.4483 48.5528 17.0299 46.2815C16.5518 43.7562 16.0437 41.2309 15.4759 38.7205C14.9081 36.2102 13.6828 33.4309 14.0265 30.9205C14.146 30.009 13.8023 29.1274 12.846 28.8584C12.069 28.6343 10.9035 29.1274 10.7839 30.0389C10.4851 32.2056 10.9035 34.163 11.4265 36.2699C11.9495 38.3769 12.4575 40.5884 12.9058 42.755C13.3541 44.9217 13.7426 46.939 14.1161 49.0309C14.3104 50.0769 14.4897 51.1229 14.669 52.1838C14.8184 53.0057 15.4909 54.9482 15.2069 55.7401L15.984 54.739C15.5506 55.0229 14.7587 55.0528 14.2506 55.1574C13.5334 55.3218 12.8161 55.4712 12.0989 55.6356C10.7242 55.9344 9.3345 56.3379 7.9299 56.5321C7.49656 56.5919 6.3161 56.816 5.94253 56.5022C6.13679 56.6666 6.0023 56.3229 5.97242 56.2183C5.88276 55.8896 5.8977 55.4712 5.86782 55.1275C5.73334 53.5735 5.59885 52.0344 5.47931 50.4804C5.00115 44.5631 4.62758 38.6309 4.35862 32.6837C4.25402 30.532 0.891933 30.517 0.996531 32.6837H1.01147V32.6538Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M8.23048 38.5113C10.3972 38.5113 10.3972 35.1492 8.23048 35.1492C6.0638 35.1492 6.0638 38.5113 8.23048 38.5113Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M17.988 57.1149C21.7834 57.5333 25.5191 56.9655 29.18 55.9943C30.8536 55.546 32.5571 54.8437 34.2904 54.7839C34.9927 54.769 35.7099 54.7839 36.3973 54.9333C36.6812 54.9931 36.9502 55.0529 37.2341 55.1425C37.4881 55.2172 37.2939 55.2023 37.1295 55.0379L36.6962 54.2908V54.3356C37.0548 55.1724 37.8318 55.7701 38.7881 55.5161C39.595 55.292 40.2973 54.2908 39.9686 53.454C39.3858 51.9896 37.7571 51.7356 36.3525 51.5563C34.3502 51.3023 32.5272 51.5563 30.5996 52.1241C26.4306 53.3195 22.3513 54.246 17.988 53.7529C17.0915 53.6483 16.3145 54.6046 16.3145 55.4264C16.3145 56.4126 17.0915 57.0103 17.988 57.1V57.1149Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M43.8531 12.0031L45.452 6.23522C45.6911 5.38349 45.1681 4.36739 44.2715 4.17314C43.375 3.97889 42.4485 4.44211 42.2094 5.3536L40.6106 11.1214C40.3715 11.9732 40.8945 12.9893 41.7911 13.1835C42.6876 13.3778 43.614 12.9146 43.8531 12.0031Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M51.8627 14.4088L54.8213 10.0157C55.0604 9.67203 55.1053 9.11916 54.9857 8.71571C54.8662 8.31226 54.5823 7.90881 54.2087 7.71455C53.357 7.26628 52.4305 7.53524 51.9075 8.31226L48.9489 12.7054C48.7098 13.0491 48.665 13.6019 48.7845 14.0054C48.9041 14.4088 49.188 14.8123 49.5616 15.0065C50.4133 15.4548 51.3397 15.1859 51.8627 14.4088Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M60.1405 19.7136C61.7543 18.4285 63.2933 17.0388 64.7129 15.5296C65.3255 14.8871 65.4003 13.7813 64.7129 13.1538C64.0255 12.5262 62.9796 12.4664 62.337 13.1538C60.9175 14.648 59.3784 16.0526 57.7646 17.3377C57.4508 17.5917 57.2715 18.1446 57.2715 18.5331C57.2715 18.9515 57.4508 19.4446 57.7646 19.7285C58.0784 20.0124 58.5117 20.2366 58.96 20.2216L59.4083 20.1618C59.6922 20.0871 59.9462 19.9377 60.1554 19.7285L60.1405 19.7136Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',transformTemplate:transformTemplate1,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-88pooj\",\"data-framer-name\":\"Vector 514\",fill:\"rgb(94, 48, 48)\",intrinsicHeight:25,intrinsicWidth:165,layoutDependency:layoutDependency,layoutId:\"QJx5owYoH\",svg:'<svg width=\"165\" height=\"25\" viewBox=\"-3 -3 165 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0644531 0.732422C49.9021 0.732422 151.224 0.732422 157.811 0.732422C166.046 0.732422 80.238 9.73081 59.0029 18.7293\" stroke=\"#ECF86E\" stroke-width=\"6\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-v2x81s\",\"data-framer-name\":\"Layer 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:43,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"VPbQHVwbI\",svg:'<svg width=\"40\" height=\"43\" viewBox=\"0 0 40 43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.72721 20.6711C4.49493 21.5489 5.9987 22.6236 6.9857 21.3625C7.38579 20.8551 7.42206 20.113 7.45464 19.4938C7.49629 18.6335 7.39199 17.7937 7.18862 16.9575L6.31523 17.4119C6.84333 18.0477 7.46048 18.5776 8.18812 18.9731C8.8361 19.323 9.70801 19.6933 10.4592 19.4886C11.2478 19.2705 11.6764 18.4729 12.0846 17.8253C12.4927 17.1776 12.8785 16.4376 13.1983 15.7053C14.4982 12.7157 14.9329 9.37449 14.421 6.14927L13.4572 6.35061C13.869 8.25898 14.4343 10.1389 15.2853 11.9011C15.9849 13.358 16.9166 14.769 18.3749 15.5535C19.7505 16.2989 21.3385 16.2921 22.6665 15.4535C24.1545 14.5155 24.9367 12.8731 25.6312 11.3254C25.8927 10.7407 24.9944 10.3111 24.7346 10.9005C24.0431 12.4418 24.6553 14.305 26.0229 15.2646C27.5229 16.3142 29.4832 16.1218 31.0351 15.3036L30.3681 14.5748C28.5679 16.459 28.4453 19.4458 30.1571 21.429C30.9298 22.3209 31.9778 22.8292 33.0465 23.2772C34.1152 23.7253 35.3285 24.164 36.0517 25.1686L36.5516 24.3932C33.9856 24.1467 31.7032 25.4792 30.4723 27.715C29.2415 29.9508 29.3943 32.7177 30.3141 35.0576L30.9967 34.4388C29.6117 33.8448 28.36 32.7065 26.7915 32.664C25.5426 32.629 24.2511 33.2591 23.9747 34.5571C23.8401 35.1864 24.8181 35.3657 24.9544 34.7411C25.1752 33.7165 26.4978 33.5139 27.362 33.7443C28.5174 34.0505 29.4823 34.8737 30.5735 35.3402C30.9547 35.5053 31.4207 35.1381 31.2561 34.7214C30.4745 32.739 30.258 30.4598 31.2016 28.485C32.1452 26.5103 34.125 25.1589 36.374 25.3759C36.7841 25.4145 37.1463 24.9787 36.8739 24.6004C35.619 22.8609 33.4285 22.6601 31.7487 21.5214C29.5883 20.0576 29.3645 17.0623 31.1355 15.2149C31.5591 14.7732 30.9278 14.2482 30.4685 14.4861C29.3213 15.0911 27.7976 15.2334 26.6694 14.5002C25.6512 13.8386 25.1356 12.4534 25.6423 11.3268L24.7456 10.9019C24.1385 12.2651 23.4879 13.7284 22.198 14.5851C20.9081 15.4418 19.4709 15.2046 18.3145 14.3334C17.1582 13.4623 16.425 12.0596 15.8619 10.7337C15.2191 9.2142 14.7638 7.62783 14.412 6.0204C14.2919 5.47677 13.3579 5.67277 13.4482 6.22174C13.8729 8.89163 13.6478 11.6508 12.7416 14.2039C12.2959 15.4568 11.7045 16.6717 10.9565 17.7735C10.7429 18.0928 10.5045 18.5055 10.0804 18.546C9.72226 18.5787 9.30588 18.3892 8.99126 18.2479C8.27298 17.923 7.65214 17.4419 7.14981 16.834C6.78001 16.3901 6.13894 16.7404 6.27642 17.2884C6.5002 18.1966 6.56933 19.1599 6.4316 20.0915C6.3629 20.5651 6.20215 21.0029 5.63346 20.9047C5.19431 20.829 4.84224 20.4052 4.57284 20.0945C4.15986 19.6184 3.33599 20.182 3.757 20.6657L3.72888 20.6758L3.72721 20.6711Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zf0tkc\",\"data-framer-name\":\"Review 3 \u2022 Web\",layoutDependency:layoutDependency,layoutId:\"vcvI3GpBm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-mu2mpl\",\"data-styles-preset\":\"KxyDXhYjD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CThe ad performance was outstanding, ranking among the top performers. They delivered exceptional results, they were fast, professional, and delivered on time.\u201D\"})}),className:\"framer-hzxemc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"h3kxZvKio\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:RHi_oMwT7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-f33xcb\",\"data-framer-name\":\"Layer 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:37,intrinsicWidth:37,layoutDependency:layoutDependency,layoutId:\"u_ED7RIYT\",svg:'<svg width=\"37\" height=\"37\" viewBox=\"0 0 37 37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M28.3196 25.2879C19.9511 29.314 12.8332 28.6918 6.13448 25.2457C4.42851 24.3717 2.69067 20.2661 3.38823 18.8188C4.29258 16.9477 7.77207 15.0456 9.89557 15.2785C16.7794 16.0395 22.1962 20.1466 28.321 25.2727L28.3196 25.2879ZM6.45892 20.459C9.3309 24.516 16.0928 26.2734 22.5175 24.6337C16.6079 18.909 10.9564 17.4443 6.45892 20.459Z\" fill=\"#DAD1F2\"/>\\n<path d=\"M30.3651 20.9342C23.4805 19.3488 17.853 13.6271 17.6814 7.92477C17.6277 6.17953 18.2697 3.58978 19.4718 2.88328C20.5362 2.26339 23.2633 3.2386 24.4901 4.34338C29.2269 8.62475 31.6712 13.9324 30.3582 20.9259L30.3651 20.9342ZM28.1472 18.2349C27.8476 10.5973 25.82 7.48798 20.2688 6.26143C19.6943 12.2769 23.6821 15.0699 28.1472 18.2349Z\" fill=\"#DAD1F2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Donna Ledwidge\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Co-Founder, KeyForHer\"})]}),className:\"framer-qlegf6\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"TCqstu_AL\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jy3o0b\",\"data-framer-name\":\"Vector 514\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:165,layoutDependency:layoutDependency,layoutId:\"Av7MhZjNs\",svg:'<svg width=\"165\" height=\"25\" viewBox=\"-3 -3 165 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0644531 0.732422C49.9021 0.732422 151.224 0.732422 157.811 0.732422C166.046 0.732422 80.238 9.73081 59.0029 18.7293\" stroke=\"#ECF86E\" stroke-width=\"6\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1suo5t\",\"data-framer-name\":\"Group 375726\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:68,intrinsicWidth:90,layoutDependency:layoutDependency,layoutId:\"UordScgZX\",svg:'<svg width=\"90\" height=\"68\" viewBox=\"0 0 90 68\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.532 32.3906C10.848 31.9781 10.3525 31.6885 9.87437 31.3809C4.27381 27.7688 3.95233 20.1145 9.24759 16.4149C13.681 13.3152 20.9069 15.6427 23.0349 20.83C23.9418 23.0367 24.0867 25.2698 23.2665 27.8503C25.376 27.045 27.1946 26.3488 29.009 25.6536C29.0738 25.4807 29.1344 25.3088 29.2003 25.14C28.7606 25.0088 28.2568 24.9704 27.882 24.733C24.481 22.5766 22.6872 19.4827 22.8649 15.4337C23.0858 10.4173 27.5872 7.27268 32.4125 8.63844C37.5172 10.0849 40.7095 15.6273 39.3865 20.7612C39.3286 20.9767 39.276 21.1953 39.1568 21.663C40.7105 21.0733 42.0815 20.5815 43.4285 20.0338C44.8749 19.4417 45.727 19.5024 46.4897 20.9386C47.8455 23.5096 48.9763 26.2032 50.1286 28.8777C50.6155 30.0143 50.9193 31.2311 51.3607 32.58C52.1455 32.2897 52.8204 32.0377 53.6538 31.7299C53.2009 30.5042 52.7193 29.3706 52.3652 28.1984C52.0066 27.0095 51.7216 25.7966 51.4969 24.5764C51.3076 23.5378 51.7566 22.675 52.7391 22.3095C54.527 21.6482 56.3506 21.0706 58.178 20.5232C59.2642 20.1966 59.9874 20.7053 60.3537 21.7408C62.3636 27.3999 64.3693 33.0602 66.375 38.7204C66.8169 39.9713 67.2422 41.2267 67.6675 42.4821C67.9732 43.3739 67.7868 44.1885 66.9447 44.5964C65.5549 45.2667 64.14 45.9926 62.6529 46.3333C60.813 46.7507 59.5767 46.0194 58.7508 44.2978C57.9768 42.6868 57.2822 41.0234 56.684 39.3386C56.1286 37.7802 55.235 38.9088 54.5134 38.9866C53.6358 39.0795 53.8121 39.6547 54.0383 40.2832C54.9659 42.8489 55.8335 45.4396 56.7539 48.0118C57.0403 48.8153 57.358 49.6194 57.7747 50.3613C58.3505 51.3986 58.3026 52.0827 57.2113 52.5397C55.489 53.2634 53.6993 53.8186 51.9313 54.4213C46.2948 56.3495 40.6247 58.2022 35.022 60.2236C32.2408 61.2267 29.6223 62.6708 26.8464 63.6769C24.4018 64.5587 21.8506 65.1756 19.3116 65.7715C18.2159 66.0295 17.4793 65.222 17.053 64.2781C15.3919 60.5841 13.7183 56.8933 12.1398 53.1593C9.99203 48.0973 7.95822 42.9959 5.85611 37.9217C5.29154 36.5614 5.92836 34.7235 7.28174 34.1163C7.9558 33.8112 8.66342 33.5816 9.34941 33.3044C10.0199 33.0359 10.6807 32.7476 11.5279 32.3917L11.532 32.3906ZM7.90572 36.3455C8.15378 36.9726 8.31308 37.4012 8.48897 37.8253C9.78541 40.9547 11.0777 44.0852 12.3866 47.2112C14.49 52.2406 16.6101 57.2655 18.6969 62.2994C19.0509 63.1559 19.5967 63.4009 20.4288 63.138C22.6908 62.4207 24.9833 61.7842 27.2006 60.95C30.6207 59.6601 33.9556 58.1352 37.392 56.8899C40.4682 55.7766 43.6452 54.9565 46.7485 53.9115C48.959 53.1681 51.0971 52.2039 53.3117 51.4594C55.2001 50.8245 55.2253 50.9022 54.617 49.0467C54.5929 48.9731 54.5729 48.8985 54.5446 48.826C52.3677 42.527 50.2312 36.2127 47.989 29.9356C47.1669 27.6306 46.1014 25.413 45.1416 23.1582C44.8076 22.3763 44.2917 22.1766 43.465 22.5093C40.6135 23.6646 37.737 24.7599 34.8747 25.8914C29.2927 28.0896 23.7237 30.3198 18.1351 32.4931C14.7974 33.792 11.4303 35.0143 7.9035 36.3372L7.90572 36.3455ZM8.09424 25.1357C9.07569 28.7985 13.1164 31.3347 16.5589 30.4435C20.2128 29.4955 22.1317 26.4027 21.2233 22.9293C20.2192 19.0992 16.1938 16.6699 12.4558 17.636C9.0548 18.5161 7.18282 21.7342 8.09313 25.1315L8.09424 25.1357ZM28.3702 11.0242C26.9886 11.4433 25.8539 12.6677 25.3945 14.5203C24.399 18.5705 27.6929 23.2142 31.85 23.6297C34.3992 23.8848 36.5269 22.3677 37.1389 19.8562C37.5355 18.2339 37.2501 16.6876 36.5894 15.1841C35.2202 12.0653 31.7293 10.1375 28.3702 11.0242ZM54.1039 34.0902C54.1106 34.1151 54.1079 34.138 54.1104 34.164C53.7374 34.2818 53.3751 34.4233 52.9954 34.5161C51.9144 34.7791 52.4187 35.4665 52.5508 36.0757C52.708 36.8117 53.0671 37.04 53.7976 36.7465C54.5922 36.4268 55.3985 36.1174 56.2254 35.9181C57.4165 35.6345 58.0217 36.0681 58.4472 37.2079C59.1127 38.9946 59.8216 40.7609 60.5399 42.5291C60.8853 43.3702 61.2643 44.2868 62.4572 43.9271C63.3413 43.6591 64.1998 43.2957 65.0392 42.9107C65.1539 42.8578 65.1744 42.4032 65.102 42.1826C64.7102 41.0026 64.277 39.8338 63.8562 38.6617C62.3913 34.5549 60.8527 30.4723 59.482 26.3359C58.2682 22.6686 58.078 22.5062 54.5444 24.1688C54.2684 24.3006 53.9217 24.8647 54.0035 25.0873C54.8409 27.366 55.7725 29.615 56.6502 31.8785C56.8081 32.2852 57.0477 32.8479 56.8924 33.1474C56.7017 33.5142 56.157 33.7712 55.7134 33.9079C55.2088 34.0653 54.6469 34.0425 54.1103 34.0974L54.1039 34.0902Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M27.6516 56.6457C26.0218 56.9845 24.4252 57.3145 22.8245 57.6456C21.7885 57.861 21.0892 57.4748 20.6966 56.4908C18.7702 51.6407 16.8365 46.797 14.9101 41.9469C14.5946 41.1512 14.2573 40.3568 14.0319 39.5324C13.6238 38.059 14.3361 37.2991 15.7751 36.829C18.6542 35.8931 21.5494 34.9173 24.2746 33.6224C28.8931 31.429 33.5743 29.4366 38.5145 28.0952C40.185 27.6431 40.7272 27.8579 41.334 29.3759C43.4824 34.7223 45.6277 40.0739 47.7636 45.4236C48.4684 47.191 47.9166 48.4503 46.1366 49.2073C41.3395 51.2485 36.5532 53.3135 31.7356 55.3113C30.4114 55.8617 28.9974 56.2095 27.6494 56.6374L27.6516 56.6457ZM17.4225 38.9618C17.6496 39.6435 17.7766 40.134 17.9708 40.5933C19.6272 44.502 21.3188 48.3925 22.9586 52.3057C24.1058 55.0438 24.1536 55.2222 26.9362 54.3076C30.0711 53.2809 33.1128 51.9724 36.1767 50.7468C39.0315 49.604 41.8517 48.3815 44.7099 47.2511C45.486 46.9453 45.6501 46.5456 45.3131 45.8356C45.1803 45.5556 45.0939 45.2497 44.9807 44.96C43.7726 41.8781 42.5686 38.7951 41.3532 35.7196C40.6601 33.9624 39.9443 32.2202 39.2499 30.5079C31.3511 32.0241 24.9344 36.6823 17.4183 38.9629L17.4225 38.9618Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M16.1406 24.3804C15.8759 24.6869 15.5793 25.3222 15.1054 25.5114C14.3107 25.831 13.6623 25.369 13.4431 24.5341C13.2308 23.7418 13.5722 23.1079 14.3629 22.9227C15.221 22.7239 15.729 23.2592 16.1436 24.3751L16.1406 24.3804Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M31.1579 15.9187C32.0051 15.8118 32.6646 16.0663 32.929 16.9869C33.1868 17.8826 32.7552 18.7274 31.9399 18.9369C31.162 19.1365 30.2014 18.5714 30.0638 17.7591C29.917 16.8959 30.2423 16.2352 31.1548 15.924L31.1579 15.9187Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M28.5723 49.2992C27.7053 49.5315 26.8425 49.7627 25.9756 49.995C25.1376 50.2195 24.5469 49.9065 24.1344 49.1634C23.1009 47.2974 22.0467 45.4369 21.009 43.572C20.5546 42.7557 20.8368 41.8842 21.7474 41.7648C26.3373 41.1573 29.992 38.453 33.9614 36.4424C34.3416 36.2516 34.7053 36.0164 35.0918 35.8328C36.1109 35.3552 36.7993 35.6509 37.2248 36.675C38.099 38.7927 38.9887 40.9018 39.8743 43.012C40.1933 43.7712 40.0903 44.399 39.2913 44.7687C35.7695 46.3926 32.2433 47.9999 28.7182 49.6113C28.6685 49.509 28.6219 49.4015 28.5723 49.2992Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M70.3613 32.5839C69.9245 32.3038 69.3097 32.1225 69.0966 31.7234C68.719 31.0185 69.3056 30.5664 69.9038 30.3039C71.8611 29.4491 73.8318 28.6301 75.7987 27.7963C79.2237 26.3438 82.6402 24.8739 86.0778 23.4535C86.5133 23.2738 87.0674 23.2433 87.5351 23.3304C87.7541 23.37 88.0922 23.9125 88.0283 24.1144C87.8942 24.5239 87.6022 25.019 87.2413 25.1982C85.8184 25.8902 84.344 26.4779 82.8858 27.0967C78.8607 28.8044 74.8318 30.513 70.8067 32.2207C70.7116 32.262 70.6164 32.3032 70.5203 32.3407C70.4673 32.4218 70.418 32.5018 70.364 32.5792L70.3613 32.5839Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M84.4976 32.6793C80.4432 33.4707 76.3925 34.2612 72.3408 35.048C72.1058 35.0952 71.8198 35.1876 71.6314 35.1005C71.2078 34.8994 70.8287 34.5999 70.4338 34.3439C70.7161 33.9301 70.9162 33.2827 71.2999 33.1445C72.2275 32.8055 73.2364 32.6964 74.2163 32.5086C77.7658 31.8288 81.3127 31.1537 84.8632 30.4776C85.5254 30.3513 86.0482 30.5415 86.2103 31.2491C86.3763 31.9714 85.9456 32.3306 85.3046 32.5063C85.0404 32.5771 84.7726 32.6488 84.5084 32.7196C84.5045 32.7049 84.5006 32.6903 84.4976 32.6793Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M69.2232 29.4003C68.9061 29.2296 68.4132 29.1218 68.2294 28.8172C68.0627 28.5473 68.1489 28.0326 68.2907 27.6958C68.4149 27.4109 68.7616 27.2079 69.0363 27.0006C72.2937 24.5116 75.5548 22.0216 78.8262 19.5407C79.0973 19.3344 79.4053 19.0749 79.7145 19.055C80.0771 19.0286 80.638 19.1261 80.7858 19.3696C80.9697 19.6742 80.89 20.1989 80.7917 20.5948C80.7374 20.8178 80.4318 20.998 80.2171 21.1656C76.8705 23.7178 73.5219 26.2627 70.1722 28.8039C69.9266 28.9876 69.6554 29.135 69.2315 29.402L69.2232 29.4003Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18j6qdb\",\"data-framer-name\":\"Review 4 \u2022 Web\",layoutDependency:layoutDependency,layoutId:\"Olkgd8hF4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-mu2mpl\",\"data-styles-preset\":\"KxyDXhYjD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CThe ad performance was outstanding, ranking among the top performers. They delivered exceptional results, they were fast, professional, and delivered on time.\u201D\"})}),className:\"framer-1ek277g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZWd3PqPAR\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:uqMMk71Fm,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-eivw9y\",\"data-framer-name\":\"Vector 548\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:74,intrinsicWidth:268,layoutDependency:layoutDependency,layoutId:\"AZMaXOA78\",svg:'<svg width=\"268\" height=\"74\" viewBox=\"-2 -2 268 74\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M242.227 19.9646C209.951 8.58696 123.163 -8.15436 34.2242 15.9011C-76.9498 45.9705 114.317 89.0428 220.71 59.7861C292.41 40.0694 259.915 11.121 227.639 0.285156\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dlwvwz\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:51,intrinsicWidth:31,layoutDependency:layoutDependency,layoutId:\"flDstzYXr\",svg:'<svg width=\"31\" height=\"51\" viewBox=\"-1 -1 31 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M28.9932 22.9729L29.0858 22.8378L28.9989 22.6989C28.8428 22.4496 28.7164 22.2193 28.5954 21.9987C28.5367 21.8918 28.4793 21.7871 28.4204 21.6837C28.245 21.376 28.0601 21.0872 27.8089 20.8545C22.5269 15.9548 18.943 9.91531 16.0214 3.39526L16.0207 3.39374C15.6856 2.6591 15.2809 1.79776 14.6395 1.24093C14.3271 0.969743 13.9225 0.695047 13.5035 0.50289C13.0915 0.313904 12.6299 0.188308 12.2189 0.264124L12.2186 0.264194C12.0212 0.300907 11.8359 0.40953 11.6746 0.541523C11.5107 0.675568 11.356 0.846536 11.2193 1.03173C10.9485 1.39856 10.7269 1.85087 10.6494 2.24153C9.23806 9.21998 5.70179 15.1532 1.4908 20.7505C0.944946 21.475 0.522917 22.1051 0.247773 22.6778C-0.0281997 23.2524 -0.163834 23.7843 -0.118292 24.3078C-0.02709 25.3562 0.779016 26.2551 2.23215 27.3433C6.4717 30.5247 9.23126 34.6896 10.5414 39.8011L10.5415 39.8013C10.863 41.0518 11.0442 42.3276 11.2275 43.619C11.31 44.1998 11.3929 44.7836 11.4892 45.3698L11.4894 45.3707C11.6125 46.1022 12.109 46.8536 12.7172 47.4081C13.3215 47.9591 14.0929 48.3666 14.8033 48.325L14.8038 48.325C15.2674 48.2969 15.637 48.1822 15.929 47.9908C16.222 47.7986 16.4202 47.5401 16.5578 47.252C16.785 46.7763 16.8565 46.1898 16.9212 45.6592C16.9322 45.5691 16.943 45.4806 16.9543 45.3945C16.9875 45.1452 17.0129 44.9056 17.0378 44.6701C17.0744 44.3245 17.11 43.9878 17.1682 43.6425C18.4089 36.3402 22.3321 30.5263 27.369 25.2879L27.3692 25.2877C27.6955 24.9477 27.9665 24.5635 28.222 24.1705C28.3198 24.02 28.4139 23.8705 28.5079 23.7213C28.6644 23.4727 28.8206 23.2246 28.9932 22.9729ZM23.4978 23.22C19.9403 27.2793 16.5541 31.8378 14.3607 37.744C12.3452 31.8804 9.26253 27.2993 4.81671 24.083C5.8943 22.168 6.9586 20.2756 8.0067 18.4121C9.89564 15.0536 11.7319 11.7887 13.4985 8.65304C15.1629 11.0759 16.8852 13.5857 18.6612 16.1738C20.2323 18.4632 21.8455 20.814 23.4978 23.22Z\" fill=\"#DAD1F2\" stroke=\"#DDD4F6\" stroke-width=\"0.5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xi1g0o\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:34,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"OtybUZmW4\",svg:'<svg width=\"22\" height=\"34\" viewBox=\"-1 -1 22 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.3299 15.1875L19.4225 15.0523L19.3356 14.9134C19.237 14.756 19.1584 14.6126 19.0816 14.4727C19.0437 14.4037 19.0063 14.3355 18.9672 14.2669C18.8541 14.0684 18.7302 13.8735 18.5588 13.7147C15.1908 10.5905 12.9033 6.73736 11.0361 2.57044L11.0354 2.56892C10.8224 2.102 10.5563 1.53186 10.1285 1.16055C9.92301 0.982126 9.65693 0.801365 9.38007 0.674376C9.11013 0.550557 8.79418 0.461362 8.50412 0.514868L8.50374 0.514938C8.3569 0.542258 8.22455 0.621672 8.11506 0.711248C8.00306 0.802875 7.89902 0.918215 7.80825 1.04118C7.62931 1.28358 7.48053 1.58507 7.42768 1.85128C6.52832 6.29806 4.27433 10.0824 1.58281 13.66C1.23241 14.1251 0.958004 14.534 0.777989 14.9088C0.597163 15.2852 0.504167 15.6422 0.535179 15.9987C0.597319 16.713 1.14569 17.3096 2.07513 18.0056C4.77179 20.0292 6.52624 22.6771 7.35967 25.9287L7.35972 25.9289C7.56423 26.7242 7.679 27.5326 7.79598 28.3565C7.84891 28.7294 7.90229 29.1054 7.96464 29.4848L7.9648 29.4857C8.04798 29.9799 8.38008 30.4777 8.77866 30.8412C9.17336 31.201 9.69005 31.4799 10.1796 31.4513L10.1802 31.4513C10.4888 31.4326 10.7413 31.3558 10.9442 31.2228C11.148 31.0891 11.2847 30.9097 11.3784 30.7135C11.5308 30.3945 11.5785 30.0017 11.6196 29.6634C11.6265 29.6064 11.6332 29.551 11.6402 29.4977C11.6622 29.3327 11.6786 29.1778 11.6945 29.0269C11.7175 28.809 11.7396 28.5994 11.7766 28.3798C12.5665 23.7311 15.0641 20.0261 18.2811 16.6805L18.2813 16.6803C18.496 16.4566 18.6731 16.2051 18.8376 15.952C18.9017 15.8534 18.9625 15.7568 19.0228 15.661C19.1221 15.5033 19.2202 15.3475 19.3299 15.1875ZM7.67281 1.90038C7.76048 1.45787 8.19046 0.827514 8.54947 0.760721L7.67281 1.90038ZM15.6249 15.288C13.4084 17.8232 11.2955 20.6695 9.8944 24.3261C8.60874 20.7002 6.66994 17.8469 3.90087 15.8213C4.57729 14.6192 5.24547 13.4312 5.90366 12.2609C7.08712 10.1568 8.23828 8.11001 9.34692 6.14209C10.3865 7.65562 11.4613 9.22174 12.5687 10.8355C13.5617 12.2826 14.5811 13.768 15.6249 15.288Z\" fill=\"#DAD1F2\" stroke=\"#DDD4F6\" stroke-width=\"0.5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Tiana Westwood\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Head of Content, Sitting Pretty\"})]}),className:\"framer-r1y4bz\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"t1Jv7f86M\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1aykzpr\",\"data-framer-name\":\"Vector 514\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:165,layoutDependency:layoutDependency,layoutId:\"EoMEukaXq\",svg:'<svg width=\"165\" height=\"25\" viewBox=\"-3 -3 165 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0644531 0.732422C49.9021 0.732422 151.224 0.732422 157.811 0.732422C166.046 0.732422 80.238 9.73081 59.0029 18.7293\" stroke=\"#ECF86E\" stroke-width=\"6\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xsdb9e\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:83,intrinsicWidth:79,layoutDependency:layoutDependency,layoutId:\"QERsfrWoh\",svg:'<svg width=\"79\" height=\"83\" viewBox=\"0 0 79 83\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M39.0523 46.7507C47.4782 37.7732 55.9405 28.7546 64.7489 19.3624C61.9987 19.626 59.5314 19.8468 57.0678 20.0855C56.4051 20.1538 55.7476 20.2659 55.0827 20.3421C53.4844 20.5159 52.3979 19.7923 52.2515 18.2183C52.1104 16.6881 53.214 15.9239 54.596 15.7346C56.436 15.4814 58.2859 15.3496 60.14 15.202C63.3212 14.9436 66.4993 14.6335 69.6925 14.4885C72.691 14.3423 74.2977 15.9091 74.2952 18.8931C74.2902 23.5639 74.1938 28.2272 74.1234 32.889C74.116 33.3279 74.021 33.7773 73.8986 34.2024C73.496 35.5784 72.8371 36.8349 71.1518 36.5105C69.3716 36.1607 69.2726 34.7266 69.3699 33.1925C69.5853 29.9517 69.7016 26.7013 69.8416 23.4573C69.8606 23.0384 69.7545 22.6115 69.6688 21.9186C69.088 22.3142 68.653 22.5453 68.3038 22.8672C58.7126 31.7953 49.8195 41.3769 41.5368 51.529C39.5406 53.9788 37.9 53.836 36.0876 51.2644C34.6439 49.2156 33.0175 47.279 31.3061 45.4383C30.9178 45.0205 29.5652 44.8785 29.1622 45.2115C21.2193 51.817 13.319 58.4848 5.48515 65.2212C4.22923 66.3007 3.20472 67.561 1.55726 66.0512C0.393082 64.9846 0.691607 63.3008 2.35585 61.805C6.27167 58.2669 10.1722 54.6907 14.2029 51.2936C18.5843 47.6004 23.1115 44.0905 27.5745 40.504C29.9188 38.6222 30.9929 38.6641 33.1388 40.7823C35.1439 42.7611 37.1126 44.781 39.0544 46.7428L39.0523 46.7507Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-urnr0k\",\"data-framer-name\":\"Review 5 \u2022 Web\",layoutDependency:layoutDependency,layoutId:\"zJaFzhwsH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-mu2mpl\",\"data-styles-preset\":\"KxyDXhYjD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CThe ad performance was outstanding, ranking among the top performers. They delivered exceptional results, they were fast, professional, and delivered on time.\u201D\"})}),className:\"framer-cfe3qj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ve6kUjFu5\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:GKA9nC0_k,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Benjamin Tan\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Founder, 8Sheep Organics\"})]}),className:\"framer-52e687\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"Df1XgsxNd\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vk6pea\",\"data-framer-name\":\"Vector 515\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:378,layoutDependency:layoutDependency,layoutId:\"mgwLL8Nuq\",svg:'<svg width=\"378\" height=\"19\" viewBox=\"-2 -2 378 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M373.186 11.1058C336.801 10.1089 297.412 9.71367 247.068 8.78794C155.998 7.11334 52.2452 5.90925 3.67646 8.78799C-14.6367 9.87343 62.519 24.3902 183.768 0.764341\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jlqurs\",\"data-framer-name\":\"Layer 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:45,layoutDependency:layoutDependency,layoutId:\"jOaCj51VK\",svg:'<svg width=\"45\" height=\"44\" viewBox=\"0 0 45 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.8239 30.2283C20.9344 35.0925 29.5339 34.3408 37.627 30.1774C39.6881 29.1215 41.7876 24.1613 40.9449 22.4127C39.8523 20.1521 35.6485 17.854 33.083 18.1354C24.7662 19.0548 18.2219 24.0168 10.8222 30.21L10.8239 30.2283ZM37.235 24.3943C33.7652 29.2958 25.5957 31.419 17.8337 29.438C24.9735 22.5216 31.8013 20.752 37.235 24.3943Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M8.35255 24.9687C16.6702 23.0532 23.4691 16.1405 23.6765 9.25122C23.7414 7.1427 22.9657 4.01386 21.5134 3.16031C20.2274 2.41138 16.9326 3.58959 15.4504 4.92434C9.72767 10.0969 6.77453 16.5094 8.36085 24.9587L8.35255 24.9687ZM11.0321 21.7074C11.394 12.4801 13.8438 8.72351 20.5505 7.24165C21.2446 14.5093 16.4267 17.8837 11.0321 21.7074Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-q4c1dd\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:68,intrinsicWidth:67,layoutDependency:layoutDependency,layoutId:\"EmX8QeeKU\",svg:'<svg width=\"67\" height=\"68\" viewBox=\"0 0 67 68\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.4507 21.3415C9.60183 22.8132 7.73563 24.2512 5.91916 25.7637C4.51086 26.9417 4.15461 28.3555 5.02662 30.0834C9.42132 38.7902 14.6518 46.9361 20.9622 54.3744C22.1981 55.8316 23.7678 55.6079 25.2236 54.943C28.658 53.3869 32.075 51.7971 35.4101 50.0447C36.6756 49.3793 37.4442 49.6887 38.4591 50.4386C40.3578 51.8336 42.3125 53.1556 44.358 54.3292C46.5472 55.588 48.3639 54.4458 48.1751 51.9176C47.9615 49.0958 47.6481 46.2679 47.1221 43.4952C46.8082 41.836 47.3168 40.7568 48.5527 39.8395C51.0466 37.9968 53.559 36.1773 56.0297 34.3056C59.1481 31.9468 59.3661 31.0514 57.0447 27.8368C52.388 21.3902 47.6465 14.9921 42.8166 8.67384C41.8263 7.38205 40.384 6.29806 38.9281 5.56685C38.097 5.15515 36.6239 5.321 35.7651 5.80518C30.4785 8.76913 25.2253 11.8109 20.067 14.9957C17.0357 16.8672 14.1998 19.0677 11.2748 21.1206C11.335 21.1962 11.3905 21.2659 11.4449 21.3461L11.4507 21.3415ZM53.7259 30.5641C53.2827 30.9739 52.965 31.3027 52.6046 31.5897C50.1127 33.5542 47.5931 35.4839 45.1198 37.4717C43.1418 39.0557 42.0568 40.9262 42.9054 43.6509C43.3903 45.2026 43.3873 46.9051 43.6026 48.5478C43.4446 48.6356 43.2807 48.7281 43.1227 48.8159C42.0187 47.966 40.7775 47.2539 39.8503 46.2443C38.3155 44.5786 36.7856 44.6851 34.9543 45.63C31.7239 47.2991 28.4449 48.8834 25.1557 50.419C24.6642 50.6487 23.7855 50.7023 23.416 50.417C22.4673 49.6905 21.5502 48.8249 20.8969 47.8252C17.6062 42.8082 14.2876 37.8039 11.2015 32.6621C8.72788 28.5524 8.89281 28.4971 12.5466 25.4746C19.981 19.3383 28.4964 14.906 36.6938 9.96688C37.9479 9.21557 38.5588 9.98302 39.173 10.8143C43.9862 17.3263 48.7774 23.8464 53.7409 30.5711L53.7259 30.5641Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M27.134 26.5234C25.928 26.1062 24.7559 25.624 23.5462 25.2857C20.9229 24.5435 18.3264 24.6822 15.8653 25.9099C13.3984 27.1422 12.6786 29.6623 14.3771 31.7961C15.3999 33.081 16.7096 34.261 18.1235 35.0826C23.5703 38.2503 29.6344 39.6159 35.7395 40.8065C37.5503 41.1602 38.9077 40.3836 39.1594 38.5401C39.8034 33.8008 40.5497 29.0467 40.7586 24.2738C40.9662 19.559 37.6427 16.5532 33.1786 16.7918C30.5183 16.9339 28.7522 18.2352 28.0611 20.8749C27.5925 22.6727 27.4428 24.5489 27.134 26.5234ZM17.7475 29.8255C19.7708 28.6804 21.4857 28.854 23.1181 29.5206C24.9163 30.2643 26.5639 31.4033 28.3996 32.0032C29.3122 32.3025 30.7031 32.0691 31.4751 31.5116C32.0227 31.1137 32.0422 29.778 32.0455 28.8635C32.055 26.8708 31.7535 24.8693 31.8988 22.892C31.9492 22.2156 32.9524 21.0656 33.5059 21.0808C34.4297 21.0959 35.4285 21.754 36.2092 22.3768C36.5775 22.6725 36.6927 23.5211 36.6344 24.0804C36.2044 28.1459 35.7013 32.2032 35.206 36.3776C28.9998 35.2391 23.1009 33.723 17.7475 29.8255Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f3m85k\",\"data-framer-name\":\"Review 6 \u2022 Web\",layoutDependency:layoutDependency,layoutId:\"Rc1XER0q1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-mu2mpl\",\"data-styles-preset\":\"KxyDXhYjD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CThe ad performance was outstanding, ranking among the top performers. They delivered exceptional results, they were fast, professional, and delivered on time.\u201D\"})}),className:\"framer-wkm13c\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"a5bmluZ13\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:TFysv1fhc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Laurence Dochy\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"UGC Specialist, Loop Earplugs\"})]}),className:\"framer-3agsrd\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"MFYxO6jTw\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ug4czh\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:60,layoutDependency:layoutDependency,layoutId:\"yaoL5KQqV\",svg:'<svg width=\"60\" height=\"56\" viewBox=\"0 0 60 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M33.7715 50.3186C26.7233 51.8526 19.6809 50.8728 13.4813 46.0392C5.05321 39.4674 3.10746 27.7908 8.68054 18.0774C13.927 8.92718 24.9525 3.65514 35.2888 5.35972C43.937 6.78895 50.1973 11.4748 52.9352 19.9314C55.5826 28.1106 53.3928 35.4768 47.9108 41.9015C44.29 46.1435 39.6441 48.7998 33.7715 50.3186ZM49.2394 20.5285C47.8013 15.5638 43.4918 11.3667 36.9598 9.55429C26.9286 6.78238 16.1001 11.8097 11.4398 20.9318C5.72426 32.1115 11.7864 44.4257 24.1293 46.7864C29.1357 47.7455 33.8904 46.9182 38.4197 44.633C47.0795 40.2532 51.8005 30.8159 49.2411 20.535L49.2394 20.5285Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M38.8395 29.4404C38.6841 31.4961 38.8029 33.6157 38.3191 35.5862C37.4663 39.0098 34.4015 40.8447 31.0828 39.6864C28.7823 38.8875 26.7245 37.302 24.6751 35.8889C23.7308 35.239 23.563 34.0388 24.4608 33.1372C25.3324 32.27 26.3012 32.4881 27.2767 33.207C28.602 34.1802 29.9322 35.229 31.4167 35.8903C33.2624 36.7123 34.602 35.9025 34.851 33.8862C35.023 32.5102 34.901 31.0752 34.7151 29.6911C34.5407 28.353 34.1774 26.9575 35.9308 26.5466C37.7171 26.1274 38.0262 27.5853 38.355 28.8708C38.3993 29.0481 38.4306 29.2287 38.4701 29.4142C38.5981 29.424 38.7196 29.4355 38.8477 29.4453L38.8395 29.4404Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M30.4671 21.4452C29.8134 20.897 28.6853 20.3769 28.6408 19.7809C28.5848 19.0831 29.3643 17.8482 29.9898 17.6986C30.6137 17.5424 31.8733 18.2809 32.1476 18.931C32.3842 19.4859 31.6161 20.4598 31.2896 21.2463C31.0138 21.3154 30.7445 21.3828 30.4687 21.4518L30.4671 21.4452Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M21.8697 23.8762C20.9522 24.8665 20.4894 25.8058 19.9246 25.8635C19.3139 25.9326 18.6109 25.1874 17.9475 24.7951C18.3824 24.1071 18.6809 23.1251 19.2998 22.8376C19.7497 22.6273 20.6316 23.3347 21.8681 23.8696L21.8697 23.8762Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hmsgeh\",\"data-framer-name\":\"Vector 515\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:343,layoutDependency:layoutDependency,layoutId:\"bu0_r9izJ\",svg:'<svg width=\"343\" height=\"17\" viewBox=\"-2 -2 343 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.25 0.516846C106.676 0.516846 323.043 0.516846 337.11 0.516846C354.694 0.516846 171.456 6.7292 126.11 12.9417\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-z5h09p\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:93,intrinsicWidth:78,layoutDependency:layoutDependency,layoutId:\"eAfrofqMH\",svg:'<svg width=\"78\" height=\"93\" viewBox=\"0 0 78 93\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M48.9737 52.7533C51.4566 52.3807 52.6659 50.8339 53.2437 48.997C54.0535 46.4259 54.5256 43.7478 55.0659 41.0944C55.8118 37.3994 56.2506 33.6252 57.2515 30.0027C58.6893 24.8159 62.1038 21.0921 66.9554 18.7511C68.6807 17.9186 70.4608 17.1936 72.2296 16.4751C73.1416 16.1063 74.067 16.0854 74.5393 17.1588C75.0407 18.2942 74.4169 18.991 73.4346 19.4328C71.8822 20.1343 70.3008 20.7738 68.7597 21.4899C64.1675 23.6238 61.2316 27.2031 60.013 32.0638C59.2598 35.0969 58.8544 38.2225 58.3677 41.3217C57.8245 44.7361 57.465 48.1822 55.7927 51.311C54.2745 54.1477 52.0758 55.8841 48.7641 56.1024C48.242 56.1329 47.7473 56.6481 47.2535 56.9519C47.1703 57.002 47.1357 57.1271 47.0817 57.218C43.3546 64.0238 38.263 64.4938 32.1656 60.5011C30.0763 59.132 28.0542 57.6526 25.9306 56.3452C23.596 54.9102 21.1351 55.0504 18.7611 56.2804C14.6812 58.3983 12.3168 61.7895 11.8831 66.3655C11.4679 70.7561 12.2828 74.9563 14.346 78.8864C14.5462 79.2612 14.8894 79.6544 14.8701 80.03C14.8401 80.6527 14.7454 81.5922 14.3625 81.794C13.8525 82.0588 13.0225 81.8117 12.3695 81.627C12.0836 81.5479 11.8495 81.1079 11.6881 80.7805C8.35724 74.1119 6.99148 67.2525 10.3357 60.2176C12.3947 55.8934 15.9873 53.2078 20.7085 52.2274C23.4491 51.6606 26.0058 52.3972 28.3239 53.8777C30.6566 55.3681 32.8911 57.0255 35.2401 58.4915C38.8221 60.7298 41.6643 59.9698 43.8733 56.3682C44.4215 55.4792 44.4169 54.9605 43.4714 54.2966C37.6037 50.204 34.8096 44.3555 34.1776 37.4029C34.0481 35.9665 34.3077 34.4032 34.7504 33.0194C35.8053 29.737 39.2054 28.5044 42.2629 30.1145C44.7167 31.4037 46.4116 33.412 47.6138 35.859C49.9729 40.631 50.3766 45.6427 49.3746 50.8116C49.2652 51.3738 49.1378 51.9311 48.964 52.7468L48.9737 52.7533ZM45.9075 52.1334C46.1818 49.718 46.5648 47.7925 46.5852 45.8705C46.627 41.7305 45.6922 37.8453 42.8506 34.6423C41.8046 33.4659 40.5686 32.2253 38.8991 32.9328C37.2963 33.6145 37.3465 35.3791 37.419 36.8478C37.6801 42.124 39.7705 46.6022 43.5649 50.269C44.1481 50.8307 44.8375 51.287 45.9027 52.1301L45.9075 52.1334Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8cwz07\",\"data-framer-name\":\"Review 7 \u2022 Web\",layoutDependency:layoutDependency,layoutId:\"pmNdl4OAa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-mu2mpl\",\"data-styles-preset\":\"KxyDXhYjD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CThe ad performance was outstanding, ranking among the top performers. They delivered exceptional results, they were fast, professional, and delivered on time.\u201D\"})}),className:\"framer-1tghtz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"trlR52xYD\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:UJZa9XDlG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Laura\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Blosm Brands (Agency)\"})]}),className:\"framer-1dzicdi\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"gMBEUeVio\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1t7vt47\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"MncZ7yEhy\",svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M64.7611 23.0298C58.7376 15.8222 50.7739 12.8327 41.5199 13.4507C29.8907 14.2251 20.6596 19.4785 14.4104 29.4371C8.12944 39.4501 9.41455 50.7178 15.7631 58.0572C20.9168 64.017 27.6684 66.7444 35.4374 67.0626C40.6091 67.2808 45.5854 66.3177 50.2877 64.1679C58.5051 60.4167 64.7781 54.6482 67.9551 46.0417C70.9556 37.9213 70.0268 30.2064 64.7529 23.0288L64.7611 23.0298ZM26.0832 34.8824C29.3933 33.9967 32.5153 33.3541 35.488 32.3018C38.1647 31.3545 40.6953 29.9729 43.2722 28.7552C43.944 28.4386 44.46 28.1693 45.0111 28.999C48.0091 33.5064 50.1653 38.3594 51.0644 43.719C51.1228 44.0884 50.7059 44.836 50.3735 44.9323C45.5895 46.2937 41.1611 48.3484 37.1111 51.2489C36.7871 51.4794 35.902 51.3327 35.547 51.0391C34.4984 50.1604 33.5684 49.1299 32.618 48.1302C29.0246 44.3318 26.8393 39.8498 26.0796 34.8778L26.0832 34.8824ZM33.5269 53.8822C31.0533 56.353 28.7323 58.7344 26.3112 61.0161C26.0149 61.2917 25.1171 61.2141 24.6582 60.9868C20.5244 58.9364 17.4157 55.7972 15.4829 51.6294C12.6655 45.5584 13.1708 39.5107 15.864 33.5416C17.7582 33.8421 19.4726 34.2161 21.2082 34.3513C22.334 34.4362 22.7236 34.888 22.9307 35.9416C23.8638 40.756 25.7298 45.1611 29.0166 48.8801C30.4881 50.5477 31.9929 52.1819 33.5269 53.8822ZM54.5638 43.6932C54.5315 43.6518 54.4468 43.5623 54.4287 43.4726C53.2855 37.6292 51.1464 32.1998 47.786 27.2564C47.5996 26.9794 47.8898 26.0788 48.2326 25.7965C50.4238 23.9609 52.6592 22.1724 54.9592 20.4669C55.3855 20.1491 56.2912 20.0278 56.7327 20.2613C63.9624 24.105 68.1635 34.4091 65.7062 42.2095C65.5894 42.5822 65.0562 43.0575 64.691 43.0831C61.3676 43.3346 58.0425 43.4984 54.572 43.6943L54.5638 43.6932ZM25.472 31.2025C25.373 30.4202 25.2726 29.7502 25.2014 29.0796C25.0278 27.4516 25.0299 25.7828 24.6376 24.2068C24.4175 23.3264 24.5705 22.8957 25.2335 22.5489C27.9326 21.1174 30.5731 19.5537 33.3734 18.347C36.2224 17.1171 36.2989 17.2722 38.2194 19.6862C39.6778 21.527 41.1086 23.3893 42.6897 25.4159C36.9699 28.3225 31.7103 30.9738 25.4684 31.1979L25.472 31.2025ZM38.799 54.0961C42.9796 51.116 47.2348 49.0483 52.4295 47.9C52.8322 51.3128 53.3182 54.4903 53.5474 57.6902C53.6636 59.3112 51.0132 61.09 49.4619 60.5072C45.6154 59.0625 42.1895 56.8747 38.7944 54.0997L38.799 54.0961ZM29.7485 62.9431C29.991 62.3611 30.0604 61.8328 30.3587 61.5408C32.0209 59.9105 33.7103 58.296 35.4824 56.7875C35.7664 56.5437 36.6423 56.6976 37.0633 56.9619C39.2055 58.321 41.2854 59.7807 43.4006 61.1907C43.9816 61.5746 44.599 61.9005 45.5467 62.4504C40.0591 64.0496 35.03 64.2611 29.7531 62.9395L29.7485 62.9431ZM39.9751 16.827C44.5201 16.356 48.4198 16.7292 52.5856 18.2509C50.2274 20.0908 48.2142 21.6985 46.1434 23.2326C45.8911 23.4221 45.1291 23.3571 44.9448 23.1304C43.3371 21.1838 41.8042 19.1715 39.9751 16.827ZM57.0818 56.0663C56.4817 52.9038 55.9523 50.0789 55.3738 47.0107C58.3651 46.7515 61.1756 46.5075 64.3478 46.2332C62.5965 50.304 60.2006 53.2922 57.0854 56.0709L57.0818 56.0663ZM21.1304 25.9132C21.2812 25.9734 21.4365 26.03 21.5872 26.0903C21.7598 27.7265 21.9288 29.3582 22.131 31.2603C20.4894 30.9702 19.1364 30.7366 17.4046 30.4353C18.829 28.7091 19.9802 27.307 21.1304 25.9132Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pgkuyz\",\"data-framer-name\":\"Vector 548\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:79,intrinsicWidth:287,layoutDependency:layoutDependency,layoutId:\"d0A1VqHeC\",svg:'<svg width=\"287\" height=\"79\" viewBox=\"-2 -2 287 79\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M259.411 53.0907C224.841 65.2759 131.889 83.2056 36.6319 57.4425C-82.4395 25.2387 122.414 -20.8911 236.364 10.4424C313.158 31.5587 278.355 62.562 243.786 74.167\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dz4ox2\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:65,intrinsicWidth:67,layoutDependency:layoutDependency,layoutId:\"dTTTNtgJV\",svg:'<svg width=\"67\" height=\"65\" viewBox=\"0 0 67 65\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.14852 40.8679C9.081 42.2325 8.52953 43.8274 9.05899 44.8943C9.99249 46.7815 11.8585 46.2153 13.3357 45.3347C18.1604 42.4465 22.9291 39.4748 27.7234 36.5339C36.0734 31.4137 44.4476 26.3385 52.7481 21.1426C53.799 20.4837 54.7117 19.3427 55.2402 18.2072C55.4902 17.6772 54.8442 16.1232 54.3138 15.9513C53.2311 15.6126 51.7235 15.4816 50.7875 15.981C47.1289 17.9728 43.6149 20.2343 40.059 22.4136C30.2445 28.4298 20.4223 34.4524 10.6077 40.4686C10.374 40.6095 10.1402 40.7504 9.91274 40.8989C9.658 40.8886 9.41097 40.8719 9.16259 40.8693L9.14852 40.8679Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M30.5537 10.4089C22.6582 17.8887 14.7705 25.3621 6.8892 32.8433C6.4285 33.2749 5.79345 33.7465 5.69197 34.2837C5.47545 35.4989 5.53775 36.7694 5.48244 38.0072C6.80109 38.0348 8.49458 38.5957 9.3775 37.9846C11.5224 36.5148 13.2988 34.5192 15.1996 32.7062C22.0838 26.1377 28.9538 19.5679 35.8316 12.9917C37.1148 11.7656 37.5065 10.3541 36.2376 8.92478C34.9433 7.46458 33.5149 7.83845 32.1582 8.94381C31.6026 9.40176 31.0393 9.86607 30.4837 10.324C30.5091 10.3549 30.5346 10.3857 30.5537 10.4089Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M14.2338 48.1705C14.1147 49.111 13.5922 50.3322 13.964 51.1921C14.2876 51.9621 15.5225 52.5641 16.4612 52.7753C17.2618 52.9447 18.227 52.512 19.0914 52.2401C29.4067 49.0639 39.7296 45.8814 50.0489 42.663C50.9057 42.3974 51.9327 42.134 52.4482 41.5017C53.0591 40.765 53.7078 39.4138 53.4119 38.7246C53.0401 37.8648 51.7939 37.2333 50.7947 36.8386C50.2338 36.6141 49.3803 36.9936 48.693 37.1974C38.1058 40.4681 27.5313 43.7543 16.9632 47.0482C16.1936 47.2938 15.4632 47.6496 14.2428 48.1501L14.2338 48.1705Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jhagjh\",\"data-framer-name\":\"Review 8 \u2022 Web\",layoutDependency:layoutDependency,layoutId:\"Adc_4Zpw6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-mu2mpl\",\"data-styles-preset\":\"KxyDXhYjD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CThe ad performance was outstanding, ranking among the top performers. They delivered exceptional results, they were fast, professional, and delivered on time.\u201D\"})}),className:\"framer-vbfyr5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"U8EwUZkIm\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:VoQKRkC6J,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Nino Levicar\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Marketing Manager, Jimmy Joy\"})]}),className:\"framer-umdqz5\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"EXH9kdvpQ\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uw627y\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:75,intrinsicWidth:53,layoutDependency:layoutDependency,layoutId:\"oaETfBXaP\",svg:'<svg width=\"53\" height=\"75\" viewBox=\"0 0 53 75\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M45.2999 40.8659C44.8349 41.2952 44.4491 41.7556 43.9664 42.073C40.0303 44.6554 36.6977 47.7728 34.8511 52.2313C34.7062 52.5825 34.5963 52.9504 34.4628 53.3086C34.1822 54.0651 33.965 54.9224 32.8663 54.7408C32.0844 54.6098 31.29 53.4353 31.3397 52.5743C31.4147 51.3564 31.5764 50.1366 31.5432 48.9199C31.4518 45.4789 30.3001 42.4263 28.0651 39.7873C26.5473 37.9986 26.7455 37.2622 28.5264 35.7599C31.9877 32.8359 35.0859 29.5916 36.9904 25.371C37.1759 24.9555 37.7401 24.4322 38.1081 24.4471C38.5487 24.4656 39.068 24.9339 39.3675 25.3434C39.6671 25.7529 39.7931 26.3171 39.8997 26.8338C40.8042 31.3672 42.1979 35.7057 44.8351 39.5722C45.0552 39.8945 45.1121 40.3264 45.2999 40.8659ZM42.1131 40.4107C40.5811 36.5459 39.1297 32.8766 37.77 29.4484C35.2614 32.2097 32.5891 35.1583 29.8199 38.21C32.2798 40.9608 33.5885 44.442 33.9654 48.6565C36.2447 45.0266 39.1574 42.5388 42.1141 40.4066L42.1131 40.4107Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M2.99719 53.8841C3.47226 53.2973 3.69852 52.7789 4.08965 52.5788C7.49762 50.8345 10.0328 48.0706 12.6514 45.3948C13.1126 44.9257 13.8308 44.39 14.4074 44.418C15.3122 44.4647 15.4915 45.3822 15.6722 46.218C16.3574 49.3843 17.9915 52.0071 20.3822 54.1721C20.9764 54.7093 21.6372 55.2012 22.1259 55.8223C22.4061 56.1842 22.5919 56.8269 22.4695 57.2308C22.3728 57.5413 21.7275 57.7006 21.3159 57.896C21.0215 58.0318 20.6201 58.0309 20.412 58.2425C18.2005 60.4585 15.9809 62.6725 13.8476 64.9624C13.1891 65.6716 12.8273 66.6513 12.2506 67.4568C11.9895 67.8248 11.5517 68.2862 11.1813 68.301C10.8149 68.3168 10.2547 67.8953 10.0878 67.529C9.72391 66.7204 9.40651 65.8405 9.32517 64.9669C9.07713 62.2501 8.50876 59.6503 6.68088 57.536C5.92232 56.659 4.87691 56.0361 4.01378 55.2389C3.61811 54.8722 3.34834 54.3702 2.99214 53.8873L2.99719 53.8841ZM6.6615 54.1201C9.64328 56.571 11.0825 59.8964 11.6106 63.7135C14.1516 61.1323 16.5735 58.6751 19.0534 56.1533C16.4671 53.8617 14.6672 51.1708 13.6931 47.9645C11.2753 50.0815 9.03611 52.0407 6.6615 54.1201Z\" fill=\"#DDD4F6\"/>\\n<path d=\"M14.8664 14.9285C15.2143 14.4638 15.4077 14.1841 15.622 13.9264C17.0974 12.1729 18.6774 10.4909 20.0232 8.64311C20.9032 7.43613 21.3862 5.94421 22.1717 4.65951C22.5847 3.98509 23.1789 3.33041 23.8479 2.93463C24.5613 2.51445 25.2368 2.97953 25.4274 3.75283C26.2756 7.24567 28.4421 9.88199 30.8491 12.3918C31.5087 13.0778 32.1237 13.8271 32.6416 14.6232C33.4148 15.8145 32.9243 16.942 31.58 17.3261C31.2561 17.4207 30.9292 17.5663 30.6596 17.7639C27.7234 19.9008 25.1794 22.382 23.4647 25.657C23.1032 26.3519 22.3771 26.903 21.72 27.3792C21.1032 27.8301 20.295 27.4168 20.1524 26.6415C20.0798 26.2406 20.1402 25.8053 20.2124 25.3942C20.6252 23.0744 20.1505 20.9537 18.6386 19.1577C17.7822 18.1418 16.717 17.3028 15.8014 16.3381C15.4151 15.9304 15.1702 15.3952 14.8664 14.9285ZM29.8702 15.092C27.9072 12.5669 25.8571 9.93122 23.9213 7.43823C22.0514 9.8228 20.0362 12.3901 17.9533 15.0457C20.1884 16.9462 21.995 19.1722 22.564 21.9968C25.0024 19.6944 27.4349 17.3994 29.8743 15.0929L29.8702 15.092Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12fvt39\",\"data-framer-name\":\"Layer 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:85,intrinsicWidth:75,layoutDependency:layoutDependency,layoutId:\"I2ihVl8YV\",svg:'<svg width=\"75\" height=\"85\" viewBox=\"0 0 75 85\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M23.0449 61.3653L23.1382 61.3902L23.2212 60.9586C23.5113 59.4506 23.5337 57.9306 23.2753 56.4115C23.0148 54.8807 22.4192 53.5106 21.746 52.1923C21.0383 50.8033 20.3793 49.4566 19.901 48.0015C19.417 46.5289 19.0417 45.1074 18.7201 43.6341C18.0982 40.7716 17.8212 37.823 18.404 34.9798L18.404 34.9798C18.9428 32.349 20.1038 29.8755 21.7174 27.7213L21.7175 27.7212C24.9606 23.3877 29.9968 20.7293 35.3429 19.9921L35.343 19.9921C38.0388 19.6199 40.8274 19.7074 43.4821 20.2833L43.4825 20.2833C44.9587 20.6022 46.3847 21.08 47.6715 21.8241C48.9264 22.5498 50.0387 23.6034 51.1652 24.6705L51.2443 24.7455C52.3861 25.8268 53.5419 27.0051 54.3443 28.3708L54.3446 28.3711C55.0491 29.5672 55.5259 30.884 55.8135 32.2507L55.8136 32.2512C56.4021 35.0307 56.1646 37.9599 55.4044 40.7124L55.4042 40.7134C55.317 41.0323 55.3727 41.3331 55.5346 41.5707C55.6899 41.7989 55.9256 41.9446 56.167 42.0093C56.4084 42.074 56.6851 42.0655 56.9339 41.9469C57.1925 41.8235 57.3933 41.5934 57.4806 41.2751C57.4806 41.2748 57.4807 41.2745 57.4808 41.2742L57.0862 41.1663M23.0449 61.3653L22.4692 24.2376C26.6255 20.2094 32.3575 18.1441 38.0987 18.036C41.0846 17.9806 44.1856 18.3884 46.9529 19.5438M23.0449 61.3653C22.9572 61.4917 22.8424 61.5924 22.7064 61.6625C22.4583 61.7903 22.1794 61.7965 21.9395 61.7313C21.466 61.6028 20.992 61.1364 21.1216 60.4573L21.1217 60.4569C21.4452 58.7714 21.3267 57.0012 20.8019 55.3981C20.5393 54.596 20.1699 53.8311 19.7719 53.0525C19.6969 52.9059 19.6208 52.7584 19.5442 52.6101C19.2182 51.979 18.8841 51.3321 18.6003 50.6665L18.6002 50.6662C17.2113 47.4016 16.3222 43.7574 16.0108 40.2304C15.4706 34.1285 17.8058 28.1918 22.1844 23.944L22.1845 23.9439C26.4254 19.8336 32.2614 17.7367 38.091 17.6269L38.0911 17.6269C41.1159 17.5708 44.2765 17.983 47.1102 19.1661M23.0449 61.3653L47.1102 19.1661M57.0862 41.1663C58.5321 35.9243 58.1221 29.9367 54.5198 25.6324C53.4571 24.3634 52.2102 23.2153 50.9721 22.1201C49.7341 21.0249 48.4511 20.166 46.9529 19.5438M57.0862 41.1663C56.86 41.9933 55.5726 41.6484 55.7988 40.8213M57.0862 41.1663L55.7988 40.8213M46.9529 19.5438L47.1105 19.1662C47.1104 19.1662 47.1103 19.1661 47.1102 19.1661M46.9529 19.5438L47.1098 19.1659C47.1099 19.166 47.11 19.166 47.1102 19.1661M55.7988 40.8213C56.5723 38.0207 56.8188 35.0237 56.2138 32.1665C55.9185 30.7628 55.4273 29.4032 54.6971 28.1635L55.7988 40.8213Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M46.4025 55.6197L46.1273 55.317C46.0924 55.3487 46.0574 55.3805 46.0224 55.4123C44.6637 56.6474 43.2518 57.9308 42.1805 59.5149C41.5621 60.4279 41.0833 61.4211 40.6539 62.4174C40.4594 62.8687 40.2802 63.3076 40.1031 63.7411C39.879 64.2899 39.6583 64.8303 39.4146 65.3764L39.4145 65.3766C39.1365 66.0005 39.4751 66.5697 39.8943 66.8172C40.1072 66.943 40.3783 67.0124 40.6516 66.9509C40.9404 66.886 41.1756 66.6871 41.3099 66.3857C41.5652 65.8144 41.8005 65.2447 42.0333 64.6806C42.521 63.4993 42.9984 62.3429 43.6289 61.2501C44.5357 59.6784 46.0219 58.3215 47.4756 56.9961C50.5014 54.2426 53.1008 51.1318 55.0295 47.4843L55.0296 47.4841C56.1263 45.4073 56.9977 43.215 57.6356 40.956L57.6359 40.9548C57.7248 40.6363 57.6705 40.3351 57.509 40.0968C57.3541 39.8681 57.1183 39.7224 56.8769 39.6577C56.6355 39.593 56.3589 39.6015 56.11 39.7195C55.9664 39.7876 55.8404 39.8885 55.7414 40.0192L55.6657 39.9989L55.5563 40.388C54.4781 44.2258 52.6632 47.8474 50.2137 50.9938L50.2134 50.9942C48.9971 52.5603 47.6036 53.9674 46.1265 55.3177L46.4025 55.6197ZM46.4025 55.6197C47.8888 54.261 49.3007 52.8365 50.5365 51.2452L39.7882 65.5431C40.031 64.999 40.2588 64.4417 40.4874 63.8826C41.0715 62.4534 41.6608 61.0116 42.5195 59.7441C43.5628 58.2013 44.9428 56.9467 46.3118 55.7021C46.3421 55.6746 46.3723 55.6472 46.4025 55.6197Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M22.1506 62.1676L22.1569 62.144C24.5371 63.9843 27.5425 64.7307 30.314 65.3878L30.3145 65.388C33.61 66.1645 36.9644 66.6839 40.3331 66.9573L40.3337 66.9574C40.6634 66.9837 40.9506 66.8725 41.1482 66.6545C41.336 66.4474 41.4123 66.1786 41.4099 65.9302C41.4051 65.4401 41.0752 64.8644 40.3886 64.8096C37.2444 64.5522 34.1247 64.0682 31.053 63.3548L31.0528 63.3547C31.0013 63.3428 30.9497 63.3309 30.8981 63.3189C28.1242 62.6766 25.2225 62.0047 23.1401 60.1831L23.14 60.1831C22.6178 59.7264 21.9753 59.8996 21.6251 60.2458C21.448 60.4209 21.3136 60.6656 21.2997 60.9444C21.2851 61.2373 21.4066 61.5201 21.6564 61.7375L22.1506 62.1676Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M21.4836 63.0942L21.869 63.2313C21.8588 63.26 21.8517 63.317 21.8991 63.4269C21.9474 63.539 22.0383 63.6707 22.1663 63.8136C22.4219 64.099 22.7596 64.358 22.9731 64.5156L22.9742 64.5165C24.3102 65.5104 25.9312 66.0342 27.5864 66.5691C27.67 66.5961 27.7538 66.6232 27.8376 66.6504L27.8378 66.6504C29.7045 67.2562 31.5778 67.8263 33.4771 68.2487C35.3763 68.6711 37.3139 68.9494 39.2419 68.9302C39.5859 68.9262 39.8011 68.8687 39.9088 68.7883C39.9521 68.756 39.9791 68.7194 39.9955 68.6666C40.0137 68.6079 40.0252 68.5063 39.9932 68.3401L39.9931 68.3397C39.9433 68.0798 39.7759 67.85 39.5075 67.6264C39.2642 67.4236 38.9767 67.2563 38.6858 67.0871C38.651 67.0669 38.6162 67.0466 38.5815 67.0263L38.5814 67.0262C38.2957 66.8591 38.1256 66.6047 38.075 66.3218C38.0264 66.0502 38.0922 65.781 38.2189 65.5656C38.3455 65.3501 38.5488 65.1616 38.8099 65.0721C39.0817 64.979 39.3864 65.0042 39.6711 65.1724C40.6598 65.7518 41.8663 66.5638 42.1129 67.9887L42.1131 67.9895C42.3264 69.2362 41.7283 70.5727 40.3928 70.9528C39.7857 71.1256 39.1258 71.1483 38.4966 71.1188C38.0314 71.097 37.5597 71.0449 37.1281 70.9973C36.9792 70.9808 36.8351 70.9649 36.6976 70.951L36.6962 70.9508C35.4362 70.8182 34.1882 70.6095 32.9544 70.3347L32.9542 70.3347C30.4633 69.7786 28.0156 69.0112 25.6233 68.1765L25.6228 68.1763C24.5008 67.783 23.3474 67.324 22.3088 66.6629C21.4523 66.1177 20.4657 65.3734 19.9821 64.3241L19.9815 64.3229C19.7522 63.8213 19.6776 63.3275 19.7712 62.8465C19.8641 62.3691 20.1152 61.9423 20.4722 61.558C20.7389 61.2704 21.0873 60.9664 21.481 60.7371C21.8722 60.5092 22.3373 60.3382 22.8257 60.3629L23.3312 60.3886L23.3023 60.4962C23.676 60.6994 23.8591 61.1059 23.8621 61.4696C23.8641 61.719 23.7865 61.9866 23.6018 62.1947C23.4084 62.4127 23.1256 62.5326 22.7951 62.5166L22.8148 62.108M21.4836 63.0942C21.6306 62.6829 22.369 62.0897 22.8148 62.108M21.4836 63.0942L21.8688 63.2319C21.9029 63.1365 22.0502 62.9446 22.2853 62.7652C22.3945 62.6819 22.5058 62.6146 22.6051 62.5706C22.7099 62.5242 22.774 62.5158 22.7981 62.5168L22.8148 62.108M21.4836 63.0942C21.2596 63.7241 22.3 64.5272 22.73 64.8448C24.122 65.8803 25.8031 66.4232 27.4412 66.9522C27.5315 66.9813 27.6216 67.0105 27.7115 67.0396C29.5817 67.6465 31.4697 68.2214 33.3883 68.6481C35.3068 69.0747 37.2772 69.359 39.2464 69.3393C39.9707 69.331 40.5584 69.1114 40.3949 68.2627C40.2535 67.5248 39.5012 67.0876 38.892 66.7337C38.8568 66.7132 38.8221 66.693 38.788 66.6731C38.0485 66.2404 38.7252 65.088 39.4636 65.525C40.4613 66.1097 41.4986 66.8383 41.7098 68.0585C41.8962 69.1479 41.3712 70.249 40.2808 70.5593C39.3331 70.8291 38.1925 70.7031 37.1841 70.5918C37.0323 70.575 36.8836 70.5586 36.739 70.5439C35.4955 70.4131 34.2629 70.207 33.0433 69.9354C30.5741 69.3841 28.1429 68.6223 25.7581 67.7902C24.644 67.3996 23.5264 66.953 22.5285 66.3177C21.6798 65.7775 20.7841 65.0868 20.3536 64.1528C19.9535 63.2775 20.1321 62.5251 20.7719 61.8365C21.1702 61.4068 21.757 60.9491 22.3708 60.8113L22.4086 60.67L22.4098 60.6657L22.8041 60.7713L22.8148 62.108\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M20.9989 63.4161C21.542 63.4451 21.9088 63.8633 22.0219 64.2736C22.0875 64.5117 22.0841 64.792 21.9522 65.0398C21.8125 65.3023 21.5563 65.4752 21.2292 65.5225L21.2289 65.5226C21.113 65.5393 20.9299 65.634 20.7353 65.8128C20.5462 65.9865 20.4048 66.1862 20.3463 66.3294C20.3037 66.4339 20.3214 66.5819 20.5608 66.8082C20.7889 67.0239 21.1184 67.203 21.3559 67.2995L21.3574 67.3001C22.5364 67.7847 23.7673 68.1665 25.0056 68.5505C25.5727 68.7263 26.1414 68.9027 26.7073 69.0896C27.038 69.1988 27.3658 69.3095 27.6919 69.4196C29.1308 69.9053 30.5385 70.3805 32.0252 70.6757C33.8697 71.042 35.7425 71.3288 37.6115 71.5773L37.6122 71.5774C37.7862 71.6008 37.9662 71.6299 38.1432 71.6584C38.1659 71.6621 38.1886 71.6657 38.2111 71.6694C38.4124 71.7018 38.611 71.733 38.8083 71.7572C39.2057 71.8059 39.5735 71.8227 39.9016 71.7694L39.9018 71.7693C40.0352 71.7477 40.0746 71.7051 40.0884 71.6871C40.1085 71.6608 40.1338 71.6051 40.1375 71.4912C40.1456 71.246 40.0529 70.9322 39.956 70.6214L40.3466 70.4996M20.9989 63.4161L20.8204 63.8326C21.6587 63.7077 22.0175 64.995 21.1706 65.1176C20.7017 65.1852 20.1416 65.748 19.9674 66.175C19.6853 66.8675 20.671 67.4627 21.2018 67.6786C22.398 68.1702 23.6583 68.5611 24.9057 68.948C25.4685 69.1226 26.0286 69.2963 26.579 69.4781C26.9039 69.5854 27.2279 69.6948 27.5517 69.8042C28.9921 70.2905 30.4303 70.7762 31.9456 71.077C33.8015 71.4456 35.6835 71.7337 37.5576 71.9829C37.726 72.0056 37.9003 72.0337 38.0781 72.0624C38.702 72.163 39.3684 72.2705 39.9672 72.1732C40.823 72.0346 40.5297 71.0867 40.3466 70.4996M20.9989 63.4161L20.9705 63.3837L20.7508 63.4157C20.3266 63.4776 19.9479 63.6909 19.6362 63.9337C19.3219 64.1785 19.0506 64.473 18.8391 64.7352M20.9989 63.4161L20.8098 63.8206C20.1541 63.9162 19.557 64.4967 19.1575 64.9922M40.3466 70.4996L39.9565 70.6229C39.8567 70.307 39.901 70.0033 40.0601 69.7603C40.2122 69.528 40.4485 69.3813 40.6894 69.3158C41.1669 69.1861 41.8133 69.3568 42.0222 70.0276M40.3466 70.4996C40.0878 69.6806 41.3771 69.3316 41.6317 70.1494M42.0222 70.0276C42.0223 70.0277 42.0223 70.0278 42.0223 70.0278L41.6317 70.1494M42.0222 70.0276C42.0222 70.0275 42.0222 70.0274 42.0222 70.0274L41.6317 70.1494M42.0222 70.0276C42.1874 70.5561 42.3199 71.1811 42.2653 71.7858C42.2095 72.4051 41.9547 73.0139 41.346 73.4505L41.3452 73.4511C40.8412 73.8108 40.2703 73.9175 39.7321 73.9284C39.295 73.9373 38.8455 73.8823 38.4516 73.834C38.3692 73.8239 38.2892 73.8141 38.2123 73.8053L38.2109 73.8051C35.8379 73.5243 33.4626 73.1843 31.0843 72.6675C29.2919 72.2781 27.532 71.6666 25.8097 71.0682C25.2371 70.8692 24.6686 70.6717 24.1044 70.4843L24.104 70.4841C23.7609 70.3697 23.4102 70.2579 23.0563 70.145C22.2749 69.8958 21.4776 69.6414 20.7099 69.343M41.6317 70.1494C41.9487 71.1634 42.0925 72.4116 41.1076 73.1181C40.3563 73.6543 39.3834 73.5355 38.5111 73.429C38.426 73.4186 38.3419 73.4084 38.259 73.3988C35.8919 73.1187 33.5312 72.7805 31.1712 72.2677C29.4051 71.884 27.6788 71.2842 25.9625 70.688C25.3854 70.4875 24.8094 70.2874 24.2334 70.096C23.8793 69.9779 23.5226 69.8641 23.1656 69.7503C22.3905 69.5031 21.6138 69.2554 20.858 68.9616M20.7099 69.343L20.858 68.9616M20.7099 69.343C20.7099 69.343 20.7098 69.3429 20.7098 69.3429L20.858 68.9616M20.7099 69.343C19.7524 68.9711 18.7798 68.365 18.3515 67.2571M20.858 68.9616C19.9416 68.6057 19.0995 68.0581 18.7329 67.109M18.7329 67.109L18.3518 67.2578C18.3517 67.2576 18.3516 67.2574 18.3515 67.2571M18.7329 67.109C18.4219 66.3128 18.6414 65.6311 19.1575 64.9922M18.7329 67.109L18.3512 67.2564C18.3513 67.2567 18.3514 67.2569 18.3515 67.2571M18.3515 67.2571C18.168 66.787 18.1364 66.334 18.2363 65.8999C18.3349 65.4717 18.5556 65.0863 18.8391 64.7352M19.1575 64.9922L18.839 64.7353C18.8391 64.7353 18.8391 64.7353 18.8391 64.7352M19.1575 64.9922L18.8393 64.7351C18.8392 64.7351 18.8392 64.7352 18.8391 64.7352\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M38.7772 74.7554L38.7796 74.753C38.8089 74.7244 38.8537 74.6364 38.832 74.405C38.8144 74.217 38.7626 74.0238 38.7134 73.8403C38.7056 73.8112 38.6979 73.7823 38.6904 73.7537C38.6045 73.4349 38.6614 73.1348 38.8228 72.8978C38.9781 72.6698 39.2133 72.5233 39.4545 72.4579C39.6955 72.3924 39.9725 72.3996 40.2216 72.5183C40.481 72.6418 40.6809 72.8732 40.766 73.1926C40.9018 73.7008 41.0031 74.3006 40.9373 74.8798C40.8704 75.4694 40.6268 76.0542 40.0639 76.4763C39.5458 76.8654 38.9476 76.9603 38.3917 76.9538C37.9769 76.9489 37.5443 76.8848 37.1656 76.8286C37.0494 76.8114 36.9383 76.7949 36.8344 76.7812C32.4368 76.2042 28.0957 75.2076 23.8891 73.7936C22.8574 73.4477 21.8327 73.076 20.8149 72.6784C20.8149 72.6784 20.8148 72.6783 20.8148 72.6783L38.7772 74.7554ZM38.7772 74.7554C38.7611 74.7714 38.712 74.8027 38.5712 74.8095C38.4599 74.8149 38.3491 74.8041 38.2213 74.7917C38.1846 74.7882 38.1464 74.7845 38.1065 74.781C37.1936 74.7005 36.2778 74.5528 35.3541 74.4039C35.2866 74.393 35.2191 74.3821 35.1515 74.3713C33.0576 74.0297 30.985 73.5931 28.9347 73.0575C26.884 72.5217 24.9272 71.9105 22.9696 71.1986C22.4584 71.011 21.9566 70.8264 21.4592 70.6295L21.4579 70.629M38.7772 74.7554L21.4579 70.629M21.4579 70.629C21.391 70.6028 21.3265 70.5787 21.2636 70.5553C21.1267 70.5042 20.997 70.4559 20.8654 70.3935C20.6778 70.3044 20.5614 70.2185 20.5015 70.1357M21.4579 70.629L21.3086 71.0099C21.2549 70.9888 21.1978 70.9676 21.1388 70.9455C20.7909 70.8158 20.3746 70.6605 20.1684 70.3732M20.1684 70.3732L20.5025 70.1371C20.5022 70.1366 20.5019 70.1362 20.5015 70.1357M20.1684 70.3732L20.5008 70.1347C20.501 70.135 20.5013 70.1354 20.5015 70.1357M20.1684 70.3732L20.5015 70.1357M20.5015 70.1357C20.3968 69.9871 20.3832 69.8908 20.3856 69.8442C20.3877 69.8021 20.4044 69.7607 20.452 69.7165C20.5629 69.6134 20.8158 69.5321 21.1061 69.5942C21.7884 69.7427 22.2589 69.2705 22.3873 68.7942C22.4523 68.5536 22.445 68.2755 22.3202 68.0273C22.1896 67.7674 21.9482 67.578 21.6249 67.5073L21.2434 67.4239L21.2365 67.4497C20.4169 67.3657 19.551 67.5721 18.9028 68.1771C18.0984 68.9279 18.14 69.9852 18.4603 70.8176L20.5015 70.1357Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M25.0261 76.3554C25.1584 76.643 25.3826 76.882 25.7101 77.0498L31.0531 76.5077C31.0277 76.4997 31.0024 76.4916 30.9771 76.4833L30.9771 76.4833L30.9746 76.4825L30.1482 76.2197L30.1475 76.2195L28.4303 75.6766L28.4297 75.6764L28.4215 75.6738C28.1273 75.5813 27.8332 75.4888 27.5434 75.3975L27.5434 75.3975L27.5404 75.3966C27.4203 75.3598 27.3082 75.3254 27.1984 75.2874L27.1905 75.2846L27.1824 75.2822C27.1527 75.2733 27.126 75.2628 27.0884 75.2477C27.1033 75.1743 27.1187 75.0987 27.1342 75.0228C27.1701 74.847 27.2062 74.6699 27.2367 74.5154C27.3428 73.9895 27.0797 73.3872 26.4701 73.2239C26.1908 73.149 25.8965 73.2013 25.6618 73.3306C25.425 73.461 25.2115 73.6917 25.1471 74.0089L25.1164 74.1607L25.1212 74.169C25.1055 74.2374 25.0889 74.3064 25.0713 74.3791C25.0478 74.4765 25.0226 74.5807 24.9962 74.6992C24.9406 74.9482 24.8886 75.2258 24.8782 75.5019C24.8678 75.778 24.8978 76.0765 25.0261 76.3554ZM26.6355 75.4241L26.6329 75.425C26.6331 75.4246 26.6332 75.4241 26.6333 75.4237L26.6355 75.4241ZM26.9225 75.478C26.9225 75.4782 26.9217 75.4767 26.9199 75.4732C26.9217 75.4762 26.9225 75.4779 26.9225 75.478Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M29.3296 63.3133L29.3299 63.3134C30.7136 58.8356 32.1034 54.323 32.9813 49.683L32.9813 49.6826C33.3339 47.8096 33.6058 45.9181 33.7579 44.0142C34.9684 44.0467 36.2429 43.9156 37.4028 43.4849C38.0285 44.429 38.7842 45.2917 39.7882 45.9735C39.8544 46.0184 39.9209 46.0624 39.9878 46.1053C39.5403 46.8535 39.1264 47.6195 38.7361 48.3917C36.6319 52.5382 35.1679 57.0103 34.5802 61.6338C34.437 62.7587 34.3482 63.8885 34.3107 65.0177L34.3107 65.0182C34.3001 65.3488 34.4247 65.629 34.6432 65.8199C34.8521 66.0024 35.119 66.0799 35.3685 66.0779C35.8638 66.0738 36.438 65.7346 36.4607 65.0338C36.5838 61.319 37.3343 57.6503 38.5837 54.1427C39.4718 51.6494 40.5254 49.2185 41.8863 47.0345C43.0855 47.4606 44.3387 47.6357 45.5863 47.6324L45.5865 47.6324C46.5025 47.6295 47.6239 47.565 48.5191 46.9694C49.4219 46.3687 49.8976 45.3876 50.1018 44.4244L29.3296 63.3133ZM29.3296 63.3133C29.1202 63.9774 28.4794 64.1496 28.0028 64.0218C27.7617 63.9572 27.5251 63.8113 27.3721 63.58C27.2122 63.3382 27.1657 63.0352 27.2629 62.7189L27.263 62.7186C27.5457 61.8009 27.828 60.8842 28.1061 59.9666C29.2041 56.3316 30.2356 52.6856 30.9257 48.967M29.3296 63.3133L30.9257 48.967M41.1689 44.2959C41.5266 43.7963 41.9049 43.3101 42.3072 42.8412L42.3076 42.8407C42.9172 42.1321 43.6617 41.3378 44.5266 40.7583C45.3957 40.1759 46.4159 39.7913 47.5603 39.9549L47.5619 39.9551C48.4923 40.0919 49.4076 40.5743 49.9042 41.5159C50.3958 42.4482 50.2882 43.5532 50.1019 44.424L41.1689 44.2959ZM41.1689 44.2959C40.6893 43.9971 40.2492 43.6389 39.8634 43.2174C39.6465 42.9804 39.4401 42.7191 39.2439 42.4401C40.5369 41.4093 41.4697 39.957 41.9291 38.3839C42.1931 37.4797 42.3004 36.4455 42.0792 35.5127C41.8544 34.5646 41.2867 33.7191 40.2254 33.2629C38.2371 32.406 36.1234 33.501 35.3122 35.3558C34.4145 37.3997 35.2838 39.4598 36.1048 41.1436L36.105 41.144C36.1705 41.2779 36.2366 41.4117 36.3036 41.5453C35.6944 41.7275 35.0374 41.8137 34.3406 41.8365C34.1861 41.8416 34.0299 41.8437 33.8726 41.8425C33.8971 40.1533 33.6946 38.3526 32.5689 36.8912L32.5689 36.8912C31.9754 36.1209 31.0934 35.5059 30.1414 35.2656C29.1783 35.0224 28.1266 35.1622 27.2683 35.9356L27.2679 35.936C25.7368 37.3191 25.872 39.5886 26.9614 41.086L41.1689 44.2959ZM31.6171 43.787C29.8533 43.4393 28.0792 42.623 26.9614 41.0861L31.6171 43.787ZM31.6171 43.787C31.4845 45.5238 31.2442 47.2488 30.9257 48.967M31.6171 43.787L30.9257 48.967M31.1465 38.6139C31.6396 39.4943 31.7495 40.5269 31.7362 41.6007C30.9675 41.4196 30.2321 41.1257 29.5954 40.6824L29.5953 40.6823C29.1019 40.339 28.6503 39.8359 28.4206 39.2969C28.1963 38.7705 28.1895 38.235 28.5244 37.7407L28.5245 37.7405C28.7128 37.4623 28.9167 37.3427 29.1101 37.3006C29.3133 37.2564 29.5532 37.2877 29.8174 37.3988C30.3563 37.6254 30.8805 38.1367 31.1461 38.6132L31.1465 38.6139ZM48.0888 43.0793C48.1526 43.6792 47.966 44.3871 47.6682 44.8353L47.6678 44.8359C47.3473 45.3151 46.7555 45.4331 46.004 45.464C45.2278 45.4957 44.4528 45.4459 43.703 45.2888C43.5274 45.2517 43.3534 45.2096 43.1813 45.1623C43.363 44.9262 43.5495 44.6941 43.741 44.4665C43.7565 44.4481 43.7721 44.4296 43.7878 44.4109C44.2329 43.882 44.7588 43.257 45.3539 42.7757C45.9734 42.2747 46.6 41.9855 47.2252 42.0618C47.5181 42.0976 47.7063 42.2179 47.834 42.377C47.9687 42.545 48.0575 42.7842 48.0888 43.0793ZM38.4032 40.2942C38.3207 40.3785 38.2365 40.4585 38.1505 40.5346C37.8991 40.0118 37.6722 39.4789 37.4681 38.9639L37.468 38.9636C37.2141 38.3241 37.0508 37.6044 37.0984 36.9522C37.1451 36.3123 37.391 35.7536 37.9481 35.3634C38.3915 35.0534 39.0081 35.012 39.4762 35.2681C39.8854 35.4919 40.0764 36.0043 40.061 36.6258L40.061 36.6269C40.032 37.9429 39.3408 39.3357 38.4032 40.2942Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M19.2115 22.0133L19.4976 22.3058C19.9768 21.837 19.8426 21.2023 19.5358 20.817C19.5357 20.8168 19.5356 20.8167 19.5355 20.8166L16.1498 16.548L16.1498 16.548L16.1492 16.5472C15.937 16.2809 15.6222 16.1907 15.3529 16.1978C15.0862 16.2048 14.8026 16.3067 14.5998 16.5074L14.8875 16.7982L14.6014 16.5058C14.1222 16.9745 14.2564 17.6093 14.5633 17.9946C14.5634 17.9947 14.5635 17.9949 14.5636 17.995L17.9492 22.2636L17.9498 22.2644C18.1621 22.5307 18.4769 22.6209 18.7462 22.6138C19.0129 22.6068 19.2964 22.5049 19.4993 22.3042L19.2115 22.0133ZM19.2115 22.0133C19.492 21.739 19.4393 21.3523 19.2155 21.0716L18.2698 22.0093C18.4935 22.2901 18.9737 22.2486 19.2115 22.0133Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M31.4973 13.2286C31.6045 13.5838 31.3777 13.9324 31.0299 14.0461C30.6821 14.1599 30.3167 13.9102 30.2123 13.5787C29.7795 12.1737 29.4981 10.726 29.3613 9.26119L28.9721 9.48587M31.4973 13.2286L29.6843 8.12985L29.1192 8.45609L29.1137 8.45923L29.3168 8.81092L29.0228 8.83241L28.9157 8.84023C28.9315 9.05575 28.9502 9.27099 28.9721 9.48587M31.4973 13.2286C31.0447 11.7597 30.7654 10.2959 30.6547 8.80371L31.4973 13.2286ZM28.9721 9.48587C29.1174 10.9139 29.3983 12.326 29.8213 13.6992L29.8213 13.6992L29.8221 13.7015C29.9779 14.1967 30.543 14.6359 31.1571 14.435C31.6744 14.2658 32.0724 13.7182 31.889 13.1104L31.889 13.1104L31.8883 13.1081C31.4444 11.6676 31.1711 10.2341 31.0627 8.77345L31.0627 8.77261C31.0249 8.27633 30.6263 7.69932 29.9616 7.73178L29.9616 7.73177L29.9588 7.73193C29.4625 7.75966 28.8675 8.17308 28.91 8.8396L28.952 9.4975L28.9721 9.48587Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M44.8071 13.8181C44.7054 14.1634 44.33 14.3802 43.991 14.2893C43.652 14.1985 43.4181 13.8185 43.5198 13.4732L45.1996 13.9337L45.1991 13.9353L44.8071 13.8181ZM44.8071 13.8181L44.8076 13.8164C45.2939 12.1904 45.7802 10.5644 46.2621 8.93731L44.8071 13.8181ZM43.1275 13.357L43.1273 13.3576L44.9748 8.59237L44.5828 8.47515L44.5823 8.47676L44.5822 8.4771C44.096 10.1029 43.6096 11.7293 43.1275 13.357Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M55.627 19.9833L55.627 19.9833L55.6257 19.9845C55.1779 20.4031 55.2179 21.1142 55.6094 21.5121L55.6105 21.5132C56.0403 21.9469 56.7109 21.9126 57.1222 21.5281L56.8429 21.2292L57.1208 21.5295C58.5108 20.243 59.9992 19.0793 61.5868 18.0516L61.5874 18.0513C62.0431 17.7552 62.2724 17.1305 61.9626 16.5939C61.8169 16.3416 61.5715 16.1712 61.3135 16.0976C61.0539 16.0236 60.7433 16.0379 60.4761 16.2113C58.7534 17.327 57.1308 18.5904 55.627 19.9833Z\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n<path d=\"M62.2555 34.8993C61.756 34.9583 61.2191 34.6913 61.0644 34.1213C61.0644 34.1212 61.0644 34.1211 61.0644 34.121L61.4593 34.014L62.2555 34.8993ZM62.2555 34.8993L62.2696 34.903L62.3651 34.883L66.3996 34.0371L66.3999 34.037L68.3576 33.6283C68.3576 33.6283 68.3577 33.6283 68.3578 33.6283C68.7031 33.5565 69.1066 33.4444 69.4337 33.2144C69.7835 32.9684 70.0333 32.5954 70.0575 32.0647L69.6488 32.0461M62.2555 34.8993L66.3159 33.6366L68.2744 33.2277C68.9416 33.0892 69.613 32.8321 69.6488 32.0461M69.6488 32.0461C69.6667 31.6875 69.3248 31.3844 68.9757 31.3828C68.841 31.3828 68.7204 31.4224 68.6201 31.4898C68.5459 31.4386 68.4635 31.4176 68.3903 31.4164C68.3138 31.4151 68.2496 31.4337 68.1983 31.4588C68.1543 31.4633 68.1133 31.4709 68.0777 31.4788M69.6488 32.0461L70.0574 32.0665C70.0734 31.7467 69.9281 31.471 69.732 31.2843C69.5373 31.0989 69.2667 30.975 68.9775 30.9737L68.9775 30.9737L68.9756 30.9737C68.5716 30.9738 68.2588 31.1857 68.0777 31.4788M68.0777 31.4788C68.0481 31.4854 68.0222 31.4923 68.0013 31.498C67.952 31.5115 67.9217 31.5207 67.8982 31.5278C67.8733 31.5353 67.8562 31.5405 67.8325 31.5459\" fill=\"#DDD4F6\" stroke=\"#DDD4F6\" stroke-width=\"0.818281\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hhxuoo\",\"data-framer-name\":\"Vector 515\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:280,layoutDependency:layoutDependency,layoutId:\"t3GMprfKw\",svg:'<svg width=\"280\" height=\"18\" viewBox=\"-2 -2 280 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.757812 0.933838C87.3677 0.933838 263.449 0.933838 274.897 0.933838C289.207 0.933838 140.087 7.14619 103.183 13.3586\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nakszu\",\"data-framer-name\":\"Review 9 \u2022 Web\",layoutDependency:layoutDependency,layoutId:\"LLKy4e_FQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-mu2mpl\",\"data-styles-preset\":\"KxyDXhYjD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(250, 246, 236))\"},children:\"\u201CThe ad performance was outstanding, ranking among the top performers. They delivered exceptional results, they were fast, professional, and delivered on time.\u201D\"})}),className:\"framer-1fr5ou\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mivdpSghX\",style:{\"--extracted-a0htzi\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zJpir2ivT,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 246, 236))\"},children:\"Clarence von Rosen\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(250, 246, 236))\"},children:\"Co-founder, Napper\"})]}),className:\"framer-rdb8zv\",fonts:[\"FS;Sora-bold\",\"FS;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"Qh8iptl0V\",style:{\"--extracted-2gxw0f\":\"rgb(250, 246, 236)\",\"--extracted-r6o4lv\":\"rgb(250, 246, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-x6x14g\",layoutDependency:layoutDependency,layoutId:\"ZC8g5X1wu\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ez56ii\",\"data-framer-name\":\"Layer 13\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"hFUAUFDCF\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 63 63\"><path d=\"M 38.762 15.839 C 51.233 15.839 61.343 25.949 61.343 38.419 C 61.343 50.89 51.233 61 38.762 61 C 26.291 61 16.182 50.89 16.182 38.419 C 16.182 25.949 26.291 15.839 38.762 15.839 Z\" fill=\"transparent\" stroke-width=\"2.29944\" stroke=\"rgb(221,212,246)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 38.762 20.909 C 48.433 20.909 56.272 28.748 56.272 38.419 C 56.272 48.09 48.433 55.929 38.762 55.929 C 29.092 55.929 21.252 48.09 21.252 38.419 C 21.252 28.748 29.092 20.909 38.762 20.909 Z\" fill=\"transparent\" stroke-width=\"2.29944\" stroke=\"rgb(221,212,246)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 38.764 27.37 C 44.866 27.37 49.813 32.317 49.813 38.419 C 49.813 44.521 44.866 49.468 38.764 49.468 C 32.662 49.468 27.715 44.521 27.715 38.419 C 27.715 32.317 32.662 27.37 38.764 27.37 Z\" fill=\"transparent\" stroke-width=\"2.29944\" stroke=\"rgb(221,212,246)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 38.764 34.66 C 40.84 34.66 42.523 36.343 42.523 38.419 C 42.523 40.495 40.84 42.179 38.764 42.179 C 36.687 42.179 35.004 40.495 35.004 38.419 C 35.004 36.343 36.687 34.66 38.764 34.66 Z\" fill=\"transparent\" stroke-width=\"2.29944\" stroke=\"rgb(221,212,246)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 36.028 38.017 C 30.36 33.004 24.956 27.715 19.587 22.38 C 14.218 17.046 8.894 11.665 3.836 6.054 C 2.847 4.962 4.468 3.329 5.457 4.433 C 10.515 10.044 15.85 15.436 21.208 20.759 C 26.566 26.082 31.981 31.383 37.649 36.395 C 38.764 37.373 37.131 38.994 36.028 38.017 Z\" fill=\"rgb(221,212,246)\"></path><path d=\"M 8.319 15.275 C 9.756 14.574 11.251 14.011 12.803 13.62 C 12.849 13.62 12.952 13.562 12.998 13.574 C 12.872 13.62 12.78 13.7 12.723 13.838 C 12.607 13.907 12.55 13.999 12.55 14.114 C 12.539 14.229 12.539 14.206 12.55 14.056 L 12.55 13.93 C 12.562 13.827 12.573 13.712 12.573 13.608 C 12.596 13.206 12.607 12.792 12.607 12.389 C 12.619 11.539 12.607 10.676 12.573 9.826 C 12.55 9.228 13.125 8.653 13.723 8.676 C 14.367 8.71 14.838 9.182 14.872 9.826 C 14.918 10.745 14.93 11.665 14.907 12.585 C 14.907 13.033 14.884 13.482 14.861 13.93 C 14.826 14.574 14.735 15.206 14.137 15.574 C 13.769 15.804 13.32 15.873 12.906 15.988 C 12.492 16.103 12.113 16.218 11.722 16.356 C 11.331 16.494 10.906 16.643 10.504 16.816 L 10.4 16.862 C 10.48 16.827 10.48 16.827 10.4 16.862 C 10.308 16.896 10.216 16.942 10.136 16.977 C 9.917 17.069 9.71 17.172 9.492 17.276 C 8.951 17.54 8.227 17.437 7.917 16.862 C 7.641 16.345 7.756 15.574 8.331 15.287 Z\" fill=\"rgb(221,212,246)\"></path><path d=\"M 4.906 12.126 C 5.493 11.689 6.194 11.413 6.884 11.16 C 7.206 11.045 7.516 10.941 7.838 10.826 C 7.919 10.803 7.988 10.769 8.068 10.746 C 8.091 10.746 8.344 10.631 8.195 10.7 C 8.045 10.769 8.287 10.654 8.321 10.642 C 8.402 10.596 8.494 10.562 8.574 10.516 C 8.712 10.447 8.85 10.366 8.976 10.274 C 8.976 10.274 9.195 10.102 9.091 10.194 C 8.988 10.286 9.172 10.113 9.195 10.09 C 9.275 10.01 9.275 9.998 9.229 10.068 C 9.183 10.136 9.183 10.125 9.241 10.021 L 9.206 10.102 C 9.206 10.102 9.229 9.998 9.241 9.952 C 9.287 9.826 9.241 10.113 9.241 9.895 C 9.241 9.792 9.264 9.7 9.264 9.596 C 9.333 8.734 9.333 7.871 9.264 7.009 C 9.218 6.411 9.827 5.836 10.414 5.859 C 11.069 5.894 11.517 6.365 11.563 7.009 C 11.632 7.929 11.621 8.849 11.54 9.769 C 11.494 10.297 11.437 10.838 11.138 11.286 C 10.862 11.7 10.471 12.022 10.046 12.286 C 9.379 12.723 8.597 12.976 7.85 13.241 C 7.689 13.298 7.516 13.356 7.355 13.425 C 7.275 13.448 7.206 13.482 7.125 13.505 C 6.872 13.597 7.275 13.436 7.045 13.54 C 6.7 13.701 6.367 13.884 6.056 14.103 C 5.573 14.459 4.745 14.195 4.481 13.689 C 4.159 13.091 4.378 12.505 4.895 12.114 Z\" fill=\"rgb(221,212,246)\"></path><path d=\"M 1.386 6.744 C 2.858 6.423 4.318 6.089 5.789 5.744 L 4.985 6.549 C 5.306 4.744 5.628 2.939 5.95 1.134 C 6.054 0.536 6.813 0.157 7.364 0.329 C 7.997 0.536 8.284 1.111 8.169 1.743 C 7.847 3.548 7.525 5.353 7.204 7.158 C 7.135 7.526 6.755 7.883 6.399 7.963 C 4.939 8.308 3.467 8.642 1.995 8.963 C 1.409 9.09 0.719 8.791 0.581 8.159 C 0.443 7.572 0.754 6.882 1.386 6.744 Z\" fill=\"rgb(221,212,246)\"></path></svg>',svgContentId:10018714281,withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vpvt5c\",\"data-framer-name\":\"Vector 516\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:287,layoutDependency:layoutDependency,layoutId:\"RQ0CtCVCB\",svg:'<svg width=\"287\" height=\"22\" viewBox=\"-2 -2 287 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.177734 1.75659C89.0176 1.45773 269.633 0.850123 281.375 0.81062C296.053 0.761242 41.6905 10.3067 138.282 17.3058\" stroke=\"#ECF86E\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r2ko2x\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:42,intrinsicWidth:41,layoutDependency:layoutDependency,layoutId:\"xlzBp2_0U\",svg:'<svg width=\"41\" height=\"42\" viewBox=\"0 0 41 42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18.646 15.1567C18.4781 12.1912 18.3422 9.84115 18.2143 7.48313C18.1744 6.75574 18.1504 6.02835 18.1824 5.30096C18.2543 3.91013 18.9017 2.64719 20.3485 2.91097C21.1718 3.06284 22.2509 4.27782 22.3948 5.14909C22.8265 7.70694 22.8504 10.3367 23.0343 12.9425C23.2901 13.1903 23.5459 13.4301 23.8016 13.6779C23.9855 13.1344 24.0494 12.5189 24.3612 12.0713C25.9758 9.74523 27.6464 7.45915 29.309 5.16508C30.1883 3.9501 31.2834 3.03886 32.7861 4.04602C34.3048 5.06116 33.8972 6.40404 33.0179 7.643C31.1235 10.3048 29.1971 12.9425 27.2867 15.5963C26.8391 16.2198 26.3995 16.8593 25.5761 18.0263C28.4937 18.0263 30.8517 18.0103 33.2097 18.0343C34.1529 18.0423 35.0962 18.1302 36.0314 18.2181C37.4062 18.338 38.5173 18.9055 38.4294 20.4562C38.3414 22.0869 37.1504 22.6144 35.6877 22.6064C33.2897 22.5984 30.8917 22.5425 28.5017 22.5105C27.7903 22.5025 27.0789 22.5105 25.8959 22.5105C26.5673 23.3178 26.919 23.8134 27.3427 24.2451C31.1555 28.1378 34.9842 32.0145 38.805 35.8993C39.2607 36.3629 39.9721 36.8025 40.084 37.3461C40.2838 38.3612 40.1239 39.4403 40.1079 40.4954C39.0448 40.4315 37.678 40.7752 36.9906 40.2396C35.1761 38.8168 33.6813 36.9944 32.0107 35.3717C29.2611 32.71 26.4794 30.0882 23.6498 27.3944C23.6498 29.5126 23.6737 31.6389 23.6418 33.7571C23.6178 35.1319 23.7697 36.5867 23.354 37.8496C23.0982 38.641 21.9392 39.1446 21.1798 39.768C20.5084 38.9527 19.3574 38.1934 19.2614 37.3141C18.9897 34.7243 19.1415 32.0945 19.1096 29.4807C19.1096 28.9371 19.0057 28.3856 18.8938 27.2505C16.4238 30.8315 14.2736 33.9649 12.1075 37.0823C11.404 38.0974 10.6767 39.0966 9.92528 40.0718C8.99007 41.2868 7.77509 42.0541 6.38426 41.007C4.96145 39.9279 5.52897 38.593 6.38426 37.3541C9.35776 33.0537 12.3233 28.7453 15.2808 24.4369C15.6805 23.8534 16.0242 23.2379 16.7036 22.1268C14.3536 22.1268 12.4352 22.1668 10.5168 22.1188C8.34261 22.0629 6.12847 22.1348 4.00225 21.7432C3.17095 21.5913 2.53948 20.3363 1.82009 19.585C2.61142 18.8896 3.36279 17.6586 4.19409 17.5946C7.35944 17.3548 10.5568 17.4987 14.1777 17.4987C13.5942 16.7873 13.2585 16.2917 12.8428 15.8681C9.29381 12.2551 5.72881 8.63416 2.1638 5.00521C1.75614 4.58956 1.3245 4.19789 0.964804 3.74227C0.125508 2.66318 -0.290143 1.28833 0.964804 0.504988C1.70019 0.0493699 3.13898 0.313149 4.05821 0.712813C4.92948 1.09649 5.52897 2.07167 6.24837 2.79906C9.70946 6.31611 13.1706 9.84914 16.6396 13.3582C17.1192 13.8458 17.6548 14.2774 18.646 15.1567Z\" fill=\"#DDD4F6\"/>\\n</svg>\\n',withExternalLayout:true})]})],snapObject:{fluid:false,snap:false,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TOKJo.framer-urdsa0, .framer-TOKJo .framer-urdsa0 { display: block; }\",\".framer-TOKJo.framer-1ig2sqq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 80px 30px 56px 30px; position: relative; width: 1200px; }\",\".framer-TOKJo .framer-1e4jvvj-container { flex: none; height: auto; max-width: 350px; position: relative; width: 350px; }\",\".framer-TOKJo .framer-10z4v3t, .framer-TOKJo .framer-1xa24k2, .framer-TOKJo .framer-m0b1nk, .framer-TOKJo .framer-n8b4cx, .framer-TOKJo .framer-1eqnil9, .framer-TOKJo .framer-eejlqu, .framer-TOKJo .framer-1e98rdw, .framer-TOKJo .framer-1h8mbgr, .framer-TOKJo .framer-1gllwfn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 350px; z-index: 1; }\",\".framer-TOKJo .framer-1jocedu, .framer-TOKJo .framer-1o99fvq, .framer-TOKJo .framer-4uzsce, .framer-TOKJo .framer-1jv9tw4, .framer-TOKJo .framer-9h8bdd { flex: none; height: auto; max-width: 810px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TOKJo .framer-1487c07, .framer-TOKJo .framer-1oy7dq2, .framer-TOKJo .framer-1hdzrp3, .framer-TOKJo .framer-1evhjpe, .framer-TOKJo .framer-10wqj2k, .framer-TOKJo .framer-c6qql, .framer-TOKJo .framer-zsab9c, .framer-TOKJo .framer-1j2vd38, .framer-TOKJo .framer-qyom2w, .framer-TOKJo .framer-101hpma, .framer-TOKJo .framer-vqu9qk, .framer-TOKJo .framer-g0kxgh, .framer-TOKJo .framer-1lob3px, .framer-TOKJo .framer-ofvphk, .framer-TOKJo .framer-1vmfdb1, .framer-TOKJo .framer-yqbhze, .framer-TOKJo .framer-15qp5ob, .framer-TOKJo .framer-e1rmna, .framer-TOKJo .framer-1xcovt7, .framer-TOKJo .framer-1va6a23, .framer-TOKJo .framer-hviubh, .framer-TOKJo .framer-hpg0da, .framer-TOKJo .framer-10vpl0n, .framer-TOKJo .framer-qlegf6, .framer-TOKJo .framer-r1y4bz, .framer-TOKJo .framer-52e687, .framer-TOKJo .framer-3agsrd, .framer-TOKJo .framer-1dzicdi, .framer-TOKJo .framer-umdqz5, .framer-TOKJo .framer-rdb8zv { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TOKJo .framer-151jtxg { flex: none; height: 9px; left: calc(34.285714285714306% - 199px / 2); position: absolute; top: 99px; width: 199px; z-index: 1; }\",\".framer-TOKJo .framer-l4sr4m { flex: none; height: 16px; position: absolute; right: 12px; top: -2px; width: 27px; z-index: 1; }\",\".framer-TOKJo .framer-1wu53nf { bottom: 44px; flex: none; height: 20px; left: 34px; position: absolute; width: 15px; z-index: 1; }\",\".framer-TOKJo .framer-34y34z, .framer-TOKJo .framer-162ev9m, .framer-TOKJo .framer-1lm58p5 { 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-TOKJo .framer-1o57qw7 { aspect-ratio: 1.1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); left: 13%; position: absolute; top: 67%; width: 25px; z-index: 1; }\",\".framer-TOKJo .framer-1wdj15k { flex: none; height: 9px; left: calc(12.571428571428594% - 87px / 2); position: absolute; top: 48px; width: 87px; z-index: 1; }\",\".framer-TOKJo .framer-1xljku6 { flex: none; height: 31px; left: calc(95.71428571428574% - 27px / 2); position: absolute; top: -18px; width: 27px; z-index: 1; }\",\".framer-TOKJo .framer-8xjvkj, .framer-TOKJo .framer-3gf5oh, .framer-TOKJo .framer-hzxemc { flex: none; height: auto; max-width: 680px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TOKJo .framer-1222b4 { flex: none; height: 15px; left: -2px; position: absolute; top: -8px; width: 18px; z-index: 1; }\",\".framer-TOKJo .framer-18u7fue { flex: none; height: 5px; left: calc(48.57142857142859% - 233px / 2); position: absolute; top: 99px; width: 233px; z-index: 1; }\",\".framer-TOKJo .framer-1upb9ej { bottom: 32px; flex: none; height: 32px; position: absolute; right: 33px; width: 43px; z-index: 1; }\",\".framer-TOKJo .framer-1sn904y, .framer-TOKJo .framer-1404afm { flex: none; height: auto; max-width: 728px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-TOKJo .framer-1h8wxgh { flex: none; height: 19px; left: 102px; position: absolute; top: calc(46.40000000000003% - 19px / 2); width: 74px; z-index: 0; }\",\".framer-TOKJo .framer-1g28qjv { aspect-ratio: 0.6078431372549019 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); left: 15px; position: absolute; top: 0px; width: 14px; z-index: 1; }\",\".framer-TOKJo .framer-16yrmsh { aspect-ratio: 0.6470588235294118 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 13px); left: 9px; position: absolute; top: 17px; width: 8px; z-index: 1; }\",\".framer-TOKJo .framer-1dqalim { flex: none; height: 10px; left: calc(57.42857142857145% - 222px / 2); position: absolute; top: 177px; width: 222px; z-index: 1; }\",\".framer-TOKJo .framer-a9p6hg { bottom: 28px; flex: none; height: 28px; position: absolute; right: 46px; width: 26px; z-index: 1; }\",\".framer-TOKJo .framer-1iy05j4, .framer-TOKJo .framer-s7rqsw, .framer-TOKJo .framer-eov7jl, .framer-TOKJo .framer-owe9u, .framer-TOKJo .framer-j2ryjx, .framer-TOKJo .framer-1tf4fvq, .framer-TOKJo .framer-1v9eky, .framer-TOKJo .framer-1e0h784, .framer-TOKJo .framer-uydhka, .framer-TOKJo .framer-1ps6rmc, .framer-TOKJo .framer-cfe3qj, .framer-TOKJo .framer-1fr5ou { flex: none; height: auto; max-width: 770px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-TOKJo .framer-13ymjsm { flex: none; height: 10px; left: calc(52.00000000000002% - 184px / 2); position: absolute; top: calc(50.40000000000002% - 10px / 2); width: 184px; z-index: 1; }\",\".framer-TOKJo .framer-y2z0sq { flex: none; height: 12px; position: absolute; right: 0px; top: -1px; width: 15px; z-index: 1; }\",\".framer-TOKJo .framer-lnacpv { bottom: 46px; flex: none; height: 22px; left: 37px; position: absolute; width: 20px; z-index: 1; }\",\".framer-TOKJo .framer-2phqb { aspect-ratio: 1.0714285714285714 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 4px; position: absolute; top: 48px; width: 30px; z-index: 1; }\",\".framer-TOKJo .framer-3r2ssk { flex: none; height: 7px; position: absolute; right: 26px; top: 48px; width: 168px; z-index: 1; }\",\".framer-TOKJo .framer-1e72xqm { aspect-ratio: 0.8387096774193549 / 1; bottom: 44px; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: absolute; right: 37px; width: 37px; z-index: 1; }\",\".framer-TOKJo .framer-seceee { aspect-ratio: 1 / 1; bottom: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: 36px; position: absolute; width: 40px; z-index: 1; }\",\".framer-TOKJo .framer-64ilrg { aspect-ratio: 3.632911392405063 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 37px); position: absolute; right: 42px; top: 48px; width: 135px; z-index: 1; }\",\".framer-TOKJo .framer-1ukvz7j { aspect-ratio: 0.7066666666666667 / 1; bottom: 19px; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: absolute; right: 6px; width: 31px; z-index: 1; }\",\".framer-TOKJo .framer-gkbxhp { aspect-ratio: 0.8823529411764706 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 37px); left: -4px; position: absolute; top: 9px; width: 33px; z-index: 1; }\",\".framer-TOKJo .framer-5wakrd { flex: none; height: 7px; position: absolute; right: 57px; top: 72px; width: 133px; z-index: 1; }\",\".framer-TOKJo .framer-agtgw9 { flex: none; height: 8px; position: absolute; right: 29px; top: calc(51.010101010101025% - 8px / 2); width: 148px; z-index: 1; }\",\".framer-TOKJo .framer-i91eyp-container { flex: none; height: auto; max-width: 760px; position: relative; width: 760px; }\",\".framer-TOKJo .framer-1ogyg62, .framer-TOKJo .framer-75s2oy, .framer-TOKJo .framer-1amift6, .framer-TOKJo .framer-104fvlx, .framer-TOKJo .framer-j43weo, .framer-TOKJo .framer-mvizyt, .framer-TOKJo .framer-bjrr0e, .framer-TOKJo .framer-1rk7ys { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 762px; z-index: 1; }\",\".framer-TOKJo .framer-1x76spt { flex: none; height: 17px; left: calc(29.133858267716555% - 396px / 2); position: absolute; top: 200px; width: 396px; z-index: 1; }\",\".framer-TOKJo .framer-1uh8atg { flex: none; height: 47px; position: absolute; right: 40px; top: 0px; width: 63px; z-index: 1; }\",\".framer-TOKJo .framer-wxdf5f { aspect-ratio: 0.92 / 1; bottom: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 50px; position: absolute; width: 55px; z-index: 1; }\",\".framer-TOKJo .framer-1w3k1px { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 760px; z-index: 1; }\",\".framer-TOKJo .framer-1huyv8s, .framer-TOKJo .framer-1sqkxdk { aspect-ratio: 1.1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 24%; position: absolute; top: 81%; width: 66px; z-index: 1; }\",\".framer-TOKJo .framer-1hiyghv { flex: none; height: 10px; left: 40px; position: absolute; top: 95px; width: 166px; z-index: 1; }\",\".framer-TOKJo .framer-181zaux { flex: none; height: 43px; left: calc(90.28871391076117% - 40px / 2); position: absolute; top: -18px; width: 40px; z-index: 1; }\",\".framer-TOKJo .framer-6e0q4u { flex: none; height: 37px; left: calc(5.774278215223119% - 37px / 2); position: absolute; top: -11px; width: 37px; z-index: 1; }\",\".framer-TOKJo .framer-1s3ftb2, .framer-TOKJo .framer-jy3o0b { flex: none; height: 17px; left: calc(49.58333333333336% - 475px / 2); position: absolute; top: 201px; width: 475px; z-index: 1; }\",\".framer-TOKJo .framer-19mkcss { bottom: 22px; flex: none; height: 68px; position: absolute; right: 0px; width: 90px; z-index: 1; }\",\".framer-TOKJo .framer-njseyg { flex: none; height: 66px; position: absolute; right: 174px; top: 150px; width: 298px; z-index: 0; }\",\".framer-TOKJo .framer-1doxkf7 { flex: none; height: 51px; left: 60px; position: absolute; top: 0px; width: 31px; z-index: 1; }\",\".framer-TOKJo .framer-4t6ugy { flex: none; height: 34px; left: 40px; position: absolute; top: 24px; width: 22px; z-index: 1; }\",\".framer-TOKJo .framer-16urk6e { flex: none; height: 17px; left: calc(71.91601049868768% - 301px / 2); position: absolute; top: 301px; width: 301px; z-index: 1; }\",\".framer-TOKJo .framer-o2tl4l { bottom: 44px; flex: none; height: 83px; position: absolute; right: 105px; width: 79px; z-index: 1; }\",\".framer-TOKJo .framer-1uv4nci { bottom: 171px; flex: none; height: 12px; position: absolute; right: 20px; width: 352px; z-index: 1; }\",\".framer-TOKJo .framer-k4thvw { flex: none; height: 44px; position: absolute; right: -6px; top: -14px; width: 45px; z-index: 1; }\",\".framer-TOKJo .framer-1l1fay9 { bottom: 4px; flex: none; height: 68px; left: 14px; position: absolute; width: 67px; z-index: 1; }\",\".framer-TOKJo .framer-12b9eun { flex: none; height: 56px; left: -1px; position: absolute; top: 29px; width: 60px; z-index: 1; }\",\".framer-TOKJo .framer-1gsmbki { flex: none; height: 14px; position: absolute; right: 132px; top: 96px; width: 333px; z-index: 1; }\",\".framer-TOKJo .framer-1n310m5 { bottom: 30px; flex: none; height: 93px; position: absolute; right: 61px; width: 78px; z-index: 1; }\",\".framer-TOKJo .framer-uevpcy { aspect-ratio: 1 / 1; bottom: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 43px; position: absolute; width: 60px; z-index: 1; }\",\".framer-TOKJo .framer-1cn8pho { flex: none; height: 79px; position: absolute; right: 116px; top: 96px; width: 287px; z-index: 1; }\",\".framer-TOKJo .framer-1dffm5t { flex: none; height: 65px; position: absolute; right: -12px; top: -21px; width: 67px; z-index: 1; }\",\".framer-TOKJo .framer-tfxbx9 { bottom: -4px; flex: none; height: 75px; position: absolute; right: 22px; width: 53px; z-index: 1; }\",\".framer-TOKJo .framer-bol30w { aspect-ratio: 0.8823529411764706 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 69px); left: -11px; position: absolute; top: 38px; width: 61px; z-index: 1; }\",\".framer-TOKJo .framer-1rdry9x { flex: none; height: 11px; position: absolute; right: 185px; top: 146px; width: 260px; z-index: 1; }\",\".framer-TOKJo .framer-1tcmqdg { flex: none; height: 61px; position: absolute; right: 6px; top: -17px; width: 62px; z-index: 1; }\",\".framer-TOKJo .framer-1jmpbz1 { bottom: 115px; flex: none; height: 16px; left: calc(46.45669291338585% - 287px / 2); position: absolute; width: 287px; z-index: 1; }\",\".framer-TOKJo .framer-o1dvl2 { bottom: 56px; flex: none; height: 42px; left: 74px; position: absolute; width: 41px; z-index: 1; }\",\".framer-TOKJo .framer-rgx9qv-container { flex: none; height: auto; max-width: 1140px; position: relative; width: 100%; }\",\".framer-TOKJo .framer-1gbdyes, .framer-TOKJo .framer-je2nnm, .framer-TOKJo .framer-zf0tkc, .framer-TOKJo .framer-18j6qdb, .framer-TOKJo .framer-urnr0k, .framer-TOKJo .framer-1f3m85k, .framer-TOKJo .framer-8cwz07, .framer-TOKJo .framer-1jhagjh, .framer-TOKJo .framer-1nakszu { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1140px; z-index: 1; }\",\".framer-TOKJo .framer-1w0740c { flex: none; height: 47px; position: absolute; right: 123px; top: -9px; width: 63px; z-index: 1; }\",\".framer-TOKJo .framer-13er8px { flex: none; height: 17px; left: calc(63.33333333333335% - 400px / 2); position: absolute; top: 150px; width: 400px; z-index: 1; }\",\".framer-TOKJo .framer-1a24bgd { bottom: 40px; flex: none; height: 75px; left: 176px; position: absolute; width: 69px; z-index: 1; }\",\".framer-TOKJo .framer-4enkbt { flex: none; height: auto; max-width: 810px; position: relative; white-space: pre-wrap; width: 802px; word-break: break-word; word-wrap: break-word; }\",\".framer-TOKJo .framer-88pooj { flex: none; height: 17px; left: calc(72.01754385964915% - 273px / 2); position: absolute; top: 49px; width: 273px; z-index: 1; }\",\".framer-TOKJo .framer-v2x81s { flex: none; height: 43px; left: calc(84.91228070175441% - 40px / 2); position: absolute; top: -14px; width: 40px; z-index: 1; }\",\".framer-TOKJo .framer-f33xcb { flex: none; height: 37px; left: 219px; position: absolute; top: -24px; width: 37px; z-index: 1; }\",\".framer-TOKJo .framer-1suo5t { bottom: 40px; flex: none; height: 68px; position: absolute; right: 205px; width: 90px; z-index: 1; }\",\".framer-TOKJo .framer-1ek277g { flex: none; height: auto; max-width: 842px; position: relative; white-space: pre-wrap; width: 68%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-TOKJo .framer-eivw9y { flex: none; height: 74px; position: absolute; right: 334px; top: calc(48.157894736842124% - 74px / 2); width: 268px; z-index: 0; }\",\".framer-TOKJo .framer-1dlwvwz { flex: none; height: 51px; left: 153px; position: absolute; top: -12px; width: 31px; z-index: 1; }\",\".framer-TOKJo .framer-xi1g0o { flex: none; height: 34px; left: 139px; position: absolute; top: 21px; width: 22px; z-index: 1; }\",\".framer-TOKJo .framer-1aykzpr { flex: none; height: 17px; left: calc(57.54385964912283% - 438px / 2); position: absolute; top: 301px; width: 438px; z-index: 1; }\",\".framer-TOKJo .framer-1xsdb9e { bottom: 20px; flex: none; height: 83px; position: absolute; right: 189px; width: 79px; z-index: 1; }\",\".framer-TOKJo .framer-vk6pea { flex: none; height: 19px; position: absolute; right: 277px; top: calc(53.157894736842124% - 19px / 2); width: 378px; z-index: 1; }\",\".framer-TOKJo .framer-jlqurs { flex: none; height: 44px; position: absolute; right: 177px; top: -16px; width: 45px; z-index: 1; }\",\".framer-TOKJo .framer-q4c1dd { bottom: 48px; flex: none; height: 68px; left: 187px; position: absolute; width: 67px; z-index: 1; }\",\".framer-TOKJo .framer-wkm13c { flex: none; height: auto; max-width: 795px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-TOKJo .framer-ug4czh { flex: none; height: 56px; left: 129px; position: absolute; top: 0px; width: 60px; z-index: 1; }\",\".framer-TOKJo .framer-1hmsgeh { flex: none; height: 17px; left: 331px; position: absolute; top: 96px; width: 333px; z-index: 1; }\",\".framer-TOKJo .framer-z5h09p { bottom: 40px; flex: none; height: 93px; position: absolute; right: 181px; width: 78px; z-index: 1; }\",\".framer-TOKJo .framer-1tghtz, .framer-TOKJo .framer-vbfyr5 { flex: none; height: auto; max-width: 842px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-TOKJo .framer-1t7vt47 { bottom: 44px; flex: none; height: 80px; left: 198px; position: absolute; width: 80px; z-index: 1; }\",\".framer-TOKJo .framer-1pgkuyz { flex: none; height: 79px; left: 157px; position: absolute; top: 91px; width: 287px; z-index: 1; }\",\".framer-TOKJo .framer-dz4ox2 { flex: none; height: 65px; position: absolute; right: 79px; top: -25px; width: 67px; z-index: 1; }\",\".framer-TOKJo .framer-uw627y { bottom: 49px; flex: none; height: 75px; position: absolute; right: 114px; width: 53px; z-index: 1; }\",\".framer-TOKJo .framer-12fvt39 { flex: none; height: 85px; left: 82px; position: absolute; top: 4px; width: 75px; z-index: 1; }\",\".framer-TOKJo .framer-hhxuoo { flex: none; height: 11px; left: 239px; position: absolute; top: 145px; width: 268px; z-index: 1; }\",\".framer-TOKJo .framer-x6x14g { flex: none; height: 63px; overflow: visible; position: absolute; right: 184px; top: -11px; width: 64px; z-index: 1; }\",\".framer-TOKJo .framer-1ez56ii { flex: none; height: 63px; left: calc(50.00000000000002% - 63px / 2); position: absolute; top: calc(49.20634920634922% - 63px / 2); width: 63px; }\",\".framer-TOKJo .framer-vpvt5c { bottom: 57px; flex: none; height: 22px; left: 264px; position: absolute; width: 286px; z-index: 1; }\",\".framer-TOKJo .framer-r2ko2x { bottom: 26px; flex: none; height: 42px; left: 174px; position: absolute; width: 41px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TOKJo.framer-1ig2sqq, .framer-TOKJo .framer-10z4v3t, .framer-TOKJo .framer-1xa24k2, .framer-TOKJo .framer-34y34z, .framer-TOKJo .framer-m0b1nk, .framer-TOKJo .framer-n8b4cx, .framer-TOKJo .framer-1eqnil9, .framer-TOKJo .framer-eejlqu, .framer-TOKJo .framer-1e98rdw, .framer-TOKJo .framer-1h8mbgr, .framer-TOKJo .framer-1gllwfn, .framer-TOKJo .framer-1ogyg62, .framer-TOKJo .framer-1w3k1px, .framer-TOKJo .framer-162ev9m, .framer-TOKJo .framer-75s2oy, .framer-TOKJo .framer-1amift6, .framer-TOKJo .framer-104fvlx, .framer-TOKJo .framer-j43weo, .framer-TOKJo .framer-mvizyt, .framer-TOKJo .framer-bjrr0e, .framer-TOKJo .framer-1rk7ys, .framer-TOKJo .framer-1gbdyes, .framer-TOKJo .framer-je2nnm, .framer-TOKJo .framer-1lm58p5, .framer-TOKJo .framer-zf0tkc, .framer-TOKJo .framer-18j6qdb, .framer-TOKJo .framer-urnr0k, .framer-TOKJo .framer-1f3m85k, .framer-TOKJo .framer-8cwz07, .framer-TOKJo .framer-1jhagjh, .framer-TOKJo .framer-1nakszu { gap: 0px; } .framer-TOKJo.framer-1ig2sqq > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-TOKJo.framer-1ig2sqq > :first-child, .framer-TOKJo .framer-10z4v3t > :first-child, .framer-TOKJo .framer-1xa24k2 > :first-child, .framer-TOKJo .framer-34y34z > :first-child, .framer-TOKJo .framer-m0b1nk > :first-child, .framer-TOKJo .framer-n8b4cx > :first-child, .framer-TOKJo .framer-1eqnil9 > :first-child, .framer-TOKJo .framer-eejlqu > :first-child, .framer-TOKJo .framer-1e98rdw > :first-child, .framer-TOKJo .framer-1h8mbgr > :first-child, .framer-TOKJo .framer-1gllwfn > :first-child, .framer-TOKJo .framer-1ogyg62 > :first-child, .framer-TOKJo .framer-1w3k1px > :first-child, .framer-TOKJo .framer-162ev9m > :first-child, .framer-TOKJo .framer-75s2oy > :first-child, .framer-TOKJo .framer-1amift6 > :first-child, .framer-TOKJo .framer-104fvlx > :first-child, .framer-TOKJo .framer-j43weo > :first-child, .framer-TOKJo .framer-mvizyt > :first-child, .framer-TOKJo .framer-bjrr0e > :first-child, .framer-TOKJo .framer-1rk7ys > :first-child, .framer-TOKJo .framer-1gbdyes > :first-child, .framer-TOKJo .framer-je2nnm > :first-child, .framer-TOKJo .framer-1lm58p5 > :first-child, .framer-TOKJo .framer-zf0tkc > :first-child, .framer-TOKJo .framer-18j6qdb > :first-child, .framer-TOKJo .framer-urnr0k > :first-child, .framer-TOKJo .framer-1f3m85k > :first-child, .framer-TOKJo .framer-8cwz07 > :first-child, .framer-TOKJo .framer-1jhagjh > :first-child, .framer-TOKJo .framer-1nakszu > :first-child { margin-top: 0px; } .framer-TOKJo.framer-1ig2sqq > :last-child, .framer-TOKJo .framer-10z4v3t > :last-child, .framer-TOKJo .framer-1xa24k2 > :last-child, .framer-TOKJo .framer-34y34z > :last-child, .framer-TOKJo .framer-m0b1nk > :last-child, .framer-TOKJo .framer-n8b4cx > :last-child, .framer-TOKJo .framer-1eqnil9 > :last-child, .framer-TOKJo .framer-eejlqu > :last-child, .framer-TOKJo .framer-1e98rdw > :last-child, .framer-TOKJo .framer-1h8mbgr > :last-child, .framer-TOKJo .framer-1gllwfn > :last-child, .framer-TOKJo .framer-1ogyg62 > :last-child, .framer-TOKJo .framer-1w3k1px > :last-child, .framer-TOKJo .framer-162ev9m > :last-child, .framer-TOKJo .framer-75s2oy > :last-child, .framer-TOKJo .framer-1amift6 > :last-child, .framer-TOKJo .framer-104fvlx > :last-child, .framer-TOKJo .framer-j43weo > :last-child, .framer-TOKJo .framer-mvizyt > :last-child, .framer-TOKJo .framer-bjrr0e > :last-child, .framer-TOKJo .framer-1rk7ys > :last-child, .framer-TOKJo .framer-1gbdyes > :last-child, .framer-TOKJo .framer-je2nnm > :last-child, .framer-TOKJo .framer-1lm58p5 > :last-child, .framer-TOKJo .framer-zf0tkc > :last-child, .framer-TOKJo .framer-18j6qdb > :last-child, .framer-TOKJo .framer-urnr0k > :last-child, .framer-TOKJo .framer-1f3m85k > :last-child, .framer-TOKJo .framer-8cwz07 > :last-child, .framer-TOKJo .framer-1jhagjh > :last-child, .framer-TOKJo .framer-1nakszu > :last-child { margin-bottom: 0px; } .framer-TOKJo .framer-10z4v3t > *, .framer-TOKJo .framer-1xa24k2 > *, .framer-TOKJo .framer-m0b1nk > *, .framer-TOKJo .framer-n8b4cx > *, .framer-TOKJo .framer-1eqnil9 > *, .framer-TOKJo .framer-eejlqu > *, .framer-TOKJo .framer-1e98rdw > *, .framer-TOKJo .framer-1h8mbgr > *, .framer-TOKJo .framer-1gllwfn > *, .framer-TOKJo .framer-1ogyg62 > *, .framer-TOKJo .framer-1w3k1px > *, .framer-TOKJo .framer-75s2oy > *, .framer-TOKJo .framer-1amift6 > *, .framer-TOKJo .framer-104fvlx > *, .framer-TOKJo .framer-j43weo > *, .framer-TOKJo .framer-mvizyt > *, .framer-TOKJo .framer-bjrr0e > *, .framer-TOKJo .framer-1rk7ys > *, .framer-TOKJo .framer-1gbdyes > *, .framer-TOKJo .framer-je2nnm > *, .framer-TOKJo .framer-zf0tkc > *, .framer-TOKJo .framer-18j6qdb > *, .framer-TOKJo .framer-urnr0k > *, .framer-TOKJo .framer-1f3m85k > *, .framer-TOKJo .framer-8cwz07 > *, .framer-TOKJo .framer-1jhagjh > *, .framer-TOKJo .framer-1nakszu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-TOKJo .framer-34y34z > *, .framer-TOKJo .framer-162ev9m > *, .framer-TOKJo .framer-1lm58p5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-TOKJo.framer-v-14srnzd.framer-1ig2sqq { padding: 60px 24px 48px 24px; width: 810px; }\",\".framer-TOKJo.framer-v-14srnzd .framer-i91eyp-container { order: 1; }\",\".framer-TOKJo.framer-v-1208qr7.framer-1ig2sqq { gap: 10px; padding: 80px 20px 64px 20px; width: 390px; }\",\".framer-TOKJo.framer-v-1208qr7 .framer-1e4jvvj-container { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TOKJo.framer-v-1208qr7.framer-1ig2sqq { gap: 0px; } .framer-TOKJo.framer-v-1208qr7.framer-1ig2sqq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-TOKJo.framer-v-1208qr7.framer-1ig2sqq > :first-child { margin-top: 0px; } .framer-TOKJo.framer-v-1208qr7.framer-1ig2sqq > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 516\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"khGmnLpMe\":{\"layout\":[\"fixed\",\"auto\"]},\"LhxO9AyT1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"YRuinxKiP\":\"text1\",\"bTbZqKaVi\":\"text2\",\"RHi_oMwT7\":\"text3\",\"uqMMk71Fm\":\"text4\",\"GKA9nC0_k\":\"text5\",\"TFysv1fhc\":\"text6\",\"UJZa9XDlG\":\"text7\",\"VoQKRkC6J\":\"text8\",\"zJpir2ivT\":\"text9\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerklDbgmGZd=withCSS(Component,css,\"framer-TOKJo\");export default FramerklDbgmGZd;FramerklDbgmGZd.displayName=\"Section / Quote\";FramerklDbgmGZd.defaultProps={height:516,width:1200};addPropertyControls(FramerklDbgmGZd,{variant:{options:[\"wg7F87m0v\",\"khGmnLpMe\",\"LhxO9AyT1\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},YRuinxKiP:{defaultValue:\"\u201C[They] truly understand paid strategy and get creative \u2013 often you seem to find one or the other.\u201D\",displayTextArea:true,title:\"Text #1\",type:ControlType.String},bTbZqKaVi:{defaultValue:\"\u201CThe ad performance was outstanding, ranking among the top performers. They delivered exceptional results, they were fast, professional, and delivered on time.\u201D\",displayTextArea:false,title:\"Text #2\",type:ControlType.String},RHi_oMwT7:{defaultValue:\"\u201CThey absolutely nailed it, \\u2028with everything from creative strategy, to finding the perfect talent and ad structure.\u201D\",displayTextArea:false,title:\"Text #3\",type:ControlType.String},uqMMk71Fm:{defaultValue:\"\u201CThey just get it! In an ever-changing, ever-growing market, [they] always hit the mark and are ahead of the social trends. Taking risks and pushing boundaries is what makes the team strategic trailblazers.\u201D\",displayTextArea:false,title:\"Text #4\",type:ControlType.String},GKA9nC0_k:{defaultValue:\"\u201CMight be one of the best creative agencies I've worked with. They are quick to respond and make edits, do amazing work converting angles into solid creatives, and go above and beyond in delivering ads.\u201D\",displayTextArea:false,title:\"Text #5\",type:ControlType.String},TFysv1fhc:{defaultValue:'\"Creative Milkshake has proven to be a great sparring partner to discuss any new angles, audiences, or concepts we could try out. They understood our product quickly and were able to get into the minds of our customers.\"',displayTextArea:false,title:\"Text #6\",type:ControlType.String},UJZa9XDlG:{defaultValue:\"\u201CWe've worked with other UGC agencies and creators and none have been as professional as Creative Milkshake, we look forward to continuing our partnership for a long time.\u201D\",description:\"\",displayTextArea:false,title:\"Text #7\",type:ControlType.String},VoQKRkC6J:{defaultValue:\"\\\"What I love most is that it's a hands-off approach for us. Everything is taken care of, and I'm part of the entire process. They take the least amount of my time but produce great content every time.\\\"\",displayTextArea:false,title:\"Text #8\",type:ControlType.String},zJpir2ivT:{defaultValue:'\"Creative Milkshake brought \\u2028a professional touch to our ideation and editing processes, enhancing the overall quality of our campaigns.\"',displayTextArea:false,title:\"Text #9\",type:ControlType.String}});addFonts(FramerklDbgmGZd,[{explicitInter:true,fonts:[{family:\"Sora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSe1mX-PIwNhBti0.woff2\",weight:\"700\"},{family:\"Sora\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/O6APDGOOI6KPTOYLMG2WT7AMVFBAEQQ2/YA4HXMMXHUGDD7BGRS5L5DM7AVKBZQ5D/BB6C7YWXOMIC6G7LPBRQNIGD2FKV5DQB.woff2\",weight:\"700\"},{family:\"Sora\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XR5REPALAPN54FEEIVU4Z7ZE3Z5TYAXV/ZVSCLT36TMKD3NSNAKQISILPVOHE4VFU/NTHDIHEFNRRDAFXF6EKGHNYZ4FA3VMWE.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/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\"}]},...CarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerklDbgmGZd\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"516\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"khGmnLpMe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LhxO9AyT1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"YRuinxKiP\\\":\\\"text1\\\",\\\"bTbZqKaVi\\\":\\\"text2\\\",\\\"RHi_oMwT7\\\":\\\"text3\\\",\\\"uqMMk71Fm\\\":\\\"text4\\\",\\\"GKA9nC0_k\\\":\\\"text5\\\",\\\"TFysv1fhc\\\":\\\"text6\\\",\\\"UJZa9XDlG\\\":\\\"text7\\\",\\\"VoQKRkC6J\\\":\\\"text8\\\",\\\"zJpir2ivT\\\":\\\"text9\\\"}\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./klDbgmGZd.map", "// Generated by Framer (99bc0fd)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"bKNh95tQ6\",\"z3o4znf_6\",\"faJeAeewv\",\"rjehUDbJY\",\"vTKAcy6pH\"];const serializationHash=\"framer-w2IHh\";const variantClassNames={bKNh95tQ6:\"framer-v-1yivz3v\",faJeAeewv:\"framer-v-1n60hbc\",rjehUDbJY:\"framer-v-1yclpu0\",vTKAcy6pH:\"framer-v-ij4rgh\",z3o4znf_6:\"framer-v-krsylv\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={duration:0,type:\"tween\"};const transition3={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1\":\"faJeAeewv\",\"2\":\"rjehUDbJY\",initial:\"z3o4znf_6\",loop:\"vTKAcy6pH\",primary:\"bKNh95tQ6\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"bKNh95tQ6\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bKNh95tQ6\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1mhf8a7=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rjehUDbJY\"),100);});const onAppear1pl7lxz=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vTKAcy6pH\"),500);});const onAppear1s5sai=activeVariantCallback(async(...args)=>{setVariant(\"z3o4znf_6\");});useOnVariantChange(baseVariant,{faJeAeewv:onAppear1mhf8a7,rjehUDbJY:onAppear1pl7lxz,vTKAcy6pH:onAppear1s5sai});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,...addPropertyOverrides({rjehUDbJY:{value:transition3},vTKAcy6pH:{value:transition2},z3o4znf_6:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1yivz3v\",className,classNames),\"data-framer-name\":\"primary\",layoutDependency:layoutDependency,layoutId:\"bKNh95tQ6\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(236, 248, 110)\",borderBottomLeftRadius:320,borderBottomRightRadius:320,borderTopLeftRadius:320,borderTopRightRadius:320,...style},...addPropertyOverrides({faJeAeewv:{\"data-framer-name\":\"1\",\"data-highlight\":true},rjehUDbJY:{\"data-framer-name\":\"2\",\"data-highlight\":true},vTKAcy6pH:{\"data-framer-name\":\"loop\",\"data-highlight\":true},z3o4znf_6:{\"data-framer-name\":\"initial\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g0h1tq\",\"data-framer-name\":\"arrow-2\",layoutDependency:layoutDependency,layoutId:\"FQ6wqN3kw\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bshxvx\",\"data-framer-name\":\"Arrow-cm\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"SfoIlulFb\",svg:'<svg width=\"20\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.82 9.696h17.377M9.611 1.167s1.071 2.415 3.84 4.863c2.77 2.448 5.356 3.578 5.356 3.578s-2.641 1.753-5.355 4.463c-2.714 2.71-3.84 5.329-3.84 5.329\" stroke=\"#000003\" stroke-width=\".944\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7nd8u3\",\"data-framer-name\":\"arrow-1\",layoutDependency:layoutDependency,layoutId:\"SWBIjYod0\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1eaps34\",\"data-framer-name\":\"Arrow-cm\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"Tzhc8AN4B\",svg:'<svg width=\"20\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.82 9.696h17.377M9.611 1.167s1.071 2.415 3.84 4.863c2.77 2.448 5.356 3.578 5.356 3.578s-2.641 1.753-5.355 4.463c-2.714 2.71-3.84 5.329-3.84 5.329\" stroke=\"#000003\" stroke-width=\".944\"/></svg>',withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-w2IHh.framer-1ygin9q, .framer-w2IHh .framer-1ygin9q { display: block; }\",\".framer-w2IHh.framer-1yivz3v { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-w2IHh .framer-1g0h1tq { align-content: center; align-items: center; aspect-ratio: 1 / 1; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: var(--framer-aspect-ratio-supported, 40px); justify-content: center; left: -40px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-w2IHh .framer-1bshxvx, .framer-w2IHh .framer-1eaps34 { flex: none; height: 60%; position: relative; width: 60%; }\",\".framer-w2IHh .framer-7nd8u3 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: var(--framer-aspect-ratio-supported, 40px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-w2IHh.framer-1yivz3v, .framer-w2IHh .framer-1g0h1tq, .framer-w2IHh .framer-7nd8u3 { gap: 0px; } .framer-w2IHh.framer-1yivz3v > *, .framer-w2IHh .framer-1g0h1tq > *, .framer-w2IHh .framer-7nd8u3 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-w2IHh.framer-1yivz3v > :first-child, .framer-w2IHh .framer-1g0h1tq > :first-child, .framer-w2IHh .framer-7nd8u3 > :first-child { margin-left: 0px; } .framer-w2IHh.framer-1yivz3v > :last-child, .framer-w2IHh .framer-1g0h1tq > :last-child, .framer-w2IHh .framer-7nd8u3 > :last-child { margin-right: 0px; } }\",\".framer-w2IHh.framer-v-1yclpu0 .framer-1g0h1tq { bottom: unset; left: unset; position: relative; top: unset; }\",\".framer-w2IHh.framer-v-1yclpu0 .framer-7nd8u3 { bottom: 0px; position: absolute; right: -40px; top: 0px; z-index: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"z3o4znf_6\":{\"layout\":[\"fixed\",\"fixed\"]},\"faJeAeewv\":{\"layout\":[\"fixed\",\"fixed\"]},\"rjehUDbJY\":{\"layout\":[\"fixed\",\"fixed\"]},\"vTKAcy6pH\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCDlBFwY51=withCSS(Component,css,\"framer-w2IHh\");export default FramerCDlBFwY51;FramerCDlBFwY51.displayName=\"cp/arrow\";FramerCDlBFwY51.defaultProps={height:40,width:40};addPropertyControls(FramerCDlBFwY51,{variant:{options:[\"bKNh95tQ6\",\"z3o4znf_6\",\"faJeAeewv\",\"rjehUDbJY\",\"vTKAcy6pH\"],optionTitles:[\"primary\",\"initial\",\"1\",\"2\",\"loop\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerCDlBFwY51,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCDlBFwY51\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z3o4znf_6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"faJeAeewv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rjehUDbJY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vTKAcy6pH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CDlBFwY51.map", "// Generated by Framer (63ecd5c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-HoQ17\";const variantClassNames={G6kdUaZkq:\"framer-v-17ck8t2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"G6kdUaZkq\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",backgroundSize:2,fit:\"tile\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:505,pixelWidth:505,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/PBQCxO4Ke8oM2DWQ2S9RuEud8Bo.png\"},className:cx(scopingClassNames,\"framer-17ck8t2\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"G6kdUaZkq\",ref:refBinding,style:{...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HoQ17.framer-88j77w, .framer-HoQ17 .framer-88j77w { display: block; }\",\".framer-HoQ17.framer-17ck8t2 { height: 893px; overflow: hidden; position: relative; width: 1200px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 893\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQHhR4qlc4=withCSS(Component,css,\"framer-HoQ17\");export default FramerQHhR4qlc4;FramerQHhR4qlc4.displayName=\"elements/pattern\";FramerQHhR4qlc4.defaultProps={height:893,width:1200};addFonts(FramerQHhR4qlc4,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQHhR4qlc4\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"893\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QHhR4qlc4.map", "// Generated by Framer (99bc0fd)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"t36fWZ8s0\",\"sCiXEHMJN\",\"hbW1xJWBv\",\"vn7Ihunw7\",\"u1u_i1SAw\",\"g5UKdPekb\",\"yc3ibdwrv\",\"ICWCtRwYH\",\"FVc1HGCHo\",\"NkpFkA0d6\",\"O71t0OR5o\"];const serializationHash=\"framer-dEnQP\";const variantClassNames={FVc1HGCHo:\"framer-v-j7t0v2\",g5UKdPekb:\"framer-v-zzk1sj\",hbW1xJWBv:\"framer-v-15i072b\",ICWCtRwYH:\"framer-v-14y7gb1\",NkpFkA0d6:\"framer-v-zj9rva\",O71t0OR5o:\"framer-v-nrb19h\",sCiXEHMJN:\"framer-v-1u5efgj\",t36fWZ8s0:\"framer-v-1l060k5\",u1u_i1SAw:\"framer-v-i4q4us\",vn7Ihunw7:\"framer-v-1akk7g4\",yc3ibdwrv:\"framer-v-t2yzze\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1\":\"sCiXEHMJN\",\"1b\":\"hbW1xJWBv\",\"2\":\"vn7Ihunw7\",\"2b\":\"u1u_i1SAw\",\"3\":\"g5UKdPekb\",\"3b\":\"yc3ibdwrv\",\"4\":\"ICWCtRwYH\",\"4b\":\"FVc1HGCHo\",\"5\":\"NkpFkA0d6\",\"5b\":\"O71t0OR5o\",primary:\"t36fWZ8s0\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"t36fWZ8s0\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"t36fWZ8s0\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1xvw6ej=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"hbW1xJWBv\"),400);});const onAppear1b78eh9=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"sCiXEHMJN\"),400);});const onAppear11bnhvb=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"u1u_i1SAw\"),400);});const onAppeara822i9=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vn7Ihunw7\"),400);});const onAppearwuuez8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"yc3ibdwrv\"),400);});const onAppear2rft1e=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"g5UKdPekb\"),400);});const onAppear1ac9arf=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"FVc1HGCHo\"),400);});const onAppear1j16ntr=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ICWCtRwYH\"),400);});const onAppear166pi1k=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"O71t0OR5o\"),400);});const onAppearke45vt=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"NkpFkA0d6\"),400);});useOnVariantChange(baseVariant,{FVc1HGCHo:onAppear1j16ntr,g5UKdPekb:onAppearwuuez8,hbW1xJWBv:onAppear1b78eh9,ICWCtRwYH:onAppear1ac9arf,NkpFkA0d6:onAppear166pi1k,O71t0OR5o:onAppearke45vt,sCiXEHMJN:onAppear1xvw6ej,u1u_i1SAw:onAppeara822i9,vn7Ihunw7:onAppear11bnhvb,yc3ibdwrv:onAppear2rft1e});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"O71t0OR5o\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"NkpFkA0d6\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"FVc1HGCHo\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"ICWCtRwYH\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"yc3ibdwrv\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"g5UKdPekb\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"u1u_i1SAw\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"vn7Ihunw7\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"hbW1xJWBv\")return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"sCiXEHMJN\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",positionX:\"center\",positionY:\"center\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1l060k5\",className,classNames),\"data-framer-name\":\"primary\",layoutDependency:layoutDependency,layoutId:\"t36fWZ8s0\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({FVc1HGCHo:{\"data-framer-name\":\"4b\",\"data-highlight\":true},g5UKdPekb:{\"data-framer-name\":\"3\",\"data-highlight\":true},hbW1xJWBv:{\"data-framer-name\":\"1b\",\"data-highlight\":true},ICWCtRwYH:{\"data-framer-name\":\"4\",\"data-highlight\":true},NkpFkA0d6:{\"data-framer-name\":\"5\",\"data-highlight\":true},O71t0OR5o:{\"data-framer-name\":\"5b\",\"data-highlight\":true},sCiXEHMJN:{\"data-framer-name\":\"1\",\"data-highlight\":true},u1u_i1SAw:{\"data-framer-name\":\"2b\",\"data-highlight\":true},vn7Ihunw7:{\"data-framer-name\":\"2\",\"data-highlight\":true},yc3ibdwrv:{\"data-framer-name\":\"3b\",\"data-highlight\":true}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1qa6dyv\",\"data-framer-name\":\"5b\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:84,layoutDependency:layoutDependency,layoutId:\"h2PZpLrhQ\",svg:'<svg width=\"84\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19.422 20.875c-1.274 1.912-2.49 3.931-3.402 6.04-.4.924-.823 1.823-1.388 2.66-.177.262-.368.514-.534.784-.25.41-.434.87-.724 1.255-.114.151-.254.283-.356.443-.12.187.405-.004.41-.005.606-.122 1.216-.213 1.824-.321.888-.158 1.752-.414 2.624-.637 1.182-.302 2.375-.758 3.593-.888.637-.067 1.147-.081 1.69-.454a.79.79 0 0 1 .526-.155\" stroke=\"#6345CE\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M20.157 26.608c.5-.68 1.205-1.404 1.925-1.854.93-.581 2.116-.932 3.182-1.15 1.075-.222 2.23-.323 3.323-.235.628.05 1.256.117 1.884.169.73.06 1.584.2 2.322.06.475-.09.87-.49 1.244-.768.4-.298.821-.57 1.194-.904.484-.43.894-.945 1.35-1.404 1.03-1.036 2.178-1.986 3.324-2.888.895-.704 1.867-1.385 2.98-1.685 1.164-.314 2.424-.508 3.632-.392 2.175.21 4.26.75 6.462.555.972-.086 1.828-.297 2.694-.767.855-.464 1.651-1.09 2.467-1.617.887-.573 1.786-1.13 2.667-1.712 1.609-1.062 3.204-2.09 5.215-2.012 1.584.061 3.155.405 4.699.73\" stroke=\"#6345CE\" stroke-width=\"2\" stroke-linecap=\"round\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-gw4z31\",\"data-framer-name\":\"5\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:84,layoutDependency:layoutDependency,layoutId:\"eWkXOjcvg\",svg:'<svg width=\"84\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19.009 21.16c-1.407 2.11-2.434 4.6-3.233 7.006-.212.638-.377 1.333-.68 1.94-.324.646-.726 1.242-1.072 1.876-.092.17.104.021.17-.005.484-.192.996-.289 1.495-.434 1.055-.307 2.138-.63 3.165-1.018 1.988-.75 4.053-1.515 6.148-1.896\" stroke=\"#6345CE\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M20.92 26.023c.52-.781 1.638-1.271 2.431-1.718 1.343-.755 3.02-.925 4.521-1.008.616-.034 1.206-.08 1.81.034.61.114 1.241.224 1.862.246.978.033 2.167-.35 3.04-.72.95-.4 1.615-1.215 2.442-1.804.957-.682 1.871-1.394 2.605-2.32 1.432-1.81 3.617-2.704 5.882-2.997 1.01-.131 2.033-.002 3.044.034 1.2.042 2.355.442 3.561.506 1.192.064 2.46-.334 3.59-.675.98-.296 1.872-1.102 2.702-1.68.337-.233.553-.591.83-.887.355-.378.763-.7 1.178-1.009 1.237-.921 2.455-1.39 3.956-1.722 1.493-.33 2.77-.394 4.3-.174.769.111 1.523.32 2.272.521\" stroke=\"#6345CE\" stroke-width=\"2\" stroke-linecap=\"round\"/></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1y2vvfw\",\"data-framer-name\":\"4b\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:84,layoutDependency:layoutDependency,layoutId:\"UJJ9H9h2g\",svg:'<svg width=\"84\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M39.79 32.737c-1.909-.341-3.85-1.448-5.675-2.067-2.246-.761-4.52-1.418-6.79-2.1-.492-.147-1.952-.333-1.462-.483 2.063-.635 4.663-.589 6.774-.598.137 0 4.281.348 3.81-.323-.277-.396-2.027-1.946-2.147-2.05a142.638 142.638 0 0 0-3.972-3.294 113.881 113.881 0 0 0-5.223-3.964c-.488-.347-1.99-1.322-1.462-1.042 4.624 2.448 10.093 3.14 15.162 4.085.9.168 1.754.348 2.632.582.367.097.205-.44.178-.63-.431-3.064-.741-5.897-.178-8.978.248-1.355.45-2.77.848-4.093.206-.686.83 1.537.831 1.542 1.318 3.655 2.11 7.577 3.964 11.02.173.32.229.18.396-.105.589-1.002 1.105-1.987 1.954-2.81.92-.89 2.046-1.53 3.068-2.292.318-.238.656-.73.662-.065.014 1.633-.55 3.341-.348 4.957.082.65.727.253 1.139.121 2.022-.645 4.074-1.278 6.184-1.566 1.892-.258.892 1.298.178 2.204-1.157 1.467-2.705 2.645-3.666 4.247\" stroke=\"#6345CE\" stroke-width=\"2\" stroke-linecap=\"round\"/></svg>',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1frcn0l\",\"data-framer-name\":\"4\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:84,layoutDependency:layoutDependency,layoutId:\"iHuz7D_55\",svg:'<svg width=\"84\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M39.381 31.043c-2.314-.698-4.675-1.262-7.013-1.872-1.968-.514-3.915-.973-5.923-1.295-.846-.135-1.71-.215-2.552-.38-.065-.013-.916-.255-.893-.27.332-.215 1.01-.268 1.375-.359 1.986-.492 4.048-.573 6.019-1.126.497-.14.964-.366 1.47-.475.547-.12 1.108-.179 1.66-.278.47-.085.937-.186 1.404-.285.12-.026.262-.004.146-.074-.156-.094-.252-.262-.373-.395-.429-.47-.89-.917-1.33-1.374a44.532 44.532 0 0 0-5.456-4.823c-1.193-.89-2.474-1.626-3.704-2.457-.114-.078-.055-.076.029-.063.435.07.87.175 1.298.271 2.591.583 5.063 1.612 7.624 2.31 1.864.51 3.782.865 5.63 1.423.211.064 1.296.488 1.211.125-.144-.617-.106-1.264-.055-1.89a31.48 31.48 0 0 1 .618-4.257c.082-.37.21-.735.344-1.09.265-.706.52-1.417.753-2.135.003-.009.29-1.252.351-1.272.054-.018.016.113.03.168.03.129.096.353.13.468.159.511.35 1.005.571 1.492.394.862.823 1.677 1.353 2.464.549.815 1.023 1.668 1.477 2.538.122.232.306.822.52 1.024.297.28 2.527-2.207 2.895-2.523a51.507 51.507 0 0 1 2.363-1.887c.337-.256.686-.5 1.03-.746.109-.077.041.023.026.08-.29 1.113-.134 2.34-.292 3.478-.077.553-.23 1.135-.23 1.696 0 .403 1.31.217 1.473.212 1.98-.058 3.823-.62 5.722-1.119.018-.004 1.447-.407 1.397-.237-.28.948-1.033 1.84-1.66 2.574a86.197 86.197 0 0 1-2.779 3.068c-.249.265-.419.593-.665.866\" stroke=\"#6345CE\" stroke-width=\"2\" stroke-linecap=\"round\"/></svg>',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1jfwl1k\",\"data-framer-name\":\"3b\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:84,layoutDependency:layoutDependency,layoutId:\"mv6Zw8zD8\",svg:'<svg width=\"84\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M30 24.33c1.017.754 2.044 1.495 3.052 2.26 1.035.787 2.55 1.899 3.5 2.937.46.504.516.956.616 1.578.09.55.106 1.103.209 1.654.13.693.257 1.368.332 2.07.012.107.048-.207.068-.312.162-.861.37-1.71.611-2.553.197-.685.413-1.367.708-2.017.352-.777.852-1.43 1.378-2.097 1.008-1.279 2.097-2.48 3.13-3.733.24-.29.63-.586.778-.933.078-.182-1.348-.445-1.431-.47-.715-.218-1.51-.458-2.136-.88-.585-.393-.905-1.064-1.2-1.68-.487-1.008-.86-2.113-1.136-3.197-.132-.518-.227-1.044-.333-1.567-.034-.171-.065-.67-.13-.507-.025.064-.032.192-.047.25-.195.724-.497 1.418-.795 2.103-.588 1.351-1.193 2.708-1.882 4.012-.242.457-.51 1.012-.947 1.325-.319.227-.71.385-1.054.569-.552.296-1.095.608-1.645.907-.445.242-.948.564-1.443.688M44.81 13.68c.746.186 1.447.395 2.13.76 1.038.554 1.882 1.341 2.726 2.147.639.612.886 1.127.95 2.02l.016.263c.002.032.006.064.006.096 0 .028-.004-.057-.006-.085a51.9 51.9 0 0 1-.062-1.065c-.029-.633.056-1.179.22-1.798.269-1.016.58-2.054 1.011-3.015.274-.61.715-1.081 1.232-1.49.24-.19.157-.164-.102-.28a14.75 14.75 0 0 1-1.747-.901 13.18 13.18 0 0 1-1.8-1.322c-.35-.307-.704-.64-.877-1.084-.185-.478-.127-1.011-.157-1.51-.005-.08.011-.327-.043-.398-.074-.099-.071.237-.098.358-.409 1.821-.618 3.819-1.533 5.478-.453.82-1.212 1.425-1.866 2.08\" stroke=\"#6345CE\" stroke-width=\"2\" stroke-linecap=\"round\"/></svg>',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-hsqdvf\",\"data-framer-name\":\"3\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:84,layoutDependency:layoutDependency,layoutId:\"wdoj0Nulz\",svg:'<svg width=\"84\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M32.733 28.832c.996.118 1.843.193 2.7.796 1.89 1.33 3.187 3.297 4.74 4.967.442.476.218-.322.206-.561-.084-1.708-.102-3.071.597-4.705a21.962 21.962 0 0 1 2.956-4.974c.25-.314.922-.65.497-1.087-.703-.725-1.95-.645-2.828-1.045-1.06-.483-2.02-1.36-2.43-2.466-.296-.796-.334-1.679-.583-2.494-.096-.316-.909-2.314-.917-2.303-.596.829-1.069 1.985-1.357 2.97-.75 2.567-2.752 4.482-4.974 5.87-.787.492-1.945.773-.938 1.578.645.516 1.379.883 2.01 1.421.535.456 1.004 1.036 1.6 1.393m11.768-14.71c.24.345.589.55.923.796a11.1 11.1 0 0 1 1.876 1.748c.477.56.77 1.158 1.01 1.848.044.13.171.934.312 1.023.318.203.218-.723.341-1.08.406-1.175 1.015-2.28 1.634-3.354.589-1.02 1.92-1.967.484-2.785-1.247-.712-2.978-1.572-3.582-2.985-.126-.295-.546-2.204-.625-2.032-.338.732-.634 1.446-.839 2.23-.34 1.304-.94 2.45-1.407 3.696\" stroke=\"#6345CE\" stroke-width=\"2\" stroke-linecap=\"round\"/></svg>',withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-188utjn\",\"data-framer-name\":\"2b\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:84,layoutDependency:layoutDependency,layoutId:\"SkqzXryAy\",svg:'<svg width=\"84\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m33.951 31.805-4.142.095m4.714-5.285c-1.116-.76-2.332-1.367-3.391-2.21-1.103-.879-2.055-1.928-3.132-2.836m9.379 1.095c-.36-.744-.693-1.5-1.042-2.248-.686-1.471-1.44-2.889-2.195-4.322m7.902 3.761c-.26-2.254-.425-4.51-.632-6.771a20.286 20.286 0 0 0-.51-3.084M46.9 20.95c.99-1.414 1.748-2.965 2.572-4.475m1.523 6.998c1.22-.784 2.375-1.671 3.595-2.46.558-.36 1.128-.708 1.69-1.063\" stroke=\"#6345CE\" stroke-width=\"2\" stroke-linecap=\"round\"/></svg>',withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-12rqf0s\",\"data-framer-name\":\"2\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:84,layoutDependency:layoutDependency,layoutId:\"EhFI9uay9\",svg:'<svg width=\"84\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M35.51 30.15c-2.085-.097-4.168-.21-6.252-.317m6.331-4.273c-2.232-1.278-4.813-1.918-7.201-2.849m10.208-1.582c-.83-2.126-2.19-4.014-3.403-5.935m8.704 3.244c-.198-2.768-.841-5.466-1.503-8.15m6.409 8.942c.318-.7.473-1.484.65-2.225.413-1.718.861-3.36 1.566-4.976m1.741 10.129c.907-.8 1.86-1.52 2.849-2.216\" stroke=\"#6345CE\" stroke-width=\"2\" stroke-linecap=\"round\"/></svg>',withExternalLayout:true}),isDisplayed8()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-kj84q0\",\"data-framer-name\":\"1b\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:84,layoutDependency:layoutDependency,layoutId:\"x1jMrfwFp\",svg:'<svg width=\"84\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M32 29.598c1.271-1.376 2.471-2.76 3.884-3.993.732-.64 1.718-1.437 2.742-1.57.485-.063 1.059.122 1.509.287.51.188.965.448 1.366.816.479.44.687 1.117.873 1.722.267.87.265 1.8.142 2.697-.131.956-.852 1.86-1.484 2.547-.191.208-.506.532-.834.562-.34.03-.621-.313-.75-.574-.212-.43-.29-.954-.396-1.416-.145-.625-.291-1.251-.36-1.89-.098-.894-.039-1.823.006-2.719.034-.67.105-1.312.279-1.96.344-1.285.905-2.505 1.559-3.662.51-.901 1.417-1.574 2.24-2.17.829-.6 1.732-.844 2.747-.823.58.012 1.167.037 1.745.097.551.058.974.276 1.441.565.757.467 1.605.932 2.196 1.61.474.545.487 1.192.541 1.875.04.489.14 1.084-.124 1.53-.33.556-1.028 1.142-1.716 1.08-.143-.013-.396-.122-.525-.177-.387-.163-.778-.325-1.158-.503a17.192 17.192 0 0 1-1.765-.929c-.409-.252-.774-.51-.893-1.001-.175-.724.07-1.551.294-2.24.165-.502.384-.991.608-1.47.772-1.649 1.715-3.105 3.009-4.387.323-.32.648-.642.952-.98.265-.297.459-.651.697-.968.661-.878 1.413-1.696 2.099-2.554\" stroke=\"#6345CE\" stroke-width=\"2\" stroke-linecap=\"round\"/></svg>',withExternalLayout:true}),isDisplayed9()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-5k2mst\",\"data-framer-name\":\"1\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:84,layoutDependency:layoutDependency,layoutId:\"ibNO6Kpy9\",svg:'<svg width=\"84\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M31.59 29.594c.527-.919 1.22-2.188 1.84-3.079.466-.668.947-1.2 1.682-1.542.866-.402 1.863-.728 2.814-.848 1.124-.142 1.777.677 2.527 1.368.325.3.688.601.914.987.463.788.664 1.642.706 2.548.05 1.08-.048 2.313-1.04 2.964-.822.538-1.749.138-2.254-.606-.375-.552-.796-1.179-.869-1.859-.11-1.026.077-2.086.333-3.076.318-1.236.672-2.48 1.156-3.661.345-.846.732-1.727 1.306-2.447.836-1.047 1.83-1.832 2.983-2.51.267-.157.56-.334.852-.443.636-.236 1.544-.063 2.184.022 1.315.173 2.662.606 3.363 1.813.626 1.077.991 2.42.526 3.637-.358.935-1.298 1.617-2.285 1.202-.66-.277-1.318-.757-1.583-1.443-.428-1.11-.511-2.29-.51-3.471.002-.96.178-1.804.5-2.698.395-1.101.801-2.173 1.459-3.15a37.349 37.349 0 0 1 2.548-3.341c.623-.732 1.17-1.508 1.85-2.189\" stroke=\"#6345CE\" stroke-width=\"2\" stroke-linecap=\"round\"/></svg>',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dEnQP.framer-gs8cxt, .framer-dEnQP .framer-gs8cxt { display: block; }\",\".framer-dEnQP.framer-1l060k5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 41px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 84px; }\",\".framer-dEnQP .framer-1qa6dyv, .framer-dEnQP .framer-gw4z31, .framer-dEnQP .framer-1y2vvfw, .framer-dEnQP .framer-1frcn0l, .framer-dEnQP .framer-1jfwl1k, .framer-dEnQP .framer-hsqdvf, .framer-dEnQP .framer-188utjn, .framer-dEnQP .framer-12rqf0s, .framer-dEnQP .framer-kj84q0, .framer-dEnQP .framer-5k2mst { aspect-ratio: 2.048780487804878 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dEnQP.framer-1l060k5 { gap: 0px; } .framer-dEnQP.framer-1l060k5 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-dEnQP.framer-1l060k5 > :first-child { margin-top: 0px; } .framer-dEnQP.framer-1l060k5 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 41\n * @framerIntrinsicWidth 84\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"sCiXEHMJN\":{\"layout\":[\"fixed\",\"fixed\"]},\"hbW1xJWBv\":{\"layout\":[\"fixed\",\"fixed\"]},\"vn7Ihunw7\":{\"layout\":[\"fixed\",\"fixed\"]},\"u1u_i1SAw\":{\"layout\":[\"fixed\",\"fixed\"]},\"g5UKdPekb\":{\"layout\":[\"fixed\",\"fixed\"]},\"yc3ibdwrv\":{\"layout\":[\"fixed\",\"fixed\"]},\"ICWCtRwYH\":{\"layout\":[\"fixed\",\"fixed\"]},\"FVc1HGCHo\":{\"layout\":[\"fixed\",\"fixed\"]},\"NkpFkA0d6\":{\"layout\":[\"fixed\",\"fixed\"]},\"O71t0OR5o\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTFdfRjZIe=withCSS(Component,css,\"framer-dEnQP\");export default FramerTFdfRjZIe;FramerTFdfRjZIe.displayName=\"cp/scribbles\";FramerTFdfRjZIe.defaultProps={height:41,width:84};addPropertyControls(FramerTFdfRjZIe,{variant:{options:[\"t36fWZ8s0\",\"sCiXEHMJN\",\"hbW1xJWBv\",\"vn7Ihunw7\",\"u1u_i1SAw\",\"g5UKdPekb\",\"yc3ibdwrv\",\"ICWCtRwYH\",\"FVc1HGCHo\",\"NkpFkA0d6\",\"O71t0OR5o\"],optionTitles:[\"primary\",\"1\",\"1b\",\"2\",\"2b\",\"3\",\"3b\",\"4\",\"4b\",\"5\",\"5b\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerTFdfRjZIe,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTFdfRjZIe\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"41\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sCiXEHMJN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hbW1xJWBv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vn7Ihunw7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"u1u_i1SAw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"g5UKdPekb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yc3ibdwrv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ICWCtRwYH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FVc1HGCHo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NkpFkA0d6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O71t0OR5o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"84\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TFdfRjZIe.map", "// Generated by Framer (63f9d4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/r2hDffPFbi4lbeja8HkS/vTHjDEIKqVNzYJHlyDrg/ctyWJhsLH.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/3L80TJfeKq4l9JEnQ0Rr/ZvC7n44DYDulNwrEqFyX/KxyDXhYjD.js\";import CpArrow from\"https://framerusercontent.com/modules/irCq6acYtlLhu3M42e06/5Tc74tTUCCVsIoCkSpJC/CDlBFwY51.js\";import ElementsPattern from\"https://framerusercontent.com/modules/bM2HBtj1pUt3NTm4tLAK/a6dSG6q9t8tVhQcyzCYV/QHhR4qlc4.js\";import CpScribbles from\"https://framerusercontent.com/modules/eTuSJgpJPN6FUPaAPwQH/p5ClI4Oa3r6a4aKO0zti/TFdfRjZIe.js\";const CpArrowFonts=getFonts(CpArrow);const CpScribblesFonts=getFonts(CpScribbles);const ElementsPatternFonts=getFonts(ElementsPattern);const cycleOrder=[\"lGDBvasa1\",\"T7KaQgLSV\",\"j1n_gZ1tm\",\"LPkmpzJIv\",\"bbUIjpuLI\",\"ngqcGIqpy\",\"CjoAWzsv6\",\"h9eR_GYN6\",\"ZeP5pZAuE\",\"XoHPo4XwX\",\"sNwdwCXmt\",\"eelUszCEe\",\"bs_RwUrzO\",\"EBUIiuepv\",\"uriOUMTcD\",\"SC7o1Gby3\",\"tALcd1nV1\",\"Uxm31FD2o\",\"g8FLnYod6\",\"up5FEr1BP\",\"PxjM2TuVO\",\"zVQLpUI34\",\"KStkfbILo\",\"ve9YSNl5X\",\"U9gVKTXr5\",\"Y7xY22zV4\",\"qJCSRwaFV\",\"IGHByyeD5\",\"waaXcYJVF\",\"UeYzA6yBZ\",\"MF60gZPHj\",\"lNHTu9WP9\",\"XNZVFira5\",\"fNIUILLUf\"];const serializationHash=\"framer-VtcJy\";const variantClassNames={bbUIjpuLI:\"framer-v-1um8wu1\",bs_RwUrzO:\"framer-v-2vjafz\",CjoAWzsv6:\"framer-v-1fhlwzf\",EBUIiuepv:\"framer-v-11ulg5w\",eelUszCEe:\"framer-v-1t8qcah\",fNIUILLUf:\"framer-v-mw74pa\",g8FLnYod6:\"framer-v-1ywr14l\",h9eR_GYN6:\"framer-v-1pjswsr\",IGHByyeD5:\"framer-v-kebfqj\",j1n_gZ1tm:\"framer-v-13zbnjp\",KStkfbILo:\"framer-v-1smrd5s\",lGDBvasa1:\"framer-v-byg925\",lNHTu9WP9:\"framer-v-3ms2jp\",LPkmpzJIv:\"framer-v-b50ajf\",MF60gZPHj:\"framer-v-1qm3gd4\",ngqcGIqpy:\"framer-v-dgtm1r\",PxjM2TuVO:\"framer-v-opsq4w\",qJCSRwaFV:\"framer-v-1mdfq1s\",SC7o1Gby3:\"framer-v-119p84o\",sNwdwCXmt:\"framer-v-1ey5gpi\",T7KaQgLSV:\"framer-v-7cvrmj\",tALcd1nV1:\"framer-v-1054cex\",U9gVKTXr5:\"framer-v-t87m0z\",UeYzA6yBZ:\"framer-v-1qx8yq8\",up5FEr1BP:\"framer-v-c2yroa\",uriOUMTcD:\"framer-v-w3i8k4\",Uxm31FD2o:\"framer-v-1nebkzx\",ve9YSNl5X:\"framer-v-1qpav74\",waaXcYJVF:\"framer-v-iheee7\",XNZVFira5:\"framer-v-1xfers8\",XoHPo4XwX:\"framer-v-osubtx\",Y7xY22zV4:\"framer-v-kq0an7\",ZeP5pZAuE:\"framer-v-q4kjib\",zVQLpUI34:\"framer-v-1gj6ddj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:50,delay:0,mass:1,stiffness:300,type:\"spring\"};const transition2={duration:0,type:\"tween\"};const transition3={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition4={bounce:.1,delay:0,duration:.8,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"desktop-10\":\"bs_RwUrzO\",\"desktop-2\":\"bbUIjpuLI\",\"desktop-3\":\"ngqcGIqpy\",\"desktop-4\":\"CjoAWzsv6\",\"desktop-5\":\"h9eR_GYN6\",\"desktop-6\":\"ZeP5pZAuE\",\"desktop-7\":\"XoHPo4XwX\",\"desktop-8\":\"sNwdwCXmt\",\"desktop-9\":\"eelUszCEe\",\"desktop-loop\":\"EBUIiuepv\",\"mobile-10\":\"XNZVFira5\",\"mobile-11\":\"fNIUILLUf\",\"mobile-2\":\"U9gVKTXr5\",\"mobile-3\":\"Y7xY22zV4\",\"mobile-4\":\"qJCSRwaFV\",\"mobile-5\":\"IGHByyeD5\",\"mobile-6\":\"waaXcYJVF\",\"mobile-7\":\"UeYzA6yBZ\",\"mobile-8\":\"MF60gZPHj\",\"mobile-9\":\"lNHTu9WP9\",\"tablet-10\":\"KStkfbILo\",\"tablet-2\":\"uriOUMTcD\",\"tablet-3\":\"SC7o1Gby3\",\"tablet-4\":\"tALcd1nV1\",\"tablet-5\":\"Uxm31FD2o\",\"tablet-6\":\"g8FLnYod6\",\"tablet-7\":\"up5FEr1BP\",\"tablet-8\":\"PxjM2TuVO\",\"tablet-9\":\"zVQLpUI34\",\"tablet-loop\":\"ve9YSNl5X\",desktop:\"j1n_gZ1tm\",mobile:\"LPkmpzJIv\",primary:\"lGDBvasa1\",tablet:\"T7KaQgLSV\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"lGDBvasa1\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lGDBvasa1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1m39nk6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"uriOUMTcD\"),500);});const onAppeare1xr5f=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"bbUIjpuLI\"),500);});const onAppear1xx2y7n=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"U9gVKTXr5\"),500);});const onAppeardwv744=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ngqcGIqpy\"),200);});const onAppear1e9n3rp=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"CjoAWzsv6\"),500);});const onAppearcic17i=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"h9eR_GYN6\"),200);});const onAppear18q375a=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ZeP5pZAuE\"),500);});const onAppear1dqndh6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"XoHPo4XwX\"),200);});const onAppearrllauu=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"sNwdwCXmt\"),500);});const onAppear10o0gby=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"eelUszCEe\"),200);});const onAppear1uefjn5=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"bs_RwUrzO\"),500);});const onAppear1sfrymd=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"EBUIiuepv\"),200);});const onAppearmd6x4u=activeVariantCallback(async(...args)=>{setVariant(\"j1n_gZ1tm\");});const onAppeard5sujw=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"SC7o1Gby3\"),200);});const onAppearvtg275=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"tALcd1nV1\"),500);});const onAppear1meju2o=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Uxm31FD2o\"),200);});const onAppearaf7cg2=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"g8FLnYod6\"),500);});const onAppear1m5mtz6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"up5FEr1BP\"),200);});const onAppear78mght=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"PxjM2TuVO\"),500);});const onAppear14qr5jn=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"zVQLpUI34\"),200);});const onAppear13faun=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"KStkfbILo\"),500);});const onAppear177alve=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ve9YSNl5X\"),200);});const onAppear1fjry3h=activeVariantCallback(async(...args)=>{setVariant(\"T7KaQgLSV\");});const onAppear6ckcud=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Y7xY22zV4\"),200);});const onAppear1ny7ajf=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"qJCSRwaFV\"),500);});const onAppear3uz1cq=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"IGHByyeD5\"),200);});const onAppear1bl68hk=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"waaXcYJVF\"),500);});const onAppear1qfmu94=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"UeYzA6yBZ\"),200);});const onAppearfrimiq=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"MF60gZPHj\"),500);});const onAppearg6f7m8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"lNHTu9WP9\"),200);});const onAppear1xx2j1q=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"XNZVFira5\"),500);});const onAppear1jz200k=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fNIUILLUf\"),200);});const onAppear1pwxemz=activeVariantCallback(async(...args)=>{setVariant(\"LPkmpzJIv\");});useOnVariantChange(baseVariant,{bbUIjpuLI:onAppeardwv744,bs_RwUrzO:onAppear1sfrymd,CjoAWzsv6:onAppearcic17i,EBUIiuepv:onAppearmd6x4u,eelUszCEe:onAppear1uefjn5,fNIUILLUf:onAppear1pwxemz,g8FLnYod6:onAppear1m5mtz6,h9eR_GYN6:onAppear18q375a,IGHByyeD5:onAppear1bl68hk,j1n_gZ1tm:onAppeare1xr5f,KStkfbILo:onAppear177alve,lNHTu9WP9:onAppear1xx2j1q,LPkmpzJIv:onAppear1xx2y7n,MF60gZPHj:onAppearg6f7m8,ngqcGIqpy:onAppear1e9n3rp,PxjM2TuVO:onAppear14qr5jn,qJCSRwaFV:onAppear3uz1cq,SC7o1Gby3:onAppearvtg275,sNwdwCXmt:onAppear10o0gby,T7KaQgLSV:onAppear1m39nk6,tALcd1nV1:onAppear1meju2o,U9gVKTXr5:onAppear6ckcud,UeYzA6yBZ:onAppearfrimiq,up5FEr1BP:onAppear78mght,uriOUMTcD:onAppeard5sujw,Uxm31FD2o:onAppearaf7cg2,ve9YSNl5X:onAppear1fjry3h,waaXcYJVF:onAppear1qfmu94,XNZVFira5:onAppear1jz200k,XoHPo4XwX:onAppearrllauu,Y7xY22zV4:onAppear1ny7ajf,ZeP5pZAuE:onAppear1dqndh6,zVQLpUI34:onAppear13faun});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({j1n_gZ1tm:{value:transition2},T7KaQgLSV:{value:transition2},ve9YSNl5X:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-byg925\",className,classNames),\"data-framer-name\":\"primary\",layoutDependency:layoutDependency,layoutId:\"lGDBvasa1\",ref:ref??ref1,style:{backgroundColor:\"var(--token-b1247827-f09a-4078-b38a-9f75119dce01, rgb(221, 212, 246))\",...style},...addPropertyOverrides({bbUIjpuLI:{\"data-framer-name\":\"desktop-2\",\"data-highlight\":true},bs_RwUrzO:{\"data-framer-name\":\"desktop-10\",\"data-highlight\":true},CjoAWzsv6:{\"data-framer-name\":\"desktop-4\",\"data-highlight\":true},EBUIiuepv:{\"data-framer-name\":\"desktop-loop\",\"data-highlight\":true},eelUszCEe:{\"data-framer-name\":\"desktop-9\",\"data-highlight\":true},fNIUILLUf:{\"data-framer-name\":\"mobile-11\",\"data-highlight\":true},g8FLnYod6:{\"data-framer-name\":\"tablet-6\",\"data-highlight\":true},h9eR_GYN6:{\"data-framer-name\":\"desktop-5\",\"data-highlight\":true},IGHByyeD5:{\"data-framer-name\":\"mobile-5\",\"data-highlight\":true},j1n_gZ1tm:{\"data-framer-name\":\"desktop\",\"data-highlight\":true},KStkfbILo:{\"data-framer-name\":\"tablet-10\",\"data-highlight\":true},lNHTu9WP9:{\"data-framer-name\":\"mobile-9\",\"data-highlight\":true},LPkmpzJIv:{\"data-framer-name\":\"mobile\",\"data-highlight\":true},MF60gZPHj:{\"data-framer-name\":\"mobile-8\",\"data-highlight\":true},ngqcGIqpy:{\"data-framer-name\":\"desktop-3\",\"data-highlight\":true},PxjM2TuVO:{\"data-framer-name\":\"tablet-8\",\"data-highlight\":true},qJCSRwaFV:{\"data-framer-name\":\"mobile-4\",\"data-highlight\":true},SC7o1Gby3:{\"data-framer-name\":\"tablet-3\",\"data-highlight\":true},sNwdwCXmt:{\"data-framer-name\":\"desktop-8\",\"data-highlight\":true},T7KaQgLSV:{\"data-framer-name\":\"tablet\",\"data-highlight\":true},tALcd1nV1:{\"data-framer-name\":\"tablet-4\",\"data-highlight\":true},U9gVKTXr5:{\"data-framer-name\":\"mobile-2\",\"data-highlight\":true},UeYzA6yBZ:{\"data-framer-name\":\"mobile-7\",\"data-highlight\":true},up5FEr1BP:{\"data-framer-name\":\"tablet-7\",\"data-highlight\":true},uriOUMTcD:{\"data-framer-name\":\"tablet-2\",\"data-highlight\":true},Uxm31FD2o:{\"data-framer-name\":\"tablet-5\",\"data-highlight\":true},ve9YSNl5X:{\"data-framer-name\":\"tablet-loop\",\"data-highlight\":true},waaXcYJVF:{\"data-framer-name\":\"mobile-6\",\"data-highlight\":true},XNZVFira5:{\"data-framer-name\":\"mobile-10\",\"data-highlight\":true},XoHPo4XwX:{\"data-framer-name\":\"desktop-7\",\"data-highlight\":true},Y7xY22zV4:{\"data-framer-name\":\"mobile-3\",\"data-highlight\":true},ZeP5pZAuE:{\"data-framer-name\":\"desktop-6\",\"data-highlight\":true},zVQLpUI34:{\"data-framer-name\":\"tablet-9\",\"data-highlight\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rc0j38\",\"data-framer-name\":\"container\",layoutDependency:layoutDependency,layoutId:\"UWaGICKDI\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hcrevt\",\"data-framer-name\":\"text container\",layoutDependency:layoutDependency,layoutId:\"sT2grwMg6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-mu2mpl\",\"data-styles-preset\":\"KxyDXhYjD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)))\"},children:\"The Art & Science of Creative Performance\"})}),className:\"framer-1a6em9k\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tavYzFIS5\",style:{\"--extracted-a0htzi\":\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fNIUILLUf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)))\"},children:\"The Art & Science of Creative Performance\"})}),fonts:[\"GF;Sora-700\"]},IGHByyeD5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)))\"},children:\"The Art & Science of Creative Performance\"})}),fonts:[\"GF;Sora-700\"]},lNHTu9WP9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)))\"},children:\"The Art & Science of Creative Performance\"})}),fonts:[\"GF;Sora-700\"]},LPkmpzJIv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)))\"},children:\"The Art & Science of Creative Performance\"})}),fonts:[\"GF;Sora-700\"]},MF60gZPHj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)))\"},children:\"The Art & Science of Creative Performance\"})}),fonts:[\"GF;Sora-700\"]},qJCSRwaFV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)))\"},children:\"The Art & Science of Creative Performance\"})}),fonts:[\"GF;Sora-700\"]},U9gVKTXr5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)))\"},children:\"The Art & Science of Creative Performance\"})}),fonts:[\"GF;Sora-700\"]},UeYzA6yBZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)))\"},children:\"The Art & Science of Creative Performance\"})}),fonts:[\"GF;Sora-700\"]},waaXcYJVF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)))\"},children:\"The Art & Science of Creative Performance\"})}),fonts:[\"GF;Sora-700\"]},XNZVFira5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)))\"},children:\"The Art & Science of Creative Performance\"})}),fonts:[\"GF;Sora-700\"]},Y7xY22zV4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)))\"},children:\"The Art & Science of Creative Performance\"})}),fonts:[\"GF;Sora-700\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-kn9nmc\",\"data-styles-preset\":\"ctyWJhsLH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42)))\"},children:\"We have developed industry-leading best practices to ensure creative and paid social optimization work in synergy to scale ad spend profitably.\"})}),className:\"framer-1w43e2o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xA_9_1DsE\",style:{\"--extracted-r6o4lv\":\"var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fNIUILLUf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42)))\"},children:\"We have developed industry-leading best practices to ensure creative and paid social optimization work in synergy to scale ad spend profitably.\"})}),fonts:[\"GF;Sora-regular\"]},IGHByyeD5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42)))\"},children:\"We have developed industry-leading best practices to ensure creative and paid social optimization work in synergy to scale ad spend profitably.\"})}),fonts:[\"GF;Sora-regular\"]},lNHTu9WP9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42)))\"},children:\"We have developed industry-leading best practices to ensure creative and paid social optimization work in synergy to scale ad spend profitably.\"})}),fonts:[\"GF;Sora-regular\"]},LPkmpzJIv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42)))\"},children:\"We have developed industry-leading best practices to ensure creative and paid social optimization work in synergy to scale ad spend profitably.\"})}),fonts:[\"GF;Sora-regular\"]},MF60gZPHj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42)))\"},children:\"We have developed industry-leading best practices to ensure creative and paid social optimization work in synergy to scale ad spend profitably.\"})}),fonts:[\"GF;Sora-regular\"]},qJCSRwaFV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42)))\"},children:\"We have developed industry-leading best practices to ensure creative and paid social optimization work in synergy to scale ad spend profitably.\"})}),fonts:[\"GF;Sora-regular\"]},U9gVKTXr5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42)))\"},children:\"We have developed industry-leading best practices to ensure creative and paid social optimization work in synergy to scale ad spend profitably.\"})}),fonts:[\"GF;Sora-regular\"]},UeYzA6yBZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42)))\"},children:\"We have developed industry-leading best practices to ensure creative and paid social optimization work in synergy to scale ad spend profitably.\"})}),fonts:[\"GF;Sora-regular\"]},waaXcYJVF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42)))\"},children:\"We have developed industry-leading best practices to ensure creative and paid social optimization work in synergy to scale ad spend profitably.\"})}),fonts:[\"GF;Sora-regular\"]},XNZVFira5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42)))\"},children:\"We have developed industry-leading best practices to ensure creative and paid social optimization work in synergy to scale ad spend profitably.\"})}),fonts:[\"GF;Sora-regular\"]},Y7xY22zV4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42)))\"},children:\"We have developed industry-leading best practices to ensure creative and paid social optimization work in synergy to scale ad spend profitably.\"})}),fonts:[\"GF;Sora-regular\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nicopc\",\"data-framer-name\":\"Graphic\",layoutDependency:layoutDependency,layoutId:\"pN9YmhK5Q\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1jxpqxg\",\"data-framer-name\":\"line\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"qm9xVk2HZ\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1102 302\"><path d=\"M 1 151 C 1 68.157 68.157 1 151 1 L 951 1 C 1033.843 1 1101 68.157 1101 151 L 1101 151 C 1101 233.843 1033.843 301 951 301 L 151 301 C 68.157 301 1 233.843 1 151 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10131723328,withExternalLayout:true,...addPropertyOverrides({fNIUILLUf:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 378 304\"><path d=\"M 23.503 70.87 C 23.503 33.281 53.975 2.81 91.563 2.81 L 285.443 2.81 C 323.032 2.81 353.503 33.281 353.503 70.87 L 353.503 234.75 C 353.503 272.338 323.032 302.81 285.443 302.81 L 91.563 302.81 C 53.975 302.81 23.503 272.338 23.503 234.75 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10491719512},g8FLnYod6:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 749 304\"><path d=\"M 6.503 151.31 C 6.503 69.296 72.989 2.81 155.003 2.81 L 595.003 2.81 C 677.017 2.81 743.503 69.296 743.503 151.31 L 743.503 151.31 C 743.503 233.324 677.017 299.81 595.003 299.81 L 155.003 299.81 C 72.989 299.81 6.503 233.324 6.503 151.31 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10386963651},IGHByyeD5:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 378 304\"><path d=\"M 23.503 70.87 C 23.503 33.281 53.975 2.81 91.563 2.81 L 285.443 2.81 C 323.032 2.81 353.503 33.281 353.503 70.87 L 353.503 234.75 C 353.503 272.338 323.032 302.81 285.443 302.81 L 91.563 302.81 C 53.975 302.81 23.503 272.338 23.503 234.75 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10491719512},KStkfbILo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 749 304\"><path d=\"M 6.503 151.31 C 6.503 69.296 72.989 2.81 155.003 2.81 L 595.003 2.81 C 677.017 2.81 743.503 69.296 743.503 151.31 L 743.503 151.31 C 743.503 233.324 677.017 299.81 595.003 299.81 L 155.003 299.81 C 72.989 299.81 6.503 233.324 6.503 151.31 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10386963651},lNHTu9WP9:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 378 304\"><path d=\"M 23.503 70.87 C 23.503 33.281 53.975 2.81 91.563 2.81 L 285.443 2.81 C 323.032 2.81 353.503 33.281 353.503 70.87 L 353.503 234.75 C 353.503 272.338 323.032 302.81 285.443 302.81 L 91.563 302.81 C 53.975 302.81 23.503 272.338 23.503 234.75 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10491719512},LPkmpzJIv:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 378 304\"><path d=\"M 23.503 70.87 C 23.503 33.281 53.975 2.81 91.563 2.81 L 285.443 2.81 C 323.032 2.81 353.503 33.281 353.503 70.87 L 353.503 234.75 C 353.503 272.338 323.032 302.81 285.443 302.81 L 91.563 302.81 C 53.975 302.81 23.503 272.338 23.503 234.75 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10491719512},MF60gZPHj:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 378 304\"><path d=\"M 23.503 70.87 C 23.503 33.281 53.975 2.81 91.563 2.81 L 285.443 2.81 C 323.032 2.81 353.503 33.281 353.503 70.87 L 353.503 234.75 C 353.503 272.338 323.032 302.81 285.443 302.81 L 91.563 302.81 C 53.975 302.81 23.503 272.338 23.503 234.75 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10491719512},PxjM2TuVO:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 749 304\"><path d=\"M 6.503 151.31 C 6.503 69.296 72.989 2.81 155.003 2.81 L 595.003 2.81 C 677.017 2.81 743.503 69.296 743.503 151.31 L 743.503 151.31 C 743.503 233.324 677.017 299.81 595.003 299.81 L 155.003 299.81 C 72.989 299.81 6.503 233.324 6.503 151.31 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10386963651},qJCSRwaFV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 378 304\"><path d=\"M 23.503 70.87 C 23.503 33.281 53.975 2.81 91.563 2.81 L 285.443 2.81 C 323.032 2.81 353.503 33.281 353.503 70.87 L 353.503 234.75 C 353.503 272.338 323.032 302.81 285.443 302.81 L 91.563 302.81 C 53.975 302.81 23.503 272.338 23.503 234.75 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10491719512},SC7o1Gby3:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 749 304\"><path d=\"M 6.503 151.31 C 6.503 69.296 72.989 2.81 155.003 2.81 L 595.003 2.81 C 677.017 2.81 743.503 69.296 743.503 151.31 L 743.503 151.31 C 743.503 233.324 677.017 299.81 595.003 299.81 L 155.003 299.81 C 72.989 299.81 6.503 233.324 6.503 151.31 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10386963651},T7KaQgLSV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 749 304\"><path d=\"M 6.503 151.31 C 6.503 69.296 72.989 2.81 155.003 2.81 L 595.003 2.81 C 677.017 2.81 743.503 69.296 743.503 151.31 L 743.503 151.31 C 743.503 233.324 677.017 299.81 595.003 299.81 L 155.003 299.81 C 72.989 299.81 6.503 233.324 6.503 151.31 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10386963651},tALcd1nV1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 749 304\"><path d=\"M 6.503 151.31 C 6.503 69.296 72.989 2.81 155.003 2.81 L 595.003 2.81 C 677.017 2.81 743.503 69.296 743.503 151.31 L 743.503 151.31 C 743.503 233.324 677.017 299.81 595.003 299.81 L 155.003 299.81 C 72.989 299.81 6.503 233.324 6.503 151.31 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10386963651},U9gVKTXr5:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 378 304\"><path d=\"M 23.503 70.87 C 23.503 33.281 53.975 2.81 91.563 2.81 L 285.443 2.81 C 323.032 2.81 353.503 33.281 353.503 70.87 L 353.503 234.75 C 353.503 272.338 323.032 302.81 285.443 302.81 L 91.563 302.81 C 53.975 302.81 23.503 272.338 23.503 234.75 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10491719512},UeYzA6yBZ:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 378 304\"><path d=\"M 23.503 70.87 C 23.503 33.281 53.975 2.81 91.563 2.81 L 285.443 2.81 C 323.032 2.81 353.503 33.281 353.503 70.87 L 353.503 234.75 C 353.503 272.338 323.032 302.81 285.443 302.81 L 91.563 302.81 C 53.975 302.81 23.503 272.338 23.503 234.75 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10491719512},up5FEr1BP:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 749 304\"><path d=\"M 6.503 151.31 C 6.503 69.296 72.989 2.81 155.003 2.81 L 595.003 2.81 C 677.017 2.81 743.503 69.296 743.503 151.31 L 743.503 151.31 C 743.503 233.324 677.017 299.81 595.003 299.81 L 155.003 299.81 C 72.989 299.81 6.503 233.324 6.503 151.31 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10386963651},uriOUMTcD:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 749 304\"><path d=\"M 6.503 151.31 C 6.503 69.296 72.989 2.81 155.003 2.81 L 595.003 2.81 C 677.017 2.81 743.503 69.296 743.503 151.31 L 743.503 151.31 C 743.503 233.324 677.017 299.81 595.003 299.81 L 155.003 299.81 C 72.989 299.81 6.503 233.324 6.503 151.31 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10386963651},Uxm31FD2o:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 749 304\"><path d=\"M 6.503 151.31 C 6.503 69.296 72.989 2.81 155.003 2.81 L 595.003 2.81 C 677.017 2.81 743.503 69.296 743.503 151.31 L 743.503 151.31 C 743.503 233.324 677.017 299.81 595.003 299.81 L 155.003 299.81 C 72.989 299.81 6.503 233.324 6.503 151.31 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10386963651},ve9YSNl5X:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 749 304\"><path d=\"M 6.503 151.31 C 6.503 69.296 72.989 2.81 155.003 2.81 L 595.003 2.81 C 677.017 2.81 743.503 69.296 743.503 151.31 L 743.503 151.31 C 743.503 233.324 677.017 299.81 595.003 299.81 L 155.003 299.81 C 72.989 299.81 6.503 233.324 6.503 151.31 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10386963651},waaXcYJVF:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 378 304\"><path d=\"M 23.503 70.87 C 23.503 33.281 53.975 2.81 91.563 2.81 L 285.443 2.81 C 323.032 2.81 353.503 33.281 353.503 70.87 L 353.503 234.75 C 353.503 272.338 323.032 302.81 285.443 302.81 L 91.563 302.81 C 53.975 302.81 23.503 272.338 23.503 234.75 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10491719512},XNZVFira5:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 378 304\"><path d=\"M 23.503 70.87 C 23.503 33.281 53.975 2.81 91.563 2.81 L 285.443 2.81 C 323.032 2.81 353.503 33.281 353.503 70.87 L 353.503 234.75 C 353.503 272.338 323.032 302.81 285.443 302.81 L 91.563 302.81 C 53.975 302.81 23.503 272.338 23.503 234.75 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10491719512},Y7xY22zV4:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 378 304\"><path d=\"M 23.503 70.87 C 23.503 33.281 53.975 2.81 91.563 2.81 L 285.443 2.81 C 323.032 2.81 353.503 33.281 353.503 70.87 L 353.503 234.75 C 353.503 272.338 323.032 302.81 285.443 302.81 L 91.563 302.81 C 53.975 302.81 23.503 272.338 23.503 234.75 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10491719512},zVQLpUI34:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 749 304\"><path d=\"M 6.503 151.31 C 6.503 69.296 72.989 2.81 155.003 2.81 L 595.003 2.81 C 677.017 2.81 743.503 69.296 743.503 151.31 L 743.503 151.31 C 743.503 233.324 677.017 299.81 595.003 299.81 L 155.003 299.81 C 72.989 299.81 6.503 233.324 6.503 151.31 Z\" fill=\"transparent\" stroke-width=\"1.44\" stroke=\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216)) /* {&quot;name&quot;:&quot;Primary / Purple&quot;} */\"></path></svg>',svgContentId:10386963651}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7S2FsYW0tYm9sZA==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"11px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Analyse results\"})}),className:\"framer-1rrkp5q\",\"data-framer-name\":\"Analyse results\",fonts:[\"FS;Kalam-bold\"],layoutDependency:layoutDependency,layoutId:\"SiZSAfhY1\",style:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\",\"--framer-paragraph-spacing\":\"0px\",rotate:14},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7S2FsYW0tYm9sZA==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"11px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Analyze results\"})}),className:\"framer-1xksquy\",\"data-framer-name\":\"Analyze results\",fonts:[\"FS;Kalam-bold\"],layoutDependency:layoutDependency,layoutId:\"lOT1t9VtA\",style:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\",\"--framer-paragraph-spacing\":\"0px\",rotate:14},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7S2FsYW0tYm9sZA==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"11px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Run tests\"})}),className:\"framer-1qyfldi\",\"data-framer-name\":\"Run tests\",fonts:[\"FS;Kalam-bold\"],layoutDependency:layoutDependency,layoutId:\"qNRDW0wEI\",style:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\",\"--framer-paragraph-spacing\":\"0px\",rotate:-17},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7S2FsYW0tYm9sZA==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"11px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Run tests\"})}),className:\"framer-c9ke7x\",\"data-framer-name\":\"Run tests\",fonts:[\"FS;Kalam-bold\"],layoutDependency:layoutDependency,layoutId:\"rtYrJOkeb\",style:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\",\"--framer-paragraph-spacing\":\"0px\",rotate:-17},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7S2FsYW0tYm9sZA==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"11px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Create assets\"})}),className:\"framer-1lav55f\",\"data-framer-name\":\"Create assets\",fonts:[\"FS;Kalam-bold\"],layoutDependency:layoutDependency,layoutId:\"a5Tdcpd4v\",style:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\",\"--framer-paragraph-spacing\":\"0px\",rotate:-5},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7S2FsYW0tYm9sZA==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"11px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Develop big idea\"})}),className:\"framer-1mhvot9\",\"data-framer-name\":\"Develop big idea\",fonts:[\"FS;Kalam-bold\"],layoutDependency:layoutDependency,layoutId:\"XdF6hE7Ae\",style:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\",\"--framer-paragraph-spacing\":\"0px\",rotate:-25},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(42, 42, 42, 1))\"},children:\"Delivery of Ads and Testing Variations\"})})}),className:\"framer-vpkvm\",\"data-framer-name\":\"Delivery of Ads and Testing Variations\",fonts:[\"GF;Sora-600\"],layoutDependency:layoutDependency,layoutId:\"K4HSEEO2C\",style:{\"--extracted-1w3ko1f\":\"rgba(42, 42, 42, 1)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,variants:{fNIUILLUf:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},g8FLnYod6:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},IGHByyeD5:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},KStkfbILo:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},lNHTu9WP9:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},LPkmpzJIv:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},MF60gZPHj:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},PxjM2TuVO:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},qJCSRwaFV:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},SC7o1Gby3:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},T7KaQgLSV:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},tALcd1nV1:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},U9gVKTXr5:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},UeYzA6yBZ:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},up5FEr1BP:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},uriOUMTcD:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},Uxm31FD2o:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},ve9YSNl5X:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},waaXcYJVF:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},XNZVFira5:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},Y7xY22zV4:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},zVQLpUI34:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fNIUILLUf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},g8FLnYod6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},IGHByyeD5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},KStkfbILo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},lNHTu9WP9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},LPkmpzJIv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},MF60gZPHj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},PxjM2TuVO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},qJCSRwaFV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},SC7o1Gby3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},T7KaQgLSV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},tALcd1nV1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},U9gVKTXr5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},UeYzA6yBZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},up5FEr1BP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},uriOUMTcD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},Uxm31FD2o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},ve9YSNl5X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},waaXcYJVF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},XNZVFira5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},Y7xY22zV4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})},zVQLpUI34:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Delivery of Ads and Testing Variations\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pshzl8\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"RkYpklBR9\",style:{rotate:0,scale:1},transformTemplate:transformTemplate1,variants:{EBUIiuepv:{rotate:4,scale:1.1},fNIUILLUf:{rotate:4,scale:1.05},j1n_gZ1tm:{rotate:4,scale:1.1},LPkmpzJIv:{rotate:4,scale:1.05},T7KaQgLSV:{rotate:4,scale:1.1},ve9YSNl5X:{rotate:4,scale:1.1}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qi63tf\",\"data-framer-name\":\"Phone-cm\",fill:\"black\",intrinsicHeight:85,intrinsicWidth:85,layoutDependency:layoutDependency,layoutId:\"mtlwPThGi\",svg:'<svg width=\"85\" height=\"85\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".455\" y=\".436\" width=\"57.693\" height=\"83.607\" rx=\"5.544\" fill=\"#DDD4F6\" stroke=\"#000\" stroke-width=\".188\"/><rect x=\"1.936\" y=\"2.268\" width=\"54.733\" height=\"80.085\" rx=\"3.357\" fill=\"#DAD3F2\"/><path d=\"M1.936 5.767a3.499 3.499 0 0 1 3.499-3.499h47.734a3.5 3.5 0 0 1 3.5 3.5v5.74H1.936v-5.74ZM56.67 78.856a3.499 3.499 0 0 1-3.5 3.499H5.437a3.499 3.499 0 0 1-3.5-3.5v-5.74H56.67v5.74Z\" fill=\"#6345CE\"/><rect x=\"23.861\" y=\"5.976\" width=\"15.888\" height=\"1.825\" rx=\".913\" fill=\"#242423\"/><rect x=\"21.474\" y=\"5.976\" width=\"1.699\" height=\"1.825\" rx=\".85\" fill=\"#242423\"/><rect x=\"2.03\" y=\"2.362\" width=\"54.545\" height=\"80.153\" rx=\"3.665\" stroke=\"#000\" stroke-width=\".188\"/><path d=\"M2.12 11.508h54.368M2.12 73.114h54.368\" stroke=\"#242423\" stroke-width=\".188\" stroke-linecap=\"square\"/><path d=\"M84.174 11.107a8.839 8.839 0 1 1-17.678 0 8.839 8.839 0 0 1 17.678 0Z\" fill=\"#6345CE\"/><circle cx=\"75.335\" cy=\"40.265\" r=\"8.839\" fill=\"#6345CE\"/><circle cx=\"75.335\" cy=\"69.422\" r=\"8.839\" fill=\"#6345CE\"/><path d=\"m71.635 14.245 2.316-7.016h2.546l2.403 7.016h-1.634l-1.941-5.93.5.202h-1.24l.519-.202-1.893 5.93h-1.576Zm1.758-1.74.48-1.307h2.75l.49 1.307h-3.72Zm.868 31.13v-1.23h1.644c.294 0 .515-.077.663-.23.147-.154.22-.372.22-.654 0-.282-.073-.496-.22-.644-.148-.154-.369-.23-.663-.23H74.26v-.952h1.567c.487 0 .92.061 1.297.183.378.115.676.304.894.567.218.263.327.618.327 1.066v.135c0 .416-.097.775-.289 1.076-.192.295-.474.523-.845.683-.372.153-.833.23-1.384.23H74.26Zm-1.345 0v-7.12h1.538v7.12h-1.538Zm1.345-3.238v-.942h1.384c.301 0 .52-.077.654-.23.134-.154.201-.36.201-.616 0-.269-.067-.48-.201-.634-.135-.154-.353-.23-.654-.23h-1.384v-1.23h1.288c.807 0 1.426.17 1.855.509.435.34.653.823.653 1.45v.145c0 .436-.112.785-.336 1.047-.218.263-.516.452-.894.567a4.552 4.552 0 0 1-1.278.164h-1.288Zm1.876 32.53c-.634 0-1.179-.108-1.634-.326a3.245 3.245 0 0 1-1.114-.875 3.904 3.904 0 0 1-.644-1.172 4.047 4.047 0 0 1-.202-1.23v-.212c0-.435.07-.864.211-1.287.141-.43.356-.817.644-1.163a3.192 3.192 0 0 1 1.105-.827c.449-.211.977-.317 1.586-.317.634 0 1.195.119 1.682.356a2.92 2.92 0 0 1 1.162.99c.295.416.468.906.52 1.47h-1.586a1.499 1.499 0 0 0-.308-.72 1.578 1.578 0 0 0-.624-.462 2.097 2.097 0 0 0-.846-.163c-.314 0-.593.054-.836.163a1.693 1.693 0 0 0-.615.461c-.16.199-.285.436-.375.711-.083.27-.125.57-.125.904 0 .326.042.628.125.903.09.27.218.506.384.711.173.199.385.353.635.461.25.103.535.154.855.154.487 0 .897-.118 1.23-.355.34-.237.545-.564.615-.98h1.576a3.12 3.12 0 0 1-.519 1.412c-.282.423-.67.762-1.163 1.019-.487.25-1.066.374-1.739.374Z\" fill=\"#FAF6EC\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{value:transition4,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vmjpl9\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"xIyG75stB\",style:{rotate:0,scale:1},transformTemplate:transformTemplate2,variants:{ngqcGIqpy:{rotate:4,scale:1.1},SC7o1Gby3:{rotate:4,scale:1.1},Y7xY22zV4:{rotate:4,scale:1.05}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-uhveju\",\"data-framer-name\":\"Group 375206\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:94,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"SbfWQ9Xo2\",svg:'<svg width=\"80\" height=\"94\" viewBox=\"0 0 80 94\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"1.112\" y=\"43.717\" width=\"16.1808\" height=\"41.0797\" fill=\"#DAD3F2\" stroke=\"black\" stroke-width=\"0.329465\"/>\\n<rect x=\"21.8268\" y=\"51.0886\" width=\"16.1808\" height=\"33.7086\" fill=\"#DAD3F2\" stroke=\"black\" stroke-width=\"0.329465\"/>\\n<rect x=\"42.5436\" y=\"35.7057\" width=\"16.1808\" height=\"49.0914\" fill=\"#DAD3F2\" stroke=\"black\" stroke-width=\"0.329465\"/>\\n<rect x=\"63.2604\" y=\"17.8332\" width=\"16.1808\" height=\"66.9635\" fill=\"#DAD3F2\" stroke=\"black\" stroke-width=\"0.329465\"/>\\n<rect x=\"1.09738\" y=\"83.0632\" width=\"78.3583\" height=\"10.3708\" fill=\"#6345CE\" stroke=\"black\" stroke-width=\"0.300238\"/>\\n<path d=\"M9.12695 35.5405L29.7582 40.7808L71.0203 2.8125\" stroke=\"#231F20\" stroke-width=\"0.300238\"/>\\n<circle cx=\"28.5877\" cy=\"40.7811\" r=\"3.17757\" fill=\"#6345CE\"/>\\n<circle cx=\"49.6385\" cy=\"21.7967\" r=\"3.17757\" fill=\"#6345CE\"/>\\n<circle cx=\"71.0213\" cy=\"3.8011\" r=\"3.17757\" fill=\"#6345CE\"/>\\n<circle cx=\"9.20296\" cy=\"35.5404\" r=\"3.17757\" fill=\"#6345CE\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(42, 42, 42, 1))\"},children:\"Performance Analysis\"})})}),className:\"framer-17am3t6\",\"data-framer-name\":\"Performance Analysis\",fonts:[\"GF;Sora-600\"],layoutDependency:layoutDependency,layoutId:\"X7PDu0W7W\",style:{\"--extracted-1w3ko1f\":\"rgba(42, 42, 42, 1)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate2,variants:{fNIUILLUf:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},g8FLnYod6:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},IGHByyeD5:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},KStkfbILo:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},lNHTu9WP9:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},LPkmpzJIv:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},MF60gZPHj:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},PxjM2TuVO:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},qJCSRwaFV:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},SC7o1Gby3:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},T7KaQgLSV:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},tALcd1nV1:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},U9gVKTXr5:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},UeYzA6yBZ:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},up5FEr1BP:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},uriOUMTcD:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},Uxm31FD2o:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},ve9YSNl5X:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},waaXcYJVF:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},XNZVFira5:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},Y7xY22zV4:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},zVQLpUI34:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fNIUILLUf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},g8FLnYod6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},IGHByyeD5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},KStkfbILo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},lNHTu9WP9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},LPkmpzJIv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},MF60gZPHj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},PxjM2TuVO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},qJCSRwaFV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},SC7o1Gby3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},T7KaQgLSV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},tALcd1nV1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},U9gVKTXr5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},UeYzA6yBZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},up5FEr1BP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},uriOUMTcD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},Uxm31FD2o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},ve9YSNl5X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},waaXcYJVF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},XNZVFira5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},Y7xY22zV4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined},zVQLpUI34:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})}),transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Transition,{value:transition4,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rajt8n\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"tP1cjrW9A\",style:{rotate:0,scale:1},variants:{h9eR_GYN6:{rotate:4,scale:1.1},IGHByyeD5:{rotate:4,scale:1.05},Uxm31FD2o:{rotate:4,scale:1.1}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1r0ou8u\",\"data-framer-name\":\"Group 375204\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:83,intrinsicWidth:108,layoutDependency:layoutDependency,layoutId:\"vrPXaw3AR\",svg:'<svg width=\"108\" height=\"83\" viewBox=\"0 0 108 83\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.285399\" y=\"1.1604\" width=\"107.5\" height=\"6.92029\" fill=\"#6345CE\" stroke=\"black\" stroke-width=\"0.371579\"/>\\n<path d=\"M12.4199 66.7476C17.1535 58.9747 29.0334 43.2433 38.6844 42.5007C50.7483 41.5724 58.481 55.8006 72.0906 53.9447C82.9782 52.46 100.547 31.262 107.97 20.8486\" stroke=\"#6345CE\" stroke-width=\"1.85789\"/>\\n<rect x=\"0.303485\" y=\"6.53444\" width=\"107.464\" height=\"73.888\" fill=\"#DAD3F2\" stroke=\"black\" stroke-width=\"0.40775\"/>\\n<path d=\"M80.7832 62.5918H100.99\" stroke=\"#6345CE\" stroke-width=\"0.928946\"/>\\n<path d=\"M80.7832 65.7759H100.99\" stroke=\"#6345CE\" stroke-width=\"0.928946\"/>\\n<path d=\"M80.7832 69.042H90.8873\" stroke=\"#6345CE\" stroke-width=\"0.928946\"/>\\n<path d=\"M5.75977 13.1343V74.7931H102.858\" stroke=\"#6345CE\" stroke-width=\"0.743157\"/>\\n<path d=\"M22.1379 58.7997L56.5956 38.9256L86.818 47.0378\" stroke=\"black\" stroke-width=\"0.474298\"/>\\n<path d=\"M27.1604 28.1934L47.1305 62.8175L78.0483 31.8764\" stroke=\"black\" stroke-width=\"0.474298\"/>\\n<circle cx=\"25.4729\" cy=\"25.0392\" r=\"5.39607\" transform=\"rotate(15.025 25.4729 25.0392)\" fill=\"#6345CE\"/>\\n<circle cx=\"80.6936\" cy=\"29.4337\" r=\"5.39607\" transform=\"rotate(15.025 80.6936 29.4337)\" fill=\"#6345CE\"/>\\n<circle cx=\"46.2951\" cy=\"62.5924\" r=\"5.39607\" transform=\"rotate(15.025 46.2951 62.5924)\" fill=\"#6345CE\"/>\\n<circle cx=\"19.7404\" cy=\"59.6661\" r=\"5.39607\" transform=\"rotate(15.025 19.7404 59.6661)\" fill=\"#6345CE\"/>\\n<circle cx=\"88.2346\" cy=\"47.2887\" r=\"5.39607\" transform=\"rotate(15.025 88.2346 47.2887)\" fill=\"#6345CE\"/>\\n<circle cx=\"25.4736\" cy=\"25.0394\" r=\"2.20166\" transform=\"rotate(15.025 25.4736 25.0394)\" fill=\"#FCFAF8\"/>\\n<circle cx=\"80.6924\" cy=\"29.434\" r=\"2.20166\" transform=\"rotate(15.025 80.6924 29.434)\" fill=\"#FCFAF8\"/>\\n<circle cx=\"88.1904\" cy=\"47.4594\" r=\"2.20166\" transform=\"rotate(15.025 88.1904 47.4594)\" fill=\"#FCFAF8\"/>\\n<circle cx=\"46.2939\" cy=\"62.5927\" r=\"2.20166\" transform=\"rotate(15.025 46.2939 62.5927)\" fill=\"#FCFAF8\"/>\\n<circle cx=\"19.7392\" cy=\"59.6664\" r=\"2.20166\" transform=\"rotate(15.025 19.7392 59.6664)\" fill=\"#FCFAF8\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(42, 42, 42, 1))\"},children:\"Data-Driven Optimisations\"})})}),className:\"framer-1q527xf\",\"data-framer-name\":\"Data-Driven Optimisations\",fonts:[\"GF;Sora-600\"],layoutDependency:layoutDependency,layoutId:\"NSArDsHHV\",style:{\"--extracted-1w3ko1f\":\"rgba(42, 42, 42, 1)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{fNIUILLUf:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},g8FLnYod6:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},IGHByyeD5:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},KStkfbILo:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},lNHTu9WP9:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},LPkmpzJIv:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},MF60gZPHj:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},PxjM2TuVO:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},qJCSRwaFV:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},SC7o1Gby3:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},T7KaQgLSV:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},tALcd1nV1:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},U9gVKTXr5:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},UeYzA6yBZ:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},up5FEr1BP:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},uriOUMTcD:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},Uxm31FD2o:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},ve9YSNl5X:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},waaXcYJVF:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},XNZVFira5:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},Y7xY22zV4:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},zVQLpUI34:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fNIUILLUf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},g8FLnYod6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},IGHByyeD5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},KStkfbILo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},lNHTu9WP9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},LPkmpzJIv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},MF60gZPHj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},PxjM2TuVO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},qJCSRwaFV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},SC7o1Gby3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},T7KaQgLSV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},tALcd1nV1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},U9gVKTXr5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},UeYzA6yBZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},up5FEr1BP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},uriOUMTcD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},Uxm31FD2o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},ve9YSNl5X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},waaXcYJVF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},XNZVFira5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},Y7xY22zV4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})},zVQLpUI34:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Data-Driven Optimisations\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Transition,{value:transition4,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p4w6hw\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"L69ZAxv5x\",style:{rotate:0,scale:1},variants:{UeYzA6yBZ:{rotate:4,scale:1.05},up5FEr1BP:{rotate:4,scale:1.1},XoHPo4XwX:{rotate:4,scale:1.1}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jzvw5i\",\"data-framer-name\":\"Group 375207\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:94,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"xbwMacn4r\",svg:'<svg width=\"80\" height=\"94\" viewBox=\"0 0 80 94\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.848326\" y=\"43.759\" width=\"16.1808\" height=\"41.0797\" fill=\"#DAD3F2\" stroke=\"black\" stroke-width=\"0.329465\"/>\\n<rect x=\"21.5632\" y=\"51.1306\" width=\"16.1808\" height=\"33.7086\" fill=\"#DAD3F2\" stroke=\"black\" stroke-width=\"0.329465\"/>\\n<rect x=\"42.28\" y=\"35.7477\" width=\"16.1808\" height=\"49.0914\" fill=\"#DAD3F2\" stroke=\"black\" stroke-width=\"0.329465\"/>\\n<rect x=\"62.9968\" y=\"17.8752\" width=\"16.1808\" height=\"66.9635\" fill=\"#DAD3F2\" stroke=\"black\" stroke-width=\"0.329465\"/>\\n<rect x=\"0.833713\" y=\"83.1052\" width=\"78.3583\" height=\"10.3708\" fill=\"#6345CE\" stroke=\"black\" stroke-width=\"0.300238\"/>\\n<path d=\"M8.86328 35.5825L29.4945 40.8228L70.7566 2.85449\" stroke=\"#231F20\" stroke-width=\"0.300238\"/>\\n<circle cx=\"28.3241\" cy=\"40.8231\" r=\"3.17757\" fill=\"#6345CE\"/>\\n<circle cx=\"49.3748\" cy=\"21.8387\" r=\"3.17757\" fill=\"#6345CE\"/>\\n<circle cx=\"70.7576\" cy=\"3.8431\" r=\"3.17757\" fill=\"#6345CE\"/>\\n<circle cx=\"8.93929\" cy=\"35.5824\" r=\"3.17757\" fill=\"#6345CE\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(42, 42, 42, 1))\"},children:\"Performance Analysis\"})})}),className:\"framer-1da4lxb\",\"data-framer-name\":\"Performance Analysis\",fonts:[\"GF;Sora-600\"],layoutDependency:layoutDependency,layoutId:\"NgnpaXQmg\",style:{\"--extracted-1w3ko1f\":\"rgba(42, 42, 42, 1)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{fNIUILLUf:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},g8FLnYod6:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},IGHByyeD5:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},KStkfbILo:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},lNHTu9WP9:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},LPkmpzJIv:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},MF60gZPHj:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},PxjM2TuVO:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},qJCSRwaFV:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},SC7o1Gby3:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},T7KaQgLSV:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},tALcd1nV1:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},U9gVKTXr5:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},UeYzA6yBZ:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},up5FEr1BP:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},uriOUMTcD:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},Uxm31FD2o:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},ve9YSNl5X:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},waaXcYJVF:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},XNZVFira5:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},Y7xY22zV4:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},zVQLpUI34:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fNIUILLUf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},g8FLnYod6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},IGHByyeD5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},KStkfbILo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},lNHTu9WP9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},LPkmpzJIv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},MF60gZPHj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},PxjM2TuVO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},qJCSRwaFV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},SC7o1Gby3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},T7KaQgLSV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},tALcd1nV1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},U9gVKTXr5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},UeYzA6yBZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},up5FEr1BP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},uriOUMTcD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},Uxm31FD2o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},ve9YSNl5X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},waaXcYJVF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},XNZVFira5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},Y7xY22zV4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})},zVQLpUI34:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Performance Analysis\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Transition,{value:transition4,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z7gi63\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"juZtnDbs9\",style:{rotate:0,scale:1},transformTemplate:transformTemplate2,variants:{eelUszCEe:{rotate:4,scale:1.1},lNHTu9WP9:{rotate:4,scale:1.05},zVQLpUI34:{rotate:4,scale:1.1}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4ok0ba\",\"data-framer-name\":\"Group 375202\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:97,intrinsicWidth:83,layoutDependency:layoutDependency,layoutId:\"JALZNxNBl\",svg:'<svg width=\"83\" height=\"97\" viewBox=\"0 0 83 97\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.515632\" y=\"41.3154\" width=\"81.8349\" height=\"11.0244\" transform=\"rotate(-29.8388 0.515632 41.3154)\" fill=\"#6345CE\" stroke=\"black\" stroke-width=\"0.337696\"/>\\n<path d=\"M10.7983 48.1269L9.56772 36.1469L15.5821 32.697L16.8127 44.677L10.7983 48.1269Z\" fill=\"#FAF6EC\" stroke=\"black\" stroke-width=\"0.337696\"/>\\n<path d=\"M23.5268 40.8241L22.2962 28.8441L28.3106 25.3942L29.5412 37.3742L23.5268 40.8241Z\" fill=\"#FAF6EC\" stroke=\"black\" stroke-width=\"0.337696\"/>\\n<path d=\"M36.2573 33.5229L35.0267 21.5429L41.0411 18.093L42.2717 30.073L36.2573 33.5229Z\" fill=\"#FAF6EC\" stroke=\"black\" stroke-width=\"0.337696\"/>\\n<path d=\"M48.9858 26.2206L47.7552 14.2406L53.7696 10.7907L55.0002 22.7707L48.9858 26.2206Z\" fill=\"#FAF6EC\" stroke=\"black\" stroke-width=\"0.337696\"/>\\n<path d=\"M61.7163 18.9189L60.4857 6.93887L66.5001 3.48898L67.7307 15.469L61.7163 18.9189Z\" fill=\"#FAF6EC\" stroke=\"black\" stroke-width=\"0.337696\"/>\\n<rect x=\"0.454004\" y=\"41.4145\" width=\"81.8349\" height=\"55.2537\" fill=\"#DAD3F2\" stroke=\"black\" stroke-width=\"0.337696\"/>\\n<rect x=\"0.454004\" y=\"41.4145\" width=\"81.8349\" height=\"11.0244\" fill=\"#6345CE\" stroke=\"black\" stroke-width=\"0.337696\"/>\\n<path d=\"M5.98448 52.4381L10.8778 41.434H17.8114L12.9181 52.4381H5.98448Z\" fill=\"#FAF6EC\" stroke=\"black\" stroke-width=\"0.337696\"/>\\n<path d=\"M20.6603 52.4381L25.5536 41.434H32.4872L27.5939 52.4381H20.6603Z\" fill=\"#FAF6EC\" stroke=\"black\" stroke-width=\"0.337696\"/>\\n<path d=\"M35.3341 52.4381L40.2274 41.434H47.161L42.2677 52.4381H35.3341Z\" fill=\"#FAF6EC\" stroke=\"black\" stroke-width=\"0.337696\"/>\\n<path d=\"M50.0099 52.4381L54.9032 41.434H61.8368L56.9435 52.4381H50.0099Z\" fill=\"#FAF6EC\" stroke=\"black\" stroke-width=\"0.337696\"/>\\n<path d=\"M64.6857 52.4381L69.579 41.434H76.5126L71.6193 52.4381H64.6857Z\" fill=\"#FAF6EC\" stroke=\"black\" stroke-width=\"0.337696\"/>\\n<path d=\"M7.51562 63.1362H74.98\" stroke=\"#6345CE\" stroke-width=\"0.337696\"/>\\n<path d=\"M7.63867 73.9258H75.1031\" stroke=\"#6345CE\" stroke-width=\"0.337696\"/>\\n<path d=\"M28.8379 72.6528L28.8379 64.4105\" stroke=\"#6345CE\" stroke-width=\"0.337696\"/>\\n<path d=\"M58.1426 72.6528L58.1426 64.4105\" stroke=\"#6345CE\" stroke-width=\"0.337696\"/>\\n<path d=\"M7.51562 90.9609H74.98\" stroke=\"#6345CE\" stroke-width=\"0.337696\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"19px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(42, 42, 42, 1))\"},children:\"Creative Strategy and Production\"})})}),className:\"framer-kwbod2\",\"data-framer-name\":\"Creative Strategy and Production\",fonts:[\"GF;Sora-600\"],layoutDependency:layoutDependency,layoutId:\"CtI3yY7sH\",style:{\"--extracted-1w3ko1f\":\"rgba(42, 42, 42, 1)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate2,variants:{fNIUILLUf:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},g8FLnYod6:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},IGHByyeD5:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},KStkfbILo:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},lNHTu9WP9:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},LPkmpzJIv:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},MF60gZPHj:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},PxjM2TuVO:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},qJCSRwaFV:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},SC7o1Gby3:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},T7KaQgLSV:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},tALcd1nV1:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},U9gVKTXr5:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},UeYzA6yBZ:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},up5FEr1BP:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},uriOUMTcD:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},Uxm31FD2o:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},ve9YSNl5X:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},waaXcYJVF:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},XNZVFira5:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},Y7xY22zV4:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"},zVQLpUI34:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fNIUILLUf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},g8FLnYod6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},IGHByyeD5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},KStkfbILo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},lNHTu9WP9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},LPkmpzJIv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},MF60gZPHj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},PxjM2TuVO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},qJCSRwaFV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},SC7o1Gby3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},T7KaQgLSV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},tALcd1nV1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},U9gVKTXr5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},UeYzA6yBZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},up5FEr1BP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},uriOUMTcD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},Uxm31FD2o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},ve9YSNl5X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},waaXcYJVF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},XNZVFira5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},Y7xY22zV4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined},zVQLpUI34:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Creative Strategy and Production\"})}),transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||644)-184-556)/2+0+0)+0+254+-19,...addPropertyOverrides({fNIUILLUf:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},g8FLnYod6:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},IGHByyeD5:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},KStkfbILo:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},lNHTu9WP9:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},LPkmpzJIv:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},MF60gZPHj:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},PxjM2TuVO:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},qJCSRwaFV:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},SC7o1Gby3:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},T7KaQgLSV:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},tALcd1nV1:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},U9gVKTXr5:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},UeYzA6yBZ:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},up5FEr1BP:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},uriOUMTcD:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},Uxm31FD2o:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},ve9YSNl5X:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},waaXcYJVF:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},XNZVFira5:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},Y7xY22zV4:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},zVQLpUI34:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3szvy4-container\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"AC01SMfFk-container\",name:\"5\",style:{rotate:0},variants:{fNIUILLUf:{rotate:-41},IGHByyeD5:{rotate:-41},lNHTu9WP9:{rotate:-41},LPkmpzJIv:{rotate:-41},MF60gZPHj:{rotate:-41},qJCSRwaFV:{rotate:-41},U9gVKTXr5:{rotate:-41},UeYzA6yBZ:{rotate:-41},waaXcYJVF:{rotate:-41},XNZVFira5:{rotate:-41},Y7xY22zV4:{rotate:-41}},children:/*#__PURE__*/_jsx(CpArrow,{height:\"100%\",id:\"AC01SMfFk\",layoutId:\"AC01SMfFk\",name:\"5\",style:{height:\"100%\",width:\"100%\"},variant:\"z3o4znf_6\",width:\"100%\",...addPropertyOverrides({bs_RwUrzO:{variant:\"faJeAeewv\"},EBUIiuepv:{variant:\"rjehUDbJY\"},fNIUILLUf:{variant:\"rjehUDbJY\"},j1n_gZ1tm:{variant:\"rjehUDbJY\"},KStkfbILo:{variant:\"faJeAeewv\"},LPkmpzJIv:{variant:\"rjehUDbJY\"},T7KaQgLSV:{variant:\"rjehUDbJY\"},ve9YSNl5X:{variant:\"rjehUDbJY\"},XNZVFira5:{variant:\"faJeAeewv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||644)-184-556)/2+0+0)+0+254+302-23,...addPropertyOverrides({fNIUILLUf:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-32},g8FLnYod6:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-41},IGHByyeD5:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-32},KStkfbILo:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-41},lNHTu9WP9:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-32},LPkmpzJIv:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-32},MF60gZPHj:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-32},PxjM2TuVO:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-41},qJCSRwaFV:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-32},SC7o1Gby3:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-41},T7KaQgLSV:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-41},tALcd1nV1:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-41},U9gVKTXr5:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-32},UeYzA6yBZ:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-32},up5FEr1BP:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-41},uriOUMTcD:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-41},Uxm31FD2o:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-41},ve9YSNl5X:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-41},waaXcYJVF:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-32},XNZVFira5:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-32},Y7xY22zV4:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-32},zVQLpUI34:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-41}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p6zxy9-container\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"AME2QQkxB-container\",name:\"4\",style:{rotate:180},variants:{fNIUILLUf:{rotate:225},g8FLnYod6:{rotate:210},IGHByyeD5:{rotate:225},KStkfbILo:{rotate:210},lNHTu9WP9:{rotate:225},LPkmpzJIv:{rotate:225},MF60gZPHj:{rotate:225},PxjM2TuVO:{rotate:210},qJCSRwaFV:{rotate:225},SC7o1Gby3:{rotate:210},T7KaQgLSV:{rotate:210},tALcd1nV1:{rotate:210},U9gVKTXr5:{rotate:225},UeYzA6yBZ:{rotate:225},up5FEr1BP:{rotate:210},uriOUMTcD:{rotate:210},Uxm31FD2o:{rotate:210},ve9YSNl5X:{rotate:210},waaXcYJVF:{rotate:225},XNZVFira5:{rotate:225},Y7xY22zV4:{rotate:225},zVQLpUI34:{rotate:210}},children:/*#__PURE__*/_jsx(CpArrow,{height:\"100%\",id:\"AME2QQkxB\",layoutId:\"AME2QQkxB\",name:\"4\",style:{height:\"100%\",width:\"100%\"},variant:\"z3o4znf_6\",width:\"100%\",...addPropertyOverrides({eelUszCEe:{variant:\"rjehUDbJY\"},lNHTu9WP9:{variant:\"rjehUDbJY\"},MF60gZPHj:{variant:\"faJeAeewv\"},PxjM2TuVO:{variant:\"faJeAeewv\"},sNwdwCXmt:{variant:\"faJeAeewv\"},zVQLpUI34:{variant:\"rjehUDbJY\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||644)-184-556)/2+0+0)+0+254+302-23,...addPropertyOverrides({fNIUILLUf:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-10},g8FLnYod6:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-17},IGHByyeD5:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-10},KStkfbILo:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-17},lNHTu9WP9:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-10},LPkmpzJIv:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-10},MF60gZPHj:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-10},PxjM2TuVO:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-17},qJCSRwaFV:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-10},SC7o1Gby3:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-17},T7KaQgLSV:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-17},tALcd1nV1:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-17},U9gVKTXr5:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-10},UeYzA6yBZ:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-10},up5FEr1BP:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-17},uriOUMTcD:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-17},Uxm31FD2o:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-17},ve9YSNl5X:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-17},waaXcYJVF:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-10},XNZVFira5:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-10},Y7xY22zV4:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-10},zVQLpUI34:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-17}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kka5er-container\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"vSC67ngEr-container\",name:\"3\",style:{rotate:180},children:/*#__PURE__*/_jsx(CpArrow,{height:\"100%\",id:\"vSC67ngEr\",layoutId:\"vSC67ngEr\",name:\"3\",style:{height:\"100%\",width:\"100%\"},variant:\"z3o4znf_6\",width:\"100%\",...addPropertyOverrides({g8FLnYod6:{variant:\"faJeAeewv\"},UeYzA6yBZ:{variant:\"rjehUDbJY\"},up5FEr1BP:{variant:\"rjehUDbJY\"},waaXcYJVF:{variant:\"faJeAeewv\"},XoHPo4XwX:{variant:\"rjehUDbJY\"},ZeP5pZAuE:{variant:\"faJeAeewv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||644)-184-556)/2+0+0)+0+254+302-23,...addPropertyOverrides({fNIUILLUf:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-29},g8FLnYod6:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-49},IGHByyeD5:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-29},KStkfbILo:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-49},lNHTu9WP9:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-29},LPkmpzJIv:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-29},MF60gZPHj:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-29},PxjM2TuVO:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-49},qJCSRwaFV:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-29},SC7o1Gby3:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-49},T7KaQgLSV:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-49},tALcd1nV1:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-49},U9gVKTXr5:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-29},UeYzA6yBZ:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-29},up5FEr1BP:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-49},uriOUMTcD:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-49},Uxm31FD2o:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-49},ve9YSNl5X:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-49},waaXcYJVF:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-29},XNZVFira5:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-29},Y7xY22zV4:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-29},zVQLpUI34:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-49}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-172uxau-container\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"m5Okw9Dek-container\",name:\"2\",style:{rotate:180},variants:{fNIUILLUf:{rotate:137},g8FLnYod6:{rotate:144},IGHByyeD5:{rotate:137},KStkfbILo:{rotate:144},lNHTu9WP9:{rotate:137},LPkmpzJIv:{rotate:137},MF60gZPHj:{rotate:137},PxjM2TuVO:{rotate:144},qJCSRwaFV:{rotate:137},SC7o1Gby3:{rotate:144},T7KaQgLSV:{rotate:144},tALcd1nV1:{rotate:144},U9gVKTXr5:{rotate:137},UeYzA6yBZ:{rotate:137},up5FEr1BP:{rotate:144},uriOUMTcD:{rotate:144},Uxm31FD2o:{rotate:144},ve9YSNl5X:{rotate:144},waaXcYJVF:{rotate:137},XNZVFira5:{rotate:137},Y7xY22zV4:{rotate:137},zVQLpUI34:{rotate:144}},children:/*#__PURE__*/_jsx(CpArrow,{height:\"100%\",id:\"m5Okw9Dek\",layoutId:\"m5Okw9Dek\",name:\"2\",style:{height:\"100%\",width:\"100%\"},variant:\"z3o4znf_6\",width:\"100%\",...addPropertyOverrides({CjoAWzsv6:{variant:\"faJeAeewv\"},h9eR_GYN6:{variant:\"rjehUDbJY\"},IGHByyeD5:{variant:\"rjehUDbJY\"},qJCSRwaFV:{variant:\"faJeAeewv\"},tALcd1nV1:{variant:\"faJeAeewv\"},Uxm31FD2o:{variant:\"rjehUDbJY\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||644)-184-556)/2+0+0)+0+254+-19,...addPropertyOverrides({fNIUILLUf:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},g8FLnYod6:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},IGHByyeD5:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},KStkfbILo:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},lNHTu9WP9:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},LPkmpzJIv:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},MF60gZPHj:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},PxjM2TuVO:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},qJCSRwaFV:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},SC7o1Gby3:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},T7KaQgLSV:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},tALcd1nV1:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},U9gVKTXr5:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},UeYzA6yBZ:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},up5FEr1BP:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},uriOUMTcD:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},Uxm31FD2o:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},ve9YSNl5X:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12},waaXcYJVF:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},XNZVFira5:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},Y7xY22zV4:{height:20,width:\"20px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+9},zVQLpUI34:{height:30,width:\"30px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-12}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-t10qkn-container\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"qXRbzNalE-container\",name:\"1\",style:{rotate:0},variants:{fNIUILLUf:{rotate:39},IGHByyeD5:{rotate:39},lNHTu9WP9:{rotate:39},LPkmpzJIv:{rotate:39},MF60gZPHj:{rotate:39},qJCSRwaFV:{rotate:39},U9gVKTXr5:{rotate:39},UeYzA6yBZ:{rotate:39},waaXcYJVF:{rotate:39},XNZVFira5:{rotate:39},Y7xY22zV4:{rotate:39}},children:/*#__PURE__*/_jsx(CpArrow,{height:\"100%\",id:\"qXRbzNalE\",layoutId:\"qXRbzNalE\",name:\"1\",style:{height:\"100%\",width:\"100%\"},variant:\"z3o4znf_6\",width:\"100%\",...addPropertyOverrides({bbUIjpuLI:{variant:\"faJeAeewv\"},ngqcGIqpy:{variant:\"rjehUDbJY\"},SC7o1Gby3:{variant:\"rjehUDbJY\"},U9gVKTXr5:{variant:\"faJeAeewv\"},uriOUMTcD:{variant:\"faJeAeewv\"},Y7xY22zV4:{variant:\"rjehUDbJY\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:\"104px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||644)-184-556)/2+0+0)+0+254+-67,...addPropertyOverrides({fNIUILLUf:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-51},g8FLnYod6:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-59},IGHByyeD5:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-51},KStkfbILo:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-59},lNHTu9WP9:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-51},LPkmpzJIv:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-51},MF60gZPHj:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-51},PxjM2TuVO:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-59},qJCSRwaFV:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-51},SC7o1Gby3:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-59},T7KaQgLSV:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-59},tALcd1nV1:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-59},U9gVKTXr5:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-51},UeYzA6yBZ:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-51},up5FEr1BP:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-59},uriOUMTcD:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-59},Uxm31FD2o:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-59},ve9YSNl5X:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-59},waaXcYJVF:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-51},XNZVFira5:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-51},Y7xY22zV4:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-51},zVQLpUI34:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+-59}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10hd5n9-container\",layoutDependency:layoutDependency,layoutId:\"FY02MR9fY-container\",children:/*#__PURE__*/_jsx(CpScribbles,{height:\"100%\",id:\"FY02MR9fY\",layoutId:\"FY02MR9fY\",style:{height:\"100%\",width:\"100%\"},variant:\"sCiXEHMJN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:\"104px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||644)-184-556)/2+0+0)+0+254+82,...addPropertyOverrides({fNIUILLUf:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+111},g8FLnYod6:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+106},IGHByyeD5:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+111},KStkfbILo:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+106},lNHTu9WP9:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+111},LPkmpzJIv:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+111},MF60gZPHj:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+111},PxjM2TuVO:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+106},qJCSRwaFV:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+111},SC7o1Gby3:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+106},T7KaQgLSV:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+106},tALcd1nV1:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+106},U9gVKTXr5:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+111},UeYzA6yBZ:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+111},up5FEr1BP:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+106},uriOUMTcD:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+106},Uxm31FD2o:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+106},ve9YSNl5X:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+106},waaXcYJVF:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+111},XNZVFira5:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+111},Y7xY22zV4:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+111},zVQLpUI34:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+106}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k6cmcx-container\",layoutDependency:layoutDependency,layoutId:\"n7RfvO9Mq-container\",children:/*#__PURE__*/_jsx(CpScribbles,{height:\"100%\",id:\"n7RfvO9Mq\",layoutId:\"n7RfvO9Mq\",style:{height:\"100%\",width:\"100%\"},variant:\"vn7Ihunw7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:\"105px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||644)-184-556)/2+0+0)+0+254+302-106,...addPropertyOverrides({fNIUILLUf:{height:29.142857142857146,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.642857142857146},g8FLnYod6:{height:36.42857142857143,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-59.92857142857143},IGHByyeD5:{height:29.142857142857146,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.642857142857146},KStkfbILo:{height:36.42857142857143,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-59.92857142857143},lNHTu9WP9:{height:29.142857142857146,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.642857142857146},LPkmpzJIv:{height:29.142857142857146,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.642857142857146},MF60gZPHj:{height:29.142857142857146,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.642857142857146},PxjM2TuVO:{height:36.42857142857143,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-59.92857142857143},qJCSRwaFV:{height:29.142857142857146,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.642857142857146},SC7o1Gby3:{height:36.42857142857143,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-59.92857142857143},T7KaQgLSV:{height:36.42857142857143,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-59.92857142857143},tALcd1nV1:{height:36.42857142857143,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-59.92857142857143},U9gVKTXr5:{height:29.142857142857146,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.642857142857146},UeYzA6yBZ:{height:29.142857142857146,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.642857142857146},up5FEr1BP:{height:36.42857142857143,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-59.92857142857143},uriOUMTcD:{height:36.42857142857143,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-59.92857142857143},Uxm31FD2o:{height:36.42857142857143,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-59.92857142857143},ve9YSNl5X:{height:36.42857142857143,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-59.92857142857143},waaXcYJVF:{height:29.142857142857146,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.642857142857146},XNZVFira5:{height:29.142857142857146,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.642857142857146},Y7xY22zV4:{height:29.142857142857146,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.642857142857146},zVQLpUI34:{height:36.42857142857143,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-59.92857142857143}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-x6n9pk-container\",layoutDependency:layoutDependency,layoutId:\"gaGllvg92-container\",children:/*#__PURE__*/_jsx(CpScribbles,{height:\"100%\",id:\"gaGllvg92\",layoutId:\"gaGllvg92\",style:{height:\"100%\",width:\"100%\"},variant:\"g5UKdPekb\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:\"104px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||644)-184-556)/2+0+0)+0+254+302-84,...addPropertyOverrides({fNIUILLUf:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-37.42307692307692},g8FLnYod6:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.77884615384615},IGHByyeD5:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-37.42307692307692},KStkfbILo:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.77884615384615},lNHTu9WP9:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-37.42307692307692},LPkmpzJIv:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-37.42307692307692},MF60gZPHj:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-37.42307692307692},PxjM2TuVO:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.77884615384615},qJCSRwaFV:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-37.42307692307692},SC7o1Gby3:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.77884615384615},T7KaQgLSV:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.77884615384615},tALcd1nV1:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.77884615384615},U9gVKTXr5:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-37.42307692307692},UeYzA6yBZ:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-37.42307692307692},up5FEr1BP:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.77884615384615},uriOUMTcD:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.77884615384615},Uxm31FD2o:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.77884615384615},ve9YSNl5X:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-52.77884615384615},waaXcYJVF:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-37.42307692307692},XNZVFira5:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-37.42307692307692},Y7xY22zV4:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-37.42307692307692},zVQLpUI34:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+302-48.77884615384615}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16au1vx-container\",layoutDependency:layoutDependency,layoutId:\"xHOtvf1RG-container\",children:/*#__PURE__*/_jsx(CpScribbles,{height:\"100%\",id:\"xHOtvf1RG\",layoutId:\"xHOtvf1RG\",style:{height:\"100%\",width:\"100%\"},variant:\"ICWCtRwYH\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:\"104px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||644)-184-556)/2+0+0)+0+254+76,...addPropertyOverrides({fNIUILLUf:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+102},g8FLnYod6:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+99},IGHByyeD5:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+102},KStkfbILo:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+99},lNHTu9WP9:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+102},LPkmpzJIv:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+102},MF60gZPHj:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+102},PxjM2TuVO:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+99},qJCSRwaFV:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+102},SC7o1Gby3:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+99},T7KaQgLSV:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+99},tALcd1nV1:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+99},U9gVKTXr5:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+102},UeYzA6yBZ:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+102},up5FEr1BP:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+99},uriOUMTcD:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+99},Uxm31FD2o:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+99},ve9YSNl5X:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+99},waaXcYJVF:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+102},XNZVFira5:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+102},Y7xY22zV4:{height:29.423076923076923,width:\"60px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+102},zVQLpUI34:{height:36.77884615384615,width:\"75px\",y:(componentViewport?.y||0)+60+(((componentViewport?.height||720)-184-536)/2+0+0)+0+234+99}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p3qyf6-container\",layoutDependency:layoutDependency,layoutId:\"xhGqjIeox-container\",children:/*#__PURE__*/_jsx(CpScribbles,{height:\"100%\",id:\"xhGqjIeox\",layoutId:\"xhGqjIeox\",style:{height:\"100%\",width:\"100%\"},variant:\"NkpFkA0d6\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(componentViewport?.height||644)*1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+((componentViewport?.height||644)*.5000000000000002-(componentViewport?.height||644)*1/2),...addPropertyOverrides({fNIUILLUf:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},g8FLnYod6:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},IGHByyeD5:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},KStkfbILo:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},lNHTu9WP9:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},LPkmpzJIv:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},MF60gZPHj:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},PxjM2TuVO:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},qJCSRwaFV:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},SC7o1Gby3:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},T7KaQgLSV:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},tALcd1nV1:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},U9gVKTXr5:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},UeYzA6yBZ:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},up5FEr1BP:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},uriOUMTcD:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},Uxm31FD2o:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},ve9YSNl5X:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},waaXcYJVF:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},XNZVFira5:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},Y7xY22zV4:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)},zVQLpUI34:{height:(componentViewport?.height||720)*1,y:(componentViewport?.y||0)+((componentViewport?.height||720)*.5000000000000002-(componentViewport?.height||720)*1/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o06mjr-container\",layoutDependency:layoutDependency,layoutId:\"bglBTc3N2-container\",children:/*#__PURE__*/_jsx(ElementsPattern,{height:\"100%\",id:\"bglBTc3N2\",layoutId:\"bglBTc3N2\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VtcJy.framer-kfv7dv, .framer-VtcJy .framer-kfv7dv { display: block; }\",\".framer-VtcJy.framer-byg925 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 30px 124px 30px; position: relative; width: 1200px; }\",\".framer-VtcJy .framer-1rc0j38 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1140px; z-index: 1; }\",\".framer-VtcJy .framer-1hcrevt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-VtcJy .framer-1a6em9k, .framer-VtcJy .framer-1w43e2o { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-VtcJy .framer-1nicopc { flex: none; height: 302px; overflow: visible; position: relative; width: 100%; }\",\".framer-VtcJy .framer-1jxpqxg { flex: none; height: 302px; left: calc(50.00000000000002% - 1102px / 2); position: absolute; top: calc(50.00000000000002% - 302px / 2); width: 1102px; }\",\".framer-VtcJy .framer-1rrkp5q { bottom: 6px; flex: none; height: auto; left: 43px; position: absolute; white-space: pre-wrap; width: 48px; word-break: break-word; word-wrap: break-word; }\",\".framer-VtcJy .framer-1xksquy { bottom: 73px; flex: none; height: auto; position: absolute; right: 52px; white-space: pre-wrap; width: 57px; word-break: break-word; word-wrap: break-word; }\",\".framer-VtcJy .framer-1qyfldi { bottom: 22px; flex: none; height: auto; left: 212px; position: absolute; white-space: pre-wrap; width: 35px; word-break: break-word; word-wrap: break-word; }\",\".framer-VtcJy .framer-c9ke7x { flex: none; height: auto; position: absolute; right: 10px; top: 44px; white-space: pre-wrap; width: 38px; word-break: break-word; word-wrap: break-word; }\",\".framer-VtcJy .framer-1lav55f { flex: none; height: auto; position: absolute; right: 374px; top: 21px; white-space: pre-wrap; width: 45px; word-break: break-word; word-wrap: break-word; }\",\".framer-VtcJy .framer-1mhvot9 { flex: none; height: auto; left: 35px; position: absolute; top: 1px; white-space: pre-wrap; width: 67px; word-break: break-word; word-wrap: break-word; }\",\".framer-VtcJy .framer-vpkvm { flex: none; height: auto; left: 50%; position: absolute; top: 68px; white-space: pre-wrap; width: 156px; word-break: break-word; word-wrap: break-word; }\",\".framer-VtcJy .framer-1pshzl8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 51%; overflow: visible; padding: 0px; position: absolute; top: -48px; width: min-content; }\",\".framer-VtcJy .framer-1qi63tf { aspect-ratio: 1 / 1; flex: none; height: 101px; position: relative; width: var(--framer-aspect-ratio-supported, 101px); }\",\".framer-VtcJy .framer-vmjpl9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: -11px; top: 48%; width: min-content; }\",\".framer-VtcJy .framer-uhveju, .framer-VtcJy .framer-1jzvw5i { aspect-ratio: 0.851063829787234 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 94px); position: relative; width: 80px; }\",\".framer-VtcJy .framer-17am3t6 { flex: none; height: auto; position: absolute; right: 94px; top: 48%; white-space: pre-wrap; width: 111px; word-break: break-word; word-wrap: break-word; }\",\".framer-VtcJy .framer-rajt8n { align-content: center; align-items: center; bottom: -15px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 307px; width: min-content; }\",\".framer-VtcJy .framer-1r0ou8u { aspect-ratio: 1.3012048192771084 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 83px); position: relative; width: 108px; }\",\".framer-VtcJy .framer-1q527xf { bottom: -60px; flex: none; height: auto; position: absolute; right: 283px; white-space: pre-wrap; width: 156px; word-break: break-word; word-wrap: break-word; }\",\".framer-VtcJy .framer-1p4w6hw { align-content: center; align-items: center; bottom: -15px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 305px; overflow: visible; padding: 0px; position: absolute; width: min-content; }\",\".framer-VtcJy .framer-1da4lxb { bottom: -62px; flex: none; height: auto; left: 262px; position: absolute; white-space: pre-wrap; width: 156px; word-break: break-word; word-wrap: break-word; }\",\".framer-VtcJy .framer-z7gi63 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: -15px; overflow: visible; padding: 0px; position: absolute; top: 46%; width: min-content; }\",\".framer-VtcJy .framer-4ok0ba { aspect-ratio: 0.8556701030927835 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 97px); position: relative; width: 83px; }\",\".framer-VtcJy .framer-kwbod2 { flex: none; height: auto; left: 79px; position: absolute; top: 53%; white-space: pre-wrap; width: 111px; word-break: break-word; word-wrap: break-word; }\",\".framer-VtcJy .framer-3szvy4-container { flex: none; height: 40px; left: 284px; position: absolute; top: -19px; width: 40px; }\",\".framer-VtcJy .framer-p6zxy9-container { bottom: -17px; flex: none; height: 40px; left: 165px; position: absolute; width: 40px; }\",\".framer-VtcJy .framer-1kka5er-container { bottom: -17px; flex: none; height: 40px; left: calc(50.00000000000002% - 40px / 2); position: absolute; width: 40px; }\",\".framer-VtcJy .framer-172uxau-container { bottom: -17px; flex: none; height: 40px; position: absolute; right: 161px; width: 40px; }\",\".framer-VtcJy .framer-t10qkn-container { flex: none; height: 40px; position: absolute; right: 273px; top: -19px; width: 40px; }\",\".framer-VtcJy .framer-10hd5n9-container { aspect-ratio: 2.0392156862745097 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); left: 448px; position: absolute; top: -67px; width: 104px; }\",\".framer-VtcJy .framer-k6cmcx-container { aspect-ratio: 2.0392156862745097 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); position: absolute; right: 15px; top: 82px; width: 104px; }\",\".framer-VtcJy .framer-x6n9pk-container { aspect-ratio: 2.0588235294117645 / 1; bottom: 55px; flex: none; height: var(--framer-aspect-ratio-supported, 51px); position: absolute; right: 383px; width: 105px; }\",\".framer-VtcJy .framer-16au1vx-container { aspect-ratio: 2.0392156862745097 / 1; bottom: 33px; flex: none; height: var(--framer-aspect-ratio-supported, 51px); left: 246px; position: absolute; width: 104px; }\",\".framer-VtcJy .framer-1p3qyf6-container { aspect-ratio: 2.0392156862745097 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); left: 68px; position: absolute; top: 76px; width: 104px; }\",\".framer-VtcJy .framer-o06mjr-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VtcJy.framer-byg925, .framer-VtcJy .framer-1rc0j38, .framer-VtcJy .framer-1hcrevt, .framer-VtcJy .framer-1pshzl8, .framer-VtcJy .framer-vmjpl9, .framer-VtcJy .framer-rajt8n, .framer-VtcJy .framer-1p4w6hw, .framer-VtcJy .framer-z7gi63 { gap: 0px; } .framer-VtcJy.framer-byg925 > *, .framer-VtcJy .framer-1rc0j38 > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-VtcJy.framer-byg925 > :first-child, .framer-VtcJy .framer-1rc0j38 > :first-child, .framer-VtcJy .framer-1hcrevt > :first-child { margin-top: 0px; } .framer-VtcJy.framer-byg925 > :last-child, .framer-VtcJy .framer-1rc0j38 > :last-child, .framer-VtcJy .framer-1hcrevt > :last-child { margin-bottom: 0px; } .framer-VtcJy .framer-1hcrevt > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-VtcJy .framer-1pshzl8 > *, .framer-VtcJy .framer-vmjpl9 > *, .framer-VtcJy .framer-rajt8n > *, .framer-VtcJy .framer-1p4w6hw > *, .framer-VtcJy .framer-z7gi63 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-VtcJy .framer-1pshzl8 > :first-child, .framer-VtcJy .framer-vmjpl9 > :first-child, .framer-VtcJy .framer-rajt8n > :first-child, .framer-VtcJy .framer-1p4w6hw > :first-child, .framer-VtcJy .framer-z7gi63 > :first-child { margin-left: 0px; } .framer-VtcJy .framer-1pshzl8 > :last-child, .framer-VtcJy .framer-vmjpl9 > :last-child, .framer-VtcJy .framer-rajt8n > :last-child, .framer-VtcJy .framer-1p4w6hw > :last-child, .framer-VtcJy .framer-z7gi63 > :last-child { margin-right: 0px; } }\",\".framer-VtcJy.framer-v-7cvrmj.framer-byg925, .framer-VtcJy.framer-v-w3i8k4.framer-byg925, .framer-VtcJy.framer-v-119p84o.framer-byg925, .framer-VtcJy.framer-v-1054cex.framer-byg925, .framer-VtcJy.framer-v-1nebkzx.framer-byg925, .framer-VtcJy.framer-v-1ywr14l.framer-byg925, .framer-VtcJy.framer-v-c2yroa.framer-byg925, .framer-VtcJy.framer-v-opsq4w.framer-byg925, .framer-VtcJy.framer-v-1gj6ddj.framer-byg925, .framer-VtcJy.framer-v-1smrd5s.framer-byg925, .framer-VtcJy.framer-v-1qpav74.framer-byg925 { padding: 60px 24px 124px 24px; width: 810px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-1rc0j38, .framer-VtcJy.framer-v-w3i8k4 .framer-1rc0j38, .framer-VtcJy.framer-v-119p84o .framer-1rc0j38, .framer-VtcJy.framer-v-1054cex .framer-1rc0j38, .framer-VtcJy.framer-v-1nebkzx .framer-1rc0j38, .framer-VtcJy.framer-v-1ywr14l .framer-1rc0j38, .framer-VtcJy.framer-v-c2yroa .framer-1rc0j38, .framer-VtcJy.framer-v-opsq4w .framer-1rc0j38, .framer-VtcJy.framer-v-1gj6ddj .framer-1rc0j38, .framer-VtcJy.framer-v-1smrd5s .framer-1rc0j38, .framer-VtcJy.framer-v-1qpav74 .framer-1rc0j38 { width: 762px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-1hcrevt, .framer-VtcJy.framer-v-b50ajf .framer-1hcrevt, .framer-VtcJy.framer-v-w3i8k4 .framer-1hcrevt, .framer-VtcJy.framer-v-119p84o .framer-1hcrevt, .framer-VtcJy.framer-v-1054cex .framer-1hcrevt, .framer-VtcJy.framer-v-1nebkzx .framer-1hcrevt, .framer-VtcJy.framer-v-1ywr14l .framer-1hcrevt, .framer-VtcJy.framer-v-c2yroa .framer-1hcrevt, .framer-VtcJy.framer-v-opsq4w .framer-1hcrevt, .framer-VtcJy.framer-v-1gj6ddj .framer-1hcrevt, .framer-VtcJy.framer-v-1smrd5s .framer-1hcrevt, .framer-VtcJy.framer-v-1qpav74 .framer-1hcrevt, .framer-VtcJy.framer-v-t87m0z .framer-1hcrevt, .framer-VtcJy.framer-v-kq0an7 .framer-1hcrevt, .framer-VtcJy.framer-v-1mdfq1s .framer-1hcrevt, .framer-VtcJy.framer-v-kebfqj .framer-1hcrevt, .framer-VtcJy.framer-v-iheee7 .framer-1hcrevt, .framer-VtcJy.framer-v-1qx8yq8 .framer-1hcrevt, .framer-VtcJy.framer-v-1qm3gd4 .framer-1hcrevt, .framer-VtcJy.framer-v-3ms2jp .framer-1hcrevt, .framer-VtcJy.framer-v-1xfers8 .framer-1hcrevt, .framer-VtcJy.framer-v-mw74pa .framer-1hcrevt { height: 164px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-1jxpqxg, .framer-VtcJy.framer-v-w3i8k4 .framer-1jxpqxg, .framer-VtcJy.framer-v-119p84o .framer-1jxpqxg, .framer-VtcJy.framer-v-1054cex .framer-1jxpqxg, .framer-VtcJy.framer-v-1nebkzx .framer-1jxpqxg, .framer-VtcJy.framer-v-1ywr14l .framer-1jxpqxg, .framer-VtcJy.framer-v-c2yroa .framer-1jxpqxg, .framer-VtcJy.framer-v-opsq4w .framer-1jxpqxg, .framer-VtcJy.framer-v-1gj6ddj .framer-1jxpqxg, .framer-VtcJy.framer-v-1smrd5s .framer-1jxpqxg, .framer-VtcJy.framer-v-1qpav74 .framer-1jxpqxg { height: 304px; left: calc(50.00000000000002% - 749px / 2); top: calc(50.331125827814596% - 304px / 2); width: 749px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-1rrkp5q, .framer-VtcJy.framer-v-w3i8k4 .framer-1rrkp5q, .framer-VtcJy.framer-v-119p84o .framer-1rrkp5q, .framer-VtcJy.framer-v-1054cex .framer-1rrkp5q, .framer-VtcJy.framer-v-1nebkzx .framer-1rrkp5q, .framer-VtcJy.framer-v-1ywr14l .framer-1rrkp5q, .framer-VtcJy.framer-v-c2yroa .framer-1rrkp5q, .framer-VtcJy.framer-v-opsq4w .framer-1rrkp5q, .framer-VtcJy.framer-v-1gj6ddj .framer-1rrkp5q, .framer-VtcJy.framer-v-1smrd5s .framer-1rrkp5q, .framer-VtcJy.framer-v-1qpav74 .framer-1rrkp5q { bottom: 34px; left: 3px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-1qyfldi, .framer-VtcJy.framer-v-w3i8k4 .framer-1qyfldi, .framer-VtcJy.framer-v-119p84o .framer-1qyfldi, .framer-VtcJy.framer-v-1054cex .framer-1qyfldi, .framer-VtcJy.framer-v-1nebkzx .framer-1qyfldi, .framer-VtcJy.framer-v-1ywr14l .framer-1qyfldi, .framer-VtcJy.framer-v-c2yroa .framer-1qyfldi, .framer-VtcJy.framer-v-opsq4w .framer-1qyfldi, .framer-VtcJy.framer-v-1gj6ddj .framer-1qyfldi, .framer-VtcJy.framer-v-1smrd5s .framer-1qyfldi, .framer-VtcJy.framer-v-1qpav74 .framer-1qyfldi { bottom: 15px; left: 116px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-c9ke7x, .framer-VtcJy.framer-v-w3i8k4 .framer-c9ke7x, .framer-VtcJy.framer-v-119p84o .framer-c9ke7x, .framer-VtcJy.framer-v-1054cex .framer-c9ke7x, .framer-VtcJy.framer-v-1nebkzx .framer-c9ke7x, .framer-VtcJy.framer-v-1ywr14l .framer-c9ke7x, .framer-VtcJy.framer-v-c2yroa .framer-c9ke7x, .framer-VtcJy.framer-v-opsq4w .framer-c9ke7x, .framer-VtcJy.framer-v-1gj6ddj .framer-c9ke7x, .framer-VtcJy.framer-v-1smrd5s .framer-c9ke7x, .framer-VtcJy.framer-v-1qpav74 .framer-c9ke7x { top: 32px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-1lav55f, .framer-VtcJy.framer-v-w3i8k4 .framer-1lav55f, .framer-VtcJy.framer-v-119p84o .framer-1lav55f, .framer-VtcJy.framer-v-1054cex .framer-1lav55f, .framer-VtcJy.framer-v-1nebkzx .framer-1lav55f, .framer-VtcJy.framer-v-1ywr14l .framer-1lav55f, .framer-VtcJy.framer-v-c2yroa .framer-1lav55f, .framer-VtcJy.framer-v-opsq4w .framer-1lav55f, .framer-VtcJy.framer-v-1gj6ddj .framer-1lav55f, .framer-VtcJy.framer-v-1smrd5s .framer-1lav55f, .framer-VtcJy.framer-v-1qpav74 .framer-1lav55f { right: 254px; top: 15px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-1mhvot9, .framer-VtcJy.framer-v-w3i8k4 .framer-1mhvot9, .framer-VtcJy.framer-v-119p84o .framer-1mhvot9, .framer-VtcJy.framer-v-1054cex .framer-1mhvot9, .framer-VtcJy.framer-v-1nebkzx .framer-1mhvot9, .framer-VtcJy.framer-v-1ywr14l .framer-1mhvot9, .framer-VtcJy.framer-v-c2yroa .framer-1mhvot9, .framer-VtcJy.framer-v-opsq4w .framer-1mhvot9, .framer-VtcJy.framer-v-1gj6ddj .framer-1mhvot9, .framer-VtcJy.framer-v-1smrd5s .framer-1mhvot9, .framer-VtcJy.framer-v-1qpav74 .framer-1mhvot9 { left: 17px; top: 17px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-vpkvm, .framer-VtcJy.framer-v-b50ajf .framer-vpkvm, .framer-VtcJy.framer-v-w3i8k4 .framer-vpkvm, .framer-VtcJy.framer-v-119p84o .framer-vpkvm, .framer-VtcJy.framer-v-1054cex .framer-vpkvm, .framer-VtcJy.framer-v-1nebkzx .framer-vpkvm, .framer-VtcJy.framer-v-1ywr14l .framer-vpkvm, .framer-VtcJy.framer-v-c2yroa .framer-vpkvm, .framer-VtcJy.framer-v-opsq4w .framer-vpkvm, .framer-VtcJy.framer-v-1gj6ddj .framer-vpkvm, .framer-VtcJy.framer-v-1smrd5s .framer-vpkvm, .framer-VtcJy.framer-v-1qpav74 .framer-vpkvm, .framer-VtcJy.framer-v-t87m0z .framer-vpkvm, .framer-VtcJy.framer-v-kq0an7 .framer-vpkvm, .framer-VtcJy.framer-v-1mdfq1s .framer-vpkvm, .framer-VtcJy.framer-v-kebfqj .framer-vpkvm, .framer-VtcJy.framer-v-iheee7 .framer-vpkvm, .framer-VtcJy.framer-v-1qx8yq8 .framer-vpkvm, .framer-VtcJy.framer-v-1qm3gd4 .framer-vpkvm, .framer-VtcJy.framer-v-3ms2jp .framer-vpkvm, .framer-VtcJy.framer-v-1xfers8 .framer-vpkvm, .framer-VtcJy.framer-v-mw74pa .framer-vpkvm { left: 49%; top: 49px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-1qi63tf, .framer-VtcJy.framer-v-w3i8k4 .framer-1qi63tf, .framer-VtcJy.framer-v-119p84o .framer-1qi63tf, .framer-VtcJy.framer-v-1054cex .framer-1qi63tf, .framer-VtcJy.framer-v-1nebkzx .framer-1qi63tf, .framer-VtcJy.framer-v-1ywr14l .framer-1qi63tf, .framer-VtcJy.framer-v-c2yroa .framer-1qi63tf, .framer-VtcJy.framer-v-opsq4w .framer-1qi63tf, .framer-VtcJy.framer-v-1gj6ddj .framer-1qi63tf, .framer-VtcJy.framer-v-1smrd5s .framer-1qi63tf, .framer-VtcJy.framer-v-1qpav74 .framer-1qi63tf { height: var(--framer-aspect-ratio-supported, 84px); width: 84px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-uhveju, .framer-VtcJy.framer-v-7cvrmj .framer-1jzvw5i, .framer-VtcJy.framer-v-w3i8k4 .framer-uhveju, .framer-VtcJy.framer-v-w3i8k4 .framer-1jzvw5i, .framer-VtcJy.framer-v-119p84o .framer-uhveju, .framer-VtcJy.framer-v-119p84o .framer-1jzvw5i, .framer-VtcJy.framer-v-1054cex .framer-uhveju, .framer-VtcJy.framer-v-1054cex .framer-1jzvw5i, .framer-VtcJy.framer-v-1nebkzx .framer-uhveju, .framer-VtcJy.framer-v-1nebkzx .framer-1jzvw5i, .framer-VtcJy.framer-v-1ywr14l .framer-uhveju, .framer-VtcJy.framer-v-1ywr14l .framer-1jzvw5i, .framer-VtcJy.framer-v-c2yroa .framer-uhveju, .framer-VtcJy.framer-v-c2yroa .framer-1jzvw5i, .framer-VtcJy.framer-v-opsq4w .framer-uhveju, .framer-VtcJy.framer-v-opsq4w .framer-1jzvw5i, .framer-VtcJy.framer-v-1gj6ddj .framer-uhveju, .framer-VtcJy.framer-v-1gj6ddj .framer-1jzvw5i, .framer-VtcJy.framer-v-1smrd5s .framer-uhveju, .framer-VtcJy.framer-v-1smrd5s .framer-1jzvw5i, .framer-VtcJy.framer-v-1qpav74 .framer-uhveju, .framer-VtcJy.framer-v-1qpav74 .framer-1jzvw5i { aspect-ratio: unset; height: 70px; width: 60px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-17am3t6, .framer-VtcJy.framer-v-w3i8k4 .framer-17am3t6, .framer-VtcJy.framer-v-119p84o .framer-17am3t6, .framer-VtcJy.framer-v-1054cex .framer-17am3t6, .framer-VtcJy.framer-v-1nebkzx .framer-17am3t6, .framer-VtcJy.framer-v-1ywr14l .framer-17am3t6, .framer-VtcJy.framer-v-c2yroa .framer-17am3t6, .framer-VtcJy.framer-v-opsq4w .framer-17am3t6, .framer-VtcJy.framer-v-1gj6ddj .framer-17am3t6, .framer-VtcJy.framer-v-1smrd5s .framer-17am3t6, .framer-VtcJy.framer-v-1qpav74 .framer-17am3t6 { right: 57px; top: 142px; width: 91px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-rajt8n, .framer-VtcJy.framer-v-w3i8k4 .framer-rajt8n, .framer-VtcJy.framer-v-119p84o .framer-rajt8n, .framer-VtcJy.framer-v-1054cex .framer-rajt8n, .framer-VtcJy.framer-v-1nebkzx .framer-rajt8n, .framer-VtcJy.framer-v-1ywr14l .framer-rajt8n, .framer-VtcJy.framer-v-c2yroa .framer-rajt8n, .framer-VtcJy.framer-v-opsq4w .framer-rajt8n, .framer-VtcJy.framer-v-1gj6ddj .framer-rajt8n, .framer-VtcJy.framer-v-1smrd5s .framer-rajt8n, .framer-VtcJy.framer-v-1qpav74 .framer-rajt8n { bottom: -31px; right: 197px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-1r0ou8u, .framer-VtcJy.framer-v-w3i8k4 .framer-1r0ou8u, .framer-VtcJy.framer-v-119p84o .framer-1r0ou8u, .framer-VtcJy.framer-v-1054cex .framer-1r0ou8u, .framer-VtcJy.framer-v-1nebkzx .framer-1r0ou8u, .framer-VtcJy.framer-v-1ywr14l .framer-1r0ou8u, .framer-VtcJy.framer-v-c2yroa .framer-1r0ou8u, .framer-VtcJy.framer-v-opsq4w .framer-1r0ou8u, .framer-VtcJy.framer-v-1gj6ddj .framer-1r0ou8u, .framer-VtcJy.framer-v-1smrd5s .framer-1r0ou8u, .framer-VtcJy.framer-v-1qpav74 .framer-1r0ou8u { height: var(--framer-aspect-ratio-supported, 68px); width: 88px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-1q527xf, .framer-VtcJy.framer-v-w3i8k4 .framer-1q527xf, .framer-VtcJy.framer-v-119p84o .framer-1q527xf, .framer-VtcJy.framer-v-1054cex .framer-1q527xf, .framer-VtcJy.framer-v-1nebkzx .framer-1q527xf, .framer-VtcJy.framer-v-1ywr14l .framer-1q527xf, .framer-VtcJy.framer-v-c2yroa .framer-1q527xf, .framer-VtcJy.framer-v-opsq4w .framer-1q527xf, .framer-VtcJy.framer-v-1gj6ddj .framer-1q527xf, .framer-VtcJy.framer-v-1smrd5s .framer-1q527xf, .framer-VtcJy.framer-v-1qpav74 .framer-1q527xf { bottom: -74px; right: 164px; width: 156px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-1p4w6hw, .framer-VtcJy.framer-v-w3i8k4 .framer-1p4w6hw, .framer-VtcJy.framer-v-119p84o .framer-1p4w6hw, .framer-VtcJy.framer-v-1054cex .framer-1p4w6hw, .framer-VtcJy.framer-v-1nebkzx .framer-1p4w6hw, .framer-VtcJy.framer-v-1ywr14l .framer-1p4w6hw, .framer-VtcJy.framer-v-c2yroa .framer-1p4w6hw, .framer-VtcJy.framer-v-opsq4w .framer-1p4w6hw, .framer-VtcJy.framer-v-1gj6ddj .framer-1p4w6hw, .framer-VtcJy.framer-v-1smrd5s .framer-1p4w6hw, .framer-VtcJy.framer-v-1qpav74 .framer-1p4w6hw { bottom: -23px; left: 193px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-1da4lxb, .framer-VtcJy.framer-v-w3i8k4 .framer-1da4lxb, .framer-VtcJy.framer-v-119p84o .framer-1da4lxb, .framer-VtcJy.framer-v-1054cex .framer-1da4lxb, .framer-VtcJy.framer-v-1nebkzx .framer-1da4lxb, .framer-VtcJy.framer-v-1ywr14l .framer-1da4lxb, .framer-VtcJy.framer-v-c2yroa .framer-1da4lxb, .framer-VtcJy.framer-v-opsq4w .framer-1da4lxb, .framer-VtcJy.framer-v-1gj6ddj .framer-1da4lxb, .framer-VtcJy.framer-v-1smrd5s .framer-1da4lxb, .framer-VtcJy.framer-v-1qpav74 .framer-1da4lxb { bottom: -74px; left: 172px; width: 105px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-4ok0ba, .framer-VtcJy.framer-v-w3i8k4 .framer-4ok0ba, .framer-VtcJy.framer-v-119p84o .framer-4ok0ba, .framer-VtcJy.framer-v-1054cex .framer-4ok0ba, .framer-VtcJy.framer-v-1nebkzx .framer-4ok0ba, .framer-VtcJy.framer-v-1ywr14l .framer-4ok0ba, .framer-VtcJy.framer-v-c2yroa .framer-4ok0ba, .framer-VtcJy.framer-v-opsq4w .framer-4ok0ba, .framer-VtcJy.framer-v-1gj6ddj .framer-4ok0ba, .framer-VtcJy.framer-v-1smrd5s .framer-4ok0ba, .framer-VtcJy.framer-v-1qpav74 .framer-4ok0ba { height: var(--framer-aspect-ratio-supported, 74px); width: 63px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-kwbod2, .framer-VtcJy.framer-v-w3i8k4 .framer-kwbod2, .framer-VtcJy.framer-v-119p84o .framer-kwbod2, .framer-VtcJy.framer-v-1054cex .framer-kwbod2, .framer-VtcJy.framer-v-1nebkzx .framer-kwbod2, .framer-VtcJy.framer-v-1ywr14l .framer-kwbod2, .framer-VtcJy.framer-v-c2yroa .framer-kwbod2, .framer-VtcJy.framer-v-opsq4w .framer-kwbod2, .framer-VtcJy.framer-v-1gj6ddj .framer-kwbod2, .framer-VtcJy.framer-v-1smrd5s .framer-kwbod2, .framer-VtcJy.framer-v-1qpav74 .framer-kwbod2 { left: 57px; top: 138px; width: 111px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-3szvy4-container, .framer-VtcJy.framer-v-w3i8k4 .framer-3szvy4-container, .framer-VtcJy.framer-v-119p84o .framer-3szvy4-container, .framer-VtcJy.framer-v-1054cex .framer-3szvy4-container, .framer-VtcJy.framer-v-1nebkzx .framer-3szvy4-container, .framer-VtcJy.framer-v-1ywr14l .framer-3szvy4-container, .framer-VtcJy.framer-v-c2yroa .framer-3szvy4-container, .framer-VtcJy.framer-v-opsq4w .framer-3szvy4-container, .framer-VtcJy.framer-v-1gj6ddj .framer-3szvy4-container, .framer-VtcJy.framer-v-1smrd5s .framer-3szvy4-container, .framer-VtcJy.framer-v-1qpav74 .framer-3szvy4-container { height: 30px; left: 188px; top: -12px; width: 30px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-p6zxy9-container, .framer-VtcJy.framer-v-w3i8k4 .framer-p6zxy9-container, .framer-VtcJy.framer-v-119p84o .framer-p6zxy9-container, .framer-VtcJy.framer-v-1054cex .framer-p6zxy9-container, .framer-VtcJy.framer-v-1nebkzx .framer-p6zxy9-container, .framer-VtcJy.framer-v-1ywr14l .framer-p6zxy9-container, .framer-VtcJy.framer-v-c2yroa .framer-p6zxy9-container, .framer-VtcJy.framer-v-opsq4w .framer-p6zxy9-container, .framer-VtcJy.framer-v-1gj6ddj .framer-p6zxy9-container, .framer-VtcJy.framer-v-1smrd5s .framer-p6zxy9-container, .framer-VtcJy.framer-v-1qpav74 .framer-p6zxy9-container { bottom: 11px; height: 30px; left: 69px; width: 30px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-1kka5er-container, .framer-VtcJy.framer-v-w3i8k4 .framer-1kka5er-container, .framer-VtcJy.framer-v-119p84o .framer-1kka5er-container, .framer-VtcJy.framer-v-1054cex .framer-1kka5er-container, .framer-VtcJy.framer-v-1nebkzx .framer-1kka5er-container, .framer-VtcJy.framer-v-1ywr14l .framer-1kka5er-container, .framer-VtcJy.framer-v-c2yroa .framer-1kka5er-container, .framer-VtcJy.framer-v-opsq4w .framer-1kka5er-container, .framer-VtcJy.framer-v-1gj6ddj .framer-1kka5er-container, .framer-VtcJy.framer-v-1smrd5s .framer-1kka5er-container, .framer-VtcJy.framer-v-1qpav74 .framer-1kka5er-container { bottom: -13px; height: 30px; left: calc(50.00000000000002% - 30px / 2); width: 30px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-172uxau-container, .framer-VtcJy.framer-v-w3i8k4 .framer-172uxau-container, .framer-VtcJy.framer-v-119p84o .framer-172uxau-container, .framer-VtcJy.framer-v-1054cex .framer-172uxau-container, .framer-VtcJy.framer-v-1nebkzx .framer-172uxau-container, .framer-VtcJy.framer-v-1ywr14l .framer-172uxau-container, .framer-VtcJy.framer-v-c2yroa .framer-172uxau-container, .framer-VtcJy.framer-v-opsq4w .framer-172uxau-container, .framer-VtcJy.framer-v-1gj6ddj .framer-172uxau-container, .framer-VtcJy.framer-v-1smrd5s .framer-172uxau-container, .framer-VtcJy.framer-v-1qpav74 .framer-172uxau-container { bottom: 19px; height: 30px; right: 57px; width: 30px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-t10qkn-container, .framer-VtcJy.framer-v-w3i8k4 .framer-t10qkn-container, .framer-VtcJy.framer-v-119p84o .framer-t10qkn-container, .framer-VtcJy.framer-v-1054cex .framer-t10qkn-container, .framer-VtcJy.framer-v-1nebkzx .framer-t10qkn-container, .framer-VtcJy.framer-v-1ywr14l .framer-t10qkn-container, .framer-VtcJy.framer-v-c2yroa .framer-t10qkn-container, .framer-VtcJy.framer-v-opsq4w .framer-t10qkn-container, .framer-VtcJy.framer-v-1gj6ddj .framer-t10qkn-container, .framer-VtcJy.framer-v-1smrd5s .framer-t10qkn-container, .framer-VtcJy.framer-v-1qpav74 .framer-t10qkn-container { height: 30px; right: 193px; top: -12px; width: 30px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-10hd5n9-container, .framer-VtcJy.framer-v-w3i8k4 .framer-10hd5n9-container, .framer-VtcJy.framer-v-119p84o .framer-10hd5n9-container, .framer-VtcJy.framer-v-1054cex .framer-10hd5n9-container, .framer-VtcJy.framer-v-1nebkzx .framer-10hd5n9-container, .framer-VtcJy.framer-v-1ywr14l .framer-10hd5n9-container, .framer-VtcJy.framer-v-c2yroa .framer-10hd5n9-container, .framer-VtcJy.framer-v-opsq4w .framer-10hd5n9-container, .framer-VtcJy.framer-v-1gj6ddj .framer-10hd5n9-container, .framer-VtcJy.framer-v-1smrd5s .framer-10hd5n9-container, .framer-VtcJy.framer-v-1qpav74 .framer-10hd5n9-container { height: var(--framer-aspect-ratio-supported, 37px); left: 288px; top: -59px; width: 75px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-k6cmcx-container, .framer-VtcJy.framer-v-w3i8k4 .framer-k6cmcx-container, .framer-VtcJy.framer-v-119p84o .framer-k6cmcx-container, .framer-VtcJy.framer-v-1054cex .framer-k6cmcx-container, .framer-VtcJy.framer-v-1nebkzx .framer-k6cmcx-container, .framer-VtcJy.framer-v-1ywr14l .framer-k6cmcx-container, .framer-VtcJy.framer-v-c2yroa .framer-k6cmcx-container, .framer-VtcJy.framer-v-opsq4w .framer-k6cmcx-container, .framer-VtcJy.framer-v-1gj6ddj .framer-k6cmcx-container, .framer-VtcJy.framer-v-1smrd5s .framer-k6cmcx-container, .framer-VtcJy.framer-v-1qpav74 .framer-k6cmcx-container { height: var(--framer-aspect-ratio-supported, 37px); right: 10px; top: 106px; width: 75px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-x6n9pk-container, .framer-VtcJy.framer-v-w3i8k4 .framer-x6n9pk-container, .framer-VtcJy.framer-v-119p84o .framer-x6n9pk-container, .framer-VtcJy.framer-v-1054cex .framer-x6n9pk-container, .framer-VtcJy.framer-v-1nebkzx .framer-x6n9pk-container, .framer-VtcJy.framer-v-1ywr14l .framer-x6n9pk-container, .framer-VtcJy.framer-v-c2yroa .framer-x6n9pk-container, .framer-VtcJy.framer-v-opsq4w .framer-x6n9pk-container, .framer-VtcJy.framer-v-1gj6ddj .framer-x6n9pk-container, .framer-VtcJy.framer-v-1smrd5s .framer-x6n9pk-container, .framer-VtcJy.framer-v-1qpav74 .framer-x6n9pk-container { bottom: 24px; height: var(--framer-aspect-ratio-supported, 37px); right: 263px; width: 75px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-16au1vx-container, .framer-VtcJy.framer-v-w3i8k4 .framer-16au1vx-container, .framer-VtcJy.framer-v-119p84o .framer-16au1vx-container, .framer-VtcJy.framer-v-1054cex .framer-16au1vx-container, .framer-VtcJy.framer-v-1nebkzx .framer-16au1vx-container, .framer-VtcJy.framer-v-1ywr14l .framer-16au1vx-container, .framer-VtcJy.framer-v-c2yroa .framer-16au1vx-container, .framer-VtcJy.framer-v-opsq4w .framer-16au1vx-container, .framer-VtcJy.framer-v-1smrd5s .framer-16au1vx-container, .framer-VtcJy.framer-v-1qpav74 .framer-16au1vx-container { bottom: 16px; height: var(--framer-aspect-ratio-supported, 37px); left: 157px; width: 75px; }\",\".framer-VtcJy.framer-v-7cvrmj .framer-1p3qyf6-container, .framer-VtcJy.framer-v-w3i8k4 .framer-1p3qyf6-container, .framer-VtcJy.framer-v-119p84o .framer-1p3qyf6-container, .framer-VtcJy.framer-v-1054cex .framer-1p3qyf6-container, .framer-VtcJy.framer-v-1nebkzx .framer-1p3qyf6-container, .framer-VtcJy.framer-v-1ywr14l .framer-1p3qyf6-container, .framer-VtcJy.framer-v-c2yroa .framer-1p3qyf6-container, .framer-VtcJy.framer-v-opsq4w .framer-1p3qyf6-container, .framer-VtcJy.framer-v-1gj6ddj .framer-1p3qyf6-container, .framer-VtcJy.framer-v-1smrd5s .framer-1p3qyf6-container, .framer-VtcJy.framer-v-1qpav74 .framer-1p3qyf6-container { height: var(--framer-aspect-ratio-supported, 37px); left: 53px; top: 99px; width: 75px; }\",\".framer-VtcJy.framer-v-b50ajf.framer-byg925, .framer-VtcJy.framer-v-t87m0z.framer-byg925, .framer-VtcJy.framer-v-kq0an7.framer-byg925, .framer-VtcJy.framer-v-1mdfq1s.framer-byg925, .framer-VtcJy.framer-v-kebfqj.framer-byg925, .framer-VtcJy.framer-v-iheee7.framer-byg925, .framer-VtcJy.framer-v-1qx8yq8.framer-byg925, .framer-VtcJy.framer-v-1qm3gd4.framer-byg925, .framer-VtcJy.framer-v-3ms2jp.framer-byg925, .framer-VtcJy.framer-v-1xfers8.framer-byg925, .framer-VtcJy.framer-v-mw74pa.framer-byg925 { padding: 60px 24px 124px 24px; width: 390px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-1rc0j38, .framer-VtcJy.framer-v-t87m0z .framer-1rc0j38, .framer-VtcJy.framer-v-kq0an7 .framer-1rc0j38, .framer-VtcJy.framer-v-1mdfq1s .framer-1rc0j38, .framer-VtcJy.framer-v-kebfqj .framer-1rc0j38, .framer-VtcJy.framer-v-iheee7 .framer-1rc0j38, .framer-VtcJy.framer-v-1qx8yq8 .framer-1rc0j38, .framer-VtcJy.framer-v-1qm3gd4 .framer-1rc0j38, .framer-VtcJy.framer-v-3ms2jp .framer-1rc0j38, .framer-VtcJy.framer-v-1xfers8 .framer-1rc0j38, .framer-VtcJy.framer-v-mw74pa .framer-1rc0j38 { width: 342px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-1jxpqxg, .framer-VtcJy.framer-v-t87m0z .framer-1jxpqxg, .framer-VtcJy.framer-v-kq0an7 .framer-1jxpqxg, .framer-VtcJy.framer-v-1mdfq1s .framer-1jxpqxg, .framer-VtcJy.framer-v-kebfqj .framer-1jxpqxg, .framer-VtcJy.framer-v-iheee7 .framer-1jxpqxg, .framer-VtcJy.framer-v-1qx8yq8 .framer-1jxpqxg, .framer-VtcJy.framer-v-1qm3gd4 .framer-1jxpqxg, .framer-VtcJy.framer-v-3ms2jp .framer-1jxpqxg, .framer-VtcJy.framer-v-1xfers8 .framer-1jxpqxg, .framer-VtcJy.framer-v-mw74pa .framer-1jxpqxg { height: 304px; left: calc(49.3438320209974% - 378px / 2); top: calc(50.331125827814596% - 304px / 2); width: 378px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-1rrkp5q, .framer-VtcJy.framer-v-t87m0z .framer-1rrkp5q, .framer-VtcJy.framer-v-kq0an7 .framer-1rrkp5q, .framer-VtcJy.framer-v-1mdfq1s .framer-1rrkp5q, .framer-VtcJy.framer-v-kebfqj .framer-1rrkp5q, .framer-VtcJy.framer-v-iheee7 .framer-1rrkp5q, .framer-VtcJy.framer-v-1qx8yq8 .framer-1rrkp5q, .framer-VtcJy.framer-v-1qm3gd4 .framer-1rrkp5q, .framer-VtcJy.framer-v-3ms2jp .framer-1rrkp5q, .framer-VtcJy.framer-v-1xfers8 .framer-1rrkp5q, .framer-VtcJy.framer-v-mw74pa .framer-1rrkp5q { bottom: 74px; left: 3px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-1xksquy, .framer-VtcJy.framer-v-t87m0z .framer-1xksquy, .framer-VtcJy.framer-v-kq0an7 .framer-1xksquy, .framer-VtcJy.framer-v-1mdfq1s .framer-1xksquy, .framer-VtcJy.framer-v-kebfqj .framer-1xksquy, .framer-VtcJy.framer-v-iheee7 .framer-1xksquy, .framer-VtcJy.framer-v-1qx8yq8 .framer-1xksquy, .framer-VtcJy.framer-v-1qm3gd4 .framer-1xksquy, .framer-VtcJy.framer-v-3ms2jp .framer-1xksquy, .framer-VtcJy.framer-v-1xfers8 .framer-1xksquy, .framer-VtcJy.framer-v-mw74pa .framer-1xksquy { bottom: 75px; right: 10px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-1qyfldi, .framer-VtcJy.framer-v-t87m0z .framer-1qyfldi, .framer-VtcJy.framer-v-kq0an7 .framer-1qyfldi, .framer-VtcJy.framer-v-1mdfq1s .framer-1qyfldi, .framer-VtcJy.framer-v-kebfqj .framer-1qyfldi, .framer-VtcJy.framer-v-iheee7 .framer-1qyfldi, .framer-VtcJy.framer-v-1qx8yq8 .framer-1qyfldi, .framer-VtcJy.framer-v-1qm3gd4 .framer-1qyfldi, .framer-VtcJy.framer-v-3ms2jp .framer-1qyfldi, .framer-VtcJy.framer-v-1xfers8 .framer-1qyfldi, .framer-VtcJy.framer-v-mw74pa .framer-1qyfldi { bottom: -25px; left: 12px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-c9ke7x, .framer-VtcJy.framer-v-t87m0z .framer-c9ke7x, .framer-VtcJy.framer-v-kq0an7 .framer-c9ke7x, .framer-VtcJy.framer-v-1mdfq1s .framer-c9ke7x, .framer-VtcJy.framer-v-kebfqj .framer-c9ke7x, .framer-VtcJy.framer-v-iheee7 .framer-c9ke7x, .framer-VtcJy.framer-v-1qx8yq8 .framer-c9ke7x, .framer-VtcJy.framer-v-1qm3gd4 .framer-c9ke7x, .framer-VtcJy.framer-v-3ms2jp .framer-c9ke7x, .framer-VtcJy.framer-v-1xfers8 .framer-c9ke7x, .framer-VtcJy.framer-v-mw74pa .framer-c9ke7x { top: 72px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-1lav55f, .framer-VtcJy.framer-v-t87m0z .framer-1lav55f, .framer-VtcJy.framer-v-kq0an7 .framer-1lav55f, .framer-VtcJy.framer-v-1mdfq1s .framer-1lav55f, .framer-VtcJy.framer-v-kebfqj .framer-1lav55f, .framer-VtcJy.framer-v-iheee7 .framer-1lav55f, .framer-VtcJy.framer-v-1qx8yq8 .framer-1lav55f, .framer-VtcJy.framer-v-1qm3gd4 .framer-1lav55f, .framer-VtcJy.framer-v-3ms2jp .framer-1lav55f, .framer-VtcJy.framer-v-1xfers8 .framer-1lav55f, .framer-VtcJy.framer-v-mw74pa .framer-1lav55f { right: 78px; top: 15px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-1mhvot9, .framer-VtcJy.framer-v-t87m0z .framer-1mhvot9, .framer-VtcJy.framer-v-kq0an7 .framer-1mhvot9, .framer-VtcJy.framer-v-1mdfq1s .framer-1mhvot9, .framer-VtcJy.framer-v-kebfqj .framer-1mhvot9, .framer-VtcJy.framer-v-iheee7 .framer-1mhvot9, .framer-VtcJy.framer-v-1qx8yq8 .framer-1mhvot9, .framer-VtcJy.framer-v-1qm3gd4 .framer-1mhvot9, .framer-VtcJy.framer-v-3ms2jp .framer-1mhvot9, .framer-VtcJy.framer-v-1xfers8 .framer-1mhvot9, .framer-VtcJy.framer-v-mw74pa .framer-1mhvot9 { left: 1px; top: 49px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-1pshzl8, .framer-VtcJy.framer-v-t87m0z .framer-1pshzl8, .framer-VtcJy.framer-v-kq0an7 .framer-1pshzl8, .framer-VtcJy.framer-v-1mdfq1s .framer-1pshzl8, .framer-VtcJy.framer-v-kebfqj .framer-1pshzl8, .framer-VtcJy.framer-v-iheee7 .framer-1pshzl8, .framer-VtcJy.framer-v-1qx8yq8 .framer-1pshzl8, .framer-VtcJy.framer-v-1qm3gd4 .framer-1pshzl8, .framer-VtcJy.framer-v-3ms2jp .framer-1pshzl8, .framer-VtcJy.framer-v-1xfers8 .framer-1pshzl8, .framer-VtcJy.framer-v-mw74pa .framer-1pshzl8 { top: -32px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-1qi63tf, .framer-VtcJy.framer-v-t87m0z .framer-1qi63tf, .framer-VtcJy.framer-v-kq0an7 .framer-1qi63tf, .framer-VtcJy.framer-v-1mdfq1s .framer-1qi63tf, .framer-VtcJy.framer-v-kebfqj .framer-1qi63tf, .framer-VtcJy.framer-v-iheee7 .framer-1qi63tf, .framer-VtcJy.framer-v-1qx8yq8 .framer-1qi63tf, .framer-VtcJy.framer-v-1qm3gd4 .framer-1qi63tf, .framer-VtcJy.framer-v-3ms2jp .framer-1qi63tf, .framer-VtcJy.framer-v-1xfers8 .framer-1qi63tf, .framer-VtcJy.framer-v-mw74pa .framer-1qi63tf { height: var(--framer-aspect-ratio-supported, 70px); order: 0; width: 70px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-uhveju, .framer-VtcJy.framer-v-t87m0z .framer-uhveju, .framer-VtcJy.framer-v-kq0an7 .framer-uhveju, .framer-VtcJy.framer-v-1mdfq1s .framer-uhveju, .framer-VtcJy.framer-v-kebfqj .framer-uhveju, .framer-VtcJy.framer-v-iheee7 .framer-uhveju, .framer-VtcJy.framer-v-1qx8yq8 .framer-uhveju, .framer-VtcJy.framer-v-1qm3gd4 .framer-uhveju, .framer-VtcJy.framer-v-3ms2jp .framer-uhveju, .framer-VtcJy.framer-v-1xfers8 .framer-uhveju, .framer-VtcJy.framer-v-mw74pa .framer-uhveju { aspect-ratio: unset; height: 61px; width: 52px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-17am3t6, .framer-VtcJy.framer-v-t87m0z .framer-17am3t6, .framer-VtcJy.framer-v-kq0an7 .framer-17am3t6, .framer-VtcJy.framer-v-1mdfq1s .framer-17am3t6, .framer-VtcJy.framer-v-kebfqj .framer-17am3t6, .framer-VtcJy.framer-v-iheee7 .framer-17am3t6, .framer-VtcJy.framer-v-1qx8yq8 .framer-17am3t6, .framer-VtcJy.framer-v-1qm3gd4 .framer-17am3t6, .framer-VtcJy.framer-v-3ms2jp .framer-17am3t6, .framer-VtcJy.framer-v-1xfers8 .framer-17am3t6, .framer-VtcJy.framer-v-mw74pa .framer-17am3t6 { right: 53px; top: 138px; width: 91px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-rajt8n, .framer-VtcJy.framer-v-t87m0z .framer-rajt8n, .framer-VtcJy.framer-v-kq0an7 .framer-rajt8n, .framer-VtcJy.framer-v-1mdfq1s .framer-rajt8n, .framer-VtcJy.framer-v-kebfqj .framer-rajt8n, .framer-VtcJy.framer-v-iheee7 .framer-rajt8n, .framer-VtcJy.framer-v-1qx8yq8 .framer-rajt8n, .framer-VtcJy.framer-v-1qm3gd4 .framer-rajt8n, .framer-VtcJy.framer-v-3ms2jp .framer-rajt8n, .framer-VtcJy.framer-v-1xfers8 .framer-rajt8n, .framer-VtcJy.framer-v-mw74pa .framer-rajt8n { bottom: -29px; right: 64px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-1r0ou8u, .framer-VtcJy.framer-v-t87m0z .framer-1r0ou8u, .framer-VtcJy.framer-v-kq0an7 .framer-1r0ou8u, .framer-VtcJy.framer-v-1mdfq1s .framer-1r0ou8u, .framer-VtcJy.framer-v-kebfqj .framer-1r0ou8u, .framer-VtcJy.framer-v-iheee7 .framer-1r0ou8u, .framer-VtcJy.framer-v-1qx8yq8 .framer-1r0ou8u, .framer-VtcJy.framer-v-1qm3gd4 .framer-1r0ou8u, .framer-VtcJy.framer-v-3ms2jp .framer-1r0ou8u, .framer-VtcJy.framer-v-1xfers8 .framer-1r0ou8u, .framer-VtcJy.framer-v-mw74pa .framer-1r0ou8u { height: var(--framer-aspect-ratio-supported, 54px); width: 70px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-1q527xf, .framer-VtcJy.framer-v-t87m0z .framer-1q527xf, .framer-VtcJy.framer-v-kq0an7 .framer-1q527xf, .framer-VtcJy.framer-v-1mdfq1s .framer-1q527xf, .framer-VtcJy.framer-v-kebfqj .framer-1q527xf, .framer-VtcJy.framer-v-iheee7 .framer-1q527xf, .framer-VtcJy.framer-v-1qx8yq8 .framer-1q527xf, .framer-VtcJy.framer-v-1qm3gd4 .framer-1q527xf, .framer-VtcJy.framer-v-3ms2jp .framer-1q527xf, .framer-VtcJy.framer-v-1xfers8 .framer-1q527xf, .framer-VtcJy.framer-v-mw74pa .framer-1q527xf { bottom: -74px; right: 20px; width: 156px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-1p4w6hw, .framer-VtcJy.framer-v-t87m0z .framer-1p4w6hw, .framer-VtcJy.framer-v-kq0an7 .framer-1p4w6hw, .framer-VtcJy.framer-v-1mdfq1s .framer-1p4w6hw, .framer-VtcJy.framer-v-kebfqj .framer-1p4w6hw, .framer-VtcJy.framer-v-iheee7 .framer-1p4w6hw, .framer-VtcJy.framer-v-1qx8yq8 .framer-1p4w6hw, .framer-VtcJy.framer-v-1qm3gd4 .framer-1p4w6hw, .framer-VtcJy.framer-v-3ms2jp .framer-1p4w6hw, .framer-VtcJy.framer-v-1xfers8 .framer-1p4w6hw, .framer-VtcJy.framer-v-mw74pa .framer-1p4w6hw { bottom: -23px; left: 70px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-1jzvw5i, .framer-VtcJy.framer-v-t87m0z .framer-1jzvw5i, .framer-VtcJy.framer-v-kq0an7 .framer-1jzvw5i, .framer-VtcJy.framer-v-1mdfq1s .framer-1jzvw5i, .framer-VtcJy.framer-v-kebfqj .framer-1jzvw5i, .framer-VtcJy.framer-v-iheee7 .framer-1jzvw5i, .framer-VtcJy.framer-v-1qx8yq8 .framer-1jzvw5i, .framer-VtcJy.framer-v-1qm3gd4 .framer-1jzvw5i, .framer-VtcJy.framer-v-3ms2jp .framer-1jzvw5i, .framer-VtcJy.framer-v-1xfers8 .framer-1jzvw5i, .framer-VtcJy.framer-v-mw74pa .framer-1jzvw5i { aspect-ratio: unset; height: 62px; width: 53px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-1da4lxb, .framer-VtcJy.framer-v-t87m0z .framer-1da4lxb, .framer-VtcJy.framer-v-kq0an7 .framer-1da4lxb, .framer-VtcJy.framer-v-1mdfq1s .framer-1da4lxb, .framer-VtcJy.framer-v-kebfqj .framer-1da4lxb, .framer-VtcJy.framer-v-iheee7 .framer-1da4lxb, .framer-VtcJy.framer-v-1qx8yq8 .framer-1da4lxb, .framer-VtcJy.framer-v-1qm3gd4 .framer-1da4lxb, .framer-VtcJy.framer-v-3ms2jp .framer-1da4lxb, .framer-VtcJy.framer-v-1xfers8 .framer-1da4lxb, .framer-VtcJy.framer-v-mw74pa .framer-1da4lxb { bottom: -74px; left: 44px; width: 105px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-4ok0ba, .framer-VtcJy.framer-v-t87m0z .framer-4ok0ba, .framer-VtcJy.framer-v-kq0an7 .framer-4ok0ba, .framer-VtcJy.framer-v-1mdfq1s .framer-4ok0ba, .framer-VtcJy.framer-v-kebfqj .framer-4ok0ba, .framer-VtcJy.framer-v-iheee7 .framer-4ok0ba, .framer-VtcJy.framer-v-1qx8yq8 .framer-4ok0ba, .framer-VtcJy.framer-v-1qm3gd4 .framer-4ok0ba, .framer-VtcJy.framer-v-3ms2jp .framer-4ok0ba, .framer-VtcJy.framer-v-1xfers8 .framer-4ok0ba, .framer-VtcJy.framer-v-mw74pa .framer-4ok0ba { height: var(--framer-aspect-ratio-supported, 61px); width: 52px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-kwbod2, .framer-VtcJy.framer-v-t87m0z .framer-kwbod2, .framer-VtcJy.framer-v-kq0an7 .framer-kwbod2, .framer-VtcJy.framer-v-1mdfq1s .framer-kwbod2, .framer-VtcJy.framer-v-kebfqj .framer-kwbod2, .framer-VtcJy.framer-v-iheee7 .framer-kwbod2, .framer-VtcJy.framer-v-1qx8yq8 .framer-kwbod2, .framer-VtcJy.framer-v-1qm3gd4 .framer-kwbod2, .framer-VtcJy.framer-v-3ms2jp .framer-kwbod2, .framer-VtcJy.framer-v-1xfers8 .framer-kwbod2, .framer-VtcJy.framer-v-mw74pa .framer-kwbod2 { left: 46px; top: 132px; width: 111px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-3szvy4-container, .framer-VtcJy.framer-v-t87m0z .framer-3szvy4-container, .framer-VtcJy.framer-v-kq0an7 .framer-3szvy4-container, .framer-VtcJy.framer-v-1mdfq1s .framer-3szvy4-container, .framer-VtcJy.framer-v-kebfqj .framer-3szvy4-container, .framer-VtcJy.framer-v-iheee7 .framer-3szvy4-container, .framer-VtcJy.framer-v-1qx8yq8 .framer-3szvy4-container, .framer-VtcJy.framer-v-1qm3gd4 .framer-3szvy4-container, .framer-VtcJy.framer-v-3ms2jp .framer-3szvy4-container, .framer-VtcJy.framer-v-1xfers8 .framer-3szvy4-container, .framer-VtcJy.framer-v-mw74pa .framer-3szvy4-container { height: 20px; left: 17px; top: 9px; width: 20px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-p6zxy9-container, .framer-VtcJy.framer-v-t87m0z .framer-p6zxy9-container, .framer-VtcJy.framer-v-kq0an7 .framer-p6zxy9-container, .framer-VtcJy.framer-v-1mdfq1s .framer-p6zxy9-container, .framer-VtcJy.framer-v-kebfqj .framer-p6zxy9-container, .framer-VtcJy.framer-v-iheee7 .framer-p6zxy9-container, .framer-VtcJy.framer-v-1qx8yq8 .framer-p6zxy9-container, .framer-VtcJy.framer-v-1qm3gd4 .framer-p6zxy9-container, .framer-VtcJy.framer-v-3ms2jp .framer-p6zxy9-container, .framer-VtcJy.framer-v-1xfers8 .framer-p6zxy9-container, .framer-VtcJy.framer-v-mw74pa .framer-p6zxy9-container { bottom: 12px; height: 20px; left: 13px; width: 20px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-1kka5er-container, .framer-VtcJy.framer-v-t87m0z .framer-1kka5er-container, .framer-VtcJy.framer-v-kq0an7 .framer-1kka5er-container, .framer-VtcJy.framer-v-1mdfq1s .framer-1kka5er-container, .framer-VtcJy.framer-v-kebfqj .framer-1kka5er-container, .framer-VtcJy.framer-v-iheee7 .framer-1kka5er-container, .framer-VtcJy.framer-v-1qx8yq8 .framer-1kka5er-container, .framer-VtcJy.framer-v-1qm3gd4 .framer-1kka5er-container, .framer-VtcJy.framer-v-3ms2jp .framer-1kka5er-container, .framer-VtcJy.framer-v-1xfers8 .framer-1kka5er-container, .framer-VtcJy.framer-v-mw74pa .framer-1kka5er-container { bottom: -10px; height: 20px; left: calc(48.24561403508774% - 20px / 2); width: 20px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-172uxau-container, .framer-VtcJy.framer-v-t87m0z .framer-172uxau-container, .framer-VtcJy.framer-v-kq0an7 .framer-172uxau-container, .framer-VtcJy.framer-v-1mdfq1s .framer-172uxau-container, .framer-VtcJy.framer-v-kebfqj .framer-172uxau-container, .framer-VtcJy.framer-v-iheee7 .framer-172uxau-container, .framer-VtcJy.framer-v-1qx8yq8 .framer-172uxau-container, .framer-VtcJy.framer-v-1qm3gd4 .framer-172uxau-container, .framer-VtcJy.framer-v-3ms2jp .framer-172uxau-container, .framer-VtcJy.framer-v-1xfers8 .framer-172uxau-container, .framer-VtcJy.framer-v-mw74pa .framer-172uxau-container { bottom: 9px; height: 20px; right: 19px; width: 20px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-t10qkn-container, .framer-VtcJy.framer-v-t87m0z .framer-t10qkn-container, .framer-VtcJy.framer-v-kq0an7 .framer-t10qkn-container, .framer-VtcJy.framer-v-1mdfq1s .framer-t10qkn-container, .framer-VtcJy.framer-v-kebfqj .framer-t10qkn-container, .framer-VtcJy.framer-v-iheee7 .framer-t10qkn-container, .framer-VtcJy.framer-v-1qx8yq8 .framer-t10qkn-container, .framer-VtcJy.framer-v-1qm3gd4 .framer-t10qkn-container, .framer-VtcJy.framer-v-3ms2jp .framer-t10qkn-container, .framer-VtcJy.framer-v-1xfers8 .framer-t10qkn-container, .framer-VtcJy.framer-v-mw74pa .framer-t10qkn-container { height: 20px; right: 23px; top: 9px; width: 20px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-10hd5n9-container, .framer-VtcJy.framer-v-t87m0z .framer-10hd5n9-container, .framer-VtcJy.framer-v-kq0an7 .framer-10hd5n9-container, .framer-VtcJy.framer-v-1mdfq1s .framer-10hd5n9-container, .framer-VtcJy.framer-v-kebfqj .framer-10hd5n9-container, .framer-VtcJy.framer-v-iheee7 .framer-10hd5n9-container, .framer-VtcJy.framer-v-1qx8yq8 .framer-10hd5n9-container, .framer-VtcJy.framer-v-1qm3gd4 .framer-10hd5n9-container, .framer-VtcJy.framer-v-3ms2jp .framer-10hd5n9-container, .framer-VtcJy.framer-v-1xfers8 .framer-10hd5n9-container, .framer-VtcJy.framer-v-mw74pa .framer-10hd5n9-container { height: var(--framer-aspect-ratio-supported, 29px); left: 96px; top: -51px; width: 60px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-k6cmcx-container, .framer-VtcJy.framer-v-t87m0z .framer-k6cmcx-container, .framer-VtcJy.framer-v-kq0an7 .framer-k6cmcx-container, .framer-VtcJy.framer-v-1mdfq1s .framer-k6cmcx-container, .framer-VtcJy.framer-v-kebfqj .framer-k6cmcx-container, .framer-VtcJy.framer-v-iheee7 .framer-k6cmcx-container, .framer-VtcJy.framer-v-1qx8yq8 .framer-k6cmcx-container, .framer-VtcJy.framer-v-1qm3gd4 .framer-k6cmcx-container, .framer-VtcJy.framer-v-3ms2jp .framer-k6cmcx-container, .framer-VtcJy.framer-v-1xfers8 .framer-k6cmcx-container, .framer-VtcJy.framer-v-mw74pa .framer-k6cmcx-container { height: var(--framer-aspect-ratio-supported, 29px); right: 8px; top: 111px; width: 60px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-x6n9pk-container, .framer-VtcJy.framer-v-t87m0z .framer-x6n9pk-container, .framer-VtcJy.framer-v-kq0an7 .framer-x6n9pk-container, .framer-VtcJy.framer-v-1mdfq1s .framer-x6n9pk-container, .framer-VtcJy.framer-v-kebfqj .framer-x6n9pk-container, .framer-VtcJy.framer-v-iheee7 .framer-x6n9pk-container, .framer-VtcJy.framer-v-1qx8yq8 .framer-x6n9pk-container, .framer-VtcJy.framer-v-1qm3gd4 .framer-x6n9pk-container, .framer-VtcJy.framer-v-3ms2jp .framer-x6n9pk-container, .framer-VtcJy.framer-v-1xfers8 .framer-x6n9pk-container, .framer-VtcJy.framer-v-mw74pa .framer-x6n9pk-container { bottom: 24px; height: var(--framer-aspect-ratio-supported, 30px); right: 111px; width: 60px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-16au1vx-container, .framer-VtcJy.framer-v-t87m0z .framer-16au1vx-container, .framer-VtcJy.framer-v-kq0an7 .framer-16au1vx-container, .framer-VtcJy.framer-v-1mdfq1s .framer-16au1vx-container, .framer-VtcJy.framer-v-kebfqj .framer-16au1vx-container, .framer-VtcJy.framer-v-iheee7 .framer-16au1vx-container, .framer-VtcJy.framer-v-1qx8yq8 .framer-16au1vx-container, .framer-VtcJy.framer-v-1qm3gd4 .framer-16au1vx-container, .framer-VtcJy.framer-v-3ms2jp .framer-16au1vx-container, .framer-VtcJy.framer-v-1xfers8 .framer-16au1vx-container, .framer-VtcJy.framer-v-mw74pa .framer-16au1vx-container { bottom: 8px; height: var(--framer-aspect-ratio-supported, 29px); left: 38px; width: 60px; }\",\".framer-VtcJy.framer-v-b50ajf .framer-1p3qyf6-container, .framer-VtcJy.framer-v-t87m0z .framer-1p3qyf6-container, .framer-VtcJy.framer-v-kq0an7 .framer-1p3qyf6-container, .framer-VtcJy.framer-v-1mdfq1s .framer-1p3qyf6-container, .framer-VtcJy.framer-v-kebfqj .framer-1p3qyf6-container, .framer-VtcJy.framer-v-iheee7 .framer-1p3qyf6-container, .framer-VtcJy.framer-v-1qx8yq8 .framer-1p3qyf6-container, .framer-VtcJy.framer-v-1qm3gd4 .framer-1p3qyf6-container, .framer-VtcJy.framer-v-3ms2jp .framer-1p3qyf6-container, .framer-VtcJy.framer-v-1xfers8 .framer-1p3qyf6-container, .framer-VtcJy.framer-v-mw74pa .framer-1p3qyf6-container { height: var(--framer-aspect-ratio-supported, 29px); left: 36px; top: 102px; width: 60px; }\",\".framer-VtcJy.framer-v-1gj6ddj .framer-16au1vx-container { bottom: 12px; height: var(--framer-aspect-ratio-supported, 37px); left: 153px; width: 75px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 644\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"T7KaQgLSV\":{\"layout\":[\"fixed\",\"auto\"]},\"j1n_gZ1tm\":{\"layout\":[\"fixed\",\"auto\"]},\"LPkmpzJIv\":{\"layout\":[\"fixed\",\"auto\"]},\"bbUIjpuLI\":{\"layout\":[\"fixed\",\"auto\"]},\"ngqcGIqpy\":{\"layout\":[\"fixed\",\"auto\"]},\"CjoAWzsv6\":{\"layout\":[\"fixed\",\"auto\"]},\"h9eR_GYN6\":{\"layout\":[\"fixed\",\"auto\"]},\"ZeP5pZAuE\":{\"layout\":[\"fixed\",\"auto\"]},\"XoHPo4XwX\":{\"layout\":[\"fixed\",\"auto\"]},\"sNwdwCXmt\":{\"layout\":[\"fixed\",\"auto\"]},\"eelUszCEe\":{\"layout\":[\"fixed\",\"auto\"]},\"bs_RwUrzO\":{\"layout\":[\"fixed\",\"auto\"]},\"EBUIiuepv\":{\"layout\":[\"fixed\",\"auto\"]},\"uriOUMTcD\":{\"layout\":[\"fixed\",\"auto\"]},\"SC7o1Gby3\":{\"layout\":[\"fixed\",\"auto\"]},\"tALcd1nV1\":{\"layout\":[\"fixed\",\"auto\"]},\"Uxm31FD2o\":{\"layout\":[\"fixed\",\"auto\"]},\"g8FLnYod6\":{\"layout\":[\"fixed\",\"auto\"]},\"up5FEr1BP\":{\"layout\":[\"fixed\",\"auto\"]},\"PxjM2TuVO\":{\"layout\":[\"fixed\",\"auto\"]},\"zVQLpUI34\":{\"layout\":[\"fixed\",\"auto\"]},\"KStkfbILo\":{\"layout\":[\"fixed\",\"auto\"]},\"ve9YSNl5X\":{\"layout\":[\"fixed\",\"auto\"]},\"U9gVKTXr5\":{\"layout\":[\"fixed\",\"auto\"]},\"Y7xY22zV4\":{\"layout\":[\"fixed\",\"auto\"]},\"qJCSRwaFV\":{\"layout\":[\"fixed\",\"auto\"]},\"IGHByyeD5\":{\"layout\":[\"fixed\",\"auto\"]},\"waaXcYJVF\":{\"layout\":[\"fixed\",\"auto\"]},\"UeYzA6yBZ\":{\"layout\":[\"fixed\",\"auto\"]},\"MF60gZPHj\":{\"layout\":[\"fixed\",\"auto\"]},\"lNHTu9WP9\":{\"layout\":[\"fixed\",\"auto\"]},\"XNZVFira5\":{\"layout\":[\"fixed\",\"auto\"]},\"fNIUILLUf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKx2Ggjrn6=withCSS(Component,css,\"framer-VtcJy\");export default FramerKx2Ggjrn6;FramerKx2Ggjrn6.displayName=\"cp/ Cretive Performance-new\";FramerKx2Ggjrn6.defaultProps={height:644,width:1200};addPropertyControls(FramerKx2Ggjrn6,{variant:{options:[\"lGDBvasa1\",\"T7KaQgLSV\",\"j1n_gZ1tm\",\"LPkmpzJIv\",\"bbUIjpuLI\",\"ngqcGIqpy\",\"CjoAWzsv6\",\"h9eR_GYN6\",\"ZeP5pZAuE\",\"XoHPo4XwX\",\"sNwdwCXmt\",\"eelUszCEe\",\"bs_RwUrzO\",\"EBUIiuepv\",\"uriOUMTcD\",\"SC7o1Gby3\",\"tALcd1nV1\",\"Uxm31FD2o\",\"g8FLnYod6\",\"up5FEr1BP\",\"PxjM2TuVO\",\"zVQLpUI34\",\"KStkfbILo\",\"ve9YSNl5X\",\"U9gVKTXr5\",\"Y7xY22zV4\",\"qJCSRwaFV\",\"IGHByyeD5\",\"waaXcYJVF\",\"UeYzA6yBZ\",\"MF60gZPHj\",\"lNHTu9WP9\",\"XNZVFira5\",\"fNIUILLUf\"],optionTitles:[\"primary\",\"tablet\",\"desktop\",\"mobile\",\"desktop-2\",\"desktop-3\",\"desktop-4\",\"desktop-5\",\"desktop-6\",\"desktop-7\",\"desktop-8\",\"desktop-9\",\"desktop-10\",\"desktop-loop\",\"tablet-2\",\"tablet-3\",\"tablet-4\",\"tablet-5\",\"tablet-6\",\"tablet-7\",\"tablet-8\",\"tablet-9\",\"tablet-10\",\"tablet-loop\",\"mobile-2\",\"mobile-3\",\"mobile-4\",\"mobile-5\",\"mobile-6\",\"mobile-7\",\"mobile-8\",\"mobile-9\",\"mobile-10\",\"mobile-11\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerKx2Ggjrn6,[{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:\"Sora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSe1mX-PIwNhBti0.woff2\",weight:\"700\"},{family:\"Sora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSdSnn-PIwNhBti0.woff2\",weight:\"400\"},{family:\"Kalam\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/L5Z4DJRD7OROEK74MORC4URSE7ILAXYH/6QNQQQT3NGMLLBQ3J7CCWACN46YUMIJB/GNJHSO7TKXAQJXNY3V3S4VE64D4XKQCP.woff2\",weight:\"700\"},{family:\"Sora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSeMmX-PIwNhBti0.woff2\",weight:\"600\"}]},...CpArrowFonts,...CpScribblesFonts,...ElementsPatternFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKx2Ggjrn6\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"644\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T7KaQgLSV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j1n_gZ1tm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LPkmpzJIv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bbUIjpuLI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ngqcGIqpy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CjoAWzsv6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"h9eR_GYN6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZeP5pZAuE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XoHPo4XwX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sNwdwCXmt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eelUszCEe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bs_RwUrzO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EBUIiuepv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uriOUMTcD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SC7o1Gby3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tALcd1nV1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Uxm31FD2o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g8FLnYod6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"up5FEr1BP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PxjM2TuVO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zVQLpUI34\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KStkfbILo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ve9YSNl5X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U9gVKTXr5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y7xY22zV4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qJCSRwaFV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IGHByyeD5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"waaXcYJVF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UeYzA6yBZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MF60gZPHj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lNHTu9WP9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XNZVFira5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fNIUILLUf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f22aa3d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={gpsvDlNBE:{hover:true},lo3NKmKht:{hover:true},mpjxTGpRV:{hover:true}};const cycleOrder=[\"gpsvDlNBE\",\"lo3NKmKht\",\"mpjxTGpRV\",\"WUaEGuJmi\",\"q0DTvDD8d\"];const serializationHash=\"framer-YLQOB\";const variantClassNames={gpsvDlNBE:\"framer-v-1kag1nm\",lo3NKmKht:\"framer-v-khje8h\",mpjxTGpRV:\"framer-v-1fni8t\",q0DTvDD8d:\"framer-v-qcmiiq\",WUaEGuJmi:\"framer-v-1ofd08y\"};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"black #\":\"WUaEGuJmi\",\"white #\":\"q0DTvDD8d\",facebook:\"mpjxTGpRV\",instagram:\"lo3NKmKht\",Subtract:\"gpsvDlNBE\"};const getProps=({click,height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,kuOl64Alt:click!==null&&click!==void 0?click:props.kuOl64Alt,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"gpsvDlNBE\",zixQkrwF7:link!==null&&link!==void 0?link:props.zixQkrwF7};};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,zixQkrwF7,kuOl64Alt,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gpsvDlNBE\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1vlazj7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(kuOl64Alt){const res=await kuOl64Alt(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"lo3NKmKht-hover\")return false;if(baseVariant===\"lo3NKmKht\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"WUaEGuJmi\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"q0DTvDD8d\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"q0DTvDD8d\")return false;return true;};const isDisplayed4=()=>{if([\"lo3NKmKht-hover\",\"mpjxTGpRV-hover\"].includes(gestureVariant))return false;if([\"lo3NKmKht\",\"mpjxTGpRV\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(gestureVariant===\"lo3NKmKht-hover\")return true;if(baseVariant===\"lo3NKmKht\")return true;return false;};const isDisplayed6=()=>{if(gestureVariant===\"mpjxTGpRV-hover\")return true;if(baseVariant===\"mpjxTGpRV\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:zixQkrwF7,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1kag1nm\",className,classNames)} framer-499nll`,\"data-framer-name\":\"Subtract\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gpsvDlNBE\",onTap:onTap1vlazj7,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"gpsvDlNBE-hover\":{\"data-framer-name\":undefined},\"lo3NKmKht-hover\":{\"data-framer-name\":undefined},\"mpjxTGpRV-hover\":{\"data-framer-name\":undefined},lo3NKmKht:{\"data-framer-name\":\"instagram\"},mpjxTGpRV:{\"data-framer-name\":\"facebook\"},q0DTvDD8d:{\"data-framer-name\":\"white #\"},WUaEGuJmi:{\"data-framer-name\":\"black #\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-xw9e1q\",\"data-framer-name\":'\uD83E\uDD86 icon \"instagram alt icon\"',fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,layoutDependency:layoutDependency,layoutId:\"eSPK3jTsk\",svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.5007 7.33755C24.486 6.3323 24.3001 5.33501 23.9442 4.39483C23.3214 2.78934 22.0533 1.51983 20.4478 0.898352C19.5195 0.549102 18.5382 0.361862 17.5449 0.340615C16.2674 0.283514 15.8624 0.267578 12.6195 0.267578C9.3767 0.267578 8.96106 0.267578 7.69287 0.340615C6.7009 0.361862 5.71954 0.549102 4.79131 0.898352C3.18583 1.51983 1.91631 2.78934 1.29484 4.39483C0.945586 5.32306 0.757019 6.30441 0.738427 7.29638C0.681326 8.57519 0.664062 8.98022 0.664062 12.2231C0.664062 15.4659 0.664062 15.8802 0.738427 17.1497C0.758347 18.143 0.945586 19.1231 1.29484 20.0539C1.91764 21.6581 3.18583 22.9276 4.79264 23.5491C5.71689 23.9103 6.69824 24.1148 7.6942 24.1467C8.97301 24.2038 9.37803 24.221 12.6209 24.221C15.8637 24.221 16.2794 24.221 17.5475 24.1467C18.5395 24.1267 19.5209 23.9395 20.4504 23.5903C22.0559 22.9674 23.3241 21.6979 23.9469 20.0938C24.2962 19.1642 24.4834 18.1842 24.5033 17.1896C24.5604 15.9121 24.5777 15.5071 24.5777 12.2629C24.575 9.02005 24.575 8.60839 24.5007 7.33755ZM12.6116 18.3555C9.22001 18.3555 6.47249 15.608 6.47249 12.2164C6.47249 8.82485 9.22001 6.07733 12.6116 6.07733C16.0005 6.07733 18.7507 8.82485 18.7507 12.2164C18.7507 15.608 16.0005 18.3555 12.6116 18.3555ZM18.995 7.28178C18.2022 7.28178 17.5635 6.64171 17.5635 5.85025C17.5635 5.0588 18.2022 4.41873 18.995 4.41873C19.7851 4.41873 20.4252 5.0588 20.4252 5.85025C20.4252 6.64171 19.7851 7.28178 18.995 7.28178Z\" fill=\"#FAF6EC\"/>\\n<path d=\"M12.6109 16.2046C14.8133 16.2046 16.5987 14.4192 16.5987 12.2168C16.5987 10.0144 14.8133 8.229 12.6109 8.229C10.4085 8.229 8.62305 10.0144 8.62305 12.2168C8.62305 14.4192 10.4085 16.2046 12.6109 16.2046Z\" fill=\"#FAF6EC\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-11000fo\",\"data-framer-name\":\"Ellipse 171\",layoutDependency:layoutDependency,layoutId:\"DPPtYJc0R\",style:{backgroundColor:\"var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ibwxwk\",\"data-framer-name\":\"#\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:9,layoutDependency:layoutDependency,layoutId:\"Je4nNfk2S\",svg:'<svg width=\"9\" height=\"10\" viewBox=\"-1 -1 9 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.66064 7.30228L2.74554 0.649429L3.77666 0.657756L2.69175 7.3106L1.66064 7.30228ZM3.91449 7.32048L4.99939 0.66763L6.03051 0.675956L4.9456 7.3288L3.91449 7.32048ZM0.890118 5.53484L0.897044 4.6771L6.42673 4.72175L6.41981 5.57949L0.890118 5.53484ZM1.25529 3.25641L1.26221 2.39867L6.7919 2.44333L6.78497 3.30107L1.25529 3.25641Z\" fill=\"#F6F1E7\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-r0iin5\",\"data-framer-name\":\"Ellipse 171\",layoutDependency:layoutDependency,layoutId:\"cV1zF_aHa\",style:{backgroundColor:\"rgb(246, 241, 231)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1,...addPropertyOverrides({q0DTvDD8d:{transformTemplate:undefined}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-14jqi52\",\"data-framer-name\":\"#\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"vlO74tEsS\",svg:'<svg width=\"16\" height=\"19\" viewBox=\"-1 -1 16 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.82571 16.0922L4.2862 1.00396L6.6247 1.02284L4.16421 16.1111L1.82571 16.0922ZM6.93729 16.1334L9.39778 1.04524L11.7363 1.06412L9.27579 16.1523L6.93729 16.1334ZM0.0782272 12.0837L0.0939362 10.1384L12.6349 10.2397L12.6192 12.185L0.0782272 12.0837ZM0.906403 6.91642L0.922112 4.97112L13.4631 5.07239L13.4474 7.01769L0.906403 6.91642Z\" fill=\"#000003\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nlnp85\",layoutDependency:layoutDependency,layoutId:\"TONfkeumy\",style:{backgroundColor:\"var(--token-b3262002-836c-47a7-8ab8-fcde393ccd2b, rgb(250, 246, 236))\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},variants:{\"gpsvDlNBE-hover\":{backgroundColor:\"var(--token-395ec38b-68c0-4604-a2cc-4a179ba01116, rgb(237, 255, 128))\"},\"lo3NKmKht-hover\":{backgroundColor:\"var(--token-395ec38b-68c0-4604-a2cc-4a179ba01116, rgb(237, 255, 128))\"},\"mpjxTGpRV-hover\":{backgroundColor:\"var(--token-395ec38b-68c0-4604-a2cc-4a179ba01116, rgb(237, 255, 128))\"}},children:[isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-r5snl4\",\"data-framer-name\":\"Graphic\",fill:\"rgb(29, 29, 29)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"stPE8rzwK\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\"><path d=\"M16 8.245V15.5a6.5 6.5 0 1 1-5-6.326v3.163a3.5 3.5 0 1 0 2 3.163V2h3a5 5 0 0 0 5 5v3a7.966 7.966 0 0 1-5-1.755Z\"/></svg>',withExternalLayout:true,...addPropertyOverrides({\"gpsvDlNBE-hover\":{fill:\"rgb(0, 0, 0)\"}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1vbmoeo\",\"data-framer-name\":\"Graphic\",fill:\"rgb(29, 29, 29)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"Z1DrrgPDC\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\"><path d=\"M13.028 2.001a78.82 78.82 0 0 1 2.189.022l.194.007c.224.008.445.018.712.03 1.064.05 1.79.218 2.427.465.66.254 1.216.598 1.772 1.154a4.908 4.908 0 0 1 1.153 1.771c.247.637.415 1.364.465 2.428.012.266.022.488.03.712l.006.194a79 79 0 0 1 .023 2.188l.001.746v1.31a78.836 78.836 0 0 1-.023 2.189l-.006.194c-.008.224-.018.445-.03.712-.05 1.064-.22 1.79-.466 2.427a4.884 4.884 0 0 1-1.153 1.772 4.915 4.915 0 0 1-1.772 1.153c-.637.247-1.363.415-2.427.465-.267.012-.488.022-.712.03l-.194.006a79 79 0 0 1-2.189.023l-.746.001h-1.309a78.836 78.836 0 0 1-2.189-.023l-.194-.006a60.64 60.64 0 0 1-.712-.03c-1.064-.05-1.79-.22-2.428-.466a4.89 4.89 0 0 1-1.771-1.153 4.904 4.904 0 0 1-1.154-1.772c-.247-.637-.415-1.363-.465-2.427a74.367 74.367 0 0 1-.03-.712l-.005-.194A79.053 79.053 0 0 1 2 13.028v-2.056a78.82 78.82 0 0 1 .022-2.188l.007-.194c.008-.224.018-.446.03-.712.05-1.065.218-1.79.465-2.428A4.88 4.88 0 0 1 3.68 3.68a4.897 4.897 0 0 1 1.77-1.155c.638-.247 1.363-.415 2.428-.465l.712-.03.194-.005A79.053 79.053 0 0 1 10.972 2h2.056Zm-1.028 5A5 5 0 1 0 12 17a5 5 0 0 0 0-10Zm0 2A3 3 0 1 1 12.001 15a3 3 0 0 1 0-6Zm5.25-3.5a1.25 1.25 0 0 0 0 2.498 1.25 1.25 0 0 0 0-2.5Z\"/></svg>',withExternalLayout:true,...addPropertyOverrides({\"lo3NKmKht-hover\":{fill:\"rgb(0, 0, 0)\"}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-vx7aa1\",\"data-framer-name\":\"Graphic\",fill:\"rgb(29, 29, 29)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"hGeG8bA_a\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\"><path d=\"M14 13.5h2.5l1-4H14v-2c0-1.03 0-2 2-2h1.5V2.14c-.326-.043-1.557-.14-2.857-.14C11.928 2 10 3.657 10 6.7v2.8H7v4h3V22h4v-8.5Z\"/></svg>',withExternalLayout:true,...addPropertyOverrides({\"mpjxTGpRV-hover\":{fill:\"rgb(0, 0, 0)\"}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YLQOB.framer-499nll, .framer-YLQOB .framer-499nll { display: block; }\",\".framer-YLQOB.framer-1kag1nm { cursor: pointer; height: 25px; overflow: hidden; position: relative; text-decoration: none; width: 25px; }\",\".framer-YLQOB .framer-xw9e1q { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-YLQOB .framer-11000fo { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 13px); left: 48%; position: absolute; top: 48%; width: 13px; }\",\".framer-YLQOB .framer-1ibwxwk { flex: none; height: 10px; left: calc(48.00000000000002% - 9px / 2); position: absolute; top: calc(52.00000000000002% - 10px / 2); width: 9px; }\",\".framer-YLQOB .framer-r0iin5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 52%; position: absolute; top: 52%; width: 20px; }\",\".framer-YLQOB .framer-14jqi52 { flex: none; height: 12px; left: calc(50.00000000000002% - 10px / 2); position: absolute; top: calc(50.00000000000002% - 12px / 2); width: 10px; z-index: 1; }\",\".framer-YLQOB .framer-nlnp85 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: calc(48.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; width: 100%; }\",\".framer-YLQOB .framer-r5snl4, .framer-YLQOB .framer-1vbmoeo { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); position: relative; width: 19px; }\",\".framer-YLQOB .framer-vx7aa1 { flex: none; height: 18px; left: calc(52.00000000000002% - 16px / 2); position: absolute; top: calc(52.00000000000002% - 18px / 2); width: 16px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YLQOB .framer-nlnp85 { gap: 0px; } .framer-YLQOB .framer-nlnp85 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-YLQOB .framer-nlnp85 > :first-child { margin-left: 0px; } .framer-YLQOB .framer-nlnp85 > :last-child { margin-right: 0px; } }\",\".framer-YLQOB.framer-v-qcmiiq.framer-1kag1nm { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: min-content; }\",\".framer-YLQOB.framer-v-qcmiiq .framer-r0iin5 { left: unset; position: relative; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YLQOB.framer-v-qcmiiq.framer-1kag1nm { gap: 0px; } .framer-YLQOB.framer-v-qcmiiq.framer-1kag1nm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-YLQOB.framer-v-qcmiiq.framer-1kag1nm > :first-child { margin-top: 0px; } .framer-YLQOB.framer-v-qcmiiq.framer-1kag1nm > :last-child { margin-bottom: 0px; } }\",\".framer-YLQOB.framer-v-1kag1nm.hover .framer-r5snl4, .framer-YLQOB.framer-v-khje8h.hover .framer-1vbmoeo { height: var(--framer-aspect-ratio-supported, 20px); width: 20px; }\",\".framer-YLQOB.framer-v-1fni8t.hover .framer-vx7aa1 { height: 21px; left: calc(48.00000000000002% - 19px / 2); top: calc(52.00000000000002% - 21px / 2); width: 19px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 25\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"lo3NKmKht\":{\"layout\":[\"fixed\",\"fixed\"]},\"mpjxTGpRV\":{\"layout\":[\"fixed\",\"fixed\"]},\"WUaEGuJmi\":{\"layout\":[\"fixed\",\"fixed\"]},\"q0DTvDD8d\":{\"layout\":[\"auto\",\"auto\"]},\"EWnwJ9PhZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"iVW0jQrnu\":{\"layout\":[\"fixed\",\"fixed\"]},\"E1goqFXK6\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"zixQkrwF7\":\"link\",\"kuOl64Alt\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraZVH3umBF=withCSS(Component,css,\"framer-YLQOB\");export default FrameraZVH3umBF;FrameraZVH3umBF.displayName=\"Social Media Icons\";FrameraZVH3umBF.defaultProps={height:25,width:25};addPropertyControls(FrameraZVH3umBF,{variant:{options:[\"gpsvDlNBE\",\"lo3NKmKht\",\"mpjxTGpRV\",\"WUaEGuJmi\",\"q0DTvDD8d\"],optionTitles:[\"Subtract\",\"instagram\",\"facebook\",\"black #\",\"white #\"],title:\"Variant\",type:ControlType.Enum},zixQkrwF7:{title:\"Link\",type:ControlType.Link},kuOl64Alt:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FrameraZVH3umBF,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraZVH3umBF\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"zixQkrwF7\\\":\\\"link\\\",\\\"kuOl64Alt\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"25\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"25\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lo3NKmKht\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mpjxTGpRV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WUaEGuJmi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q0DTvDD8d\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EWnwJ9PhZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iVW0jQrnu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"E1goqFXK6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aZVH3umBF.map", "// Generated by Framer (f22aa3d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SocialMediaIcons from\"https://framerusercontent.com/modules/kDq2ObSgj3ObMOpACsMq/hlXhobHKfwnY3EjhFO6S/aZVH3umBF.js\";const SocialMediaIconsFonts=getFonts(SocialMediaIcons);const cycleOrder=[\"DNdtFfAt4\",\"O5JMkIxsY\",\"cBrZ7lxmx\",\"HBRg_gPZp\",\"Wc8z3OuQ7\",\"uqEkwRrDv\",\"vFXI7dWS6\"];const serializationHash=\"framer-GRwV1\";const variantClassNames={cBrZ7lxmx:\"framer-v-hpe6yi\",DNdtFfAt4:\"framer-v-1czhqbp\",HBRg_gPZp:\"framer-v-1kb3ehv\",O5JMkIxsY:\"framer-v-4t0onz\",uqEkwRrDv:\"framer-v-g1o8wg\",vFXI7dWS6:\"framer-v-z9aobb\",Wc8z3OuQ7:\"framer-v-87obo2\"};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 transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Arrow \u2022 Black\":\"cBrZ7lxmx\",\"Arrow tablet\":\"Wc8z3OuQ7\",\"Hashtag \u2022 Black\":\"O5JMkIxsY\",\"Hashtag \u2022 Yellow\":\"DNdtFfAt4\",\"hashtag mobile\":\"uqEkwRrDv\",\"Hashtag tablet\":\"HBRg_gPZp\",\"mobile 94\":\"vFXI7dWS6\"};const getProps=({height,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,l7P2BkT5s:(_ref=title!==null&&title!==void 0?title:props.l7P2BkT5s)!==null&&_ref!==void 0?_ref:\"Label text\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"DNdtFfAt4\"};};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,l7P2BkT5s,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DNdtFfAt4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"O5JMkIxsY\",\"cBrZ7lxmx\",\"HBRg_gPZp\",\"Wc8z3OuQ7\",\"uqEkwRrDv\",\"vFXI7dWS6\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"O5JMkIxsY\",\"HBRg_gPZp\",\"uqEkwRrDv\",\"vFXI7dWS6\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"O5JMkIxsY\",\"HBRg_gPZp\",\"uqEkwRrDv\",\"vFXI7dWS6\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"cBrZ7lxmx\",\"Wc8z3OuQ7\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1czhqbp\",className,classNames),\"data-framer-name\":\"Hashtag \u2022 Yellow\",layoutDependency:layoutDependency,layoutId:\"DNdtFfAt4\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-395ec38b-68c0-4604-a2cc-4a179ba01116, rgb(236, 248, 110))\",borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25,...style},variants:{cBrZ7lxmx:{backgroundColor:\"var(--token-61773bee-f0d3-47e3-8a80-2121147b2afb, rgb(0, 0, 0))\"},HBRg_gPZp:{backgroundColor:\"var(--token-61773bee-f0d3-47e3-8a80-2121147b2afb, rgb(0, 0, 0))\"},O5JMkIxsY:{backgroundColor:\"var(--token-61773bee-f0d3-47e3-8a80-2121147b2afb, rgb(0, 0, 0))\"},uqEkwRrDv:{backgroundColor:\"var(--token-61773bee-f0d3-47e3-8a80-2121147b2afb, rgb(0, 0, 0))\"},vFXI7dWS6:{backgroundColor:\"var(--token-61773bee-f0d3-47e3-8a80-2121147b2afb, rgb(0, 0, 0))\"},Wc8z3OuQ7:{backgroundColor:\"var(--token-61773bee-f0d3-47e3-8a80-2121147b2afb, rgb(0, 0, 0))\"}},...addPropertyOverrides({cBrZ7lxmx:{\"data-framer-name\":\"Arrow \u2022 Black\"},HBRg_gPZp:{\"data-framer-name\":\"Hashtag tablet\"},O5JMkIxsY:{\"data-framer-name\":\"Hashtag \u2022 Black\"},uqEkwRrDv:{\"data-framer-name\":\"hashtag mobile\"},vFXI7dWS6:{\"data-framer-name\":\"mobile 94\"},Wc8z3OuQ7:{\"data-framer-name\":\"Arrow tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,width:\"15px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||26)-0-15)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k77t0e-container\",layoutDependency:layoutDependency,layoutId:\"p0B4LINlY-container\",children:/*#__PURE__*/_jsx(SocialMediaIcons,{height:\"100%\",id:\"p0B4LINlY\",layoutId:\"p0B4LINlY\",style:{height:\"100%\",width:\"100%\"},variant:\"WUaEGuJmi\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 42, 42))\"},children:\"Label text\"})}),className:\"framer-ndkk0b\",\"data-framer-name\":\"SOCIAL-MEDIA\",fonts:[\"GF;Sora-regular\"],layoutDependency:layoutDependency,layoutId:\"bwo9SqAb6\",style:{\"--extracted-r6o4lv\":\"rgb(42, 42, 42)\",\"--framer-paragraph-spacing\":\"0px\"},text:l7P2BkT5s,variants:{cBrZ7lxmx:{\"--extracted-r6o4lv\":\"var(--token-b3262002-836c-47a7-8ab8-fcde393ccd2b, rgb(250, 246, 236))\"},HBRg_gPZp:{\"--extracted-r6o4lv\":\"var(--token-b3262002-836c-47a7-8ab8-fcde393ccd2b, rgb(250, 246, 236))\"},O5JMkIxsY:{\"--extracted-r6o4lv\":\"var(--token-b3262002-836c-47a7-8ab8-fcde393ccd2b, rgb(250, 246, 236))\"},uqEkwRrDv:{\"--extracted-r6o4lv\":\"var(--token-b3262002-836c-47a7-8ab8-fcde393ccd2b, rgb(250, 246, 236))\"},vFXI7dWS6:{\"--extracted-r6o4lv\":\"var(--token-b3262002-836c-47a7-8ab8-fcde393ccd2b, rgb(250, 246, 236))\"},Wc8z3OuQ7:{\"--extracted-r6o4lv\":\"var(--token-b3262002-836c-47a7-8ab8-fcde393ccd2b, rgb(250, 246, 236))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cBrZ7lxmx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3262002-836c-47a7-8ab8-fcde393ccd2b, rgb(250, 246, 236)))\"},children:\"Label text\"})}),fonts:[\"GF;Sora-700\"]},HBRg_gPZp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3262002-836c-47a7-8ab8-fcde393ccd2b, rgb(250, 246, 236)))\"},children:\"Label text\"})}),fonts:[\"GF;Sora-700\"]},O5JMkIxsY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3262002-836c-47a7-8ab8-fcde393ccd2b, rgb(250, 246, 236)))\"},children:\"Label text\"})}),fonts:[\"GF;Sora-700\"]},uqEkwRrDv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"7px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3262002-836c-47a7-8ab8-fcde393ccd2b, rgb(250, 246, 236)))\"},children:\"Label text\"})}),fonts:[\"GF;Sora-600\"]},vFXI7dWS6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS02MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"7px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3262002-836c-47a7-8ab8-fcde393ccd2b, rgb(250, 246, 236)))\"},children:\"Label text\"})}),fonts:[\"GF;Sora-600\"]},Wc8z3OuQ7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3262002-836c-47a7-8ab8-fcde393ccd2b, rgb(250, 246, 236)))\"},children:\"Label text\"})}),fonts:[\"GF;Sora-700\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d1brql\",layoutDependency:layoutDependency,layoutId:\"ebckF3LiX\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6kcyza\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Rma1v4gdY\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hghxqt\",\"data-framer-name\":\"Ellipse 171\",layoutDependency:layoutDependency,layoutId:\"ebckF3LiXcV1zF_aHa\",style:{backgroundColor:\"rgb(246, 241, 231)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ycknyn\",\"data-framer-name\":\"Vector 572\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"JS6nd1Yn2\",style:{rotate:180},svg:'<svg width=\"17\" height=\"22\" viewBox=\"-1 -1 17 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.56641 18.6235C6.56641 19.1758 7.01412 19.6235 7.56641 19.6235C8.11869 19.6235 8.56641 19.1758 8.56641 18.6235L6.56641 18.6235ZM8.27351 0.936448C7.88299 0.545924 7.24982 0.545924 6.8593 0.936448L0.495339 7.30041C0.104814 7.69093 0.104814 8.3241 0.495339 8.71462C0.885863 9.10515 1.51903 9.10515 1.90955 8.71462L7.56641 3.05777L13.2233 8.71462C13.6138 9.10515 14.247 9.10515 14.6375 8.71462C15.028 8.3241 15.028 7.69093 14.6375 7.30041L8.27351 0.936448ZM8.56641 18.6235L8.56641 1.64355L6.56641 1.64355L6.56641 18.6235L8.56641 18.6235Z\" fill=\"black\"/>\\n</svg>\\n',variants:{vFXI7dWS6:{rotate:0}},withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-6rjct3\",\"data-framer-name\":\"#\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"ebckF3LiXvlO74tEsS\",svg:'<svg width=\"16\" height=\"19\" viewBox=\"-1 -1 16 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.82571 16.0922L4.2862 1.00396L6.6247 1.02284L4.16421 16.1111L1.82571 16.0922ZM6.93729 16.1334L9.39778 1.04524L11.7363 1.06412L9.27579 16.1523L6.93729 16.1334ZM0.0782272 12.0837L0.0939362 10.1384L12.6349 10.2397L12.6192 12.185L0.0782272 12.0837ZM0.906403 6.91642L0.922112 4.97112L13.4631 5.07239L13.4474 7.01769L0.906403 6.91642Z\" fill=\"#000003\"/>\\n</svg>\\n',withExternalLayout:true})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jia3vr\",layoutDependency:layoutDependency,layoutId:\"LKOy2IPxA\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g6oqi8\",\"data-framer-name\":\"Ellipse 171\",layoutDependency:layoutDependency,layoutId:\"AfvX80vBP\",style:{backgroundColor:\"rgb(246, 241, 231)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},...addPropertyOverrides({Wc8z3OuQ7:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1o1vu6\",\"data-framer-name\":\"Vector 572\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"jPnKNNuVh\",svg:'<svg width=\"17\" height=\"22\" viewBox=\"-1 -1 17 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.56641 18.6235C6.56641 19.1758 7.01412 19.6235 7.56641 19.6235C8.11869 19.6235 8.56641 19.1758 8.56641 18.6235L6.56641 18.6235ZM8.27351 0.936448C7.88299 0.545924 7.24982 0.545924 6.8593 0.936448L0.495339 7.30041C0.104814 7.69093 0.104814 8.3241 0.495339 8.71462C0.885863 9.10515 1.51903 9.10515 1.90955 8.71462L7.56641 3.05777L13.2233 8.71462C13.6138 9.10515 14.247 9.10515 14.6375 8.71462C15.028 8.3241 15.028 7.69093 14.6375 7.30041L8.27351 0.936448ZM8.56641 18.6235L8.56641 1.64355L6.56641 1.64355L6.56641 18.6235L8.56641 18.6235Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GRwV1.framer-dch0n9, .framer-GRwV1 .framer-dch0n9 { display: block; }\",\".framer-GRwV1.framer-1czhqbp { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: 26px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 115px; }\",\".framer-GRwV1 .framer-k77t0e-container { flex: none; height: 15px; position: relative; width: 15px; }\",\".framer-GRwV1 .framer-ndkk0b { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GRwV1 .framer-1d1brql { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-GRwV1 .framer-6kcyza { flex: none; height: 226px; overflow: visible; position: relative; width: 190px; }\",\".framer-GRwV1 .framer-hghxqt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-GRwV1 .framer-ycknyn { aspect-ratio: 0.7692307692307693 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 13px); left: 6px; position: absolute; top: 5px; width: 10px; }\",\".framer-GRwV1 .framer-6rjct3 { aspect-ratio: 0.8421052631578947 / 1; bottom: var(--framer-aspect-ratio-supported, 6px); flex: none; height: 19px; left: 7px; position: absolute; right: 7px; top: 7px; z-index: 1; }\",\".framer-GRwV1 .framer-1jia3vr { flex: none; height: 31px; overflow: hidden; position: relative; width: 31px; }\",\".framer-GRwV1 .framer-1g6oqi8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-GRwV1 .framer-1o1vu6 { flex: none; height: 22px; left: calc(48.38709677419357% - 17px / 2); position: absolute; top: calc(51.61290322580647% - 22px / 2); width: 17px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GRwV1.framer-1czhqbp, .framer-GRwV1 .framer-1d1brql { gap: 0px; } .framer-GRwV1.framer-1czhqbp > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-GRwV1.framer-1czhqbp > :first-child { margin-left: 0px; } .framer-GRwV1.framer-1czhqbp > :last-child { margin-right: 0px; } .framer-GRwV1 .framer-1d1brql > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GRwV1 .framer-1d1brql > :first-child { margin-top: 0px; } .framer-GRwV1 .framer-1d1brql > :last-child { margin-bottom: 0px; } }\",\".framer-GRwV1.framer-v-4t0onz.framer-1czhqbp, .framer-GRwV1.framer-v-1kb3ehv.framer-1czhqbp { gap: 10px; height: min-content; padding: 9px 26px 9px 14px; width: min-content; }\",\".framer-GRwV1.framer-v-4t0onz .framer-ndkk0b, .framer-GRwV1.framer-v-1kb3ehv .framer-ndkk0b, .framer-GRwV1.framer-v-g1o8wg .framer-ndkk0b, .framer-GRwV1.framer-v-z9aobb .framer-ndkk0b { order: 2; }\",\".framer-GRwV1.framer-v-4t0onz .framer-1d1brql, .framer-GRwV1.framer-v-1kb3ehv .framer-1d1brql, .framer-GRwV1.framer-v-g1o8wg .framer-1d1brql, .framer-GRwV1.framer-v-z9aobb .framer-1d1brql { order: 1; }\",\".framer-GRwV1.framer-v-4t0onz .framer-6kcyza, .framer-GRwV1.framer-v-1kb3ehv .framer-6kcyza { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 21px); width: 21px; }\",\".framer-GRwV1.framer-v-4t0onz .framer-hghxqt { aspect-ratio: unset; bottom: 0px; height: unset; }\",\".framer-GRwV1.framer-v-4t0onz .framer-ycknyn { left: 6px; top: 4px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GRwV1.framer-v-4t0onz.framer-1czhqbp { gap: 0px; } .framer-GRwV1.framer-v-4t0onz.framer-1czhqbp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GRwV1.framer-v-4t0onz.framer-1czhqbp > :first-child { margin-left: 0px; } .framer-GRwV1.framer-v-4t0onz.framer-1czhqbp > :last-child { margin-right: 0px; } }\",\".framer-GRwV1.framer-v-hpe6yi.framer-1czhqbp, .framer-GRwV1.framer-v-87obo2.framer-1czhqbp { gap: 6px; height: min-content; padding: 9px 16px 9px 14px; width: min-content; }\",\".framer-GRwV1.framer-v-hpe6yi .framer-ndkk0b, .framer-GRwV1.framer-v-87obo2 .framer-ndkk0b { order: 3; }\",\".framer-GRwV1.framer-v-hpe6yi .framer-1jia3vr { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 21px; justify-content: center; order: 2; padding: 0px; width: 21px; }\",\".framer-GRwV1.framer-v-hpe6yi .framer-1g6oqi8 { height: var(--framer-aspect-ratio-supported, 21px); left: unset; position: relative; right: unset; top: unset; width: 21px; }\",\".framer-GRwV1.framer-v-hpe6yi .framer-1o1vu6 { aspect-ratio: 0.7727272727272727 / 1; height: var(--framer-aspect-ratio-supported, 13px); left: 6px; top: 4px; width: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GRwV1.framer-v-hpe6yi.framer-1czhqbp, .framer-GRwV1.framer-v-hpe6yi .framer-1jia3vr { gap: 0px; } .framer-GRwV1.framer-v-hpe6yi.framer-1czhqbp > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-GRwV1.framer-v-hpe6yi.framer-1czhqbp > :first-child, .framer-GRwV1.framer-v-hpe6yi .framer-1jia3vr > :first-child { margin-left: 0px; } .framer-GRwV1.framer-v-hpe6yi.framer-1czhqbp > :last-child, .framer-GRwV1.framer-v-hpe6yi .framer-1jia3vr > :last-child { margin-right: 0px; } .framer-GRwV1.framer-v-hpe6yi .framer-1jia3vr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-GRwV1.framer-v-1kb3ehv .framer-hghxqt { right: 1px; top: 1px; }\",\".framer-GRwV1.framer-v-1kb3ehv .framer-ycknyn { height: var(--framer-aspect-ratio-supported, 10px); top: 5px; width: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GRwV1.framer-v-1kb3ehv.framer-1czhqbp { gap: 0px; } .framer-GRwV1.framer-v-1kb3ehv.framer-1czhqbp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GRwV1.framer-v-1kb3ehv.framer-1czhqbp > :first-child { margin-left: 0px; } .framer-GRwV1.framer-v-1kb3ehv.framer-1czhqbp > :last-child { margin-right: 0px; } }\",\".framer-GRwV1.framer-v-87obo2 .framer-1jia3vr { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 21px); order: 2; width: 21px; }\",\".framer-GRwV1.framer-v-87obo2 .framer-1g6oqi8 { height: var(--framer-aspect-ratio-supported, 18px); right: unset; top: 48%; width: 18px; }\",\".framer-GRwV1.framer-v-87obo2 .framer-1o1vu6 { aspect-ratio: 0.8181818181818182 / 1; height: var(--framer-aspect-ratio-supported, 12px); left: 4px; top: 3px; width: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GRwV1.framer-v-87obo2.framer-1czhqbp { gap: 0px; } .framer-GRwV1.framer-v-87obo2.framer-1czhqbp > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-GRwV1.framer-v-87obo2.framer-1czhqbp > :first-child { margin-left: 0px; } .framer-GRwV1.framer-v-87obo2.framer-1czhqbp > :last-child { margin-right: 0px; } }\",\".framer-GRwV1.framer-v-g1o8wg.framer-1czhqbp, .framer-GRwV1.framer-v-z9aobb.framer-1czhqbp { gap: 2px; height: min-content; padding: 4px; width: min-content; }\",\".framer-GRwV1.framer-v-g1o8wg .framer-6kcyza, .framer-GRwV1.framer-v-z9aobb .framer-6kcyza { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 12px); width: 12px; }\",\".framer-GRwV1.framer-v-g1o8wg .framer-hghxqt, .framer-GRwV1.framer-v-z9aobb .framer-hghxqt { height: var(--framer-aspect-ratio-supported, 8px); left: 2px; right: 2px; top: 2px; }\",\".framer-GRwV1.framer-v-g1o8wg .framer-ycknyn, .framer-GRwV1.framer-v-z9aobb .framer-ycknyn { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 4px); left: 2px; top: 2px; width: 4px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GRwV1.framer-v-g1o8wg.framer-1czhqbp { gap: 0px; } .framer-GRwV1.framer-v-g1o8wg.framer-1czhqbp > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-GRwV1.framer-v-g1o8wg.framer-1czhqbp > :first-child { margin-left: 0px; } .framer-GRwV1.framer-v-g1o8wg.framer-1czhqbp > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GRwV1.framer-v-z9aobb.framer-1czhqbp { gap: 0px; } .framer-GRwV1.framer-v-z9aobb.framer-1czhqbp > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-GRwV1.framer-v-z9aobb.framer-1czhqbp > :first-child { margin-left: 0px; } .framer-GRwV1.framer-v-z9aobb.framer-1czhqbp > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 115\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"O5JMkIxsY\":{\"layout\":[\"auto\",\"auto\"]},\"cBrZ7lxmx\":{\"layout\":[\"auto\",\"auto\"]},\"HBRg_gPZp\":{\"layout\":[\"auto\",\"auto\"]},\"Wc8z3OuQ7\":{\"layout\":[\"auto\",\"auto\"]},\"uqEkwRrDv\":{\"layout\":[\"auto\",\"auto\"]},\"vFXI7dWS6\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"l7P2BkT5s\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerpxv4834MF=withCSS(Component,css,\"framer-GRwV1\");export default Framerpxv4834MF;Framerpxv4834MF.displayName=\"Label\";Framerpxv4834MF.defaultProps={height:26,width:115};addPropertyControls(Framerpxv4834MF,{variant:{options:[\"DNdtFfAt4\",\"O5JMkIxsY\",\"cBrZ7lxmx\",\"HBRg_gPZp\",\"Wc8z3OuQ7\",\"uqEkwRrDv\",\"vFXI7dWS6\"],optionTitles:[\"Hashtag \u2022 Yellow\",\"Hashtag \u2022 Black\",\"Arrow \u2022 Black\",\"Hashtag tablet\",\"Arrow tablet\",\"hashtag mobile\",\"mobile 94\"],title:\"Variant\",type:ControlType.Enum},l7P2BkT5s:{defaultValue:\"Label text\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Framerpxv4834MF,[{explicitInter:true,fonts:[{family:\"Sora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSdSnn-PIwNhBti0.woff2\",weight:\"400\"},{family:\"Sora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSe1mX-PIwNhBti0.woff2\",weight:\"700\"},{family:\"Sora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSeMmX-PIwNhBti0.woff2\",weight:\"600\"}]},...SocialMediaIconsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerpxv4834MF\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O5JMkIxsY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cBrZ7lxmx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HBRg_gPZp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Wc8z3OuQ7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uqEkwRrDv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vFXI7dWS6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"l7P2BkT5s\\\":\\\"title\\\"}\",\"framerIntrinsicWidth\":\"115\",\"framerIntrinsicHeight\":\"26\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pxv4834MF.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";const typingSpeed=100// Speed of typing animation in milliseconds\n;const eraseSpeed=50// Speed of erasing animation in milliseconds\n;const displayDuration=2e3// Duration for which a word is displayed after being fully typed in milliseconds\n;/**\n * @framerDisableUnlink\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 100\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function TypewriterLoopComponent(props){const{fixedText,words,fontSize,fontFamily,fontWeight,color,backgroundColor,style}=props;const[displayedText,setDisplayedText]=useState(\"\");const[currentWordIndex,setCurrentWordIndex]=useState(0);const[charIndex,setCharIndex]=useState(0);const[isErasing,setIsErasing]=useState(false);useEffect(()=>{let timeout;if(!isErasing){// Typing animation\nif(charIndex<words[currentWordIndex].length){timeout=setTimeout(()=>{setDisplayedText(prev=>prev+words[currentWordIndex][charIndex]);setCharIndex(charIndex+1);},typingSpeed);}else{// Wait after typing before starting to erase\ntimeout=setTimeout(()=>{setIsErasing(true);},displayDuration);}}else{// Erasing animation\nif(charIndex>0){timeout=setTimeout(()=>{setDisplayedText(prev=>prev.slice(0,-1));setCharIndex(charIndex-1);},eraseSpeed);}else{setIsErasing(false);setCurrentWordIndex((currentWordIndex+1)%words.length);}}return()=>clearTimeout(timeout);},[charIndex,isErasing,words,currentWordIndex]);const textStyle={fontSize:`${fontSize}px`,fontFamily:fontFamily||\"Sora, sans-serif\",fontWeight:fontWeight||\"bold\",color:color};return /*#__PURE__*/_jsxs(motion.div,{style:{...style,backgroundColor,padding:\"10px\"},children:[/*#__PURE__*/_jsx(\"div\",{style:textStyle,children:fixedText}),/*#__PURE__*/_jsx(\"div\",{style:textStyle,children:displayedText})]});}TypewriterLoopComponent.defaultProps={fixedText:\"This is fixed text\",words:[\"First Word\",\"Second Word\",\"Third Word\"],fontSize:24,fontFamily:\"Sora, sans-serif\",fontWeight:\"bold\",color:\"#000\",backgroundColor:\"#fff\"};addPropertyControls(TypewriterLoopComponent,{fixedText:{type:ControlType.String,title:\"Fixed Text\"},words:{type:ControlType.Array,title:\"Words\",control:{type:ControlType.String},defaultValue:[\"First Word\",\"Second Word\",\"Third Word\"]},fontSize:{type:ControlType.Number,title:\"Font Size\",min:10,max:100,unit:\"px\",defaultValue:90},fontFamily:{type:ControlType.String,title:\"Font Family\",defaultValue:\"Sora, sans-serif\"},fontWeight:{type:ControlType.Enum,title:\"Font Weight\",options:[\"normal\",\"bold\"],defaultValue:\"bold\"},color:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#000\"},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"#fff\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"TypewriterLoopComponent\":{\"type\":\"reactComponent\",\"name\":\"TypewriterLoopComponent\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"* @framerIntrinsicWidth 300\",\"framerIntrinsicHeight\":\"100\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AnimatedText.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import SectionMedia from\"#framer/local/canvasComponent/bGN3TJXLU/bGN3TJXLU.js\";import Slideshow from\"#framer/local/canvasComponent/ELwAVuReb/ELwAVuReb.js\";import SectionCTA from\"#framer/local/canvasComponent/FpM3kB6E8/FpM3kB6E8.js\";import SectionFooter from\"#framer/local/canvasComponent/KdljHHouH/KdljHHouH.js\";import SectionQuote from\"#framer/local/canvasComponent/klDbgmGZd/klDbgmGZd.js\";import CpCretivePerformanceNew from\"#framer/local/canvasComponent/Kx2Ggjrn6/Kx2Ggjrn6.js\";import Navigation from\"#framer/local/canvasComponent/KzUyLixXo/KzUyLixXo.js\";import ButtonBookACall from\"#framer/local/canvasComponent/NhjwBdgiN/NhjwBdgiN.js\";import Label from\"#framer/local/canvasComponent/pxv4834MF/pxv4834MF.js\";import ElementsPattern from\"#framer/local/canvasComponent/QHhR4qlc4/QHhR4qlc4.js\";import Button from\"#framer/local/canvasComponent/qpSVWSMWl/qpSVWSMWl.js\";import ElementsVimeoAutoplay from\"#framer/local/canvasComponent/uqeoG8Tm3/uqeoG8Tm3.js\";import SectionLocalization from\"#framer/local/canvasComponent/yETSl9zVM/yETSl9zVM.js\";import{TypewriterLoopComponent}from\"#framer/local/codeFile/ZZyLVR7/AnimatedText.js\";import*as sharedStyle2 from\"#framer/local/css/ctyWJhsLH/ctyWJhsLH.js\";import*as sharedStyle from\"#framer/local/css/Ditd88a5r/Ditd88a5r.js\";import*as sharedStyle3 from\"#framer/local/css/GSKOyKdAm/GSKOyKdAm.js\";import*as sharedStyle1 from\"#framer/local/css/UbDGjDiwv/UbDGjDiwv.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const NavigationWithVariantAppearEffect=withVariantAppearEffect(Navigation);const EmbedFonts=getFonts(Embed);const ElementsPatternFonts=getFonts(ElementsPattern);const TypewriterLoopComponentFonts=getFonts(TypewriterLoopComponent);const ButtonBookACallFonts=getFonts(ButtonBookACall);const MotionDivWithFX=withFX(motion.div);const ElementsVimeoAutoplayFonts=getFonts(ElementsVimeoAutoplay);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const LabelFonts=getFonts(Label);const ButtonFonts=getFonts(Button);const TickerFonts=getFonts(Ticker);const CpCretivePerformanceNewFonts=getFonts(CpCretivePerformanceNew);const SectionQuoteFonts=getFonts(SectionQuote);const VideoFonts=getFonts(Video);const SlideshowFonts=getFonts(Slideshow);const SectionLocalizationFonts=getFonts(SectionLocalization);const SectionCTAFonts=getFonts(SectionCTA);const SectionMediaFonts=getFonts(SectionMedia);const SectionFooterFonts=getFonts(SectionFooter);const breakpoints={GoYWNyyha:\"(max-width: 809px)\",OQzcYzjPf:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-aw4oB\";const variantClassNames={GoYWNyyha:\"framer-v-cfeywi\",OQzcYzjPf:\"framer-v-1snewio\",WQLkyLRf1:\"framer-v-72rtr7\"};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition1={delay:0,duration:15,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"GoYWNyyha\",Tablet:\"OQzcYzjPf\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,g7lERPYhbgj9CYYFOn,...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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const iGrbjt8NY3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const jpvDeCZCk3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"GoYWNyyha\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"GoYWNyyha\")return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if([\"OQzcYzjPf\",\"GoYWNyyha\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"OQzcYzjPf\",\"GoYWNyyha\"].includes(baseVariant))return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-ca112a6a-7ca5-4393-871c-63649586a670, rgb(250, 245, 236)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cveeis\",\"data-framer-name\":\"Navbar\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1260px)`},OQzcYzjPf:{width:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1260px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1260px)`,y:(componentViewport?.y||0)+0+0+24,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-imbr45-container\",id:\"imbr45\",nodeId:\"ya930z0Vh\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{variant:\"ZC8tta9DF\"},OQzcYzjPf:{variant:\"NGQrJshSu\"}},children:/*#__PURE__*/_jsx(NavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"ya930z0Vh\",iGrbjt8NY:iGrbjt8NY3bnx0g({overlay}),layoutId:\"ya930z0Vh\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"lIYYZSJmp\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-irakqg\"),\"data-framer-portal-id\":\"imbr45\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"slIoIYNyi\"),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-1ueqy3o\"),\"data-framer-name\":\"close\",\"data-framer-portal-id\":\"imbr45\",onTap:onTap1wnntms({overlay})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1h8eq74-container\"),\"data-framer-portal-id\":\"imbr45\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"caaTk6C72\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!DOCTYPE html>\\n<html>\\n<head>\\n    <style>\\n        html, body {\\n            margin: 0;\\n            padding: 0;\\n            overflow: hidden;\\n        }\\n        \\n        .calendly-inline-widget {\\n            width: 100%;\\n            height: 100vh;\\n            border-radius: 16px;\\n            -ms-overflow-style: none;\\n            scrollbar-width: none;\\n            overflow: hidden;  /* Ensure content doesn\\'t overflow rounded corners */\\n        }\\n        \\n        .calendly-inline-widget::-webkit-scrollbar {\\n            display: none;\\n        }\\n\\n        /* Apply border radius to the Calendly iframe as well */\\n        .calendly-inline-widget iframe {\\n            border-radius: 16px;\\n        }\\n    </style>\\n</head>\\n<body>\\n    <div \\n        class=\"calendly-inline-widget\" \\n        data-url=\"https://calendly.com/d/dkq-p8s-z56/creative-milkshake-introduction?primary_color=af00ff\"\\n    ></div>\\n    <script src=\"https://assets.calendly.com/assets/external/widget.js\" async></script>\\n</body>\\n</html>',id:\"caaTk6C72\",layoutId:\"caaTk6C72\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),getContainer())})})]})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-529kc0\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{height:400,y:(componentViewport?.y||0)+0+105+77.802},OQzcYzjPf:{y:(componentViewport?.y||0)+0+105+22.6824}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:498,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+105+32.7224,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xvircc-container\",nodeId:\"h6XpaupAY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsPattern,{height:\"100%\",id:\"h6XpaupAY\",layoutId:\"h6XpaupAY\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dpzflc\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xvokd7\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-83ltv1\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1obezlw\",\"data-framer-name\":\"top text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42))\"},children:\"LOWER YOUR CPA WITH \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216))\"},children:[\"DIRECT RESPONSE \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42))\"},children:\"ADS\"})]})]}),fonts:[\"FS;Sora-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1x6poae\",\"data-styles-preset\":\"Ditd88a5r\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42))\"},children:\"LOWER YOUR CPA WITH\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216))\"},children:\"DIRECT RESPONSE \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42))\"},children:\"ADS\"})]})}),className:\"framer-1gqxzlt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1pdwe5v hidden-cfeywi\",\"data-framer-name\":\"objects\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-tm6awn\",\"data-framer-name\":\"Doodle\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:62,intrinsicWidth:70,svg:'<svg width=\"70\" height=\"62\" viewBox=\"0 0 70 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.96222 21.32L16.2325 57.5377C16.5767 58.5535 18.1557 58.0186 17.8116 57.0027L5.54125 20.785C5.19709 19.7692 3.61806 20.3041 3.96222 21.32Z\" fill=\"#6945D8\"/>\\n<path d=\"M16.1435 58.6544C29.4337 54.1518 42.7239 49.6492 56.014 45.1465L67.2936 41.3251C68.3094 40.9809 67.7745 39.4019 66.7586 39.7461C53.4684 44.2487 40.1783 48.7513 26.8881 53.2539L15.6086 57.0754C14.5927 57.4195 15.1277 58.9986 16.1435 58.6544Z\" fill=\"#6945D8\"/>\\n<path d=\"M4.32417 24.8294C4.41929 24.1576 4.54608 23.4927 4.70275 22.8294C4.77845 22.4986 4.86646 22.1695 4.96152 21.844C5.00472 21.6944 5.04971 21.55 5.09291 21.4005C5.12236 21.3142 5.15003 21.2227 5.17948 21.1364C5.23312 20.9657 5.19536 21.1486 5.14638 21.1946L4.78202 21.4354L4.85044 21.4122C4.70816 21.4252 4.56409 21.4329 4.41654 21.4477C4.34608 21.4129 4.34429 21.4076 4.40067 21.4355C4.44295 21.4564 4.48344 21.472 4.52572 21.4929C4.58031 21.5154 4.63669 21.5433 4.69128 21.5659C4.84452 21.6372 4.99598 21.7032 5.14922 21.7745C5.43635 21.9119 5.72526 22.0546 6.00543 22.2061C6.56925 22.5021 7.12441 22.8245 7.66387 23.1698C8.03582 23.4017 8.60936 23.1722 8.77972 22.7918C8.97961 22.3427 8.79654 21.9236 8.40167 21.676C7.78292 21.2871 7.14846 20.9211 6.49661 20.5904C6.17068 20.4251 5.84127 20.2668 5.50838 20.1155C5.00993 19.8913 4.43916 19.6094 3.95621 20.037C3.622 20.3321 3.53816 20.7948 3.40838 21.2084C3.2994 21.5621 3.20273 21.9176 3.11311 22.2766C2.9269 23.0086 2.78467 23.7491 2.68115 24.5C2.62176 24.9309 2.86663 25.4112 3.33094 25.4827C3.75305 25.551 4.24738 25.2955 4.31365 24.833L4.32417 24.8294Z\" fill=\"#6945D8\"/>\\n<path d=\"M63.8101 39.3602C64.8082 40.0548 65.8638 40.6418 66.9942 41.0862L66.7313 39.7905C65.7499 40.7039 65.5361 42.2726 65.407 43.5368C65.3599 43.9693 65.5802 44.4462 66.0568 44.5195C66.4666 44.586 66.9908 44.3321 67.0395 43.8697C67.1032 43.2437 67.1968 42.6194 67.3608 42.0123C67.3798 41.9472 67.3988 41.8821 67.416 41.8117C67.4264 41.773 67.4524 41.6938 67.4229 41.78C67.468 41.6533 67.5183 41.5247 67.5827 41.4031C67.6141 41.3397 67.6472 41.2816 67.6803 41.2234C67.7518 41.1053 67.5685 41.361 67.7204 41.1687C67.8025 41.0647 67.8917 40.964 67.9896 40.8722C68.364 40.5224 68.1933 39.7587 67.7267 39.5765C66.7336 39.1912 65.7117 38.6515 64.8917 38.0843C64.5372 37.8348 64.0168 37.7881 63.7164 38.1657C63.4614 38.4868 63.4151 39.0775 63.7977 39.341L63.8101 39.3602Z\" fill=\"#6945D8\"/>\\n<path d=\"M16.1419 45.194L19.7743 55.9156C20.1185 56.9315 21.6975 56.3965 21.3534 55.3807L17.7209 44.659C17.3768 43.6432 15.7977 44.1782 16.1419 45.194Z\" fill=\"#6945D8\"/>\\n<path d=\"M16.9022 45.5351C19.5009 44.7193 22.0675 43.8086 24.5985 42.8103C25.5931 42.4206 25.0634 40.8398 24.0636 41.2313C21.5325 42.2296 18.9659 43.1402 16.3672 43.9561C15.3443 44.2792 15.8792 45.8582 16.9022 45.5351Z\" fill=\"#6945D8\"/>\\n<path d=\"M23.5013 42.3429C24.8084 46.201 26.1155 50.0591 27.4226 53.9172C27.7667 54.9331 29.3458 54.3981 29.0016 53.3823C27.6945 49.5242 26.3874 45.6661 25.0803 41.808C24.7362 40.7921 23.1571 41.3271 23.5013 42.3429Z\" fill=\"#6945D8\"/>\\n<path d=\"M25.72 37.6657L30.8521 52.8139C31.1963 53.8297 32.7753 53.2947 32.4312 52.2789L27.2991 37.1307C26.9549 36.1149 25.3759 36.6498 25.72 37.6657Z\" fill=\"#6945D8\"/>\\n<path d=\"M26.4679 38.1459C27.8477 37.8369 29.2132 37.4857 30.5715 37.096C31.9298 36.7062 33.2848 36.3586 34.5225 35.7339C34.9221 35.5281 34.9736 34.918 34.7452 34.573C34.4656 34.1631 33.991 34.1479 33.5843 34.3502C33.0286 34.6323 32.3896 34.7901 31.7966 34.9793C31.1614 35.1828 30.5226 35.3757 29.8856 35.5563C28.5799 35.9283 27.2618 36.2634 25.9382 36.5651C25.4958 36.6622 25.2824 37.2274 25.4161 37.6221C25.5731 38.0853 26.0307 38.2412 26.4731 38.1442L26.4679 38.1459Z\" fill=\"#6945D8\"/>\\n<path d=\"M33.0677 35.4757C34.76 40.4707 36.4522 45.4657 38.1463 50.466C38.4905 51.4819 40.0695 50.9469 39.7253 49.931C38.033 44.936 36.3408 39.941 34.6467 34.9408C34.3026 33.9249 32.7235 34.4599 33.0677 35.4757Z\" fill=\"#6945D8\"/>\\n<path d=\"M34.5462 27.0417C36.9732 34.2052 39.4019 41.374 41.8289 48.5375C42.173 49.5534 43.7521 49.0184 43.4079 48.0026C40.9809 40.839 38.5522 33.6702 36.1252 26.5067C35.7811 25.4909 34.202 26.0258 34.5462 27.0417Z\" fill=\"#6945D8\"/>\\n<path d=\"M50.7268 45.5466L43.3889 23.8876C43.0447 22.8717 41.4657 23.4067 41.8099 24.4225L49.1478 46.0816C49.492 47.0974 51.071 46.5624 50.7268 45.5466Z\" fill=\"#6945D8\"/>\\n<path d=\"M35.5138 27.3004C37.7321 26.3142 40.0623 25.5717 42.452 25.1435C42.8945 25.064 43.2637 24.7511 43.2385 24.2609C43.2119 23.8533 42.8055 23.3984 42.3559 23.4744C39.8117 23.9315 37.3392 24.6695 34.9789 25.7214C34.565 25.9027 34.3035 26.3258 34.4568 26.7784C34.5906 27.1732 35.1018 27.487 35.5138 27.3004Z\" fill=\"#6945D8\"/>\\n<path d=\"M41.5892 12.0109L52.7931 45.0811C53.1373 46.0969 54.7163 45.5619 54.3722 44.5461L43.1682 11.4759C42.824 10.4601 41.245 10.9951 41.5892 12.0109Z\" fill=\"#6945D8\"/>\\n<path d=\"M42.6806 12.463L49.6126 10.1145C50.6284 9.77034 50.0935 8.19131 49.0776 8.53547L42.1457 10.884C41.1298 11.2281 41.6648 12.8072 42.6806 12.463Z\" fill=\"#6945D8\"/>\\n<path d=\"M48.7591 9.82341L59.7829 42.362C60.1271 43.3778 61.7061 42.8428 61.362 41.827L50.3381 9.28844C49.994 8.2726 48.4149 8.80756 48.7591 9.82341Z\" fill=\"#6945D8\"/>\\n<path d=\"M14.1153 36.6332C17.9408 33.6883 21.5982 30.5246 25.0508 27.1546C28.5033 23.7846 31.832 20.6032 33.8464 16.3826C34.9196 14.1296 35.6636 11.7359 36.3179 9.33735C36.5992 8.29734 34.9632 7.97147 34.6854 9.00442C33.5477 13.1803 32.0559 17.1593 29.1653 20.4563C26.1315 23.9192 22.7978 27.1551 19.3436 30.1913C17.3453 31.9479 15.2886 33.6363 13.1807 35.2599C12.3333 35.9108 13.261 37.2981 14.1171 36.6384L14.1153 36.6332Z\" fill=\"#6945D8\"/>\\n<path d=\"M33.6888 10.897C34.622 10.1702 35.5091 9.37676 36.3309 8.52918L34.9095 8.24794C35.5381 9.56642 36.0282 10.9436 36.3743 12.3636C36.4766 12.7866 37.0366 13.0369 37.4313 12.8856C37.8821 12.7094 38.0663 12.2832 37.9533 11.8286C37.6019 10.4104 37.1119 9.03323 36.4886 7.71297C36.3607 7.43945 36.1787 7.23121 35.8673 7.16069C35.5559 7.09016 35.2805 7.21277 35.0725 7.42995C34.6948 7.82195 34.3047 8.19467 33.9006 8.56043C33.8656 8.59575 33.8148 8.63642 33.8778 8.57988C33.8148 8.63642 33.7553 8.68592 33.6923 8.74247C33.6013 8.82024 33.5051 8.89979 33.4141 8.97757C33.1953 9.16317 32.973 9.33824 32.7506 9.51331C32.4075 9.78212 32.2466 10.2943 32.5279 10.6743C32.7844 11.0157 33.3159 11.1818 33.6888 10.897Z\" fill=\"#6945D8\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-edj1xf\",\"data-framer-name\":\"Header Elements\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:96,intrinsicWidth:82,svg:'<svg width=\"82\" height=\"96\" viewBox=\"0 0 82 96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"14.205\" cy=\"50.6708\" r=\"13.7207\" fill=\"#DDD4F6\"/>\\n<path d=\"M14.1837 43.393C14.2117 43.1574 14.5536 43.1574 14.5816 43.393L14.8162 45.3698C15.119 47.9224 17.1315 49.9349 19.684 50.2377L21.6608 50.4723C21.8965 50.5003 21.8965 50.8422 21.6608 50.8702L19.684 51.1047C17.1315 51.4076 15.119 53.4201 14.8162 55.9726L14.5816 57.9494C14.5536 58.1851 14.2117 58.1851 14.1837 57.9494L13.9492 55.9726C13.6463 53.4201 11.6338 51.4076 9.08124 51.1047L7.10446 50.8702C6.86883 50.8422 6.86883 50.5003 7.10446 50.4723L9.08124 50.2377C11.6338 49.9349 13.6463 47.9224 13.9492 45.3698L14.1837 43.393Z\" fill=\"#6945D8\"/>\\n<circle cx=\"63.2305\" cy=\"84.0049\" r=\"11.3105\" fill=\"#DDD4F6\"/>\\n<path d=\"M63.2138 78.0051C63.2369 77.8108 63.5188 77.8108 63.5418 78.0051L63.7352 79.6346C63.9849 81.7388 65.6439 83.3978 67.748 83.6474L69.3776 83.8408C69.5718 83.8639 69.5718 84.1457 69.3776 84.1688L67.748 84.3622C65.6439 84.6118 63.9849 86.2708 63.7352 88.375L63.5418 90.0045C63.5188 90.1988 63.2369 90.1988 63.2138 90.0045L63.0205 88.375C62.7708 86.2708 61.1118 84.6118 59.0077 84.3622L57.3781 84.1688C57.1839 84.1457 57.1839 83.8639 57.3781 83.8408L59.0077 83.6474C61.1118 83.3978 62.7708 81.7388 63.0205 79.6346L63.2138 78.0051Z\" fill=\"#6945D8\"/>\\n<circle cx=\"63.2304\" cy=\"18.9482\" r=\"18.0019\" fill=\"#DDD4F6\"/>\\n<path d=\"M63.4335 8.53418C61.4816 8.53443 59.5684 9.08001 57.9089 10.1096C56.2493 11.1393 54.9091 12.6122 54.0388 14.3629C53.1685 16.1137 52.8025 18.0729 52.982 20.0205C53.1615 21.9682 53.8793 23.8271 55.0549 25.3885C56.2305 26.9499 57.8172 28.152 59.6369 28.8596C61.4565 29.5673 63.4371 29.7526 65.356 29.3946C67.2749 29.0366 69.0563 28.1496 70.4999 26.8332C71.9436 25.5168 72.9924 23.8232 73.5285 21.9424L63.4335 19.0532V8.53418Z\" fill=\"#6945D8\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ad5jai\",\"data-framer-name\":\"hero text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hrexy0-container\",isAuthoredByUser:true,nodeId:\"osETbtHTN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{fontSize:45},OQzcYzjPf:{fontSize:72}},children:/*#__PURE__*/_jsx(TypewriterLoopComponent,{backgroundColor:\"rgba(255, 255, 255, 0)\",color:\"var(--token-fbd44840-817d-4361-be53-e8a88247dd39, rgb(36, 36, 35))\",fixedText:\"CREATIVE\",fontFamily:\"Sora\",fontSize:90,fontWeight:\"bold\",height:\"100%\",id:\"osETbtHTN\",layoutId:\"osETbtHTN\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",words:[\"STRATEGY\",\"PRODUCTION\",\"ANALYSIS\",\"OPTIMIZATION\"]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v4v3p6\",\"data-framer-name\":\"bottom line container\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ukex1p\",\"data-framer-name\":\"line\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:666,svg:'<svg width=\"666\" height=\"27\" viewBox=\"-4 -4 666 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0.96582C206.966 0.96582 627.737 0.96582 655.093 0.96582C689.288 0.96582 332.946 9.96421 244.76 18.9627\" stroke=\"#DDD4F6\" stroke-width=\"8\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4zpl7m\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-addi1e\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{y:(componentViewport?.y||0)+0+105+100+0+0+0+307+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+105+72+0+0+0+273.2+0+0+0+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1fnh6d-container\",id:\"1fnh6d\",nodeId:\"X5YwYY8x_\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{variant:\"tsFGwOP96\"}},children:/*#__PURE__*/_jsx(ButtonBookACall,{height:\"100%\",id:\"X5YwYY8x_\",jpvDeCZCk:jpvDeCZCk3bnx0g({overlay:overlay1}),layoutId:\"X5YwYY8x_\",style:{height:\"100%\"},variant:\"lSXQxNjki\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1dkfiz0\"),\"data-framer-portal-id\":\"1fnh6d\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"ViA15GMbP\"),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-os28t1\"),\"data-framer-portal-id\":\"1fnh6d\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qrx17o-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BnpreEu2W\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!-- Calendly inline widget begin -->\\n<div style=\"width: 100%; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden;\">\\n    <div class=\"calendly-inline-widget\"\\n         data-url=\"https://calendly.com/d/dkq-p8s-z56/creative-milkshake-introduction?primary_color=af00ff\"\\n         style=\"width: 100%; height: 100%; min-height: 600px; border: 0; overflow: hidden;\">\\n    </div>\\n</div>\\n<script type=\"text/javascript\" src=\"https://assets.calendly.com/assets/external/widget.js\" async></script>\\n<!-- Calendly inline widget end -->\\n',id:\"BnpreEu2W\",layoutId:\"BnpreEu2W\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U29yYS1tZWRpdW0=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216))\"},children:\"No lock-ins. Zero risk.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U29yYS1tZWRpdW0=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-acd1c6f3-2631-4811-a84e-d3ccc64a9697, rgb(105, 69, 216))\"},children:\"No lock-ins. Zero risk.\"})}),className:\"framer-yfgicr\",fonts:[\"FS;Sora-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xf3gbx hidden-72rtr7 hidden-1snewio\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+105+100+0+0+0+307+41+4),pixelHeight:47,pixelWidth:118,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FXKM2LLavaFAskzBqJfiiE6ak.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:47,pixelWidth:118,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FXKM2LLavaFAskzBqJfiiE6ak.svg\"},className:\"framer-ysjnzd\",\"data-framer-name\":\"Meta\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:66,intrinsicWidth:149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+105+100+0+0+0+307+41+4),pixelHeight:75,pixelWidth:300,src:\"https://framerusercontent.com/images/9M2XGWtlA2WK6ll9m5f4nTyE8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:66,intrinsicWidth:149,pixelHeight:75,pixelWidth:300,src:\"https://framerusercontent.com/images/9M2XGWtlA2WK6ll9m5f4nTyE8.svg\"},className:\"framer-1vhscqb\",\"data-framer-name\":\"Mask_group\"})})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1284abb hidden-cfeywi\",\"data-framer-name\":\"Right\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1m251ao\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mswe5u\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bahuom\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:229,intrinsicWidth:227,svg:'<svg width=\"227\" height=\"229\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m215.275 135.205.734.174-.493 2.085c-.123.517-.145.988-.069 1.412.075.431.225.813.448 1.146.231.335.519.613.865.835.346.222.732.384 1.158.484.441.105.866.131 1.276.081a2.908 2.908 0 0 0 1.137-.362c.349-.198.647-.474.893-.829.245-.348.428-.777.548-1.287l.494-2.085.733.173-.473 2.002c-.162.685-.408 1.254-.736 1.707a3.632 3.632 0 0 1-2.538 1.513 4.114 4.114 0 0 1-1.42-.081l-.199-.047a4.061 4.061 0 0 1-1.295-.561 3.83 3.83 0 0 1-1.052-1.023 3.73 3.73 0 0 1-.583-1.466c-.098-.555-.065-1.178.099-1.869l.473-2.002Zm.139-.587 7.724 1.827-.188.797-7.724-1.827.188-.797Zm-2.289 9.477 6.479 5.312-.48 1.384-8.408.254.275-.794 7.853-.23-.358.344.37-1.069.062.512-6.061-4.94.268-.773Zm1.853 2.284.614.497-1.196 3.45-.794.021 1.376-3.968Zm-6.072 9.026 6.691 2.976-.332.748-6.692-2.976.333-.748Zm7.502.649.679.302-2.328 5.235-.679-.302 2.328-5.235Zm-9.64 4.152 5.49 6.329-.706 1.283-8.331-1.169.405-.735 7.78 1.098-.411.277.545-.99-.025.515-5.141-5.891.394-.717Zm1.441 2.563.521.594-1.76 3.199-.786-.113 2.025-3.68Zm-9.58 10.919.58.429-1.371 1.852c-.278.376-.387.746-.327 1.112.061.376.271.696.628.961.352.26.712.366 1.079.316.373-.045.701-.258.983-.639l1.371-1.853.433.321-1.301 1.757a3.6 3.6 0 0 1-.914.891 1.76 1.76 0 0 1-1.015.321c-.354-.004-.719-.144-1.094-.422l-.104-.077a2.261 2.261 0 0 1-.74-.883 1.79 1.79 0 0 1-.108-1.085c.075-.391.275-.805.599-1.244l1.301-1.757Zm.365-.494 6.371 4.716-.487.658-6.371-4.716.487-.658Zm2.699 2.762.433.32-1.198 1.619c-.295.398-.406.772-.334 1.12.079.353.282.651.611.894.341.252.688.362 1.043.33.354-.033.679-.248.973-.646l1.199-1.619.58.43-1.115 1.506c-.483.652-.991 1.03-1.525 1.136-.533.105-1.06-.034-1.579-.419l-.104-.077c-.363-.269-.601-.57-.712-.902a1.719 1.719 0 0 1 .013-1.049c.11-.366.31-.744.6-1.137l1.115-1.506Zm-7.697 3.958 3.917 7.407-.978 1.09-7.851-3.022.561-.625 7.329 2.829-.463.177.755-.841-.141.496-3.675-6.901.546-.61Zm.824 2.823.373.697-2.438 2.717-.74-.288 2.805-3.126Zm-10.822 7.33c.52-.474 1.048-.79 1.584-.948a3.552 3.552 0 0 1 1.559-.096c.499.089.959.257 1.379.505a4.75 4.75 0 0 1 1.089.873l.137.152c.325.355.593.756.807 1.203.212.457.335.933.369 1.427.027.499-.062.998-.267 1.497-.201.504-.549.981-1.042 1.431-.499.455-1.008.759-1.528.913a2.939 2.939 0 0 1-1.551.059c-.502-.115-.974-.365-1.413-.751l.612-.559c.357.306.73.491 1.118.554.393.069.784.034 1.171-.106a3.163 3.163 0 0 0 1.083-.667c.366-.334.629-.695.789-1.084.16-.379.226-.77.199-1.172a3.226 3.226 0 0 0-.304-1.181 4.197 4.197 0 0 0-.728-1.085 4.308 4.308 0 0 0-.984-.808 3.373 3.373 0 0 0-1.163-.411 2.782 2.782 0 0 0-1.224.096c-.407.129-.802.367-1.184.715-.53.484-.855 1.023-.974 1.617-.114.6.017 1.19.392 1.772l-.613.559a3.487 3.487 0 0 1-.573-1.46 3.081 3.081 0 0 1 .193-1.561c.197-.52.553-1.014 1.067-1.484Zm-9.531 8.022 4.968.922.81-.606-.473 5.533-.759.567.447-5.082.415.429-6.227-1.15.819-.613Zm3.957-2.962 4.711 6.294-.656.491-4.71-6.295.655-.49Zm-7.457 5.376 4.153 6.675-.695.432-4.153-6.675.695-.432Zm-.531.33.393.631-3.338 2.076-.392-.631 3.337-2.076Zm1.918 3.081.387.622-3.027 1.883-.387-.622 3.027-1.883Zm1.843 2.963.393.631-3.237 2.014-.393-.631 3.237-2.014Zm-11.059-1.742.336.675-1.918.955c-.476.237-.852.521-1.129.851a2.934 2.934 0 0 0-.594 1.078c-.11.391-.139.791-.089 1.199.051.408.174.808.369 1.2.202.405.453.748.755 1.032.295.286.63.5 1.005.642.376.142.779.194 1.209.156.424-.035.87-.169 1.339-.402l1.919-.956.336.675-1.841.917c-.63.314-1.225.489-1.783.527a3.633 3.633 0 0 1-1.551-.215 3.53 3.53 0 0 1-1.236-.768 4.09 4.09 0 0 1-.846-1.142l-.091-.184a4.077 4.077 0 0 1-.398-1.354 3.835 3.835 0 0 1 .114-1.463 3.71 3.71 0 0 1 .753-1.386c.364-.43.864-.803 1.5-1.12l1.841-.917Zm.54-.269 3.538 7.105-.733.365-3.538-7.105.733-.365Zm-16.699 7.031c.669-.219 1.28-.291 1.833-.216a3.595 3.595 0 0 1 1.462.552 4.11 4.11 0 0 1 1.051 1.027c.284.405.495.82.634 1.242l.064.195c.15.457.23.933.242 1.428.006.504-.077.988-.249 1.453a3.383 3.383 0 0 1-.858 1.256c-.39.377-.902.67-1.536.878-.642.21-1.231.279-1.769.206a2.942 2.942 0 0 1-1.437-.582c-.412-.311-.739-.733-.982-1.265l.788-.259c.2.426.464.747.792.965a2.26 2.26 0 0 0 1.112.383c.404.034.824-.021 1.261-.164.471-.155.859-.376 1.164-.666.301-.28.522-.609.662-.987.143-.372.212-.773.207-1.202a4.192 4.192 0 0 0-.219-1.288 4.307 4.307 0 0 0-.566-1.14 3.374 3.374 0 0 0-.892-.852 2.805 2.805 0 0 0-1.156-.415c-.424-.049-.882.006-1.373.167-.682.224-1.199.583-1.551 1.076-.35.5-.473 1.092-.37 1.776l-.788.258a3.5 3.5 0 0 1 .076-1.566 3.09 3.09 0 0 1 .817-1.345c.392-.393.919-.698 1.581-.915Zm-7.164 2.336 1.699 7.709-.799.176-1.699-7.709.799-.176Zm-4.764 1.05 3.367 2.82-.935.206-3.41-2.81.978-.216Zm4.933 1.968.158.715-2.062.454c-.378.083-.678.227-.897.429a1.45 1.45 0 0 0-.436.725 1.93 1.93 0 0 0 .001.904c.071.323.197.596.379.821.182.224.415.383.7.474.286.099.619.106.997.023l2.062-.454.155.704-1.925.424c-.567.126-1.068.14-1.501.045a1.937 1.937 0 0 1-1.078-.59c-.286-.297-.484-.695-.594-1.192l-.032-.148c-.11-.497-.098-.945.035-1.342.135-.39.378-.719.731-.988.354-.262.815-.455 1.382-.58l1.925-.424Zm-9.53-1.136 1.009 7.796-.811.105-1.01-7.796.812-.105Zm-.62.08.096.737-3.899.505-.095-.737 3.898-.505Zm.466 3.599.094.726-3.535.458-.094-.726 3.535-.458Zm.448 3.46.096.737-3.781.49-.095-.737 3.78-.49Zm-7.848-6.19-2.596 7.966-1.463.056-3.291-7.742.84-.032 3.066 7.233-.45-.209 1.13-.043-.454.243 2.4-7.441.818-.031Zm-1.454 2.556-.241.752-3.648.139-.308-.732 4.197-.159Zm-10.642-2.379-.33 7.315-.818-.037.33-7.315.818.037Zm2.132 7.221-.033.743-5.724-.258.034-.743 5.723.258Zm-8.941-7.699-.853 7.816-.814-.089.853-7.815.814.088Zm-6.618-.887 1.358 8.238-.826-.15-1.248-7.703.392.312-1.123-.205.508-.148-3.7 6.803-.816-.148 4.003-7.263 1.452.264Zm-7.691-1.576-2.09 7.579-.788-.218 2.089-7.579.789.218Zm-.603-.166-.197.716-3.79-1.044.198-.717 3.79 1.045Zm-.964 3.498-.194.706-3.437-.947.195-.706 3.436.947Zm-.927 3.364-.197.717-3.676-1.013.198-.717 3.675 1.013Zm-11.06-8.014-.276.667-1.691-.701c-.392-.162-.74-.221-1.046-.177a1.552 1.552 0 0 0-.795.37 2.092 2.092 0 0 0-.525.762c-.13.312-.185.615-.168.91.016.301.115.576.3.823.185.248.473.453.865.615l1.691.701-.276.667-1.562-.648c-.584-.242-1.025-.537-1.323-.886-.305-.352-.48-.735-.526-1.151a2.503 2.503 0 0 1 .194-1.283l.058-.139c.178-.432.435-.78.77-1.045.326-.261.722-.408 1.186-.441.458-.036.978.067 1.562.309l1.562.647Zm1.658-2.425-3.022 7.292-.756-.313 3.022-7.292.756.313Zm-8.119-3.509-3.664 6.991-.725-.38 3.665-6.991.724.38Zm-4.32-2.265.76 4.326-.85-.445-.798-4.346.888.465Zm2.506 4.682-.34.648-1.87-.98c-.343-.179-.664-.263-.963-.249a1.447 1.447 0 0 0-.8.274 1.944 1.944 0 0 0-.581.692 1.945 1.945 0 0 0-.238.872c-.006.289.07.56.23.814.155.259.405.479.748.659l1.87.98-.335.639-1.746-.915c-.515-.27-.907-.581-1.177-.932a1.933 1.933 0 0 1-.445-1.146c-.028-.411.077-.843.314-1.294l.07-.134c.236-.451.533-.786.89-1.004a2.082 2.082 0 0 1 1.196-.286c.44.028.917.177 1.432.447l1.745.915Zm-9.177-8.902c.569.377.995.805 1.28 1.286.284.481.453.98.507 1.498a4.277 4.277 0 0 1-.106 1.506c-.124.486-.31.918-.56 1.295l-.107.162a4.327 4.327 0 0 1-.997 1.057 4.06 4.06 0 0 1-1.357.665 3.676 3.676 0 0 1-1.562.077c-.55-.08-1.1-.302-1.65-.667-.558-.368-.977-.788-1.26-1.259a3.661 3.661 0 0 1-.54-1.468 3.896 3.896 0 0 1 .091-1.503c.118-.49.31-.936.576-1.337l.112-.17c.25-.377.575-.718.974-1.022.39-.302.835-.527 1.339-.677a3.656 3.656 0 0 1 1.576-.118c.554.074 1.115.299 1.684.675Zm-.416.629a3.222 3.222 0 0 0-1.271-.519 3 3 0 0 0-1.251.076c-.406.119-.78.306-1.121.562a3.723 3.723 0 0 0-.876.932 3.808 3.808 0 0 0-.533 1.197 3.144 3.144 0 0 0-.059 1.24c.053.414.195.804.425 1.172.23.368.552.688.965.961.407.27.825.439 1.253.507a2.99 2.99 0 0 0 1.255-.061c.398-.107.77-.286 1.118-.538a3.8 3.8 0 0 0 .893-.959c.242-.365.413-.755.516-1.17.102-.414.128-.831.08-1.251a3.001 3.001 0 0 0-.42-1.182 3.267 3.267 0 0 0-.974-.967Zm-6.948-5.656-.483.579-1.646-1.371c-.409-.341-.82-.571-1.233-.691a2.926 2.926 0 0 0-1.226-.11 3.01 3.01 0 0 0-1.133.402 3.7 3.7 0 0 0-.95.82c-.29.348-.503.717-.641 1.106a2.912 2.912 0 0 0-.183 1.179c.021.401.136.791.343 1.169.203.375.505.729.908 1.065l1.647 1.371-.483.579-1.58-1.316c-.54-.45-.94-.923-1.2-1.42a3.626 3.626 0 0 1-.428-1.505c-.03-.502.038-.983.205-1.441a4.11 4.11 0 0 1 .706-1.235l.13-.157a4.106 4.106 0 0 1 1.08-.909 3.868 3.868 0 0 1 1.386-.486 3.743 3.743 0 0 1 1.572.132c.54.16 1.082.468 1.628.922l1.58 1.317Zm.463.386-5.08 6.098-.628-.523 5.08-6.099.628.524Zm-10.258-9.374c.5.514.818 1.037.953 1.567a2.6 2.6 0 0 1-.075 1.56c-.19.515-.515.995-.973 1.441l-3.436 3.34-.57-.587 3.505-3.408c.345-.335.586-.689.724-1.063a1.96 1.96 0 0 0 .046-1.157c-.106-.398-.344-.787-.714-1.168-.366-.376-.74-.622-1.125-.739a1.953 1.953 0 0 0-1.157.014c-.388.126-.754.357-1.1.693l-3.505 3.408-.57-.587 3.436-3.341c.458-.445.947-.756 1.468-.931a2.6 2.6 0 0 1 1.561-.031c.521.144 1.032.474 1.532.989Zm-7.387-8.355c.435.554.712 1.103.83 1.649a3.577 3.577 0 0 1-.019 1.562 4.102 4.102 0 0 1-.605 1.339c-.284.406-.6.746-.95 1.021l-.162.127a4.924 4.924 0 0 1-1.259.715 3.963 3.963 0 0 1-1.45.263 3.39 3.39 0 0 1-1.474-.376c-.488-.237-.938-.619-1.35-1.144-.418-.53-.684-1.061-.8-1.591a2.939 2.939 0 0 1 .056-1.55c.152-.493.436-.945.853-1.355l.513.652c-.332.333-.544.692-.635 1.074-.098.387-.091.779.02 1.176.106.391.301.767.585 1.129.306.389.647.678 1.024.866.366.187.75.282 1.154.285.398.006.798-.066 1.2-.217a4.201 4.201 0 0 0 1.136-.646 4.33 4.33 0 0 0 .877-.922c.237-.351.402-.727.496-1.13a2.805 2.805 0 0 0-.006-1.228c-.098-.415-.307-.826-.627-1.233-.443-.564-.957-.928-1.54-1.09-.59-.157-1.189-.071-1.796.26l-.512-.652c.472-.27.971-.425 1.497-.464a3.082 3.082 0 0 1 1.543.308c.504.234.97.625 1.401 1.172Zm-5.431-7.184-6.151 3.973-.444-.687 6.151-3.974.444.688Zm-4.647 5.925-.624.403-3.109-4.813.624-.403 3.109 4.813Zm1.064-11.795-6.865 3.83-.399-.714 6.865-3.831.4.715Zm-3.598-7.376c.283.62.418 1.21.404 1.768a3.658 3.658 0 0 1-.363 1.539 4.269 4.269 0 0 1-.887 1.222 4.22 4.22 0 0 1-1.161.801l-.177.081c-.437.2-.906.323-1.405.369a4.047 4.047 0 0 1-1.503-.155 3.66 3.66 0 0 1-1.366-.762c-.424-.359-.773-.839-1.047-1.44-.277-.607-.411-1.185-.401-1.734 0-.553.107-1.063.32-1.531.212-.468.503-.877.872-1.227.36-.353.759-.63 1.196-.829l.186-.085a4.215 4.215 0 0 1 1.367-.352 4.03 4.03 0 0 1 1.494.136c.503.133.97.378 1.4.734.431.356.788.844 1.071 1.465Zm-.686.313a3.206 3.206 0 0 0-.803-1.113 2.995 2.995 0 0 0-1.102-.599 3.5 3.5 0 0 0-1.249-.117 3.755 3.755 0 0 0-1.236.327c-.418.191-.78.435-1.086.733a3.133 3.133 0 0 0-.706 1.02 2.877 2.877 0 0 0-.26 1.22c0 .434.103.876.309 1.326.202.445.467.809.794 1.094a2.99 2.99 0 0 0 1.096.613c.395.12.806.165 1.234.135.425-.036.847-.15 1.265-.34a3.723 3.723 0 0 0 1.057-.719 3.49 3.49 0 0 0 .73-1.02c.175-.379.265-.787.27-1.224a3.262 3.262 0 0 0-.313-1.336Zm-2.75-7.888-7.476 2.43-.423-1.3 5.438-6.298-.107-.328.23.152-6.933 2.254-.243-.747 7.477-2.431.426 1.311-5.438 6.297.106.328-.23-.151 6.934-2.255.24.738Zm-2.714-62.562-.72-.22.623-2.05c.154-.508.207-.977.157-1.404a2.933 2.933 0 0 0-.375-1.173 3.017 3.017 0 0 0-.81-.888 3.701 3.701 0 0 0-1.126-.556 3.6 3.6 0 0 0-1.268-.16 2.89 2.89 0 0 0-1.158.289 2.705 2.705 0 0 0-.943.77c-.266.333-.476.75-.628 1.25L8.5 85.536l-.721-.22.599-1.967c.204-.674.485-1.226.841-1.658a3.627 3.627 0 0 1 1.221-.98 3.54 3.54 0 0 1 1.408-.37 4.09 4.09 0 0 1 1.411.17l.196.06a4.1 4.1 0 0 1 1.257.641c.392.292.72.654.986 1.088.26.431.422.931.49 1.5.062.559-.01 1.179-.217 1.859l-.599 1.968Zm-.175.576-7.594-2.31.239-.782 7.593 2.31-.238.782Zm2.872-9.286-6.134-5.707.565-1.351 8.408.273-.324.775-7.852-.262.379-.32-.437 1.043-.03-.515 5.74 5.31-.315.754Zm-1.706-2.395-.582-.535 1.41-3.368.793.029-1.622 3.874Zm6.635-8.641-6.492-3.39.379-.725 6.491 3.39-.378.725Zm-7.447-1.118-.659-.344 2.652-5.079.659.344-2.652 5.08Zm9.876-3.542-5.084-6.659.785-1.236 8.242 1.686-.45.71-7.696-1.583.427-.251-.606.955.058-.513 4.763 6.2-.439.692Zm-1.278-2.648-.483-.625 1.957-3.082.777.162-2.25 3.545ZM34.39 50.283l-.552-.465 1.483-1.763c.3-.357.432-.72.395-1.09-.037-.378-.227-.71-.567-.997-.335-.282-.688-.41-1.057-.383-.376.022-.716.215-1.02.577l-1.484 1.764-.412-.347 1.407-1.673c.305-.362.628-.64.968-.832a1.751 1.751 0 0 1 1.032-.258c.354.026.71.189 1.067.49l.099.083c.324.272.551.581.683.927.126.34.14.703.04 1.09-.099.385-.324.786-.675 1.204l-1.407 1.673Zm-.395.47-6.066-5.103.527-.626 6.065 5.102-.526.627Zm-2.523-2.924-.412-.347 1.297-1.541c.319-.38.453-.745.402-1.097-.056-.357-.241-.667-.554-.93-.324-.273-.664-.404-1.02-.394-.356.01-.693.205-1.012.584l-1.297 1.541-.552-.464 1.206-1.434c.523-.621 1.053-.968 1.592-1.04.54-.072 1.056.1 1.55.516l.1.084c.346.29.564.606.654.944.085.334.06.683-.078 1.047-.132.357-.355.723-.67 1.097l-1.206 1.434Zm7.953-3.497-3.448-7.636 1.044-1.027 7.647 3.505-.599.589-7.139-3.28.474-.149-.807.793.172-.486 3.239 7.117-.584.574Zm-.647-2.869-.33-.718 2.603-2.56.721.333-2.994 2.945Zm11.234-6.629c-.548.44-1.095.724-1.64.848a3.58 3.58 0 0 1-1.562 0 4.115 4.115 0 0 1-1.345-.59 4.746 4.746 0 0 1-1.032-.94l-.128-.16a4.917 4.917 0 0 1-.73-1.25 3.986 3.986 0 0 1-.28-1.448c.003-.5.123-.992.36-1.477.232-.49.608-.945 1.128-1.364.526-.423 1.053-.695 1.582-.816a2.938 2.938 0 0 1 1.551.038c.495.145.95.424 1.365.837l-.647.52c-.337-.328-.697-.536-1.081-.623a2.253 2.253 0 0 0-1.176.033c-.39.111-.764.31-1.122.599-.386.31-.67.654-.855 1.033a2.539 2.539 0 0 0-.27 1.158c-.003.398.074.797.23 1.197.15.394.37.77.658 1.128.275.341.586.63.933.867.352.232.73.393 1.135.483.399.084.808.078 1.227-.02.415-.103.824-.316 1.226-.64.56-.45.917-.968 1.073-1.554.15-.591.057-1.189-.28-1.792l.645-.52c.276.47.437.967.482 1.492.04.52-.056 1.036-.29 1.547-.229.506-.614.977-1.157 1.414Zm10.011-7.411-4.901-1.23-.847.556.816-5.493.792-.52-.761 5.046-.388-.454 6.144 1.534-.855.561Zm-4.134 2.71-4.31-6.574.684-.449 4.31 6.575-.684.448Zm7.768-4.897-3.729-6.92.72-.389 3.73 6.921-.72.388Zm.55-.296-.352-.654 3.46-1.865.353.654-3.46 1.865Zm-1.721-3.195-.348-.645 3.138-1.69.348.644-3.138 1.691Zm-1.656-3.072-.352-.654 3.356-1.808.352.654-3.356 1.809Zm10.932 2.426-.293-.695 1.974-.833c.49-.207.883-.466 1.18-.778.303-.316.523-.662.66-1.039a3.02 3.02 0 0 0 .163-1.191 3.708 3.708 0 0 0-.293-1.22 3.6 3.6 0 0 0-.688-1.078 2.907 2.907 0 0 0-.963-.704 2.706 2.706 0 0 0-1.197-.231c-.425.008-.879.114-1.362.318l-1.974.833-.293-.695 1.895-.8c.648-.273 1.252-.411 1.812-.414a3.627 3.627 0 0 1 1.534.311c.46.204.855.485 1.186.844.33.36.588.757.773 1.194l.08.188c.18.43.285.889.311 1.376.027.488-.042.973-.205 1.454a3.73 3.73 0 0 1-.838 1.336c-.39.406-.913.748-1.567 1.024l-1.895.8Zm-.556.234-3.086-7.312.754-.319 3.086 7.313-.754.318Zm17.116-5.982c-.68.177-1.295.21-1.843.101a3.58 3.58 0 0 1-1.424-.643 4.114 4.114 0 0 1-.984-1.09 4.742 4.742 0 0 1-.555-1.28l-.052-.198a4.91 4.91 0 0 1-.151-1.44 3.97 3.97 0 0 1 .34-1.435 3.39 3.39 0 0 1 .934-1.2c.413-.352.942-.612 1.589-.78.653-.17 1.245-.201 1.778-.094a2.928 2.928 0 0 1 1.398.671c.391.336.691.777.9 1.324l-.802.208c-.173-.437-.417-.774-.73-1.012a2.252 2.252 0 0 0-1.086-.452 3.176 3.176 0 0 0-1.269.085c-.48.124-.88.321-1.204.59a2.546 2.546 0 0 0-.723.945c-.165.362-.26.757-.281 1.186a4.2 4.2 0 0 0 .137 1.3c.11.423.275.814.494 1.173.226.356.505.659.836.906.33.241.706.403 1.128.486.42.077.88.05 1.38-.08.696-.18 1.234-.506 1.617-.976.38-.477.54-1.06.48-1.75l.802-.208c.06.541.001 1.06-.173 1.559a3.1 3.1 0 0 1-.9 1.29c-.416.368-.962.64-1.636.814Zm7.277-1.867-1.215-7.8.809-.125 1.215 7.8-.81.125Zm4.82-.75-3.185-3.025.947-.147 3.228 3.018-.99.154Zm-4.8-2.272-.113-.723 2.086-.325c.383-.06.69-.184.923-.373.232-.188.392-.42.48-.696.088-.275.106-.576.055-.902a1.948 1.948 0 0 0-.327-.843 1.45 1.45 0 0 0-.669-.517c-.28-.116-.611-.145-.994-.085l-2.086.325-.11-.713 1.947-.303c.574-.09 1.074-.073 1.5.05.432.114.779.332 1.04.655.267.314.44.724.518 1.227l.023.15c.078.503.039.949-.119 1.336a2.078 2.078 0 0 1-.79.941c-.37.24-.842.404-1.417.493l-1.947.303Zm9.46 1.723-.524-7.844.817-.055.524 7.844-.817.055Zm.623-.042-.049-.741 3.922-.262.049.741-3.922.262Zm-.242-3.621-.048-.73 3.556-.238.049.73-3.557.238Zm-.232-3.482-.05-.74 3.804-.255.05.742-3.804.253Zm7.449 6.67 3.08-7.791 1.464.034 2.81 7.93-.84-.02-2.617-7.408.436.236-1.13-.026.468-.215-2.853 7.28-.818-.02Zm1.609-2.461.286-.737 3.65.086.263.75-4.199-.1Zm10.459 3.023.782-7.281.814.087-.782 7.281-.814-.087Zm-1.681-7.34.079-.739 5.697.612-.079.739-5.697-.612Zm8.473 8.236 1.34-7.747.806.14-1.339 7.746-.807-.14Zm6.518 1.301-.842-8.307.816.202.764 7.766-.372-.336 1.108.274-.516.116 4.117-6.558.805.199-4.448 6.998-1.432-.354Zm7.584 2.053 2.56-7.434.773.267-2.559 7.433-.774-.266Zm.591.203.242-.703 3.716 1.28-.242.703-3.716-1.28Zm1.181-3.432.239-.692 3.37 1.16-.238.693-3.371-1.16Zm1.136-3.299.242-.702 3.605 1.24-.242.704-3.605-1.242Zm10.536 8.694.318-.648 1.644.805c.38.186.725.267 1.033.242.311-.031.583-.138.816-.32.236-.188.427-.43.572-.727a2.05 2.05 0 0 0 .224-.897 1.472 1.472 0 0 0-.248-.841c-.169-.259-.444-.482-.824-.668l-1.644-.805.317-.648 1.519.744c.567.277.989.6 1.265.967.282.37.433.764.452 1.181.026.42-.065.844-.274 1.27l-.066.134c-.205.42-.484.75-.835.995-.341.24-.745.362-1.211.366-.459.007-.972-.129-1.539-.407l-1.519-.744Zm-1.806 2.316 3.473-7.089.735.36-3.473 7.09-.735-.36Zm7.885 4.008 4.094-6.749.7.425-4.094 6.749-.7-.425Zm4.171 2.53-.488-4.364.819.497.526 4.387-.857-.52Zm-2.209-4.829.379-.626 1.805 1.095c.332.2.647.304.946.31.299.004.571-.07.816-.224a1.95 1.95 0 0 0 .623-.655c.172-.282.269-.567.293-.855a1.454 1.454 0 0 0-.179-.827c-.139-.269-.375-.504-.706-.705l-1.805-1.095.375-.616 1.685 1.022c.497.301.869.636 1.116 1.004.257.366.381.756.373 1.171.001.413-.13.837-.394 1.273l-.078.128c-.265.436-.582.752-.952.947-.367.19-.771.26-1.211.21-.437-.055-.904-.233-1.401-.535l-1.685-1.022Zm8.613 9.459c-.544-.41-.943-.865-1.197-1.363a3.653 3.653 0 0 1-.412-1.526 4.251 4.251 0 0 1 .199-1.496c.154-.478.367-.897.639-1.258l.117-.155c.29-.384.644-.715 1.061-.993.428-.28.893-.473 1.396-.58a3.664 3.664 0 0 1 1.564.021c.543.114 1.079.37 1.606.768.533.403.925.848 1.178 1.336.262.486.411.985.447 1.498a3.907 3.907 0 0 1-.184 1.494 4.16 4.16 0 0 1-.657 1.299l-.124.163c-.272.361-.617.68-1.035.96a4.027 4.027 0 0 1-1.378.591 3.659 3.659 0 0 1-1.581.02c-.548-.108-1.095-.367-1.639-.779Zm.455-.601a3.22 3.22 0 0 0 1.236.597 3 3 0 0 0 1.254.002 3.497 3.497 0 0 0 1.154-.492c.357-.234.667-.526.931-.875.277-.367.479-.754.607-1.161.128-.407.173-.819.136-1.234a2.872 2.872 0 0 0-.351-1.196 3.187 3.187 0 0 0-.904-1.02 3.162 3.162 0 0 0-1.219-.584 2.984 2.984 0 0 0-1.255-.017 3.396 3.396 0 0 0-1.15.468 3.813 3.813 0 0 0-.951.9c-.264.35-.46.729-.588 1.136-.127.407-.18.822-.157 1.245.027.416.142.818.345 1.205.212.385.516.727.912 1.026Zm6.58 6.089.517-.549 1.559 1.471c.386.365.782.62 1.188.766.41.15.816.212 1.216.185a3.015 3.015 0 0 0 1.156-.33c.366-.189.699-.442.999-.76.311-.33.547-.684.708-1.065.167-.375.252-.764.256-1.165a2.7 2.7 0 0 0-.271-1.188c-.178-.386-.458-.759-.84-1.119l-1.558-1.47.517-.549 1.496 1.412c.512.483.882.98 1.11 1.491a3.64 3.64 0 0 1 .04 2.955 4.111 4.111 0 0 1-.781 1.188l-.14.15a4.096 4.096 0 0 1-1.134.84c-.435.22-.906.353-1.413.398a3.731 3.731 0 0 1-1.561-.228c-.528-.193-1.051-.534-1.568-1.022l-1.496-1.411Zm-.439-.414 5.448-5.773.595.562-5.447 5.773-.596-.562Zm9.668 9.992c-.467-.545-.752-1.086-.853-1.623a2.59 2.59 0 0 1 .172-1.553c.221-.502.575-.961 1.06-1.377l3.637-3.12.533.62-3.711 3.184c-.365.313-.628.652-.788 1.017-.155.37-.195.753-.118 1.151.081.404.294.807.64 1.21.342.398.7.667 1.076.808.382.136.768.155 1.157.058.395-.102.775-.31 1.14-.623l3.71-3.184.533.621-3.637 3.12c-.485.417-.992.696-1.523.839a2.598 2.598 0 0 1-1.56-.066c-.511-.176-1-.537-1.468-1.082Zm6.847 8.782c-.4-.58-.642-1.145-.726-1.698a3.565 3.565 0 0 1 .116-1.558c.155-.482.384-.915.687-1.298a4.74 4.74 0 0 1 1.012-.96l.169-.117a4.91 4.91 0 0 1 1.301-.636 3.99 3.99 0 0 1 1.464-.172c.499.04.981.195 1.447.467.473.267.898.676 1.277 1.225.384.556.616 1.102.698 1.638a2.936 2.936 0 0 1-.151 1.544c-.182.483-.494.916-.936 1.3l-.47-.683c.351-.313.585-.657.7-1.033.122-.38.139-.772.053-1.175a3.174 3.174 0 0 0-.514-1.163c-.281-.407-.604-.717-.968-.928a2.538 2.538 0 0 0-1.135-.356c-.396-.031-.8.016-1.21.142a4.185 4.185 0 0 0-1.174.574 4.286 4.286 0 0 0-.933.866 3.37 3.37 0 0 0-.565 1.097c-.114.392-.137.8-.07 1.226.072.42.255.844.548 1.27.408.59.898.985 1.471 1.183.579.194 1.181.145 1.808-.148l.471.682a3.5 3.5 0 0 1-1.524.371 3.087 3.087 0 0 1-1.521-.403c-.488-.265-.93-.684-1.325-1.258Zm4.982 7.534 6.388-3.58.4.713-6.388 3.58-.4-.713Zm5.009-5.623.648-.363 2.801 4.998-.648.363-2.801-4.998Zm-1.809 11.692 7.091-3.394.353.739-7.091 3.393-.353-.738Zm3.135 7.584c-.243-.637-.341-1.233-.292-1.79a3.657 3.657 0 0 1 .459-1.513c.258-.452.578-.84.962-1.163a4.218 4.218 0 0 1 1.209-.728l.181-.069c.45-.172.925-.265 1.427-.28a4.044 4.044 0 0 1 1.49.249c.483.177.921.459 1.315.846.401.385.719.886.955 1.503.238.624.335 1.21.291 1.757a3.67 3.67 0 0 1-.415 1.507 3.904 3.904 0 0 1-.948 1.17c-.381.33-.797.58-1.246.752l-.191.074a4.21 4.21 0 0 1-1.386.264 4.024 4.024 0 0 1-1.483-.229 3.657 3.657 0 0 1-1.351-.82c-.408-.383-.733-.892-.977-1.53Zm.705-.269c.179.47.423.857.732 1.162.315.302.669.524 1.061.666.4.14.813.204 1.239.195.427-.01.845-.092 1.254-.249a3.82 3.82 0 0 0 1.131-.662c.324-.278.58-.603.769-.974.197-.368.309-.768.336-1.201a3.185 3.185 0 0 0-.225-1.344 3.17 3.17 0 0 0-.725-1.141 2.98 2.98 0 0 0-1.055-.68 3.397 3.397 0 0 0-1.223-.213c-.427.01-.855.096-1.284.26a3.716 3.716 0 0 0-1.1.651 3.491 3.491 0 0 0-.793.972c-.198.368-.313.77-.347 1.205-.024.44.053.89.23 1.353Zm2.242 8.042 7.614-1.957.34 1.325-5.822 5.944.085.334-.22-.166 7.061-1.815.196.762-7.614 1.956-.343-1.335 5.822-5.944-.086-.333.221.165-7.061 1.815-.193-.751Z\" fill=\"#6945D8\"/><path d=\"M146.424 117.001a4.1 4.1 0 1 0 0-8.202 4.1 4.1 0 0 0 0 8.202Z\" fill=\"#6945D8\" stroke=\"#6945D8\" stroke-width=\".897\" stroke-miterlimit=\"10\"/><path d=\"M115.962 200.553c47.701 0 86.37-38.669 86.37-86.37 0-47.7-38.669-86.37-86.37-86.37-47.7 0-86.37 38.67-86.37 86.37 0 47.701 38.67 86.37 86.37 86.37Z\" stroke=\"#6945D8\" stroke-width=\".897\" stroke-miterlimit=\"10\"/><path d=\"M115.962 200.553c-47.699 0-86.37-38.671-86.37-86.37m86.372-86.369c47.699 0 86.369 38.67 86.369 86.369\" stroke=\"#6945D8\" stroke-width=\"10.769\" stroke-miterlimit=\"10\"/><path d=\"M124.692 105.452h-17.464v17.464h17.464v-17.464Z\" fill=\"#6945D8\" stroke=\"#6945D8\" stroke-width=\".897\" stroke-miterlimit=\"10\"/><path d=\"M166.992 117.001a4.1 4.1 0 1 0 0-8.202 4.1 4.1 0 0 0 0 8.202Zm-59.762-2.818H29.593m86.371 86.37v-77.638\" stroke=\"#6945D8\" stroke-width=\".897\" stroke-miterlimit=\"10\"/><path d=\"M118.984 86.103h-6.048v6.048h6.048v-6.048Zm0-17.563h-6.048v6.048h6.048V68.54Z\" fill=\"#6945D8\" stroke=\"#6945D8\" stroke-width=\".897\" stroke-miterlimit=\"10\"/><path d=\"M202.334 112.899h-.897m-1.756 0h-73.196m-.889 0h-.898\" stroke=\"#6945D8\" stroke-width=\".897\" stroke-miterlimit=\"10\"/><path d=\"M118.984 50.34h-6.048v6.048h6.048V50.34Z\" fill=\"#6945D8\" stroke=\"#6945D8\" stroke-width=\".897\" stroke-miterlimit=\"10\"/><path d=\"M7.337 120.573a3.195 3.195 0 1 0 0-6.39 3.195 3.195 0 0 0 0 6.39Zm215.547-5.394a3.195 3.195 0 1 0 0-6.39 3.195 3.195 0 0 0 0 6.39Z\" fill=\"#6945D8\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t4q8bi\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+105+72+0+0+0+367.2+0),pixelHeight:47,pixelWidth:118,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FXKM2LLavaFAskzBqJfiiE6ak.svg\"},className:\"framer-1dygm03\",\"data-framer-name\":\"Meta\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:66,intrinsicWidth:149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+105+72+0+0+0+367.2+0),pixelHeight:75,pixelWidth:300,src:\"https://framerusercontent.com/images/9M2XGWtlA2WK6ll9m5f4nTyE8.svg\"},className:\"framer-u0e5yv\",\"data-framer-name\":\"Mask_group\"})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x6nwf4 hidden-72rtr7 hidden-1snewio\",\"data-framer-name\":\"Circle\",children:isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1sh4i85 hidden-72rtr7\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:229,intrinsicWidth:227,svg:'<svg width=\"227\" height=\"229\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m215.275 135.205.734.174-.493 2.085c-.123.517-.145.988-.069 1.412.075.431.225.813.448 1.146.231.335.519.613.865.835.346.222.732.384 1.158.484.441.105.866.131 1.276.081a2.908 2.908 0 0 0 1.137-.362c.349-.198.647-.474.893-.829.245-.348.428-.777.548-1.287l.494-2.085.733.173-.473 2.002c-.162.685-.408 1.254-.736 1.707a3.632 3.632 0 0 1-2.538 1.513 4.114 4.114 0 0 1-1.42-.081l-.199-.047a4.061 4.061 0 0 1-1.295-.561 3.83 3.83 0 0 1-1.052-1.023 3.73 3.73 0 0 1-.583-1.466c-.098-.555-.065-1.178.099-1.869l.473-2.002Zm.139-.587 7.724 1.827-.188.797-7.724-1.827.188-.797Zm-2.289 9.477 6.479 5.312-.48 1.384-8.408.254.275-.794 7.853-.23-.358.344.37-1.069.062.512-6.061-4.94.268-.773Zm1.853 2.284.614.497-1.196 3.45-.794.021 1.376-3.968Zm-6.072 9.026 6.691 2.976-.332.748-6.692-2.976.333-.748Zm7.502.649.679.302-2.328 5.235-.679-.302 2.328-5.235Zm-9.64 4.152 5.49 6.329-.706 1.283-8.331-1.169.405-.735 7.78 1.098-.411.277.545-.99-.025.515-5.141-5.891.394-.717Zm1.441 2.563.521.594-1.76 3.199-.786-.113 2.025-3.68Zm-9.58 10.919.58.429-1.371 1.852c-.278.376-.387.746-.327 1.112.061.376.271.696.628.961.352.26.712.366 1.079.316.373-.045.701-.258.983-.639l1.371-1.853.433.321-1.301 1.757a3.6 3.6 0 0 1-.914.891 1.76 1.76 0 0 1-1.015.321c-.354-.004-.719-.144-1.094-.422l-.104-.077a2.261 2.261 0 0 1-.74-.883 1.79 1.79 0 0 1-.108-1.085c.075-.391.275-.805.599-1.244l1.301-1.757Zm.365-.494 6.371 4.716-.487.658-6.371-4.716.487-.658Zm2.699 2.762.433.32-1.198 1.619c-.295.398-.406.772-.334 1.12.079.353.282.651.611.894.341.252.688.362 1.043.33.354-.033.679-.248.973-.646l1.199-1.619.58.43-1.115 1.506c-.483.652-.991 1.03-1.525 1.136-.533.105-1.06-.034-1.579-.419l-.104-.077c-.363-.269-.601-.57-.712-.902a1.719 1.719 0 0 1 .013-1.049c.11-.366.31-.744.6-1.137l1.115-1.506Zm-7.697 3.958 3.917 7.407-.978 1.09-7.851-3.022.561-.625 7.329 2.829-.463.177.755-.841-.141.496-3.675-6.901.546-.61Zm.824 2.823.373.697-2.438 2.717-.74-.288 2.805-3.126Zm-10.822 7.33c.52-.474 1.048-.79 1.584-.948a3.552 3.552 0 0 1 1.559-.096c.499.089.959.257 1.379.505a4.75 4.75 0 0 1 1.089.873l.137.152c.325.355.593.756.807 1.203.212.457.335.933.369 1.427.027.499-.062.998-.267 1.497-.201.504-.549.981-1.042 1.431-.499.455-1.008.759-1.528.913a2.939 2.939 0 0 1-1.551.059c-.502-.115-.974-.365-1.413-.751l.612-.559c.357.306.73.491 1.118.554.393.069.784.034 1.171-.106a3.163 3.163 0 0 0 1.083-.667c.366-.334.629-.695.789-1.084.16-.379.226-.77.199-1.172a3.226 3.226 0 0 0-.304-1.181 4.197 4.197 0 0 0-.728-1.085 4.308 4.308 0 0 0-.984-.808 3.373 3.373 0 0 0-1.163-.411 2.782 2.782 0 0 0-1.224.096c-.407.129-.802.367-1.184.715-.53.484-.855 1.023-.974 1.617-.114.6.017 1.19.392 1.772l-.613.559a3.487 3.487 0 0 1-.573-1.46 3.081 3.081 0 0 1 .193-1.561c.197-.52.553-1.014 1.067-1.484Zm-9.531 8.022 4.968.922.81-.606-.473 5.533-.759.567.447-5.082.415.429-6.227-1.15.819-.613Zm3.957-2.962 4.711 6.294-.656.491-4.71-6.295.655-.49Zm-7.457 5.376 4.153 6.675-.695.432-4.153-6.675.695-.432Zm-.531.33.393.631-3.338 2.076-.392-.631 3.337-2.076Zm1.918 3.081.387.622-3.027 1.883-.387-.622 3.027-1.883Zm1.843 2.963.393.631-3.237 2.014-.393-.631 3.237-2.014Zm-11.059-1.742.336.675-1.918.955c-.476.237-.852.521-1.129.851a2.934 2.934 0 0 0-.594 1.078c-.11.391-.139.791-.089 1.199.051.408.174.808.369 1.2.202.405.453.748.755 1.032.295.286.63.5 1.005.642.376.142.779.194 1.209.156.424-.035.87-.169 1.339-.402l1.919-.956.336.675-1.841.917c-.63.314-1.225.489-1.783.527a3.633 3.633 0 0 1-1.551-.215 3.53 3.53 0 0 1-1.236-.768 4.09 4.09 0 0 1-.846-1.142l-.091-.184a4.077 4.077 0 0 1-.398-1.354 3.835 3.835 0 0 1 .114-1.463 3.71 3.71 0 0 1 .753-1.386c.364-.43.864-.803 1.5-1.12l1.841-.917Zm.54-.269 3.538 7.105-.733.365-3.538-7.105.733-.365Zm-16.699 7.031c.669-.219 1.28-.291 1.833-.216a3.595 3.595 0 0 1 1.462.552 4.11 4.11 0 0 1 1.051 1.027c.284.405.495.82.634 1.242l.064.195c.15.457.23.933.242 1.428.006.504-.077.988-.249 1.453a3.383 3.383 0 0 1-.858 1.256c-.39.377-.902.67-1.536.878-.642.21-1.231.279-1.769.206a2.942 2.942 0 0 1-1.437-.582c-.412-.311-.739-.733-.982-1.265l.788-.259c.2.426.464.747.792.965a2.26 2.26 0 0 0 1.112.383c.404.034.824-.021 1.261-.164.471-.155.859-.376 1.164-.666.301-.28.522-.609.662-.987.143-.372.212-.773.207-1.202a4.192 4.192 0 0 0-.219-1.288 4.307 4.307 0 0 0-.566-1.14 3.374 3.374 0 0 0-.892-.852 2.805 2.805 0 0 0-1.156-.415c-.424-.049-.882.006-1.373.167-.682.224-1.199.583-1.551 1.076-.35.5-.473 1.092-.37 1.776l-.788.258a3.5 3.5 0 0 1 .076-1.566 3.09 3.09 0 0 1 .817-1.345c.392-.393.919-.698 1.581-.915Zm-7.164 2.336 1.699 7.709-.799.176-1.699-7.709.799-.176Zm-4.764 1.05 3.367 2.82-.935.206-3.41-2.81.978-.216Zm4.933 1.968.158.715-2.062.454c-.378.083-.678.227-.897.429a1.45 1.45 0 0 0-.436.725 1.93 1.93 0 0 0 .001.904c.071.323.197.596.379.821.182.224.415.383.7.474.286.099.619.106.997.023l2.062-.454.155.704-1.925.424c-.567.126-1.068.14-1.501.045a1.937 1.937 0 0 1-1.078-.59c-.286-.297-.484-.695-.594-1.192l-.032-.148c-.11-.497-.098-.945.035-1.342.135-.39.378-.719.731-.988.354-.262.815-.455 1.382-.58l1.925-.424Zm-9.53-1.136 1.009 7.796-.811.105-1.01-7.796.812-.105Zm-.62.08.096.737-3.899.505-.095-.737 3.898-.505Zm.466 3.599.094.726-3.535.458-.094-.726 3.535-.458Zm.448 3.46.096.737-3.781.49-.095-.737 3.78-.49Zm-7.848-6.19-2.596 7.966-1.463.056-3.291-7.742.84-.032 3.066 7.233-.45-.209 1.13-.043-.454.243 2.4-7.441.818-.031Zm-1.454 2.556-.241.752-3.648.139-.308-.732 4.197-.159Zm-10.642-2.379-.33 7.315-.818-.037.33-7.315.818.037Zm2.132 7.221-.033.743-5.724-.258.034-.743 5.723.258Zm-8.941-7.699-.853 7.816-.814-.089.853-7.815.814.088Zm-6.618-.887 1.358 8.238-.826-.15-1.248-7.703.392.312-1.123-.205.508-.148-3.7 6.803-.816-.148 4.003-7.263 1.452.264Zm-7.691-1.576-2.09 7.579-.788-.218 2.089-7.579.789.218Zm-.603-.166-.197.716-3.79-1.044.198-.717 3.79 1.045Zm-.964 3.498-.194.706-3.437-.947.195-.706 3.436.947Zm-.927 3.364-.197.717-3.676-1.013.198-.717 3.675 1.013Zm-11.06-8.014-.276.667-1.691-.701c-.392-.162-.74-.221-1.046-.177a1.552 1.552 0 0 0-.795.37 2.092 2.092 0 0 0-.525.762c-.13.312-.185.615-.168.91.016.301.115.576.3.823.185.248.473.453.865.615l1.691.701-.276.667-1.562-.648c-.584-.242-1.025-.537-1.323-.886-.305-.352-.48-.735-.526-1.151a2.503 2.503 0 0 1 .194-1.283l.058-.139c.178-.432.435-.78.77-1.045.326-.261.722-.408 1.186-.441.458-.036.978.067 1.562.309l1.562.647Zm1.658-2.425-3.022 7.292-.756-.313 3.022-7.292.756.313Zm-8.119-3.509-3.664 6.991-.725-.38 3.665-6.991.724.38Zm-4.32-2.265.76 4.326-.85-.445-.798-4.346.888.465Zm2.506 4.682-.34.648-1.87-.98c-.343-.179-.664-.263-.963-.249a1.447 1.447 0 0 0-.8.274 1.944 1.944 0 0 0-.581.692 1.945 1.945 0 0 0-.238.872c-.006.289.07.56.23.814.155.259.405.479.748.659l1.87.98-.335.639-1.746-.915c-.515-.27-.907-.581-1.177-.932a1.933 1.933 0 0 1-.445-1.146c-.028-.411.077-.843.314-1.294l.07-.134c.236-.451.533-.786.89-1.004a2.082 2.082 0 0 1 1.196-.286c.44.028.917.177 1.432.447l1.745.915Zm-9.177-8.902c.569.377.995.805 1.28 1.286.284.481.453.98.507 1.498a4.277 4.277 0 0 1-.106 1.506c-.124.486-.31.918-.56 1.295l-.107.162a4.327 4.327 0 0 1-.997 1.057 4.06 4.06 0 0 1-1.357.665 3.676 3.676 0 0 1-1.562.077c-.55-.08-1.1-.302-1.65-.667-.558-.368-.977-.788-1.26-1.259a3.661 3.661 0 0 1-.54-1.468 3.896 3.896 0 0 1 .091-1.503c.118-.49.31-.936.576-1.337l.112-.17c.25-.377.575-.718.974-1.022.39-.302.835-.527 1.339-.677a3.656 3.656 0 0 1 1.576-.118c.554.074 1.115.299 1.684.675Zm-.416.629a3.222 3.222 0 0 0-1.271-.519 3 3 0 0 0-1.251.076c-.406.119-.78.306-1.121.562a3.723 3.723 0 0 0-.876.932 3.808 3.808 0 0 0-.533 1.197 3.144 3.144 0 0 0-.059 1.24c.053.414.195.804.425 1.172.23.368.552.688.965.961.407.27.825.439 1.253.507a2.99 2.99 0 0 0 1.255-.061c.398-.107.77-.286 1.118-.538a3.8 3.8 0 0 0 .893-.959c.242-.365.413-.755.516-1.17.102-.414.128-.831.08-1.251a3.001 3.001 0 0 0-.42-1.182 3.267 3.267 0 0 0-.974-.967Zm-6.948-5.656-.483.579-1.646-1.371c-.409-.341-.82-.571-1.233-.691a2.926 2.926 0 0 0-1.226-.11 3.01 3.01 0 0 0-1.133.402 3.7 3.7 0 0 0-.95.82c-.29.348-.503.717-.641 1.106a2.912 2.912 0 0 0-.183 1.179c.021.401.136.791.343 1.169.203.375.505.729.908 1.065l1.647 1.371-.483.579-1.58-1.316c-.54-.45-.94-.923-1.2-1.42a3.626 3.626 0 0 1-.428-1.505c-.03-.502.038-.983.205-1.441a4.11 4.11 0 0 1 .706-1.235l.13-.157a4.106 4.106 0 0 1 1.08-.909 3.868 3.868 0 0 1 1.386-.486 3.743 3.743 0 0 1 1.572.132c.54.16 1.082.468 1.628.922l1.58 1.317Zm.463.386-5.08 6.098-.628-.523 5.08-6.099.628.524Zm-10.258-9.374c.5.514.818 1.037.953 1.567a2.6 2.6 0 0 1-.075 1.56c-.19.515-.515.995-.973 1.441l-3.436 3.34-.57-.587 3.505-3.408c.345-.335.586-.689.724-1.063a1.96 1.96 0 0 0 .046-1.157c-.106-.398-.344-.787-.714-1.168-.366-.376-.74-.622-1.125-.739a1.953 1.953 0 0 0-1.157.014c-.388.126-.754.357-1.1.693l-3.505 3.408-.57-.587 3.436-3.341c.458-.445.947-.756 1.468-.931a2.6 2.6 0 0 1 1.561-.031c.521.144 1.032.474 1.532.989Zm-7.387-8.355c.435.554.712 1.103.83 1.649a3.577 3.577 0 0 1-.019 1.562 4.102 4.102 0 0 1-.605 1.339c-.284.406-.6.746-.95 1.021l-.162.127a4.924 4.924 0 0 1-1.259.715 3.963 3.963 0 0 1-1.45.263 3.39 3.39 0 0 1-1.474-.376c-.488-.237-.938-.619-1.35-1.144-.418-.53-.684-1.061-.8-1.591a2.939 2.939 0 0 1 .056-1.55c.152-.493.436-.945.853-1.355l.513.652c-.332.333-.544.692-.635 1.074-.098.387-.091.779.02 1.176.106.391.301.767.585 1.129.306.389.647.678 1.024.866.366.187.75.282 1.154.285.398.006.798-.066 1.2-.217a4.201 4.201 0 0 0 1.136-.646 4.33 4.33 0 0 0 .877-.922c.237-.351.402-.727.496-1.13a2.805 2.805 0 0 0-.006-1.228c-.098-.415-.307-.826-.627-1.233-.443-.564-.957-.928-1.54-1.09-.59-.157-1.189-.071-1.796.26l-.512-.652c.472-.27.971-.425 1.497-.464a3.082 3.082 0 0 1 1.543.308c.504.234.97.625 1.401 1.172Zm-5.431-7.184-6.151 3.973-.444-.687 6.151-3.974.444.688Zm-4.647 5.925-.624.403-3.109-4.813.624-.403 3.109 4.813Zm1.064-11.795-6.865 3.83-.399-.714 6.865-3.831.4.715Zm-3.598-7.376c.283.62.418 1.21.404 1.768a3.658 3.658 0 0 1-.363 1.539 4.269 4.269 0 0 1-.887 1.222 4.22 4.22 0 0 1-1.161.801l-.177.081c-.437.2-.906.323-1.405.369a4.047 4.047 0 0 1-1.503-.155 3.66 3.66 0 0 1-1.366-.762c-.424-.359-.773-.839-1.047-1.44-.277-.607-.411-1.185-.401-1.734 0-.553.107-1.063.32-1.531.212-.468.503-.877.872-1.227.36-.353.759-.63 1.196-.829l.186-.085a4.215 4.215 0 0 1 1.367-.352 4.03 4.03 0 0 1 1.494.136c.503.133.97.378 1.4.734.431.356.788.844 1.071 1.465Zm-.686.313a3.206 3.206 0 0 0-.803-1.113 2.995 2.995 0 0 0-1.102-.599 3.5 3.5 0 0 0-1.249-.117 3.755 3.755 0 0 0-1.236.327c-.418.191-.78.435-1.086.733a3.133 3.133 0 0 0-.706 1.02 2.877 2.877 0 0 0-.26 1.22c0 .434.103.876.309 1.326.202.445.467.809.794 1.094a2.99 2.99 0 0 0 1.096.613c.395.12.806.165 1.234.135.425-.036.847-.15 1.265-.34a3.723 3.723 0 0 0 1.057-.719 3.49 3.49 0 0 0 .73-1.02c.175-.379.265-.787.27-1.224a3.262 3.262 0 0 0-.313-1.336Zm-2.75-7.888-7.476 2.43-.423-1.3 5.438-6.298-.107-.328.23.152-6.933 2.254-.243-.747 7.477-2.431.426 1.311-5.438 6.297.106.328-.23-.151 6.934-2.255.24.738Zm-2.714-62.562-.72-.22.623-2.05c.154-.508.207-.977.157-1.404a2.933 2.933 0 0 0-.375-1.173 3.017 3.017 0 0 0-.81-.888 3.701 3.701 0 0 0-1.126-.556 3.6 3.6 0 0 0-1.268-.16 2.89 2.89 0 0 0-1.158.289 2.705 2.705 0 0 0-.943.77c-.266.333-.476.75-.628 1.25L8.5 85.536l-.721-.22.599-1.967c.204-.674.485-1.226.841-1.658a3.627 3.627 0 0 1 1.221-.98 3.54 3.54 0 0 1 1.408-.37 4.09 4.09 0 0 1 1.411.17l.196.06a4.1 4.1 0 0 1 1.257.641c.392.292.72.654.986 1.088.26.431.422.931.49 1.5.062.559-.01 1.179-.217 1.859l-.599 1.968Zm-.175.576-7.594-2.31.239-.782 7.593 2.31-.238.782Zm2.872-9.286-6.134-5.707.565-1.351 8.408.273-.324.775-7.852-.262.379-.32-.437 1.043-.03-.515 5.74 5.31-.315.754Zm-1.706-2.395-.582-.535 1.41-3.368.793.029-1.622 3.874Zm6.635-8.641-6.492-3.39.379-.725 6.491 3.39-.378.725Zm-7.447-1.118-.659-.344 2.652-5.079.659.344-2.652 5.08Zm9.876-3.542-5.084-6.659.785-1.236 8.242 1.686-.45.71-7.696-1.583.427-.251-.606.955.058-.513 4.763 6.2-.439.692Zm-1.278-2.648-.483-.625 1.957-3.082.777.162-2.25 3.545ZM34.39 50.283l-.552-.465 1.483-1.763c.3-.357.432-.72.395-1.09-.037-.378-.227-.71-.567-.997-.335-.282-.688-.41-1.057-.383-.376.022-.716.215-1.02.577l-1.484 1.764-.412-.347 1.407-1.673c.305-.362.628-.64.968-.832a1.751 1.751 0 0 1 1.032-.258c.354.026.71.189 1.067.49l.099.083c.324.272.551.581.683.927.126.34.14.703.04 1.09-.099.385-.324.786-.675 1.204l-1.407 1.673Zm-.395.47-6.066-5.103.527-.626 6.065 5.102-.526.627Zm-2.523-2.924-.412-.347 1.297-1.541c.319-.38.453-.745.402-1.097-.056-.357-.241-.667-.554-.93-.324-.273-.664-.404-1.02-.394-.356.01-.693.205-1.012.584l-1.297 1.541-.552-.464 1.206-1.434c.523-.621 1.053-.968 1.592-1.04.54-.072 1.056.1 1.55.516l.1.084c.346.29.564.606.654.944.085.334.06.683-.078 1.047-.132.357-.355.723-.67 1.097l-1.206 1.434Zm7.953-3.497-3.448-7.636 1.044-1.027 7.647 3.505-.599.589-7.139-3.28.474-.149-.807.793.172-.486 3.239 7.117-.584.574Zm-.647-2.869-.33-.718 2.603-2.56.721.333-2.994 2.945Zm11.234-6.629c-.548.44-1.095.724-1.64.848a3.58 3.58 0 0 1-1.562 0 4.115 4.115 0 0 1-1.345-.59 4.746 4.746 0 0 1-1.032-.94l-.128-.16a4.917 4.917 0 0 1-.73-1.25 3.986 3.986 0 0 1-.28-1.448c.003-.5.123-.992.36-1.477.232-.49.608-.945 1.128-1.364.526-.423 1.053-.695 1.582-.816a2.938 2.938 0 0 1 1.551.038c.495.145.95.424 1.365.837l-.647.52c-.337-.328-.697-.536-1.081-.623a2.253 2.253 0 0 0-1.176.033c-.39.111-.764.31-1.122.599-.386.31-.67.654-.855 1.033a2.539 2.539 0 0 0-.27 1.158c-.003.398.074.797.23 1.197.15.394.37.77.658 1.128.275.341.586.63.933.867.352.232.73.393 1.135.483.399.084.808.078 1.227-.02.415-.103.824-.316 1.226-.64.56-.45.917-.968 1.073-1.554.15-.591.057-1.189-.28-1.792l.645-.52c.276.47.437.967.482 1.492.04.52-.056 1.036-.29 1.547-.229.506-.614.977-1.157 1.414Zm10.011-7.411-4.901-1.23-.847.556.816-5.493.792-.52-.761 5.046-.388-.454 6.144 1.534-.855.561Zm-4.134 2.71-4.31-6.574.684-.449 4.31 6.575-.684.448Zm7.768-4.897-3.729-6.92.72-.389 3.73 6.921-.72.388Zm.55-.296-.352-.654 3.46-1.865.353.654-3.46 1.865Zm-1.721-3.195-.348-.645 3.138-1.69.348.644-3.138 1.691Zm-1.656-3.072-.352-.654 3.356-1.808.352.654-3.356 1.809Zm10.932 2.426-.293-.695 1.974-.833c.49-.207.883-.466 1.18-.778.303-.316.523-.662.66-1.039a3.02 3.02 0 0 0 .163-1.191 3.708 3.708 0 0 0-.293-1.22 3.6 3.6 0 0 0-.688-1.078 2.907 2.907 0 0 0-.963-.704 2.706 2.706 0 0 0-1.197-.231c-.425.008-.879.114-1.362.318l-1.974.833-.293-.695 1.895-.8c.648-.273 1.252-.411 1.812-.414a3.627 3.627 0 0 1 1.534.311c.46.204.855.485 1.186.844.33.36.588.757.773 1.194l.08.188c.18.43.285.889.311 1.376.027.488-.042.973-.205 1.454a3.73 3.73 0 0 1-.838 1.336c-.39.406-.913.748-1.567 1.024l-1.895.8Zm-.556.234-3.086-7.312.754-.319 3.086 7.313-.754.318Zm17.116-5.982c-.68.177-1.295.21-1.843.101a3.58 3.58 0 0 1-1.424-.643 4.114 4.114 0 0 1-.984-1.09 4.742 4.742 0 0 1-.555-1.28l-.052-.198a4.91 4.91 0 0 1-.151-1.44 3.97 3.97 0 0 1 .34-1.435 3.39 3.39 0 0 1 .934-1.2c.413-.352.942-.612 1.589-.78.653-.17 1.245-.201 1.778-.094a2.928 2.928 0 0 1 1.398.671c.391.336.691.777.9 1.324l-.802.208c-.173-.437-.417-.774-.73-1.012a2.252 2.252 0 0 0-1.086-.452 3.176 3.176 0 0 0-1.269.085c-.48.124-.88.321-1.204.59a2.546 2.546 0 0 0-.723.945c-.165.362-.26.757-.281 1.186a4.2 4.2 0 0 0 .137 1.3c.11.423.275.814.494 1.173.226.356.505.659.836.906.33.241.706.403 1.128.486.42.077.88.05 1.38-.08.696-.18 1.234-.506 1.617-.976.38-.477.54-1.06.48-1.75l.802-.208c.06.541.001 1.06-.173 1.559a3.1 3.1 0 0 1-.9 1.29c-.416.368-.962.64-1.636.814Zm7.277-1.867-1.215-7.8.809-.125 1.215 7.8-.81.125Zm4.82-.75-3.185-3.025.947-.147 3.228 3.018-.99.154Zm-4.8-2.272-.113-.723 2.086-.325c.383-.06.69-.184.923-.373.232-.188.392-.42.48-.696.088-.275.106-.576.055-.902a1.948 1.948 0 0 0-.327-.843 1.45 1.45 0 0 0-.669-.517c-.28-.116-.611-.145-.994-.085l-2.086.325-.11-.713 1.947-.303c.574-.09 1.074-.073 1.5.05.432.114.779.332 1.04.655.267.314.44.724.518 1.227l.023.15c.078.503.039.949-.119 1.336a2.078 2.078 0 0 1-.79.941c-.37.24-.842.404-1.417.493l-1.947.303Zm9.46 1.723-.524-7.844.817-.055.524 7.844-.817.055Zm.623-.042-.049-.741 3.922-.262.049.741-3.922.262Zm-.242-3.621-.048-.73 3.556-.238.049.73-3.557.238Zm-.232-3.482-.05-.74 3.804-.255.05.742-3.804.253Zm7.449 6.67 3.08-7.791 1.464.034 2.81 7.93-.84-.02-2.617-7.408.436.236-1.13-.026.468-.215-2.853 7.28-.818-.02Zm1.609-2.461.286-.737 3.65.086.263.75-4.199-.1Zm10.459 3.023.782-7.281.814.087-.782 7.281-.814-.087Zm-1.681-7.34.079-.739 5.697.612-.079.739-5.697-.612Zm8.473 8.236 1.34-7.747.806.14-1.339 7.746-.807-.14Zm6.518 1.301-.842-8.307.816.202.764 7.766-.372-.336 1.108.274-.516.116 4.117-6.558.805.199-4.448 6.998-1.432-.354Zm7.584 2.053 2.56-7.434.773.267-2.559 7.433-.774-.266Zm.591.203.242-.703 3.716 1.28-.242.703-3.716-1.28Zm1.181-3.432.239-.692 3.37 1.16-.238.693-3.371-1.16Zm1.136-3.299.242-.702 3.605 1.24-.242.704-3.605-1.242Zm10.536 8.694.318-.648 1.644.805c.38.186.725.267 1.033.242.311-.031.583-.138.816-.32.236-.188.427-.43.572-.727a2.05 2.05 0 0 0 .224-.897 1.472 1.472 0 0 0-.248-.841c-.169-.259-.444-.482-.824-.668l-1.644-.805.317-.648 1.519.744c.567.277.989.6 1.265.967.282.37.433.764.452 1.181.026.42-.065.844-.274 1.27l-.066.134c-.205.42-.484.75-.835.995-.341.24-.745.362-1.211.366-.459.007-.972-.129-1.539-.407l-1.519-.744Zm-1.806 2.316 3.473-7.089.735.36-3.473 7.09-.735-.36Zm7.885 4.008 4.094-6.749.7.425-4.094 6.749-.7-.425Zm4.171 2.53-.488-4.364.819.497.526 4.387-.857-.52Zm-2.209-4.829.379-.626 1.805 1.095c.332.2.647.304.946.31.299.004.571-.07.816-.224a1.95 1.95 0 0 0 .623-.655c.172-.282.269-.567.293-.855a1.454 1.454 0 0 0-.179-.827c-.139-.269-.375-.504-.706-.705l-1.805-1.095.375-.616 1.685 1.022c.497.301.869.636 1.116 1.004.257.366.381.756.373 1.171.001.413-.13.837-.394 1.273l-.078.128c-.265.436-.582.752-.952.947-.367.19-.771.26-1.211.21-.437-.055-.904-.233-1.401-.535l-1.685-1.022Zm8.613 9.459c-.544-.41-.943-.865-1.197-1.363a3.653 3.653 0 0 1-.412-1.526 4.251 4.251 0 0 1 .199-1.496c.154-.478.367-.897.639-1.258l.117-.155c.29-.384.644-.715 1.061-.993.428-.28.893-.473 1.396-.58a3.664 3.664 0 0 1 1.564.021c.543.114 1.079.37 1.606.768.533.403.925.848 1.178 1.336.262.486.411.985.447 1.498a3.907 3.907 0 0 1-.184 1.494 4.16 4.16 0 0 1-.657 1.299l-.124.163c-.272.361-.617.68-1.035.96a4.027 4.027 0 0 1-1.378.591 3.659 3.659 0 0 1-1.581.02c-.548-.108-1.095-.367-1.639-.779Zm.455-.601a3.22 3.22 0 0 0 1.236.597 3 3 0 0 0 1.254.002 3.497 3.497 0 0 0 1.154-.492c.357-.234.667-.526.931-.875.277-.367.479-.754.607-1.161.128-.407.173-.819.136-1.234a2.872 2.872 0 0 0-.351-1.196 3.187 3.187 0 0 0-.904-1.02 3.162 3.162 0 0 0-1.219-.584 2.984 2.984 0 0 0-1.255-.017 3.396 3.396 0 0 0-1.15.468 3.813 3.813 0 0 0-.951.9c-.264.35-.46.729-.588 1.136-.127.407-.18.822-.157 1.245.027.416.142.818.345 1.205.212.385.516.727.912 1.026Zm6.58 6.089.517-.549 1.559 1.471c.386.365.782.62 1.188.766.41.15.816.212 1.216.185a3.015 3.015 0 0 0 1.156-.33c.366-.189.699-.442.999-.76.311-.33.547-.684.708-1.065.167-.375.252-.764.256-1.165a2.7 2.7 0 0 0-.271-1.188c-.178-.386-.458-.759-.84-1.119l-1.558-1.47.517-.549 1.496 1.412c.512.483.882.98 1.11 1.491a3.64 3.64 0 0 1 .04 2.955 4.111 4.111 0 0 1-.781 1.188l-.14.15a4.096 4.096 0 0 1-1.134.84c-.435.22-.906.353-1.413.398a3.731 3.731 0 0 1-1.561-.228c-.528-.193-1.051-.534-1.568-1.022l-1.496-1.411Zm-.439-.414 5.448-5.773.595.562-5.447 5.773-.596-.562Zm9.668 9.992c-.467-.545-.752-1.086-.853-1.623a2.59 2.59 0 0 1 .172-1.553c.221-.502.575-.961 1.06-1.377l3.637-3.12.533.62-3.711 3.184c-.365.313-.628.652-.788 1.017-.155.37-.195.753-.118 1.151.081.404.294.807.64 1.21.342.398.7.667 1.076.808.382.136.768.155 1.157.058.395-.102.775-.31 1.14-.623l3.71-3.184.533.621-3.637 3.12c-.485.417-.992.696-1.523.839a2.598 2.598 0 0 1-1.56-.066c-.511-.176-1-.537-1.468-1.082Zm6.847 8.782c-.4-.58-.642-1.145-.726-1.698a3.565 3.565 0 0 1 .116-1.558c.155-.482.384-.915.687-1.298a4.74 4.74 0 0 1 1.012-.96l.169-.117a4.91 4.91 0 0 1 1.301-.636 3.99 3.99 0 0 1 1.464-.172c.499.04.981.195 1.447.467.473.267.898.676 1.277 1.225.384.556.616 1.102.698 1.638a2.936 2.936 0 0 1-.151 1.544c-.182.483-.494.916-.936 1.3l-.47-.683c.351-.313.585-.657.7-1.033.122-.38.139-.772.053-1.175a3.174 3.174 0 0 0-.514-1.163c-.281-.407-.604-.717-.968-.928a2.538 2.538 0 0 0-1.135-.356c-.396-.031-.8.016-1.21.142a4.185 4.185 0 0 0-1.174.574 4.286 4.286 0 0 0-.933.866 3.37 3.37 0 0 0-.565 1.097c-.114.392-.137.8-.07 1.226.072.42.255.844.548 1.27.408.59.898.985 1.471 1.183.579.194 1.181.145 1.808-.148l.471.682a3.5 3.5 0 0 1-1.524.371 3.087 3.087 0 0 1-1.521-.403c-.488-.265-.93-.684-1.325-1.258Zm4.982 7.534 6.388-3.58.4.713-6.388 3.58-.4-.713Zm5.009-5.623.648-.363 2.801 4.998-.648.363-2.801-4.998Zm-1.809 11.692 7.091-3.394.353.739-7.091 3.393-.353-.738Zm3.135 7.584c-.243-.637-.341-1.233-.292-1.79a3.657 3.657 0 0 1 .459-1.513c.258-.452.578-.84.962-1.163a4.218 4.218 0 0 1 1.209-.728l.181-.069c.45-.172.925-.265 1.427-.28a4.044 4.044 0 0 1 1.49.249c.483.177.921.459 1.315.846.401.385.719.886.955 1.503.238.624.335 1.21.291 1.757a3.67 3.67 0 0 1-.415 1.507 3.904 3.904 0 0 1-.948 1.17c-.381.33-.797.58-1.246.752l-.191.074a4.21 4.21 0 0 1-1.386.264 4.024 4.024 0 0 1-1.483-.229 3.657 3.657 0 0 1-1.351-.82c-.408-.383-.733-.892-.977-1.53Zm.705-.269c.179.47.423.857.732 1.162.315.302.669.524 1.061.666.4.14.813.204 1.239.195.427-.01.845-.092 1.254-.249a3.82 3.82 0 0 0 1.131-.662c.324-.278.58-.603.769-.974.197-.368.309-.768.336-1.201a3.185 3.185 0 0 0-.225-1.344 3.17 3.17 0 0 0-.725-1.141 2.98 2.98 0 0 0-1.055-.68 3.397 3.397 0 0 0-1.223-.213c-.427.01-.855.096-1.284.26a3.716 3.716 0 0 0-1.1.651 3.491 3.491 0 0 0-.793.972c-.198.368-.313.77-.347 1.205-.024.44.053.89.23 1.353Zm2.242 8.042 7.614-1.957.34 1.325-5.822 5.944.085.334-.22-.166 7.061-1.815.196.762-7.614 1.956-.343-1.335 5.822-5.944-.086-.333.221.165-7.061 1.815-.193-.751Z\" fill=\"#6945D8\"/><path d=\"M146.424 117.001a4.1 4.1 0 1 0 0-8.202 4.1 4.1 0 0 0 0 8.202Z\" fill=\"#6945D8\" stroke=\"#6945D8\" stroke-width=\".897\" stroke-miterlimit=\"10\"/><path d=\"M115.962 200.553c47.701 0 86.37-38.669 86.37-86.37 0-47.7-38.669-86.37-86.37-86.37-47.7 0-86.37 38.67-86.37 86.37 0 47.701 38.67 86.37 86.37 86.37Z\" stroke=\"#6945D8\" stroke-width=\".897\" stroke-miterlimit=\"10\"/><path d=\"M115.962 200.553c-47.699 0-86.37-38.671-86.37-86.37m86.372-86.369c47.699 0 86.369 38.67 86.369 86.369\" stroke=\"#6945D8\" stroke-width=\"10.769\" stroke-miterlimit=\"10\"/><path d=\"M124.692 105.452h-17.464v17.464h17.464v-17.464Z\" fill=\"#6945D8\" stroke=\"#6945D8\" stroke-width=\".897\" stroke-miterlimit=\"10\"/><path d=\"M166.992 117.001a4.1 4.1 0 1 0 0-8.202 4.1 4.1 0 0 0 0 8.202Zm-59.762-2.818H29.593m86.371 86.37v-77.638\" stroke=\"#6945D8\" stroke-width=\".897\" stroke-miterlimit=\"10\"/><path d=\"M118.984 86.103h-6.048v6.048h6.048v-6.048Zm0-17.563h-6.048v6.048h6.048V68.54Z\" fill=\"#6945D8\" stroke=\"#6945D8\" stroke-width=\".897\" stroke-miterlimit=\"10\"/><path d=\"M202.334 112.899h-.897m-1.756 0h-73.196m-.889 0h-.898\" stroke=\"#6945D8\" stroke-width=\".897\" stroke-miterlimit=\"10\"/><path d=\"M118.984 50.34h-6.048v6.048h6.048V50.34Z\" fill=\"#6945D8\" stroke=\"#6945D8\" stroke-width=\".897\" stroke-miterlimit=\"10\"/><path d=\"M7.337 120.573a3.195 3.195 0 1 0 0-6.39 3.195 3.195 0 0 0 0 6.39Zm215.547-5.394a3.195 3.195 0 1 0 0-6.39 3.195 3.195 0 0 0 0 6.39Z\" fill=\"#6945D8\"/></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hauphf\",\"data-framer-name\":\"videos\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m2zvud\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-94yq2x\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{height:154.5952,width:\"86px\",y:(componentViewport?.y||0)+0+662+0+0+0+0+0},OQzcYzjPf:{height:309.1905,width:\"172px\",y:(componentViewport?.y||0)+0+646.2+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:453,width:\"252px\",y:(componentViewport?.y||0)+0+666.2+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-4j39by-container\",\"data-framer-appear-id\":\"4j39by\",initial:animation2,nodeId:\"ANQltD61E\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsVimeoAutoplay,{height:\"100%\",id:\"ANQltD61E\",layoutId:\"ANQltD61E\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yachqYzVz:\"https://vimeo.com/1024807435\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{height:154.5952,width:\"86px\",y:(componentViewport?.y||0)+0+662+0+0+0+0+168.5952},OQzcYzjPf:{height:309.1905,width:\"172px\",y:(componentViewport?.y||0)+0+646.2+0+0+0+0+323.1905}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:453,width:\"252px\",y:(componentViewport?.y||0)+0+666.2+0+0+0+0+467,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-yuduxb-container\",\"data-framer-appear-id\":\"yuduxb\",initial:animation2,nodeId:\"w67az4cPt\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsVimeoAutoplay,{height:\"100%\",id:\"w67az4cPt\",layoutId:\"w67az4cPt\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yachqYzVz:\"https://vimeo.com/1024807407\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oosuay\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{height:154.5952,width:\"86px\",y:(componentViewport?.y||0)+0+662+0+0+0+0+0},OQzcYzjPf:{height:309.1905,width:\"172px\",y:(componentViewport?.y||0)+0+646.2+0+0+48.5953+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:453,width:\"252px\",y:(componentViewport?.y||0)+0+666.2+0+0+80.5+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-2dvb3k-container\",\"data-framer-appear-id\":\"2dvb3k\",initial:animation2,nodeId:\"WtFtuWNar\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsVimeoAutoplay,{height:\"100%\",id:\"WtFtuWNar\",layoutId:\"WtFtuWNar\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yachqYzVz:\"https://vimeo.com/1024807608\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{y:(componentViewport?.y||0)+0+662+0+0+0+0+162.5952},OQzcYzjPf:{y:(componentViewport?.y||0)+0+646.2+0+0+48.5953+0+323.1905}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+666.2+0+0+80.5+0+467,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xkk9ds-container\",nodeId:\"WMEubi8qi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{l7P2BkT5s:\"200% AD SPEND\",variant:\"uqEkwRrDv\"},OQzcYzjPf:{l7P2BkT5s:\"200% AD SPEND\",variant:\"HBRg_gPZp\"}},children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"WMEubi8qi\",l7P2BkT5s:\"AVG. 200%+  AD SPEND\",layoutId:\"WMEubi8qi\",variant:\"cBrZ7lxmx\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{height:86,width:\"86px\",y:(componentViewport?.y||0)+0+662+0+0+0+0+196.5952},OQzcYzjPf:{height:172,width:\"172px\",y:(componentViewport?.y||0)+0+646.2+0+0+48.5953+0+363.1905}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:252,width:\"252px\",y:(componentViewport?.y||0)+0+666.2+0+0+80.5+0+507,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-ainlba-container\",\"data-framer-appear-id\":\"ainlba\",initial:animation2,nodeId:\"OGVouqQ3P\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsVimeoAutoplay,{height:\"100%\",id:\"OGVouqQ3P\",layoutId:\"OGVouqQ3P\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yachqYzVz:\"https://vimeo.com/1024807321\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t29l90\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a4zd36\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nhy66r\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p2a26a\",\"data-framer-name\":\"2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{y:(componentViewport?.y||0)+0+662+0+0+0+0+0+0+0+0+0+0+0},OQzcYzjPf:{y:(componentViewport?.y||0)+0+646.2+0+0+4.5953+0+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+666.2+0+0+68.5+0+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8nu9o1-container\",nodeId:\"TXFC4x8Vo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{style:{width:\"100%\"},variant:\"uqEkwRrDv\"},OQzcYzjPf:{variant:\"HBRg_gPZp\"}},children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"TXFC4x8Vo\",l7P2BkT5s:\"30% AVERAGE DECREASE IN CPA\",layoutId:\"TXFC4x8Vo\",variant:\"O5JMkIxsY\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eze216\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-seqwq8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{height:154.5952,width:\"86px\",y:(componentViewport?.y||0)+0+662+0+0+0+0+0+0+0+0+34+0+0+0},OQzcYzjPf:{height:309.1905,width:\"172px\",y:(componentViewport?.y||0)+0+646.2+0+0+4.5953+0+0+0+0+0+58+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:453,width:\"252px\",y:(componentViewport?.y||0)+0+666.2+0+0+68.5+0+0+0+0+0+58+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-r0sxvw-container\",\"data-framer-appear-id\":\"r0sxvw\",initial:animation2,nodeId:\"X3524Qw6U\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsVimeoAutoplay,{height:\"100%\",id:\"X3524Qw6U\",layoutId:\"X3524Qw6U\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yachqYzVz:\"https://vimeo.com/1024807578\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{height:154.5952,width:\"86px\",y:(componentViewport?.y||0)+0+662+0+0+0+0+0+0+0+0+34+0+0+0},OQzcYzjPf:{height:309.1905,width:\"172px\",y:(componentViewport?.y||0)+0+646.2+0+0+4.5953+0+0+0+0+0+58+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:453,width:\"252px\",y:(componentViewport?.y||0)+0+666.2+0+0+68.5+0+0+0+0+0+58+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-dj4rb8-container\",\"data-framer-appear-id\":\"dj4rb8\",initial:animation2,nodeId:\"y8l2XLi3L\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsVimeoAutoplay,{height:\"100%\",id:\"y8l2XLi3L\",layoutId:\"y8l2XLi3L\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yachqYzVz:\"https://vimeo.com/1024807494\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"We deliver the ads your paid media team needs to drive revenue and ROAS.\"})})},OQzcYzjPf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"We deliver the ads your paid media team needs to drive revenue and ROAS.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"We deliver the ads your paid media team needs to drive revenue and ROAS.\"})}),className:\"framer-1i9hygr\",fonts:[\"FS;Sora-regular\"],id:\"1i9hygr\",text:g7lERPYhbgj9CYYFOn,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"v7AHZVURx\"},implicitPathVariables:undefined},{href:{webPageId:\"v7AHZVURx\"},implicitPathVariables:undefined},{href:{webPageId:\"v7AHZVURx\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{height:45,width:undefined,y:(componentViewport?.y||0)+0+662+0+0+0+0+0+0+316.5952},OQzcYzjPf:{y:(componentViewport?.y||0)+0+646.2+0+0+4.5953+0+0+0+563.1905}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"228px\",y:(componentViewport?.y||0)+0+666.2+0+0+68.5+0+0+0+723,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7bg4t4-container\",nodeId:\"kDe346LSK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{HD9J17O_6:resolvedLinks[2],variant:\"FyYrr61Bc\"},OQzcYzjPf:{HD9J17O_6:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{HD9J17O_6:resolvedLinks[0],height:\"100%\",id:\"kDe346LSK\",layoutId:\"kDe346LSK\",rPnNJHft5:\"View Our Work\",style:{height:\"100%\",width:\"100%\"},variant:\"My8qHYZZ0\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gfm8sh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{height:154.5952,width:\"86px\",y:(componentViewport?.y||0)+0+662+0+0+0+0+0},OQzcYzjPf:{height:309.1905,width:\"172px\",y:(componentViewport?.y||0)+0+646.2+0+0+48.5953+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:453,width:\"252px\",y:(componentViewport?.y||0)+0+666.2+0+0+80.5+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-gustlt-container\",\"data-framer-appear-id\":\"gustlt\",initial:animation2,nodeId:\"qtRRCBnWk\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsVimeoAutoplay,{height:\"100%\",id:\"qtRRCBnWk\",layoutId:\"qtRRCBnWk\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yachqYzVz:\"https://vimeo.com/1024807469\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{y:(componentViewport?.y||0)+0+662+0+0+0+0+162.5952},OQzcYzjPf:{y:(componentViewport?.y||0)+0+646.2+0+0+48.5953+0+323.1905}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+666.2+0+0+80.5+0+467,children:/*#__PURE__*/_jsx(Container,{className:\"framer-drc2gp-container\",nodeId:\"DEDRNHjIm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{l7P2BkT5s:\"20% CVR BOOST\",variant:\"uqEkwRrDv\"},OQzcYzjPf:{l7P2BkT5s:\"20% CVR BOOST\",variant:\"HBRg_gPZp\"}},children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"DEDRNHjIm\",l7P2BkT5s:\"AVG. 20% CVR BOOST\",layoutId:\"DEDRNHjIm\",variant:\"cBrZ7lxmx\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{height:86,width:\"86px\",y:(componentViewport?.y||0)+0+662+0+0+0+0+196.5952},OQzcYzjPf:{height:172,width:\"172px\",y:(componentViewport?.y||0)+0+646.2+0+0+48.5953+0+363.1905}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:252,width:\"252px\",y:(componentViewport?.y||0)+0+666.2+0+0+80.5+0+507,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-16l9y3h-container\",\"data-framer-appear-id\":\"16l9y3h\",initial:animation2,nodeId:\"DW37_Cg6H\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsVimeoAutoplay,{height:\"100%\",id:\"DW37_Cg6H\",layoutId:\"DW37_Cg6H\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yachqYzVz:\"https://vimeo.com/1024807356\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ifmjx9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{height:154.5952,width:\"86px\",y:(componentViewport?.y||0)+0+662+0+0+0+0+0},OQzcYzjPf:{height:309.1905,width:\"172px\",y:(componentViewport?.y||0)+0+646.2+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:453,width:\"252px\",y:(componentViewport?.y||0)+0+666.2+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-1kaukdj-container\",\"data-framer-appear-id\":\"1kaukdj\",initial:animation2,nodeId:\"ma6SBeL9a\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsVimeoAutoplay,{height:\"100%\",id:\"ma6SBeL9a\",layoutId:\"ma6SBeL9a\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yachqYzVz:\"https://vimeo.com/1024807528\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{height:154.5952,width:\"86px\",y:(componentViewport?.y||0)+0+662+0+0+0+0+168.5952},OQzcYzjPf:{height:309.1905,width:\"172px\",y:(componentViewport?.y||0)+0+646.2+0+0+0+0+323.1905}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:453,width:\"252px\",y:(componentViewport?.y||0)+0+666.2+0+0+0+0+467,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-1ug5djm-container\",\"data-framer-appear-id\":\"1ug5djm\",initial:animation2,nodeId:\"bWJpEm2e9\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsVimeoAutoplay,{height:\"100%\",id:\"bWJpEm2e9\",layoutId:\"bWJpEm2e9\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yachqYzVz:\"https://vimeo.com/1024807553\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{height:401.5952,y:(componentViewport?.y||0)+0+662+0},OQzcYzjPf:{height:593,y:(componentViewport?.y||0)+0+646.2+43.6905}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:992,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+666.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vyq4az-container\",nodeId:\"INfyUlPlC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsPattern,{height:\"100%\",id:\"INfyUlPlC\",layoutId:\"INfyUlPlC\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-marjco hidden-1snewio hidden-cfeywi\",\"data-framer-name\":\"Ticker\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15lpkgs-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oLNJFRasa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"oLNJFRasa\",layoutId:\"oLNJFRasa\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ho2om2\",\"data-framer-name\":\"ticker-1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-tlmi8\",\"data-framer-name\":\"Il Makiage\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:106,svg:'<svg width=\"106\" height=\"39\" viewBox=\"0 0 106 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.7617 32.6648V36.9095L33.3726 32.6648H31.9834V38.8389H33.0639V34.517L34.5302 38.8389H35.8422V32.6648H34.7617Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.1572 32.6648V38.8389H42.016V37.8356H39.5464V36.2149H41.7845V35.1344H39.5464V33.6681H41.9389V32.6648H38.1572Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M48.422 32.6648L47.7274 37.2182H47.6502L46.8784 32.6648H45.6436L44.8718 37.2182H44.7947L44.1001 32.6648H42.7881L44.0229 38.8389H45.4893L46.261 34.3627L47.0328 38.8389H48.4991L49.7339 32.6648H48.422Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M55.2902 32.6648L54.3641 35.0573L53.5152 32.6648H52.0488L53.7467 36.4464V38.8389H54.9815V36.4464L56.6794 32.6648H55.2902Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M58.8406 36.8326C58.8406 37.0641 58.9178 37.2957 58.9949 37.5272C59.0721 37.6815 59.1493 37.8359 59.3036 37.9131C59.6123 38.0674 59.921 38.0674 60.2298 37.9131C60.3841 37.8359 60.4613 37.6815 60.5385 37.5272C60.6156 37.2957 60.6928 37.0641 60.6928 36.8326C60.6928 36.5239 60.6928 36.2152 60.6928 35.7521C60.6928 35.2891 60.6928 34.9804 60.6928 34.6717C60.6928 34.4401 60.6156 34.2086 60.5385 33.9771C60.4613 33.8227 60.3841 33.6684 60.2298 33.5912C59.921 33.4369 59.6123 33.4369 59.3036 33.5912C59.1493 33.6684 59.0721 33.8227 58.9949 33.9771C58.9178 34.2086 58.9178 34.4401 58.8406 34.6717C58.8406 34.9804 58.7634 35.2891 58.7634 35.7521C58.7634 36.2152 58.7634 36.5239 58.8406 36.8326ZM57.5286 34.4401C57.5286 34.0543 57.6829 33.7456 57.8373 33.4369C57.9916 33.1282 58.2232 32.8966 58.5319 32.7423C58.9178 32.5879 59.3036 32.5107 59.6895 32.5107C60.0754 32.5107 60.5385 32.5879 60.9243 32.7423C61.233 32.8966 61.4646 33.1282 61.6189 33.4369C61.7733 33.7456 61.9276 34.1314 61.9276 34.4401C62.0048 35.2891 62.0048 36.138 61.9276 37.0641C61.9276 37.45 61.7733 37.7587 61.6189 38.0674C61.4646 38.3761 61.233 38.6077 60.9243 38.6848C60.5385 38.8392 60.1526 38.9164 59.6895 38.9164C59.3036 38.9164 58.8406 38.8392 58.5319 38.6848C58.2232 38.5305 57.9916 38.299 57.8373 38.0674C57.6829 37.7587 57.6058 37.3728 57.5286 37.0641C57.4514 36.138 57.4514 35.2891 57.5286 34.4401Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M65.0143 35.366C65.323 35.366 65.5546 35.2888 65.7861 35.1344C65.9405 34.9801 66.0948 34.6714 66.0176 34.4398C66.0176 33.8224 65.7089 33.5909 65.0915 33.5909H64.4741V35.366H65.0143ZM65.5546 32.6648C66.0176 32.6648 66.4807 32.742 66.8666 33.0507C67.1753 33.3594 67.3296 33.8224 67.3296 34.2855C67.3296 34.6714 67.2524 34.9801 67.0981 35.2888C66.8666 35.5975 66.635 35.7518 66.2492 35.829C66.5579 35.829 66.7894 35.9062 67.0209 36.1377C67.1753 36.3693 67.3296 36.6008 67.3296 36.9095C67.3296 37.0638 67.3296 37.141 67.3296 37.2954C67.3296 37.4497 67.3296 37.6041 67.3296 37.7584C67.3296 37.99 67.3296 38.2987 67.4068 38.5302C67.4068 38.6845 67.484 38.8389 67.6383 38.9161V38.9932H66.172C66.0948 38.9161 66.0948 38.8389 66.0176 38.6845C66.0176 38.6074 66.0176 38.453 66.0176 38.2987V37.141C66.0176 36.9095 65.9405 36.7551 65.8633 36.5236C65.7089 36.3693 65.4774 36.2921 65.1687 36.2921H64.4741V38.9161H63.1621V32.742L65.5546 32.6648Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M71.6515 32.6648L69.9536 35.1344V32.6648H68.6416V38.8389H69.9536V36.9867L70.4167 36.2921L71.8058 38.8389H73.3494L71.3428 35.2888L73.1178 32.6648H71.6515Z\" fill=\"white\"/>\\n<path d=\"M3.89093 0.559082H0.34082V25.5642H3.89093V0.559082Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.5918 0.559082V25.5642H15.2355V22.6315H10.1419V0.559082H6.5918Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.2658 25.5642H21.0244V0.559082H26.1952L28.3562 16.9204L30.4399 0.559082H35.6107V25.487H32.2921V18.2324C32.2921 14.991 32.3693 11.7496 32.5237 7.6593L29.8997 25.487H26.6583L24.0343 7.73647C24.2658 11.8268 24.2658 14.991 24.2658 18.3096V25.5642Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M43.251 7.6593L44.4086 18.2324H41.939L43.251 7.6593ZM41.0129 0.559082L37.7715 25.487H41.0901L41.6303 20.7021H44.6402L45.1804 25.487H48.7305L45.6435 0.559082H41.0129Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M58.3005 0.559082L54.596 11.5953V0.559082H51.0459V25.5642H54.596V13.0616L58.3005 25.5642H62.2365L57.9146 12.1355L61.9278 0.559082H58.3005Z\" fill=\"white\"/>\\n<path d=\"M67.7933 0.559082H64.2432V25.5642H67.7933V0.559082Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M75.4336 7.6593L76.5913 18.2324H74.1216L75.4336 7.6593ZM73.1955 0.559082L69.9541 25.487H73.2727L73.8129 20.7021H76.8228L77.363 25.487H80.9131L77.7489 0.559082H73.1955Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M87.1637 25.7963C84.5397 25.7963 82.6875 24.0984 82.6875 21.0885V5.19023C82.6875 2.25753 84.5397 0.328125 87.8583 0.328125C91.1769 0.328125 92.7204 2.25753 92.7204 5.19023V8.89469H89.4018V5.11305C89.4018 4.18694 89.016 3.18365 87.7811 3.18365C86.5463 3.18365 86.1604 4.18694 86.1604 5.11305V21.0114C86.1604 21.9375 86.5463 22.9408 87.7811 22.9408C88.8616 22.9408 89.4018 22.2462 89.4018 21.0114V15.4547H87.4724V12.6763H92.7204V25.5648H90.6367L89.9421 24.4843C89.4018 25.4104 88.3214 25.8735 87.1637 25.7963Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M95.8848 0.559082V25.5642H105.223V22.6315H99.4349V13.4475H103.217V10.592H99.4349V3.49178H105.069V0.559082H95.8848Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mzxzx7\",\"data-framer-name\":\"Clearscore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:166,svg:'<svg width=\"166\" height=\"21\" viewBox=\"0 0 166 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M43.3153 14.2816L45.6818 16.6733C43.556 19.0649 40.9537 20.0226 37.8451 20.0226C32.2095 20.0226 28.1182 16.0365 28.1182 10.456C28.1182 4.87557 32.2095 0.894531 37.8451 0.894531C40.9537 0.894531 43.556 1.84717 45.6818 4.2388L43.3153 6.63043C41.9866 5.22153 40.2067 4.12348 38.1109 4.12348C34.4958 4.12348 31.9989 6.49004 31.9989 10.446C31.9989 14.402 34.5059 16.7735 38.1109 16.7735C40.2067 16.7836 41.9866 15.6905 43.3153 14.2816Z\" fill=\"white\"/>\\n<path d=\"M48.0742 0.628418H51.5288V19.7564H48.0742V0.628418Z\" fill=\"white\"/>\\n<path d=\"M66.57 14.046H57.6954C57.9361 16.1167 59.1996 17.2047 61.0447 17.2047C61.6516 17.2287 62.2571 17.128 62.8236 16.909C63.3902 16.6899 63.9058 16.3572 64.3388 15.9312L66.3043 17.8966C64.7961 19.3117 62.7912 20.0755 60.7238 20.0225C56.7127 20.0225 54.1055 17.4203 54.1055 13.2488C54.1055 9.0772 57.0837 6.46997 60.6687 6.46997C64.4692 6.46997 66.57 8.81146 66.57 12.6371V14.046ZM63.0102 11.7095C63.0102 10.2705 62.2129 9.12734 60.5634 9.12734C59.0592 9.12734 58.1216 10.0599 57.7756 11.7095H63.0102Z\" fill=\"white\"/>\\n<path d=\"M76.8536 17.9516C76.396 18.6334 75.7678 19.1833 75.0314 19.5467C74.2951 19.91 73.4764 20.074 72.657 20.0223C70.3455 20.0223 68.6709 18.5182 68.6709 16.302C68.6709 13.5143 71.0876 11.97 76.643 11.97V11.2029C76.643 9.97949 75.8959 9.12713 74.3316 9.12713C73.6237 9.12292 72.9253 9.28987 72.2959 9.61376C71.6665 9.93764 71.1246 10.4089 70.7166 10.9873L68.7511 9.02184C69.4484 8.18222 70.3302 7.51505 71.3277 7.07236C72.3253 6.62968 73.4117 6.42345 74.5021 6.46976C77.9566 6.46976 80.0825 7.97393 80.0825 11.7344V19.7566H76.8385L76.8536 17.9516ZM72.2057 15.946C72.2057 16.7432 72.7873 17.3549 74.0107 17.3549C75.6603 17.3549 76.643 16.292 76.643 14.6474V14.146C73.028 14.1761 72.2057 14.843 72.2057 15.9561V15.946Z\" fill=\"white\"/>\\n<path d=\"M86.7104 15.0531V19.7561H83.2559V6.71997H86.7104V9.4024C87.6129 7.24643 89.3427 6.44922 91.3332 6.44922V10.1194C87.6681 10.1394 86.7104 11.8341 86.7104 15.0531Z\" fill=\"white\"/>\\n<path d=\"M100.023 20.0229C97.5225 20.0828 95.0798 19.265 93.1191 17.7115L94.9793 14.8436C96.4464 16.044 98.2645 16.734 100.159 16.809C102.285 16.809 103.322 16.0369 103.322 14.628C103.322 11.1734 93.9163 13.7255 93.9163 6.55059C93.9163 3.04086 96.8094 0.919978 100.585 0.919978C102.885 0.841005 105.132 1.62626 106.882 3.12108L105.022 5.93889C103.807 4.86004 102.258 4.23162 100.635 4.15896C98.9102 4.15896 97.7921 4.98124 97.7921 6.25978C97.7921 9.92494 107.173 7.26256 107.173 14.282C107.173 17.5812 104.646 20.0229 100.023 20.0229Z\" fill=\"white\"/>\\n<path d=\"M121.177 8.70597L119.001 10.882C118.63 10.4267 118.159 10.0647 117.623 9.82524C117.087 9.58574 116.503 9.47542 115.917 9.50318C113.952 9.50318 112.568 10.7516 112.568 13.2486C112.568 15.7455 113.952 16.9939 115.917 16.9939C116.502 17.0151 117.084 16.9018 117.619 16.6628C118.153 16.4237 118.626 16.0653 119.001 15.6151L121.177 17.7912C120.508 18.514 119.693 19.0867 118.786 19.4714C117.88 19.856 116.902 20.0438 115.917 20.0223C111.906 20.0223 109.008 17.4452 109.008 13.2486C109.008 9.05193 111.906 6.46977 115.917 6.46977C116.902 6.44928 117.88 6.63801 118.787 7.02349C119.693 7.40896 120.508 7.98242 121.177 8.70597Z\" fill=\"white\"/>\\n<path d=\"M129.018 6.46997C132.949 6.46997 135.737 9.15742 135.737 13.2488C135.737 17.3401 132.949 20.0225 129.018 20.0225C125.087 20.0225 122.27 17.3501 122.27 13.2488C122.27 9.14739 125.082 6.46997 129.018 6.46997ZM129.018 16.9992C131.089 16.9992 132.207 15.5401 132.207 13.2538C132.207 10.9674 131.089 9.50839 129.018 9.50839C126.947 9.50839 125.829 10.9674 125.829 13.2538C125.829 15.5401 126.942 16.9941 129.018 16.9941V16.9992Z\" fill=\"white\"/>\\n<path d=\"M141.774 15.0531V19.7561H138.319V6.71997H141.774V9.4024C142.676 7.24643 144.401 6.44922 146.397 6.44922V10.1194C142.732 10.1394 141.774 11.8341 141.774 15.0531Z\" fill=\"white\"/>\\n<path d=\"M159.869 14.046H150.994C151.235 16.1167 152.498 17.2047 154.344 17.2047C154.95 17.2287 155.556 17.128 156.122 16.909C156.689 16.6899 157.205 16.3572 157.638 15.9312L159.603 17.8966C158.094 19.3107 156.09 20.0744 154.023 20.0225C150.012 20.0225 147.404 17.4203 147.404 13.2488C147.404 9.0772 150.383 6.46997 153.967 6.46997C157.768 6.46997 159.869 8.81146 159.869 12.6371V14.046ZM156.309 11.7095C156.309 10.2705 155.512 9.12734 153.862 9.12734C152.358 9.12734 151.42 10.0599 151.074 11.7095H156.309Z\" fill=\"white\"/>\\n<path d=\"M165.289 6.67531C165.289 7.09301 165.165 7.50132 164.933 7.84856C164.701 8.19579 164.371 8.46634 163.985 8.62596C163.599 8.78557 163.174 8.82708 162.765 8.74523C162.355 8.66337 161.979 8.46183 161.684 8.16613C161.389 7.87042 161.188 7.49383 161.107 7.08403C161.026 6.67424 161.069 6.24966 161.23 5.86404C161.39 5.47842 161.661 5.1491 162.009 4.91776C162.357 4.68642 162.766 4.56347 163.183 4.56446C163.46 4.56446 163.734 4.61909 163.99 4.72523C164.246 4.83138 164.478 4.98694 164.674 5.18302C164.87 5.37909 165.025 5.61183 165.13 5.8679C165.236 6.12397 165.29 6.39835 165.289 6.67531ZM164.978 6.67531C164.979 6.31888 164.874 5.97018 164.677 5.67341C164.48 5.37663 164.198 5.14515 163.869 5.00829C163.54 4.87143 163.178 4.83536 162.828 4.90466C162.479 4.97395 162.157 5.14548 161.905 5.39752C161.653 5.64955 161.482 5.97074 161.413 6.32037C161.343 6.67 161.379 7.03233 161.516 7.36144C161.653 7.69055 161.885 7.97162 162.181 8.16902C162.478 8.36643 162.827 8.47128 163.183 8.47029C163.419 8.47095 163.653 8.42497 163.871 8.335C164.089 8.24503 164.287 8.11284 164.454 7.94602C164.621 7.77921 164.753 7.58107 164.843 7.363C164.933 7.14492 164.979 6.91122 164.978 6.67531ZM163.7 6.926L164.296 7.87865H163.574L163.073 7.04634H162.847V7.87865H162.17V5.42184H163.173C163.604 5.42184 164.146 5.55721 164.146 6.21403C164.152 6.36377 164.112 6.51173 164.032 6.6387C163.953 6.76567 163.837 6.86577 163.7 6.926ZM162.852 6.47475H163.093C163.279 6.47475 163.414 6.43966 163.414 6.2391C163.414 6.03855 163.279 5.99342 163.093 5.99342H162.852V6.47475Z\" fill=\"white\"/>\\n<path d=\"M1.88574 0.608398V12.1103C2.4458 11.945 3.02659 11.8606 3.61052 11.8596C4.19774 11.8606 4.78185 11.945 5.34533 12.1103V4.08804H17.5592V16.2869H9.53695C9.70667 16.8478 9.79284 17.4306 9.79266 18.0167C9.79164 18.6022 9.70723 19.1847 9.54196 19.7464H21.0188V0.608398H1.88574Z\" fill=\"white\"/>\\n<path d=\"M3.61056 20.7143C5.10034 20.7143 6.30804 19.5066 6.30804 18.0168C6.30804 16.527 5.10034 15.3193 3.61056 15.3193C2.12079 15.3193 0.913086 16.527 0.913086 18.0168C0.913086 19.5066 2.12079 20.7143 3.61056 20.7143Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hks58i\",\"data-framer-name\":\"Wise\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:88,svg:'<svg width=\"88\" height=\"21\" viewBox=\"0 0 88 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M49.4012 1.06433H54.7583L52.0633 20.2904H46.7063L49.4012 1.06433ZM42.6476 1.06433L39.0324 12.1398L37.4547 1.06433H33.7081L28.9756 12.1069L28.3841 1.06433H23.1913L24.9989 20.2904H29.3044L34.6284 8.13033L36.5018 20.2904H40.7413L47.7416 1.06433H42.6476ZM87.6234 12.2384H74.9045C74.9702 14.7363 76.4657 16.3795 78.6675 16.3795C80.3274 16.3795 81.6419 15.4921 82.6608 13.7996L86.9545 15.7518C85.479 18.6587 82.3698 20.5533 78.5361 20.5533C73.3106 20.5533 69.8433 17.0367 69.8433 11.384C69.8433 5.17247 73.9185 0.768555 79.67 0.768555C84.7311 0.768555 87.9191 4.18652 87.9191 9.51062C87.9191 10.398 87.8205 11.2854 87.6234 12.2384ZM82.8579 8.55757C82.8579 6.32275 81.6091 4.90955 79.6042 4.90955C77.5996 4.90955 75.8248 6.38847 75.3647 8.55757H82.8579ZM6.44824 6.85845L0.979492 13.2491H10.7437L11.8414 10.2353H7.65767L10.2146 7.27913L10.2228 7.20025L8.55983 4.33935H16.0383L10.2409 20.2904H14.2077L21.208 1.06433H3.1223L6.44659 6.85845H6.44824ZM63.4676 4.90955C65.3572 4.90955 67.0136 5.92509 68.4597 7.66693L69.219 2.24748C67.8713 1.33548 66.0474 0.768555 63.6319 0.768555C58.8335 0.768555 56.1387 3.57851 56.1387 7.14438C56.1387 9.61751 57.519 11.1293 59.7867 12.1069L60.8712 12.6C62.8923 13.4627 63.4347 13.8899 63.4347 14.802C63.4347 15.714 62.5227 16.3466 61.1341 16.3466C58.8417 16.3547 56.9849 15.1799 55.5882 13.1751L54.8142 18.6981C56.4049 19.9109 58.4442 20.5533 61.1341 20.5533C65.6941 20.5533 68.4959 17.9241 68.4959 14.2761C68.4959 11.7948 67.3949 10.2009 64.6178 8.95196L63.4347 8.39325C61.7913 7.662 61.2327 7.25941 61.2327 6.45421C61.2327 5.58329 61.9968 4.90955 63.4676 4.90955Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fuooe5\",\"data-framer-name\":\"Maelys\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:72,svg:'<svg width=\"72\" height=\"45\" viewBox=\"0 0 72 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M54.3104 7.52348C53.8968 8.69995 53.4865 9.8798 53.0661 11.0546C51.4692 15.518 49.869 19.9815 48.2704 24.445C48.189 24.6738 48.1907 25.023 47.9127 25.0467C47.6296 25.0705 47.5737 24.7111 47.4499 24.5094C46.1395 22.3412 44.8274 20.1747 43.5577 17.9845C43.2712 17.4896 43.1 17.3675 42.5711 17.7269C40.5657 19.0847 38.5094 20.3663 36.4989 21.714C36.0446 22.0174 35.7361 22.0022 35.2936 21.7072C33.3272 20.3917 31.3269 19.1288 29.3621 17.8116C28.8282 17.454 28.562 17.3658 28.1772 18.0507C26.9533 20.2341 25.6344 22.3649 24.346 24.5111C24.2223 24.7162 24.1579 25.0654 23.868 25.0332C23.5815 25.001 23.6036 24.6433 23.5239 24.4212C21.5642 18.9779 19.6131 13.533 17.6636 8.08628C17.5924 7.88625 17.45 7.68283 17.6771 7.39803C18.9418 8.21851 20.2098 9.03729 21.4744 9.85946C23.4069 11.1173 25.3547 12.3531 27.2601 13.6516C27.7856 14.0093 27.9636 13.8601 28.2365 13.3973C30.4911 9.57297 32.7678 5.76047 35.0377 1.94458C35.1241 1.79879 35.2089 1.653 35.3004 1.5123C35.7785 0.778281 36.0463 0.773195 36.4972 1.52078C37.672 3.47365 38.8332 5.43499 39.9995 7.39464C41.1658 9.3526 42.3626 11.2919 43.4764 13.2787C43.8442 13.9347 44.0934 13.9686 44.6986 13.5635C47.6703 11.5733 50.6742 9.634 53.6679 7.67774C53.8052 7.5879 53.9493 7.50822 54.0883 7.42516C54.1629 7.45906 54.2358 7.49466 54.3104 7.52856V7.52348ZM22.2745 13.2363C22.205 13.199 22.0796 13.121 22.0728 13.1295C21.9999 13.2295 21.988 13.3312 22.1321 13.3889C22.8577 15.4841 23.5849 17.5794 24.3647 19.8323C25.1241 18.5745 25.7463 17.5048 26.4108 16.464C26.6617 16.0707 26.4549 15.9317 26.1735 15.752C24.8699 14.9179 23.573 14.0771 22.2728 13.238L22.2745 13.2363ZM49.5248 13.2329C48.2026 14.089 46.8922 14.9688 45.5479 15.7876C45.1292 16.0419 45.2614 16.2419 45.4326 16.5233C46.0717 17.5777 46.7057 18.6355 47.4262 19.8323C48.1992 17.6082 48.9315 15.4977 49.6655 13.3872C49.8079 13.3312 49.7978 13.2312 49.7266 13.1312C49.7198 13.1227 49.596 13.1973 49.5265 13.2329H49.5248ZM29.8266 15.3214C31.7252 16.5487 33.6188 17.7574 35.492 18.9966C35.8514 19.2339 36.1141 19.1492 36.4142 18.9508C38.1077 17.8371 39.7944 16.7132 41.4998 15.6197C41.8591 15.3892 41.9337 15.2265 41.6913 14.8417C41.0319 13.7957 40.4233 12.7176 39.791 11.6547C38.5162 9.51534 37.2397 7.37769 35.9022 5.13494C33.8442 8.58637 31.8473 11.9344 29.8283 15.3197L29.8266 15.3214Z\" fill=\"white\"/>\\n<path d=\"M8.85043 36.5265C7.90451 37.9081 6.95858 39.288 6.01436 40.6696C5.45664 41.485 5.4685 41.4782 4.89722 40.6255C3.97842 39.2541 3.04267 37.8946 2.08828 36.4943C1.80518 36.7554 1.9035 37.0232 1.90181 37.2504C1.89333 39.3117 1.87299 41.3731 1.91198 43.4345C1.92215 43.9973 1.71703 44.0702 1.2322 44.0753C0.7389 44.082 0.632102 43.9159 0.635492 43.4497C0.655835 40.5408 0.640578 37.6318 0.655835 34.7245C0.655835 34.4567 0.452411 34.0142 0.888077 33.9515C1.32374 33.8871 1.82044 33.7532 2.16795 34.294C3.07997 35.7145 4.03267 37.108 4.97181 38.5099C5.12777 38.7439 5.28881 38.9727 5.49732 39.2761C6.59581 37.6488 7.6604 36.0688 8.72837 34.4906C8.86738 34.2855 8.94875 34.0312 9.21828 33.9363C9.92179 33.6871 10.3185 33.96 10.3185 34.7093C10.3185 37.5894 10.3083 40.4696 10.3286 43.3497C10.332 43.8617 10.2541 44.0837 9.65904 44.0837C9.0708 44.0837 9.04707 43.8278 9.05046 43.3734C9.06741 41.1171 9.05894 38.8608 9.05894 36.6045C8.98943 36.5791 8.91993 36.5537 8.85043 36.5282V36.5265Z\" fill=\"white\"/>\\n<path d=\"M67.458 33.9639C69.2244 33.969 70.484 34.7759 70.7704 36.1321C70.823 36.3813 71.0654 36.8373 70.6314 36.9051C70.25 36.9644 69.6686 37.239 69.4957 36.4694C69.3109 35.6439 68.6447 35.315 67.875 35.2285C67.0122 35.1319 66.1612 35.1946 65.5713 35.9575C65.1 36.5677 65.3153 37.4543 66.0002 37.8307C66.5714 38.1443 67.2139 38.2528 67.831 38.4308C68.4226 38.602 69.0363 38.7342 69.594 38.9868C71.1247 39.6801 71.6621 41.3702 70.7789 42.7993C69.9144 44.1978 68.5057 44.4724 67.0105 44.3267C65.5713 44.186 64.4338 43.5435 63.9642 42.0568C63.6896 41.1888 63.8642 40.9888 64.7406 41.0736C65.061 41.1041 65.1661 41.2329 65.2187 41.5296C65.3814 42.4348 66.0324 42.8552 66.8579 42.9993C67.7954 43.1638 68.7379 43.1434 69.4363 42.3585C70.1602 41.5448 69.8805 40.4345 68.8244 40.0378C68.0666 39.753 67.2563 39.6038 66.4748 39.3801C64.5694 38.8342 63.8184 37.8815 64.0388 36.3084C64.2304 34.9353 65.456 34.0266 67.2037 33.9639C67.2885 33.9605 67.3733 33.9639 67.458 33.9639Z\" fill=\"white\"/>\\n<path d=\"M24.3344 44.1425C23.3851 44.3798 22.7918 44.156 22.6155 43.183C22.5613 42.8863 22.3663 42.6168 22.2714 42.3235C22.1375 41.9082 21.8781 41.7827 21.4458 41.7929C20.2049 41.8217 18.9624 41.8268 17.7215 41.7912C17.2638 41.7777 17.0671 41.9675 16.9434 42.3591C16.8586 42.6253 16.7349 42.8795 16.6264 43.1372C16.3145 43.8853 15.7206 44.2244 14.8447 44.1543C15.4787 42.6134 16.1043 41.103 16.723 39.5908C17.4113 37.9075 18.108 36.2259 18.7708 34.5324C18.92 34.1543 19.1115 34.0102 19.5116 34.0374C19.8846 34.0628 20.1727 34.0391 20.3643 34.5069C21.6662 37.6753 23.0122 40.8249 24.3412 43.9814C24.3599 44.0272 24.3361 44.0916 24.3328 44.1425H24.3344ZM17.6961 40.5758H21.5357C20.8813 38.9975 20.2592 37.4956 19.5879 35.8716C18.9183 37.5363 18.3182 39.0314 17.6977 40.5758H17.6961Z\" fill=\"white\"/>\\n<path d=\"M29.9042 39.15C29.9042 37.6549 29.9195 36.1597 29.8958 34.6645C29.889 34.195 30.0195 34.0288 30.5128 34.039C32.0351 34.0695 33.5608 34.0712 35.0831 34.039C35.6069 34.0288 35.6781 34.2577 35.6832 34.6951C35.6882 35.1273 35.5662 35.2968 35.1119 35.2867C34.0405 35.2596 32.9675 35.2985 31.8961 35.2697C31.3841 35.2562 31.1027 35.346 31.1553 35.9563C31.2214 36.7378 30.9129 37.7549 31.3011 38.2499C31.7164 38.7788 32.7776 38.3669 33.554 38.4211C33.8913 38.4448 34.2321 38.4465 34.5694 38.4211C35.0237 38.3855 35.278 38.4347 35.278 39.0263C35.278 39.623 35.0136 39.6399 34.566 39.6281C33.6065 39.6043 32.6471 39.6366 31.6893 39.6128C31.2909 39.6027 31.1417 39.7179 31.1587 40.1333C31.1892 40.8944 31.1977 41.6589 31.157 42.4184C31.1282 42.9371 31.3536 43.0219 31.8012 43.0117C32.9285 42.9863 34.0592 43.0253 35.1865 42.9931C35.6662 42.9795 35.8154 43.1202 35.8103 43.6033C35.8069 44.0712 35.6916 44.2339 35.1966 44.2238C33.6167 44.1916 32.0368 44.1949 30.4569 44.2238C29.9958 44.2322 29.8907 44.0678 29.8974 43.6406C29.9195 42.1455 29.9059 40.6503 29.9059 39.1551L29.9042 39.15Z\" fill=\"white\"/>\\n<path d=\"M55.294 38.9374C56.1467 37.5541 56.9536 36.2404 57.7656 34.9317C58.3572 33.979 58.3623 33.9807 59.6659 34.1129C58.759 35.6047 58.0029 37.1609 56.9553 38.4848C55.733 40.0308 55.8992 41.7362 55.9483 43.4568C55.967 44.1281 55.7449 44.2722 55.1431 44.2231C54.7719 44.1925 54.5142 44.1332 54.6023 43.7077C55.2719 40.4919 53.436 38.1288 51.8832 35.6674C51.5713 35.1724 51.2831 34.6638 50.9746 34.1468C51.929 33.8383 52.4613 34.1604 52.9021 34.9758C53.6225 36.3065 54.4616 37.5728 55.294 38.9374Z\" fill=\"white\"/>\\n<path d=\"M41.7186 39.1194C41.7186 37.6531 41.744 36.185 41.7067 34.7204C41.6914 34.122 41.9508 34.0457 42.4627 34.0287C43.0171 34.0101 43.0273 34.2813 43.0256 34.6949C43.0137 37.1767 43.0442 39.6585 43.0035 42.1403C42.9917 42.8133 43.1103 43.0845 43.8545 43.0302C44.8648 42.9557 45.8854 43.0455 46.8991 42.998C47.45 42.9726 47.4585 43.2371 47.4687 43.6507C47.4788 44.0864 47.3534 44.2271 46.9008 44.2186C45.3785 44.1898 43.8545 44.1898 42.3322 44.2186C41.8542 44.2271 41.6999 44.088 41.7084 43.6032C41.7372 42.1098 41.7186 40.6146 41.7186 39.1194Z\" fill=\"white\"/>\\n<path d=\"M31.2825 32.2124C30.8943 32.1938 30.6485 31.9666 30.6638 31.5784C30.679 31.1987 30.935 30.9749 31.3384 30.9783C31.725 30.9817 31.9097 31.2343 31.9216 31.5665C31.9369 31.9564 31.7046 32.187 31.2808 32.2107L31.2825 32.2124Z\" fill=\"white\"/>\\n<path d=\"M33.9543 32.2134C33.4881 32.1897 33.3152 31.9337 33.3356 31.5438C33.3542 31.181 33.5865 30.9878 33.9391 30.9793C34.3527 30.9691 34.5426 31.2166 34.5527 31.6099C34.5629 32.0439 34.2934 32.1897 33.9543 32.2117V32.2134Z\" fill=\"white\"/>\\n<path d=\"M22.1326 13.3883C21.9881 13.3305 21.9983 13.2284 22.0731 13.1281C22.0799 13.1196 22.2058 13.1978 22.2755 13.2352C22.2279 13.2863 22.1802 13.3373 22.1326 13.3883Z\" fill=\"white\"/>\\n<path d=\"M49.5254 13.2331C49.5951 13.1974 49.721 13.1209 49.7261 13.1311C49.7975 13.2314 49.8077 13.3317 49.6649 13.3879C49.6189 13.3368 49.5713 13.2858 49.5254 13.2331Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gc9u90\",\"data-framer-name\":\"Spoiled Child\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:151,svg:'<svg width=\"151\" height=\"25\" viewBox=\"0 0 151 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.98336 18.8814C4.44805 18.9099 1.81835 16.9919 0.973222 13.8C0.836222 13.2822 0.813092 12.9264 1.4803 12.8943C1.59417 12.889 1.70092 12.8125 1.81479 12.7822C2.46955 12.6079 3.15989 12.2218 3.77016 12.3197C4.49075 12.4353 4.28614 13.405 4.62241 13.9494C5.60988 15.5454 8.04386 16.2535 9.69676 15.3354C10.7607 14.7447 10.9013 13.5082 9.98677 12.6791C9.33735 12.0901 8.51535 11.8161 7.71648 11.5208C6.52974 11.0831 5.31809 10.7059 4.20785 10.0849C2.15107 8.93557 1.35042 7.4339 1.59773 5.20453C1.78811 3.48224 3.20971 2.03929 5.27894 1.46638C8.57584 0.553642 11.9617 1.95389 13.6555 4.88783C13.9633 5.4216 13.9011 5.67247 13.3104 5.79879C13.1965 5.8237 13.0808 5.86107 12.9759 5.91266C11.7624 6.53006 10.7429 6.88056 9.69498 5.40025C8.93881 4.33449 7.55813 4.10319 6.21837 4.54444C5.57607 4.75617 5.15084 5.17429 5.08323 5.87174C5.0174 6.56208 5.43018 6.95351 5.98707 7.25598C6.82153 7.7079 7.72716 7.97657 8.61143 8.29683C9.94763 8.78077 11.2447 9.33055 12.3763 10.213C14.9917 12.252 14.7889 16.1236 11.9635 17.8655C10.7465 18.6163 9.39607 18.8796 7.98158 18.8779L7.98336 18.8814Z\" fill=\"white\"/>\\n<path d=\"M83.0684 10.0259C83.063 5.939 85.2301 2.7702 88.7619 1.59235C92.4306 0.368246 96.4517 1.56388 98.6312 4.52273C99.1081 5.17037 99.7628 5.92298 99.649 6.62044C99.5262 7.37483 98.3857 7.15421 97.7612 7.51717C97.7114 7.54741 97.6509 7.55987 97.5975 7.58478C96.8485 7.92995 96.4179 7.88902 96.0051 6.96205C95.0799 4.88925 92.8345 3.85908 90.7173 4.30923C88.3705 4.80741 86.8261 6.58663 86.6535 9.0473C86.577 10.1415 86.5983 11.2322 86.988 12.2873C87.6837 14.1661 88.9683 15.3671 90.9859 15.5859C93.1833 15.8244 94.9678 15.0344 96.0265 13.0399C96.3574 12.4171 96.6189 12.4011 97.1509 12.6467C97.658 12.8797 98.1793 13.1182 98.722 13.2285C99.5867 13.4046 99.624 13.7391 99.2148 14.4579C97.4285 17.5858 93.7829 19.2547 90.0287 18.6071C86.5503 18.0075 83.8993 15.3208 83.2303 11.7695C83.1129 11.1503 83.0879 10.5365 83.0719 10.0277L83.0684 10.0259Z\" fill=\"white\"/>\\n<path d=\"M135.574 17.021C132.768 19.3945 129.603 19.3287 127.546 16.9089C126.526 15.7097 126.126 14.2846 126.041 12.7402C125.889 9.98242 127.279 7.52531 129.579 6.64638C131.56 5.89021 133.405 6.16243 135.045 7.55556C135.189 7.67833 135.33 7.80465 135.574 8.01638C135.574 5.93469 135.607 3.98999 135.556 2.0453C135.538 1.35141 135.762 1.17348 136.408 1.22686C137.056 1.28024 137.712 1.266 138.362 1.22864C138.844 1.20017 138.954 1.38699 138.954 1.83891C138.942 7.22996 138.938 12.6228 138.958 18.0138C138.959 18.5565 138.757 18.6508 138.289 18.6259C137.668 18.5921 137.04 18.5654 136.424 18.6312C135.702 18.7095 135.467 18.4337 135.568 17.7523C135.602 17.5317 135.574 17.3021 135.574 17.0192V17.021ZM135.572 12.6103C135.59 10.4753 134.444 9.07324 132.556 8.92022C130.919 8.78678 129.524 9.99487 129.208 11.815C128.836 13.9572 130.184 15.9126 132.17 16.1083C134.022 16.2898 135.556 14.7134 135.572 12.6103Z\" fill=\"white\"/>\\n<path d=\"M18.8921 7.99738C20.634 6.21282 22.6285 5.79648 24.8063 6.6345C27.0552 7.4992 28.0712 9.33536 28.2918 11.6519C28.4252 13.0539 28.2509 14.4061 27.637 15.7085C26.1834 18.7955 21.8368 20.0659 18.8245 16.9682V19.5179C18.8245 20.911 18.7961 22.3041 18.8388 23.6955C18.8566 24.2559 18.6804 24.4285 18.1413 24.3805C17.3496 24.3093 16.3301 24.6972 15.8212 24.2257C15.355 23.7916 15.6895 22.7685 15.6878 22.007C15.6771 17.0892 15.6984 12.1697 15.6629 7.25189C15.6575 6.52419 15.8799 6.28933 16.5631 6.38897C16.766 6.41921 16.9777 6.3943 17.1841 6.3943C18.2208 6.3943 18.7895 6.92866 18.8904 7.99738H18.8921ZM18.8281 12.4864C18.8228 14.8759 20.5682 16.5039 22.6143 16.0163C25.139 15.4167 26.1247 11.917 24.3241 9.94741C23.4256 8.96528 22.0716 8.65748 20.844 9.15388C19.5398 9.68053 18.8317 10.8513 18.8281 12.4864Z\" fill=\"white\"/>\\n<path d=\"M77.9126 16.9587C76.1654 18.8571 74.162 19.2592 71.9558 18.3394C69.6641 17.3839 68.6998 15.4517 68.4988 13.0871C68.3867 11.7758 68.5984 10.5144 69.1482 9.29202C70.4559 6.38833 74.7029 4.88133 77.95 7.99497C77.95 6.01825 77.9838 4.14117 77.934 2.26765C77.9126 1.49724 78.0603 1.19122 78.9303 1.21791C81.1206 1.28552 81.1224 1.23748 81.1224 3.43838C81.1224 8.2067 81.1099 12.9768 81.1366 17.7451C81.1401 18.3981 81.0316 18.7593 80.2879 18.6276C80.0584 18.5867 79.8146 18.6205 79.578 18.6205C78.5247 18.6205 77.9702 18.0672 77.9144 16.9605L77.9126 16.9587ZM77.9464 12.5409C77.9553 10.4556 76.8237 9.08741 74.9556 8.9255C73.2457 8.77783 71.8579 10.0268 71.5697 11.9733C71.2601 14.0639 72.6782 15.9872 74.6211 16.1118C76.4946 16.2328 77.9375 14.6831 77.9464 12.5409Z\" fill=\"white\"/>\\n<path d=\"M104.435 7.83738C106.106 6.0457 108.003 5.81262 110.004 6.55278C112.022 7.29827 112.685 9.05971 112.76 11.0222C112.849 13.3619 112.773 15.7051 112.801 18.0483C112.806 18.543 112.621 18.6444 112.18 18.6266C111.44 18.5963 110.696 18.5821 109.958 18.6302C109.389 18.6675 109.259 18.4522 109.268 17.9202C109.296 16.0823 109.28 14.2444 109.278 12.4064C109.278 12.0506 109.273 11.6947 109.25 11.3407C109.164 10.081 108.494 9.29812 107.424 9.19849C105.924 9.05971 104.971 9.63973 104.613 10.9101C104.485 11.3691 104.432 11.8353 104.435 12.3139C104.444 14.1518 104.401 15.9916 104.458 17.8277C104.48 18.527 104.254 18.6853 103.615 18.6302C102.967 18.575 102.311 18.5946 101.66 18.6266C101.217 18.6479 101.042 18.5465 101.044 18.0519C101.062 12.6555 101.062 7.26091 101.044 1.86452C101.042 1.34143 101.215 1.20265 101.704 1.23112C102.353 1.26848 103.012 1.28094 103.659 1.22756C104.271 1.17774 104.471 1.35745 104.455 1.99797C104.41 3.8875 104.439 5.77704 104.439 7.83738H104.435Z\" fill=\"white\"/>\\n<path d=\"M66.8527 14.6396C65.9862 17.2817 63.5184 18.9684 60.7695 18.8866C57.9655 18.803 55.5208 16.933 54.8536 14.2588C54.2184 11.7146 54.8536 9.47273 56.8748 7.78425C58.9156 6.07975 61.2802 5.78974 63.6768 6.92488C66.0147 8.03156 67.1605 10.0029 67.2601 12.5988C67.2833 13.2162 67.0555 13.3176 66.5057 13.3123C63.8405 13.2874 61.1734 13.3247 58.5081 13.2856C57.7288 13.2749 57.6879 13.5365 57.9441 14.1539C58.7572 16.1146 61.7339 16.7462 63.2515 15.2001C63.7284 14.7143 64.1714 14.5844 64.7906 14.6289C65.4631 14.677 66.141 14.6396 66.8509 14.6396H66.8527ZM60.8478 11.4672C61.6769 11.4672 62.5043 11.4708 63.3334 11.4672C64.1518 11.4619 64.2408 11.3053 63.8778 10.5296C63.3974 9.49942 62.0488 8.77527 60.7802 8.86601C59.4778 8.95853 58.2359 9.83035 57.8747 10.8748C57.7021 11.3765 57.889 11.4921 58.3622 11.4761C59.1896 11.4494 60.0187 11.469 60.8478 11.469V11.4672Z\" fill=\"white\"/>\\n<path d=\"M42.1942 12.4573C42.1995 16.0104 39.4506 18.802 35.942 18.8091C32.4387 18.8144 29.6115 16.0015 29.6133 12.5089C29.6133 9.02513 32.4725 6.17126 35.942 6.18905C39.4204 6.20684 42.1888 8.98243 42.1942 12.4573ZM38.972 12.5516C38.9791 10.6887 38.1037 9.35962 36.6483 9.02157C34.9598 8.63014 33.4119 9.54466 32.9511 11.2047C32.3622 13.3237 33.2287 15.4428 34.8958 15.9552C37.0842 16.6278 38.9631 15.0603 38.9738 12.5516H38.972Z\" fill=\"white\"/>\\n<path d=\"M52.8537 9.9072C52.8537 12.5707 52.8377 15.2324 52.8661 17.8959C52.8733 18.467 52.7363 18.6948 52.1402 18.6272C51.3289 18.5329 50.2382 18.9795 49.7721 18.4421C49.3717 17.9813 49.6422 16.9227 49.6404 16.1291C49.6351 11.4551 49.6529 6.77932 49.6226 2.1053C49.6191 1.4203 49.7738 1.13918 50.4927 1.22636C51.247 1.31888 52.2434 0.909661 52.7096 1.38471C53.1739 1.85621 52.8394 2.84546 52.8466 3.60696C52.8644 5.70823 52.8519 7.80771 52.8519 9.90897L52.8537 9.9072Z\" fill=\"white\"/>\\n<path d=\"M120.946 9.95544C120.946 7.31685 120.96 4.68004 120.935 2.04145C120.93 1.47032 121.006 1.14828 121.686 1.22657C122.474 1.31553 123.501 0.90453 124.001 1.3867C124.506 1.87243 124.156 2.90082 124.157 3.68902C124.173 8.40218 124.156 13.1136 124.177 17.8267C124.181 18.4192 124.072 18.6985 123.412 18.6292C122.624 18.5455 121.588 18.9476 121.099 18.4815C120.606 18.01 120.958 16.9691 120.951 16.1792C120.93 14.1046 120.944 12.03 120.944 9.95544H120.946Z\" fill=\"white\"/>\\n<path d=\"M115.32 12.3985C115.32 10.6531 115.341 8.90769 115.308 7.16405C115.297 6.62139 115.439 6.42567 115.994 6.46482C116.813 6.52353 117.862 6.22284 118.393 6.62673C118.896 7.01104 118.539 8.11772 118.542 8.90591C118.56 11.8327 118.531 14.7613 118.563 17.6882C118.571 18.3429 118.464 18.6827 117.711 18.5849C116.957 18.487 115.976 18.8945 115.487 18.4248C114.993 17.9497 115.347 16.9694 115.329 16.2114C115.3 14.941 115.322 13.6689 115.322 12.3967L115.32 12.3985Z\" fill=\"white\"/>\\n<path d=\"M47.3238 12.4934C47.3238 14.269 47.3078 16.0447 47.3345 17.8204C47.3416 18.3506 47.2757 18.6602 46.6317 18.5837C45.8186 18.4876 44.7261 18.9271 44.2564 18.404C43.8525 17.9556 44.123 16.8863 44.1212 16.0927C44.1141 13.1926 44.1568 10.2907 44.0945 7.39234C44.0767 6.565 44.34 6.37819 45.0766 6.46181C45.573 6.51874 46.0872 6.51696 46.5836 6.46181C47.2366 6.38886 47.3523 6.66464 47.338 7.25534C47.2989 9.00076 47.3238 10.748 47.3238 12.4934Z\" fill=\"white\"/>\\n<path d=\"M148.316 4.89886C148.796 3.74771 149.223 2.78159 149.6 1.7959C149.762 1.37422 149.978 1.14292 150.442 1.23722C150.908 1.33152 150.702 1.70872 150.707 1.95959C150.729 3.1748 150.721 4.39001 150.714 5.60522C150.714 5.84897 150.814 6.16211 150.367 6.16211C149.953 6.16211 149.981 5.89701 149.981 5.62479C149.981 4.7245 149.981 3.82243 149.848 2.89724C149.494 3.7228 149.145 4.55014 148.784 5.37214C148.672 5.62657 148.672 6.05536 148.323 6.03935C147.994 6.02511 147.983 5.59454 147.869 5.34011C147.521 4.56971 147.215 3.78151 146.672 3.00933C146.672 3.7993 146.684 4.58928 146.665 5.37748C146.658 5.65681 146.848 6.10518 146.284 6.08383C145.741 6.06248 145.934 5.62657 145.928 5.34367C145.91 4.21742 145.912 3.09117 145.928 1.96492C145.932 1.67491 145.775 1.28526 146.307 1.22655C146.756 1.17673 146.93 1.40803 147.072 1.77811C147.451 2.76735 147.857 3.74593 148.319 4.89709L148.316 4.89886Z\" fill=\"white\"/>\\n<path d=\"M114.927 3.02142C114.918 1.86671 115.818 0.898808 116.937 0.861445C118.069 0.824081 119.026 1.74928 119.048 2.90221C119.069 4.10141 118.142 5.04084 116.946 5.03372C115.806 5.02661 114.938 4.1619 114.929 3.02142H114.927Z\" fill=\"white\"/>\\n<path d=\"M47.8179 2.98788C47.7876 4.11946 46.8268 5.03932 45.6792 5.0322C44.5227 5.02509 43.5833 4.06075 43.6296 2.92916C43.6758 1.78334 44.6508 0.833236 45.7522 0.859924C46.8713 0.886612 47.8463 1.89009 47.8179 2.98788Z\" fill=\"white\"/>\\n<path d=\"M143.005 3.96338C143.005 3.66625 142.967 3.36556 143.012 3.07555C143.14 2.22508 142.953 1.7091 141.941 1.90482C141.754 1.9404 141.501 1.95464 141.492 1.63438C141.485 1.32479 141.653 1.22871 141.941 1.23049C142.889 1.23761 143.837 1.23583 144.788 1.23049C145.028 1.23049 145.172 1.28921 145.19 1.56855C145.215 1.93329 144.989 1.96887 144.743 1.92261C143.825 1.74469 143.665 2.19127 143.727 2.9937C143.797 3.87798 143.738 4.77115 143.745 5.66076C143.747 5.96323 143.706 6.18029 143.318 6.16072C142.934 6.14115 143.01 5.87427 143.008 5.65364C143.001 5.08963 143.007 4.52739 143.005 3.96338Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1m0tmcj\",\"data-framer-name\":\"Nectar\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:108,svg:'<svg width=\"108\" height=\"19\" viewBox=\"0 0 108 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M99.0408 0.832031H90.4084V18.0968H107.673V9.46443C107.673 4.69248 103.813 0.832031 99.0408 0.832031ZM3.47679 18.079H0.456349V7.71293L0.438477 4.81759H3.22658V6.19377H3.24445C3.78063 5.31802 5.12106 4.42439 7.01554 4.42439C10.2505 4.42439 12.7169 6.55122 12.7169 10.8049V18.0611H9.67854V10.7512C9.67854 8.5708 8.67768 7.12314 6.56873 7.12314C4.47765 7.12314 3.47679 8.58868 3.47679 10.7512V18.079Z\" fill=\"white\"/>\\n<path d=\"M28.3194 14.1291C27.5151 16.6134 25.2989 18.4721 21.8317 18.4721C17.9355 18.4721 15.0938 15.684 15.0938 11.3947C15.0938 7.15888 18.0427 4.4244 21.778 4.4244C25.4955 4.4244 28.1943 7.12314 28.1943 11.3768V12.2168H18.1678C18.4002 14.5581 19.83 15.9521 21.9925 15.9521C23.7083 15.9521 24.6734 15.1836 25.0666 14.1291H28.3194ZM18.1678 9.91124H25.0308C24.8521 8.21336 23.7619 6.78356 21.6887 6.78356C19.7227 6.78356 18.4359 8.2491 18.1678 9.91124ZM37.3092 18.4721C33.6275 18.4721 30.4462 16.0415 30.4462 11.4483C30.4462 6.89079 33.7347 4.4244 37.4164 4.4244C40.7765 4.4244 43.1893 6.46186 43.7433 9.12485H40.5441C40.1688 8.03463 39.1322 7.15888 37.4164 7.15888C35.1109 7.15888 33.4845 8.85676 33.4845 11.4483C33.4845 14.0398 35.1109 15.7734 37.3807 15.7734C39.1858 15.7734 40.2939 14.8262 40.6335 13.7359H43.8505C43.2965 16.3811 40.6514 18.4721 37.3092 18.4721ZM52.9119 18.1862C49.8199 18.1862 47.8182 16.5955 47.8182 12.9674V7.48059H45.1731V4.83546H47.8182V0.832031H49.1944C50.1059 0.832031 50.8387 1.5648 50.8387 2.4763V4.83546H54.5204V7.48059H50.8387V12.8066C50.8387 14.9334 52.1076 15.4517 53.4838 15.4517C53.8854 15.4537 54.2863 15.4178 54.6812 15.3445V17.9896C54.2702 18.1147 53.5731 18.1862 52.9119 18.1862ZM56.8617 11.484C56.8617 7.31973 59.4889 4.44227 63.5639 4.44227C65.1545 4.44227 67.2992 5.37164 67.8532 6.67632H67.8711V4.85333H70.7843L70.7664 7.74867V18.1147H67.8532V16.256H67.8354C67.2813 17.5607 65.1902 18.49 63.5639 18.49C59.4889 18.4721 56.8617 15.6483 56.8617 11.484ZM67.8354 11.484C67.8354 8.78527 66.0839 7.2125 63.8856 7.2125C61.6336 7.2125 59.9357 8.78527 59.9357 11.484C59.9357 14.1828 61.6336 15.7019 63.8856 15.7019C65.9945 15.7019 67.8354 14.1828 67.8354 11.484ZM81.6329 7.48059C79.1129 7.48059 77.5759 8.91038 77.5759 11.6091V18.079H74.5554V7.71293L74.5197 4.81759H77.4329V6.99803H77.4865C77.9869 5.51462 79.4703 4.4244 81.3648 4.4244C81.901 4.4244 82.2227 4.47801 82.2227 4.47801V7.48059H81.6329Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1p7mfw0\",\"data-framer-name\":\"Ubisoft\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:84,svg:'<svg width=\"84\" height=\"17\" viewBox=\"0 0 84 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.362305 0.949281V10.2366C0.362305 14.0076 2.93291 16.4112 6.67678 16.4112C10.6149 16.4112 13.0253 13.8764 13.0253 9.98222V0.949281H9.69212V9.81257C9.69212 11.9359 8.62277 13.2527 6.71231 13.2527C4.61855 13.2527 3.69556 11.7384 3.69556 9.98222V0.949281H0.362305ZM14.6459 1.07758V16.2597H19.9548C22.8952 16.2597 25.3937 14.76 25.3937 11.7856C25.3937 8.6809 22.6769 7.99272 22.6769 7.99272C22.6769 7.99272 24.6886 7.43392 24.6886 4.77769C24.6886 2.12322 22.1458 1.07758 19.9548 1.07758H14.6459ZM18.004 3.96129H19.6156C20.734 3.96129 21.4497 4.55038 21.4497 5.57546C21.4497 6.49238 20.8425 7.1843 19.7004 7.1843H18.0041L18.004 3.96129ZM18.004 9.55921H19.7852C21.4601 9.55921 22.0408 10.4195 22.0408 11.4463C22.0408 12.641 21.2896 13.3414 19.9548 13.3414H18.0041L18.004 9.55921ZM26.6553 1.0765H30.0055V16.2586H26.6553V1.0765ZM63.2111 16.2586H59.8608V1.0765H70.378V4.21473H63.2111V7.69218H69.7419V10.2366H63.2111V16.2586ZM71.6079 1.0765V4.21473H75.9335V16.2586H79.3261V4.21473H83.5669V1.0765H71.6079ZM33.8302 11.2104L31.1687 13.1563C31.1687 13.1563 32.0884 16.5199 36.6989 16.5199C39.7692 16.5199 42.0284 14.7281 42.0284 11.5782C42.0284 6.50177 34.9302 7.57869 34.9302 4.96806C34.9302 4.28104 35.5412 3.67415 36.6688 3.67415C38.478 3.67415 39.1656 5.4489 39.1656 5.4489L41.8278 3.58054C41.8278 3.58054 40.788 0.808754 36.8025 0.808754C33.5272 0.808754 31.7873 2.91009 31.7873 5.0784C31.7873 10.2516 38.6788 9.1288 38.6788 11.8438C38.6788 12.7599 37.9568 13.4331 36.8324 13.4254C34.6046 13.4254 33.8302 11.2104 33.8302 11.2104ZM50.6794 0.801758C46.7341 0.801758 44.9756 2.94337 44.9756 2.94337L45.4845 3.45224C45.4845 3.45224 42.932 5.26527 42.932 9.15875C42.932 13.6389 46.3873 16.5165 50.698 16.5165C55.7068 16.5165 58.5488 12.8208 58.5488 8.66576C58.5488 4.23512 55.3041 0.801758 50.6794 0.801758ZM50.751 3.95322C53.426 3.95322 55.1614 5.9978 55.1614 8.65253C55.1614 11.2797 53.4468 13.381 50.751 13.381C48.0877 13.381 46.3379 11.5213 46.3379 9.05275C46.3379 6.80614 47.8593 5.82707 47.8593 5.82707L47.308 5.27575C47.308 5.27575 48.4811 3.95322 50.751 3.95322Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-up6veg\",\"data-framer-name\":\"Ben & Jerry's\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:109,svg:'<svg width=\"109\" height=\"23\" viewBox=\"0 0 109 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.0358 15.7402C13.8207 17.8937 12.6947 19.9637 10.5807 20.7175L7.4757 21.8657C6.84703 22.0942 4.11475 23.2423 3.78795 22.3462C3.56981 21.7469 3.38162 21.1387 3.18448 20.5501C3.00358 20.0051 2.90808 19.4647 3.51968 19.2412C4.08843 19.0351 4.24637 18.9091 4.0537 18.3356C3.97277 18.1121 3.80755 17.9346 3.72998 17.7245C3.47431 17.0222 3.29901 16.3076 3.03774 15.589C2.95989 15.3795 2.95849 15.1432 2.88232 14.9337C2.80699 14.7237 2.7059 14.5411 2.59025 14.363C2.27465 14.4269 1.99378 14.4952 1.69526 14.6038C1.42671 14.7013 1.25253 14.4101 1.17552 14.2006L0.510444 12.3753C0.456133 12.2264 0.377148 12.102 0.323382 11.9531C0.15956 11.505 0.306867 11.0261 0.770875 10.8592L4.57372 9.48933C5.68181 9.08608 6.52387 8.79484 7.70617 9.11072C8.90863 9.43444 9.75153 10.0259 10.1873 11.2222C10.5362 12.1776 10.1542 13.5056 10.145 13.524C10.1783 13.6142 10.3578 13.598 10.4348 13.6226C11.0027 13.7873 11.6199 13.9004 12.0895 14.3059C12.5746 14.7058 12.8176 15.1421 13.0299 15.7251L13.0358 15.7402ZM7.37859 12.9057C7.16043 12.3076 6.14699 12.4566 5.68382 12.6257C5.56424 12.6694 5.42787 12.8542 5.4724 12.9746C5.61354 13.3616 5.80031 13.7358 5.93221 14.1441C6.12767 14.1239 6.33321 14.083 6.52672 14.0124C6.99129 13.8433 7.59085 13.4893 7.37214 12.8906L7.37859 12.9057ZM8.99939 16.8884C8.76416 16.246 7.82101 16.3535 7.33207 16.5468L7.06324 16.6436C7.14529 17.057 7.2419 17.4613 7.40432 17.8601L7.56646 18.2589C7.76332 18.2891 7.95991 18.2678 8.15481 18.1961C8.58774 18.0388 9.19401 17.3779 9.01395 16.8845L8.99939 16.8884Z\" fill=\"white\"/>\\n<path d=\"M21.8552 13.4104C21.9899 13.8854 22.0627 14.3765 22.1962 14.852C22.3007 15.2172 22.4659 15.5695 22.5656 15.9218C22.8081 16.7787 22.6331 16.9775 21.7905 17.2166C21.4382 17.3146 21.0641 17.3393 20.7115 17.4384C20.2987 17.5549 19.9064 17.7487 19.4928 17.8663C18.2374 18.2214 16.9633 18.5137 15.7028 18.8531C15.4889 18.9147 15.2912 19.0374 15.0772 19.0962C14.8639 19.1589 14.5631 19.0928 14.5099 18.8459C14.2539 17.9402 13.9938 17.0217 13.784 16.1049C13.7012 15.7481 14.0548 15.5992 14.3309 15.5196C14.8196 15.3818 14.2954 14.1071 14.2083 13.803C13.9551 12.8487 13.7171 11.8898 13.4491 10.9383L13.3559 10.6683C13.2478 10.2853 12.8728 10.6554 12.5578 10.5955C12.0369 10.5126 11.9204 9.9817 11.7911 9.52244C11.7297 9.30961 11.7353 9.09232 11.7084 8.88397C11.6177 8.446 11.4371 8.03435 11.2962 7.5947C11.1442 7.05983 11.7552 6.82069 12.1725 6.71931C12.6171 6.59218 13.0873 6.5597 13.546 6.42864C15.0014 6.01756 16.4348 5.5303 17.889 5.11865C18.8095 4.85822 19.0324 4.7126 19.3267 5.75544C19.5693 6.6129 19.847 7.47708 20.1052 8.33062C20.292 8.98926 20.073 9.03407 19.4906 9.19873C19.1234 9.3029 18.7734 9.53252 18.4065 9.6367C17.4886 9.89769 17.541 9.61656 17.2923 8.79548C17.0739 8.84027 16.8342 8.87389 16.6009 8.92429C16.3559 8.99318 16.3808 9.20208 16.4371 9.39979L16.7899 10.7064C16.8546 10.936 17.0616 10.8459 17.2607 10.7871C17.4746 10.7266 17.6561 10.6095 17.87 10.549C18.2996 10.4286 18.3875 10.5031 18.4998 10.9013C18.6342 11.3768 18.7224 11.8646 18.8608 12.3541C19.0428 12.9954 18.7224 12.9719 18.2161 13.1147C18.1092 13.1455 17.8087 13.3124 17.8434 13.4362L18.2268 14.8492C18.2651 14.9876 18.5275 14.9786 18.6185 14.9534C19.3853 14.7378 19.2021 14.6728 19.0355 14.0254C18.9621 13.7644 18.9753 13.4614 19.2671 13.3813C19.8482 13.2155 20.45 13.0621 21.0333 12.8974C21.6759 12.7159 21.6824 12.7966 21.8602 13.4239L21.8552 13.4104Z\" fill=\"white\"/>\\n<path d=\"M33.9022 14.0407C33.9926 14.4932 33.6521 14.6579 33.278 14.7341C32.95 14.8001 32.612 14.8181 32.285 14.883C31.9251 14.9559 31.5762 15.0746 31.2007 15.1485C31.0299 15.1832 30.733 15.2426 30.605 15.0891C29.4648 13.8559 28.4827 12.5106 27.3147 11.2986C27.1749 11.1648 26.5849 10.3241 26.444 10.3521C26.3499 10.3711 26.4373 10.8898 26.4525 10.9693L26.6367 11.8895C26.7686 12.626 27.206 12.0525 27.4371 12.3129C27.7454 12.6394 27.7795 13.2196 27.8607 13.6251C27.9666 14.1549 28.2254 14.6388 28.3301 15.1541C28.4852 15.9348 27.6115 15.7847 27.0797 15.8912C26.7051 15.9662 26.3612 16.1163 26.0072 16.2048C25.6782 16.2692 25.3343 16.2574 25.0047 16.3067C24.5992 16.3885 24.2083 16.5459 23.7899 16.6461C23.1968 16.766 22.9817 14.7945 22.891 14.3431C22.8216 13.9993 22.7471 13.624 22.7283 13.2891C22.7154 13.0628 23.5337 13.013 23.5219 12.7066C23.5219 12.4641 23.4676 12.1992 23.4186 11.9483L22.7812 8.76264C22.6474 8.09168 22.5387 7.9511 21.8672 8.08608C21.6952 8.12026 21.4922 8.0788 21.4553 7.89342C21.3021 7.12725 21.1803 6.3566 21.024 5.57586C20.9705 5.30983 20.9843 5.04828 20.9282 4.76825C20.8033 4.14266 21.8523 4.11185 22.2441 4.04912C22.7294 3.95279 23.1976 3.77861 23.6849 3.69628L23.9968 3.63468C24.6866 3.51258 25.7913 5.22358 26.2587 5.69796C26.7437 6.17065 27.1581 6.70384 27.6429 7.17653C27.7795 7.29303 28.3169 8.11072 28.4107 8.09392C28.4883 8.07654 28.4603 7.9371 28.4513 7.89006L28.1643 6.45405C28.0892 6.07936 27.9041 6.2121 27.609 6.27259C27.2659 6.34091 27.0192 6.32523 26.9531 5.91638C26.9161 5.72932 26.9408 5.52994 26.9024 5.34288C26.8431 5.04492 26.6899 4.76825 26.616 4.47477C26.5342 4.06929 26.3286 3.20006 26.8904 3.08805C27.5776 2.95083 28.2757 2.87635 28.9638 2.73857C29.5574 2.61984 30.1189 2.42717 30.7117 2.309C31.3678 2.17739 31.5667 2.12082 31.714 2.85394C31.8786 3.68172 31.9831 4.52126 32.1477 5.3496C32.225 5.73884 31.805 5.90462 31.4757 5.96959C31.3986 5.98697 31.309 6.01943 31.309 6.10121C31.4793 7.52713 31.763 9.02923 32.0413 10.4188C32.1567 10.9956 32.5566 10.803 32.9621 10.7217C33.3376 10.6478 33.3712 10.9805 33.4303 11.2785C33.6117 12.1813 33.7176 13.1188 33.9022 14.0407Z\" fill=\"white\"/>\\n<path d=\"M57.3055 2.42754C57.3095 2.8095 57.3912 3.19034 57.3945 3.58855C57.398 3.87475 57.3195 4.09821 56.9689 4.10157C56.4917 4.10329 56.2693 4.10674 56.2727 4.66332C56.2834 5.93691 56.5477 7.20882 56.5583 8.51321C56.5824 11.3315 55.5642 13.3774 52.3332 13.3869C49.5611 13.4104 48.2136 12.0506 48.1915 9.2805C48.1798 7.80137 49.1887 6.64707 50.702 6.65099C51.7681 6.64147 52.5194 7.16122 52.5287 8.25894C52.5321 8.65659 52.3296 9.20097 52.0288 9.4586C51.9344 9.53813 51.5858 9.58742 51.6012 9.69943C51.6023 9.89042 51.8263 9.95202 51.9694 9.93578C52.718 9.92964 53.0904 8.81229 53.0862 8.22422C53.0839 7.90498 53.0325 7.58742 53.0476 7.26819C53.0596 6.95007 53.1209 6.63196 53.119 6.32784C53.1155 6.04221 53.0739 4.72045 53.0089 4.51546C52.9602 4.42081 52.4186 4.39224 52.2909 4.39337C51.7975 4.39853 50.0812 4.71429 50.0753 3.95036L50.0543 1.46646C50.0482 0.606764 50.1912 0.606763 51.0512 0.583799C51.9269 0.575942 52.8023 0.66445 53.6779 0.657728L55.5407 0.643166C55.8745 0.639725 56.2072 0.559155 56.5583 0.569238C57.1934 0.564076 57.3727 0.835828 57.3777 1.43902C57.3812 1.77338 57.3032 2.09262 57.3055 2.42754Z\" fill=\"white\"/>\\n<path d=\"M66.2289 10.2358C66.1992 10.7297 66.1051 11.217 66.0743 11.7099C66.0519 12.0907 66.0922 12.4783 66.0698 12.8423C66.0165 13.7328 65.7841 13.8616 64.9115 13.809C64.5452 13.7866 64.1857 13.6846 63.8205 13.6622C63.3904 13.6359 62.9558 13.6902 62.5268 13.6622C61.2241 13.5827 59.9258 13.4399 58.622 13.3452C58.3991 13.3329 58.1739 13.3833 57.9505 13.3687C57.7287 13.3548 57.4683 13.1963 57.4985 12.9431C57.5562 12.0055 57.6128 11.0512 57.718 10.117C57.7561 9.75185 58.1415 9.72832 58.4282 9.744C58.9373 9.77761 58.8606 8.40096 58.8796 8.08173C58.9558 7.09769 59.0471 6.1159 59.1081 5.13018L59.1093 4.84175C59.1328 4.44578 58.6573 4.67149 58.3789 4.51075C57.9141 4.26096 57.9813 3.72217 58.0093 3.245C58.0216 3.02209 58.1 2.8199 58.1437 2.61548C58.2025 2.17303 58.1661 1.72274 58.1785 1.26124C58.2121 0.70454 58.8685 0.681013 59.2952 0.72246C59.7567 0.751594 60.2126 0.874799 60.6876 0.903921C62.1975 0.995774 63.713 1.00921 65.2207 1.1005C66.1751 1.15819 66.4338 1.09534 66.3678 2.17527C66.3145 3.06354 66.2916 3.97253 66.2524 4.86303C66.2103 5.54519 65.9903 5.51662 65.3865 5.47966C65.0046 5.45838 64.6002 5.56031 64.2171 5.53791C63.2661 5.47854 63.4084 5.23323 63.4431 4.37297C63.2213 4.34384 62.9861 4.29792 62.7475 4.26656C62.4921 4.2509 62.449 4.45586 62.4378 4.66196L62.3381 6.0134C62.3252 6.25087 62.5487 6.23239 62.7553 6.24471C62.9782 6.25928 63.1888 6.2083 63.4117 6.22121C63.8547 6.24862 63.9124 6.3489 63.8878 6.76055C63.8587 7.25172 63.7808 7.74122 63.7495 8.25144C63.7097 8.91848 63.4134 8.78855 62.8897 8.75774C62.7772 8.75161 62.44 8.80758 62.4327 8.9364L62.328 10.3987C62.3185 10.5416 62.5705 10.62 62.6629 10.6267C63.4588 10.6732 63.307 10.5516 63.3636 9.88684C63.3792 9.61632 63.4935 9.33685 63.7943 9.35365C64.3974 9.39007 65.0169 9.44494 65.6206 9.48079C66.2894 9.52225 66.2675 9.60064 66.2277 10.252L66.2289 10.2358Z\" fill=\"white\"/>\\n<path d=\"M75.9952 15.1668L73.7381 14.8705C73.5802 14.8526 73.4256 14.8145 73.2716 14.7624C72.5765 14.5423 72.3995 10.8604 71.9168 10.1402C71.849 10.0506 71.7084 10.0142 71.5964 10.0002C71.2184 9.95032 71.1971 10.1077 71.1534 10.4398C71.1058 10.819 70.9848 11.2519 71.4743 11.3174C72.0736 11.3947 71.6356 12.6532 71.583 13.0648C71.5415 13.3807 71.5628 13.7033 71.518 14.0354C71.4637 14.4622 71.2861 14.5837 70.8448 14.5249C70.4662 14.4773 70.101 14.3328 69.7224 14.2824C68.8683 14.1715 68.0103 14.1066 67.1579 13.9951C66.4791 13.9072 66.8011 13.1612 66.8616 12.7042C66.9254 12.2147 66.8946 11.7117 66.9602 11.2082C67.0386 10.6084 67.0386 10.3687 67.7325 10.4572C67.9061 10.4813 68.0321 9.38856 68.0534 9.24687C68.2035 8.07969 68.2774 6.91643 68.4443 5.7515C68.5194 5.18303 68.3239 5.31688 67.8809 5.27544C67.4721 5.2217 67.2761 4.98869 67.3309 4.5776C67.4093 3.97833 67.5841 3.37402 67.6636 2.77643C67.7129 2.38102 67.6866 1.97329 67.7538 1.58237L67.7745 1.42555C67.8282 1.14159 69.8557 1.47372 70.2175 1.51964C72.0657 1.76159 75.1763 2.26452 76.0814 4.07018C76.516 4.92876 76.8044 5.65629 76.6751 6.65152C76.5014 7.97608 76.0853 8.58095 74.9926 9.33648C74.9747 9.35162 74.9713 9.36504 74.9702 9.38184C74.9501 9.52355 75.3958 10.3037 75.4804 10.5076C75.574 10.7786 75.7509 11.5073 75.901 11.7028C75.985 11.8092 76.3547 11.7957 76.4964 11.8282C77.3331 11.9391 76.8778 13.0828 76.8061 13.6204C76.7624 13.9665 76.7826 14.3071 76.7389 14.6375C76.67 15.1595 76.4981 15.2323 75.9952 15.1668ZM72.3065 5.4373C72.2119 5.4244 72.0534 5.40427 71.994 5.49276C71.9346 5.58237 71.775 6.68347 71.7498 6.87277C71.7145 7.14104 71.7123 7.26985 72.0299 7.31242C72.6286 7.39026 73.4311 7.26986 73.5269 6.52888C73.6115 5.89713 72.8279 5.50563 72.3065 5.4373Z\" fill=\"white\"/>\\n<path d=\"M86.3594 17.3851L84.1371 16.8933C83.9803 16.8609 83.8302 16.8093 83.6812 16.7455C83.0091 16.4677 83.1514 12.7819 82.7324 12.0219C82.6719 11.9267 82.5342 11.8807 82.4255 11.8561C82.0531 11.7754 82.0189 11.9295 81.9478 12.2571C81.8654 12.6312 81.7075 13.0513 82.188 13.1577C82.78 13.2865 82.2351 14.5046 82.1455 14.9084C82.0772 15.2176 82.0716 15.5436 81.9982 15.8701C81.9069 16.2896 81.721 16.396 81.2858 16.2997C80.9117 16.2179 80.5594 16.0415 80.1864 15.9603C79.3474 15.7743 78.4972 15.6371 77.6594 15.4528C76.9895 15.305 77.3737 14.5909 77.4745 14.14C77.5798 13.6567 77.5927 13.1566 77.7019 12.6575C77.8319 12.0667 77.852 11.8264 78.5376 11.9771C78.7078 12.0168 78.929 10.9387 78.9587 10.7987C79.2136 9.64943 79.3855 8.49681 79.6532 7.35204C79.7764 6.78973 79.572 6.9079 79.1323 6.82781C78.7291 6.73988 78.5555 6.48842 78.6451 6.08405C78.7739 5.49486 79.0024 4.90735 79.1312 4.3176C79.2175 3.92948 79.2253 3.52287 79.3261 3.1381L79.3586 2.9824C79.4381 2.70685 81.4303 3.20979 81.787 3.2882C83.6061 3.68809 86.663 4.45929 87.4078 6.33552C87.7652 7.22938 87.9926 7.97931 87.7764 8.95831C87.4874 10.2655 87.0197 10.83 85.8643 11.4887C85.8469 11.501 85.843 11.5167 85.8386 11.5324C85.8072 11.6735 86.1824 12.4879 86.2508 12.699C86.3191 12.9757 86.4345 13.7172 86.5678 13.9261C86.6406 14.0398 87.0113 14.056 87.1469 14.1036C87.9713 14.2834 87.4202 15.3845 87.3037 15.9138C87.2275 16.2549 87.2186 16.5954 87.1457 16.9213C87.0337 17.4355 86.8568 17.4948 86.3594 17.3851ZM83.5277 7.37334C83.4359 7.35206 83.2791 7.3173 83.2141 7.40074C83.1446 7.48251 82.8904 8.56904 82.8484 8.75442C82.7896 9.01878 82.7784 9.14647 83.0897 9.21592C83.6812 9.34585 84.4899 9.29489 84.6523 8.564C84.7879 7.94345 84.0407 7.48479 83.5277 7.37334Z\" fill=\"white\"/>\\n<path d=\"M98.222 8.44386C98.0338 9.08401 97.6311 10.725 97.3057 11.2106C97.0599 11.536 96.5922 11.1002 96.2198 11.2369C95.835 11.3562 93.4026 13.41 93.1624 13.7706C92.8991 14.1571 92.7602 14.632 92.6241 15.0902C92.3268 16.0972 93.6463 15.2246 93.238 16.5491C93.1041 17.0067 92.6404 18.9115 92.1543 18.9837C91.8092 19.0308 89.0089 18.17 88.4741 18.0115C87.4363 17.7046 87.5897 17.3539 87.8585 16.3873C88.0142 15.8675 88.2047 15.3287 88.4085 14.8062C88.5217 14.5402 88.9776 14.6264 89.1904 14.6892C89.2346 14.7021 89.3013 14.7049 89.3433 14.6834C89.4822 14.4907 89.4827 14.2611 89.5421 14.0612C89.6855 13.5728 89.8905 13.1035 90.0294 12.6291C90.175 12.1407 89.5516 9.53306 89.2867 9.0234C89.2122 8.88562 89.0369 8.91585 88.8986 8.87665C88.3335 8.70863 88.7535 7.57113 88.8526 7.23566C88.9742 6.82289 89.0156 6.4034 89.136 5.99231C89.3125 5.3964 89.4883 5.08276 90.175 5.28663C90.9086 5.50169 91.6378 5.7851 92.3704 6.00129C92.7053 6.10154 93.0548 6.10265 93.3853 6.21746C93.9655 6.38996 93.5746 7.31967 93.4519 7.73075C93.3192 8.18945 93.1108 8.61006 92.9613 9.06371C92.7395 9.81196 92.2595 9.23845 92.1475 9.6193C92.0943 9.80356 92.4466 11.2508 92.5832 11.2922C92.7356 11.337 93.2234 10.7013 93.3393 10.5871C93.5219 10.423 93.8249 10.297 93.896 10.055C93.9778 9.77949 93.294 9.95871 93.4497 9.42441C93.5818 8.98084 93.8344 8.57311 93.9756 8.15194C94.0999 7.79014 94.1615 7.4104 94.2562 7.04019C94.4774 6.29026 95.341 6.8453 95.8462 6.99427C96.5642 7.20597 97.3192 7.34655 98.0349 7.55713C98.4639 7.68371 98.3178 8.12224 98.2181 8.45884L98.222 8.44386Z\" fill=\"white\"/>\\n<path d=\"M99.3554 10.7162C99.1336 10.6406 98.8816 10.4815 98.9689 10.2194C99.0664 9.94495 99.7004 10.2653 100.005 9.3776C100.055 9.23255 100.038 9.19782 99.893 9.14742C99.1224 8.88418 98.825 8.09561 99.0798 7.35185C99.3677 6.51399 100.31 6.15218 101.115 6.44174C102.12 6.78842 102.37 7.76405 102.053 8.69152C101.756 9.55402 100.374 11.0662 99.3554 10.7162Z\" fill=\"white\"/>\\n<path d=\"M105.938 20.2212C105.232 22.0482 103.407 23.287 101.431 22.5242C100.452 22.1451 99.6807 20.9594 99.4898 20.8866C99.4741 20.8787 99.3895 20.8799 99.3733 20.8754C99.1918 20.9415 99.1868 21.179 99.0227 21.2512C98.7824 21.3459 98.4211 21.086 98.1904 20.9807C97.8936 20.8665 97.5727 20.8104 97.2865 20.7175C96.4251 20.3826 96.8216 19.7519 97.0736 19.0989C97.2349 18.6833 97.4634 18.3114 97.6191 17.911C97.8196 17.3907 97.9613 16.848 98.1618 16.3299C98.5108 15.4232 98.6765 15.6573 99.4483 15.9552C99.8504 16.1115 100.213 16.3187 100.629 16.4811C101.563 16.8429 100.3 18.2991 101.503 18.7634C101.919 18.9241 102.493 18.806 102.661 18.3764C103.262 16.8161 99.4976 15.1218 100.735 11.8808C101.411 10.1277 103.25 9.30221 105.001 9.97877C105.638 10.2269 106.26 10.9611 106.572 11.0815C106.691 11.1269 106.757 10.8654 106.916 10.857C107.055 10.8424 107.234 10.9113 107.353 10.9566C107.62 11.0603 108.867 11.5436 108.888 11.7564C108.898 11.9468 108.836 12.1457 108.776 12.3086C108.615 12.7242 108.366 13.1051 108.206 13.5217C108.027 13.9821 107.923 14.4694 107.726 14.9387C107.449 15.6528 106.925 15.1594 106.389 14.9539C106.12 14.8491 105.825 14.82 105.558 14.7164C105.485 14.6889 105.42 14.6307 105.389 14.5836C105.204 13.9138 105.447 13.2406 104.617 12.9191C104.334 12.8105 103.943 12.9852 103.82 13.2597C103.299 14.5949 107.389 16.4296 105.924 20.2168L105.938 20.2212Z\" fill=\"white\"/>\\n<path d=\"M46.7626 7.19727C47.3137 6.60248 47.5912 5.64813 47.5159 4.83939L47.5 4.84054C47.3863 3.63753 46.5969 2.73525 45.3123 2.85679C44.4585 2.93744 43.7783 3.68792 43.8581 4.54537C43.8982 4.79796 43.983 5.02873 44.13 5.22251C44.3448 5.47342 44.6372 5.52662 44.9382 5.65936C44.9715 5.67054 44.9878 5.66945 44.99 5.70082C45.0272 6.09735 43.587 6.42443 43.3174 6.45019C42.2569 6.56613 41.0768 6.59693 40.3101 7.45383C39.8878 7.89292 39.6498 8.25193 39.71 8.90104C39.7727 9.55071 40.1998 10.1825 40.9446 10.1119C40.9446 10.1119 41.0553 10.1024 41.0513 10.0548C41.0384 9.91196 40.9458 9.79267 40.9306 9.63417C40.885 9.14243 41.4588 8.78399 41.8867 8.7431C42.2986 8.70502 42.6898 8.94025 42.7301 9.36813C42.8105 10.2385 41.831 10.8602 41.0698 10.9324C39.8954 11.0259 38.8293 10.2312 38.7181 9.04218C38.6582 8.24857 39.0592 7.25052 39.9477 7.1682C40.0894 7.15363 40.2535 7.18781 40.3546 7.06738C40.4551 6.96097 40.8044 5.56921 40.7895 5.41071C40.7279 4.76047 39.4801 5.43761 39.3762 4.32866C39.3389 3.93326 39.5414 3.52777 39.9685 3.48744C40.9522 3.39503 40.7912 4.57845 41.5674 4.50396C42.0595 4.45917 42.5372 4.44515 43.0113 4.40147C43.2362 4.39533 43.3731 4.31858 43.3504 4.08055C43.2698 3.22813 43.279 2.36619 43.2034 1.51265C43.2011 1.49361 43.2011 1.47457 43.1988 1.45776C43.1602 1.03771 43.0115 0.923455 42.8012 0.91674C42.5973 0.912152 42.3366 1.01083 42.0563 1.03715C41.8356 1.05843 41.6074 1.03102 41.3859 1.05229C41.2741 1.06239 41.1322 1.07747 41.0784 1.17775C41.0498 1.22759 41.0395 1.27746 41.0426 1.30882C41.0454 1.3469 41.0563 1.39898 41.0619 1.4533C41.07 1.53283 41.0622 1.61182 40.9759 1.61798C40.9707 1.61798 40.8981 1.57427 40.7855 1.51156C40.4959 1.35418 39.9244 1.07863 39.4105 1.12624C39.1324 1.15314 38.8603 1.20129 38.5987 1.26682C38.0269 1.41299 37.5136 1.6583 37.1288 2.02122C36.6376 2.48496 36.354 3.1408 36.4377 4.02962C36.4634 4.29845 36.5374 4.57959 36.6259 4.84226C36.7116 5.05957 36.7967 5.29031 36.9574 5.46785C37.0109 5.52554 37.112 5.581 37.119 5.65941C37.1083 5.70982 36.0171 6.69218 35.8911 6.87924C35.2321 7.86775 34.9961 8.75433 35.1092 9.9428C35.2397 11.4964 35.8499 12.5437 37.1325 13.4286C38.4307 14.3141 39.8365 14.3113 41.3428 14.1674C43.5147 13.9629 45.6592 12.4659 46.0565 10.2217C46.1039 9.88231 46.1837 9.53843 46.1518 9.20631C46.105 8.71513 45.7026 8.16067 45.7012 8.14555C45.6718 8.00272 46.5876 7.38993 46.7626 7.19727Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1h3nhc7\",\"data-framer-name\":\"Church and Dwight\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:47,intrinsicWidth:47,svg:'<svg width=\"47\" height=\"47\" viewBox=\"0 0 47 47\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.578125 22.342V24.9799C0.637837 25.1247 0.800613 26.9443 0.867687 27.3471C1.67993 32.2259 3.8999 36.416 7.23763 39.7517C8.87235 41.3856 10.8637 42.9258 13.4886 44.1904C18.0283 46.3772 21.564 46.2279 22.011 46.4112H24.6486C24.7766 46.3572 26.6374 46.1838 27.0121 46.1228C29.2202 45.7629 31.1387 45.1458 33.1354 44.2071C38.9491 41.4739 43.6799 35.9231 45.3056 29.6043C45.4949 28.8686 45.6573 28.1541 45.7837 27.3888C45.8454 27.0142 46.0221 25.1186 46.079 24.9803V22.3436C46.0185 22.1964 45.852 20.3445 45.7825 19.931C45.652 19.158 45.4941 18.4537 45.3056 17.7184C44.9604 16.3696 44.4259 14.99 43.8586 13.8212C40.5785 7.0635 34.4033 2.43092 27.0154 1.20069C26.606 1.13239 24.7995 0.973299 24.6477 0.911133H22.011C21.8642 0.971663 20.0021 1.13894 19.6033 1.2056C12.2563 2.42806 5.89412 7.22382 2.78297 13.8555C1.86602 15.8105 1.21123 17.799 0.864824 19.9809C0.804703 20.3584 0.635792 22.2025 0.578534 22.3436L0.578125 22.342Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.1029 2.31145C17.5509 2.58792 13.7792 4.09585 10.3781 6.63729C9.09677 7.59513 7.99415 8.6679 6.96392 9.89199C6.74511 10.1521 6.57252 10.346 6.37048 10.6216C5.13125 12.314 4.28506 13.6379 3.45073 15.7433C2.35997 18.4958 1.78984 21.6331 1.97634 24.9279C2.62131 36.3002 12.3846 45.7171 24.5953 45.0128C35.9835 44.356 45.3885 34.5951 44.6801 22.393C44.4147 17.8234 42.8548 14.1217 40.3519 10.7087L38.5004 8.58978C37.3761 7.45976 36.1483 6.42911 34.7847 5.58824C31.0127 3.26152 26.7989 2.02638 22.1021 2.31145H22.1029Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.1216 2.72678C17.377 3.04579 13.3755 4.68173 9.91548 7.5479C8.26359 8.91636 6.75034 10.6247 5.60232 12.4471C3.33286 16.0499 2.10631 20.4154 2.3926 24.8946C2.69116 29.5697 4.3905 33.6645 7.21699 37.0742C11.4124 42.135 17.8322 44.9991 24.5498 44.5979C29.1591 44.3222 33.3851 42.5787 36.7449 39.7735L38.1351 38.5167C38.3653 38.2836 38.549 38.0529 38.7743 37.832C40.3599 36.2775 42.002 33.469 42.8265 31.4003C45.6878 24.2206 44.3156 16.0736 39.4422 10.2452L38.1862 8.8542C34.0137 4.69891 28.1795 2.31902 22.1216 2.72678Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.3476 10.2972C15.3384 10.8563 9.64532 16.8876 10.1815 24.5266C10.6694 31.4757 16.8357 37.3598 24.4944 36.7209C31.4217 36.143 37.2007 30.1207 36.6175 22.4895C36.0846 15.5187 30.0071 9.68619 22.3476 10.2972Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.6995 17.8855L17.5821 17.953C17.0472 17.9457 17.4071 17.7538 17.0365 17.6377C16.7098 17.5354 16.5106 17.6745 16.3625 17.814C16.1441 18.0205 16.0472 17.9943 15.7507 18.1166C15.3855 18.2675 15.5241 18.3681 15.1752 18.4565C14.819 18.5469 14.8501 18.5493 14.6706 18.8197C14.5192 19.0475 14.435 19.1243 14.2722 19.3358C13.9753 19.7215 13.7912 20.0012 13.7512 20.6572C13.3704 21.031 12.5671 21.0961 12.9692 22.058C13.4105 23.1144 13.8559 22.6408 14.3716 22.4564C14.6419 22.6093 15.5282 23.5455 15.6685 24.1962C15.9683 25.5867 16.3752 26.9818 16.7318 28.3245C17.0488 29.5175 17.3478 30.2892 17.8929 31.2843C18.2434 31.9244 20.1043 34.4879 20.7023 34.6842C21.9411 35.0911 22.8723 34.0032 23.6048 33.5554C24.6752 32.901 25.6215 32.1751 26.5369 31.3456C27.0833 30.8508 27.5916 30.2847 28.0403 29.6938C28.2067 29.4745 28.774 28.576 28.9274 28.4828C29.1981 28.5752 29.2979 28.7613 29.7233 28.5797C29.9899 28.466 30.192 28.2586 30.2823 28.0562C31.2157 28.0999 31.0443 27.664 31.6749 27.5331C31.9162 27.4828 31.9809 27.4623 32.1829 27.3666C32.1363 27.2423 32.1007 27.2333 32.095 27.0771L32.4344 26.7826C32.4205 26.5875 32.4197 26.7253 32.3923 26.6521C32.2516 26.2771 32.5314 26.181 32.4209 25.7655L32.2328 26.3597L32.1539 26.1691C32.0385 26.244 32.0614 26.3249 31.9457 26.3454L31.9964 25.9945C31.8958 26.0746 31.8177 26.1744 31.8124 26.2742C31.8009 25.8562 31.895 25.4203 31.8676 24.9299C31.8471 24.5614 31.7743 23.9725 31.6373 23.7009C31.6561 23.9487 31.7653 24.2313 31.7281 24.523C31.6974 24.7626 31.6279 24.7017 31.5682 24.853C31.5653 24.8604 31.5612 24.8747 31.5592 24.8825L31.3825 25.5201C31.3375 25.6608 31.3985 25.4554 31.3715 25.689C31.351 25.8652 31.2075 25.9519 31.1187 26.1004C31.0271 26.2538 31.1821 26.1192 31.0144 26.2693L30.9564 26.1667C30.9519 26.1573 30.9449 26.1417 30.94 26.1311C30.8831 26.0121 30.9429 26.0722 30.8619 25.9659C30.8422 26.0027 30.85 26.0055 30.8267 26.0652C30.8226 26.0755 30.8169 26.0918 30.8124 26.1025C30.8079 26.1143 30.8009 26.1303 30.796 26.1417L30.6762 25.8325C30.6079 25.8538 30.6995 25.8383 30.621 25.8771C30.459 25.9573 30.6885 25.963 30.5298 25.8984C30.4725 25.5875 30.5224 25.4485 30.6529 25.2452C30.794 25.361 30.8909 25.5765 31.1424 25.2878C31.0279 24.9606 30.8083 25.0812 30.5286 24.9585C30.4545 24.9262 30.486 24.9254 30.4144 25.0178C30.4091 25.0244 30.4005 25.0432 30.3911 25.0542C30.329 24.889 30.3506 24.9013 30.2079 24.8207L30.4226 25.3994C30.2108 25.1786 29.9478 24.7786 29.8881 24.4093C30.0349 24.5426 30.2059 24.5409 30.394 24.426C30.4067 24.0837 30.311 24.2203 30.057 24.0555C29.877 23.9385 29.8153 23.8146 29.6668 23.6833C29.493 23.5291 29.4165 23.5001 29.3818 23.1962C29.3494 22.9128 29.3625 22.8821 29.5789 22.8024C29.5871 22.7995 29.6059 22.7917 29.6124 22.7893C29.6194 22.7868 29.637 22.7831 29.6464 22.775C29.093 22.2445 29.3548 23.3074 27.9266 22.2682C27.0088 21.6008 26.6395 22.0703 25.7058 21.7917C25.6616 21.6269 25.6649 21.4269 25.7377 21.2834C25.797 21.1656 25.9725 21.0331 26.0727 20.9173C25.8878 20.9501 25.678 21.0523 25.6125 21.1599C25.3095 21.6601 25.5794 21.6245 24.6154 22.3488C23.2138 23.4023 24.1762 23.8547 24.1439 24.3172C24.1124 24.7643 23.4028 24.9737 23.0184 26.0963C22.8249 26.6615 22.7243 28.0394 22.3628 28.3801C22.0466 28.1053 21.9664 27.6799 21.6896 27.4357C21.3497 27.1356 21.1951 26.9274 20.8884 26.61C20.3698 26.073 19.9125 25.3229 19.5518 24.6358C19.3567 24.2641 18.5089 22.6347 18.7027 22.2932L19.0193 21.7905C20.1616 19.3636 18.3081 20.31 20.4368 19.1366C20.807 18.9325 21.1534 18.7342 21.5129 18.5346L23.1218 17.6491C23.3913 17.5068 23.4196 17.4091 23.7872 17.4434C24.0993 17.8262 24.348 18.2651 24.7021 18.6205C24.9042 18.8233 24.9758 18.9313 25.2694 19.074C25.678 19.2724 25.6489 19.2331 25.9786 19.0295C26.3823 18.7804 26.8665 18.5227 27.3246 18.2912C27.8207 18.0405 28.2202 17.7874 28.6174 17.5093C28.5266 16.5375 28.093 15.63 28.0231 15.0059C28.1544 14.8717 28.1867 14.895 28.3323 14.7515C28.3352 14.1674 27.7102 12.8685 27.0125 13.356C26.5185 12.8632 26.2477 12.1978 25.5606 11.9017C25.3156 11.7961 25.1169 11.9745 24.9038 12.1012C24.4997 12.3417 24.0989 12.5716 23.6719 12.8039C23.2916 13.0108 22.7664 13.3711 22.4114 13.5053C22.4131 14.3118 22.6552 14.9846 22.8993 15.6443C22.1182 16.1931 20.3771 17.0688 19.4684 17.5592C19.104 17.7559 18.6479 18.016 18.2884 18.1514C18.0983 17.8238 18.131 17.9137 17.6991 17.8831L17.6995 17.8855Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.6557 37.1751C15.4443 37.3853 14.74 38.9145 14.6509 39.9018C14.5732 40.7639 14.875 41.2322 15.3138 41.6003C15.7052 41.9287 16.4852 42.2494 17.1674 42.1308C18.7362 41.8576 19.9693 38.7566 18.4581 37.6925C18.016 37.3812 17.3526 37.0544 16.6561 37.1751H16.6557ZM16.8749 38.1526C15.9805 38.4061 15.3003 40.0429 15.8856 40.8236C16.0611 41.0576 16.4929 41.294 16.9498 41.1545C17.5076 40.9844 17.9645 40.256 18.0925 39.5501C18.2495 38.6863 17.7105 37.9158 16.8749 38.153V38.1526Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.8017 37.7827L29.6904 40.9029C29.3383 40.6158 27.3519 38.5226 27.0435 38.3034L26.0488 38.595L27.3559 43.1196L28.2173 42.8873L27.3314 39.7892C27.5494 39.9013 29.5968 41.9842 29.9955 42.3425L30.9718 42.0836L29.6594 37.5549L28.8013 37.7827H28.8017Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.1806 38.9622C13.9278 38.8314 13.6816 38.5856 13.4039 38.3966C13.1336 38.5537 12.4281 39.2117 11.8003 38.3933C11.269 37.7005 12.1692 36.5096 12.7095 36.1472C13.4072 35.6793 14.0542 35.957 14.2468 36.5104C14.3977 36.9443 14.1957 37.1721 14.1045 37.5034C14.2542 37.6486 14.7176 38.0371 14.891 38.1083C15.1225 37.6089 15.4869 37.139 15.2456 36.3717C15.0763 35.8327 14.6513 35.4401 14.2399 35.1918C12.4129 34.0888 10.8003 36.494 10.6314 37.5672C10.4326 38.8293 11.752 39.8215 12.7389 39.7753C13.3471 39.7471 13.9565 39.3381 14.1806 38.9618V38.9622Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.7342 37.9067L33.8627 38.4093C33.9232 38.759 34.0852 38.9643 33.9404 39.3594C33.852 39.6007 33.5968 39.844 33.3285 39.9221C32.2623 40.2326 31.035 38.1799 31.6501 37.3263C31.7809 37.1447 32.1188 36.9369 32.4897 36.9778C32.8693 37.0196 33.03 37.2433 33.2529 37.4465C33.4116 37.411 33.9756 37.0707 34.0983 36.9443C33.9563 36.6237 33.3838 36.1378 32.8979 36.0282C31.776 35.775 29.4268 36.9803 30.9667 39.4857C31.4546 40.28 32.2865 41.3744 33.7191 40.7687C34.1976 40.5663 34.6496 40.1626 34.8569 39.7193C35.1894 39.0089 34.9277 38.5164 34.7338 37.9071L34.7342 37.9067Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.1563 22.0289L26.4962 22.1655C26.2345 22.3564 26.1069 22.1 25.7167 22.1724C25.0357 22.2988 24.8783 22.134 24.2975 22.7977C24.167 22.9466 24.0378 23.329 24.0312 23.5703C24.3462 23.7184 24.246 23.7302 24.7032 23.7036C25.0566 23.6828 25.2005 23.7421 25.338 23.9392C25.3371 23.7208 25.3326 23.8431 25.3858 23.7642C25.648 23.7225 25.5756 23.6746 25.7923 23.7924C25.8897 23.8456 25.8463 23.8345 25.9743 23.8677C26.3195 23.9564 26.3036 24.0153 26.587 24.0239C26.9915 24.0366 26.78 23.9593 26.9653 23.8914C27.1522 24.0541 27.122 24.2157 27.2798 24.3662L27.4602 24.2227C27.4684 24.2153 27.4835 24.2022 27.4904 24.1961C27.497 24.1903 27.5097 24.1768 27.5207 24.1695C27.5972 24.2406 27.6348 24.2852 27.7121 24.3642C27.76 24.4124 27.7743 24.4165 27.816 24.466C28.007 24.6942 27.9915 25.0967 28.3788 24.85C28.4184 25.0304 28.6794 25.3907 28.7567 25.7649C28.7174 25.5739 28.7828 25.5715 28.8237 25.52C28.9636 26.178 29.0008 25.9931 29.0994 26.2365C29.2106 26.5126 29.0965 26.8287 29.1816 27.1052C29.2851 26.9432 29.2695 26.5142 29.2843 26.2549C29.292 26.1191 29.2953 25.9801 29.3362 25.8435C29.3804 25.6958 29.3517 25.7445 29.4078 25.7465C29.7174 25.7563 29.2597 25.958 29.4838 25.7981C29.4847 25.5748 29.4667 25.2725 29.5436 25.0926L29.663 24.9028C29.701 24.8586 29.7063 24.868 29.7587 24.8157C29.9673 25.0054 29.9223 25.4819 29.9374 25.7486C29.9386 25.7723 29.946 25.8819 29.9493 25.9007L30.0073 26.0799C30.063 24.6394 29.8474 24.8075 29.5374 24.6427L29.5301 23.8374C29.353 23.7016 29.5018 23.8341 29.3145 23.7662C28.9055 23.6186 28.8933 23.4611 28.8712 23.2534C28.6871 23.3695 28.762 23.3568 28.6062 23.1728L28.4094 23.0272C28.1726 22.9282 28.1088 22.7863 28.0213 22.7356L27.6365 22.5548C27.4839 22.4677 27.299 22.5847 26.9579 22.2211C26.5719 21.8105 26.778 22.0546 26.4426 22.0661C26.3952 22.0677 26.2627 22.035 26.1559 22.0301L26.1563 22.0289Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M36.6597 29.3576C36.8131 29.486 40.251 30.8393 40.6334 30.9383L40.1398 32.254L41.0976 32.6495L42.5045 29.0095L41.5557 28.6639L41.0289 29.9612C40.3341 29.758 37.4061 28.4488 37.0201 28.4496L36.6597 29.358V29.3576ZM37.8728 23.9295L40.1472 24.1475L39.9635 26.2632C39.377 26.2763 38.112 26.0064 37.6654 26.0882L37.5701 27.1049L42.8207 27.6084C42.945 27.3519 42.9205 26.8808 42.9589 26.5761L41.0068 26.3806C40.9753 26.1978 41.1344 24.4776 41.1929 24.2759L43.1659 24.4363L43.2579 23.4077L37.9885 22.8858L37.8724 23.9291L37.8728 23.9295ZM38.355 21.8282L37.8814 22.076L37.9693 22.5876C38.328 22.5709 40.6285 22.0625 40.8518 21.9296L40.4416 20.0552L39.5402 20.2474L39.7255 21.1533C38.8981 21.1893 38.2916 20.8572 38.3255 19.9943C38.3529 19.2953 39.0122 18.9252 39.6294 18.7362C40.3426 18.5178 41.2645 18.6058 41.613 19.0679C41.7896 19.3023 41.9332 19.6871 41.8121 20.0536C41.7647 20.1971 41.653 20.3415 41.5667 20.4208L41.2248 20.6822C41.2199 20.6871 41.2085 20.6985 41.2011 20.708L41.4424 21.7946C43.716 21.218 43.3585 17.2483 40.2236 17.5003C39.0617 17.5939 37.8487 18.1039 37.4601 18.9088C37.198 19.4524 37.2098 20.0875 37.4012 20.6826C37.6564 21.4764 38.0895 21.5926 38.3546 21.8273L38.355 21.8282ZM36.2642 16.9997C36.3248 17.2058 36.5808 17.7943 36.7141 17.9383L41.4956 15.7085L41.0621 14.7601L36.2638 16.9997H36.2642ZM33.3739 12.9802C33.4619 13.1552 33.9052 13.6787 34.068 13.8125L37.4098 12.0959C37.2634 12.4211 35.3285 14.6529 35.0855 15.059C35.1964 15.3024 35.5551 15.675 35.7477 15.8852C36.0099 15.8267 36.6851 15.4459 36.9644 15.3077L40.6187 13.4726L39.9852 12.6751C39.7729 12.7372 39.3615 12.9855 39.1423 13.109L36.573 14.4844L38.993 11.5066C38.9145 11.3536 38.8118 11.244 38.6903 11.0984C38.5607 10.943 38.4642 10.8121 38.3595 10.6886L34.9383 12.4747C34.9702 12.381 37.0716 9.80072 37.3648 9.52138C37.3096 9.40482 36.8299 8.80525 36.7145 8.71813L33.3739 12.9798V12.9802ZM29.0117 10.1222C29.2751 10.3365 31.192 11.4878 31.5401 11.5794C32.7408 11.8951 33.6022 10.7091 34.0005 10.0551C34.5105 9.21791 34.9845 7.96887 34.1993 7.14068C33.8721 6.79549 32.9007 6.26381 32.3785 5.95871C32.1789 5.84215 31.9241 5.66547 31.7266 5.58121C31.6026 5.68673 31.4742 5.94071 31.3748 6.10513L29.0113 10.1218L29.0117 10.1222ZM30.4297 9.76309C30.4436 9.77577 30.4587 9.77618 30.4632 9.79376C30.4681 9.81135 30.4857 9.81544 30.4922 9.82117L31.0979 10.1913C31.9175 10.6788 32.331 10.6862 33.0733 9.48294C33.6566 8.53777 33.7257 7.95129 32.8104 7.40856C32.6222 7.29691 32.2717 7.05888 32.0824 7.00817L30.4293 9.7635L30.4297 9.76309ZM23.9755 6.04255C23.4667 6.23764 23.1366 6.4544 22.9395 6.93455C22.2745 8.55209 23.6802 9.76963 25.1255 9.22159C25.4126 9.1128 25.5893 8.92181 25.7717 8.85964C26.0752 9.20114 25.7599 9.47598 27.3439 9.47516C27.184 9.04982 26.7255 8.56435 26.5418 8.13778C26.6187 7.98114 26.7652 7.84618 26.8752 7.66459C26.9782 7.49404 27.0964 7.27073 27.1561 7.0691C27.0244 6.89774 26.802 6.76564 26.6367 6.62904C26.5083 6.74723 26.4249 7.06052 26.0768 7.42451L25.9001 7.19466C25.8282 7.0826 25.7852 7.01144 25.7235 6.91205C25.6024 6.71697 25.4638 6.56155 25.3897 6.32066C26.5521 5.9767 26.669 4.28555 25.3627 3.9645C24.247 3.69007 23.2086 4.51008 23.9755 6.04337V6.04255ZM24.9063 5.75708C25.4813 5.58326 25.6233 4.83809 25.1509 4.72194C24.8581 4.64996 24.6576 4.81437 24.636 5.08143C24.6102 5.40208 24.7521 5.58612 24.9063 5.75708ZM25.3247 8.13696L24.481 6.77832C24.4278 6.71779 24.4503 6.7411 24.3975 6.69897C23.9542 6.91655 23.6258 7.45723 23.9333 8.0429C24.1824 8.5165 24.9124 8.54391 25.3247 8.13656V8.13696ZM17.7904 4.61969L18.446 6.4998L16.462 7.20366C16.2456 6.88547 15.9651 5.66383 15.7454 5.35873L14.786 5.68264L16.5524 10.687L17.5356 10.3488L16.7724 8.16355L18.8038 7.46377L19.5511 9.60727C19.8578 9.57414 20.3146 9.41545 20.5351 9.25718C20.3629 8.58399 19.2954 5.75585 18.9012 4.62583L18.7703 4.32849C18.7654 4.3199 18.756 4.30395 18.7482 4.29209L17.7908 4.6201L17.7904 4.61969ZM15.2387 9.10462C14.9156 9.25268 14.6338 9.60522 14.3132 9.75368C14.5193 10.2764 14.8588 11.1774 13.8559 11.541C12.7108 11.9565 11.1178 9.78599 11.7345 8.80852C11.8838 8.57213 12.2188 8.33246 12.5889 8.32755C13.0228 8.32183 13.3181 8.58521 13.5561 8.77048C13.86 8.58521 14.1619 8.26743 14.4347 8.14883C14.3467 7.93983 14.0269 7.68626 13.7975 7.53821C12.8216 6.91042 11.8793 7.25437 11.1362 7.90548C9.97344 8.92426 10.4446 10.3381 11.2462 11.363C11.9063 12.2068 13.0089 13.2714 14.5013 12.3892C14.9299 12.136 15.4387 11.6215 15.6097 11.0559C15.8669 10.204 15.5111 9.70297 15.2379 9.10381L15.2387 9.10462ZM6.21936 13.6337C6.22672 13.644 6.24022 13.6456 6.24431 13.6624L10.5027 16.7302C10.7051 16.5228 10.9378 16.1735 11.1043 15.924C10.9346 15.6844 9.85238 15.0607 9.57263 14.7535C9.72886 14.4983 9.8851 14.2951 10.0548 14.0517C10.2119 13.8268 10.3648 13.5012 10.7031 13.5176C11.2601 13.5442 11.6732 14.2456 12.2973 14.3155C12.4171 14.0325 12.7329 13.72 12.8895 13.4305C12.7177 13.3188 12.4453 13.262 12.2617 13.1474C11.7014 12.7978 11.0712 12.1949 10.4082 12.4595C10.4462 11.2841 8.85977 10.4113 8.02626 11.1573C7.84712 11.3176 7.71707 11.5225 7.55224 11.7524L6.21895 13.6341L6.21936 13.6337ZM7.66799 13.3793C7.81072 13.5343 7.98209 13.6325 8.1739 13.7756L8.72153 14.1356C8.96038 13.8775 9.15915 13.5331 9.36691 13.2616C9.68183 12.8509 9.65525 12.5507 9.26916 12.2718C8.79965 11.9323 8.54771 12.1098 8.28678 12.4878C8.10356 12.7528 7.81604 13.1061 7.66799 13.3797V13.3793ZM3.65298 22.0044L5.60834 22.0588C5.6885 22.3701 5.58584 23.7668 5.58012 24.1954L3.58222 24.1434L3.56055 25.1908L8.87449 25.3409C8.87449 25.0272 8.94279 24.5806 8.86386 24.2939L6.60176 24.2297L6.66025 22.1112L8.96161 22.1509L8.98737 21.1161L3.68365 20.9554L3.65257 22.0044H3.65298ZM6.89828 26.0129L7.20256 27.0934C7.58823 27.0832 7.97064 27.0689 8.25734 27.2799C8.94239 27.7834 8.94811 28.9564 7.28804 29.4561C4.86562 30.185 4.65499 27.8668 5.99769 27.4897C5.95352 27.172 5.81528 26.6157 5.66805 26.3949C5.11592 26.5474 4.54375 27.0264 4.31962 27.4509C4.00593 28.0451 4.09754 28.8484 4.35112 29.4557C4.88934 30.744 6.05209 30.9841 7.6365 30.5146C10.708 29.6038 9.80821 27.0869 8.84914 26.3327C8.41275 25.9896 7.57965 25.8223 6.89869 26.0129H6.89828ZM4.99813 16.2979C5.76171 16.522 6.58295 16.8434 7.34734 17.095C8.10478 17.344 9.23072 17.5972 8.88513 18.6344C8.36981 20.1808 5.79565 18.2904 4.36502 18.1301L4.04233 19.0773C4.3368 19.2794 6.64757 19.9943 7.16862 20.1742C8.59025 20.6662 9.41108 20.2241 9.83275 19.0201C10.6274 16.7502 8.73748 16.4541 6.9265 15.8361C6.47293 15.6811 5.75312 15.3899 5.31673 15.3081L4.99854 16.2983L4.99813 16.2979Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M40.8453 42.2226C38.91 42.7465 39.7304 45.5828 41.6285 45.0638C42.296 44.8814 42.8755 44.1326 42.6301 43.2402C42.4481 42.5784 41.7459 41.9784 40.8453 42.2226Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M40.8664 42.4113C39.264 42.898 39.9163 45.2725 41.5053 44.8922C42.1159 44.7462 42.6435 44.1323 42.4525 43.3196C42.3142 42.7323 41.6394 42.1765 40.8664 42.4113Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.7309 38.6745L25.1983 43.3259L26.1137 43.2457C26.1173 42.7995 25.7059 38.7502 25.6188 38.5571L24.9448 38.6099C24.8213 38.6316 25.0082 38.5886 24.8581 38.6279L24.7305 38.6741L24.7309 38.6745Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.0879 13.2939C23.1259 13.3745 23.1591 13.4395 23.2118 13.4653C23.4036 13.5585 22.9975 13.3532 23.395 13.4542L23.4891 13.7303L23.3566 13.7168C23.4147 13.9548 23.5169 14.1556 23.6118 14.3168L24.0024 14.8738C23.8973 14.5094 23.7247 14.4763 23.6547 14.0882C24.0883 14.3475 23.8376 14.8296 24.4101 14.927C24.33 14.6661 24.2306 14.6272 24.1758 14.3266L24.3459 14.502C24.395 14.572 24.4265 14.6431 24.4707 14.7299C24.5615 14.9069 24.6314 15.0521 24.7537 15.1765L24.6069 14.7712C24.9226 15.0804 25.4171 16.1253 25.6641 16.5936C25.8236 16.8963 25.9851 17.2296 26.1622 17.5183C26.3688 17.8553 26.5213 18.1081 26.7185 18.4062C26.496 16.4177 26.3144 16.7592 25.6477 15.5887C25.3913 15.1384 25.1983 14.9961 25.1954 14.691C25.2056 14.7004 25.2212 14.7012 25.2261 14.72L25.4269 14.9973C25.4985 15.129 25.5594 15.2345 25.6244 15.3581C25.7684 15.6325 25.8915 15.8096 26.0571 16.021C25.8898 15.3294 25.0396 14.064 24.5177 13.563C23.9042 12.9741 23.9962 12.6166 23.0883 13.2943L23.0879 13.2939Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.0628 28.6987C27.012 29.1764 26.9204 28.9211 26.7151 29.2397L26.5131 29.4528C26.5053 29.4598 26.493 29.4688 26.4857 29.4761L26.3564 29.6913C26.2202 29.8749 26.1613 29.7718 26.0521 30.0078C25.9188 30.2966 25.909 30.524 25.6562 30.6622C25.7299 30.7309 25.9008 30.8348 26.0014 30.8082C26.0832 30.7865 26.019 30.7035 26.2947 30.7031L26.1065 30.479C26.3744 30.5023 26.3065 30.4917 26.572 30.418L26.6938 30.3812C26.5642 30.3174 26.4399 30.2319 26.3045 30.1898C26.4157 30.1088 26.2321 30.1076 26.5049 30.1465C26.554 30.1534 26.6071 30.2013 26.7388 30.2229L26.4779 29.9857L26.9384 30.1064C26.8329 29.9551 26.7609 29.9559 26.6889 29.8254C26.8542 29.8504 26.7985 29.8569 26.9417 29.9105C27.0832 29.7428 26.9691 29.7469 27.2243 29.735C27.1478 29.6471 27.1368 29.6442 27.0734 29.5404C27.1928 29.5285 27.383 29.396 27.4038 29.3641C27.5388 29.1584 27.34 29.1477 27.6705 29.0639C27.6762 29.0622 27.6934 29.061 27.7028 29.0549C27.6578 28.8905 27.7085 28.9571 27.6873 28.7363C27.7768 28.7539 27.8746 28.7985 27.9699 28.7334L27.7564 28.6377C27.7625 28.6385 27.7834 28.6173 27.7891 28.6279L28.0648 28.4316C28.1384 28.3768 28.0611 28.4606 28.131 28.387C28.3024 28.2075 28.1584 27.9269 28.1556 27.8803C28.1498 27.7817 28.2374 27.7003 28.2083 27.4832C27.8002 27.9821 28.1318 27.2791 27.5781 28.0611C27.5715 28.07 27.5629 28.0823 27.5564 28.0909L27.3343 28.4291C27.1253 28.7985 27.1495 28.6524 27.0623 28.6982L27.0628 28.6987Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.1223 43.2027L21.5281 43.2788C21.5006 43.6735 21.3685 43.8591 21.0324 43.954L20.9902 44.4256C21.9603 44.3307 22.1861 43.1941 22.1481 42.2019L21.2303 42.1013L21.1223 43.2031V43.2027Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M40.6562 44.4484L40.8665 44.4611L40.8775 43.7138L41.2448 43.7171L41.6996 44.4627L41.9356 44.459L41.5024 43.7621C41.617 43.6635 41.8129 43.6586 41.9086 43.5114C42.0149 43.3474 41.9953 43.0852 41.8534 42.9486C41.6566 42.7589 40.9536 42.7789 40.6612 42.8255L40.6562 44.448V44.4484Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.2013 19.9443C14.0528 19.9701 14.1637 19.7688 14.0671 19.995C14.0675 20.348 14.016 20.2518 13.9551 20.5627C14.7354 20.2187 14.2361 20.2858 14.5407 20.0613C14.616 20.0056 14.5493 20.0559 14.6409 20.0089L14.7784 19.9402C15.0708 20.0797 15.2397 20.2486 15.4884 20.4036C15.764 20.5754 16.2446 20.6841 16.025 20.1226C15.7665 20.0854 15.8401 20.2285 15.5575 20.1835C15.555 19.9831 15.6483 19.8445 15.5951 19.7234C15.452 19.3954 15.4974 19.7819 15.3383 19.4437L15.1293 19.5116L15.1068 19.3296C15.0802 19.3312 14.9718 19.3631 14.9657 19.3635C14.8761 19.3688 14.9497 19.4093 14.7068 19.2588C14.5923 19.1881 14.7195 19.2212 14.5702 19.1873C14.3044 19.4887 14.2483 19.3897 14.2013 19.9443Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.8672 18.8757C15.1322 19.2446 15.8079 18.8949 16.1109 20.1387C16.1665 20.3673 16.1224 20.3064 16.2798 20.3972C16.398 20.4744 16.7113 20.4528 16.8262 20.4029C16.9121 20.1882 16.823 20.0172 16.7105 19.9088C16.5354 19.9616 16.6864 19.9554 16.6111 20.0974L16.2262 20.1571C16.2847 19.8557 16.414 19.7824 16.7105 19.6978C16.6287 19.4773 16.7129 19.7056 16.5706 19.5399L16.4782 19.4225C16.4684 19.4148 16.4332 19.3923 16.4209 19.3845L16.3534 19.3465C16.1158 19.2066 16.0308 19.1776 16.162 19.0279C15.8128 19.0041 15.6439 18.7481 15.3555 18.8021L15.4042 18.6377C14.8676 18.7252 14.9412 18.6299 14.8672 18.8757Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.2049 41.9239L19.3093 41.7468L19.0508 42.8482L19.9542 43.04L20.2049 41.9239Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.7153 37.8525C35.8269 37.9834 35.9492 38.0987 36.0731 38.2443C36.2347 38.4337 36.2539 38.4827 36.4588 38.6529C36.6596 38.5196 36.9622 38.2472 37.1312 38.0631L36.3954 37.2214C36.2236 37.4165 35.9013 37.6051 35.7148 37.8529L35.7153 37.8525Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.6935 23.0484C15.7683 22.9232 16.0473 22.6075 16.1462 22.538C15.99 22.2194 16.0845 22.2431 15.8309 21.9805C15.8784 21.7294 15.898 21.7638 15.9916 21.5842C15.514 21.7805 15.0731 22.0554 14.916 22.5032C15.0575 22.4316 15.1688 22.3245 15.2604 22.2116C15.1994 22.4378 15.0821 22.4038 14.9913 22.6934C14.9974 22.6975 15.0101 22.6914 15.0117 22.6991C15.0506 22.8893 14.9586 22.5282 15.1684 22.8648L15.1982 22.9138C15.2996 23.0553 15.2436 22.9241 15.4166 23.0251C15.5966 23.1302 15.487 23.0095 15.5258 23.1858C15.6399 22.9862 15.5356 23.0946 15.6931 23.0488L15.6935 23.0484Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.6413 30.5414C29.5914 30.3701 29.5852 30.368 29.4903 30.2253C29.4957 30.2151 29.5087 30.1897 29.5116 30.1971C29.5251 30.2302 29.7153 29.9456 29.6204 29.7848C29.4368 29.645 29.2519 29.6707 28.9685 29.6715L28.9558 30.5504C29.2499 30.5251 29.1623 30.5149 29.1607 30.177C29.3096 30.2756 29.3214 30.3729 29.4347 30.5333L29.6404 30.541L29.6413 30.5414ZM29.0331 29.3452C28.0491 29.6237 28.4458 31.22 29.5636 30.8641C30.4654 30.5774 30.1684 29.0233 29.0331 29.3452Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M40.8839 43.5451C41.1951 43.5447 41.7056 43.62 41.7485 43.2977C41.8037 42.8846 41.1976 42.9774 40.877 42.9774L40.8839 43.5451Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.8604 27.6308L26.8592 27.6296C26.9299 27.5948 26.889 27.6145 26.8604 27.6308ZM26.8665 27.637C26.8248 27.6525 26.8395 27.6427 26.8604 27.6308L26.8665 27.637ZM23.0994 32.8299C23.2675 32.7297 23.1975 32.7624 23.2814 32.6569C23.3828 32.5288 23.4163 32.5861 23.5591 32.492L23.8421 32.2646C23.849 32.2569 23.8584 32.245 23.865 32.2368L24.2376 31.7972C24.3832 31.6618 24.3513 31.8295 24.4993 31.6708L24.4666 31.3964L24.6969 31.3244L24.5492 31.2168C24.9136 31.0696 24.4167 31.0356 24.9668 31.0389C24.8355 30.8074 24.86 30.9628 24.9034 30.6647L25.2273 30.7465L25.0375 30.5023C25.0437 30.5076 25.1038 30.4913 25.114 30.4864C25.1897 30.4504 25.1815 30.4516 25.211 30.4287L25.0073 30.2843C25.1312 30.178 25.2384 30.2651 25.123 30.0353C25.287 30.0582 25.2613 30.1068 25.402 30.0316C25.3087 29.969 25.211 29.9138 25.1337 29.8177C25.2142 29.7731 25.2662 29.832 25.3602 29.7608L25.2191 29.5878L25.5954 29.6516L25.2564 29.3972L25.8118 29.5645C25.7422 29.3727 25.5725 29.3469 25.3623 29.2676C25.3725 29.2594 25.3913 29.2382 25.397 29.2496L25.548 29.2218C25.5639 29.223 25.7197 29.2643 25.7766 29.2729C25.768 29.2627 25.7541 29.2349 25.7496 29.2435L25.5774 29.0844C25.5013 29.0108 25.5549 29.0811 25.4891 28.9891C25.7345 29.0525 25.7889 29.1641 26.0502 29.1285C25.9888 29.0946 25.9246 29.0414 25.8383 28.9944L25.6392 28.875C25.5492 28.796 25.6273 28.8881 25.5529 28.778L26.0416 28.9126C25.9488 28.758 26.0056 28.8533 25.9107 28.7588C25.8019 28.6509 25.8539 28.7572 25.7844 28.6108L26.1737 28.7044L26.0359 28.5126L26.3729 28.5498C26.2874 28.457 26.15 28.3355 26.0723 28.2361L26.4228 28.3089L26.3107 28.0893L26.6318 28.1924C26.5835 28.0259 26.5524 28.0517 26.4805 27.9024L26.8305 27.9952C26.7676 27.8051 26.7688 27.9155 26.6894 27.7384C26.9536 27.7347 26.8289 27.7699 27.0727 27.8451L26.8657 27.6357C26.8833 27.6292 26.9111 27.6178 26.9528 27.6006C26.9614 27.5969 26.9778 27.5908 26.9872 27.5867L27.0935 27.527C27.0334 27.4717 26.986 27.4403 26.9422 27.338L27.244 27.3237C27.1536 27.2112 27.1316 27.23 27.0338 27.12C27.2281 27.0329 27.1962 27.1413 27.3986 27.221C27.298 27.0006 27.1843 27.0206 27.0849 26.8288C27.4101 26.9213 27.3949 26.8669 27.6379 27.0534C27.5017 26.7781 27.3254 26.8452 27.1667 26.5262C27.3864 26.5462 27.3843 26.7552 27.6702 26.7315C27.579 26.6742 27.2686 26.3503 27.1999 26.217C27.4722 26.3258 27.5585 26.4718 27.8002 26.5736C27.6792 26.327 27.4686 26.2963 27.2829 26.0072C27.5655 26.0988 27.5348 26.2374 27.842 26.2869C27.7324 25.9953 27.3401 25.9409 27.2072 25.6497L27.5941 25.783C27.4444 25.5147 27.3103 25.5262 27.1328 25.3491C27.1328 25.2072 27.0829 25.3479 27.2878 25.2501L26.5541 24.8546C26.8199 24.797 26.8841 24.9303 27.1401 24.9716C27.0056 24.8456 26.7671 24.7295 26.5381 24.662C26.6383 24.6203 26.6154 24.6469 26.6894 24.6256C26.7029 24.6215 26.7177 24.6178 26.7316 24.6138L26.7741 24.5998L26.8604 24.5671C26.332 24.4686 26.3512 24.3066 26.2788 24.2833C26.0375 24.2567 25.586 24.1917 25.3598 24.1995C24.7967 24.2191 25.1557 24.5111 24.8081 24.3054C24.8715 24.6358 24.8114 24.4457 24.7688 24.4939C24.7635 24.4996 24.75 24.5078 24.7439 24.5136L24.5198 24.7287C24.5026 24.736 24.494 24.7377 24.4903 24.736C24.4883 24.7385 24.4858 24.7409 24.4834 24.7438L24.2261 24.7021L24.3627 25.0755C24.2098 25.0158 24.2179 24.9773 24.1083 24.8469C24.1145 25.0379 24.1537 25.0297 24.2188 25.1859L24.0429 25.1585L24.1047 25.3896C24.0298 25.3483 24.0028 25.3344 23.9337 25.2906C24.0253 25.7 23.9484 25.3532 23.8519 25.6518C23.8503 25.6563 23.8478 25.671 23.8462 25.6751L23.8376 25.6935C23.7353 25.871 23.8499 25.6673 23.7963 25.7282C23.6826 25.8567 23.7051 26.116 23.5812 26.253L23.3587 26.0301C23.409 26.3225 23.5088 26.2746 23.5133 26.5433C23.3358 26.4534 23.3619 26.1941 23.2863 26.4211C23.2253 26.6039 23.3296 26.7159 23.3664 26.9053C23.2315 26.8603 23.3443 26.9335 23.2343 26.8092L23.1439 26.6861C23.1386 26.6791 23.1288 26.664 23.1198 26.6542C23.1758 26.8963 23.2409 26.9581 23.155 27.1474C23.099 27.2709 23.2049 27.0824 23.13 27.2206C23.0785 27.3155 23.1215 27.2623 23.0397 27.2726C23.1264 27.5041 23.1345 27.376 23.1505 27.6452L23.2041 27.9253C23.2053 27.9347 23.2053 27.9498 23.2065 27.9593C23.2249 28.1065 23.6012 28.6108 23.7247 28.7482C23.7178 28.7527 23.7034 28.7457 23.701 28.7551C23.6674 28.8823 23.5803 28.6611 23.5493 28.8922C23.5468 28.9097 23.5623 29.0046 23.5677 29.0402L23.3427 28.9404L23.4981 29.2157L23.2249 29.0026C23.1219 28.8995 23.0806 28.8823 23.0106 28.7453C22.9877 28.8296 22.9607 28.967 22.9104 29.0398C22.7898 29.0042 22.775 29.0557 22.6871 28.9768C22.6515 28.9449 22.5333 28.7641 22.5207 28.7461C22.5489 28.9564 22.6785 29.1572 22.6147 29.2909C22.5239 29.2001 22.4724 29.1081 22.4364 28.9752C22.4356 29.1212 22.4589 29.1134 22.4695 29.2467L22.3963 30.2079C22.137 31.2598 22.0102 31.0127 21.9321 31.3142L22.0532 30.6258L21.834 31.2565C21.7624 31.1755 21.762 31.1612 21.7935 30.9911C21.8168 30.8655 21.8331 30.8369 21.8405 30.6856L21.6655 30.8782C21.6577 30.8855 21.6434 30.8982 21.6319 30.9076L21.7383 30.4009C21.6712 30.4905 21.5784 30.6786 21.4675 30.7142L21.5563 30.3571L21.3236 30.5575L21.4528 30.0618L21.2144 30.1563C21.2626 29.9719 21.2945 29.9715 21.3628 29.8001C21.2205 29.8696 21.2078 29.9187 21.1019 30.0365C21.0422 30.1032 21.0847 30.0672 21.0176 30.1187L21.1816 29.6794C21.0953 29.7604 21.0561 29.8197 20.9559 29.8745C20.8356 29.9404 20.825 29.8745 20.7379 30.0884C20.7281 30.0778 20.7158 30.0451 20.7109 30.0545L20.5129 29.8815C20.4336 29.8214 20.4823 29.879 20.4344 29.8165C20.6998 29.4598 20.551 29.6525 20.7444 29.661L20.8495 29.6615C21.0311 29.6512 21.0683 29.5801 21.1743 29.4091C21.1362 29.2946 21.1407 29.3641 21.0892 29.2966L21.0446 29.239C20.9072 29.041 20.8847 28.7895 20.7931 28.5911L20.7612 28.4734C20.7318 28.3384 20.4275 28.0595 20.3281 27.931L20.2271 27.7756C20.2213 27.7658 20.2136 27.7527 20.2082 27.7429C20.1093 27.5544 20.1571 27.6165 20.2001 27.3953C19.9338 27.4525 20.1633 27.5572 19.8508 27.63C19.933 27.32 20.025 27.4276 20.1383 27.1564C19.9265 27.257 20.077 27.2075 19.942 27.3008C19.7858 27.4088 19.9702 27.3814 19.6982 27.3805C19.722 27.0542 19.9195 27.1368 19.9813 26.763C19.9719 26.754 19.9547 26.7298 19.9498 26.7393L19.7187 26.502C19.6684 26.3986 19.6148 26.217 19.585 26.1368C19.3473 26.2006 19.2508 26.3507 19.0574 26.4415L19.2205 26.1454L18.933 26.3119C19.0099 26.0104 19.0999 26.1176 19.2353 25.8653L18.8778 26.08C18.9649 25.8665 19.0116 25.8558 19.0958 25.6972C18.8709 25.7749 18.9347 25.889 18.6979 25.9884C18.7167 25.579 19.2398 25.7078 19.0009 25.327C18.8001 25.3884 18.7343 25.5278 18.5666 25.6195C18.5834 25.2931 19.1768 25.3323 18.8639 24.8146L18.6067 24.3994C18.5445 24.3332 18.3273 24.2992 18.5281 24.053L18.331 24.1062C18.423 23.786 18.241 23.7778 18.2721 23.6641C18.2758 23.6514 18.3445 23.5443 18.3645 23.505L18.185 23.4543C18.2373 23.0134 18.1281 23.1414 18.0664 22.8666C18.0263 22.6895 18.095 22.7312 18.0423 22.6224C17.976 22.4854 17.9813 22.6433 17.8599 22.4179L18.3907 22.3766L18.5797 22.0478C18.3245 22.0625 18.2676 22.112 18.1089 21.9598C18.2357 21.9042 18.223 21.941 18.3138 21.901C18.5101 21.8142 18.4324 21.8061 18.5028 21.7341L18.6934 21.6196C18.9056 21.528 18.803 21.6323 18.8942 21.4752C18.4995 21.5815 18.6193 21.5333 18.542 21.4543L18.9298 21.3271C18.8005 21.2392 18.5866 21.3022 18.6414 21.1362C18.6696 21.0511 18.8917 20.9946 19.0009 20.9492L18.9048 20.8372L19.1837 20.7227L18.976 20.6613C18.9703 20.6597 18.9543 20.6585 18.9453 20.6535C19.0525 20.5386 19.0889 20.5227 19.1077 20.4L19.1449 20.2826C19.1547 20.2311 19.1567 20.2883 19.1428 20.1804L19.0909 19.6331C19.0979 19.4303 19.1187 19.3113 18.9735 19.1857L18.6287 18.9354C18.4439 18.7452 18.576 18.9096 18.596 18.6242C18.3515 18.7415 18.5527 18.7796 18.3089 18.6577C18.2071 18.6066 18.0607 18.5096 17.9969 18.4512C17.8823 18.3469 17.8177 18.2663 17.8251 18.1354C17.8284 18.0798 17.8378 18.0716 17.8451 18.0757C17.841 18.0675 17.8357 18.0561 17.8284 18.0393C17.7899 17.9906 17.6991 17.9735 17.666 17.926C17.3609 18.1457 17.4963 18.67 17.6615 18.888C18.0374 19.3832 18.3367 19.1354 18.3964 19.6352C18.4365 19.9705 18.2946 19.9828 18.0954 20.357L18.0607 20.4237L18.0431 20.4581C17.8644 20.8192 17.9641 20.6675 17.9547 20.8143C17.9359 21.1112 17.6194 21.0781 17.3785 21.2237C17.1908 21.337 17.2468 21.4224 17.2431 21.4388L17.221 21.5308C17.1711 21.6216 17.0153 21.6715 16.9327 21.7762C16.9335 21.7893 16.9327 21.8065 16.9302 21.8286C16.9163 21.95 16.8824 21.9627 16.7793 22.0645C17.127 21.8768 17.0431 22.02 17.0738 22.0425C16.9658 22.0969 16.8914 22.1782 16.7875 22.2568C16.7957 22.2572 16.8971 22.2326 16.9764 22.2817L16.8088 22.4314C16.8129 22.4306 16.83 22.4208 16.8341 22.4314C16.8382 22.4425 16.8591 22.4355 16.8644 22.4367L17.0693 22.4874L16.8709 22.5946L17.0632 22.703C16.9585 22.7905 16.9944 22.7529 16.9302 22.8416C17.1629 23.0678 17.0402 23.0318 17.12 23.1717C17.1478 23.2208 17.2771 23.3357 17.2693 23.4457C17.2582 23.5995 17.0292 23.6436 17.3617 23.8596C17.2059 24.0395 17.2938 23.9684 17.2762 24.1217C17.2537 24.3181 17.2255 24.2134 17.1707 24.4313C17.421 24.3176 17.183 24.3258 17.4807 24.2604C17.4329 24.3696 17.3932 24.4211 17.3404 24.5107C17.484 24.4309 17.4038 24.4142 17.558 24.5037C17.4411 24.6211 17.2439 24.9667 17.0443 25.0109C16.7961 25.0657 17.0263 25.0387 16.8112 24.9385L16.9895 24.6285C16.9286 24.5954 16.994 24.5581 16.7086 24.6461C16.7605 24.4898 16.7871 24.5176 16.7564 24.4179L16.6493 24.2289C16.4783 23.9451 16.6022 23.9721 16.5352 23.6751C16.5 23.5209 16.3883 23.3811 16.3421 23.2113C16.3188 23.1259 16.3118 23.0015 16.273 22.9226C16.2607 22.8977 16.2268 22.8547 16.2076 22.8355C16.1249 22.7525 16.1409 22.7864 16.0849 22.7476L15.6922 23.0457L15.5781 23.3373L15.7867 23.222C15.8223 23.3005 15.7933 23.3128 15.7479 23.4162C16.0059 23.2936 15.8988 23.3332 15.9433 23.4694L15.9204 23.7079L16.0595 23.7353C15.9507 23.9872 15.9425 23.9958 16.0055 24.2101L16.1847 24.99C16.2125 25.2133 16.2509 25.1405 16.3184 25.3041C16.3274 25.3262 16.4791 25.1949 16.3016 25.5307L16.5061 25.4338C16.473 25.6391 16.5368 25.4918 16.5286 25.6882C16.5282 25.6959 16.5249 25.7123 16.5245 25.7201C16.5086 25.9164 16.6697 26.2836 16.5495 26.6055L16.7392 26.4718C16.7396 26.7253 16.6542 26.6562 16.6349 26.8309L16.7969 26.6975L16.6664 27.0636C16.8276 27.1474 16.6914 26.9969 16.8538 27.0664L16.7176 27.5225C16.8509 27.3675 16.8153 27.2538 16.9695 27.1368C17.075 27.3486 16.8202 27.4812 16.8231 27.7638C16.9204 27.6112 16.8848 27.5589 17.0492 27.4901L16.9343 27.9192C17.0537 27.756 17.0161 27.747 17.1928 27.6693L17.0824 27.9838C17.0852 27.9875 17.0979 27.9846 17.1 27.9936C17.1204 28.0791 17.1315 27.9903 17.212 28.0333L17.0807 28.3408C17.1372 28.3789 17.1584 28.275 17.2582 28.3384L17.1683 28.5956C17.2693 28.65 17.1449 28.5944 17.2325 28.5932L17.3049 28.592C17.3081 28.592 17.322 28.5891 17.3294 28.5932L17.2161 28.8476C17.2251 28.8517 17.2423 28.8423 17.2451 28.8533C17.2513 28.8762 17.3936 28.8214 17.3392 29.093C17.4104 29.0157 17.4276 28.9637 17.4999 29.0005L17.4096 29.3065C17.473 29.3294 17.4231 29.3494 17.5548 29.221L17.4198 29.9032L17.6402 29.4705C17.7036 29.7179 17.5441 29.9195 17.5507 30.1968C17.5969 30.0594 17.776 29.8021 17.801 29.6868L17.7093 30.2189C17.8361 30.115 17.8811 29.9866 17.9703 29.87L17.8725 30.324L18.1551 30.4258L18.0778 30.832L18.2132 30.7731L18.1543 31.1649C18.194 31.0377 18.2357 31.0115 18.3196 30.9448L18.2713 31.2913C18.3416 31.324 18.3236 31.3158 18.4169 31.2614C18.4251 31.2565 18.4394 31.2414 18.4517 31.2328C18.4189 31.8107 18.5343 31.1653 18.54 31.7829C18.5903 31.7428 18.5678 31.7587 18.614 31.717L18.7069 31.6344C18.7105 31.7931 18.7232 31.787 18.7355 31.7972L18.8541 31.8L18.8022 32.1105C19.0234 31.9514 19.0709 32.0184 19.0831 32.3436L19.1563 32.283C19.2165 32.2393 19.1805 32.2601 19.234 32.2311L19.2569 32.5702C19.3903 32.4495 19.2909 32.4794 19.3821 32.526L19.4091 33.0777C19.4692 32.9607 19.4439 32.8744 19.5097 32.7685L19.5747 33.0499C19.7469 32.9456 19.6079 32.9579 19.7248 32.9706L19.6995 33.3153L19.8868 33.1235C19.8622 33.5165 19.953 33.31 20.052 33.6511C20.1044 33.8323 20.108 33.9648 20.2651 34.0994C20.4042 34.2184 20.5772 34.4012 20.7575 34.4257C20.8017 34.4319 20.7857 34.4204 20.8876 34.4413C21.0193 34.4683 21.081 34.4948 21.2397 34.4944C21.6961 34.4928 22.4871 34.101 22.6078 33.6748C22.6986 33.3534 22.6577 33.3284 22.9448 33.3525C22.9542 33.1088 22.7513 33.0335 23.0985 32.8262L23.0994 32.8299Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.1699 29.8398V30.0182C29.5261 30.0182 29.5261 29.8398 29.1699 29.8398Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xtu4za\",\"data-framer-name\":\"Skinnyfit\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"24\" viewBox=\"0 0 128 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M72.5345 23.9207C72.5255 23.9342 72.524 23.9492 72.5315 23.9627H71.3243C71.3243 23.9477 71.3243 23.9342 71.3228 23.9192C71.7267 23.9192 72.1306 23.9192 72.533 23.9192L72.5345 23.9207Z\" fill=\"white\"/>\\n<path d=\"M127.232 8.30347C127.247 8.30347 127.26 8.30347 127.276 8.30497V9.33054C127.26 9.33054 127.245 9.33054 127.23 9.33054C127.23 8.98818 127.23 8.64582 127.23 8.30347H127.232Z\" fill=\"white\"/>\\n<path d=\"M127.232 8.30399C127.232 8.64634 127.232 8.9887 127.232 9.33106C127.121 10.4422 126.68 11.4077 125.897 12.202C124.64 13.4799 123.366 14.7397 122.098 16.0085C121.352 16.7563 120.61 17.5071 119.864 18.2549C119.305 18.8134 118.654 18.8134 118.098 18.2609C116.112 16.2923 114.123 14.3253 112.138 12.3552C111.219 11.4438 110.7 10.3491 110.647 9.04726C110.53 6.12071 112.834 3.82182 115.786 3.92993C116.945 3.97197 117.954 4.40593 118.819 5.17022C118.918 5.25731 118.965 5.26332 119.065 5.17172C120.028 4.31283 121.161 3.8969 122.451 3.9059C124.837 3.92392 126.932 5.78436 127.226 8.14632C127.232 8.19738 127.232 8.24993 127.235 8.30249L127.232 8.30399ZM125.002 8.83404C125.008 7.75892 124.37 6.79041 123.384 6.37598C122.375 5.95254 121.256 6.17177 120.478 6.94507C120.245 7.17631 120.016 7.40905 119.783 7.63879C119.29 8.1253 118.627 8.13581 118.13 7.65982C117.894 7.43308 117.663 7.20034 117.43 6.9721C116.832 6.38499 116.119 6.12221 115.281 6.2003C113.705 6.34595 112.605 7.86853 112.958 9.40764C113.101 10.0278 113.463 10.4948 113.907 10.9332C115.551 12.5504 117.182 14.1811 118.816 15.8103C118.912 15.9064 118.966 15.959 119.094 15.8313C120.81 14.106 122.535 12.3897 124.25 10.6644C124.749 10.1629 124.995 9.54578 125.002 8.83704V8.83404Z\" fill=\"white\"/>\\n<path d=\"M88.5923 12.8169C88.5923 14.3109 88.5923 15.805 88.5923 17.2991C88.5923 18.1459 88.0833 18.709 87.2379 18.8096C86.4631 18.9012 85.6988 18.2495 85.6703 17.4717C85.6643 17.3306 85.6628 17.1894 85.6628 17.0483C85.6583 14.8785 85.6658 12.7073 85.6462 10.5375C85.6387 9.7567 85.6357 8.97739 85.6357 8.19657C85.6357 8.04041 85.5922 7.98635 85.4345 7.99837C85.2573 8.01038 85.0772 8.00287 84.8985 8.00137C84.1041 7.99386 83.4675 7.3602 83.4615 6.56888C83.4555 5.75353 84.0651 5.11236 84.8714 5.08983C85.0576 5.08383 85.2438 5.07782 85.43 5.09134C85.5877 5.10335 85.6327 5.04929 85.6282 4.89313C85.6117 4.24596 85.6432 3.60178 85.8009 2.96812C86.2033 1.34643 87.3715 0.37342 89.0428 0.271314C89.3161 0.254797 89.5879 0.214254 89.8656 0.263806C90.6209 0.400448 91.1405 1.05063 91.0864 1.80741C91.0309 2.58973 90.4422 3.16633 89.6659 3.19186C89.4287 3.19937 89.1899 3.20237 88.9587 3.27144C88.8341 3.30748 88.753 3.37805 88.7109 3.50268C88.5533 3.97567 88.5593 4.46669 88.5473 4.9562C88.5443 5.0598 88.6073 5.07632 88.6929 5.07482C88.9242 5.07332 89.1554 5.07182 89.3851 5.07482C90.196 5.08683 90.8176 5.72049 90.8161 6.53284C90.8146 7.33017 90.169 7.98335 89.3746 7.99086C89.1584 7.99236 88.9422 7.99837 88.7275 7.98936C88.5983 7.98335 88.5653 8.0314 88.5653 8.15453C88.5728 9.45488 88.5743 10.7567 88.5788 12.0571C88.5788 12.3094 88.5788 12.5631 88.5788 12.8154C88.5833 12.8154 88.5878 12.8154 88.5923 12.8154V12.8169Z\" fill=\"white\"/>\\n<path d=\"M102.16 12.3036C102.16 11.0993 102.156 9.89507 102.165 8.69082C102.166 8.49862 102.108 8.45357 101.926 8.46108C101.681 8.47159 101.436 8.47609 101.19 8.44606C100.429 8.34996 99.8958 7.7118 99.9229 6.92197C99.9484 6.16669 100.534 5.57207 101.288 5.53903C101.51 5.52852 101.735 5.52402 101.957 5.53603C102.118 5.54504 102.16 5.48648 102.154 5.33332C102.111 4.11555 102.136 2.89628 102.133 1.67851C102.133 1.06887 102.5 0.54633 103.057 0.328603C103.632 0.103368 104.289 0.244515 104.701 0.682972C104.974 0.974275 105.09 1.32414 105.091 1.71905C105.094 2.90078 105.103 4.08251 105.096 5.26425C105.096 5.47597 105.16 5.52852 105.359 5.51801C105.632 5.50299 105.91 5.50149 106.178 5.57957C106.892 5.78529 107.338 6.44748 107.247 7.17724C107.165 7.85144 106.54 8.41453 105.839 8.44456C105.653 8.45207 105.467 8.45657 105.28 8.44456C105.142 8.43705 105.102 8.4821 105.105 8.62024C105.114 9.22988 105.112 9.83951 105.114 10.4491C105.12 12.1729 105.129 13.8967 105.132 15.6205C105.132 15.7512 105.133 15.8323 105.309 15.8503C106.067 15.9299 106.635 16.6026 106.6 17.3563C106.561 18.1807 105.967 18.7723 105.16 18.7888C103.563 18.8219 102.184 17.4885 102.175 15.8923C102.169 14.6956 102.175 13.4988 102.175 12.3036C102.169 12.3036 102.163 12.3036 102.157 12.3036H102.16Z\" fill=\"white\"/>\\n<path d=\"M72.5345 23.9215C72.1306 23.9215 71.7266 23.9215 71.3242 23.9215C70.605 23.8614 69.9233 23.6602 69.2701 23.3614C68.9833 23.2308 68.8436 22.8689 68.9397 22.5866C69.0433 22.2803 69.3572 22.0941 69.683 22.1526C69.7761 22.1692 69.8692 22.2052 69.9563 22.2427C71.8272 23.0581 73.9309 22.6887 75.3844 21.2517C76.3184 20.3282 76.7944 19.1915 76.8214 17.8747C76.8275 17.6089 76.8214 17.3416 76.7764 17.0383C76.7013 17.1224 76.6323 17.214 76.5512 17.2921C75.5691 18.2471 74.3979 18.8192 73.024 18.8507C70.8993 18.9002 69.2866 17.9678 68.201 16.1524C67.731 15.3656 67.5223 14.4977 67.5193 13.5787C67.5133 11.2528 67.4982 8.92685 67.4907 6.60093C67.4892 6.08289 67.9082 5.77507 68.3721 5.94775C68.6364 6.04685 68.7791 6.26308 68.7791 6.5739C68.7821 8.17156 68.7806 9.77073 68.7881 11.3684C68.7911 12.2078 68.7866 13.0486 68.8241 13.8865C68.9037 15.6539 70.3737 17.244 72.1321 17.4978C74.4069 17.8251 76.386 16.3896 76.7614 14.1253C76.862 13.5216 76.8184 12.909 76.8064 12.3009C76.8064 12.2423 76.7959 12.1822 76.7959 12.1237C76.7914 10.2647 76.7869 8.40731 76.7854 6.54837C76.7854 6.14595 77.0392 5.86666 77.4236 5.87417C77.7659 5.88018 78.0738 6.11142 78.0738 6.54687C78.0753 7.23759 78.0783 7.92981 78.0798 8.62053C78.0873 10.7978 78.0933 12.9766 78.1008 15.1538C78.1038 16.0608 78.1113 16.9677 78.1113 17.8747C78.1113 20.8733 75.8695 23.453 72.8888 23.8779C72.7717 23.8944 72.6531 23.9065 72.5345 23.92V23.9215Z\" fill=\"white\"/>\\n<path d=\"M15.4178 13.58C15.5214 13.5484 15.5634 13.4748 15.619 13.4193C18.0906 10.9462 20.5607 8.47163 23.0292 5.99555C23.2289 5.79584 23.4512 5.68022 23.729 5.77332C23.9767 5.8559 24.1479 6.02708 24.1914 6.29736C24.2335 6.55863 24.1073 6.75234 23.9317 6.92802C22.9481 7.91154 21.9646 8.89507 20.9826 9.8816C20.373 10.4927 19.7693 11.1099 19.1567 11.715C19.0381 11.8321 19.0246 11.9057 19.1357 12.0378C20.7348 13.9568 22.3295 15.8803 23.9242 17.8039C24.0052 17.9015 24.0878 17.9991 24.1494 18.1072C24.3086 18.388 24.2185 18.7784 23.9677 18.945C23.6914 19.1297 23.2875 19.0712 23.0788 18.8204C21.4691 16.8894 19.8594 14.9599 18.2482 13.0304C18.0485 12.7916 18.0996 12.7841 17.8774 13.0064C17.104 13.7797 16.3337 14.556 15.5574 15.3263C15.4598 15.4239 15.4193 15.52 15.4223 15.6581C15.4358 16.5425 15.4133 17.427 15.4418 18.3099C15.4568 18.7799 15.1941 19.0637 14.7841 19.0697C14.4012 19.0772 14.1234 18.7934 14.1234 18.3865C14.1189 16.981 14.1204 15.577 14.1159 14.1716C14.1039 10.2104 14.0904 6.24931 14.0784 2.28818C14.0784 1.9173 14.0694 1.54491 14.0724 1.17402C14.0754 0.791124 14.3427 0.513335 14.7045 0.505827C15.0769 0.496818 15.3652 0.776109 15.3803 1.15901C15.3803 1.18904 15.3803 1.21907 15.3803 1.2476C15.3878 3.17261 15.3938 5.09761 15.3998 7.02112C15.4058 9.14733 15.4118 11.272 15.4178 13.3983C15.4178 13.4553 15.4178 13.5124 15.4178 13.58Z\" fill=\"white\"/>\\n<path d=\"M37.6758 7.89176C37.9535 7.59295 38.1953 7.3542 38.4611 7.14098C41.5453 4.67991 46.2662 6.47879 46.9314 10.3633C47.065 11.1396 46.987 11.9205 47.017 12.6983C47.032 13.0842 47.017 13.4716 47.02 13.8575C47.026 15.3215 47.035 16.7855 47.0395 18.2496C47.0395 18.7195 46.7542 19.0033 46.3278 18.9658C46.0124 18.9388 45.7767 18.6985 45.7557 18.3847C45.7542 18.3547 45.7557 18.3246 45.7542 18.2961C45.7467 17.0618 45.7392 15.829 45.7347 14.5947C45.7301 13.4866 45.7256 12.3799 45.7241 11.2718C45.7211 8.97889 43.7706 7.159 41.4762 7.30915C39.3725 7.4473 37.7028 9.21764 37.7013 11.3258C37.7013 13.6668 37.7118 16.0092 37.7163 18.3502C37.7163 18.6865 37.5211 18.9313 37.2118 18.9913C36.8934 19.0544 36.6096 18.8982 36.491 18.6039C36.4595 18.5243 36.4595 18.4448 36.458 18.3637C36.4505 16.5573 36.443 14.7509 36.4385 12.946C36.4325 10.8724 36.428 8.79871 36.4189 6.72504C36.4189 6.50281 36.476 6.31211 36.6517 6.17247C36.8469 6.01631 37.0706 5.97426 37.3004 6.07937C37.5271 6.18148 37.6667 6.36467 37.6728 6.61843C37.6818 7.01935 37.6758 7.41877 37.6758 7.89026V7.89176Z\" fill=\"white\"/>\\n<path d=\"M53.9676 7.75007C54.364 7.3927 54.7469 7.05785 55.1809 6.78006C58.3882 4.72442 62.7368 6.73501 63.2443 10.5069C63.3194 11.0625 63.2938 11.6196 63.2998 12.1752C63.3224 14.1963 63.3149 16.2174 63.3179 18.24C63.3179 18.5628 63.1677 18.7851 62.8974 18.8812C62.6271 18.9773 62.3494 18.9022 62.1722 18.686C62.052 18.5388 62.028 18.3676 62.028 18.1844C62.028 16.3195 62.028 14.4531 62.0205 12.5881C62.019 12.031 62.0175 11.474 61.9875 10.9184C61.8854 9.05643 60.2922 7.45727 58.4333 7.26807C56.0037 7.02031 53.9601 9.00238 53.9766 11.3568C53.9932 13.6677 53.9886 15.9801 53.9916 18.2911C53.9916 18.5899 53.8475 18.8211 53.6103 18.9127C53.337 19.0178 53.0682 18.9547 52.8805 18.737C52.7739 18.6139 52.7318 18.4712 52.7318 18.3076C52.7318 17.3045 52.7303 16.3015 52.7273 15.2969C52.7213 13.0971 52.7138 10.8974 52.7063 8.69756C52.7033 8.02186 52.6988 7.34465 52.6958 6.66895C52.6958 6.38515 52.8039 6.16142 53.0682 6.03679C53.4436 5.8596 53.8655 6.07733 53.9421 6.48425C53.9616 6.58636 53.9661 6.68997 53.9661 6.79358C53.9691 7.11191 53.9661 7.43024 53.9661 7.74857L53.9676 7.75007Z\" fill=\"white\"/>\\n<path d=\"M4.90716 6.11379C6.06337 6.07475 7.09795 6.46215 8.07697 7.03275C8.30821 7.16789 8.53645 7.30753 8.76318 7.45018C9.12506 7.67992 9.23768 8.08985 9.03046 8.40968C8.82174 8.73252 8.42533 8.78507 8.05144 8.53882C7.49286 8.17093 6.93878 7.78953 6.30212 7.5643C5.11738 7.14386 3.96268 7.23846 2.85002 7.82107C2.56472 7.96972 2.32297 8.18144 2.11726 8.4322C1.41452 9.28509 1.56168 10.2746 2.49415 10.8768C3.15484 11.3032 3.89661 11.5284 4.66391 11.6486C5.72552 11.8137 6.7631 12.0405 7.74963 12.4894C8.54245 12.8513 9.15059 13.3889 9.49444 14.1892C10.0065 15.3784 9.82179 16.4776 8.96139 17.4371C7.98087 18.5302 6.71955 19.0558 5.26304 19.0993C3.37407 19.1564 1.75087 18.4476 0.288351 17.3125C-0.0389905 17.0587 -0.0870405 16.7073 0.141197 16.4145C0.361927 16.1322 0.746328 16.0962 1.07667 16.3364C1.88902 16.9266 2.75692 17.4101 3.73745 17.6533C4.96723 17.9581 6.15947 17.8951 7.26012 17.1953C7.56193 17.0031 7.84423 16.7854 8.07396 16.5061C8.60252 15.8634 8.60552 15.0526 8.09649 14.3979C7.60097 13.7628 6.92076 13.4369 6.17298 13.2162C5.31559 12.9639 4.42816 12.8528 3.56326 12.6351C2.85002 12.4549 2.18333 12.1786 1.57519 11.7597C0.208768 10.8137 -0.0329842 9.04935 1.02262 7.70845C1.66378 6.8931 2.53169 6.47867 3.51371 6.25644C3.97169 6.15283 4.43717 6.10027 4.90867 6.11379H4.90716Z\" fill=\"white\"/>\\n<path d=\"M93.8416 12.1519C93.8416 10.4431 93.8356 8.73434 93.8431 7.02406C93.8476 5.93693 94.9107 5.26273 95.9033 5.7132C96.3913 5.93543 96.6436 6.33634 96.7066 6.86039C96.7141 6.92646 96.7141 6.99403 96.7141 7.0601C96.7216 8.43403 96.7291 9.80946 96.7336 11.1834C96.7412 13.2345 96.7472 15.2857 96.7502 17.3353C96.7502 18.0876 96.2787 18.6747 95.5924 18.7888C94.6314 18.9495 93.8657 18.2918 93.8642 17.2993C93.8612 15.583 93.8642 13.8667 93.8642 12.1504C93.8566 12.1504 93.8476 12.1504 93.8401 12.1504L93.8416 12.1519Z\" fill=\"white\"/>\\n<path d=\"M28.9966 12.8514C28.9966 11.069 28.9966 9.28517 28.9966 7.50282C28.9966 7.19199 28.9471 6.88117 28.9966 6.57034C29.0477 6.25652 29.2789 6.0463 29.5837 6.02978C29.9246 6.01176 30.1979 6.19495 30.2775 6.50277C30.2985 6.58686 30.3 6.67846 30.3 6.76705C30.303 7.62895 30.3045 8.49085 30.3075 9.35274C30.3135 11.3799 30.321 13.4085 30.3285 15.4356C30.3315 16.3861 30.336 17.3366 30.339 18.2886C30.339 18.7375 30.0868 19.0153 29.6798 19.0183C29.2714 19.0213 29.0237 18.748 29.0237 18.2901C29.0237 16.4777 29.0237 14.6653 29.0237 12.8529C29.0162 12.8529 29.0071 12.8529 28.9996 12.8529L28.9966 12.8514Z\" fill=\"white\"/>\\n<path d=\"M96.7021 2.05119C96.7427 2.51217 96.6285 2.98517 96.2231 3.34254C95.7982 3.71643 95.3012 3.81854 94.7696 3.61733C94.232 3.41462 93.9167 3.0122 93.8431 2.4401C93.8011 2.11576 93.7996 1.78692 93.8431 1.46408C93.9452 0.734322 94.6074 0.202768 95.3402 0.250818C96.1165 0.301871 96.6916 0.894989 96.7021 1.65778C96.7036 1.7689 96.7021 1.88002 96.7021 2.0527V2.05119Z\" fill=\"white\"/>\\n<path d=\"M28.9665 2.71486C28.9665 2.61125 28.9605 2.50615 28.9665 2.40404C28.9905 2.06919 29.2428 1.81242 29.5626 1.7914C29.92 1.76738 30.2113 1.9791 30.2714 2.32746C30.3164 2.59173 30.3104 2.86202 30.2789 3.12629C30.2353 3.48517 29.9485 3.73743 29.6212 3.73743C29.3058 3.73743 29.0371 3.49417 28.98 3.1368C28.9575 2.99866 28.965 2.85601 28.959 2.71486C28.962 2.71486 28.9635 2.71486 28.9665 2.71486Z\" fill=\"white\"/>\\n<path d=\"M106.93 2.37475C106.355 2.36875 105.906 1.90626 105.913 1.32666C105.921 0.756066 106.397 0.284575 106.955 0.293584C107.536 0.302593 107.997 0.781593 107.985 1.3612C107.973 1.93179 107.505 2.38076 106.928 2.37475H106.93ZM107.841 1.34918C107.844 0.83715 107.455 0.430226 106.954 0.42422C106.466 0.416712 106.051 0.83715 106.051 1.34168C106.051 1.8447 106.434 2.23961 106.931 2.24562C107.442 2.25162 107.838 1.86272 107.841 1.35069V1.34918Z\" fill=\"white\"/>\\n<path d=\"M106.555 1.34238C106.555 1.1787 106.558 1.01503 106.555 0.851364C106.554 0.738746 106.603 0.686192 106.716 0.690696C106.82 0.695201 106.926 0.686192 107.027 0.70421C107.333 0.759768 107.456 1.06609 107.266 1.31084C107.206 1.38742 107.182 1.42496 107.267 1.50004C107.389 1.60515 107.296 1.79284 107.402 1.91297C107.408 1.91898 107.389 1.96402 107.381 1.96402C107.354 1.96402 107.323 1.95952 107.302 1.9445C107.236 1.90096 107.254 1.82438 107.242 1.76131C107.221 1.64869 107.188 1.54359 107.081 1.48202C106.851 1.34988 106.685 1.45049 106.673 1.71176C106.668 1.80336 106.739 1.97303 106.616 1.97153C106.507 1.97153 106.567 1.79585 106.558 1.69825C106.548 1.57962 106.555 1.461 106.557 1.34238H106.555ZM106.86 1.34538C107.114 1.34688 107.254 1.24778 107.251 1.0736C107.248 0.911426 107.12 0.822834 106.902 0.812323C106.748 0.804815 106.631 0.824336 106.679 1.01804C106.709 1.14417 106.555 1.38442 106.862 1.34538H106.86Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ejhq6n\",\"data-framer-name\":\"Deutsche Bank\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:135,svg:'<svg width=\"135\" height=\"22\" viewBox=\"0 0 135 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.76035 11.1991H3.00014V19.818H4.73C7.85589 19.818 8.88773 18.5738 8.88773 15.4175C8.91808 12.2613 7.70414 11.1991 4.76035 11.1991ZM5.33697 9.46924C9.00913 9.46924 11.1335 11.1384 11.1335 15.4479C11.1335 19.0593 9.52505 21.5479 5.27627 21.5479H0.966797V9.46924H5.33697Z\" fill=\"white\"/>\\n<path d=\"M13.9258 16.5106H17.8407C17.78 15.2056 17.2641 14.4772 15.9591 14.4772C14.7755 14.4772 14.1079 15.0538 13.9258 16.5106ZM17.7497 19.0295H19.6616C19.4188 20.3952 18.3263 21.7001 15.9288 21.7001C13.2278 21.7001 11.9531 19.8185 11.9531 17.3603C11.9531 14.811 13.2581 12.9294 15.9288 12.9294C18.8119 12.9294 19.7223 14.9021 19.7223 16.9961V17.9369H13.8954C14.0168 19.4847 14.6845 20.1827 15.9288 20.1827C17.3855 20.1827 17.6586 19.515 17.7497 19.0295Z\" fill=\"white\"/>\\n<path d=\"M26.5502 20.5469C26.0647 21.1538 25.2756 21.7001 23.8796 21.7001C21.8766 21.7001 20.8447 20.6379 20.8447 18.5742V13.1418H22.7567V18.0886C22.7567 19.2722 23.0602 20.122 24.3651 20.122C25.397 20.122 26.0343 19.3936 26.2164 18.8777C26.3378 18.5135 26.3681 18.1493 26.3681 17.6941V13.1418H28.2801V21.518H26.5806L26.5502 20.5469Z\" fill=\"white\"/>\\n<path d=\"M34.8962 21.4874C34.6534 21.5481 34.2285 21.5784 33.6823 21.5784C31.7096 21.5784 30.8599 21.1536 30.8599 18.7864V14.5983H29.2817V13.1416H30.8599V10.7744H32.7718V13.1416H34.8355V14.5983H32.7718V18.6347C32.7718 19.7879 33.0449 20.0914 34.1375 20.0914C34.5017 20.0914 34.8355 20.0307 34.8962 20.0003V21.4874Z\" fill=\"white\"/>\\n<path d=\"M37.5369 18.9985C37.5672 19.4841 37.7493 20.2428 39.1453 20.2731C40.3289 20.2731 40.7538 19.8179 40.7538 19.2413C40.7538 18.695 40.42 18.4522 39.722 18.2701L37.9011 17.8756C36.7175 17.6025 35.807 16.9651 35.807 15.5084C35.807 13.8696 37.1727 12.9895 39.0846 12.9895C41.3304 12.9895 42.4533 14.1427 42.5444 15.7209H40.6628C40.6021 15.2656 40.2682 14.4462 38.9329 14.4462C37.9921 14.4462 37.5672 14.8408 37.5672 15.387C37.5672 15.994 37.9618 16.2368 38.7205 16.3885L40.4807 16.7527C41.907 17.0562 42.6051 17.9059 42.6051 19.1806C42.6051 20.4856 41.6946 21.7602 39.1757 21.7602C36.6871 21.7298 35.7463 20.5766 35.6553 19.0288H37.5369V18.9985Z\" fill=\"white\"/>\\n<path d=\"M45.2754 17.3603C45.2754 19.0295 45.7913 20.1524 47.1873 20.1524C48.6137 20.1524 48.8565 19.2419 48.8868 18.5742H50.7988C50.6167 20.4862 49.4028 21.6698 47.1873 21.6698C44.0918 21.6698 43.3027 19.6364 43.3027 17.33C43.3027 15.0538 44.1221 12.9294 47.1873 12.9294C49.6456 12.9294 50.7077 14.2648 50.8291 16.025H48.8868C48.7958 15.4484 48.6137 14.4772 47.157 14.4772C45.9127 14.5076 45.2754 15.418 45.2754 17.3603Z\" fill=\"white\"/>\\n<path d=\"M53.6517 21.5479H51.7397V9.46924H53.6517V13.9912C54.1676 13.4449 54.9263 12.9593 56.292 12.9593C58.2343 12.9593 59.2055 14.1429 59.2055 15.9031V21.5479H57.2935V16.5101C57.2935 15.1444 56.7169 14.5981 55.7457 14.5981C54.8656 14.5981 54.2587 15.0837 53.9552 15.5389C53.7124 15.9334 53.6517 16.2976 53.6517 16.9046V21.5479Z\" fill=\"white\"/>\\n<path d=\"M62.1797 16.5106H66.0946C66.0339 15.2056 65.518 14.4772 64.213 14.4772C63.0294 14.4772 62.3618 15.0538 62.1797 16.5106ZM66.0036 19.0295H67.9155C67.6727 20.3952 66.5802 21.7001 64.1827 21.7001C61.4817 21.7001 60.207 19.8185 60.207 17.3603C60.207 14.811 61.512 12.9294 64.1827 12.9294C67.0658 12.9294 67.9762 14.9021 67.9762 16.9961V17.9369H62.1493C62.2707 19.4847 62.9384 20.1827 64.1827 20.1827C65.6394 20.1827 65.9125 19.515 66.0036 19.0295Z\" fill=\"white\"/>\\n<path d=\"M74.1672 16.0852V19.818H76.8986C78.4463 19.818 79.1443 19.3021 79.1443 17.9364C79.1443 16.5708 78.4463 16.0852 76.8986 16.0852H74.1672ZM76.504 11.1688H74.1672V14.3553H76.5647C78.1125 14.3553 78.5981 13.8698 78.5981 12.7469C78.5981 11.715 78.1125 11.1688 76.504 11.1688ZM72.1035 21.5479V9.46924H76.8682C79.6906 9.46924 80.7832 10.7439 80.7832 12.5648C80.7832 13.9001 80.0851 14.8409 79.1443 15.1444C80.2672 15.3265 81.3598 16.2369 81.3598 17.9668C81.3598 20.1822 80.2065 21.5479 77.2324 21.5479H72.1035Z\" fill=\"white\"/>\\n<path d=\"M87.5207 18.362V17.8157H85.6087C84.5162 17.8157 84.0609 18.2406 84.0609 19.0296C84.0609 19.6973 84.3644 20.1829 85.457 20.1829C86.5495 20.1829 87.2172 19.6366 87.4296 18.9993C87.5207 18.7869 87.5207 18.6351 87.5207 18.362ZM89.4023 21.5486H87.7331L87.6724 20.5774C87.1868 21.1844 86.3371 21.7307 84.9714 21.7307C83.3022 21.7307 82.1187 20.7595 82.1187 19.0903C82.1187 17.4819 83.3022 16.3893 85.6087 16.3893H87.5207V15.8127C87.5207 14.7809 86.9744 14.447 85.9729 14.447C84.7893 14.447 84.5162 14.963 84.4251 15.5092H82.4828C82.756 14.0222 83.7575 12.96 86.0032 12.96C88.3097 12.96 89.3719 13.8704 89.3719 15.9341V21.5486H89.4023Z\" fill=\"white\"/>\\n<path d=\"M92.8315 13.9918C93.3474 13.4455 94.1364 12.96 95.4718 12.96C97.4141 12.96 98.3852 14.1435 98.3852 15.9038V21.5486H96.4429V16.5107C96.4429 15.145 95.8663 14.5988 94.8952 14.5988C94.015 14.5988 93.4081 15.0843 93.1046 15.5396C92.8618 15.9341 92.8011 16.3286 92.8011 16.9356V21.5182H90.8892V13.1421H92.7101L92.8315 13.9918Z\" fill=\"white\"/>\\n<path d=\"M99.9331 21.5176H101.845V9.46924H99.9331V21.5176ZM105.244 13.1414L101.936 16.8439L105.578 21.5479H107.884L104.121 16.7832L107.429 13.1414H105.244Z\" fill=\"white\"/>\\n<path d=\"M113.074 21.5483H134.166V0.425781H113.074V21.5483ZM116.018 3.39993H131.222V18.6045H116.018V3.39993ZM125.729 5.49397L117.717 16.4801H121.511L129.523 5.49397H125.729Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-axfe5a\",\"data-framer-name\":\"Fiverr\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:76,svg:'<svg width=\"76\" height=\"24\" viewBox=\"0 0 76 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M68.8649 11.759H66.2812C64.6143 11.759 63.6975 13.0092 63.6975 15.1761V22.9272H58.6968V11.759H56.6132C54.9463 11.759 54.0295 13.0092 54.0295 15.1761V22.9272H49.0288V7.59176H54.0295V9.92542C54.863 8.09183 55.9465 7.59176 57.6133 7.59176H63.6975V9.92542C64.531 8.09183 65.6145 7.59176 67.2814 7.59176H68.9483L68.8649 11.759ZM47.862 16.4263H37.5272C37.7773 18.1766 38.8607 19.0934 40.611 19.0934C41.9445 19.0934 42.8613 18.5099 43.1947 17.5931L47.612 18.8433C46.5285 21.5104 43.8614 23.0939 40.611 23.0939C35.1936 23.0939 32.6932 18.8433 32.6932 15.1761C32.6932 11.5923 34.8602 7.34172 40.2776 7.34172C46.0284 7.34172 47.9453 11.6757 47.9453 14.9261C47.9453 15.6762 47.9453 16.0929 47.862 16.4263ZM43.1113 13.5092C43.028 12.1757 42.0279 11.0089 40.361 11.0089C38.7774 11.0089 37.8606 11.6757 37.5272 13.5092H43.1113ZM24.0254 22.9272H28.3593L33.8601 7.6751H28.8594L26.1923 16.593L23.5253 7.59176H18.5246L24.0254 22.9272ZM3.6892 22.9272H8.60655V11.759H13.3572V22.9272H18.2746V7.59176H8.60655V6.67496C8.60655 5.67482 9.35665 5.00807 10.4401 5.00807H13.3572V0.84082H9.69003C6.1062 0.84082 3.6892 3.09113 3.6892 6.34158V7.59176H0.855469V11.759H3.6892V22.9272Z\" fill=\"white\"/>\\n<path d=\"M71.9485 23.3438C73.6154 23.3438 75.0323 21.9269 75.0323 20.26C75.0323 18.5931 73.6154 17.1763 71.9485 17.1763C70.2816 17.1763 68.8647 18.5931 68.8647 20.26C68.8647 21.9269 70.2816 23.3438 71.9485 23.3438Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-116e4kb\",\"data-framer-name\":\"Elementor\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:145,svg:'<svg width=\"145\" height=\"24\" viewBox=\"0 0 145 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M91.1013 10.9986C91.1013 10.9986 89.868 11.2947 88.8247 11.5446L87.2387 11.9079C87.2344 11.9079 87.2281 11.9079 87.2241 11.9079C87.2241 11.4774 87.2552 11.0238 87.3578 10.6058C87.4892 10.0703 87.777 9.44448 88.278 9.16937C88.8225 8.87114 89.486 8.83544 90.062 9.06647C90.6589 9.30376 90.9321 9.8834 91.0493 10.4841C91.0826 10.6521 91.1035 10.8201 91.12 10.9902L91.1013 10.9986ZM95.2374 11.9079C95.2374 7.7434 92.6308 5.9541 89.3004 5.9541C85.536 5.9541 83.1777 8.57713 83.1777 11.9289C83.1777 15.5726 85.1852 17.9457 89.5069 17.9457C91.8443 17.9457 93.1673 17.5299 94.7404 16.7382L94.1417 14.0101C92.9417 14.5519 91.8252 14.8838 90.3356 14.8838C88.7013 14.8838 87.7708 14.2601 87.4182 13.0945H95.133C95.1956 12.7816 95.2374 12.4266 95.2374 11.9079Z\" fill=\"white\"/>\\n<path d=\"M56.4792 10.9986C56.4792 10.9986 55.2459 11.2947 54.2026 11.5446L52.6167 11.9079C52.6127 11.9079 52.6064 11.9079 52.602 11.9079C52.602 11.4774 52.6335 11.0238 52.7357 10.6058C52.8671 10.0703 53.155 9.44448 53.6559 9.16937C54.2004 8.87114 54.8643 8.83544 55.44 9.06647C56.0369 9.30376 56.3104 9.8834 56.4272 10.4841C56.4605 10.6521 56.4814 10.8201 56.4983 10.9902L56.4792 10.9986ZM60.6153 11.9079C60.6153 7.7434 58.0088 5.9541 54.6783 5.9541C50.9139 5.9541 48.5557 8.57713 48.5557 11.9289C48.5557 15.5726 50.5635 17.9457 54.8852 17.9457C57.2222 17.9457 58.5452 17.5299 60.1187 16.7382L59.5197 14.0101C58.32 14.5519 57.2035 14.8838 55.7135 14.8838C54.0796 14.8838 53.1487 14.2601 52.7961 13.0945H60.5109C60.5736 12.7816 60.6153 12.4266 60.6153 11.9079Z\" fill=\"white\"/>\\n<path d=\"M46.936 2.89453H43.1152V17.5281H46.936V2.89453Z\" fill=\"white\"/>\\n<path d=\"M96.042 6.3279H100.055L100.9 8.91526C101.428 7.63837 102.618 5.99609 104.727 5.99609C107.624 5.99609 109.195 7.47457 109.195 11.2842V17.5299H105.182C105.182 16.2279 105.184 14.9279 105.186 13.6258C105.186 13.0294 105.176 12.433 105.184 11.8365C105.19 11.2863 105.23 10.7172 104.938 10.2236C104.74 9.88972 104.416 9.64401 104.068 9.476C103.36 9.13578 102.592 9.14416 101.898 9.50958C101.726 9.59988 100.9 10.0493 100.9 10.2572V17.5299H96.8871V9.34996L96.042 6.3279Z\" fill=\"white\"/>\\n<path d=\"M112.229 9.26481H110.389V6.32883H112.229V4.49336L116.242 3.54199V6.32883H120.276V9.26481H116.242V12.5536C116.242 13.8451 116.862 14.4479 117.793 14.4479C118.744 14.4479 119.283 14.3219 120.088 14.0531L120.564 17.0919C119.468 17.5708 118.103 17.7997 116.716 17.7997C113.799 17.7997 112.227 16.4052 112.227 13.6982V9.26481H112.229Z\" fill=\"white\"/>\\n<path d=\"M127.784 14.6134C129.253 14.6134 130.121 13.5507 130.121 11.8454C130.121 10.1401 129.295 9.15938 127.846 9.15938C126.377 9.15938 125.53 10.138 125.53 11.9063C125.53 13.5738 126.356 14.6134 127.784 14.6134ZM127.826 5.8916C131.59 5.8916 134.34 8.26471 134.34 11.9483C134.34 15.6529 131.59 17.8811 127.784 17.8811C123.999 17.8811 121.309 15.592 121.309 11.9483C121.309 8.26471 123.978 5.8916 127.826 5.8916Z\" fill=\"white\"/>\\n<path d=\"M79.5824 6.29363C78.8728 5.99962 78.0693 5.89042 77.3014 6.0017C76.9111 6.05842 76.5295 6.17183 76.1747 6.34823C75.2021 6.83126 74.4448 7.93381 74.0376 8.91666C73.7707 7.7847 72.9922 6.76824 71.8548 6.29571C71.1455 6.0017 70.3421 5.89251 69.5742 6.00383C69.1838 6.06051 68.8019 6.17392 68.4474 6.35035C67.477 6.83126 66.7216 7.9296 66.3126 8.91036V8.83895L65.4945 6.33142H61.4814L62.3266 9.35348V17.5313H66.3126V10.2208C66.3272 10.1662 66.5044 10.0654 66.5359 10.0423C67.0032 9.70843 67.5521 9.36399 68.1362 9.32199C68.733 9.2779 69.3215 9.58242 69.6763 10.0591C69.7141 10.1116 69.7496 10.1641 69.7829 10.2187C70.0751 10.7123 70.0352 11.2814 70.029 11.8316C70.0228 12.4281 70.0312 13.0245 70.0312 13.6209C70.029 14.923 70.0268 16.223 70.0268 17.5251H74.0398V11.2814C74.0398 11.2499 74.0398 11.2184 74.0398 11.189V10.225C74.0482 10.1725 74.2317 10.0675 74.265 10.0444C74.7326 9.71051 75.2816 9.36608 75.8656 9.32408C76.4625 9.27999 77.051 9.58451 77.4058 10.0612C77.4435 10.1137 77.4787 10.1662 77.5124 10.2208C77.8042 10.7144 77.7647 11.2835 77.7584 11.8337C77.7522 12.4301 77.7606 13.0266 77.7606 13.623C77.7585 14.9251 77.7563 16.2251 77.7563 17.5271H81.7693V11.2814C81.7693 9.45008 81.5086 7.09166 79.5824 6.29363Z\" fill=\"white\"/>\\n<path d=\"M143.832 5.99609C141.722 5.99609 140.535 7.64049 140.005 8.91526L139.16 6.3279H135.146L135.992 9.34996V17.5278H140.005V9.9716C140.576 9.87083 143.679 10.4463 144.268 10.6626V6.01078C144.126 6.00239 143.982 5.99609 143.832 5.99609Z\" fill=\"white\"/>\\n<path d=\"M37.3599 10.9986C37.3599 10.9986 36.1267 11.2947 35.0833 11.5446L33.4974 11.9079C33.4932 11.9079 33.487 11.9079 33.4828 11.9079C33.4828 11.4774 33.5141 11.0238 33.6163 10.6058C33.7478 10.0703 34.0358 9.44448 34.5366 9.16937C35.0812 8.87114 35.7448 8.83544 36.3208 9.06647C36.9176 9.30376 37.191 9.8834 37.3078 10.4841C37.3412 10.6521 37.3621 10.8201 37.3789 10.9902L37.3599 10.9986ZM41.496 11.9079C41.496 7.7434 38.8895 5.9541 35.5591 5.9541C31.7945 5.9541 29.4365 8.57713 29.4365 11.9289C29.4365 15.5726 31.444 17.9457 35.7657 17.9457C38.1029 17.9457 39.4259 17.5299 40.9994 16.7382L40.4003 14.0101C39.2007 14.5519 38.0842 14.8838 36.5942 14.8838C34.9602 14.8838 34.0295 14.2601 33.6768 13.0945H41.3916C41.4542 12.7816 41.496 12.4266 41.496 11.9079Z\" fill=\"white\"/>\\n<path d=\"M12.1853 0.556641C5.85403 0.556641 0.722656 5.72083 0.722656 12.0926C0.722656 18.4622 5.85403 23.6285 12.1853 23.6285C18.5166 23.6285 23.648 18.4643 23.648 12.0926C23.6459 5.72083 18.5145 0.556641 12.1853 0.556641ZM9.32017 16.8977H7.41076V7.2854H9.32017V16.8977ZM16.9599 16.8977H11.2296V14.976H16.9599V16.8977ZM16.9599 13.0523H11.2296V11.1307H16.9599V13.0523ZM16.9599 9.207H11.2296V7.2854H16.9599V9.207Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hizgz9\",\"data-framer-name\":\"VShred\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:112,svg:'<svg width=\"112\" height=\"27\" viewBox=\"0 0 112 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.996\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.957031 0C3.76257 0 6.56811 0 9.37364 0C9.97391 1.59607 10.5746 3.19272 11.1756 4.78994C10.5903 4.80894 10.0048 4.82035 9.41926 4.82416C10.5657 7.36422 11.7214 9.89983 12.8863 12.431C14.0389 9.8939 15.1946 7.35829 16.3533 4.82416C15.7677 4.82035 15.1822 4.80894 14.597 4.78994C15.1827 3.19282 15.7681 1.59617 16.3533 0C19.174 0 21.9948 0 24.8155 0C20.8391 8.72835 16.8627 17.4567 12.8863 26.185C12.8787 26.185 12.8711 26.185 12.8635 26.185C8.91 17.4717 4.94119 8.75852 0.957031 0.0456185C0.957031 0.0304123 0.957031 0.0152062 0.957031 0Z\" fill=\"white\"/>\\n<path opacity=\"0.996\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M43.7016 0C45.8076 0 47.9138 0 50.0198 0C48.8631 2.56447 47.6998 5.1267 46.53 7.68672C47.6779 7.71712 48.8262 7.71712 49.9742 7.68672C51.1516 5.12661 52.3224 2.56435 53.4868 0C55.5928 0 57.699 0 59.8049 0C56.7159 6.73671 53.6366 13.473 50.5672 20.209C48.4687 20.2166 46.3703 20.209 44.2718 20.1862C45.4335 17.6233 46.6043 15.0649 47.7845 12.5109C46.6157 12.4919 45.4488 12.4957 44.2832 12.5223C43.1184 15.0779 41.9512 17.6325 40.782 20.1862C38.6761 20.209 36.5701 20.2166 34.4639 20.209C37.5342 13.4691 40.6135 6.73276 43.7016 0Z\" fill=\"white\"/>\\n<path opacity=\"0.997\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M61.949 0C66.6249 0 71.3008 0 75.9767 0C77.1404 0.0767123 77.5624 0.677355 77.2426 1.80193C77.1464 2.09056 77.0323 2.37186 76.9005 2.64587C75.4938 5.71753 74.0874 8.78915 72.6808 11.8608C71.8544 13.3556 70.5885 14.0399 68.883 13.9136C69.1711 16.0133 69.4676 18.1118 69.7726 20.209C67.6285 20.2166 65.4845 20.209 63.3404 20.1862C63.0222 18.0965 62.7106 16.0056 62.4052 13.9136C62.2321 13.9065 62.061 13.9141 61.892 13.9364C60.9315 16.017 59.9774 18.1002 59.0294 20.1862C56.9159 20.2128 54.8022 20.2166 52.6885 20.1976C55.7787 13.4662 58.8654 6.73365 61.949 0ZM66.0547 4.81275C66.929 4.80894 67.8035 4.81275 68.6778 4.82416C68.8231 4.83734 68.9522 4.87536 69.0655 4.9382C69.1834 5.0447 69.2366 5.17777 69.2252 5.33736C69.2245 5.4544 69.2053 5.56844 69.1682 5.6795C68.774 6.55773 68.371 7.43207 67.9593 8.30257C67.6771 8.78968 67.2551 9.06718 66.6934 9.1351C65.8266 9.1541 64.9599 9.15032 64.0931 9.1237C64.7473 7.68537 65.4012 6.24839 66.0547 4.81275Z\" fill=\"white\"/>\\n<path opacity=\"0.996\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.8527 0.0453709C33.1028 0.0415693 37.353 0.0453709 41.6031 0.0567755C40.238 3.042 38.8694 6.02621 37.4974 9.0094C36.3766 8.18886 35.2589 7.36395 34.1445 6.5346C34.3997 5.96715 34.6581 5.40073 34.92 4.83531C33.6123 4.80869 32.3047 4.80491 30.9968 4.82391C30.9633 4.89211 30.9405 4.96434 30.9284 5.0406C30.9569 5.2136 31.0064 5.38089 31.0766 5.5424C32.2474 7.70168 33.4185 9.86094 34.5893 12.0202C35.073 12.9079 35.149 13.8279 34.8173 14.7801C34.2882 15.9827 33.7407 17.1764 33.1751 18.3612C32.5766 19.4305 31.6678 20.0502 30.4494 20.2201C26.1617 20.2579 21.8735 20.2655 17.585 20.243C18.9589 17.2556 20.3236 14.2638 21.6792 11.2675C22.7817 12.0962 23.8842 12.925 24.9866 13.7537C24.7487 14.3247 24.4941 14.8911 24.2225 15.453C25.5379 15.472 26.8533 15.4682 28.1685 15.4416C28.233 15.1826 28.1874 14.9431 28.0316 14.7231C28.0391 14.7155 28.0469 14.7079 28.0544 14.7003C26.8108 12.4336 25.5791 10.1602 24.3593 7.88035C24.3668 7.87275 24.3746 7.86513 24.3821 7.85754C24.0445 7.02391 24.0484 6.19137 24.3935 5.35993C24.8344 4.38672 25.2756 3.41354 25.7165 2.44034C25.9943 1.81964 26.3859 1.28362 26.8911 0.83229C27.4687 0.380005 28.1226 0.117699 28.8527 0.0453709Z\" fill=\"white\"/>\\n<path opacity=\"0.996\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M80.1508 0.0467964C85.0548 0.0391934 89.9588 0.0467964 94.8628 0.0696057C94.1434 1.64896 93.4213 3.22659 92.6959 4.80252C89.8829 4.80633 87.0696 4.81774 84.2565 4.83674C83.8186 5.80784 83.3774 6.77723 82.9336 7.74492C85.2676 7.75251 87.6019 7.76013 89.936 7.76773C89.2056 9.35746 88.4757 10.9465 87.7463 12.5349C85.4122 12.5425 83.0779 12.5501 80.7439 12.5577C80.3007 13.5181 79.8598 14.4799 79.4209 15.443C82.2265 15.462 85.032 15.4734 87.8375 15.4773C87.112 17.0682 86.3821 18.6573 85.6479 20.2444C80.7363 20.2558 75.8246 20.2596 70.9131 20.2558C73.9921 13.5197 77.0714 6.78337 80.1508 0.0467964Z\" fill=\"white\"/>\\n<path opacity=\"0.997\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M111.422 2.39574C111.422 2.64664 111.422 2.89754 111.422 3.14844C111.342 3.72144 111.186 4.27645 110.955 4.81352C109.287 8.45495 107.614 12.0968 105.937 15.7391C105.499 16.4733 104.955 17.1233 104.306 17.6893C102.943 18.8709 101.388 19.711 99.6415 20.2098C99.6321 20.1993 99.6207 20.1917 99.6072 20.187C99.503 20.2171 99.3967 20.2361 99.2879 20.244C95.4332 20.263 91.5784 20.2592 87.7236 20.2326C90.8084 13.5063 93.8951 6.78136 96.9842 0.0577914C100.885 0.0425852 104.785 0.0425852 108.685 0.0577914C109.459 0.129055 110.135 0.417972 110.715 0.924543C111.108 1.34049 111.344 1.83089 111.422 2.39574ZM102.048 4.79071C102.458 4.7869 102.869 4.79071 103.28 4.80211C103.672 4.87392 103.904 5.0982 103.975 5.47499C104.016 5.82855 103.97 6.17069 103.838 6.5014C102.759 8.9404 101.65 11.3658 100.508 13.7776C100.205 14.3244 99.7904 14.7692 99.2651 15.1119C98.9636 15.2961 98.6365 15.4025 98.2843 15.4312C97.6151 15.4502 96.9461 15.4464 96.2771 15.4198C97.8865 11.8893 99.5021 8.36143 101.124 4.83633C101.434 4.82132 101.742 4.80611 102.048 4.79071Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})],speed:30,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6zqxv5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oEH0nUN7R\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"oEH0nUN7R\",layoutId:\"oEH0nUN7R\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3wvvm8\",\"data-framer-name\":\"ticker-2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1b3io5n\",\"data-framer-name\":\"Allianz\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:122,svg:'<svg width=\"122\" height=\"32\" viewBox=\"0 0 122 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.06 16.8896H6.9166L9.12286 9.6906L11.06 16.8896ZM4.76878 24.8289L6.18101 20.098H11.7659L13.0884 24.8289H18.2626L13.1222 6.78156C12.8264 5.71585 12.1806 5.22221 11.06 5.22221H3.74203V6.92663H4.35664C5.12145 6.92663 5.53512 7.22548 5.53512 7.81138C5.53512 8.1943 5.44901 8.51622 5.14606 9.39585L0 24.8289H4.76878ZM24.2212 24.8289V6.72466C24.2212 5.78198 23.6681 5.22221 22.7546 5.22221H18.2293V6.92663H18.5241C19.2858 6.92663 19.6087 7.25059 19.6087 8.02207V24.8289H24.2212ZM32.0671 24.8289V6.72466C32.0671 5.78198 31.5063 5.22221 30.598 5.22221H26.0732V6.92663H26.3603C27.1282 6.92663 27.4516 7.25059 27.4516 8.02207V24.8289H32.0671ZM40.115 7.01172C40.115 5.6974 39.1426 4.90234 37.471 4.90234C35.8261 4.90234 34.8203 5.69688 34.8203 7.01172C34.8203 8.34091 35.8261 9.12981 37.471 9.12981C39.1421 9.12981 40.115 8.34091 40.115 7.01172ZM40.0289 24.8289V11.6308C40.0289 10.6902 39.4671 10.1345 38.5557 10.1345H34.0893V11.8061H34.3523C35.1171 11.8061 35.4401 12.1578 35.4401 12.9236V24.8294L40.0289 24.8289ZM50.1319 17.7703V20.626C49.364 21.4211 48.4285 21.8968 47.636 21.8968C46.8081 21.8968 46.5185 21.4908 46.5185 20.3897C46.5185 19.3009 46.7492 18.8073 47.574 18.4864C48.1886 18.2193 48.9847 17.9841 50.1319 17.7703ZM43.9242 14.3399C45.4554 13.6049 47.1321 13.1922 48.4526 13.1922C49.691 13.1922 50.1319 13.6331 50.1319 14.9187V15.2467C48.2516 15.5435 47.6642 15.6645 46.6031 15.8983C45.9926 16.0423 45.4246 16.2161 44.8679 16.4539C43.0128 17.1967 42.1368 18.6289 42.1368 20.8311C42.1368 23.6243 43.3404 24.9734 45.8373 24.9734C46.7487 24.9734 47.5735 24.7986 48.3101 24.508C48.9539 24.222 49.3368 23.9816 50.2795 23.2465V23.451C50.2795 24.3604 50.7475 24.8289 51.662 24.8289H55.8633V23.2465H55.6562C54.8648 23.2465 54.5716 22.8907 54.5716 21.9542V14.9535C54.5716 11.2228 53.2772 9.9223 49.5398 9.9223C48.3372 9.9223 47.1618 10.0761 46.0192 10.339C44.8674 10.601 44.2769 10.8368 42.9021 11.5155L43.9242 14.3399ZM62.5574 24.8289V14.8936C63.3248 14.0401 64.1158 13.6551 65.0272 13.6551C66.0006 13.6551 66.2328 14.0401 66.2328 15.5174V24.8289H70.8181V14.8367C70.8181 12.5115 70.6479 11.7769 69.9103 10.9885C69.2921 10.3068 68.3525 9.95869 67.1432 9.95869C65.3481 9.95869 64.0855 10.5154 62.3893 12.1029V11.517C62.3893 10.6015 61.9116 10.1345 60.973 10.1345H56.6184V11.8061H56.8824C57.6472 11.8061 57.9737 12.1578 57.9737 12.9236V24.8294L62.5574 24.8289ZM84.4237 21.743H78.0151L84.131 13.165V10.132H74.5509C73.4621 10.132 72.9634 10.6307 72.9634 11.7205V14.3912H74.6667V14.1293C74.6667 13.4547 75.0189 13.1307 75.7499 13.1307H79.047L72.8721 21.803V24.8279H84.4237V21.743Z\" fill=\"white\"/>\\n<path d=\"M110.408 24.4562H114.727V11.518C114.727 10.2206 114.227 9.75156 112.961 9.75156H110.408V24.4562ZM108.491 24.4562V7.84466C108.491 6.52111 108.021 6.07617 106.734 6.07617H102.846V7.93078H103.079C103.967 7.93078 104.139 8.1307 104.139 9.19948V24.4567H108.491V24.4562ZM102.231 24.4562V9.75207H99.6734C98.4088 9.75207 97.9121 10.2211 97.9121 11.5185V24.4567H102.231V24.4562Z\" fill=\"white\"/>\\n<path d=\"M118.811 16.0112C118.811 23.3307 113.549 28.6526 106.318 28.6526C99.087 28.6526 93.823 23.3307 93.823 16.0112C93.823 8.68914 99.087 3.36674 106.318 3.36674C113.55 3.36726 118.811 8.72297 118.811 16.0112ZM121.368 16.0112C121.368 7.40352 114.93 0.958008 106.318 0.958008C97.7024 0.958008 91.2656 7.40352 91.2656 16.0112C91.2656 24.6291 97.7029 31.0593 106.318 31.0593C114.93 31.0593 121.368 24.6291 121.368 16.0112Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1iagh27\",\"data-framer-name\":\"Amazon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:95,svg:'<svg width=\"95\" height=\"30\" viewBox=\"0 0 95 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M59.0812 23.0219C53.6023 27.0604 45.6608 29.215 38.8234 29.215C29.2362 29.215 20.6053 25.6691 14.0756 19.7715C13.5626 19.3077 14.0223 18.6757 14.6379 19.0368C21.6846 23.1368 30.3977 25.6034 39.398 25.6034C45.4679 25.6034 52.1453 24.3476 58.285 21.7414C59.2126 21.3475 59.9882 22.3489 59.0812 23.0219Z\" fill=\"white\"/>\\n<path d=\"M61.3592 20.4164C60.6615 19.5217 56.7298 19.9937 54.965 20.203C54.4274 20.2687 54.3453 19.8008 54.8296 19.4643C57.961 17.2604 63.0994 17.8965 63.6986 18.6352C64.2978 19.3781 63.5426 24.5287 60.6 26.9871C60.1485 27.3647 59.7176 27.1636 59.9187 26.6629C60.5794 25.013 62.061 21.3152 61.3592 20.4164Z\" fill=\"white\"/>\\n<path d=\"M55.0878 3.90503V1.76269C55.0878 1.43846 55.3341 1.22095 55.6296 1.22095H65.2209C65.5287 1.22095 65.7749 1.44257 65.7749 1.76269V3.59722C65.7708 3.90503 65.5123 4.30723 65.0526 4.94337L60.0825 12.0394C61.9294 11.9942 63.8788 12.2692 65.5533 13.2131C65.9309 13.4266 66.0335 13.7385 66.0622 14.0463V16.3323C66.0622 16.6442 65.7175 17.0094 65.3563 16.8206C62.4055 15.2734 58.486 15.1051 55.2233 16.8371C54.8908 17.0176 54.542 16.6565 54.542 16.3446V14.1735C54.542 13.8247 54.5461 13.2296 54.8949 12.7001L60.653 4.44267H55.6419C55.3341 4.44267 55.0878 4.22515 55.0878 3.90503Z\" fill=\"white\"/>\\n<path d=\"M20.1004 17.2727H17.1824C16.9033 17.2521 16.6817 17.0428 16.6611 16.7761V1.80019C16.6611 1.50059 16.9115 1.26255 17.2234 1.26255H19.9444C20.2276 1.27485 20.4533 1.49238 20.4738 1.76325V3.72091H20.5272C21.2372 1.82892 22.571 0.946533 24.3686 0.946533C26.195 0.946533 27.3359 1.82892 28.1567 3.72091C28.8626 1.82892 30.4673 0.946533 32.187 0.946533C33.41 0.946533 34.7479 1.45134 35.5646 2.58407C36.4881 3.84403 36.2993 5.67446 36.2993 7.27917L36.2952 16.7309C36.2952 17.0305 36.0448 17.2727 35.7329 17.2727H32.819C32.5276 17.2521 32.2937 17.0182 32.2937 16.7309V8.79358C32.2937 8.16155 32.3511 6.58557 32.2116 5.98637C31.9941 4.98087 31.3415 4.69768 30.4961 4.69768C29.7902 4.69768 29.0514 5.16966 28.7518 5.92481C28.4522 6.67997 28.481 7.94403 28.481 8.79358V16.7309C28.481 17.0305 28.2306 17.2727 27.9187 17.2727H25.0048C24.7093 17.2521 24.4795 17.0182 24.4795 16.7309L24.4753 8.79358C24.4753 7.12321 24.7503 4.66485 22.6777 4.66485C20.5805 4.66485 20.6626 7.06165 20.6626 8.79358V16.7309C20.6626 17.0305 20.4123 17.2727 20.1004 17.2727Z\" fill=\"white\"/>\\n<path d=\"M74.0324 0.946533C78.3622 0.946533 80.7057 4.66485 80.7057 9.39278C80.7057 13.9606 78.116 17.5846 74.0324 17.5846C69.7805 17.5846 67.4658 13.8663 67.4658 9.23272C67.4658 4.57046 69.8093 0.946533 74.0324 0.946533ZM74.057 4.00409C71.9065 4.00409 71.771 6.93442 71.771 8.76075C71.771 10.5912 71.7423 14.4983 74.0324 14.4983C76.2938 14.4983 76.4005 11.3463 76.4005 9.42561C76.4005 8.16155 76.3471 6.65124 75.9654 5.45284C75.6371 4.4104 74.9845 4.00409 74.057 4.00409Z\" fill=\"white\"/>\\n<path d=\"M86.3209 17.2727H83.4152C83.1238 17.2521 82.8898 17.0182 82.8898 16.7309L82.8857 1.75094C82.9104 1.47596 83.1525 1.26255 83.448 1.26255H86.1526C86.4071 1.27485 86.6164 1.44723 86.6738 1.68117V3.97126H86.7272C87.5439 1.92331 88.6889 0.946533 90.7041 0.946533C92.0133 0.946533 93.2896 1.41851 94.1105 2.7113C94.8738 3.9097 94.8738 5.92481 94.8738 7.37356V16.8007C94.841 17.0633 94.5988 17.2727 94.3116 17.2727H91.3853C91.1186 17.2521 90.8969 17.0551 90.8682 16.8007V8.66635C90.8682 7.02882 91.057 4.63202 89.0419 4.63202C88.3319 4.63202 87.6793 5.1081 87.3551 5.83042C86.9447 6.74563 86.8913 7.65674 86.8913 8.66635V16.7309C86.8872 17.0305 86.6328 17.2727 86.3209 17.2727Z\" fill=\"white\"/>\\n<path d=\"M47.4418 10.1181V9.48604C45.3323 9.48604 43.1038 9.93749 43.1038 12.4246C43.1038 13.6845 43.7564 14.5382 44.8768 14.5382C45.6976 14.5382 46.4322 14.0334 46.896 13.2126C47.4706 12.203 47.4418 11.2549 47.4418 10.1181ZM50.3845 17.2305C50.1916 17.4029 49.9125 17.4152 49.695 17.3003C48.7264 16.4959 48.5541 16.1224 48.0205 15.3549C46.4199 16.9883 45.2872 17.4767 43.2105 17.4767C40.7563 17.4767 38.8438 15.9623 38.8438 12.9294C38.8438 10.5613 40.1283 8.9484 41.9547 8.16042C43.5388 7.46272 45.751 7.3396 47.4418 7.1467V6.76913C47.4418 6.07553 47.4952 5.25471 47.0889 4.65551C46.7318 4.11787 46.0506 3.89625 45.4514 3.89625C44.3391 3.89625 43.346 4.46672 43.1038 5.6487C43.0546 5.91137 42.8617 6.16993 42.599 6.18224L39.7672 5.87853C39.5291 5.82518 39.2665 5.63229 39.3321 5.26702C39.9847 1.83599 43.0833 0.801758 45.8577 0.801758C47.2777 0.801758 49.1327 1.17934 50.2532 2.25461C51.6732 3.58024 51.5377 5.3491 51.5377 7.27393V11.8213C51.5377 13.1879 52.1041 13.7871 52.6376 14.5259C52.8264 14.7885 52.8675 15.1046 52.6294 15.3016C52.0343 15.7982 50.9755 16.7216 50.3927 17.2387L50.3845 17.2305Z\" fill=\"white\"/>\\n<path d=\"M9.18794 10.1181V9.48604C7.07843 9.48604 4.8499 9.93749 4.8499 12.4246C4.8499 13.6845 5.50245 14.5382 6.62287 14.5382C7.44369 14.5382 8.17833 14.0334 8.64209 13.2126C9.21667 12.203 9.18794 11.2549 9.18794 10.1181ZM12.1306 17.2305C11.9377 17.4029 11.6586 17.4152 11.4411 17.3003C10.4725 16.4959 10.3002 16.1224 9.76662 15.3549C8.16602 16.9883 7.03329 17.4767 4.95661 17.4767C2.50235 17.4767 0.589844 15.9623 0.589844 12.9294C0.589844 10.5613 1.87443 8.9484 3.70075 8.16042C5.28494 7.46272 7.49705 7.3396 9.18794 7.1467V6.76913C9.18794 6.07553 9.24129 5.25471 8.83499 4.65551C8.47793 4.11787 7.79665 3.89625 7.19745 3.89625C6.08524 3.89625 5.09204 4.46672 4.8499 5.6487C4.80065 5.91137 4.60776 6.16993 4.3451 6.18224L1.51327 5.87853C1.27523 5.82518 1.01257 5.63229 1.07823 5.26702C1.73078 1.83599 4.82938 0.801758 7.60376 0.801758C9.02377 0.801758 10.8788 1.17934 11.9992 2.25461C13.4193 3.58024 13.2838 5.3491 13.2838 7.27393V11.8213C13.2838 13.1879 13.8502 13.7871 14.3837 14.5259C14.5725 14.7885 14.6136 15.1046 14.3755 15.3016C13.7804 15.7982 12.7216 16.7216 12.1388 17.2387L12.1306 17.2305Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tomrrx\",\"data-framer-name\":\"Johnson & Johnson\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:156,svg:'<svg width=\"156\" height=\"30\" viewBox=\"0 0 156 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M56.5047 11.1206C56.5047 10.8646 56.6788 10.7278 56.8975 10.7278C57.2675 10.7278 57.8261 11.1206 58.1411 11.9062C58.0282 11.9062 57.8582 11.9404 57.7442 11.9404C57.0705 11.9404 56.5047 11.6202 56.5047 11.1206ZM15.7473 11.1206C15.7473 10.8646 15.9141 10.7278 16.1421 10.7278C16.5028 10.7278 17.0386 11.1206 17.3495 11.9062C16.309 11.9062 15.7473 11.6813 15.7473 11.1206ZM23.6084 7.06106C23.6084 2.85847 24.4271 2.21279 24.681 2.21279C25.1329 2.21279 25.1868 2.49469 25.1868 4.10629C25.1868 5.76245 24.481 7.92956 23.6084 9.11935V7.06106ZM52.2244 11.2046C51.7393 11.8803 51.3465 12.84 51.3465 14.0764C51.3465 16.4446 52.6969 18.705 55.3211 18.705C57.8582 18.705 59.6356 16.7006 59.6356 13.9054C59.6356 13.0939 59.6045 12.982 59.5517 12.6452C60.1414 12.3882 60.6503 11.9954 61.0462 11.6813C61.383 11.4274 61.6349 11.2854 61.8359 11.2854C62.0888 11.2854 62.1997 11.4834 62.1997 11.8492V17.3794C62.1997 18.2801 62.4847 18.705 63.1863 18.705C63.833 18.705 64.288 18.2511 64.5399 17.7163C65.4726 15.771 66.8231 13.1779 67.4128 12.1933C67.5548 11.9674 67.6698 11.7943 67.7506 11.7943C67.8636 11.7943 67.9216 11.8803 67.9216 12.2451V16.6477C67.9216 17.8862 68.4875 18.705 69.7229 18.705C71.0225 18.705 71.6672 17.4603 72.8031 15.544C72.857 15.4289 72.8808 15.3471 72.8808 15.2652C72.8808 15.0113 72.6611 14.8672 72.4341 14.8672C72.1781 14.8672 72.0372 15.1232 71.1935 16.0508C71.0225 16.227 70.8567 16.4716 70.5437 16.4716C70.4318 16.4716 70.3458 16.3358 70.3458 16.1638V11.2284C70.3458 9.90287 69.753 9.36809 68.9922 9.36809C68.3735 9.36809 67.8636 9.622 67.3288 10.4117C66.3701 11.8244 65.3835 13.8277 64.8498 14.8372C64.7896 14.9553 64.7088 15.1232 64.6539 15.1232C64.5948 15.1232 64.5699 15.0361 64.5699 14.8372V11.2284C64.5699 10.1879 64.288 9.36809 63.1863 9.36809C62.0297 9.36809 61.439 10.1589 60.5933 10.7496C60.0574 11.1486 59.5797 11.4274 59.2149 11.5963C58.6479 10.1589 57.6064 9.43027 56.7327 9.45203C55.8559 9.48209 55.2361 10.021 55.2361 10.9237C55.2361 11.8492 55.803 12.4939 56.5606 12.7809C56.9814 12.9499 57.3773 12.982 57.9442 12.982C58.1142 12.982 58.2821 12.982 58.3909 12.9499C58.451 13.2307 58.4241 13.6308 58.4241 13.9396C58.4241 15.3232 57.6064 16.7006 56.086 16.7006C54.5034 16.7006 53.5768 15.1781 53.5768 13.4318C53.5768 12.1052 53.9696 11.0077 54.6132 10.249C54.8734 9.96506 55.0672 9.79302 55.0672 9.53288C55.0672 9.40126 54.8734 9.36809 54.7024 9.36809C53.6287 9.36809 52.4482 9.84898 51.6326 10.2698C50.5557 10.8346 49.2903 11.7684 48.2456 12.698C47.7388 11.5673 47.119 10.5807 46.8071 9.81685C46.6952 9.50697 46.6133 9.14734 46.3874 9.14734C46.1873 9.14734 46.1003 9.34425 45.9624 9.7329C45.4567 11.2284 42.7486 15.602 42.1568 16.1938C42.1008 16.2747 42.0189 16.3638 41.992 16.3638C41.9308 16.3638 41.8987 16.3358 41.8987 16.1638V11.2284C41.8987 9.90287 41.3639 9.36809 40.6364 9.36809C40.0135 9.36809 39.4798 9.62201 38.973 10.4117C38.0443 11.8244 36.9116 13.8826 36.3778 14.8952C36.2918 15.0693 36.2068 15.1232 36.1778 15.1232C36.1498 15.1232 36.127 15.0113 36.127 14.8372V11.2284C36.127 9.90287 35.5891 9.36809 34.8553 9.36809C34.2335 9.36809 33.6448 9.59921 33.1629 10.4117C31.9814 12.4161 30.0091 15.4891 29.6423 15.9928C29.5853 16.0798 29.5283 16.1368 29.4723 16.1638C29.4163 16.1638 29.3842 16.1088 29.3842 15.9689V11.2284C29.3842 9.90287 28.8494 9.36809 28.1208 9.36809C27.1041 9.36809 26.5434 10.3029 26.1734 10.8916C25.6635 11.7093 24.9899 12.811 24.4561 13.8277C24.0882 14.5076 23.7763 15.1232 23.6622 15.1232C23.6084 15.1232 23.6084 14.8672 23.6084 14.3894V10.6128C25.3816 8.63536 26.4823 6.21329 26.4823 3.56322C26.4823 2.03764 25.8086 1.19609 24.7681 1.19609C22.8186 1.19609 21.3283 4.24206 21.3283 7.8477V10.7797C20.4245 11.3445 19.5778 11.6202 18.5331 11.8244C17.9994 10.249 16.8697 9.43028 15.9711 9.45204C15.0995 9.4821 14.4767 10.021 14.4767 10.9237C14.4767 12.4161 15.9432 13.0359 17.2366 13.0359H17.6035C17.6584 13.3199 17.6584 13.6308 17.6584 13.9396C17.6584 15.3232 16.8417 16.7006 15.3234 16.7006C13.746 16.7006 12.8132 15.1781 12.8132 13.4318C12.8132 12.1052 13.204 11.0077 13.8527 10.249C14.1087 9.96506 14.3077 9.71114 14.3077 9.53288C14.3077 9.40126 14.1087 9.36809 13.9377 9.36809C12.8671 9.36809 10.5021 10.8118 7.68099 13.6308C7.43121 11.3746 7.14724 9.17324 7.14724 7.02997C7.14724 4.63485 7.62087 2.6004 7.73384 2.0138C7.79084 1.65003 7.82608 1.42098 7.82608 1.25516C7.82608 1.02819 7.70586 0.912109 7.40219 0.912109C5.1159 0.912109 0.0976562 4.5509 0.0976562 9.992C0.0976562 13.8505 1.51027 15.7129 3.95824 18.1091C2.47205 20.5063 1.28019 23.3522 1.28019 25.8904C1.28019 27.7196 1.70718 29.1053 3.05657 29.1053C5.87661 29.1053 7.98879 23.2444 7.98879 18.8998C7.98879 17.6043 7.93697 16.3057 7.82608 15.0113C8.86559 13.9054 10.473 12.4161 10.8648 12.2752C10.6969 12.868 10.5839 13.4898 10.5839 14.0764C10.5839 16.4446 11.9395 18.705 14.5585 18.705C17.0148 18.705 18.872 16.7006 18.872 13.9054C18.872 13.5448 18.843 13.2307 18.8181 12.8939C19.7156 12.725 20.5416 12.4939 21.3283 12.0223V17.6883C21.3283 18.4179 21.832 18.705 22.3118 18.705C22.9637 18.705 23.3016 18.2511 23.7762 17.2136C24.1753 16.3638 25.2427 14.4205 25.8905 13.2608C26.4014 12.356 26.6833 11.7684 26.9103 11.7684C26.9632 11.7684 27.0233 11.9062 27.0233 12.2451V17.0675C27.0233 18.3651 27.7 18.705 28.2856 18.705C28.8494 18.705 29.2184 18.3951 29.5853 17.8862C31.0528 15.7979 32.6053 13.3199 33.2209 12.2451C33.3349 12.0524 33.4749 11.9062 33.5889 11.9062C33.6987 11.9062 33.7557 11.9674 33.7557 12.3291V17.3794C33.7557 18.2801 34.0376 18.705 34.7455 18.705C35.3901 18.705 35.8119 18.2511 36.0638 17.7163C37.0007 15.771 38.3781 13.2038 38.973 12.1933C39.1108 11.9674 39.2528 11.7684 39.3367 11.7684C39.4538 11.7684 39.4797 11.9062 39.4797 12.2752V17.0675C39.4797 18.3651 40.1565 18.705 40.7524 18.705C41.5349 18.705 42.0479 18.1381 42.5547 17.4924C43.4792 16.2746 44.8338 14.1127 45.6525 12.725C45.9365 13.1779 46.2433 13.7147 46.5013 14.3055C45.8235 15.1232 45.1457 16.0508 45.1457 17.0364C45.1457 18.0811 45.8785 18.705 46.6402 18.705C47.9347 18.705 49.1172 17.4603 49.1172 15.744C49.1172 15.0693 48.9234 14.3625 48.6716 13.6878C49.8209 12.5571 51.2045 11.4575 52.2244 11.2046ZM5.78956 17.3504C6.01756 18.8428 6.21552 20.3125 6.21552 21.466C6.21552 24.1679 5.31592 27.3268 3.76443 27.3009C3.1654 27.3009 2.66171 26.7019 2.63683 25.6644C2.57983 22.2847 4.18625 19.4077 5.78956 17.3504ZM46.948 15.4289C47.1191 15.914 47.2051 16.3057 47.2051 16.7006C47.2051 17.1525 47.0351 17.6043 46.7231 17.6043C46.5014 17.6043 46.2754 17.3504 46.2754 16.9545C46.2754 16.5306 46.6402 15.8539 46.948 15.4289ZM6.8073 1.98375C6.8073 2.15579 6.41243 2.94241 5.90667 4.35399C5.37085 5.81738 4.85991 7.90158 4.85991 10.4117C4.85991 11.9062 5.2299 13.8826 5.54186 15.8829L4.63915 17.0996C3.1996 15.3471 2.29897 13.3769 2.29897 9.992C2.29897 5.20073 5.20192 1.877 6.6933 1.877C6.78243 1.877 6.8073 1.90187 6.8073 1.98375Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M139.183 11.1206C139.183 10.8646 139.347 10.7278 139.576 10.7278C139.939 10.7278 140.504 11.1206 140.813 11.9062C140.703 11.9062 140.534 11.9404 140.416 11.9404C139.745 11.9404 139.183 11.6202 139.183 11.1206ZM98.417 11.1206C98.417 10.8646 98.589 10.7278 98.8119 10.7278C99.1788 10.7278 99.7198 11.1206 100.023 11.9062C98.9808 11.9062 98.417 11.6813 98.417 11.1206ZM106.283 7.06106C106.283 2.85847 107.097 2.21279 107.354 2.21279C107.804 2.21279 107.861 2.49469 107.861 4.10629C107.861 5.76245 107.154 7.92956 106.283 9.11935V7.06106ZM88.4697 17.3504C88.6883 18.8428 88.8935 20.3125 88.8935 21.466C88.8935 24.1679 87.9929 27.3268 86.4383 27.3009C85.8476 27.3009 85.3397 26.7019 85.3117 25.6644C85.2537 22.2847 86.8632 19.4077 88.4697 17.3504ZM129.627 15.4289C129.798 15.914 129.879 16.3057 129.879 16.7006C129.879 17.1525 129.71 17.6043 129.4 17.6043C129.177 17.6043 128.945 17.3504 128.945 16.9545C128.945 16.5306 129.315 15.8539 129.627 15.4289ZM89.4791 1.98375C89.4791 2.15579 89.0884 2.94241 88.5774 4.35399C88.0458 5.81738 87.5348 7.90158 87.5348 10.4117C87.5348 11.9062 87.911 13.8826 88.2188 15.8829L87.3141 17.0996C85.8787 15.3471 84.9718 13.3769 84.9718 9.992C84.9718 5.20073 87.881 1.877 89.3724 1.877C89.4542 1.877 89.4791 1.90187 89.4791 1.98375ZM84.779 16.0798C85.2827 16.7566 85.9046 17.4043 86.6373 18.1091C85.1418 20.5063 83.9592 23.3522 83.9592 25.8904C83.9592 27.7196 84.3852 29.1053 85.7387 29.1053C88.5546 29.1053 90.6668 23.2444 90.6668 18.8998C90.6668 17.6043 90.6119 16.3057 90.4989 15.0113C91.5436 13.9054 93.1448 12.4161 93.5449 12.2752C93.3749 12.868 93.2578 13.4898 93.2578 14.0764C93.2578 16.4446 94.6124 18.705 97.2365 18.705C99.6866 18.705 101.547 16.7006 101.547 13.9054C101.547 13.5448 101.521 13.2307 101.49 12.8939C102.394 12.725 103.217 12.4939 104.001 12.0223V17.6883C104.001 18.4179 104.506 18.705 104.982 18.705C105.639 18.705 105.976 18.2511 106.453 17.2136C106.846 16.3638 107.92 14.4205 108.57 13.2608C109.075 12.356 109.357 11.7684 109.588 11.7684C109.641 11.7684 109.694 11.9062 109.694 12.2451V17.0675C109.694 18.3651 110.369 18.705 110.962 18.705C111.527 18.705 111.89 18.3951 112.264 17.8862C113.726 15.7979 115.278 13.3199 115.897 12.2451C116.01 12.0524 116.153 11.9062 116.262 11.9062C116.372 11.9062 116.434 11.9674 116.434 12.3291V17.3794C116.434 18.2801 116.713 18.705 117.416 18.705C118.065 18.705 118.488 18.2511 118.744 17.7163C119.675 15.771 121.055 13.2038 121.645 12.1933C121.789 11.9674 121.929 11.7684 122.017 11.7684C122.127 11.7684 122.158 11.9062 122.158 12.2752V17.0675C122.158 18.3651 122.828 18.705 123.419 18.705C124.214 18.705 124.722 18.1381 125.226 17.4924C126.155 16.2746 127.512 14.1127 128.329 12.725C128.607 13.1779 128.921 13.7147 129.177 14.3055C128.493 15.1232 127.824 16.0508 127.824 17.0364C127.824 18.0811 128.548 18.705 129.315 18.705C130.61 18.705 131.792 17.4603 131.792 15.744C131.792 15.0693 131.596 14.3625 131.342 13.6878C132.497 12.5571 133.879 11.4575 134.894 11.2046C134.415 11.8803 134.02 12.84 134.02 14.0764C134.02 16.4446 135.375 18.705 137.997 18.705C140.534 18.705 142.305 16.7006 142.305 13.9054C142.305 13.0939 142.279 12.982 142.227 12.6452C142.812 12.3882 143.323 11.9954 143.722 11.6813C144.053 11.4274 144.312 11.2854 144.506 11.2854C144.761 11.2854 144.88 11.4834 144.88 11.8492V17.3794C144.88 18.2801 145.158 18.705 145.862 18.705C146.508 18.705 146.962 18.2511 147.217 17.7163C148.141 15.771 149.497 13.1779 150.087 12.1933C150.228 11.9674 150.343 11.7943 150.428 11.7943C150.543 11.7943 150.598 11.8803 150.598 12.2451V16.6477C150.598 17.8862 151.156 18.705 152.4 18.705C153.701 18.705 154.347 17.4603 155.477 15.544C155.53 15.4289 155.557 15.3471 155.557 15.2652C155.557 15.0113 155.331 14.8672 155.107 14.8672C154.855 14.8672 154.711 15.1232 153.867 16.0508C153.701 16.227 153.529 16.4716 153.22 16.4716C153.104 16.4716 153.024 16.3358 153.024 16.1638V11.2284C153.024 9.90287 152.425 9.36809 151.664 9.36809C151.047 9.36809 150.543 9.622 150.005 10.4117C149.044 11.8244 148.061 13.8277 147.529 14.8372C147.468 14.9553 147.386 15.1232 147.326 15.1232C147.266 15.1232 147.244 15.0361 147.244 14.8372V11.2284C147.244 10.1879 146.962 9.36809 145.862 9.36809C144.704 9.36809 144.115 10.1589 143.27 10.7496C142.729 11.1486 142.254 11.4274 141.884 11.5963C141.325 10.1589 140.278 9.43027 139.409 9.45203C138.53 9.48209 137.915 10.021 137.915 10.9237C137.915 11.8492 138.479 12.4939 139.233 12.7809C139.657 12.9499 140.052 12.982 140.623 12.982C140.788 12.982 140.952 12.982 141.072 12.9499C141.127 13.2307 141.098 13.6308 141.098 13.9396C141.098 15.3232 140.278 16.7006 138.755 16.7006C137.177 16.7006 136.251 15.1781 136.251 13.4318C136.251 12.1052 136.643 11.0077 137.288 10.249C137.545 9.96506 137.744 9.79302 137.744 9.53288C137.744 9.40126 137.545 9.36809 137.376 9.36809C136.31 9.36809 135.122 9.84898 134.304 10.2698C133.232 10.8346 131.963 11.7684 130.924 12.698C130.415 11.5673 129.798 10.5807 129.484 9.81685C129.368 9.50696 129.291 9.14733 129.057 9.14733C128.862 9.14733 128.776 9.34425 128.637 9.7329C128.128 11.2284 125.425 15.602 124.833 16.1938C124.776 16.2746 124.692 16.3638 124.662 16.3638C124.609 16.3638 124.578 16.3358 124.578 16.1638V11.2284C124.578 9.90287 124.046 9.36809 123.306 9.36809C122.685 9.36809 122.158 9.622 121.645 10.4117C120.713 11.8244 119.589 13.8826 119.053 14.8952C118.97 15.0693 118.887 15.1232 118.86 15.1232C118.828 15.1232 118.799 15.0113 118.799 14.8372V11.2284C118.799 9.90287 118.267 9.36809 117.533 9.36809C116.912 9.36809 116.316 9.5992 115.841 10.4117C114.653 12.4161 112.683 15.4891 112.314 15.9927C112.264 16.0798 112.204 16.1368 112.144 16.1638C112.094 16.1638 112.061 16.1088 112.061 15.9689V11.2284C112.061 9.90287 111.527 9.36809 110.792 9.36809C109.774 9.36809 109.214 10.3029 108.845 10.8916C108.338 11.7093 107.666 12.811 107.128 13.8277C106.764 14.5076 106.453 15.1232 106.34 15.1232C106.283 15.1232 106.283 14.8672 106.283 14.3894V10.6128C108.062 8.63535 109.157 6.21329 109.157 3.56322C109.157 2.03764 108.482 1.19608 107.436 1.19608C105.494 1.19608 104.001 4.24206 104.001 7.84769V10.7797C103.096 11.3445 102.251 11.6202 101.206 11.8243C100.674 10.249 99.5456 9.43027 98.6492 9.45203C97.7693 9.48209 97.1516 10.021 97.1516 10.9237C97.1516 12.4161 98.6129 13.0359 99.9125 13.0359H100.281C100.333 13.3199 100.333 13.6308 100.333 13.9396C100.333 15.3232 99.5187 16.7006 97.9952 16.7006C96.4157 16.7006 95.4902 15.1781 95.4902 13.4318C95.4902 12.1052 95.884 11.0077 96.5276 10.249C96.7805 9.96505 96.9795 9.71113 96.9795 9.53287C96.9795 9.40125 96.7805 9.36809 96.6137 9.36809C95.541 9.36809 93.1749 10.8118 90.3528 13.6308C90.1051 11.3746 89.8201 9.17324 89.8201 7.02997C89.8201 4.63485 90.2989 2.6004 90.4118 2.0138C90.4678 1.65003 90.4989 1.42098 90.4989 1.25516C90.4989 1.02819 90.3839 0.912109 90.0792 0.912109C87.795 0.912109 82.7767 4.5509 82.7767 9.992C82.7767 12.2161 83.2555 13.7987 84.1012 15.1781C83.7862 15.1232 83.5385 15.1232 83.3073 15.1232C82.4088 15.1232 81.56 15.3471 81.0335 15.4621V14.8952C81.0335 13.6878 80.7474 12.0223 80.2386 11.4575C80.1785 11.3994 80.0945 11.3746 80.0157 11.3746C79.7836 11.3746 79.5058 11.4834 79.197 11.6544C78.855 11.8243 78.5171 11.9954 78.5171 12.1052C78.5171 12.1591 78.5171 12.2161 78.6021 12.356C78.8011 12.6452 79.3379 13.2038 79.5317 14.5325C78.571 13.5728 77.4766 13.1468 76.0443 13.1468C74.3498 13.1468 73.8398 13.9054 73.8398 14.6713C73.8398 16.1368 75.7852 16.8695 78.2414 16.8695C78.6912 16.8695 79.197 16.7845 79.7017 16.6695C79.7017 17.1214 79.7587 17.5214 79.7587 17.8572C79.7587 18.3371 79.8406 18.705 80.1546 18.705C80.6324 18.705 80.9164 17.7422 80.9703 16.3638C81.844 16.1368 82.7477 15.942 83.5115 15.942C83.8763 15.942 84.3323 15.9927 84.779 16.0798ZM79.226 15.7979C78.7513 15.8539 78.4622 15.8539 77.9595 15.8539C76.8568 15.8539 76.0443 15.4289 76.0443 14.8144C76.0443 14.4205 76.2391 14.1915 76.8029 14.1915C77.7067 14.1915 78.4352 14.8144 79.226 15.7979Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fhzf8x\",\"data-framer-name\":\"True Classic\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:108,svg:'<svg width=\"108\" height=\"24\" viewBox=\"0 0 108 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M103.174 23.5371C103.076 23.4839 102.966 23.4972 102.861 23.4831C101.987 23.3665 101.173 23.0942 100.465 22.5543C99.6458 21.9291 99.1646 21.1021 99.0089 20.0841C98.9744 19.8564 98.958 19.6287 98.958 19.3986C98.958 14.4738 98.958 9.54814 98.958 4.62328C98.958 3.88385 99.1153 3.18511 99.4948 2.54583C99.9447 1.7884 100.6 1.26884 101.402 0.924557C101.938 0.694512 102.499 0.571664 103.078 0.512979C103.091 0.511414 103.105 0.508284 103.118 0.506719C103.23 0.523151 103.338 0.473856 103.449 0.482463H103.945C104.039 0.476986 104.128 0.522369 104.222 0.505154C104.559 0.547408 104.894 0.599833 105.218 0.704684C106.272 1.04349 107.028 1.70624 107.431 2.74771C107.608 3.20545 107.693 3.68198 107.697 4.17258C107.696 4.22266 107.693 4.27274 107.693 4.3236C107.693 5.87602 107.693 7.42843 107.693 8.98085C107.693 9.03093 107.695 9.08179 107.696 9.13187C107.675 9.15847 107.646 9.14986 107.62 9.15065C106.614 9.1616 105.61 9.17256 104.604 9.18116C104.423 9.18273 104.445 9.20307 104.444 9.01919C104.444 7.63344 104.444 6.24691 104.444 4.86116C104.444 4.78291 104.444 4.70466 104.439 4.6272C104.423 4.39246 104.381 4.16319 104.276 3.94958C104.143 3.67806 103.933 3.50123 103.632 3.44019C103.514 3.41672 103.395 3.4175 103.276 3.42846C102.963 3.45584 102.718 3.59747 102.55 3.86507C102.483 3.97071 102.437 4.08495 102.402 4.20466C102.322 4.48166 102.317 4.76491 102.317 5.05051C102.317 9.69055 102.317 14.3306 102.317 18.9706C102.317 19.0669 102.317 19.1631 102.319 19.2594C102.326 19.4808 102.356 19.6983 102.431 19.9072C102.638 20.4894 103.102 20.6662 103.631 20.5778C103.991 20.5176 104.208 20.2766 104.329 19.944C104.412 19.7179 104.443 19.4816 104.443 19.2414C104.443 18.9706 104.443 18.6999 104.443 18.4292C104.443 17.1623 104.443 15.8955 104.443 14.6287C104.443 14.4894 104.426 14.4965 104.578 14.4973C104.839 14.498 105.101 14.4996 105.363 14.5019C106.138 14.5106 106.913 14.5207 107.69 14.5301C107.69 14.5896 107.692 14.6491 107.692 14.7093C107.692 16.3713 107.692 18.0332 107.692 19.6944C107.692 19.7445 107.695 19.7953 107.696 19.8454C107.695 20.1623 107.656 20.4753 107.581 20.7836C107.324 21.8423 106.726 22.6318 105.738 23.1122C105.259 23.3454 104.747 23.4573 104.22 23.5136C104.164 23.5113 104.106 23.5003 104.054 23.5355H103.172L103.174 23.5371Z\" fill=\"white\"/>\\n<path d=\"M0.779297 0.509766C1.1228 0.527762 1.4663 0.547324 1.81059 0.562973C2.53985 0.595055 3.26911 0.624788 3.99759 0.656087C5.20807 0.706948 6.41855 0.759373 7.62902 0.808668C8.22996 0.832925 8.83089 0.853269 9.43183 0.875178C9.44591 0.875178 9.45922 0.875178 9.4733 0.876743C9.57111 0.883785 9.57267 0.883785 9.57346 0.979247C9.57502 1.09427 9.57346 1.20851 9.57346 1.32353C9.57346 2.09896 9.57346 2.87517 9.57346 3.65059C9.57346 3.67328 9.57346 3.69676 9.57346 3.71945C9.57189 3.82039 9.57189 3.82274 9.46626 3.81961C8.88801 3.80474 8.30977 3.78752 7.73231 3.77188C7.44827 3.76405 7.16502 3.75701 6.8802 3.74997C6.85594 3.80865 6.8669 3.86421 6.8669 3.9182C6.8669 10.275 6.8669 16.6325 6.8669 22.9893C6.8669 23.1685 6.8669 23.1677 6.69476 23.1747C5.67677 23.2154 4.65877 23.2561 3.64078 23.2968C3.6267 23.2968 3.6134 23.2992 3.59931 23.2999C3.51168 23.3023 3.51089 23.3023 3.50855 23.2107C3.50776 23.174 3.50855 23.1372 3.50855 23.1004C3.50855 16.6795 3.50855 10.2578 3.50855 3.83682C3.50855 3.65059 3.50855 3.64825 3.32545 3.64199C2.49994 3.61382 1.67444 3.588 0.848154 3.56139C0.825462 3.56139 0.802771 3.5653 0.780079 3.56765V0.509766H0.779297Z\" fill=\"white\"/>\\n<path d=\"M103.449 0.481501C103.337 0.472894 103.23 0.521407 103.118 0.505757C103.118 0.497933 103.118 0.490108 103.118 0.481501H103.449Z\" fill=\"white\"/>\\n<path d=\"M104.221 0.481907C104.222 0.489732 104.222 0.496774 104.221 0.504599C104.127 0.521813 104.037 0.47643 103.944 0.481907H104.22H104.221Z\" fill=\"white\"/>\\n<path d=\"M104.222 23.5152C104.222 23.5222 104.222 23.53 104.221 23.5371H104.056C104.107 23.5019 104.165 23.5128 104.222 23.5152Z\" fill=\"white\"/>\\n<path d=\"M17.9336 11.6817C18.22 11.8077 18.4782 11.954 18.7121 12.1426C19.2379 12.5667 19.5502 13.1167 19.6832 13.7748C19.7379 14.0455 19.7567 14.3202 19.7567 14.5956C19.7583 16.3992 19.7575 18.2036 19.7567 20.0072C19.7567 20.4986 19.7692 20.9892 19.8232 21.4774C19.8694 21.8921 19.939 22.3029 20.1002 22.7035C19.9758 22.7294 19.8577 22.7262 19.7419 22.7294C18.907 22.7536 18.0721 22.7755 17.2364 22.7982C17.1034 22.8021 16.9704 22.8068 16.8373 22.817C16.7653 22.8225 16.7309 22.7928 16.7074 22.7278C16.6167 22.4821 16.5549 22.2286 16.5134 21.9704C16.4148 21.3663 16.396 20.756 16.396 20.1457C16.396 18.3006 16.396 16.4555 16.396 14.6097C16.396 14.3937 16.378 14.1793 16.3233 13.9689C16.1941 13.4673 15.8569 13.1692 15.342 13.0964C15.1269 13.0659 14.9117 13.0706 14.6965 13.0698C14.5494 13.0698 14.4023 13.0706 14.256 13.0721C14.1409 13.0729 14.1409 13.0729 14.1402 13.1942C14.1402 13.2216 14.1402 13.249 14.1402 13.2772C14.1402 16.4258 14.1402 19.5745 14.1402 22.7239C14.1402 22.9 14.1402 22.8984 13.9672 22.9046C12.9719 22.9399 11.9766 22.9758 10.9813 23.0103C10.781 23.0173 10.781 23.0158 10.781 22.8107C10.781 15.5768 10.781 8.34291 10.781 1.10821C10.781 0.904765 10.7419 0.924327 10.961 0.932151C11.6676 0.95719 12.3734 0.983794 13.0799 1.00883C13.9469 1.03857 14.8139 1.06439 15.6808 1.09725C16.3123 1.12151 16.9312 1.2154 17.5243 1.44623C18.2763 1.73888 18.8788 2.20914 19.2786 2.9204C19.5157 3.34215 19.6487 3.79677 19.7113 4.27407C19.7497 4.56593 19.7575 4.85936 19.7575 5.15279C19.7575 6.43838 19.7575 7.72319 19.7575 9.00879C19.7575 9.42506 19.7027 9.83195 19.54 10.2193C19.2583 10.8906 18.7646 11.3429 18.0948 11.6121C18.0439 11.6324 17.9891 11.6426 17.9344 11.6833L17.9336 11.6817ZM14.1409 7.08235C14.1409 8.10582 14.1409 9.12851 14.1409 10.152C14.1409 10.1841 14.1441 10.2161 14.1409 10.2482C14.1347 10.3093 14.1613 10.3257 14.22 10.3257C14.3757 10.3241 14.5322 10.3304 14.6879 10.3296C14.9492 10.328 15.2114 10.346 15.4719 10.3194C15.8741 10.278 16.1519 10.0683 16.2943 9.68719C16.3725 9.47827 16.3952 9.25918 16.396 9.03852C16.3976 7.7631 16.3968 6.48768 16.396 5.21225C16.396 5.06045 16.3812 4.91022 16.3506 4.76155C16.2434 4.23417 15.9125 3.93761 15.378 3.89301C14.9938 3.86093 14.6073 3.88049 14.2223 3.85702C14.166 3.85389 14.1339 3.86797 14.1409 3.93135C14.1441 3.96343 14.1409 3.99551 14.1409 4.0276C14.1409 5.04637 14.1409 6.06514 14.1409 7.08313V7.08235Z\" fill=\"white\"/>\\n<path d=\"M72.4075 13.607C72.4075 16.5084 72.4075 19.409 72.4075 22.3104C72.4075 22.3331 72.4075 22.3566 72.4075 22.3793C72.4044 22.5146 72.4443 22.5318 72.2487 22.5272C71.7205 22.5154 71.1931 22.5146 70.665 22.5092C70.165 22.5037 69.6642 22.4959 69.1642 22.4896C69.0484 22.488 69.0476 22.488 69.0476 22.3667C69.0476 21.2509 69.0476 20.1359 69.0476 19.0201C69.0476 18.5522 69.0476 18.0835 69.0476 17.6156C69.0476 17.4943 69.0476 17.5021 68.9357 17.5021C68.2698 17.499 67.604 17.4943 66.9389 17.4904C66.9068 17.4904 66.8747 17.4904 66.8426 17.4912C66.8082 17.4912 66.7941 17.5115 66.7941 17.5436C66.7941 17.5804 66.7941 17.6172 66.7941 17.6539C66.7941 19.2009 66.7941 20.7478 66.7941 22.2948C66.7941 22.4888 66.8137 22.463 66.6251 22.4622C65.6055 22.4552 64.5868 22.4458 63.5672 22.4372C63.5445 22.4372 63.521 22.434 63.4983 22.4356C63.4522 22.4387 63.4311 22.4184 63.4334 22.3714C63.435 22.3394 63.4334 22.3073 63.4334 22.2752C63.4334 16.5968 63.4334 10.9185 63.4326 5.24008C63.4326 4.41771 63.6603 3.67515 64.1869 3.03587C64.6298 2.49832 65.1971 2.13603 65.8434 1.89034C66.3309 1.70489 66.8364 1.59926 67.3551 1.55231C67.8184 1.51006 68.2816 1.50771 68.744 1.55857C69.6352 1.65716 70.467 1.91851 71.1767 2.48893C71.8582 3.03744 72.2534 3.75026 72.3739 4.61646C72.4013 4.81286 72.4099 5.00926 72.4099 5.20644C72.4099 8.00689 72.4099 10.8066 72.4099 13.607H72.4075ZM69.0468 10.0961C69.0468 8.59531 69.0468 7.09453 69.0468 5.59454C69.0468 5.42944 69.0382 5.26512 69.0061 5.10159C68.8989 4.55621 68.55 4.24009 68.0046 4.21583C67.3974 4.18845 67.0015 4.51474 66.8551 5.03821C66.8066 5.21191 66.7933 5.38954 66.7933 5.5695C66.7933 8.64851 66.7933 11.7283 66.7933 14.8073C66.7933 14.8394 66.7933 14.8715 66.7933 14.9036C66.7933 14.9419 66.8082 14.9638 66.8497 14.963C66.8817 14.9623 66.9138 14.963 66.9459 14.963C67.5836 14.9646 68.2221 14.9654 68.8598 14.9669C69.0766 14.9669 69.046 14.992 69.046 14.7909C69.0468 13.226 69.046 11.661 69.046 10.0961H69.0468Z\" fill=\"white\"/>\\n<path d=\"M21.1783 10.4451C21.1783 7.44745 21.1783 4.44981 21.1783 1.45218C21.1783 1.25734 21.1478 1.26673 21.3606 1.27299C22.3011 1.29881 23.2424 1.32072 24.183 1.34498C24.2792 1.34733 24.3754 1.35515 24.4717 1.35593C24.5171 1.35593 24.5398 1.3708 24.5366 1.41931C24.5343 1.46078 24.5366 1.50226 24.5366 1.54294C24.5366 7.2401 24.5366 12.9365 24.5366 18.6336C24.5366 18.8824 24.5562 19.1281 24.6383 19.366C24.8199 19.8918 25.2534 20.1094 25.7573 20.0538C26.3183 19.9912 26.6704 19.636 26.7643 19.0679C26.7878 18.927 26.7948 18.7854 26.7948 18.643C26.7948 12.9599 26.7948 7.27687 26.7948 1.59302C26.7948 1.472 26.8556 1.41279 26.9771 1.4154C27.9959 1.43653 29.0147 1.45766 30.0335 1.47878C30.1138 1.48035 30.1545 1.52025 30.1555 1.5985C30.1555 1.6165 30.1555 1.63528 30.1555 1.65327C30.1555 7.43258 30.1555 13.2127 30.1555 18.992C30.1555 19.7017 29.9865 20.3637 29.5961 20.9607C29.2009 21.5655 28.6555 21.9951 28.0061 22.3003C27.4654 22.5538 26.895 22.6993 26.3034 22.7682C25.8418 22.8222 25.3786 22.8355 24.9153 22.7924C24.0022 22.7079 23.1509 22.4521 22.4255 21.866C21.7409 21.3136 21.3488 20.5921 21.2229 19.7236C21.19 19.5006 21.1783 19.2768 21.1783 19.0515C21.1783 16.1821 21.1783 13.3128 21.1783 10.4443V10.4451Z\" fill=\"white\"/>\\n<path d=\"M83.7428 17.0028C83.7428 16.2086 83.7428 15.4144 83.7428 14.6202C83.7428 14.5881 83.7444 14.556 83.7428 14.524C83.7412 14.4833 83.76 14.4668 83.7999 14.4676C83.8915 14.4692 83.9838 14.47 84.0753 14.47C85.0026 14.4731 85.9306 14.4762 86.8578 14.4794C86.8758 14.4794 86.8946 14.4817 86.9126 14.4794C86.9892 14.4676 87.0104 14.506 87.0033 14.5748C87.0002 14.6069 87.0033 14.639 87.0033 14.6711C87.0033 16.0576 87.0033 17.4441 87.0033 18.8299C87.0033 19.0419 87.0229 19.2516 87.0816 19.4559C87.2412 20.0106 87.6465 20.2329 88.188 20.1914C88.8007 20.1444 88.983 19.7282 89.0612 19.333C89.0847 19.2156 89.0964 19.0975 89.0964 18.977C89.0964 17.93 89.0957 16.8839 89.0941 15.8369C89.0941 15.6711 89.0722 15.5083 89.0432 15.3448C88.9892 15.0396 88.8578 14.7704 88.6645 14.531C88.5409 14.3769 88.4055 14.2329 88.2576 14.1014C87.2146 13.1742 86.1731 12.2446 85.1207 11.3284C84.706 10.9669 84.3422 10.5639 84.0996 10.0623C83.922 9.69457 83.8234 9.30647 83.7733 8.9035C83.7436 8.66171 83.7404 8.41836 83.7404 8.17502C83.7404 7.078 83.7404 5.98098 83.7404 4.88317C83.7404 4.20008 83.8954 3.55532 84.2467 2.96613C84.6747 2.24939 85.2991 1.76504 86.062 1.44814C86.6176 1.21731 87.1997 1.1015 87.7983 1.0569C88.2302 1.02482 88.6606 1.03265 89.0902 1.08898C89.7576 1.17584 90.3883 1.37146 90.9532 1.74782C91.7177 2.25721 92.177 2.9716 92.3679 3.86362C92.4313 4.16096 92.4564 4.46221 92.4564 4.7658C92.4564 6.17972 92.4564 7.59364 92.4564 9.00756C92.4564 9.01226 92.4564 9.01695 92.4564 9.02165C92.4564 9.1445 92.4697 9.14371 92.3398 9.1445C92.087 9.14684 91.8351 9.15232 91.5823 9.15388C90.8429 9.15858 90.1035 9.16249 89.3648 9.1664C89.3327 9.1664 89.3007 9.16406 89.2686 9.1664C89.2177 9.17032 89.1903 9.15388 89.195 9.09755C89.1982 9.06547 89.195 9.03338 89.195 9.0013C89.195 7.72979 89.195 6.45828 89.195 5.18677C89.195 4.97081 89.1778 4.75641 89.1191 4.54671C88.9869 4.07645 88.688 3.84171 88.2005 3.82997C88.091 3.82762 87.9814 3.83858 87.8727 3.86362C87.5745 3.93404 87.3664 4.11166 87.2412 4.38787C87.141 4.60853 87.1035 4.84327 87.1011 5.08427C87.0996 5.24467 87.1011 5.40586 87.1011 5.56627C87.1011 6.22745 87.1011 6.88864 87.1011 7.54904C87.1011 7.75561 87.116 7.96062 87.1536 8.16485C87.2083 8.46062 87.3335 8.72196 87.5221 8.95357C87.6528 9.11398 87.7952 9.26343 87.9501 9.40036C88.9924 10.3221 90.0338 11.2439 91.0745 12.1672C91.465 12.5138 91.8085 12.8988 92.0495 13.3683C92.2615 13.7814 92.3734 14.2227 92.4251 14.6828C92.454 14.9434 92.4556 15.2047 92.4556 15.4668C92.4556 16.7337 92.4548 18.0013 92.4556 19.2681C92.4556 19.8494 92.3546 20.4089 92.1019 20.9355C91.7224 21.725 91.1066 22.2626 90.3093 22.6037C89.8155 22.815 89.2975 22.9253 88.7631 22.9676C88.0479 23.0239 87.3414 22.9738 86.6473 22.7923C85.8914 22.5943 85.2177 22.2477 84.6778 21.6695C84.1974 21.1546 83.9157 20.5427 83.7968 19.8518C83.7522 19.5928 83.7373 19.333 83.7373 19.0709C83.7389 18.3823 83.7373 17.6937 83.7373 17.0052L83.7428 17.0028Z\" fill=\"white\"/>\\n<path d=\"M73.814 16.9493C73.814 16.1738 73.814 15.3976 73.814 14.6222C73.814 14.5948 73.814 14.5674 73.814 14.5393C73.8155 14.4258 73.8163 14.425 73.9267 14.4242C74.2295 14.4242 74.5331 14.4227 74.8359 14.4242C75.483 14.4266 76.1309 14.4305 76.778 14.4336C76.8515 14.4336 76.9251 14.4399 76.9978 14.4383C77.0542 14.4368 77.0847 14.4524 77.0784 14.515C77.0753 14.5471 77.0784 14.5792 77.0784 14.6112C77.0784 15.9657 77.0784 17.3194 77.0784 18.6738C77.0784 18.8906 77.0972 19.1042 77.1598 19.3131C77.2928 19.7536 77.5964 19.9915 78.055 20.0158C78.1653 20.022 78.2756 20.022 78.3844 20.0017C78.7138 19.9406 78.9391 19.7505 79.0604 19.4399C79.1379 19.2411 79.1731 19.0338 79.1731 18.8209C79.1747 17.889 79.1754 16.9571 79.1754 16.0252C79.1754 15.8374 79.1708 15.6496 79.1496 15.4618C79.1097 15.1112 78.9931 14.7943 78.7709 14.5181C78.6442 14.3601 78.5072 14.2122 78.3539 14.0792C77.3304 13.1926 76.3061 12.3061 75.2811 11.4211C75.0198 11.1958 74.7686 10.9618 74.5511 10.6926C74.1481 10.1926 73.9282 9.6191 73.8523 8.9853C73.8202 8.71613 73.8148 8.44539 73.814 8.17466C73.8132 7.15588 73.814 6.13633 73.814 5.11756C73.814 4.74432 73.8484 4.37578 73.9493 4.01506C74.2169 3.06201 74.8046 2.36561 75.6645 1.89222C76.1723 1.61288 76.7193 1.45013 77.2905 1.36327C77.8147 1.28346 78.3413 1.26312 78.8695 1.31006C79.7005 1.38362 80.4853 1.5988 81.17 2.09645C81.9055 2.63009 82.328 3.357 82.479 4.24823C82.5205 4.49315 82.5346 4.73962 82.5338 4.98845C82.5322 6.3476 82.5338 7.70596 82.5322 9.06511C82.5322 9.2263 82.5674 9.21925 82.3789 9.22082C81.4008 9.22864 80.4227 9.2349 79.4454 9.24116C79.4133 9.24116 79.3812 9.23882 79.3492 9.24116C79.2983 9.24507 79.2709 9.22864 79.2748 9.17309C79.2772 9.13631 79.2748 9.09954 79.2748 9.06276C79.2748 7.83741 79.2756 6.61129 79.274 5.38594C79.274 5.16998 79.2607 4.95558 79.2036 4.7451C79.0557 4.19581 78.6747 3.99706 78.1676 4.01819C78.0816 4.0221 77.9947 4.0354 77.9094 4.05809C77.6348 4.13165 77.4407 4.29831 77.3194 4.55418C77.2068 4.79205 77.1747 5.04713 77.1747 5.30457C77.1731 6.12146 77.1849 6.93836 77.177 7.75604C77.1708 8.44618 77.4634 8.98295 77.9751 9.42035C78.3554 9.74585 78.7334 10.0737 79.1113 10.4016C79.778 10.9782 80.4438 11.5565 81.1097 12.1332C81.4548 12.4321 81.7717 12.756 82.0142 13.1457C82.3014 13.6066 82.4469 14.1128 82.5049 14.6488C82.5307 14.8867 82.5322 15.1253 82.5322 15.364C82.5322 16.6261 82.5362 17.889 82.5307 19.1511C82.5268 19.9704 82.2952 20.7153 81.7686 21.3546C81.3304 21.8858 80.7662 22.2356 80.1215 22.461C79.6332 22.6315 79.1285 22.7184 78.6121 22.7419C77.9384 22.7724 77.2733 22.7231 76.6207 22.5455C76.0065 22.378 75.4423 22.1112 74.9626 21.6855C74.3195 21.1167 73.9634 20.3968 73.85 19.551C73.8202 19.3319 73.8132 19.112 73.8132 18.8921C73.8116 18.245 73.8132 17.5979 73.8132 16.95L73.814 16.9493Z\" fill=\"white\"/>\\n<path d=\"M44.8424 12.0318C44.8424 9.73209 44.84 7.43241 44.8432 5.13274C44.844 4.31663 45.0787 3.57798 45.6108 2.94731C46.045 2.43244 46.5959 2.08894 47.2227 1.85889C47.7039 1.68284 48.2015 1.58581 48.7117 1.54747C49.4355 1.4927 50.1514 1.53573 50.8549 1.72274C51.5693 1.9121 52.207 2.23839 52.7179 2.78534C53.1765 3.27594 53.4417 3.86045 53.5466 4.52085C53.5857 4.76576 53.5998 5.01302 53.599 5.26106C53.5974 6.61082 53.599 7.9598 53.5982 9.30956C53.5982 9.4817 53.6186 9.46057 53.4417 9.46057C52.4542 9.46057 51.4675 9.46057 50.4801 9.46057C50.3212 9.46057 50.3298 9.48013 50.3298 9.31503C50.3298 8.0623 50.3298 6.80879 50.3298 5.55606C50.3298 5.3307 50.315 5.1077 50.2414 4.89096C50.0904 4.4473 49.7594 4.20552 49.2892 4.19769C49.1835 4.19613 49.0787 4.20082 48.9746 4.22351C48.6968 4.28533 48.4934 4.44104 48.3643 4.69378C48.2555 4.90661 48.2195 5.13665 48.2047 5.37139C48.2007 5.42617 48.2015 5.48172 48.2015 5.53649C48.2015 9.86511 48.2015 14.1937 48.2015 18.5223C48.2015 18.7297 48.218 18.9347 48.2766 19.1342C48.4151 19.61 48.7266 19.8494 49.2226 19.8604C49.8001 19.8737 50.1898 19.5466 50.2954 18.9652C50.3236 18.8111 50.3298 18.6554 50.3298 18.4996C50.3298 17.1499 50.3298 15.8009 50.3298 14.4512C50.3298 14.2563 50.3103 14.2829 50.4981 14.2829C51.4808 14.2829 52.4636 14.2829 53.4464 14.2829C53.6201 14.2829 53.5982 14.2641 53.5982 14.4379C53.5982 15.93 53.6013 17.4214 53.5974 18.9136C53.5951 19.6655 53.4088 20.3658 52.9597 20.9809C52.5442 21.5505 51.9855 21.9316 51.333 22.1819C50.8103 22.3823 50.2665 22.484 49.7093 22.5161C49.1765 22.5474 48.6452 22.5301 48.1186 22.4355C47.3338 22.2946 46.6084 22.0168 45.995 21.4934C45.3807 20.9691 45.0145 20.304 44.8893 19.5067C44.8557 19.2931 44.8408 19.0787 44.8408 18.8627C44.8408 16.5857 44.8408 14.3095 44.8408 12.0325L44.8424 12.0318Z\" fill=\"white\"/>\\n<path d=\"M31.7434 11.9831C31.7434 8.55434 31.7434 5.12557 31.7434 1.69601C31.7434 1.51213 31.7434 1.51526 31.9242 1.51839C32.3185 1.52621 32.7137 1.52934 33.1088 1.5356C34.2426 1.5536 35.3764 1.56768 36.5094 1.59272C37.1338 1.60602 37.7583 1.60681 38.3819 1.61854C38.5329 1.62167 38.6847 1.62793 38.8357 1.63028C38.8819 1.63028 38.903 1.6475 38.8999 1.69523C38.8983 1.72261 38.8999 1.75 38.8999 1.77817C38.8999 2.59506 38.8999 3.41196 38.8999 4.22964C38.8999 4.24372 38.8999 4.25703 38.8999 4.27111C38.8975 4.37909 38.896 4.37909 38.7942 4.37831C38.2113 4.37205 37.6284 4.36735 37.0454 4.3611C36.4625 4.35484 35.8795 4.34623 35.2966 4.3384C35.2457 4.3384 35.1957 4.33997 35.1448 4.33684C35.0939 4.33371 35.0666 4.35014 35.0697 4.4057C35.072 4.43778 35.0697 4.46986 35.0697 4.50194C35.0697 6.35169 35.0697 8.20145 35.0697 10.0512C35.0697 10.0739 35.0728 10.0974 35.0697 10.1201C35.0587 10.1975 35.0971 10.2116 35.1652 10.2108C35.3443 10.2077 35.5235 10.2124 35.7019 10.2132C36.3952 10.2155 37.0885 10.2171 37.7817 10.2194C37.9468 10.2194 38.1119 10.2249 38.277 10.2241C38.3334 10.2241 38.3647 10.2398 38.3576 10.3016C38.3553 10.3243 38.3576 10.3478 38.3576 10.3705C38.3576 11.1873 38.3576 12.0042 38.3576 12.8219C38.3576 12.9706 38.3827 12.9729 38.2113 12.9722C37.982 12.9722 37.752 12.9722 37.5227 12.9722C36.7465 12.9737 35.9711 12.9761 35.1949 12.9784C35.0705 12.9784 35.0697 12.9792 35.0697 13.1075C35.0697 15.2374 35.0697 17.3673 35.0697 19.4972C35.0697 19.5112 35.0713 19.5246 35.0697 19.5386C35.0611 19.6091 35.0861 19.6333 35.1612 19.6317C35.4734 19.6255 35.7856 19.6271 36.0979 19.6239C36.9789 19.6153 37.8608 19.6067 38.7418 19.5973C38.7692 19.5973 38.7974 19.5989 38.8248 19.5973C38.8756 19.5934 38.9038 19.6114 38.8999 19.6662C38.8983 19.6936 38.8999 19.7209 38.8999 19.7491C38.8999 20.566 38.8999 21.3829 38.8999 22.2006C38.8999 22.2053 38.8999 22.21 38.8999 22.2147C38.9014 22.3696 38.8975 22.3485 38.7669 22.35C37.7246 22.3626 36.6831 22.3727 35.6409 22.3876C34.4977 22.404 33.3553 22.4236 32.2121 22.4424C32.0838 22.4447 31.9555 22.4471 31.8271 22.4557C31.7575 22.4604 31.7372 22.4306 31.7419 22.3673C31.745 22.3305 31.7419 22.2937 31.7419 22.2569C31.7419 18.8328 31.7419 15.408 31.7419 11.9839L31.7434 11.9831Z\" fill=\"white\"/>\\n<path d=\"M55.1497 12.0185C55.1497 8.60855 55.1497 5.19855 55.1497 1.78777C55.1497 1.60389 55.1231 1.61876 55.3179 1.61876C56.3093 1.61641 57.3015 1.61485 58.2928 1.61328C58.3202 1.61328 58.3476 1.61328 58.3758 1.61328C58.4446 1.61432 58.4796 1.6498 58.4806 1.7197C58.4806 1.75178 58.4806 1.78386 58.4806 1.81594C58.4806 7.7048 58.4806 13.5929 58.4806 19.4817C58.4806 19.6672 58.4806 19.6664 58.6598 19.6672C59.8672 19.6711 61.0745 19.6758 62.2819 19.6805C62.4031 19.6805 62.4047 19.6813 62.4047 19.7978C62.4047 20.6421 62.4047 21.4872 62.4047 22.3315C62.4047 22.4465 62.4031 22.4481 62.2803 22.4473C61.5323 22.4441 60.7834 22.4395 60.0354 22.4363C59.3836 22.4332 58.7318 22.4316 58.0792 22.4301C57.1567 22.4285 56.2334 22.4277 55.3108 22.4262C55.3015 22.4262 55.2929 22.4262 55.2835 22.4262C55.1504 22.4254 55.1497 22.4254 55.1497 22.2908C55.1497 20.8683 55.1497 19.4449 55.1497 18.0224C55.1497 16.0217 55.1497 14.0201 55.1497 12.0193V12.0185Z\" fill=\"white\"/>\\n<path d=\"M97.3394 12.0012C97.3394 15.6225 97.3394 19.2445 97.3394 22.8658C97.3394 23.0669 97.3699 23.0426 97.1657 23.0356C96.1289 23.0012 95.0921 22.9644 94.0554 22.9284C93.9505 22.9245 93.9497 22.9245 93.9482 22.8204C93.9482 22.793 93.9482 22.7656 93.9482 22.7375C93.9482 15.5771 93.9482 8.41673 93.9482 1.25637C93.9482 1.03023 93.9231 1.06936 94.1352 1.06153C95.089 1.02632 96.0436 0.992674 96.9975 0.959028C97.089 0.955898 97.1813 0.955116 97.2729 0.950421C97.3191 0.948074 97.3418 0.963723 97.3394 1.01224C97.3378 1.05371 97.3394 1.09518 97.3394 1.13587C97.3394 4.75713 97.3394 8.37917 97.3394 12.0004V12.0012Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hm5lz4\",\"data-framer-name\":\"Monday\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:144,svg:'<svg width=\"144\" height=\"28\" viewBox=\"0 0 144 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.88595 21.5701C2.81288 21.5725 1.82156 20.9972 1.29114 20.0644C0.768375 19.1373 0.799723 17.9975 1.37266 17.1005L6.71624 8.70928C7.27304 7.79114 8.28078 7.24359 9.35407 7.27602C10.4266 7.30172 11.4021 7.90306 11.907 8.84966C12.4051 9.79158 12.3429 10.9248 11.7462 11.809L6.40604 20.2003C5.85566 21.0579 4.90501 21.5747 3.88595 21.5701Z\" fill=\"white\"/>\\n<path d=\"M13.0515 21.5698C11.9737 21.5698 10.9819 20.9935 10.4612 20.0674C9.93956 19.1429 9.97092 18.0059 10.5427 17.1115L15.8761 8.73948C16.4248 7.80816 17.4356 7.24776 18.5162 7.27565C19.603 7.29943 20.5879 7.90737 21.0861 8.85835C21.5808 9.80933 21.5084 10.9494 20.8936 11.8313L15.5614 20.2033C15.0127 21.0572 14.0664 21.5724 13.0515 21.5698Z\" fill=\"white\"/>\\n<path d=\"M22.0118 21.6405C23.5311 21.6405 24.7628 20.4347 24.7628 18.9472C24.7628 17.4597 23.5311 16.2539 22.0118 16.2539C20.4924 16.2539 19.2607 17.4597 19.2607 18.9472C19.2607 20.4347 20.4924 21.6405 22.0118 21.6405Z\" fill=\"white\"/>\\n<path d=\"M141.525 16.4099C142.356 16.4099 142.853 17.0009 142.853 17.9688V21.2859H143.982V17.893C143.982 16.2469 143.206 15.2925 141.748 15.2925C141.178 15.2925 140.272 15.4487 139.732 16.4982C139.476 15.8675 138.895 15.4283 138.218 15.3548C138.009 15.3165 137.796 15.304 137.584 15.3174C137.12 15.3548 136.294 15.6435 135.984 16.2978V15.4182H134.855V21.2859H135.984V18.1194C135.984 16.8877 136.791 16.4099 137.598 16.4099C138.354 16.4099 138.851 16.9884 138.851 17.9564V21.2859H139.974V18.1194C139.974 17.139 140.563 16.3986 141.525 16.4099ZM130.708 20.3055C131.224 20.3168 131.722 20.1108 132.083 19.7372C132.445 19.3636 132.638 18.8553 132.619 18.3334C132.619 17.1514 131.749 16.4099 130.708 16.4099C129.665 16.4099 128.797 17.1514 128.797 18.3334C128.776 18.8541 128.969 19.3613 129.329 19.7338C129.689 20.1074 130.185 20.3146 130.699 20.3055H130.708ZM130.708 21.4059C129.057 21.4059 127.679 20.1866 127.679 18.3266C127.679 16.4665 129.057 15.2857 130.708 15.2857C132.358 15.2857 133.747 16.4665 133.747 18.3266C133.747 20.1866 132.35 21.4116 130.7 21.4116L130.708 21.4059ZM121.866 18.3266L121.855 18.3334C121.855 16.4733 123.269 15.2925 124.931 15.2857C125.775 15.2694 126.587 15.6117 127.164 16.2276L126.308 16.9567C125.941 16.5962 125.445 16.3973 124.931 16.4042C123.889 16.4042 122.983 17.1458 122.983 18.3266C122.983 19.1247 123.458 19.8436 124.186 20.1493C124.914 20.455 125.751 20.2851 126.308 19.7213L127.177 20.4504C126.597 21.0728 125.781 21.42 124.931 21.4059C123.281 21.4059 121.866 20.1866 121.866 18.3266ZM118.251 20.1595C118.249 19.9523 118.329 19.7526 118.473 19.6044C118.618 19.4562 118.816 19.3716 119.023 19.3693C119.23 19.3716 119.428 19.4562 119.573 19.6044C119.718 19.7526 119.798 19.9523 119.795 20.1595C119.774 20.5719 119.436 20.8968 119.023 20.901C118.61 20.8968 118.272 20.5719 118.251 20.1595Z\" fill=\"white\"/>\\n<path d=\"M121.34 7.95856H117.319L114.502 15.2233L111.698 7.95856H107.678L112.566 19.4382L109.526 27.0279H113.517L121.34 7.95856ZM96.8904 14.3437C96.8904 16.1777 98.4935 17.3846 100.068 17.3846C101.616 17.3846 103.136 16.2615 103.136 14.3426C103.136 12.4236 101.616 11.2994 100.068 11.2994C98.4935 11.2994 96.8904 12.5074 96.8904 14.3426V14.3437ZM103.136 20.7537V19.3012C102.321 20.5352 100.419 21.0017 99.4433 21.0017C96.2122 21.0017 92.98 18.4544 92.98 14.3426C92.98 10.2318 96.2111 7.68459 99.4433 7.68459C100.257 7.68459 102.159 7.9563 103.136 9.38276V7.96309H106.884V20.756L103.136 20.7549V20.7537ZM91.9136 20.7537H88.1663V19.1642C87.5402 20.3416 86.0221 21.0277 84.4462 21.0277C81.1868 21.0277 78.3078 18.425 78.3078 14.3946C78.3078 10.2885 81.1868 7.68232 84.4462 7.68232C86.0198 7.68232 87.5425 8.33895 88.1663 9.51748V0.989258H91.9136V20.7537ZM88.0848 14.3143C88.0848 12.3965 86.7002 11.2723 85.1526 11.2723C83.5495 11.2723 82.2182 12.478 82.2182 14.3143C82.2182 16.2094 83.5495 17.4095 85.1515 17.4095C86.7285 17.4117 88.0848 16.1505 88.0848 14.3143ZM69.0426 13.9837C69.0426 12.0387 70.0479 11.3809 71.3782 11.3809C72.654 11.3809 73.5779 12.23 73.5779 13.9282V20.7515H77.3523V13.1074C77.3523 9.46427 75.5591 7.68232 72.7073 7.68232C71.214 7.68232 69.7207 8.53141 69.0415 9.81976V7.95856H65.2693V20.7515H69.0426V13.9837ZM57.6048 20.9711C54.0206 20.9711 51.0306 18.3412 51.0306 14.3131C51.0306 10.2828 54.0172 7.67893 57.6048 7.67893C61.1925 7.67893 64.2051 10.2828 64.2051 14.3131C64.2051 18.3435 61.1891 20.9722 57.6048 20.9722V20.9711ZM57.6048 17.2464C59.1785 17.2464 60.4838 16.0939 60.4838 14.3143C60.4838 12.5878 59.1796 11.4092 57.6048 11.4092C56.8385 11.3973 56.101 11.7006 55.5648 12.2481C55.0256 12.7985 54.7327 13.5441 54.753 14.3143C54.7542 16.0962 56.0572 17.2464 57.6048 17.2464ZM44.264 11.3821C45.3769 11.3821 46.355 12.2595 46.355 13.9293V20.7537H50.1023V13.4878C50.1023 9.62503 48.2241 7.68006 45.2138 7.68006C44.3195 7.68006 42.6349 7.95177 41.4122 9.95335C40.7057 8.47367 39.3483 7.7061 37.3422 7.7061C35.9197 7.69886 34.6243 8.52407 34.0297 9.81636V7.95969H30.2529V20.7526H34.0263V13.9837C34.0263 12.0387 35.0859 11.3809 36.226 11.3809C37.3128 11.3809 38.2887 12.23 38.317 13.8467V20.7526H42.0915V13.9837C42.0915 12.1236 43.0696 11.3832 44.264 11.3832V11.3821Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18c8owt\",\"data-framer-name\":\"N26\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:43,svg:'<svg width=\"43\" height=\"30\" viewBox=\"0 0 43 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.961 6.77002V17.9822C10.961 18.9809 11.0064 19.571 11.0518 20.1611H11.0064C10.7794 19.4802 10.4616 18.9355 10.0531 18.1638L3.38024 6.77002H0.338867V23.1571H2.69933V11.9903C2.69933 10.9916 2.65394 10.4015 2.60855 9.81139H2.65394C2.88091 10.4923 3.19866 11.037 3.60721 11.8087L10.2347 23.2025H13.2307V6.77002H10.961Z\" fill=\"white\"/>\\n<path d=\"M37.9254 12.2618C35.9735 12.2618 34.5663 13.1697 33.8854 14.4861C33.8854 11.3086 34.9748 8.58497 37.6076 8.58497C39.2872 8.58497 39.9227 9.53823 40.2859 11.127L42.6917 10.6277C42.1016 7.90406 40.3766 6.58765 37.6076 6.58765C34.1123 6.58765 31.4795 9.26587 31.4795 15.3032C31.4795 20.6597 33.6584 23.3379 37.4261 23.3379C40.5582 23.3379 42.8733 21.2044 42.8733 17.7091C42.8733 14.9855 41.4207 12.2618 37.9254 12.2618ZM37.4261 21.386C35.4741 21.386 34.1577 19.6156 33.9307 17.2551C34.5209 15.2578 35.8373 14.2592 37.3807 14.2592C39.378 14.2592 40.4674 15.7118 40.4674 17.7999C40.4674 20.0242 39.1964 21.386 37.4261 21.386Z\" fill=\"white\"/>\\n<path d=\"M20.7209 21.0704C21.9466 20.2079 23.7169 18.8007 24.534 18.0291C25.4419 17.1212 27.9839 14.8515 27.9839 11.5832C27.9839 8.17864 25.7596 6.63525 22.809 6.63525C19.1775 6.63525 17.4072 8.85954 17.4072 11.4016C17.4072 11.8101 17.4526 12.2187 17.5888 12.718L20.0854 12.945C19.9492 12.4002 19.9038 11.9463 19.9038 11.5378C19.9038 9.63123 21.1749 8.72336 22.7636 8.72336C24.307 8.72336 25.4419 9.58584 25.4419 11.6739C25.4419 13.7621 24.3978 15.2146 22.8544 16.8034C21.2203 18.4376 18.5874 20.3895 17.3164 21.2974V23.2493H28.2109V21.1158H20.7209V21.0704Z\" fill=\"white\"/>\\n<path d=\"M13.4127 27.469V29.6025H0.203125V27.469H13.4127Z\" fill=\"white\"/>\\n<path d=\"M13.4127 0.415039V2.54854H0.203125V0.415039H13.4127Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-t5hqrb\",\"data-framer-name\":\"Playtika\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"28\" viewBox=\"0 0 98 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M46.5918 7.58206C46.5918 7.26938 46.7795 7.11304 47.0921 7.11304H50.4066C50.7193 7.11304 50.8756 7.26938 50.8756 7.58206V20.2457C50.8756 25.1236 48.8432 27.2811 44.2154 27.2811C41.8391 27.2811 40.1506 26.8433 38.6497 25.7489C38.3683 25.5926 38.337 25.3425 38.5246 25.0923L40.0255 22.841C40.1818 22.5909 40.4007 22.5283 40.6821 22.6847C41.5889 23.2162 42.7458 23.6227 44.0904 23.6227C45.7789 23.6227 46.7482 22.9661 46.7169 20.9024C45.9352 21.1212 45.0597 21.3088 44.1529 21.3088C40.7447 21.3088 38.1807 19.1201 38.1807 15.3366V7.61333C38.1807 7.30064 38.3683 7.1443 38.6809 7.1443H41.9954C42.3081 7.1443 42.4644 7.30064 42.4644 7.61333V15.2428C42.4644 16.9 43.3712 17.6192 44.7783 17.6192C45.4662 17.6192 46.1854 17.4628 46.5918 17.2127V7.58206Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.31986 9.36567C9.31986 7.89606 8.288 6.80167 6.75586 6.80167H3.91044V11.8984H6.75586C8.31927 11.8984 9.31986 10.8353 9.31986 9.36567ZM13.2284 9.36567C13.2284 12.8677 10.5081 15.4943 6.94347 15.4943H3.94171V21.06H0.0957031V3.26835H6.97473C10.5081 3.23708 13.2284 5.83235 13.2284 9.36567Z\" fill=\"white\"/>\\n<path d=\"M9.31986 9.36567C9.31986 7.89606 8.288 6.80167 6.75586 6.80167H3.91044V11.8984H6.75586C8.31927 11.8984 9.31986 10.8353 9.31986 9.36567ZM13.2284 9.36567C13.2284 12.8677 10.5081 15.4943 6.94347 15.4943H3.94171V21.06H0.0957031V3.26835H6.97473C10.5081 3.23708 13.2284 5.83235 13.2284 9.36567Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.1045 21.0278H18.8254V3.11108H15.1045V21.0278Z\" fill=\"white\"/>\\n<path d=\"M15.1045 21.0278H18.8254V3.11108H15.1045V21.0278Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M32.1775 14.149C32.1775 11.9915 30.5828 10.3968 28.4253 10.3968C26.2678 10.3968 24.6731 11.9915 24.6731 14.149C24.6731 16.3065 26.2678 17.9012 28.4253 17.9012C30.6141 17.9012 32.1775 16.3065 32.1775 14.149ZM35.8359 7.26999V20.9968H32.9279L32.6152 19.7773C31.4271 20.8092 29.8949 21.4033 28.1439 21.4033C24.0165 21.4033 20.9209 18.2764 20.9209 14.1178C20.9209 9.99034 23.9852 6.89478 28.1439 6.89478C29.8949 6.89478 31.4896 7.52014 32.6778 8.58326L33.0843 7.26999H35.8359Z\" fill=\"white\"/>\\n<path d=\"M32.1775 14.149C32.1775 11.9915 30.5828 10.3968 28.4253 10.3968C26.2678 10.3968 24.6731 11.9915 24.6731 14.149C24.6731 16.3065 26.2678 17.9012 28.4253 17.9012C30.6141 17.9012 32.1775 16.3065 32.1775 14.149ZM35.8359 7.26999V20.9968H32.9279L32.6152 19.7773C31.4271 20.8092 29.8949 21.4033 28.1439 21.4033C24.0165 21.4033 20.9209 18.2764 20.9209 14.1178C20.9209 9.99034 23.9852 6.89478 28.1439 6.89478C29.8949 6.89478 31.4896 7.52014 32.6778 8.58326L33.0843 7.26999H35.8359Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M60.7564 17.7126V21.0271H58.0986C55.0655 21.0271 53.2207 19.1823 53.2207 16.118V7.26903L56.0036 3.95459H56.8791V7.3003H60.6626V10.2708H56.9416V15.6177C56.9416 16.9309 57.6921 17.7126 59.0679 17.7126H60.7564Z\" fill=\"white\"/>\\n<path d=\"M60.7564 17.7126V21.0271H58.0986C55.0655 21.0271 53.2207 19.1823 53.2207 16.118V7.26903L56.0036 3.95459H56.8791V7.3003H60.6626V10.2708H56.9416V15.6177C56.9416 16.9309 57.6921 17.7126 59.0679 17.7126H60.7564Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M63.6953 21.0278H67.4162V7.30103H63.6953V21.0278Z\" fill=\"white\"/>\\n<path d=\"M63.6953 21.0278H67.4162V7.30103H63.6953V21.0278Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M78.454 21.0289L74.0764 14.4626V21.0289H70.3555V3.3623H74.0764V13.3994L78.2038 7.30211H82.4876L77.8286 13.8372L82.9879 21.0289H78.454Z\" fill=\"white\"/>\\n<path d=\"M78.454 21.0289L74.0764 14.4626V21.0289H70.3555V3.3623H74.0764V13.3994L78.2038 7.30211H82.4876L77.8286 13.8372L82.9879 21.0289H78.454Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M93.7751 14.149C93.7751 11.9915 92.1805 10.3968 90.023 10.3968C87.8654 10.3968 86.2708 11.9915 86.2708 14.149C86.2708 16.3065 87.8654 17.9012 90.023 17.9012C92.2117 17.9012 93.7751 16.3065 93.7751 14.149ZM97.4335 7.26999V20.9968H94.5256L94.2129 19.7773C93.0247 20.8092 91.4926 21.4033 89.7415 21.4033C85.6141 21.4033 82.5186 18.2764 82.5186 14.1178C82.5186 9.99034 85.5829 6.89478 89.7415 6.89478C91.4926 6.89478 93.0872 7.52014 94.2754 8.58326L94.6819 7.26999H97.4335Z\" fill=\"white\"/>\\n<path d=\"M93.7751 14.149C93.7751 11.9915 92.1805 10.3968 90.023 10.3968C87.8654 10.3968 86.2708 11.9915 86.2708 14.149C86.2708 16.3065 87.8654 17.9012 90.023 17.9012C92.2117 17.9012 93.7751 16.3065 93.7751 14.149ZM97.4335 7.26999V20.9968H94.5256L94.2129 19.7773C93.0247 20.8092 91.4926 21.4033 89.7415 21.4033C85.6141 21.4033 82.5186 18.2764 82.5186 14.1178C82.5186 9.99034 85.5829 6.89478 89.7415 6.89478C91.4926 6.89478 93.0872 7.52014 94.2754 8.58326L94.6819 7.26999H97.4335Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M66.7597 5.17514C65.4465 6.08192 63.7892 5.92558 63.0701 4.86246C62.3509 3.79934 62.8199 2.20465 64.1645 1.32914C65.4777 0.422356 67.135 0.578698 67.8541 1.64182C68.542 2.67367 68.073 4.26836 66.7597 5.17514Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2qwrwz\",\"data-framer-name\":\"Roman\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:82,svg:'<svg width=\"82\" height=\"16\" viewBox=\"0 0 82 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M41.4699 2.62474C42.8857 0.924321 44.6984 0.395603 46.8268 0.84298C48.7229 1.24 49.9992 2.4853 50.1037 4.30967C50.3032 7.82864 50.1618 11.367 50.1618 14.9537H46.5712C46.5712 14.518 46.5712 14.1093 46.5712 13.7007C46.5654 11.2856 46.5906 8.86865 46.5421 6.45553C46.5112 4.90811 45.7326 4.08307 44.4563 4.07339C43.1491 4.06371 42.2756 4.95846 42.2485 6.46908C42.2059 8.91513 42.2272 11.365 42.2233 13.8111C42.2233 14.1597 42.2233 14.5102 42.2233 14.9344H38.4739C38.4739 14.58 38.4758 14.2101 38.4739 13.8401C38.4564 11.2314 38.4642 8.62269 38.408 6.0159C38.3867 5.0611 37.8871 4.36389 36.9032 4.13536C35.8806 3.89909 34.9355 4.25738 34.5211 5.14438C34.2848 5.64986 34.1647 6.25024 34.155 6.80994C34.1163 9.19208 34.1376 11.5762 34.1357 13.9602C34.1357 14.274 34.1357 14.5877 34.1357 14.9537H30.4366C30.4366 14.6574 30.4366 14.3534 30.4366 14.0474C30.4366 10.2786 30.456 6.50975 30.4192 2.74288C30.4114 2.03017 30.6186 1.699 31.3255 1.57311C32.1912 1.41818 33.0395 1.16641 33.9536 0.939815C34.0079 1.51308 34.0427 1.88299 34.0814 2.30325C36.3919 0.0256943 39.4751 0.167073 41.4699 2.6228V2.62474Z\" fill=\"white\"/>\\n<path d=\"M19.5686 15.3732C15.2614 15.3654 12.1181 12.288 12.1162 8.08151C12.1162 3.8382 15.366 0.683325 19.7216 0.700755C23.9088 0.716249 27.1469 3.94472 27.1372 8.09313C27.1275 12.3287 23.9533 15.3809 19.5686 15.3732ZM23.3858 8.04858C23.3742 5.72067 21.7939 4.00863 19.6383 3.98733C17.4634 3.96603 15.8076 5.7536 15.8289 8.10087C15.8482 10.4133 17.4731 12.1098 19.648 12.0905C21.8539 12.0711 23.3994 10.4017 23.3858 8.05052V8.04858Z\" fill=\"white\"/>\\n<path d=\"M65.5548 14.9372C63.0158 15.2103 62.4155 15.1057 62.0204 14.3407C59.3574 15.8687 56.5318 15.6848 54.7384 13.8643C53.3459 12.4505 53.0631 10.1381 54.0722 8.41053C55.3484 6.22981 58.0017 5.61394 61.7783 6.6249C62.0204 4.92835 61.3019 4.00649 59.6305 3.96582C58.9623 3.95032 58.2787 4.02973 57.626 4.17498C56.9753 4.31829 56.3555 4.59912 55.6428 4.84508C55.2051 4.05878 54.7732 3.27829 54.2871 2.40484C55.7842 1.31641 57.4594 0.876785 59.2277 0.710229C59.737 0.661812 60.2618 0.673432 60.7712 0.727659C63.7924 1.04528 65.3282 2.4029 65.5122 5.42802C65.702 8.56547 65.5548 11.7242 65.5548 14.9372ZM59.5472 12.5764C61.3232 12.4718 62.3922 11.1974 61.786 9.84175C61.4432 9.07288 60.4904 8.57322 59.4291 8.66811C58.4975 8.75333 57.6492 9.02059 57.3026 10.0374C57.0082 10.9011 57.32 11.5828 58.0366 12.0283C58.482 12.3052 59.0398 12.3982 59.5453 12.5744L59.5472 12.5764Z\" fill=\"white\"/>\\n<path d=\"M81.7054 14.9662H78.0237C78.0237 13.0644 78.0237 11.2051 78.0237 9.34786C78.0237 8.47828 78.0296 7.6087 78.0199 6.73913C78.0024 5.13361 77.1793 4.14008 75.8314 4.08004C74.3982 4.01807 73.3834 4.89539 73.3137 6.52609C73.2111 8.93728 73.2672 11.3562 73.2556 13.7713C73.2556 14.1489 73.2556 14.5266 73.2556 14.9565H69.6069C69.5875 14.6893 69.5488 14.4143 69.5488 14.1392C69.5449 10.3375 69.5643 6.53577 69.5275 2.73404C69.5216 2.05039 69.7405 1.75601 70.3873 1.62431C71.2821 1.44033 72.1614 1.18081 73.151 0.929038C73.1859 1.50424 73.2091 1.87802 73.242 2.38156C73.5674 2.10461 73.8134 1.87802 74.0748 1.67273C76.8404 -0.509927 80.7293 0.950342 81.4827 4.46932C81.6221 5.12586 81.6899 5.80758 81.6957 6.47961C81.719 9.27814 81.7054 12.0747 81.7054 14.9662Z\" fill=\"white\"/>\\n<path d=\"M0.658203 2.38735C2.40898 1.88768 4.15781 1.38802 6.06933 0.843804V2.57521C7.13452 1.43062 8.30815 0.721792 9.90786 0.706299V4.37247C9.78779 4.41507 9.64835 4.4906 9.49922 4.51191C7.39984 4.7966 6.36177 5.88503 6.28818 8.03282C6.22233 9.96371 6.25138 11.8985 6.23783 13.8313C6.23589 14.1799 6.23783 14.5266 6.23783 14.9449H2.48257C2.48257 14.6079 2.48257 14.269 2.48257 13.9281C2.48257 11.0599 2.48257 8.19357 2.48257 5.32532C2.48257 3.51645 2.3625 3.33827 0.727924 2.69335C0.704684 2.59264 0.681443 2.49193 0.658203 2.39122L0.658203 2.38735Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kg0e18\",\"data-framer-name\":\"The Oodie\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:85,svg:'<svg width=\"85\" height=\"32\" viewBox=\"0 0 85 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M71.8737 31.4272C71.2715 31.2112 70.6275 31.2001 70.0111 31.0449C66.7643 30.2282 64.2206 27.3794 63.7492 24.0758C63.5001 22.3283 63.5183 20.5996 64.0897 18.9309C65.2004 15.6903 67.3618 13.5187 70.7906 12.8148C72.7644 12.4096 74.7398 12.5333 76.5898 13.3996C79.113 14.5812 80.6138 16.6213 81.3153 19.2785C81.6732 20.6335 81.6645 22.0193 81.6385 23.4058C81.6353 23.5674 81.5817 23.6525 81.4099 23.6431C81.3051 23.6376 81.2002 23.6431 81.0954 23.6431C77.1061 23.6431 73.1175 23.6431 69.1282 23.6431C68.578 23.6431 68.5733 23.6447 68.7152 24.2004C69.1274 25.8132 70.0568 26.9798 71.6995 27.4378C73.1617 27.8453 74.4915 27.4346 75.714 26.6046C76.336 26.1821 76.8838 25.6792 77.3079 25.0541C77.4103 24.9027 77.5049 24.8696 77.6602 24.9792C78.7299 25.732 79.7995 26.4856 80.8763 27.2273C81.0773 27.366 81.004 27.4945 80.9031 27.6167C79.3833 29.4541 77.5562 30.7973 75.1378 31.2033C74.7059 31.2758 74.2581 31.2616 73.8419 31.4272H71.8737ZM72.5871 20.2685C73.8183 20.2685 75.0495 20.2646 76.2816 20.2725C76.5086 20.2741 76.6386 20.2252 76.5921 19.969C76.4369 19.109 76.1578 18.2979 75.5635 17.6365C74.7035 16.6812 73.6378 16.2768 72.3403 16.4006C71.3897 16.4912 70.5644 16.7836 69.896 17.4828C69.2212 18.1883 68.8949 19.0594 68.6624 19.98C68.5922 20.2583 68.7633 20.2725 68.9722 20.2717C70.1774 20.267 71.3826 20.2693 72.5878 20.2693L72.5871 20.2685Z\" fill=\"white\"/>\\n<path d=\"M0.931641 4.78848C1.24536 4.6734 1.5717 4.73646 1.89173 4.73409C2.07933 4.73252 2.1416 4.67891 2.13529 4.48973C2.12268 4.11058 2.13924 3.73064 2.1282 3.35148C2.12189 3.15363 2.17865 3.0685 2.39305 3.0748C2.8258 3.0882 3.25855 3.08899 3.69129 3.0748C3.89309 3.0685 3.9325 3.14969 3.92777 3.32783C3.91752 3.69438 3.9388 4.06171 3.9191 4.42667C3.90649 4.66 3.96088 4.74986 4.21548 4.73567C4.63404 4.71202 5.05496 4.73961 5.47431 4.72463C5.68241 4.71675 5.7502 4.78375 5.73916 4.98949C5.71946 5.35288 5.85425 5.81637 5.67689 6.05443C5.50899 6.27987 5.01713 6.11749 4.66872 6.12222C3.92462 6.13326 3.92462 6.12537 3.92462 6.87658C3.92462 7.68849 3.92304 8.49961 3.92462 9.31152C3.92619 9.87828 4.13665 10.0919 4.69552 10.1085C4.99742 10.1171 5.29853 10.1053 5.58703 10.0068C5.82508 9.92558 5.8976 10.0162 5.87553 10.244C5.86528 10.3481 5.87395 10.4529 5.87395 10.5578C5.87395 11.2916 5.87237 11.2822 5.12275 11.3933C4.56073 11.4761 4.00423 11.5045 3.44457 11.3878C2.72254 11.2372 2.27324 10.7556 2.19362 10.0273C2.06278 8.84014 2.15185 7.64829 2.14002 6.45959C2.13766 6.18213 2.06751 6.09621 1.7932 6.12064C1.50785 6.14508 1.21935 6.12616 0.931641 6.12616V4.79006L0.931641 4.78848Z\" fill=\"white\"/>\\n<path d=\"M38.3571 23.9685C38.1679 24.5715 38.0489 25.1832 37.7998 25.7594C36.5236 28.7091 34.337 30.5757 31.1667 31.1756C28.7949 31.6241 26.4561 31.4388 24.3058 30.2344C21.9568 28.918 20.4607 26.9371 19.9019 24.2846C19.8695 24.1324 19.7876 23.989 19.8073 23.8179C19.6362 24.0812 19.6402 24.3894 19.5574 24.6716C18.5082 28.2503 16.1656 30.4669 12.5002 31.1803C10.2703 31.6146 8.05845 31.4404 5.99561 30.3818C3.38099 29.0394 1.77927 26.9087 1.25351 24.0221C0.860964 21.8686 1.00206 19.7347 1.97318 17.7436C3.15161 15.3284 5.0568 13.7022 7.67773 13.0148C10.1749 12.3598 12.6524 12.4717 14.9753 13.6612C17.5221 14.965 19.1034 17.057 19.6749 19.879C19.6827 19.9176 19.689 19.9562 19.6993 19.9941C19.7229 20.0808 19.7489 20.1675 19.7891 20.3094C20.0083 18.848 20.5222 17.5552 21.3641 16.4067C22.8326 14.4022 24.7985 13.1914 27.2609 12.7996C29.2253 12.4875 31.1525 12.6104 32.9947 13.3987C35.3933 14.4258 37.0455 16.175 37.9346 18.632C38.1167 19.1349 38.2373 19.6528 38.3579 20.1817C38.6022 18.6359 39.1848 17.236 40.0912 15.9732C41.3343 14.2421 42.9723 13.0937 45.1006 12.7468C46.4493 12.5269 47.7869 12.6168 49.0678 13.1607C49.8963 13.5122 50.56 14.0648 51.0944 14.7797C51.2087 14.9327 51.3167 15.0903 51.4838 15.3244C51.4838 15.0801 51.4838 14.9295 51.4838 14.779C51.4838 11.6228 51.4893 8.46656 51.4759 5.31037C51.4743 4.95565 51.5602 4.84135 51.9307 4.84687C53.3606 4.86894 54.7913 4.86263 56.2212 4.85002C56.5049 4.84766 56.6074 4.91545 56.6074 5.21893C56.5995 13.6525 56.6003 22.0869 56.6066 30.5205C56.6066 30.7956 56.5231 30.8784 56.2487 30.876C54.7921 30.8642 53.3354 30.8634 51.8795 30.876C51.5626 30.8792 51.4696 30.7657 51.4783 30.4638C51.4964 29.8686 51.4838 29.2735 51.4538 28.6681C51.0605 29.3657 50.5765 29.9687 49.9207 30.4243C49.1246 30.9769 48.2212 31.2512 47.2753 31.3261C45.7477 31.4475 44.2343 31.364 42.8312 30.6443C40.7282 29.5651 39.448 27.8136 38.7347 25.6089C38.562 25.076 38.4288 24.5297 38.3563 23.9669L38.3571 23.9685ZM15.0289 22.0199C15.1787 19.4959 13.1048 16.7433 10.0535 17.0428C8.53061 17.1918 7.39475 17.9446 6.61911 19.2263C5.9294 20.3661 5.76938 21.6187 5.96802 22.928C6.20213 24.4698 6.96594 25.6506 8.32567 26.4357C9.1147 26.8914 9.9731 26.997 10.8654 26.9505C11.98 26.8914 12.9196 26.4287 13.6731 25.6396C14.6364 24.6306 15.088 23.4017 15.0289 22.0199ZM29.2284 17.0342C27.5029 17.0231 26.2764 17.6805 25.3967 18.9425C24.6022 20.0832 24.3641 21.3704 24.5446 22.7459C24.7866 24.5904 25.6955 25.9376 27.4446 26.6588C29.3987 27.4652 31.8131 26.6502 32.8922 24.8411C33.6591 23.5547 33.8326 22.1697 33.5157 20.7327C33.0727 18.7218 31.3181 16.9419 29.2284 17.035V17.0342ZM51.8771 22.0018C51.9236 21.0456 51.7037 20.095 51.2221 19.1948C49.7615 16.465 45.903 16.2341 44.2721 18.833C43.0377 20.8005 42.9715 22.8996 44.0837 24.9459C45.3615 27.2973 48.6674 27.7127 50.5324 25.7925C51.5334 24.7615 51.9189 23.4813 51.8771 22.0018Z\" fill=\"white\"/>\\n<path d=\"M62.8232 22.0005C62.8232 24.7759 62.8138 27.5514 62.8342 30.3268C62.8374 30.7399 62.7129 30.8242 62.3266 30.8179C60.9495 30.7951 59.5717 30.8006 58.1946 30.8156C57.8793 30.8187 57.7658 30.747 57.7666 30.4073C57.7769 24.7775 57.7761 19.1477 57.769 13.5188C57.769 13.2279 57.8234 13.1065 58.1528 13.1104C59.5827 13.1294 61.0126 13.1286 62.4425 13.1104C62.7696 13.1065 62.8303 13.2216 62.8295 13.5164C62.8201 16.3439 62.824 19.1722 62.824 22.0005H62.8232Z\" fill=\"white\"/>\\n<path d=\"M9.19964 5.48355C9.83418 4.97591 10.4987 4.69844 11.2325 4.59203C12.5481 4.40206 13.6588 5.07681 13.6146 6.59421C13.5854 7.60082 13.6178 8.60979 13.6028 9.61719C13.5996 9.85918 13.6619 9.92224 13.9047 9.92067C14.6322 9.91515 14.6322 9.92776 14.6322 10.6506C14.6322 11.0868 14.4163 11.3049 13.9843 11.3049C13.0266 11.3049 12.0696 11.2993 11.1119 11.3096C10.8975 11.3119 10.7927 11.2623 10.8258 11.0313C10.8384 10.9415 10.8258 10.8485 10.8282 10.757C10.836 10.4969 10.7549 10.1753 10.8794 9.9924C11.0205 9.78588 11.365 9.92619 11.6188 9.92067C11.819 9.91594 11.8552 9.8379 11.8545 9.66212C11.8482 8.69335 11.8639 7.72457 11.8474 6.75659C11.8363 6.10864 11.5061 5.86901 10.7864 5.96991C10.2472 6.04558 9.78215 6.30649 9.33916 6.61076C9.23826 6.68013 9.2225 6.76684 9.2225 6.87719C9.22565 7.80655 9.23196 8.73591 9.21856 9.66527C9.2154 9.89466 9.31236 9.91357 9.49917 9.9183C10.2236 9.93486 10.2236 9.94037 10.2236 10.6545C10.2236 11.0886 10.0065 11.3056 9.57248 11.3056C8.61476 11.3056 7.65783 11.2993 6.70011 11.3104C6.48019 11.3127 6.38402 11.2552 6.41713 11.029C6.42816 10.9517 6.41713 10.8721 6.41949 10.7933C6.42816 10.5197 6.34618 10.1879 6.47309 9.99003C6.60473 9.78509 6.95865 9.92619 7.21326 9.92067C7.41741 9.91594 7.44579 9.83081 7.445 9.65896C7.44106 7.172 7.43948 4.68504 7.44737 2.19808C7.44737 1.96869 7.34726 1.95372 7.16438 1.94978C6.4187 1.9348 6.4187 1.92928 6.4187 1.19856C6.4187 0.798128 6.61471 0.59791 7.00673 0.59791C7.60974 0.59791 8.21354 0.612887 8.81655 0.591604C9.10899 0.581356 9.21304 0.643629 9.20831 0.966027C9.1886 2.4448 9.19964 3.92358 9.19964 5.48276V5.48355Z\" fill=\"white\"/>\\n<path d=\"M20.6948 9.51434V10.208C20.6948 10.9167 20.6956 10.9206 19.9988 11.172C18.9591 11.5473 17.9099 11.5843 16.8568 11.2327C15.7391 10.8599 15.1061 10.0622 14.8689 8.93181C14.7025 8.13882 14.7396 7.3545 15.006 6.58595C15.5546 5.00233 17.0736 4.43321 18.5508 4.60032C20.802 4.85572 21.3136 6.96983 21.0913 8.43127C21.0534 8.67957 20.88 8.58025 20.7642 8.58104C19.5061 8.58813 18.2473 8.58498 16.9892 8.58577C16.5455 8.58577 16.5423 8.59128 16.685 9.01221C16.9538 9.8052 17.8784 10.2585 18.8716 10.1126C19.4951 10.0212 20.0926 9.86511 20.6932 9.51434H20.6948ZM17.9856 7.35766C18.3647 7.35766 18.7455 7.33795 19.1222 7.36396C19.4218 7.38446 19.4911 7.26306 19.4257 7.00609C19.2562 6.34474 18.9189 5.78744 17.9249 5.86784C17.2659 5.92066 16.6755 6.4748 16.5943 7.14404C16.5715 7.33401 16.6487 7.36317 16.8087 7.36002C17.2005 7.35293 17.593 7.35766 17.9848 7.35766H17.9856Z\" fill=\"white\"/>\\n<path d=\"M60.2238 11.7868C58.7995 11.7844 57.6935 10.6722 57.6943 9.24225C57.6951 7.78002 58.8168 6.66857 60.2853 6.67409C61.6671 6.67961 62.8156 7.84702 62.8172 9.24776C62.8187 10.6588 61.664 11.7891 60.2238 11.7868Z\" fill=\"white\"/>\\n<path d=\"M81.3956 13.6983C81.4051 12.9101 82.0057 12.326 82.7979 12.3331C83.5743 12.341 84.1718 12.9653 84.1553 13.7504C84.1387 14.5181 83.5152 15.0991 82.7199 15.0873C81.9435 15.0754 81.3862 14.4905 81.3956 13.6983ZM82.753 14.8571C83.4246 14.9564 83.9291 14.2407 83.9212 13.7117C83.9117 13.0732 83.4261 12.5774 82.7782 12.5656C82.1437 12.5538 81.6297 13.0843 81.6337 13.7464C81.6368 14.3526 82.1413 14.8531 82.753 14.8571Z\" fill=\"white\"/>\\n<path d=\"M82.6331 13.9418C82.5046 14.1538 82.7246 14.5046 82.4416 14.503C82.1271 14.5014 82.3028 14.1586 82.2768 13.9686C82.2477 13.751 82.2579 13.5256 82.2745 13.3049C82.2847 13.1646 82.1783 12.9391 82.3903 12.9036C82.6505 12.8603 82.95 12.7941 83.1731 13.014C83.3386 13.1772 83.382 13.457 83.2322 13.5839C82.9035 13.8622 83.0816 14.06 83.2464 14.2933C83.2913 14.3572 83.4135 14.436 83.2882 14.5133C83.1967 14.57 83.0864 14.5361 83.0131 14.4376C82.8932 14.2752 82.8176 14.0766 82.6323 13.9418H82.6331ZM82.5803 13.401C82.5976 13.498 82.5393 13.6604 82.7317 13.6446C82.868 13.6336 82.9831 13.5674 82.9807 13.3971C82.9784 13.2489 82.9279 13.1362 82.764 13.1244C82.5551 13.1086 82.5866 13.2655 82.5811 13.401H82.5803Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2nzbta\",\"data-framer-name\":\"Loop\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:65,svg:'<svg width=\"65\" height=\"33\" viewBox=\"0 0 65 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M50.1791 23.5171C50.1791 26.2232 50.156 28.7337 50.1951 31.2443C50.2058 31.8808 50.0191 32.0462 49.4092 32.007C48.586 31.9537 47.7504 31.943 46.9289 32.0088C46.2426 32.0639 46.1093 31.8221 46.1128 31.1749C46.1395 25.6471 46.1288 20.1193 46.1288 14.5915C46.1288 12.5219 46.1555 10.4523 46.111 8.38445C46.0968 7.74259 46.3031 7.57368 46.9022 7.60746C47.697 7.65191 48.5025 7.6768 49.2937 7.60568C50.0618 7.53456 50.3036 7.82082 50.1844 8.53914C50.1507 8.74005 50.1791 8.94986 50.1791 9.31968C51.2655 8.49113 52.3145 7.83505 53.5324 7.47589C58.4913 6.01792 63.7329 9.26634 64.5579 14.371C65.1482 18.0159 64.3712 21.2714 61.4463 23.7287C58.3846 26.2996 54.0303 26.353 50.7943 23.9758C50.6361 23.8584 50.4778 23.7411 50.1773 23.5188L50.1791 23.5171ZM50.1773 16.3677C50.1738 19.5823 52.3696 21.8795 55.4402 21.876C58.4593 21.8724 60.8098 19.449 60.7885 16.3606C60.7671 13.3664 58.4949 11.0408 55.5771 11.0283C52.3643 11.0141 50.1809 13.1726 50.1773 16.3677Z\" fill=\"white\"/>\\n<path d=\"M6.00294 16.436C5.99583 11.2425 10.0604 7.15483 15.2361 7.14771C20.4083 7.1406 24.5582 11.2442 24.5653 16.372C24.5724 21.594 20.4812 25.6905 15.2486 25.7012C10.0568 25.7119 6.01005 21.6562 6.00294 16.436ZM20.6128 16.4645C20.6484 13.4099 18.3334 10.9082 15.4353 10.8709C12.306 10.83 9.95011 13.1467 9.92167 16.2938C9.89144 19.5458 12.1335 21.9354 15.261 21.987C18.1965 22.035 20.5773 19.5778 20.6128 16.4645Z\" fill=\"white\"/>\\n<path d=\"M26.0459 16.391C26.0423 11.2295 30.146 7.14537 35.3307 7.14893C40.4851 7.15248 44.6154 11.2739 44.619 16.4212C44.6243 21.5703 40.5367 25.6615 35.3378 25.7131C30.1442 25.7629 26.0495 21.6557 26.0459 16.391ZM40.6736 16.4568C40.7162 13.4324 38.3746 10.913 35.4818 10.8685C32.4023 10.8205 30.0233 13.1213 29.9717 16.1972C29.9184 19.4741 32.1231 21.9082 35.2222 21.9882C38.2092 22.0664 40.6291 19.611 40.6736 16.4568Z\" fill=\"white\"/>\\n<path d=\"M4.42119 12.6504C4.42119 16.5833 4.39985 20.5145 4.44074 24.4475C4.44786 25.1498 4.22916 25.2938 3.59619 25.2547C2.7712 25.2031 1.93909 25.2013 1.11587 25.2547C0.500682 25.2956 0.374444 25.052 0.381556 24.4937C0.406448 22.1876 0.394002 19.8815 0.394002 17.5755C0.392224 12.0192 0.402892 6.45936 0.378 0.901307C0.374444 0.230998 0.504238 -0.0552611 1.24033 0.0087471C2.03155 0.0780894 2.84054 0.0780894 3.63175 0.0087471C4.33762 -0.0534831 4.44074 0.225664 4.43541 0.855078C4.40696 4.78625 4.42119 8.7192 4.42119 12.6522V12.6504Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hym7nj\",\"data-framer-name\":\"Pleo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:37,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"37\" viewBox=\"0 0 38 37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.28801 4.91323C7.28801 5.89302 6.49112 6.67685 5.51133 6.67685H2.63728V3.14961H5.52439C6.49112 3.13654 7.28801 3.93344 7.28801 4.91323ZM9.8224 4.91323C9.8224 2.60092 7.9412 0.719727 5.61584 0.719727H0.194336V12.6078H2.63728V9.09366H5.61584C7.9412 9.10673 9.8224 7.22553 9.8224 4.91323ZM16.2106 26.965H25.0026V24.5482H18.6274V22.5886C19.5942 22.4319 20.5478 22.1967 21.4623 21.8571L22.6511 21.4259L21.7889 19.0614L20.6001 19.4925C19.96 19.7276 19.2937 19.9105 18.6274 20.0412V17.4807H25.0026V15.0638H16.2106V20.1979C14.7344 20.0542 13.6893 19.4794 12.9839 18.8654C11.7428 17.7811 10.4625 15.6256 11.3509 11.419L11.6121 10.191L9.14308 9.66847L8.8818 10.8965C7.96733 15.1553 8.81648 18.565 11.3117 20.7466C12.3437 21.648 13.5587 22.2359 14.9042 22.5233C15.3223 22.6148 15.7534 22.667 16.1845 22.6931L16.2106 26.965ZM34.8397 29.9697C34.8397 30.4792 34.7613 30.9887 34.6045 31.4721C34.4478 31.9293 34.2257 32.3343 33.9383 32.6739C33.6509 33.0136 33.2851 33.2749 32.8801 33.4578C32.4621 33.6537 32.0048 33.7452 31.4953 33.7452C30.9859 33.7452 30.5156 33.6537 30.0975 33.4578C29.6925 33.2749 29.3267 33.0136 29.0393 32.6739C28.7519 32.3343 28.5298 31.9424 28.3731 31.4721C28.2163 30.9887 28.1379 30.4792 28.1379 29.9697C28.1379 29.4341 28.2163 28.9246 28.3731 28.4674C28.5298 28.0101 28.7519 27.6051 29.0393 27.2655C29.3267 26.9258 29.6925 26.6515 30.0975 26.4686C30.5156 26.2726 30.9728 26.1812 31.4953 26.1812C32.0048 26.1812 32.4751 26.2726 32.8801 26.4686C33.2851 26.6515 33.6509 26.9258 33.9383 27.2655C34.2257 27.6051 34.4478 28.0101 34.6045 28.4674C34.7613 28.9246 34.8397 29.421 34.8397 29.9697ZM37.2434 29.9697C37.2434 29.0814 37.1128 28.2583 36.8385 27.5006C36.5772 26.7429 36.1853 26.0897 35.6888 25.528C35.1794 24.9663 34.5653 24.5351 33.873 24.2347C33.1675 23.9211 32.3706 23.7644 31.4953 23.7644C30.6201 23.7644 29.8232 23.9211 29.1047 24.2347C28.4123 24.5351 27.7852 24.9793 27.2888 25.528C26.7924 26.0767 26.4004 26.7429 26.1392 27.5006C25.8779 28.2583 25.7342 29.0814 25.7342 29.9697C25.7342 30.8581 25.8648 31.6811 26.1392 32.4388C26.4004 33.1965 26.7924 33.8497 27.2888 34.3984C27.7983 34.947 28.4123 35.3912 29.1047 35.6917C29.8232 36.0052 30.6201 36.162 31.4953 36.162C32.3706 36.162 33.1675 36.0052 33.873 35.6917C34.5653 35.3912 35.1794 34.9601 35.6888 34.3984C36.1853 33.8497 36.5772 33.1965 36.8385 32.4388C37.1128 31.6811 37.2434 30.8581 37.2434 29.9697Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13nc5r0\",\"data-framer-name\":\"Future Play\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:44,svg:'<svg width=\"44\" height=\"45\" viewBox=\"0 0 44 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.53455 33.713C8.76134 32.7179 8.31008 31.6418 7.79171 30.5472C5.3688 25.4191 2.98523 20.2724 0.587777 15.1327C0.36099 14.649 0.437357 14.4477 0.927956 14.2186C3.38095 13.0754 5.83395 11.9299 8.28925 10.7937C8.4767 10.7057 8.54844 10.6109 8.53687 10.4049C8.51835 10.0277 8.53687 9.64586 8.52993 9.26865C8.5253 9.01178 8.62943 8.90302 8.89325 8.90533C9.94618 8.91227 11.0014 8.90533 12.0567 8.90996C12.2372 8.90996 12.3992 8.87525 12.5635 8.79888C18.1614 6.18621 23.7593 3.57585 29.3572 0.963183C29.8779 0.720198 30.0654 0.787308 30.3084 1.31031C31.4469 3.75636 32.5878 6.2001 33.7194 8.64846C33.8097 8.84285 33.9092 8.92384 34.1313 8.91227C34.5826 8.89145 35.0362 8.90533 35.4897 8.90765C35.8114 8.90765 35.8646 8.96087 35.8669 9.27328C35.8669 9.59726 35.8646 9.92124 35.8669 10.2452C35.8692 10.4535 35.779 10.553 35.5684 10.5484C35.337 10.5437 35.1056 10.5623 34.8742 10.5437C34.6103 10.5206 34.6358 10.6178 34.7214 10.8006C35.5244 12.5085 36.3205 14.2186 37.1166 15.9288C39.2641 20.5339 41.4139 25.1391 43.5615 29.7442C43.7929 30.2394 43.7235 30.4269 43.2282 30.6583C40.0995 32.1185 36.9708 33.5788 33.8397 35.0297C33.6546 35.1153 33.5551 35.2056 33.5921 35.4139C33.606 35.4856 33.5875 35.562 33.5944 35.636C33.6176 35.8952 33.488 35.9808 33.2473 35.9762C32.8585 35.967 32.4698 35.9808 32.0833 35.9716C31.9121 35.967 31.7593 36.0017 31.6043 36.0734C26.0064 38.6861 20.4084 41.2964 14.8105 43.9091C14.2667 44.1637 14.0908 44.0989 13.8386 43.562C12.6954 41.109 11.5476 38.6583 10.4113 36.2007C10.335 36.0341 10.254 35.9623 10.0642 35.9693C9.67543 35.9855 9.28665 35.9762 8.90019 35.9739C8.59009 35.9739 8.53224 35.9114 8.52993 35.5944C8.52761 35.0482 8.52993 34.5044 8.52993 33.713H8.53455ZM13.5192 8.9007C13.6743 9.01641 13.6789 9.17609 13.6743 9.34271C13.6673 9.60189 13.6743 9.86107 13.6743 10.1203C13.6743 10.5229 13.628 10.5692 13.2323 10.5692C12.3807 10.5692 11.5314 10.5738 10.6798 10.5669C10.5085 10.5669 10.4322 10.597 10.4414 10.7914C10.4576 11.113 10.4553 11.4393 10.4414 11.761C10.4345 11.9369 10.4784 11.997 10.6659 11.9924C11.4527 11.9808 12.2372 11.9878 13.024 11.9878C13.3457 11.9878 13.3989 12.041 13.4012 12.3534C13.4012 12.6311 13.4012 12.9088 13.4012 13.1865C13.4012 13.5822 13.3619 13.6216 12.9523 13.6216C12.221 13.6216 11.492 13.6308 10.7608 13.6169C10.5201 13.6123 10.4275 13.6586 10.4368 13.927C10.4599 14.5634 10.4414 15.2021 10.446 15.8408C10.446 16.0815 10.3442 16.1995 10.0966 16.1949C9.75411 16.1879 9.41161 16.1949 9.07144 16.1949C8.56001 16.1949 8.53455 16.1694 8.53455 15.6719C8.53455 14.2857 8.52993 12.8972 8.53918 11.5111C8.53918 11.2588 8.49058 11.2449 8.27305 11.3491C5.9242 12.4529 3.57071 13.5521 1.21491 14.6398C1.01127 14.7347 0.974239 14.7948 1.07375 15.01C3.49666 20.1868 5.91031 25.3705 8.32628 30.5518C8.37951 30.6629 8.43273 30.774 8.48364 30.8874C8.53455 30.2973 8.53224 29.7188 8.53455 29.1402C8.53455 28.7607 8.59472 28.7028 8.96267 28.7005C9.32368 28.7005 9.68468 28.7005 10.0434 28.7005C10.409 28.7005 10.4599 28.7514 10.4599 29.1148C10.4599 30.7601 10.4646 32.4055 10.4553 34.0532C10.4553 34.2661 10.5039 34.3285 10.7237 34.3262C11.5915 34.3123 12.4617 34.3193 13.3318 34.3216C13.6558 34.3216 13.7182 34.3887 13.7206 34.715C13.7206 34.9927 13.7206 35.2704 13.7206 35.5481C13.7206 35.9392 13.6789 35.9832 13.2971 35.9832C12.5658 35.9832 11.8368 35.9901 11.1056 35.9785C10.8927 35.9762 10.8765 36.0317 10.9598 36.2099C12.0752 38.5958 13.186 40.9817 14.2968 43.3699C14.3569 43.5018 14.4009 43.5666 14.5745 43.4856C20.2117 40.8498 25.8513 38.2186 31.4932 35.5921C31.6459 35.5203 31.6876 35.4347 31.6853 35.2773C31.676 34.7405 31.6783 34.2059 31.6853 33.669C31.6876 33.4769 31.639 33.3103 31.5464 33.1437C30.8128 31.8223 30.0862 30.4963 29.3596 29.1726C29.1837 28.8533 29.2693 28.7052 29.628 28.7005C30.0353 28.6982 30.4426 28.7121 30.8475 28.6959C31.0813 28.6866 31.2178 28.7676 31.3266 28.9782C31.7686 29.8252 32.2268 30.6606 32.6942 31.5284C32.7521 31.4243 32.7961 31.3456 32.84 31.2669C33.245 30.5125 33.6569 29.7604 34.0526 29.0014C34.1637 28.7908 34.2956 28.682 34.5479 28.6959C34.9158 28.7167 35.2884 28.7005 35.6563 28.7005C36.0752 28.7005 36.1562 28.8417 35.9549 29.205C35.293 30.3875 34.6659 31.5909 33.9554 32.741C33.5898 33.3311 33.5713 33.9259 33.613 34.5599C33.6801 34.5923 33.724 34.5461 33.7703 34.5252C36.8504 33.0905 39.9283 31.6534 43.0107 30.2256C43.1981 30.1399 43.1611 30.0613 43.094 29.9178C41.7379 27.0158 40.3841 24.1116 39.0304 21.2073C37.4082 17.7292 35.7813 14.251 34.1683 10.7682C34.0596 10.5345 33.9115 10.5368 33.731 10.5576C33.5181 10.5808 33.6176 10.759 33.6176 10.8631C33.6106 12.5085 33.613 14.1538 33.613 15.8015C33.613 16.1532 33.5667 16.1972 33.2103 16.1995C32.8493 16.1995 32.4883 16.1995 32.1296 16.1995C31.7408 16.1995 31.7061 16.1648 31.7061 15.7691C31.7061 14.133 31.6992 12.4969 31.713 10.8585C31.7154 10.5923 31.632 10.5414 31.3891 10.5484C30.8522 10.5646 30.3176 10.5484 29.7807 10.5576C29.5516 10.5623 29.4614 10.4628 29.4637 10.2452C29.466 9.92124 29.4729 9.59726 29.4637 9.27328C29.4544 9.01178 29.5609 8.90996 29.8247 8.91227C30.7504 8.92153 31.6737 8.9169 32.5994 8.9169C32.8192 8.9169 33.039 8.9169 33.2658 8.9169C33.2612 8.86136 33.2658 8.83128 33.2543 8.80814C32.1157 6.3644 30.9725 3.92066 29.8386 1.4723C29.7645 1.31031 29.6905 1.36816 29.5887 1.41444C28.7301 1.8171 27.8692 2.21514 27.0107 2.6178C22.5213 4.7121 18.0341 6.80409 13.5239 8.90765L13.5192 8.9007Z\" fill=\"white\"/>\\n<path d=\"M37.1816 11.447C37.1816 10.7157 37.1862 9.98677 37.1792 9.2555C37.1769 9.0102 37.2649 8.89913 37.5194 8.90607C37.9267 8.91764 38.334 8.91764 38.739 8.90607C39.0074 8.89913 39.093 9.01715 39.0907 9.27402C39.0815 10.4936 39.0861 11.7154 39.0884 12.935C39.0884 13.1294 39.093 13.3215 39.1324 13.5135C39.2805 14.2587 39.7341 14.6289 40.4676 14.5896C41.0971 14.5549 41.5599 14.0805 41.5877 13.3701C41.6201 12.5393 41.6108 11.7062 41.6155 10.8754C41.6178 10.3293 41.6201 9.78544 41.6155 9.2393C41.6131 9.00558 41.708 8.90144 41.9464 8.90607C42.3629 8.91532 42.7795 8.91532 43.1937 8.90607C43.4483 8.90144 43.5316 9.01715 43.5316 9.26245C43.5246 10.5931 43.5316 11.926 43.5269 13.2567C43.52 15.0779 42.4 16.2327 40.5764 16.3021C39.8937 16.3275 39.2296 16.2373 38.6186 15.9087C37.7277 15.4296 37.2857 14.6428 37.2186 13.664C37.1677 12.9281 37.2093 12.1852 37.2093 11.447C37.2024 11.447 37.1931 11.447 37.1862 11.447H37.1816Z\" fill=\"white\"/>\\n<path d=\"M1.36075 32.3146C1.36075 31.2246 1.36307 30.1347 1.35844 29.0424C1.35844 28.8341 1.41398 28.6883 1.64308 28.693C2.78858 28.7138 3.93408 28.6282 5.07727 28.7392C6.30608 28.8573 7.16 29.8037 7.18546 31.0418C7.19471 31.4422 7.16694 31.8332 7.02347 32.2128C6.68792 33.1014 6.00524 33.5295 5.10504 33.6753C4.56353 33.7632 4.01739 33.717 3.47357 33.7193C3.29769 33.7193 3.23752 33.7563 3.24215 33.9438C3.25604 34.5061 3.23752 35.0707 3.25141 35.6354C3.25835 35.8923 3.14496 35.9848 2.9066 35.9825C2.49931 35.9779 2.09434 35.9802 1.68705 35.9825C1.45795 35.9825 1.35612 35.8853 1.35844 35.6446C1.36538 34.5362 1.36075 33.4277 1.36075 32.3169V32.3146ZM3.90631 32.104C4.17244 32.1109 4.44088 32.1433 4.70469 32.0716C5.12124 31.9605 5.34571 31.6504 5.33183 31.1853C5.31563 30.6993 5.07727 30.4124 4.62832 30.3383C4.23492 30.2735 3.83689 30.3244 3.44117 30.3013C3.27455 30.292 3.24215 30.3591 3.24678 30.5096C3.25604 30.822 3.24447 31.1367 3.25141 31.4491C3.25835 31.6666 3.15421 31.9559 3.29538 32.0809C3.4134 32.185 3.69804 32.1017 3.90863 32.1017L3.90631 32.104Z\" fill=\"white\"/>\\n<path d=\"M15.6137 22.506C15.6137 21.416 15.6137 20.3237 15.6137 19.2338C15.6137 18.9052 15.6553 18.8658 15.9816 18.8658C17.0068 18.8658 18.0343 18.8566 19.0594 18.8704C20.2582 18.8866 21.1977 19.5763 21.4361 20.613C21.6953 21.7354 21.3944 22.9827 20.2096 23.4802C20.0383 23.552 20.1471 23.6306 20.198 23.707C20.6169 24.348 21.0357 24.989 21.4546 25.6301C21.5286 25.7411 21.6374 25.8453 21.561 26.005C21.4754 26.1831 21.3134 26.1345 21.1723 26.1345C20.7557 26.1392 20.3392 26.1276 19.9249 26.1392C19.7329 26.1461 19.6218 26.0744 19.5223 25.9147C19.1219 25.2621 18.7077 24.6188 18.3004 23.9708C18.1801 23.7811 17.752 23.6515 17.5599 23.744C17.4673 23.788 17.5067 23.8736 17.5067 23.9384C17.5043 24.5494 17.5067 25.158 17.5043 25.7689C17.5043 26.0906 17.4604 26.1322 17.1318 26.1345C16.743 26.1345 16.3542 26.1253 15.9677 26.1392C15.7016 26.1484 15.6091 26.0397 15.6114 25.7805C15.6183 24.6905 15.6137 23.5982 15.6137 22.5083V22.506ZM17.5067 21.3072C17.5067 21.5873 17.5136 21.8187 17.5043 22.0501C17.4997 22.1727 17.5437 22.2074 17.6617 22.2051C18.0574 22.1982 18.4555 22.2098 18.8512 22.1936C19.3325 22.1727 19.6102 21.8927 19.6542 21.4137C19.6982 20.9462 19.4552 20.6223 18.9947 20.5065C18.7933 20.4556 18.592 20.4718 18.3907 20.4718C18.106 20.4718 17.7242 20.37 17.5645 20.5135C17.3817 20.6778 17.5298 21.0666 17.5067 21.3072Z\" fill=\"white\"/>\\n<path d=\"M15.2594 11.4439C15.2594 10.7219 15.2594 10.0022 15.2594 9.28015C15.2594 8.9608 15.3103 8.9122 15.6296 8.90988C16.0091 8.90988 16.3887 8.90988 16.7659 8.90988C17.1246 8.90988 17.1685 8.95385 17.1685 9.3056C17.1685 10.5252 17.1685 11.747 17.1685 12.9666C17.1685 13.1517 17.1685 13.3345 17.2102 13.5173C17.3699 14.2694 17.8119 14.6305 18.5478 14.5911C19.1841 14.5564 19.6516 14.0681 19.6678 13.3415C19.6956 12.1219 19.6863 10.9 19.6886 9.68049C19.6886 8.81269 19.6308 8.9122 20.4662 8.90988C20.7439 8.90988 21.0216 8.90988 21.2993 8.90988C21.5052 8.90988 21.6071 9.00014 21.6047 9.21072C21.6024 10.6247 21.6371 12.0409 21.5909 13.4549C21.533 15.1673 20.4222 16.2226 18.675 16.3013C17.8952 16.336 17.1431 16.2249 16.4766 15.7806C15.5648 15.1743 15.2709 14.2579 15.257 13.2211C15.2478 12.6287 15.257 12.0386 15.257 11.4462L15.2594 11.4439Z\" fill=\"white\"/>\\n<path d=\"M23.2479 22.4914C23.2479 21.4199 23.2479 20.3462 23.2479 19.2747C23.2479 18.9114 23.2988 18.8628 23.6645 18.8628C25.1247 18.8628 26.5849 18.8628 28.0451 18.8628C28.42 18.8628 28.4501 18.8929 28.4501 19.2793C28.4501 19.557 28.4501 19.8347 28.4501 20.1101C28.4501 20.4665 28.4038 20.5128 28.0544 20.5128C27.1681 20.5128 26.2795 20.5197 25.3931 20.5082C25.1941 20.5058 25.1108 20.5452 25.1316 20.7627C25.1525 20.9826 25.1478 21.207 25.1316 21.4269C25.1177 21.6051 25.1849 21.6398 25.3492 21.6375C26.1707 21.6282 26.9945 21.6421 27.816 21.6282C28.0868 21.6236 28.1817 21.7323 28.1701 21.9892C28.1585 22.2854 28.1701 22.5816 28.1678 22.8755C28.1655 23.1949 28.1192 23.2388 27.7906 23.2388C26.9876 23.2388 26.1823 23.2458 25.3792 23.2342C25.1918 23.2319 25.1177 23.2712 25.1316 23.4726C25.1501 23.7294 25.1478 23.9909 25.1316 24.2478C25.1201 24.4353 25.1895 24.4746 25.3654 24.4746C26.2609 24.4653 27.1588 24.47 28.0544 24.47C28.4108 24.47 28.4501 24.5116 28.4524 24.8703C28.4524 25.1943 28.4524 25.5183 28.4524 25.8399C28.4524 26.0343 28.3691 26.1292 28.1678 26.1269C26.6243 26.1269 25.0807 26.1246 23.5372 26.1269C23.2711 26.1269 23.2456 25.958 23.2456 25.7566C23.2456 24.6667 23.2456 23.5744 23.2456 22.4844L23.2479 22.4914Z\" fill=\"white\"/>\\n<path d=\"M18.4487 28.6922C18.532 28.6922 18.6153 28.6922 18.6986 28.6922C19.5433 28.6991 19.3651 28.595 19.6543 29.3425C20.4388 31.3743 21.2094 33.413 21.9847 35.4495C22.149 35.8799 22.0819 35.9794 21.6237 35.9794C21.2719 35.9794 20.9202 35.9702 20.5707 35.9841C20.3324 35.9933 20.1935 35.9123 20.1195 35.6763C20.02 35.3616 19.8904 35.0561 19.7839 34.7414C19.74 34.6118 19.6821 34.5562 19.5317 34.5585C18.7842 34.5678 18.0344 34.5678 17.287 34.5585C17.1273 34.5585 17.0625 34.6118 17.0162 34.7529C16.9098 35.0769 16.7825 35.3916 16.6783 35.7156C16.6182 35.9031 16.5071 35.9841 16.3127 35.9794C15.9147 35.9748 15.519 35.9841 15.1209 35.9748C14.8155 35.9702 14.7345 35.8522 14.8409 35.5721C15.6786 33.3621 16.5187 31.1544 17.3564 28.9467C17.4235 28.7686 17.5299 28.6806 17.729 28.6899C17.9696 28.7014 18.2103 28.6922 18.4487 28.6922ZM17.6734 32.9942C18.1201 32.9942 18.5273 32.9896 18.9323 32.9965C19.0989 32.9988 19.1383 32.9687 19.0735 32.7975C18.849 32.2143 18.6431 31.6242 18.4116 30.9786C18.1594 31.6682 17.9234 32.3138 17.6734 32.9942Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qr76gz\",\"data-framer-name\":\"Navan\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:77,svg:'<svg width=\"77\" height=\"18\" viewBox=\"0 0 77 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.4006 17.6726H11.968C11.7769 6.71327 11.3065 4.0304 9.80699 4.0304C7.75625 4.0304 5.94807 10.2194 3.97083 17.6726H0.913086V1.20787H4.27954V8.73461C5.71286 4.26561 7.40343 0.972656 10.2995 0.972656C14.4892 0.972656 15.1874 6.10319 15.4006 17.6726ZM32.2917 17.6726H29.1604C26.0365 14.7545 23.2361 12.498 21.494 12.498C20.7443 12.498 20.2959 12.939 20.1048 13.8431L19.2889 17.6726H16.7531C18.6936 9.79306 19.7299 0.972656 24.5297 0.972656C29.3295 0.972656 30.3585 9.77101 32.2917 17.6726ZM20.9722 10.1018C21.1633 10.0724 21.3764 10.0503 21.5896 10.0503C23.5154 10.0503 25.6102 11.3734 27.8227 13.1816C26.5731 7.53651 25.5441 4.0304 24.0814 4.0304C22.8612 4.0304 21.9204 6.36045 20.9795 10.1018H20.9722ZM30.9466 1.20787H34.4306C36.0771 8.92572 37.2238 14.8501 38.9878 14.8501C40.7519 14.8501 42.0603 8.69051 43.6553 1.20787H46.1912C44.236 9.08743 43.229 17.9078 38.5689 17.9078C33.9161 17.9078 32.8797 9.08743 30.9466 1.20787ZM60.3773 17.6726H57.2461C54.1148 14.7545 51.3217 12.498 49.5797 12.498C48.8226 12.498 48.3816 12.939 48.1905 13.8431L47.3672 17.6726H44.824C46.7792 9.79306 47.8156 0.972656 52.6154 0.972656C57.4151 0.972656 58.4442 9.77101 60.3773 17.6726ZM49.0578 10.1018C49.2489 10.0724 49.4621 10.0503 49.6752 10.0503C51.601 10.0503 53.6959 11.3734 55.9083 13.1816C54.6588 7.53651 53.6297 4.0304 52.1596 4.0304C50.9395 4.0304 49.9986 6.36045 49.0578 10.1018ZM76.2761 17.6726H72.8361C72.6524 6.71327 72.1746 4.0304 70.6751 4.0304C68.6317 4.0304 66.8162 10.2194 64.839 17.6726H61.7812V1.20787H65.155V8.73461C66.581 4.26561 68.2789 0.972656 71.1823 0.972656C75.3647 0.972656 76.0703 6.10319 76.2834 17.6726H76.2761Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vgawf8\",\"data-framer-name\":\"Mixtiles\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:124,svg:'<svg width=\"124\" height=\"21\" viewBox=\"0 0 124 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.537378 20.8191C0.530639 18.5711 0.537378 16.3218 0.505033 14.0738C0.498294 13.6035 0.719318 13.5927 1.07377 13.594C2.88913 13.6048 4.70449 13.5819 6.51986 13.6089C7.09937 13.6169 7.30961 13.439 7.29883 12.8447C7.26649 11.0644 7.30827 9.28136 7.27457 7.50104C7.26514 6.9633 7.38509 6.77328 7.96595 6.78541C9.7584 6.82449 11.5522 6.77462 13.3447 6.81236C13.9835 6.82584 14.1519 6.59538 14.1412 5.997C14.1102 4.21667 14.1465 2.435 14.1196 0.653331C14.1128 0.182981 14.2463 0.0562959 14.7166 0.0616867C16.7341 0.0872932 18.7517 0.08325 20.7678 0.0643821C21.2085 0.060339 21.3972 0.142549 21.3905 0.639854C21.3622 2.66546 21.3635 4.69241 21.3905 6.71802C21.3972 7.2032 21.2314 7.30966 20.7759 7.30427C18.9835 7.28136 17.1897 7.32045 15.3972 7.28136C14.7557 7.26789 14.5279 7.44848 14.5428 8.10481C14.5819 9.86357 14.532 11.6237 14.5697 13.3811C14.5819 13.9283 14.3986 14.0401 13.8891 14.032C12.0967 14.0037 10.3029 14.0374 8.51042 14.0118C7.95382 14.0037 7.76514 14.1857 7.77457 14.7436C7.80692 16.7692 7.79748 18.7948 7.80422 20.8191H0.537378Z\" fill=\"white\"/>\\n<path d=\"M36.8217 10.8283C37.4808 9.10996 38.1196 7.47519 38.7287 5.82829C38.8635 5.46306 39.0293 5.30133 39.4444 5.31751C40.3177 5.35255 41.1937 5.34446 42.067 5.3202C42.4579 5.30942 42.6223 5.40106 42.6196 5.83098C42.6034 8.8822 42.6034 11.9348 42.6196 14.986C42.6223 15.4159 42.4659 15.521 42.0697 15.4994C41.5333 15.4711 40.9916 15.4644 40.4565 15.5008C40.0185 15.5304 39.939 15.3485 39.9417 14.9604C39.9579 13.0776 39.9498 11.1949 39.9498 9.28381C39.6668 9.38354 39.6775 9.61804 39.6115 9.78651C38.9579 11.4658 38.3096 13.145 37.6829 14.8337C37.5212 15.2676 37.3514 15.5183 36.8002 15.5183C36.2692 15.5183 36.1196 15.273 35.9673 14.8674C35.3339 13.18 34.6789 11.5008 34.0293 9.8202C33.9592 9.63961 33.8689 9.46575 33.6695 9.29999C33.6695 9.54796 33.6695 9.79459 33.6695 10.0426C33.6695 11.6908 33.6614 13.3391 33.6748 14.9873C33.6775 15.3377 33.6142 15.5224 33.2031 15.5008C32.6223 15.4698 32.0374 15.4752 31.4552 15.4994C31.0886 15.5143 31.0023 15.3593 31.0037 15.0264C31.0118 11.9523 31.0145 8.87815 31.001 5.80403C30.9996 5.41319 31.1411 5.31077 31.5118 5.3202C32.408 5.34176 33.3056 5.3485 34.2018 5.31751C34.5872 5.30403 34.7503 5.44689 34.877 5.7892C35.4323 7.29055 36.0131 8.78381 36.5872 10.2784C36.6479 10.4375 36.7207 10.5911 36.8217 10.8269V10.8283Z\" fill=\"white\"/>\\n<path d=\"M118.955 5.17871C120.305 5.20836 121.563 5.53451 122.692 6.3027C122.993 6.50755 123.071 6.67871 122.823 6.98464C122.459 7.43612 122.219 8.04259 121.766 8.35257C121.2 8.74071 120.823 7.9523 120.289 7.82831C119.632 7.67467 118.99 7.50216 118.308 7.56685C117.947 7.60189 117.629 7.72588 117.571 8.12211C117.51 8.53181 117.862 8.65176 118.153 8.73531C118.754 8.90782 119.367 9.03585 119.977 9.17871C120.522 9.3054 121.057 9.46173 121.567 9.70028C122.548 10.1585 123.2 10.8633 123.284 11.9806C123.378 13.2582 122.952 14.3094 121.838 15.0102C120.014 16.1571 116.405 15.7973 114.801 14.3391C114.586 14.1423 114.506 14.0008 114.704 13.7367C115.052 13.2731 115.378 12.7919 115.681 12.2987C115.87 11.9914 115.989 12.0601 116.226 12.2623C117.113 13.0156 118.153 13.366 119.323 13.3337C119.621 13.3256 119.905 13.2717 120.167 13.1383C120.39 13.0237 120.584 12.862 120.586 12.5803C120.587 12.2825 120.363 12.1342 120.13 12.0669C119.531 11.893 118.92 11.7488 118.311 11.6086C117.765 11.4833 117.225 11.3445 116.707 11.1275C115.574 10.6504 114.881 9.83505 114.839 8.59111C114.796 7.35122 115.363 6.40378 116.438 5.77709C117.211 5.32561 118.068 5.18275 118.955 5.18006V5.17871Z\" fill=\"white\"/>\\n<path d=\"M102.423 10.3734C102.423 8.88011 102.436 7.38685 102.413 5.89494C102.407 5.4758 102.498 5.31408 102.962 5.31947C105.116 5.34372 107.269 5.34103 109.421 5.32081C109.842 5.31677 109.944 5.45558 109.95 5.85585C109.979 7.66448 109.993 7.66313 108.21 7.66313C107.335 7.66313 106.461 7.6793 105.586 7.65639C105.204 7.64696 105.093 7.77499 105.086 8.15235C105.07 9.18739 105.051 9.18739 106.098 9.18739C107.152 9.18739 108.207 9.20491 109.261 9.1793C109.676 9.16987 109.838 9.25478 109.839 9.71704C109.843 11.4825 109.862 11.4825 108.078 11.4825C107.226 11.4825 106.373 11.4933 105.521 11.4771C105.203 11.4718 105.106 11.5823 105.087 11.899C105.013 13.178 105.001 13.1766 106.269 13.1766C107.302 13.1766 108.333 13.1928 109.365 13.1685C109.78 13.1591 109.95 13.2453 109.954 13.7116C109.967 15.492 109.985 15.492 108.196 15.492C106.469 15.492 104.742 15.4758 103.016 15.5028C102.554 15.5095 102.403 15.3963 102.412 14.9178C102.443 13.403 102.424 11.8882 102.424 10.372L102.423 10.3734Z\" fill=\"white\"/>\\n<path d=\"M65.8974 5.32923C64.857 6.87236 63.9216 8.30497 62.9311 9.69851C62.6184 10.1379 62.6386 10.4263 62.9405 10.8535C63.9931 12.3414 64.9998 13.8629 66.1063 15.491C65.047 15.491 64.1009 15.4896 63.1561 15.491C62.8691 15.491 62.799 15.2511 62.6831 15.0745C62.0564 14.1298 61.4392 13.1783 60.764 12.1446C60.1265 13.119 59.5119 14.0125 58.9513 14.9371C58.7033 15.3454 58.4311 15.53 57.9365 15.5031C57.1413 15.46 56.3408 15.491 55.4189 15.491C56.2478 14.2713 57.0092 13.1554 57.7653 12.0368C58.1521 11.4654 58.7923 10.9074 58.8381 10.3063C58.8839 9.69851 58.1777 9.14594 57.8003 8.57047C57.1157 7.53004 56.4122 6.50174 55.6238 5.33193C56.7154 5.33193 57.6818 5.32519 58.6481 5.33732C58.8866 5.34001 58.9446 5.58664 59.0483 5.74702C59.609 6.62708 60.1602 7.51387 60.764 8.47479C61.3489 7.53678 61.9028 6.68233 62.4176 5.80363C62.6211 5.45727 62.8475 5.29824 63.2667 5.31576C64.0915 5.34945 64.9176 5.32519 65.9014 5.32519L65.8974 5.32923Z\" fill=\"white\"/>\\n<path d=\"M73.5847 5.32583C74.7949 5.32583 76.0051 5.34066 77.214 5.31775C77.6237 5.30966 77.745 5.435 77.7545 5.8447C77.7936 7.6668 77.807 7.6668 75.9715 7.6668C75.8151 7.6668 75.6547 7.68432 75.5011 7.66411C75.0119 7.59807 74.9054 7.82583 74.9095 8.27462C74.9283 10.4781 74.9027 12.6816 74.9297 14.8851C74.9364 15.3824 74.807 15.5725 74.2963 15.5172C73.613 15.4431 72.6952 15.8083 72.3043 15.3609C71.9661 14.9741 72.1952 14.0873 72.1925 13.4229C72.1857 11.7531 72.1574 10.0832 72.2073 8.41478C72.2262 7.77192 72.0038 7.60885 71.4108 7.65872C70.8771 7.70319 70.3353 7.65602 69.7989 7.67219C69.4876 7.68163 69.3286 7.57785 69.365 7.25306C69.3677 7.23149 69.365 7.20858 69.365 7.18567C69.3066 5.94578 69.9072 5.32583 71.1669 5.32583C71.9728 5.32583 72.7801 5.32583 73.586 5.32583H73.5847Z\" fill=\"white\"/>\\n<path d=\"M91.0967 10.4062C91.0967 8.95881 91.1223 7.51137 91.0833 6.06528C91.0684 5.50463 91.1803 5.23509 91.807 5.31865C92.2032 5.37121 92.617 5.36447 93.0145 5.31865C93.5886 5.25396 93.7841 5.42242 93.7719 6.03563C93.7302 8.17174 93.7773 10.3106 93.7423 12.4467C93.7329 13.0329 93.8852 13.223 94.4862 13.1879C95.4027 13.1354 96.3245 13.1947 97.2423 13.165C97.683 13.1502 97.9161 13.2324 97.8555 13.7337C97.7854 14.2998 98.1008 15.0599 97.718 15.3901C97.3919 15.6704 96.652 15.4858 96.0954 15.4885C94.6156 15.4952 93.1372 15.4763 91.6574 15.4992C91.2261 15.506 91.0792 15.3928 91.0873 14.9453C91.1143 13.4319 91.0967 11.917 91.0967 10.4036V10.4062Z\" fill=\"white\"/>\\n<path d=\"M50.8971 10.3899C50.8971 11.9048 50.8836 13.4196 50.9065 14.9344C50.9133 15.3616 50.8014 15.5301 50.3486 15.5004C49.7906 15.4641 49.2273 15.4775 48.6666 15.4964C48.327 15.5085 48.195 15.4048 48.1963 15.0449C48.2084 11.9479 48.2084 8.85085 48.1963 5.75382C48.195 5.37376 48.3688 5.31312 48.6869 5.32255C49.2475 5.33872 49.8095 5.3495 50.3688 5.31985C50.7785 5.29694 50.9119 5.43037 50.9052 5.84411C50.8836 7.35894 50.8971 8.87376 50.8971 10.3886V10.3899Z\" fill=\"white\"/>\\n<path d=\"M82.6371 10.3244C82.6371 8.83379 82.6492 7.34188 82.629 5.85131C82.6236 5.45104 82.7288 5.29336 83.1519 5.32031C83.687 5.354 84.2288 5.354 84.7638 5.32031C85.1951 5.29336 85.2881 5.46856 85.2854 5.86074C85.2719 8.8877 85.2705 11.9147 85.2867 14.9403C85.2894 15.3756 85.1654 15.5346 84.7166 15.5023C84.2045 15.4659 83.6843 15.4618 83.1722 15.5023C82.7045 15.54 82.6223 15.3405 82.6277 14.9295C82.6479 13.3944 82.6358 11.858 82.6358 10.323L82.6371 10.3244Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ruxy8j\",\"data-framer-name\":\"Flying Tiger\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:110,svg:'<svg width=\"110\" height=\"31\" viewBox=\"0 0 110 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M53.0479 5.45101C53.6179 5.45101 54.1888 5.46882 54.7578 5.4426C55.0113 5.43072 55.0693 5.53065 55.113 5.74486C55.3179 6.75258 55.4404 7.77366 55.6051 8.78732C55.8234 10.1285 55.9553 11.4766 56.0277 12.834C56.0669 13.5647 55.87 14.2499 55.7777 14.9563C55.6373 16.0343 55.0887 16.8862 54.3907 17.6792C53.7945 18.357 53.0087 18.6879 52.1902 18.9902C51.0701 19.4043 49.9009 19.524 48.7257 19.6229C48.3799 19.6521 48.0347 19.6813 47.6899 19.7194C47.5312 19.7367 47.4573 19.6872 47.4151 19.525C47.1537 18.5242 46.8858 17.5249 46.6075 16.5285C46.5529 16.3326 46.6224 16.3138 46.7881 16.3064C47.8392 16.2609 48.876 16.1347 49.8557 15.7172C50.2451 15.551 50.6112 15.3477 50.9039 15.035C50.9729 14.9613 51.1048 14.892 51.0577 14.7812C51.015 14.6818 50.8791 14.7303 50.7839 14.7283C49.5422 14.6981 48.3824 14.3691 47.4399 13.5608C46.1392 12.4447 45.5216 11.0353 45.9115 9.2939C45.9651 9.05347 46.0241 8.81453 46.0837 8.57559C46.2508 7.90674 46.6323 7.38433 47.2033 7.00489C48.2673 6.29745 49.3959 5.73843 50.6732 5.51829C51.1996 5.42726 51.7269 5.46041 52.2547 5.452C52.5191 5.44804 52.7835 5.4515 53.0479 5.4515V5.45101Z\" fill=\"white\"/>\\n<path d=\"M84.1981 5.45443C84.7928 5.45443 85.3881 5.46432 85.9824 5.44849C86.1679 5.44354 86.2185 5.51231 86.2508 5.67259C86.5464 7.12407 86.7081 8.59632 86.9472 10.0562C87.1075 11.0342 87.1114 12.0237 87.1839 13.0076C87.2399 13.7665 87.038 14.4962 86.8714 15.2224C86.4318 17.136 85.2383 18.3604 83.3751 18.9911C82.2535 19.3711 81.1036 19.5309 79.9349 19.6229C79.5644 19.6521 79.1943 19.6852 78.8247 19.7238C78.6863 19.7382 78.6114 19.6951 78.5747 19.5566C78.3083 18.5484 78.0414 17.5407 77.7651 16.5349C77.7165 16.3583 77.7542 16.3153 77.9358 16.3088C78.9964 16.2712 80.0401 16.1377 81.0272 15.7162C81.4325 15.543 81.8095 15.3258 82.1047 14.9909C82.1563 14.9321 82.258 14.8796 82.2213 14.7911C82.1846 14.7025 82.0769 14.7317 81.997 14.7317C81.0277 14.7332 80.119 14.4923 79.2737 14.0282C77.8986 13.2738 77.1505 12.0746 76.9714 10.5549C76.8727 9.71733 77.0875 8.88672 77.4134 8.1026C77.6049 7.64153 77.9402 7.28782 78.353 7.01375C79.4245 6.30236 80.559 5.73592 81.8472 5.52171C82.4971 5.41386 83.1494 5.47224 83.8007 5.45492C83.9327 5.45146 84.0651 5.45443 84.1971 5.45443H84.1981Z\" fill=\"white\"/>\\n<path d=\"M34.3317 10.564C34.3615 9.0086 34.3947 7.45324 34.4176 5.89738C34.42 5.71434 34.4677 5.65695 34.6582 5.62826C36.3611 5.3715 38.073 5.278 39.7934 5.29581C40.6546 5.30472 41.4458 5.56345 42.2097 5.9325C42.3312 5.99088 42.4319 6.07349 42.5202 6.17343C43.2256 6.97139 43.7336 7.86434 43.9107 8.93093C44.0541 9.79717 44.0169 10.6703 44.0541 11.5405C44.1121 12.902 43.9221 14.2515 43.87 15.6075C43.8641 15.7609 43.8065 15.7742 43.6761 15.7609C42.7236 15.6639 41.7707 15.5665 40.8163 15.4878C40.6223 15.472 40.597 15.4022 40.597 15.2345C40.599 13.5386 40.5916 11.8428 40.5901 10.1469C40.5901 9.84515 40.5206 9.58246 40.2706 9.38211C40.027 9.1867 39.4397 9.13673 39.1679 9.2896C39.0632 9.34847 39.0974 9.43059 39.1019 9.50281C39.2165 11.3792 39.0905 13.2552 39.1049 15.1316C39.1063 15.3117 39.0428 15.3409 38.8816 15.3453C37.4118 15.3839 35.9425 15.4279 34.4731 15.4804C34.2866 15.4868 34.239 15.4443 34.2434 15.2553C34.2821 13.6915 34.3084 12.1277 34.3387 10.564C34.3367 10.564 34.3342 10.564 34.3322 10.564H34.3317Z\" fill=\"white\"/>\\n<path d=\"M69.8526 6.84144C69.8526 7.36781 69.8397 7.89516 69.8585 8.42104C69.8665 8.63822 69.8114 8.70995 69.5907 8.70649C68.9622 8.6956 68.3381 8.62882 67.7126 8.58182C67.5067 8.56648 67.2433 8.47348 67.1099 8.56549C66.9486 8.67631 67.099 8.94246 67.1193 9.13688C67.2304 10.2 67.3013 11.2676 67.4521 12.3268C67.473 12.4752 67.532 12.5321 67.663 12.583C68.1551 12.774 68.6531 12.9447 69.172 13.0436C69.3069 13.0693 69.3421 13.1242 69.3451 13.2543C69.3709 14.2418 69.4051 15.2287 69.4349 16.2157C69.4374 16.3052 69.4751 16.3933 69.3178 16.4289C67.9313 16.742 66.5721 16.6634 65.3414 15.9416C64.261 15.3079 63.3452 14.4733 62.805 13.288C62.4786 12.5716 62.1845 11.8627 62.1656 11.0588C62.1473 10.2693 62.0838 9.4812 62.052 8.69165C62.0451 8.51108 62.0079 8.4339 61.8045 8.43588C61.3173 8.44033 60.8302 8.41065 60.3431 8.40818C60.1858 8.40719 60.1318 8.37355 60.1382 8.20287C60.1734 7.30646 60.1992 6.40955 60.2156 5.51265C60.2186 5.35088 60.2657 5.30289 60.4234 5.29646C60.8525 5.27865 61.2801 5.2371 61.7092 5.21929C61.865 5.21285 61.9106 5.16388 61.9116 5.00557C61.9176 4.30605 61.9444 3.60654 61.9523 2.90702C61.9543 2.72496 62.0089 2.64284 62.2023 2.62503C63.7882 2.47761 65.3736 2.32128 66.9596 2.16792C67.2691 2.13775 67.2631 2.13873 67.2438 2.43803C67.1952 3.18504 67.159 3.93304 67.1054 4.68005C67.0925 4.85864 67.1545 4.87744 67.3098 4.86507C68.0425 4.80769 68.7761 4.76712 69.5083 4.70776C69.6844 4.69341 69.7415 4.72359 69.7564 4.91603C69.805 5.55717 69.7717 6.20029 69.8526 6.84094V6.84144ZM66.4188 7.41381C66.2006 6.70391 66.3211 6.34326 66.8083 6.20425C67.0806 6.12658 67.3068 6.1904 67.5107 6.38482C67.7051 6.57033 67.8098 6.79246 67.8172 7.09225C68.1169 6.51641 67.9795 6.04446 67.4477 5.7788C66.7373 5.4236 66.0255 5.49335 65.3349 5.83272C65.1891 5.90446 65.0061 6.00439 65.014 6.23146C65.0254 6.55351 65.074 6.86815 65.1574 7.17982C65.1856 7.28568 65.2347 7.32526 65.3394 7.33664C65.6916 7.37523 66.0413 7.43706 66.4188 7.41381ZM64.252 7.0319C64.4728 6.59754 64.2942 5.99944 63.9103 5.85004C63.568 5.71696 63.2178 5.6477 62.8482 5.74615C62.562 5.82234 62.2718 5.88269 61.9826 5.94601C61.8551 5.97372 61.7643 6.03753 61.6934 6.15082C61.5431 6.39076 61.5664 7.07988 61.738 7.30349C61.7762 7.35296 61.8208 7.38957 61.8779 7.39551C62.2341 7.43063 62.5902 7.4341 62.9573 7.40936C62.683 6.75239 62.7812 6.45655 63.307 6.28984C63.8195 6.12708 64.0878 6.33238 64.252 7.03289V7.0319Z\" fill=\"white\"/>\\n<path d=\"M21.2108 10.3725C21.4321 9.53201 21.5769 8.74394 21.7411 7.95983C21.879 7.30038 22.0184 6.64143 22.1474 5.98C22.1836 5.79498 22.2595 5.73166 22.4569 5.74205C23.1346 5.77816 23.7958 5.92905 24.4675 6.00721C25.0742 6.07796 25.6789 6.16601 26.287 6.21944C26.4899 6.23725 26.482 6.30057 26.4373 6.45344C25.8694 8.39962 25.3058 10.3473 24.7418 12.2945C24.4104 13.4377 24.0726 14.579 23.7517 15.7248C23.6202 16.1943 23.6257 16.6865 23.585 17.1688C23.523 17.8985 23.4818 18.6302 23.452 19.3614C23.4451 19.5365 23.3479 19.5385 23.2377 19.5533C22.2322 19.6918 21.2272 19.8294 20.2212 19.9659C19.9107 20.008 19.5996 20.0475 19.2941 20.0871C19.2474 20.0282 19.2643 19.9689 19.2678 19.913C19.3422 18.6643 19.4215 17.4157 19.491 16.1665C19.5183 15.6758 19.4126 15.2043 19.232 14.7487C18.3406 12.4963 17.3113 10.3043 16.3157 8.09736C16.1336 7.69318 15.9496 7.28999 15.7551 6.89175C15.6911 6.76065 15.7105 6.71069 15.841 6.6345C16.3464 6.33916 16.9125 6.21895 17.4591 6.04234C17.7017 5.96417 17.9472 5.89244 18.1854 5.8024C18.4101 5.71682 18.5738 5.77569 18.6864 5.97753C18.7821 6.14969 18.8669 6.32778 18.9562 6.50341C19.6215 7.81686 20.3998 9.06402 21.2113 10.371L21.2108 10.3725Z\" fill=\"white\"/>\\n<path d=\"M88.6895 10.015C88.7272 9.09633 88.8755 8.17716 89.2113 7.28965C89.503 6.5189 90.0397 5.95641 90.6826 5.47407C90.8409 5.35534 91.0125 5.25244 91.1598 5.12184C91.774 4.57667 92.5156 4.4708 93.3043 4.37285C94.6725 4.20317 95.7266 4.71519 96.6771 5.6116C97.7798 6.65148 98.2813 7.95009 98.3944 9.42729C98.4088 9.61577 98.4143 9.80574 98.4376 9.99324C98.4525 10.1159 98.4143 10.1585 98.2922 10.1936C97.5566 10.4043 96.7941 10.4246 96.0441 10.534C95.3883 10.6294 94.7255 10.6082 94.0683 10.6784C93.6218 10.7264 93.598 10.7823 93.7696 11.2053C94.0549 11.9087 94.852 12.1101 95.4275 11.9181C95.8719 11.7697 96.1517 11.9132 96.4637 12.162C97.0178 12.6038 97.5982 13.0115 98.2079 13.3746C98.3468 13.4572 98.3637 13.5096 98.2605 13.6467C97.4623 14.7133 96.3725 15.2901 95.1035 15.625C94.5132 15.7808 93.9532 15.7383 93.3693 15.6675C92.5617 15.5696 91.7814 15.387 91.0279 15.0818C90.7541 14.971 90.5408 14.7944 90.3175 14.6069C89.3785 13.8178 89.12 12.7176 88.8829 11.6025C88.7733 11.0865 88.7024 10.5656 88.6895 10.0145V10.015Z\" fill=\"white\"/>\\n<path d=\"M2.03847 12.5354C2.06575 11.5317 2.08807 10.5274 2.12428 9.52415C2.12974 9.36732 2.07269 9.32577 1.93727 9.31043C1.51909 9.26146 1.1024 9.2011 0.684215 9.15658C0.569624 9.14421 0.512081 9.13679 0.521506 8.99233C0.569624 8.22801 0.589963 7.4627 0.556727 6.69738C0.550774 6.5648 0.622207 6.57173 0.703561 6.56282C1.1138 6.51879 1.52405 6.4708 1.93479 6.43321C2.34305 6.3961 2.2984 6.42974 2.29394 6.04783C2.28203 5.05396 2.5251 4.13133 2.99636 3.26064C3.12038 3.03159 3.27316 2.83816 3.49788 2.69717C3.76278 2.53045 4.03313 2.36621 4.27273 2.16733C4.88934 1.6568 5.60962 1.46139 6.38893 1.37728C7.11914 1.29863 7.84636 1.19672 8.57954 1.1418C8.75515 1.12894 8.83353 1.17891 8.85238 1.35601C8.93869 2.18465 8.9625 3.01378 8.92828 3.84638C8.92133 4.01012 8.8618 4.09126 8.70802 4.14815C8.22188 4.32723 7.74219 4.52462 7.25704 4.70717C7.13055 4.75466 7.05465 4.81254 7.03927 4.96145C6.99661 5.37849 6.94006 5.79404 6.88103 6.2091C6.86218 6.34169 6.9227 6.3595 7.03233 6.36048C7.45348 6.36296 7.87464 6.3773 8.2958 6.37483C8.46991 6.37384 8.55573 6.42183 8.54928 6.6118C8.51853 7.48347 8.49174 8.35564 8.47239 9.22782C8.46942 9.37178 8.38906 9.35891 8.29728 9.3599C7.79329 9.36584 7.28929 9.38315 6.78628 9.37326C6.58785 9.3693 6.54122 9.43065 6.53874 9.61913C6.51692 11.6276 6.48219 13.6362 6.46285 15.6442C6.46086 15.8663 6.40679 15.9311 6.17761 15.9232C4.86503 15.8777 3.55195 15.8445 2.23937 15.8178C2.02011 15.8134 1.9457 15.752 1.95413 15.522C1.99134 14.5266 2.0087 13.5308 2.0335 12.5354C2.03549 12.5354 2.03698 12.5354 2.03896 12.5354H2.03847Z\" fill=\"white\"/>\\n<path d=\"M14.8433 8.82717C14.8835 9.70676 14.9023 10.5883 14.9698 11.4659C15.0318 12.2728 14.9122 13.0777 14.9881 13.8841C15.0412 14.449 15.0387 15.0189 15.0739 15.5854C15.0839 15.7462 15.0427 15.8105 14.877 15.8125C13.3903 15.8288 11.9031 15.8481 10.4164 15.8713C10.2413 15.8743 10.1843 15.8035 10.1887 15.6363C10.2056 14.9779 10.1932 14.3184 10.2314 13.6615C10.3212 12.1145 10.2334 10.5661 10.2879 9.01911C10.3663 6.78154 10.4402 4.54348 10.5067 2.30542C10.5136 2.07934 10.5791 1.9987 10.8128 1.98831C12.0752 1.93142 13.3372 1.86365 14.5982 1.78449C14.8482 1.76866 14.9043 1.85771 14.9013 2.08379C14.882 3.63124 14.8706 5.17918 14.8601 6.72713C14.8557 7.42665 14.8591 8.12666 14.8591 8.82667C14.8537 8.82667 14.8482 8.82667 14.8428 8.82667L14.8433 8.82717Z\" fill=\"white\"/>\\n<path d=\"M109.215 7.37257C109.215 7.65753 109.213 8.22545 109.217 8.79338C109.218 8.89875 109.211 8.95812 109.077 8.95515C108.194 8.93684 107.309 8.99324 106.43 8.85967C106.256 8.83345 106.098 8.78249 105.946 8.69097C105.542 8.44758 105.1 8.29174 104.65 8.15372C104.495 8.10623 104.46 8.13146 104.455 8.2957C104.408 9.99057 104.353 11.6854 104.299 13.3803C104.274 14.162 104.243 14.9436 104.227 15.7252C104.223 15.8895 104.17 15.9266 104.012 15.9202C102.733 15.8687 101.457 15.7757 100.185 15.6268C99.9931 15.6045 100.032 15.4937 100.04 15.3878C100.09 14.7066 100.141 14.0254 100.199 13.3452C100.305 12.1158 100.382 10.884 100.531 9.65813C100.696 8.31153 100.837 6.96197 101.072 5.62477C101.109 5.41106 101.19 5.34081 101.412 5.32547C103.809 5.16172 106.206 4.98165 108.603 4.81394C109.099 4.77931 109.107 4.75557 109.13 5.26413C109.156 5.87262 109.18 6.48111 109.217 7.37257H109.215Z\" fill=\"white\"/>\\n<path d=\"M31.8621 10.7665C31.9266 12.3456 31.9867 13.9242 32.0601 15.5028C32.0705 15.7323 32.0234 15.8169 31.7729 15.8184C30.4186 15.8253 29.0639 15.8456 27.7096 15.8733C27.4859 15.8778 27.4288 15.8065 27.4328 15.5923C27.4755 13.3627 27.5008 11.1325 27.5504 8.90338C27.5712 7.96591 27.6397 7.02942 27.6828 6.09245C27.6883 5.97322 27.7012 5.89901 27.8545 5.88962C29.0415 5.81887 30.2261 5.71795 31.4157 5.68134C31.5977 5.6759 31.6578 5.71993 31.6642 5.90644C31.7198 7.52661 31.7853 9.14678 31.8478 10.7669C31.8527 10.7669 31.8572 10.7669 31.8621 10.7665Z\" fill=\"white\"/>\\n<path d=\"M71.1401 12.7165C71.0265 10.7703 71.2442 8.83453 71.3137 6.89428C71.3196 6.73202 71.3588 6.67859 71.5325 6.66523C72.6605 6.57866 73.7885 6.49604 74.9186 6.42926C75.1701 6.41441 75.2232 6.50791 75.2311 6.72064C75.2613 7.52652 75.2976 8.3324 75.3368 9.13828C75.4389 11.2512 75.5406 13.3641 75.6518 15.476C75.6632 15.6966 75.6235 15.7743 75.3814 15.7758C74.0351 15.7852 72.6888 15.8089 71.3425 15.8396C71.1014 15.845 71.028 15.7664 71.0324 15.5289C71.0503 14.5905 71.1505 13.655 71.1406 12.716L71.1401 12.7165Z\" fill=\"white\"/>\\n<path d=\"M71.8987 27.2289C71.4681 27.2175 71.0415 27.2556 70.6169 27.1893C69.6272 27.0354 68.8856 26.5595 68.4793 25.6131C68.1693 24.8914 68.5255 23.7308 69.1966 23.3306C70.0414 22.827 70.9333 22.5123 71.9389 22.5786C72.358 22.6063 72.7807 22.589 73.2018 22.5796C73.3273 22.5771 73.3789 22.6192 73.3978 22.7359C73.6076 24.042 73.9087 25.3421 73.8819 26.6694C73.8651 27.4876 73.7187 28.3044 73.0942 28.9416C72.8362 29.2052 72.5579 29.4189 72.2142 29.5594C71.4418 29.8756 70.6327 30.0012 69.8063 30.0482C69.3132 30.0759 69.3132 30.0774 69.1738 29.6005C69.1138 29.3957 69.0543 29.1914 68.9947 28.9866C68.9813 28.9396 68.9694 28.8921 68.954 28.8327C70.1382 28.6734 71.3386 28.5413 71.8987 27.2289Z\" fill=\"white\"/>\\n<path d=\"M31.3096 22.345C31.45 22.345 31.5909 22.3549 31.7308 22.3435C32.7938 22.2579 33.4377 22.8659 33.9402 23.6841C34.3604 24.3683 34.3897 25.1064 34.1848 25.8688C34.093 26.2096 34.0151 26.5549 33.9531 26.9017C33.908 27.154 33.7706 27.3222 33.5851 27.4885C32.8117 28.1811 31.9222 28.2948 30.95 28.0579C30.6062 27.9743 30.2619 27.8946 29.9231 27.7902C29.7029 27.7225 29.5466 27.5988 29.436 27.4034C29.0828 26.779 28.7663 26.1295 28.6259 25.4295C28.5079 24.8413 28.7003 24.2585 28.9037 23.6995C29.0873 23.1939 29.4132 22.8085 29.8874 22.5404C30.0953 22.4231 30.3056 22.3534 30.5417 22.3544C30.7977 22.3554 31.0536 22.3544 31.3096 22.3544C31.3096 22.3509 31.3096 22.3479 31.3096 22.3445V22.345Z\" fill=\"white\"/>\\n<path d=\"M35.9339 26.1928C35.9339 25.1559 35.9374 24.119 35.9305 23.0821C35.9295 22.9144 35.9771 22.8565 36.1492 22.851C37.1647 22.8184 38.1796 22.7749 39.1946 22.7358C39.4758 22.7249 39.712 22.8466 39.9109 23.0252C40.6108 23.655 40.8946 24.445 40.779 25.3746C40.7502 25.6076 40.6361 25.8104 40.4744 25.983C40.1624 26.3165 39.8226 26.6019 39.3707 26.7449C38.955 26.8765 38.5487 27.0501 38.1181 27.1149C37.8651 27.153 37.8239 27.2505 37.8329 27.479C37.8577 28.1123 37.8507 28.7465 37.8646 29.3802C37.8681 29.5291 37.8512 29.5974 37.6687 29.586C37.125 29.5509 36.5798 29.5326 36.0351 29.5232C35.866 29.5202 35.8189 29.4782 35.8203 29.3035C35.8298 28.2666 35.8253 27.2297 35.8253 26.1928C35.862 26.1928 35.8982 26.1928 35.9349 26.1928H35.9339Z\" fill=\"white\"/>\\n<path d=\"M55.8474 24.6894C55.8682 23.3072 55.9099 21.9507 56.1068 20.6036C56.1192 20.5185 56.1316 20.4621 56.2368 20.476C56.7358 20.5403 57.2354 20.6036 57.7349 20.664C57.8664 20.6798 57.8321 20.7758 57.8316 20.85C57.8272 21.3274 57.8252 21.8048 57.8078 22.2821C57.8019 22.4429 57.8416 22.4894 58.0087 22.487C58.601 22.4795 59.1884 22.4647 59.7703 22.6601C60.3368 22.8506 60.5898 23.2948 60.8155 23.7697C60.9598 24.074 61.0074 24.4114 61.0243 24.7522C61.0724 25.7154 61.063 26.6766 60.9648 27.6369C60.9549 27.7348 60.942 27.7888 60.8249 27.7779C60.4385 27.7413 60.052 27.7076 59.6646 27.6829C59.5064 27.6725 59.5589 27.5627 59.5584 27.4865C59.5525 26.6306 59.5485 25.7743 59.55 24.9185C59.5505 24.6137 59.4994 24.3322 59.298 24.0888C59.0713 23.8143 58.3342 23.8009 58.1025 24.072C58.0202 24.1685 58.0157 24.2828 58.0216 24.398C58.0737 25.3934 58.0216 26.3897 58.037 27.3851C58.039 27.5275 58.0137 27.5834 57.852 27.5849C57.2408 27.5914 56.6297 27.6092 56.0195 27.6379C55.8474 27.6458 55.8013 27.6062 55.8018 27.4301C55.8042 26.508 55.8836 25.5878 55.8474 24.6899V24.6894Z\" fill=\"white\"/>\\n<path d=\"M81.4551 25.202C81.4551 24.4451 81.4601 23.6882 81.4516 22.9313C81.4497 22.7522 81.5037 22.6939 81.6863 22.68C82.6496 22.6068 83.6125 22.5425 84.5793 22.5435C85.0327 22.544 85.4678 22.631 85.877 22.8131C86.3116 23.006 86.5204 23.4117 86.7059 23.8139C86.8473 24.1206 86.9138 24.456 86.9272 24.7949C86.9654 25.7734 86.9674 26.7515 86.8612 27.7275C86.8478 27.8517 86.8051 27.872 86.694 27.8636C86.126 27.822 85.5575 27.78 84.9891 27.7552C84.7931 27.7468 84.7296 27.6919 84.7321 27.4851C84.743 26.6461 84.74 25.8066 84.7242 24.9675C84.7128 24.3704 84.2678 24.0053 83.6725 24.0756C83.3486 24.1137 83.1874 24.3031 83.2057 24.6227C83.2608 25.5765 83.2092 26.5313 83.2221 27.4851C83.2241 27.6167 83.176 27.6543 83.0524 27.6573C82.541 27.6701 82.0291 27.686 81.5181 27.7107C81.3539 27.7186 81.3782 27.6207 81.3782 27.5217C81.3787 26.7485 81.3782 25.9753 81.3782 25.202C81.404 25.202 81.4293 25.202 81.4551 25.202Z\" fill=\"white\"/>\\n<path d=\"M48.6371 25.225C48.6371 24.4597 48.6421 23.6938 48.6336 22.9285C48.6317 22.7494 48.6887 22.6935 48.8698 22.6772C49.8326 22.5916 50.7965 22.5357 51.7638 22.5481C52.1914 22.5535 52.6031 22.6515 52.9821 22.8365C53.3795 23.0304 53.5853 23.4138 53.7599 23.7933C53.9038 24.1064 53.9609 24.4503 53.9772 24.7995C54.0224 25.7627 54.0139 26.7244 53.9222 27.6852C53.9103 27.8113 53.8969 27.8771 53.7416 27.8647C53.1572 27.8172 52.5719 27.7782 51.9865 27.7485C51.8288 27.7406 51.7851 27.6921 51.7866 27.5343C51.794 26.6616 51.7871 25.7889 51.7891 24.9163C51.7896 24.5809 51.6755 24.3098 51.3937 24.1114C51.1249 23.9224 50.85 23.9447 50.5742 24.0772C50.4011 24.1604 50.3704 24.3241 50.3803 24.4977C50.4383 25.4768 50.3823 26.4568 50.3996 27.4358C50.4026 27.61 50.347 27.6599 50.1789 27.6619C49.6917 27.6683 49.2041 27.6832 48.718 27.7104C48.5528 27.7193 48.5523 27.6431 48.5528 27.5214C48.5567 26.7561 48.5548 25.9903 48.5548 25.225C48.5825 25.225 48.6103 25.225 48.6381 25.225H48.6371Z\" fill=\"white\"/>\\n<path d=\"M77.8593 22.2147C78.9427 22.2216 79.9621 22.9805 80.165 24.048C80.2111 24.29 80.2414 24.5348 80.2841 24.7777C80.3054 24.8989 80.2732 24.9454 80.1397 24.9682C79.5196 25.0746 78.8941 25.1166 78.2676 25.1483C78.1118 25.1562 77.9575 25.1973 77.8018 25.2042C77.5369 25.2156 77.4878 25.3724 77.5012 25.595C77.5329 26.1144 77.9208 26.4949 78.4432 26.5082C78.7681 26.5166 79.0861 26.4612 79.3941 26.3687C79.5301 26.3282 79.6144 26.3489 79.6838 26.4662C79.8302 26.7135 79.972 26.9639 80.1268 27.2063C80.1983 27.3176 80.099 27.3334 80.0514 27.3715C79.2647 28.0008 78.3817 28.2323 77.389 28.0057C77.2764 27.98 77.1643 27.9533 77.0507 27.9325C76.1548 27.7673 75.6275 27.2439 75.4008 26.3578C75.1826 25.505 75.1483 24.6734 75.4425 23.8363C75.569 23.4767 75.7759 23.1788 76.078 22.9448C76.6033 22.5382 77.1341 22.2097 77.8588 22.2147H77.8593Z\" fill=\"white\"/>\\n<path d=\"M45.3637 26.4903C45.5299 26.4868 45.8092 26.4472 46.0751 26.3582C46.2755 26.2914 46.3812 26.3582 46.471 26.5264C46.5796 26.7287 46.6897 26.932 46.8217 27.1195C46.9055 27.2388 46.8762 27.2867 46.774 27.3674C45.9327 28.0333 44.9947 28.2044 43.9579 27.9556C43.3969 27.8205 42.8641 27.6652 42.4935 27.1715C42.2663 26.8692 42.2078 26.514 42.1046 26.1722C41.866 25.3826 41.9067 24.5995 42.1731 23.8228C42.2996 23.4542 42.5084 23.145 42.8239 22.915C43.0898 22.7211 43.3631 22.5366 43.6384 22.3555C43.8339 22.2269 44.0685 22.2655 44.2848 22.2239C45.3211 22.025 46.0265 22.5529 46.6247 23.2875C46.906 23.6328 46.9179 24.083 46.9789 24.503C47.0389 24.9146 47.0246 24.9206 46.6069 24.9824C45.9942 25.0724 45.3766 25.1071 44.7595 25.1511C44.7184 25.1541 44.6772 25.157 44.6365 25.1635C44.2491 25.2278 44.1568 25.3782 44.266 25.7645C44.4044 26.2543 44.7283 26.4942 45.3632 26.4903H45.3637Z\" fill=\"white\"/>\\n<path d=\"M65.338 27.8805C64.769 27.8854 64.2015 28.0155 63.6315 27.926C63.0745 27.8384 62.6434 27.6059 62.4256 27.0439C62.1027 26.2108 62.5481 25.263 63.4108 25.0087C63.8176 24.8885 64.2367 24.8454 64.6594 24.8617C64.8529 24.8692 64.9297 24.7974 64.9297 24.6085C64.9297 24.4868 64.9669 24.3646 64.9669 24.2429C64.9674 23.809 64.8409 23.6458 64.4188 23.5142C64.0234 23.391 63.6177 23.4004 63.2153 23.4444C63.0085 23.4672 62.9772 23.4033 63.0065 23.2213C63.0457 22.9784 63.0685 22.7315 63.0864 22.4857C63.0968 22.3422 63.1489 22.2878 63.3012 22.2942C64.2214 22.3313 65.1277 22.4678 66.0017 22.7498C66.5077 22.9131 66.8192 23.3158 66.9829 23.8184C67.1496 24.3294 67.159 24.8598 67.0906 25.3827C67.0087 26.0065 67.0107 26.6298 67.0068 27.2551C67.0028 27.8651 67.0013 27.8686 66.4026 27.8795C66.0479 27.8859 65.6927 27.8805 65.3375 27.8805H65.338Z\" fill=\"white\"/>\\n<path d=\"M25.2028 24.9349C25.181 25.2778 25.1264 25.6231 25.307 25.9481C25.556 26.3973 25.8199 26.5096 26.3065 26.3473C26.3224 26.3419 26.3388 26.3399 26.3547 26.3345C26.8919 26.146 26.8983 26.14 27.2585 26.5507C27.4271 26.7431 27.5898 26.9385 27.7873 27.1018C27.89 27.1864 27.9058 27.2452 27.7952 27.3511C27.2858 27.8389 26.6627 28.1342 25.9816 28.1669C25.2767 28.201 24.5301 28.105 23.9373 27.7033C23.3212 27.2858 23.0033 26.6343 22.9298 25.864C22.8485 25.0096 22.9264 24.1869 23.2811 23.4048C23.4661 22.9967 23.7523 22.6632 24.1864 22.4792C24.6953 22.2635 25.2345 22.1586 25.7757 22.1468C26.5734 22.1289 27.2714 22.4233 27.8423 22.9937C27.9068 23.058 27.8994 23.0936 27.8384 23.151C27.6151 23.3598 27.4078 23.5834 27.256 23.851C27.1806 23.9836 27.0928 23.9163 27.005 23.8758C26.6761 23.7249 26.3576 23.5606 25.9692 23.6086C25.5044 23.6665 25.2336 23.9213 25.2058 24.3903C25.1954 24.5708 25.2043 24.7519 25.2043 24.933L25.2028 24.9349Z\" fill=\"white\"/>\\n<path d=\"M75.0562 2.70193C75.0284 3.30746 74.9585 3.81157 74.8657 4.3137C74.828 4.51702 74.7258 4.67929 74.5814 4.82127C74.1295 5.26601 72.8209 5.67959 71.9811 5.26997C71.2737 4.92516 70.8952 4.38444 70.8769 3.60082C70.8491 2.41451 71.482 1.38799 72.5183 0.962539C73.0283 0.753277 73.5298 0.759709 73.9946 1.10798C74.2064 1.26678 74.4163 1.42559 74.5963 1.61951C74.9049 1.95146 75.1212 2.31903 75.0562 2.70144V2.70193Z\" fill=\"white\"/>\\n<path d=\"M29.7175 5.05082C28.9029 5.14926 28.0537 4.5007 28.2089 3.44301C28.2471 3.18329 28.2868 2.92307 28.3101 2.66187C28.3632 2.06179 28.6167 1.59231 29.1758 1.32319C29.8177 1.01449 30.4764 0.973922 31.1337 1.26481C31.8734 1.59231 32.2087 2.44519 31.9418 3.31389C31.7662 3.88677 31.4299 4.3602 30.9606 4.73222C30.5975 5.01965 30.1605 5.05477 29.7175 5.05131V5.05082Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})],speed:30,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b0wjcu hidden-72rtr7\",\"data-framer-name\":\"Ticker-mobile\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9ecuzv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kBMkAwpNk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"kBMkAwpNk\",layoutId:\"kBMkAwpNk\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pgn7wy\",\"data-framer-name\":\"ticker-1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7r0ru1\",\"data-framer-name\":\"Il Makiage\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:106,svg:'<svg width=\"106\" height=\"39\" viewBox=\"0 0 106 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.7617 32.6648V36.9095L33.3726 32.6648H31.9834V38.8389H33.0639V34.517L34.5302 38.8389H35.8422V32.6648H34.7617Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.1572 32.6648V38.8389H42.016V37.8356H39.5464V36.2149H41.7845V35.1344H39.5464V33.6681H41.9389V32.6648H38.1572Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M48.422 32.6648L47.7274 37.2182H47.6502L46.8784 32.6648H45.6436L44.8718 37.2182H44.7947L44.1001 32.6648H42.7881L44.0229 38.8389H45.4893L46.261 34.3627L47.0328 38.8389H48.4991L49.7339 32.6648H48.422Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M55.2902 32.6648L54.3641 35.0573L53.5152 32.6648H52.0488L53.7467 36.4464V38.8389H54.9815V36.4464L56.6794 32.6648H55.2902Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M58.8406 36.8326C58.8406 37.0641 58.9178 37.2957 58.9949 37.5272C59.0721 37.6815 59.1493 37.8359 59.3036 37.9131C59.6123 38.0674 59.921 38.0674 60.2298 37.9131C60.3841 37.8359 60.4613 37.6815 60.5385 37.5272C60.6156 37.2957 60.6928 37.0641 60.6928 36.8326C60.6928 36.5239 60.6928 36.2152 60.6928 35.7521C60.6928 35.2891 60.6928 34.9804 60.6928 34.6717C60.6928 34.4401 60.6156 34.2086 60.5385 33.9771C60.4613 33.8227 60.3841 33.6684 60.2298 33.5912C59.921 33.4369 59.6123 33.4369 59.3036 33.5912C59.1493 33.6684 59.0721 33.8227 58.9949 33.9771C58.9178 34.2086 58.9178 34.4401 58.8406 34.6717C58.8406 34.9804 58.7634 35.2891 58.7634 35.7521C58.7634 36.2152 58.7634 36.5239 58.8406 36.8326ZM57.5286 34.4401C57.5286 34.0543 57.6829 33.7456 57.8373 33.4369C57.9916 33.1282 58.2232 32.8966 58.5319 32.7423C58.9178 32.5879 59.3036 32.5107 59.6895 32.5107C60.0754 32.5107 60.5385 32.5879 60.9243 32.7423C61.233 32.8966 61.4646 33.1282 61.6189 33.4369C61.7733 33.7456 61.9276 34.1314 61.9276 34.4401C62.0048 35.2891 62.0048 36.138 61.9276 37.0641C61.9276 37.45 61.7733 37.7587 61.6189 38.0674C61.4646 38.3761 61.233 38.6077 60.9243 38.6848C60.5385 38.8392 60.1526 38.9164 59.6895 38.9164C59.3036 38.9164 58.8406 38.8392 58.5319 38.6848C58.2232 38.5305 57.9916 38.299 57.8373 38.0674C57.6829 37.7587 57.6058 37.3728 57.5286 37.0641C57.4514 36.138 57.4514 35.2891 57.5286 34.4401Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M65.0143 35.366C65.323 35.366 65.5546 35.2888 65.7861 35.1344C65.9405 34.9801 66.0948 34.6714 66.0176 34.4398C66.0176 33.8224 65.7089 33.5909 65.0915 33.5909H64.4741V35.366H65.0143ZM65.5546 32.6648C66.0176 32.6648 66.4807 32.742 66.8666 33.0507C67.1753 33.3594 67.3296 33.8224 67.3296 34.2855C67.3296 34.6714 67.2524 34.9801 67.0981 35.2888C66.8666 35.5975 66.635 35.7518 66.2492 35.829C66.5579 35.829 66.7894 35.9062 67.0209 36.1377C67.1753 36.3693 67.3296 36.6008 67.3296 36.9095C67.3296 37.0638 67.3296 37.141 67.3296 37.2954C67.3296 37.4497 67.3296 37.6041 67.3296 37.7584C67.3296 37.99 67.3296 38.2987 67.4068 38.5302C67.4068 38.6845 67.484 38.8389 67.6383 38.9161V38.9932H66.172C66.0948 38.9161 66.0948 38.8389 66.0176 38.6845C66.0176 38.6074 66.0176 38.453 66.0176 38.2987V37.141C66.0176 36.9095 65.9405 36.7551 65.8633 36.5236C65.7089 36.3693 65.4774 36.2921 65.1687 36.2921H64.4741V38.9161H63.1621V32.742L65.5546 32.6648Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M71.6515 32.6648L69.9536 35.1344V32.6648H68.6416V38.8389H69.9536V36.9867L70.4167 36.2921L71.8058 38.8389H73.3494L71.3428 35.2888L73.1178 32.6648H71.6515Z\" fill=\"white\"/>\\n<path d=\"M3.89093 0.559082H0.34082V25.5642H3.89093V0.559082Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.5918 0.559082V25.5642H15.2355V22.6315H10.1419V0.559082H6.5918Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.2658 25.5642H21.0244V0.559082H26.1952L28.3562 16.9204L30.4399 0.559082H35.6107V25.487H32.2921V18.2324C32.2921 14.991 32.3693 11.7496 32.5237 7.6593L29.8997 25.487H26.6583L24.0343 7.73647C24.2658 11.8268 24.2658 14.991 24.2658 18.3096V25.5642Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M43.251 7.6593L44.4086 18.2324H41.939L43.251 7.6593ZM41.0129 0.559082L37.7715 25.487H41.0901L41.6303 20.7021H44.6402L45.1804 25.487H48.7305L45.6435 0.559082H41.0129Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M58.3005 0.559082L54.596 11.5953V0.559082H51.0459V25.5642H54.596V13.0616L58.3005 25.5642H62.2365L57.9146 12.1355L61.9278 0.559082H58.3005Z\" fill=\"white\"/>\\n<path d=\"M67.7933 0.559082H64.2432V25.5642H67.7933V0.559082Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M75.4336 7.6593L76.5913 18.2324H74.1216L75.4336 7.6593ZM73.1955 0.559082L69.9541 25.487H73.2727L73.8129 20.7021H76.8228L77.363 25.487H80.9131L77.7489 0.559082H73.1955Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M87.1637 25.7963C84.5397 25.7963 82.6875 24.0984 82.6875 21.0885V5.19023C82.6875 2.25753 84.5397 0.328125 87.8583 0.328125C91.1769 0.328125 92.7204 2.25753 92.7204 5.19023V8.89469H89.4018V5.11305C89.4018 4.18694 89.016 3.18365 87.7811 3.18365C86.5463 3.18365 86.1604 4.18694 86.1604 5.11305V21.0114C86.1604 21.9375 86.5463 22.9408 87.7811 22.9408C88.8616 22.9408 89.4018 22.2462 89.4018 21.0114V15.4547H87.4724V12.6763H92.7204V25.5648H90.6367L89.9421 24.4843C89.4018 25.4104 88.3214 25.8735 87.1637 25.7963Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M95.8848 0.559082V25.5642H105.223V22.6315H99.4349V13.4475H103.217V10.592H99.4349V3.49178H105.069V0.559082H95.8848Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kuobbv\",\"data-framer-name\":\"Clearscore\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:166,svg:'<svg width=\"166\" height=\"21\" viewBox=\"0 0 166 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M43.3153 14.2816L45.6818 16.6733C43.556 19.0649 40.9537 20.0226 37.8451 20.0226C32.2095 20.0226 28.1182 16.0365 28.1182 10.456C28.1182 4.87557 32.2095 0.894531 37.8451 0.894531C40.9537 0.894531 43.556 1.84717 45.6818 4.2388L43.3153 6.63043C41.9866 5.22153 40.2067 4.12348 38.1109 4.12348C34.4958 4.12348 31.9989 6.49004 31.9989 10.446C31.9989 14.402 34.5059 16.7735 38.1109 16.7735C40.2067 16.7836 41.9866 15.6905 43.3153 14.2816Z\" fill=\"white\"/>\\n<path d=\"M48.0742 0.628418H51.5288V19.7564H48.0742V0.628418Z\" fill=\"white\"/>\\n<path d=\"M66.57 14.046H57.6954C57.9361 16.1167 59.1996 17.2047 61.0447 17.2047C61.6516 17.2287 62.2571 17.128 62.8236 16.909C63.3902 16.6899 63.9058 16.3572 64.3388 15.9312L66.3043 17.8966C64.7961 19.3117 62.7912 20.0755 60.7238 20.0225C56.7127 20.0225 54.1055 17.4203 54.1055 13.2488C54.1055 9.0772 57.0837 6.46997 60.6687 6.46997C64.4692 6.46997 66.57 8.81146 66.57 12.6371V14.046ZM63.0102 11.7095C63.0102 10.2705 62.2129 9.12734 60.5634 9.12734C59.0592 9.12734 58.1216 10.0599 57.7756 11.7095H63.0102Z\" fill=\"white\"/>\\n<path d=\"M76.8536 17.9516C76.396 18.6334 75.7678 19.1833 75.0314 19.5467C74.2951 19.91 73.4764 20.074 72.657 20.0223C70.3455 20.0223 68.6709 18.5182 68.6709 16.302C68.6709 13.5143 71.0876 11.97 76.643 11.97V11.2029C76.643 9.97949 75.8959 9.12713 74.3316 9.12713C73.6237 9.12292 72.9253 9.28987 72.2959 9.61376C71.6665 9.93764 71.1246 10.4089 70.7166 10.9873L68.7511 9.02184C69.4484 8.18222 70.3302 7.51505 71.3277 7.07236C72.3253 6.62968 73.4117 6.42345 74.5021 6.46976C77.9566 6.46976 80.0825 7.97393 80.0825 11.7344V19.7566H76.8385L76.8536 17.9516ZM72.2057 15.946C72.2057 16.7432 72.7873 17.3549 74.0107 17.3549C75.6603 17.3549 76.643 16.292 76.643 14.6474V14.146C73.028 14.1761 72.2057 14.843 72.2057 15.9561V15.946Z\" fill=\"white\"/>\\n<path d=\"M86.7104 15.0531V19.7561H83.2559V6.71997H86.7104V9.4024C87.6129 7.24643 89.3427 6.44922 91.3332 6.44922V10.1194C87.6681 10.1394 86.7104 11.8341 86.7104 15.0531Z\" fill=\"white\"/>\\n<path d=\"M100.023 20.0229C97.5225 20.0828 95.0798 19.265 93.1191 17.7115L94.9793 14.8436C96.4464 16.044 98.2645 16.734 100.159 16.809C102.285 16.809 103.322 16.0369 103.322 14.628C103.322 11.1734 93.9163 13.7255 93.9163 6.55059C93.9163 3.04086 96.8094 0.919978 100.585 0.919978C102.885 0.841005 105.132 1.62626 106.882 3.12108L105.022 5.93889C103.807 4.86004 102.258 4.23162 100.635 4.15896C98.9102 4.15896 97.7921 4.98124 97.7921 6.25978C97.7921 9.92494 107.173 7.26256 107.173 14.282C107.173 17.5812 104.646 20.0229 100.023 20.0229Z\" fill=\"white\"/>\\n<path d=\"M121.177 8.70597L119.001 10.882C118.63 10.4267 118.159 10.0647 117.623 9.82524C117.087 9.58574 116.503 9.47542 115.917 9.50318C113.952 9.50318 112.568 10.7516 112.568 13.2486C112.568 15.7455 113.952 16.9939 115.917 16.9939C116.502 17.0151 117.084 16.9018 117.619 16.6628C118.153 16.4237 118.626 16.0653 119.001 15.6151L121.177 17.7912C120.508 18.514 119.693 19.0867 118.786 19.4714C117.88 19.856 116.902 20.0438 115.917 20.0223C111.906 20.0223 109.008 17.4452 109.008 13.2486C109.008 9.05193 111.906 6.46977 115.917 6.46977C116.902 6.44928 117.88 6.63801 118.787 7.02349C119.693 7.40896 120.508 7.98242 121.177 8.70597Z\" fill=\"white\"/>\\n<path d=\"M129.018 6.46997C132.949 6.46997 135.737 9.15742 135.737 13.2488C135.737 17.3401 132.949 20.0225 129.018 20.0225C125.087 20.0225 122.27 17.3501 122.27 13.2488C122.27 9.14739 125.082 6.46997 129.018 6.46997ZM129.018 16.9992C131.089 16.9992 132.207 15.5401 132.207 13.2538C132.207 10.9674 131.089 9.50839 129.018 9.50839C126.947 9.50839 125.829 10.9674 125.829 13.2538C125.829 15.5401 126.942 16.9941 129.018 16.9941V16.9992Z\" fill=\"white\"/>\\n<path d=\"M141.774 15.0531V19.7561H138.319V6.71997H141.774V9.4024C142.676 7.24643 144.401 6.44922 146.397 6.44922V10.1194C142.732 10.1394 141.774 11.8341 141.774 15.0531Z\" fill=\"white\"/>\\n<path d=\"M159.869 14.046H150.994C151.235 16.1167 152.498 17.2047 154.344 17.2047C154.95 17.2287 155.556 17.128 156.122 16.909C156.689 16.6899 157.205 16.3572 157.638 15.9312L159.603 17.8966C158.094 19.3107 156.09 20.0744 154.023 20.0225C150.012 20.0225 147.404 17.4203 147.404 13.2488C147.404 9.0772 150.383 6.46997 153.967 6.46997C157.768 6.46997 159.869 8.81146 159.869 12.6371V14.046ZM156.309 11.7095C156.309 10.2705 155.512 9.12734 153.862 9.12734C152.358 9.12734 151.42 10.0599 151.074 11.7095H156.309Z\" fill=\"white\"/>\\n<path d=\"M165.289 6.67531C165.289 7.09301 165.165 7.50132 164.933 7.84856C164.701 8.19579 164.371 8.46634 163.985 8.62596C163.599 8.78557 163.174 8.82708 162.765 8.74523C162.355 8.66337 161.979 8.46183 161.684 8.16613C161.389 7.87042 161.188 7.49383 161.107 7.08403C161.026 6.67424 161.069 6.24966 161.23 5.86404C161.39 5.47842 161.661 5.1491 162.009 4.91776C162.357 4.68642 162.766 4.56347 163.183 4.56446C163.46 4.56446 163.734 4.61909 163.99 4.72523C164.246 4.83138 164.478 4.98694 164.674 5.18302C164.87 5.37909 165.025 5.61183 165.13 5.8679C165.236 6.12397 165.29 6.39835 165.289 6.67531ZM164.978 6.67531C164.979 6.31888 164.874 5.97018 164.677 5.67341C164.48 5.37663 164.198 5.14515 163.869 5.00829C163.54 4.87143 163.178 4.83536 162.828 4.90466C162.479 4.97395 162.157 5.14548 161.905 5.39752C161.653 5.64955 161.482 5.97074 161.413 6.32037C161.343 6.67 161.379 7.03233 161.516 7.36144C161.653 7.69055 161.885 7.97162 162.181 8.16902C162.478 8.36643 162.827 8.47128 163.183 8.47029C163.419 8.47095 163.653 8.42497 163.871 8.335C164.089 8.24503 164.287 8.11284 164.454 7.94602C164.621 7.77921 164.753 7.58107 164.843 7.363C164.933 7.14492 164.979 6.91122 164.978 6.67531ZM163.7 6.926L164.296 7.87865H163.574L163.073 7.04634H162.847V7.87865H162.17V5.42184H163.173C163.604 5.42184 164.146 5.55721 164.146 6.21403C164.152 6.36377 164.112 6.51173 164.032 6.6387C163.953 6.76567 163.837 6.86577 163.7 6.926ZM162.852 6.47475H163.093C163.279 6.47475 163.414 6.43966 163.414 6.2391C163.414 6.03855 163.279 5.99342 163.093 5.99342H162.852V6.47475Z\" fill=\"white\"/>\\n<path d=\"M1.88574 0.608398V12.1103C2.4458 11.945 3.02659 11.8606 3.61052 11.8596C4.19774 11.8606 4.78185 11.945 5.34533 12.1103V4.08804H17.5592V16.2869H9.53695C9.70667 16.8478 9.79284 17.4306 9.79266 18.0167C9.79164 18.6022 9.70723 19.1847 9.54196 19.7464H21.0188V0.608398H1.88574Z\" fill=\"white\"/>\\n<path d=\"M3.61056 20.7143C5.10034 20.7143 6.30804 19.5066 6.30804 18.0168C6.30804 16.527 5.10034 15.3193 3.61056 15.3193C2.12079 15.3193 0.913086 16.527 0.913086 18.0168C0.913086 19.5066 2.12079 20.7143 3.61056 20.7143Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xhl44b\",\"data-framer-name\":\"Wise\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:88,svg:'<svg width=\"88\" height=\"21\" viewBox=\"0 0 88 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M49.4012 1.06433H54.7583L52.0633 20.2904H46.7063L49.4012 1.06433ZM42.6476 1.06433L39.0324 12.1398L37.4547 1.06433H33.7081L28.9756 12.1069L28.3841 1.06433H23.1913L24.9989 20.2904H29.3044L34.6284 8.13033L36.5018 20.2904H40.7413L47.7416 1.06433H42.6476ZM87.6234 12.2384H74.9045C74.9702 14.7363 76.4657 16.3795 78.6675 16.3795C80.3274 16.3795 81.6419 15.4921 82.6608 13.7996L86.9545 15.7518C85.479 18.6587 82.3698 20.5533 78.5361 20.5533C73.3106 20.5533 69.8433 17.0367 69.8433 11.384C69.8433 5.17247 73.9185 0.768555 79.67 0.768555C84.7311 0.768555 87.9191 4.18652 87.9191 9.51062C87.9191 10.398 87.8205 11.2854 87.6234 12.2384ZM82.8579 8.55757C82.8579 6.32275 81.6091 4.90955 79.6042 4.90955C77.5996 4.90955 75.8248 6.38847 75.3647 8.55757H82.8579ZM6.44824 6.85845L0.979492 13.2491H10.7437L11.8414 10.2353H7.65767L10.2146 7.27913L10.2228 7.20025L8.55983 4.33935H16.0383L10.2409 20.2904H14.2077L21.208 1.06433H3.1223L6.44659 6.85845H6.44824ZM63.4676 4.90955C65.3572 4.90955 67.0136 5.92509 68.4597 7.66693L69.219 2.24748C67.8713 1.33548 66.0474 0.768555 63.6319 0.768555C58.8335 0.768555 56.1387 3.57851 56.1387 7.14438C56.1387 9.61751 57.519 11.1293 59.7867 12.1069L60.8712 12.6C62.8923 13.4627 63.4347 13.8899 63.4347 14.802C63.4347 15.714 62.5227 16.3466 61.1341 16.3466C58.8417 16.3547 56.9849 15.1799 55.5882 13.1751L54.8142 18.6981C56.4049 19.9109 58.4442 20.5533 61.1341 20.5533C65.6941 20.5533 68.4959 17.9241 68.4959 14.2761C68.4959 11.7948 67.3949 10.2009 64.6178 8.95196L63.4347 8.39325C61.7913 7.662 61.2327 7.25941 61.2327 6.45421C61.2327 5.58329 61.9968 4.90955 63.4676 4.90955Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mrk15r\",\"data-framer-name\":\"Maelys\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:72,svg:'<svg width=\"72\" height=\"45\" viewBox=\"0 0 72 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M54.3104 7.52348C53.8968 8.69995 53.4865 9.8798 53.0661 11.0546C51.4692 15.518 49.869 19.9815 48.2704 24.445C48.189 24.6738 48.1907 25.023 47.9127 25.0467C47.6296 25.0705 47.5737 24.7111 47.4499 24.5094C46.1395 22.3412 44.8274 20.1747 43.5577 17.9845C43.2712 17.4896 43.1 17.3675 42.5711 17.7269C40.5657 19.0847 38.5094 20.3663 36.4989 21.714C36.0446 22.0174 35.7361 22.0022 35.2936 21.7072C33.3272 20.3917 31.3269 19.1288 29.3621 17.8116C28.8282 17.454 28.562 17.3658 28.1772 18.0507C26.9533 20.2341 25.6344 22.3649 24.346 24.5111C24.2223 24.7162 24.1579 25.0654 23.868 25.0332C23.5815 25.001 23.6036 24.6433 23.5239 24.4212C21.5642 18.9779 19.6131 13.533 17.6636 8.08628C17.5924 7.88625 17.45 7.68283 17.6771 7.39803C18.9418 8.21851 20.2098 9.03729 21.4744 9.85946C23.4069 11.1173 25.3547 12.3531 27.2601 13.6516C27.7856 14.0093 27.9636 13.8601 28.2365 13.3973C30.4911 9.57297 32.7678 5.76047 35.0377 1.94458C35.1241 1.79879 35.2089 1.653 35.3004 1.5123C35.7785 0.778281 36.0463 0.773195 36.4972 1.52078C37.672 3.47365 38.8332 5.43499 39.9995 7.39464C41.1658 9.3526 42.3626 11.2919 43.4764 13.2787C43.8442 13.9347 44.0934 13.9686 44.6986 13.5635C47.6703 11.5733 50.6742 9.634 53.6679 7.67774C53.8052 7.5879 53.9493 7.50822 54.0883 7.42516C54.1629 7.45906 54.2358 7.49466 54.3104 7.52856V7.52348ZM22.2745 13.2363C22.205 13.199 22.0796 13.121 22.0728 13.1295C21.9999 13.2295 21.988 13.3312 22.1321 13.3889C22.8577 15.4841 23.5849 17.5794 24.3647 19.8323C25.1241 18.5745 25.7463 17.5048 26.4108 16.464C26.6617 16.0707 26.4549 15.9317 26.1735 15.752C24.8699 14.9179 23.573 14.0771 22.2728 13.238L22.2745 13.2363ZM49.5248 13.2329C48.2026 14.089 46.8922 14.9688 45.5479 15.7876C45.1292 16.0419 45.2614 16.2419 45.4326 16.5233C46.0717 17.5777 46.7057 18.6355 47.4262 19.8323C48.1992 17.6082 48.9315 15.4977 49.6655 13.3872C49.8079 13.3312 49.7978 13.2312 49.7266 13.1312C49.7198 13.1227 49.596 13.1973 49.5265 13.2329H49.5248ZM29.8266 15.3214C31.7252 16.5487 33.6188 17.7574 35.492 18.9966C35.8514 19.2339 36.1141 19.1492 36.4142 18.9508C38.1077 17.8371 39.7944 16.7132 41.4998 15.6197C41.8591 15.3892 41.9337 15.2265 41.6913 14.8417C41.0319 13.7957 40.4233 12.7176 39.791 11.6547C38.5162 9.51534 37.2397 7.37769 35.9022 5.13494C33.8442 8.58637 31.8473 11.9344 29.8283 15.3197L29.8266 15.3214Z\" fill=\"white\"/>\\n<path d=\"M8.85043 36.5265C7.90451 37.9081 6.95858 39.288 6.01436 40.6696C5.45664 41.485 5.4685 41.4782 4.89722 40.6255C3.97842 39.2541 3.04267 37.8946 2.08828 36.4943C1.80518 36.7554 1.9035 37.0232 1.90181 37.2504C1.89333 39.3117 1.87299 41.3731 1.91198 43.4345C1.92215 43.9973 1.71703 44.0702 1.2322 44.0753C0.7389 44.082 0.632102 43.9159 0.635492 43.4497C0.655835 40.5408 0.640578 37.6318 0.655835 34.7245C0.655835 34.4567 0.452411 34.0142 0.888077 33.9515C1.32374 33.8871 1.82044 33.7532 2.16795 34.294C3.07997 35.7145 4.03267 37.108 4.97181 38.5099C5.12777 38.7439 5.28881 38.9727 5.49732 39.2761C6.59581 37.6488 7.6604 36.0688 8.72837 34.4906C8.86738 34.2855 8.94875 34.0312 9.21828 33.9363C9.92179 33.6871 10.3185 33.96 10.3185 34.7093C10.3185 37.5894 10.3083 40.4696 10.3286 43.3497C10.332 43.8617 10.2541 44.0837 9.65904 44.0837C9.0708 44.0837 9.04707 43.8278 9.05046 43.3734C9.06741 41.1171 9.05894 38.8608 9.05894 36.6045C8.98943 36.5791 8.91993 36.5537 8.85043 36.5282V36.5265Z\" fill=\"white\"/>\\n<path d=\"M67.458 33.9639C69.2244 33.969 70.484 34.7759 70.7704 36.1321C70.823 36.3813 71.0654 36.8373 70.6314 36.9051C70.25 36.9644 69.6686 37.239 69.4957 36.4694C69.3109 35.6439 68.6447 35.315 67.875 35.2285C67.0122 35.1319 66.1612 35.1946 65.5713 35.9575C65.1 36.5677 65.3153 37.4543 66.0002 37.8307C66.5714 38.1443 67.2139 38.2528 67.831 38.4308C68.4226 38.602 69.0363 38.7342 69.594 38.9868C71.1247 39.6801 71.6621 41.3702 70.7789 42.7993C69.9144 44.1978 68.5057 44.4724 67.0105 44.3267C65.5713 44.186 64.4338 43.5435 63.9642 42.0568C63.6896 41.1888 63.8642 40.9888 64.7406 41.0736C65.061 41.1041 65.1661 41.2329 65.2187 41.5296C65.3814 42.4348 66.0324 42.8552 66.8579 42.9993C67.7954 43.1638 68.7379 43.1434 69.4363 42.3585C70.1602 41.5448 69.8805 40.4345 68.8244 40.0378C68.0666 39.753 67.2563 39.6038 66.4748 39.3801C64.5694 38.8342 63.8184 37.8815 64.0388 36.3084C64.2304 34.9353 65.456 34.0266 67.2037 33.9639C67.2885 33.9605 67.3733 33.9639 67.458 33.9639Z\" fill=\"white\"/>\\n<path d=\"M24.3344 44.1425C23.3851 44.3798 22.7918 44.156 22.6155 43.183C22.5613 42.8863 22.3663 42.6168 22.2714 42.3235C22.1375 41.9082 21.8781 41.7827 21.4458 41.7929C20.2049 41.8217 18.9624 41.8268 17.7215 41.7912C17.2638 41.7777 17.0671 41.9675 16.9434 42.3591C16.8586 42.6253 16.7349 42.8795 16.6264 43.1372C16.3145 43.8853 15.7206 44.2244 14.8447 44.1543C15.4787 42.6134 16.1043 41.103 16.723 39.5908C17.4113 37.9075 18.108 36.2259 18.7708 34.5324C18.92 34.1543 19.1115 34.0102 19.5116 34.0374C19.8846 34.0628 20.1727 34.0391 20.3643 34.5069C21.6662 37.6753 23.0122 40.8249 24.3412 43.9814C24.3599 44.0272 24.3361 44.0916 24.3328 44.1425H24.3344ZM17.6961 40.5758H21.5357C20.8813 38.9975 20.2592 37.4956 19.5879 35.8716C18.9183 37.5363 18.3182 39.0314 17.6977 40.5758H17.6961Z\" fill=\"white\"/>\\n<path d=\"M29.9042 39.15C29.9042 37.6549 29.9195 36.1597 29.8958 34.6645C29.889 34.195 30.0195 34.0288 30.5128 34.039C32.0351 34.0695 33.5608 34.0712 35.0831 34.039C35.6069 34.0288 35.6781 34.2577 35.6832 34.6951C35.6882 35.1273 35.5662 35.2968 35.1119 35.2867C34.0405 35.2596 32.9675 35.2985 31.8961 35.2697C31.3841 35.2562 31.1027 35.346 31.1553 35.9563C31.2214 36.7378 30.9129 37.7549 31.3011 38.2499C31.7164 38.7788 32.7776 38.3669 33.554 38.4211C33.8913 38.4448 34.2321 38.4465 34.5694 38.4211C35.0237 38.3855 35.278 38.4347 35.278 39.0263C35.278 39.623 35.0136 39.6399 34.566 39.6281C33.6065 39.6043 32.6471 39.6366 31.6893 39.6128C31.2909 39.6027 31.1417 39.7179 31.1587 40.1333C31.1892 40.8944 31.1977 41.6589 31.157 42.4184C31.1282 42.9371 31.3536 43.0219 31.8012 43.0117C32.9285 42.9863 34.0592 43.0253 35.1865 42.9931C35.6662 42.9795 35.8154 43.1202 35.8103 43.6033C35.8069 44.0712 35.6916 44.2339 35.1966 44.2238C33.6167 44.1916 32.0368 44.1949 30.4569 44.2238C29.9958 44.2322 29.8907 44.0678 29.8974 43.6406C29.9195 42.1455 29.9059 40.6503 29.9059 39.1551L29.9042 39.15Z\" fill=\"white\"/>\\n<path d=\"M55.294 38.9374C56.1467 37.5541 56.9536 36.2404 57.7656 34.9317C58.3572 33.979 58.3623 33.9807 59.6659 34.1129C58.759 35.6047 58.0029 37.1609 56.9553 38.4848C55.733 40.0308 55.8992 41.7362 55.9483 43.4568C55.967 44.1281 55.7449 44.2722 55.1431 44.2231C54.7719 44.1925 54.5142 44.1332 54.6023 43.7077C55.2719 40.4919 53.436 38.1288 51.8832 35.6674C51.5713 35.1724 51.2831 34.6638 50.9746 34.1468C51.929 33.8383 52.4613 34.1604 52.9021 34.9758C53.6225 36.3065 54.4616 37.5728 55.294 38.9374Z\" fill=\"white\"/>\\n<path d=\"M41.7186 39.1194C41.7186 37.6531 41.744 36.185 41.7067 34.7204C41.6914 34.122 41.9508 34.0457 42.4627 34.0287C43.0171 34.0101 43.0273 34.2813 43.0256 34.6949C43.0137 37.1767 43.0442 39.6585 43.0035 42.1403C42.9917 42.8133 43.1103 43.0845 43.8545 43.0302C44.8648 42.9557 45.8854 43.0455 46.8991 42.998C47.45 42.9726 47.4585 43.2371 47.4687 43.6507C47.4788 44.0864 47.3534 44.2271 46.9008 44.2186C45.3785 44.1898 43.8545 44.1898 42.3322 44.2186C41.8542 44.2271 41.6999 44.088 41.7084 43.6032C41.7372 42.1098 41.7186 40.6146 41.7186 39.1194Z\" fill=\"white\"/>\\n<path d=\"M31.2825 32.2124C30.8943 32.1938 30.6485 31.9666 30.6638 31.5784C30.679 31.1987 30.935 30.9749 31.3384 30.9783C31.725 30.9817 31.9097 31.2343 31.9216 31.5665C31.9369 31.9564 31.7046 32.187 31.2808 32.2107L31.2825 32.2124Z\" fill=\"white\"/>\\n<path d=\"M33.9543 32.2134C33.4881 32.1897 33.3152 31.9337 33.3356 31.5438C33.3542 31.181 33.5865 30.9878 33.9391 30.9793C34.3527 30.9691 34.5426 31.2166 34.5527 31.6099C34.5629 32.0439 34.2934 32.1897 33.9543 32.2117V32.2134Z\" fill=\"white\"/>\\n<path d=\"M22.1326 13.3883C21.9881 13.3305 21.9983 13.2284 22.0731 13.1281C22.0799 13.1196 22.2058 13.1978 22.2755 13.2352C22.2279 13.2863 22.1802 13.3373 22.1326 13.3883Z\" fill=\"white\"/>\\n<path d=\"M49.5254 13.2331C49.5951 13.1974 49.721 13.1209 49.7261 13.1311C49.7975 13.2314 49.8077 13.3317 49.6649 13.3879C49.6189 13.3368 49.5713 13.2858 49.5254 13.2331Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oj2kq2\",\"data-framer-name\":\"Spoiled Child\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:151,svg:'<svg width=\"151\" height=\"25\" viewBox=\"0 0 151 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.98336 18.8814C4.44805 18.9099 1.81835 16.9919 0.973222 13.8C0.836222 13.2822 0.813092 12.9264 1.4803 12.8943C1.59417 12.889 1.70092 12.8125 1.81479 12.7822C2.46955 12.6079 3.15989 12.2218 3.77016 12.3197C4.49075 12.4353 4.28614 13.405 4.62241 13.9494C5.60988 15.5454 8.04386 16.2535 9.69676 15.3354C10.7607 14.7447 10.9013 13.5082 9.98677 12.6791C9.33735 12.0901 8.51535 11.8161 7.71648 11.5208C6.52974 11.0831 5.31809 10.7059 4.20785 10.0849C2.15107 8.93557 1.35042 7.4339 1.59773 5.20453C1.78811 3.48224 3.20971 2.03929 5.27894 1.46638C8.57584 0.553642 11.9617 1.95389 13.6555 4.88783C13.9633 5.4216 13.9011 5.67247 13.3104 5.79879C13.1965 5.8237 13.0808 5.86107 12.9759 5.91266C11.7624 6.53006 10.7429 6.88056 9.69498 5.40025C8.93881 4.33449 7.55813 4.10319 6.21837 4.54444C5.57607 4.75617 5.15084 5.17429 5.08323 5.87174C5.0174 6.56208 5.43018 6.95351 5.98707 7.25598C6.82153 7.7079 7.72716 7.97657 8.61143 8.29683C9.94763 8.78077 11.2447 9.33055 12.3763 10.213C14.9917 12.252 14.7889 16.1236 11.9635 17.8655C10.7465 18.6163 9.39607 18.8796 7.98158 18.8779L7.98336 18.8814Z\" fill=\"white\"/>\\n<path d=\"M83.0684 10.0259C83.063 5.939 85.2301 2.7702 88.7619 1.59235C92.4306 0.368246 96.4517 1.56388 98.6312 4.52273C99.1081 5.17037 99.7628 5.92298 99.649 6.62044C99.5262 7.37483 98.3857 7.15421 97.7612 7.51717C97.7114 7.54741 97.6509 7.55987 97.5975 7.58478C96.8485 7.92995 96.4179 7.88902 96.0051 6.96205C95.0799 4.88925 92.8345 3.85908 90.7173 4.30923C88.3705 4.80741 86.8261 6.58663 86.6535 9.0473C86.577 10.1415 86.5983 11.2322 86.988 12.2873C87.6837 14.1661 88.9683 15.3671 90.9859 15.5859C93.1833 15.8244 94.9678 15.0344 96.0265 13.0399C96.3574 12.4171 96.6189 12.4011 97.1509 12.6467C97.658 12.8797 98.1793 13.1182 98.722 13.2285C99.5867 13.4046 99.624 13.7391 99.2148 14.4579C97.4285 17.5858 93.7829 19.2547 90.0287 18.6071C86.5503 18.0075 83.8993 15.3208 83.2303 11.7695C83.1129 11.1503 83.0879 10.5365 83.0719 10.0277L83.0684 10.0259Z\" fill=\"white\"/>\\n<path d=\"M135.574 17.021C132.768 19.3945 129.603 19.3287 127.546 16.9089C126.526 15.7097 126.126 14.2846 126.041 12.7402C125.889 9.98242 127.279 7.52531 129.579 6.64638C131.56 5.89021 133.405 6.16243 135.045 7.55556C135.189 7.67833 135.33 7.80465 135.574 8.01638C135.574 5.93469 135.607 3.98999 135.556 2.0453C135.538 1.35141 135.762 1.17348 136.408 1.22686C137.056 1.28024 137.712 1.266 138.362 1.22864C138.844 1.20017 138.954 1.38699 138.954 1.83891C138.942 7.22996 138.938 12.6228 138.958 18.0138C138.959 18.5565 138.757 18.6508 138.289 18.6259C137.668 18.5921 137.04 18.5654 136.424 18.6312C135.702 18.7095 135.467 18.4337 135.568 17.7523C135.602 17.5317 135.574 17.3021 135.574 17.0192V17.021ZM135.572 12.6103C135.59 10.4753 134.444 9.07324 132.556 8.92022C130.919 8.78678 129.524 9.99487 129.208 11.815C128.836 13.9572 130.184 15.9126 132.17 16.1083C134.022 16.2898 135.556 14.7134 135.572 12.6103Z\" fill=\"white\"/>\\n<path d=\"M18.8921 7.99738C20.634 6.21282 22.6285 5.79648 24.8063 6.6345C27.0552 7.4992 28.0712 9.33536 28.2918 11.6519C28.4252 13.0539 28.2509 14.4061 27.637 15.7085C26.1834 18.7955 21.8368 20.0659 18.8245 16.9682V19.5179C18.8245 20.911 18.7961 22.3041 18.8388 23.6955C18.8566 24.2559 18.6804 24.4285 18.1413 24.3805C17.3496 24.3093 16.3301 24.6972 15.8212 24.2257C15.355 23.7916 15.6895 22.7685 15.6878 22.007C15.6771 17.0892 15.6984 12.1697 15.6629 7.25189C15.6575 6.52419 15.8799 6.28933 16.5631 6.38897C16.766 6.41921 16.9777 6.3943 17.1841 6.3943C18.2208 6.3943 18.7895 6.92866 18.8904 7.99738H18.8921ZM18.8281 12.4864C18.8228 14.8759 20.5682 16.5039 22.6143 16.0163C25.139 15.4167 26.1247 11.917 24.3241 9.94741C23.4256 8.96528 22.0716 8.65748 20.844 9.15388C19.5398 9.68053 18.8317 10.8513 18.8281 12.4864Z\" fill=\"white\"/>\\n<path d=\"M77.9126 16.9587C76.1654 18.8571 74.162 19.2592 71.9558 18.3394C69.6641 17.3839 68.6998 15.4517 68.4988 13.0871C68.3867 11.7758 68.5984 10.5144 69.1482 9.29202C70.4559 6.38833 74.7029 4.88133 77.95 7.99497C77.95 6.01825 77.9838 4.14117 77.934 2.26765C77.9126 1.49724 78.0603 1.19122 78.9303 1.21791C81.1206 1.28552 81.1224 1.23748 81.1224 3.43838C81.1224 8.2067 81.1099 12.9768 81.1366 17.7451C81.1401 18.3981 81.0316 18.7593 80.2879 18.6276C80.0584 18.5867 79.8146 18.6205 79.578 18.6205C78.5247 18.6205 77.9702 18.0672 77.9144 16.9605L77.9126 16.9587ZM77.9464 12.5409C77.9553 10.4556 76.8237 9.08741 74.9556 8.9255C73.2457 8.77783 71.8579 10.0268 71.5697 11.9733C71.2601 14.0639 72.6782 15.9872 74.6211 16.1118C76.4946 16.2328 77.9375 14.6831 77.9464 12.5409Z\" fill=\"white\"/>\\n<path d=\"M104.435 7.83738C106.106 6.0457 108.003 5.81262 110.004 6.55278C112.022 7.29827 112.685 9.05971 112.76 11.0222C112.849 13.3619 112.773 15.7051 112.801 18.0483C112.806 18.543 112.621 18.6444 112.18 18.6266C111.44 18.5963 110.696 18.5821 109.958 18.6302C109.389 18.6675 109.259 18.4522 109.268 17.9202C109.296 16.0823 109.28 14.2444 109.278 12.4064C109.278 12.0506 109.273 11.6947 109.25 11.3407C109.164 10.081 108.494 9.29812 107.424 9.19849C105.924 9.05971 104.971 9.63973 104.613 10.9101C104.485 11.3691 104.432 11.8353 104.435 12.3139C104.444 14.1518 104.401 15.9916 104.458 17.8277C104.48 18.527 104.254 18.6853 103.615 18.6302C102.967 18.575 102.311 18.5946 101.66 18.6266C101.217 18.6479 101.042 18.5465 101.044 18.0519C101.062 12.6555 101.062 7.26091 101.044 1.86452C101.042 1.34143 101.215 1.20265 101.704 1.23112C102.353 1.26848 103.012 1.28094 103.659 1.22756C104.271 1.17774 104.471 1.35745 104.455 1.99797C104.41 3.8875 104.439 5.77704 104.439 7.83738H104.435Z\" fill=\"white\"/>\\n<path d=\"M66.8527 14.6396C65.9862 17.2817 63.5184 18.9684 60.7695 18.8866C57.9655 18.803 55.5208 16.933 54.8536 14.2588C54.2184 11.7146 54.8536 9.47273 56.8748 7.78425C58.9156 6.07975 61.2802 5.78974 63.6768 6.92488C66.0147 8.03156 67.1605 10.0029 67.2601 12.5988C67.2833 13.2162 67.0555 13.3176 66.5057 13.3123C63.8405 13.2874 61.1734 13.3247 58.5081 13.2856C57.7288 13.2749 57.6879 13.5365 57.9441 14.1539C58.7572 16.1146 61.7339 16.7462 63.2515 15.2001C63.7284 14.7143 64.1714 14.5844 64.7906 14.6289C65.4631 14.677 66.141 14.6396 66.8509 14.6396H66.8527ZM60.8478 11.4672C61.6769 11.4672 62.5043 11.4708 63.3334 11.4672C64.1518 11.4619 64.2408 11.3053 63.8778 10.5296C63.3974 9.49942 62.0488 8.77527 60.7802 8.86601C59.4778 8.95853 58.2359 9.83035 57.8747 10.8748C57.7021 11.3765 57.889 11.4921 58.3622 11.4761C59.1896 11.4494 60.0187 11.469 60.8478 11.469V11.4672Z\" fill=\"white\"/>\\n<path d=\"M42.1942 12.4573C42.1995 16.0104 39.4506 18.802 35.942 18.8091C32.4387 18.8144 29.6115 16.0015 29.6133 12.5089C29.6133 9.02513 32.4725 6.17126 35.942 6.18905C39.4204 6.20684 42.1888 8.98243 42.1942 12.4573ZM38.972 12.5516C38.9791 10.6887 38.1037 9.35962 36.6483 9.02157C34.9598 8.63014 33.4119 9.54466 32.9511 11.2047C32.3622 13.3237 33.2287 15.4428 34.8958 15.9552C37.0842 16.6278 38.9631 15.0603 38.9738 12.5516H38.972Z\" fill=\"white\"/>\\n<path d=\"M52.8537 9.9072C52.8537 12.5707 52.8377 15.2324 52.8661 17.8959C52.8733 18.467 52.7363 18.6948 52.1402 18.6272C51.3289 18.5329 50.2382 18.9795 49.7721 18.4421C49.3717 17.9813 49.6422 16.9227 49.6404 16.1291C49.6351 11.4551 49.6529 6.77932 49.6226 2.1053C49.6191 1.4203 49.7738 1.13918 50.4927 1.22636C51.247 1.31888 52.2434 0.909661 52.7096 1.38471C53.1739 1.85621 52.8394 2.84546 52.8466 3.60696C52.8644 5.70823 52.8519 7.80771 52.8519 9.90897L52.8537 9.9072Z\" fill=\"white\"/>\\n<path d=\"M120.946 9.95544C120.946 7.31685 120.96 4.68004 120.935 2.04145C120.93 1.47032 121.006 1.14828 121.686 1.22657C122.474 1.31553 123.501 0.90453 124.001 1.3867C124.506 1.87243 124.156 2.90082 124.157 3.68902C124.173 8.40218 124.156 13.1136 124.177 17.8267C124.181 18.4192 124.072 18.6985 123.412 18.6292C122.624 18.5455 121.588 18.9476 121.099 18.4815C120.606 18.01 120.958 16.9691 120.951 16.1792C120.93 14.1046 120.944 12.03 120.944 9.95544H120.946Z\" fill=\"white\"/>\\n<path d=\"M115.32 12.3985C115.32 10.6531 115.341 8.90769 115.308 7.16405C115.297 6.62139 115.439 6.42567 115.994 6.46482C116.813 6.52353 117.862 6.22284 118.393 6.62673C118.896 7.01104 118.539 8.11772 118.542 8.90591C118.56 11.8327 118.531 14.7613 118.563 17.6882C118.571 18.3429 118.464 18.6827 117.711 18.5849C116.957 18.487 115.976 18.8945 115.487 18.4248C114.993 17.9497 115.347 16.9694 115.329 16.2114C115.3 14.941 115.322 13.6689 115.322 12.3967L115.32 12.3985Z\" fill=\"white\"/>\\n<path d=\"M47.3238 12.4934C47.3238 14.269 47.3078 16.0447 47.3345 17.8204C47.3416 18.3506 47.2757 18.6602 46.6317 18.5837C45.8186 18.4876 44.7261 18.9271 44.2564 18.404C43.8525 17.9556 44.123 16.8863 44.1212 16.0927C44.1141 13.1926 44.1568 10.2907 44.0945 7.39234C44.0767 6.565 44.34 6.37819 45.0766 6.46181C45.573 6.51874 46.0872 6.51696 46.5836 6.46181C47.2366 6.38886 47.3523 6.66464 47.338 7.25534C47.2989 9.00076 47.3238 10.748 47.3238 12.4934Z\" fill=\"white\"/>\\n<path d=\"M148.316 4.89886C148.796 3.74771 149.223 2.78159 149.6 1.7959C149.762 1.37422 149.978 1.14292 150.442 1.23722C150.908 1.33152 150.702 1.70872 150.707 1.95959C150.729 3.1748 150.721 4.39001 150.714 5.60522C150.714 5.84897 150.814 6.16211 150.367 6.16211C149.953 6.16211 149.981 5.89701 149.981 5.62479C149.981 4.7245 149.981 3.82243 149.848 2.89724C149.494 3.7228 149.145 4.55014 148.784 5.37214C148.672 5.62657 148.672 6.05536 148.323 6.03935C147.994 6.02511 147.983 5.59454 147.869 5.34011C147.521 4.56971 147.215 3.78151 146.672 3.00933C146.672 3.7993 146.684 4.58928 146.665 5.37748C146.658 5.65681 146.848 6.10518 146.284 6.08383C145.741 6.06248 145.934 5.62657 145.928 5.34367C145.91 4.21742 145.912 3.09117 145.928 1.96492C145.932 1.67491 145.775 1.28526 146.307 1.22655C146.756 1.17673 146.93 1.40803 147.072 1.77811C147.451 2.76735 147.857 3.74593 148.319 4.89709L148.316 4.89886Z\" fill=\"white\"/>\\n<path d=\"M114.927 3.02142C114.918 1.86671 115.818 0.898808 116.937 0.861445C118.069 0.824081 119.026 1.74928 119.048 2.90221C119.069 4.10141 118.142 5.04084 116.946 5.03372C115.806 5.02661 114.938 4.1619 114.929 3.02142H114.927Z\" fill=\"white\"/>\\n<path d=\"M47.8179 2.98788C47.7876 4.11946 46.8268 5.03932 45.6792 5.0322C44.5227 5.02509 43.5833 4.06075 43.6296 2.92916C43.6758 1.78334 44.6508 0.833236 45.7522 0.859924C46.8713 0.886612 47.8463 1.89009 47.8179 2.98788Z\" fill=\"white\"/>\\n<path d=\"M143.005 3.96338C143.005 3.66625 142.967 3.36556 143.012 3.07555C143.14 2.22508 142.953 1.7091 141.941 1.90482C141.754 1.9404 141.501 1.95464 141.492 1.63438C141.485 1.32479 141.653 1.22871 141.941 1.23049C142.889 1.23761 143.837 1.23583 144.788 1.23049C145.028 1.23049 145.172 1.28921 145.19 1.56855C145.215 1.93329 144.989 1.96887 144.743 1.92261C143.825 1.74469 143.665 2.19127 143.727 2.9937C143.797 3.87798 143.738 4.77115 143.745 5.66076C143.747 5.96323 143.706 6.18029 143.318 6.16072C142.934 6.14115 143.01 5.87427 143.008 5.65364C143.001 5.08963 143.007 4.52739 143.005 3.96338Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3anofr\",\"data-framer-name\":\"Nectar\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:108,svg:'<svg width=\"108\" height=\"19\" viewBox=\"0 0 108 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M99.0408 0.832031H90.4084V18.0968H107.673V9.46443C107.673 4.69248 103.813 0.832031 99.0408 0.832031ZM3.47679 18.079H0.456349V7.71293L0.438477 4.81759H3.22658V6.19377H3.24445C3.78063 5.31802 5.12106 4.42439 7.01554 4.42439C10.2505 4.42439 12.7169 6.55122 12.7169 10.8049V18.0611H9.67854V10.7512C9.67854 8.5708 8.67768 7.12314 6.56873 7.12314C4.47765 7.12314 3.47679 8.58868 3.47679 10.7512V18.079Z\" fill=\"white\"/>\\n<path d=\"M28.3194 14.1291C27.5151 16.6134 25.2989 18.4721 21.8317 18.4721C17.9355 18.4721 15.0938 15.684 15.0938 11.3947C15.0938 7.15888 18.0427 4.4244 21.778 4.4244C25.4955 4.4244 28.1943 7.12314 28.1943 11.3768V12.2168H18.1678C18.4002 14.5581 19.83 15.9521 21.9925 15.9521C23.7083 15.9521 24.6734 15.1836 25.0666 14.1291H28.3194ZM18.1678 9.91124H25.0308C24.8521 8.21336 23.7619 6.78356 21.6887 6.78356C19.7227 6.78356 18.4359 8.2491 18.1678 9.91124ZM37.3092 18.4721C33.6275 18.4721 30.4462 16.0415 30.4462 11.4483C30.4462 6.89079 33.7347 4.4244 37.4164 4.4244C40.7765 4.4244 43.1893 6.46186 43.7433 9.12485H40.5441C40.1688 8.03463 39.1322 7.15888 37.4164 7.15888C35.1109 7.15888 33.4845 8.85676 33.4845 11.4483C33.4845 14.0398 35.1109 15.7734 37.3807 15.7734C39.1858 15.7734 40.2939 14.8262 40.6335 13.7359H43.8505C43.2965 16.3811 40.6514 18.4721 37.3092 18.4721ZM52.9119 18.1862C49.8199 18.1862 47.8182 16.5955 47.8182 12.9674V7.48059H45.1731V4.83546H47.8182V0.832031H49.1944C50.1059 0.832031 50.8387 1.5648 50.8387 2.4763V4.83546H54.5204V7.48059H50.8387V12.8066C50.8387 14.9334 52.1076 15.4517 53.4838 15.4517C53.8854 15.4537 54.2863 15.4178 54.6812 15.3445V17.9896C54.2702 18.1147 53.5731 18.1862 52.9119 18.1862ZM56.8617 11.484C56.8617 7.31973 59.4889 4.44227 63.5639 4.44227C65.1545 4.44227 67.2992 5.37164 67.8532 6.67632H67.8711V4.85333H70.7843L70.7664 7.74867V18.1147H67.8532V16.256H67.8354C67.2813 17.5607 65.1902 18.49 63.5639 18.49C59.4889 18.4721 56.8617 15.6483 56.8617 11.484ZM67.8354 11.484C67.8354 8.78527 66.0839 7.2125 63.8856 7.2125C61.6336 7.2125 59.9357 8.78527 59.9357 11.484C59.9357 14.1828 61.6336 15.7019 63.8856 15.7019C65.9945 15.7019 67.8354 14.1828 67.8354 11.484ZM81.6329 7.48059C79.1129 7.48059 77.5759 8.91038 77.5759 11.6091V18.079H74.5554V7.71293L74.5197 4.81759H77.4329V6.99803H77.4865C77.9869 5.51462 79.4703 4.4244 81.3648 4.4244C81.901 4.4244 82.2227 4.47801 82.2227 4.47801V7.48059H81.6329Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uyg9x2\",\"data-framer-name\":\"Ubisoft\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:84,svg:'<svg width=\"84\" height=\"17\" viewBox=\"0 0 84 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.362305 0.949281V10.2366C0.362305 14.0076 2.93291 16.4112 6.67678 16.4112C10.6149 16.4112 13.0253 13.8764 13.0253 9.98222V0.949281H9.69212V9.81257C9.69212 11.9359 8.62277 13.2527 6.71231 13.2527C4.61855 13.2527 3.69556 11.7384 3.69556 9.98222V0.949281H0.362305ZM14.6459 1.07758V16.2597H19.9548C22.8952 16.2597 25.3937 14.76 25.3937 11.7856C25.3937 8.6809 22.6769 7.99272 22.6769 7.99272C22.6769 7.99272 24.6886 7.43392 24.6886 4.77769C24.6886 2.12322 22.1458 1.07758 19.9548 1.07758H14.6459ZM18.004 3.96129H19.6156C20.734 3.96129 21.4497 4.55038 21.4497 5.57546C21.4497 6.49238 20.8425 7.1843 19.7004 7.1843H18.0041L18.004 3.96129ZM18.004 9.55921H19.7852C21.4601 9.55921 22.0408 10.4195 22.0408 11.4463C22.0408 12.641 21.2896 13.3414 19.9548 13.3414H18.0041L18.004 9.55921ZM26.6553 1.0765H30.0055V16.2586H26.6553V1.0765ZM63.2111 16.2586H59.8608V1.0765H70.378V4.21473H63.2111V7.69218H69.7419V10.2366H63.2111V16.2586ZM71.6079 1.0765V4.21473H75.9335V16.2586H79.3261V4.21473H83.5669V1.0765H71.6079ZM33.8302 11.2104L31.1687 13.1563C31.1687 13.1563 32.0884 16.5199 36.6989 16.5199C39.7692 16.5199 42.0284 14.7281 42.0284 11.5782C42.0284 6.50177 34.9302 7.57869 34.9302 4.96806C34.9302 4.28104 35.5412 3.67415 36.6688 3.67415C38.478 3.67415 39.1656 5.4489 39.1656 5.4489L41.8278 3.58054C41.8278 3.58054 40.788 0.808754 36.8025 0.808754C33.5272 0.808754 31.7873 2.91009 31.7873 5.0784C31.7873 10.2516 38.6788 9.1288 38.6788 11.8438C38.6788 12.7599 37.9568 13.4331 36.8324 13.4254C34.6046 13.4254 33.8302 11.2104 33.8302 11.2104ZM50.6794 0.801758C46.7341 0.801758 44.9756 2.94337 44.9756 2.94337L45.4845 3.45224C45.4845 3.45224 42.932 5.26527 42.932 9.15875C42.932 13.6389 46.3873 16.5165 50.698 16.5165C55.7068 16.5165 58.5488 12.8208 58.5488 8.66576C58.5488 4.23512 55.3041 0.801758 50.6794 0.801758ZM50.751 3.95322C53.426 3.95322 55.1614 5.9978 55.1614 8.65253C55.1614 11.2797 53.4468 13.381 50.751 13.381C48.0877 13.381 46.3379 11.5213 46.3379 9.05275C46.3379 6.80614 47.8593 5.82707 47.8593 5.82707L47.308 5.27575C47.308 5.27575 48.4811 3.95322 50.751 3.95322Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rb6b2z\",\"data-framer-name\":\"Ben & Jerry's\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:109,svg:'<svg width=\"109\" height=\"23\" viewBox=\"0 0 109 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.0358 15.7402C13.8207 17.8937 12.6947 19.9637 10.5807 20.7175L7.4757 21.8657C6.84703 22.0942 4.11475 23.2423 3.78795 22.3462C3.56981 21.7469 3.38162 21.1387 3.18448 20.5501C3.00358 20.0051 2.90808 19.4647 3.51968 19.2412C4.08843 19.0351 4.24637 18.9091 4.0537 18.3356C3.97277 18.1121 3.80755 17.9346 3.72998 17.7245C3.47431 17.0222 3.29901 16.3076 3.03774 15.589C2.95989 15.3795 2.95849 15.1432 2.88232 14.9337C2.80699 14.7237 2.7059 14.5411 2.59025 14.363C2.27465 14.4269 1.99378 14.4952 1.69526 14.6038C1.42671 14.7013 1.25253 14.4101 1.17552 14.2006L0.510444 12.3753C0.456133 12.2264 0.377148 12.102 0.323382 11.9531C0.15956 11.505 0.306867 11.0261 0.770875 10.8592L4.57372 9.48933C5.68181 9.08608 6.52387 8.79484 7.70617 9.11072C8.90863 9.43444 9.75153 10.0259 10.1873 11.2222C10.5362 12.1776 10.1542 13.5056 10.145 13.524C10.1783 13.6142 10.3578 13.598 10.4348 13.6226C11.0027 13.7873 11.6199 13.9004 12.0895 14.3059C12.5746 14.7058 12.8176 15.1421 13.0299 15.7251L13.0358 15.7402ZM7.37859 12.9057C7.16043 12.3076 6.14699 12.4566 5.68382 12.6257C5.56424 12.6694 5.42787 12.8542 5.4724 12.9746C5.61354 13.3616 5.80031 13.7358 5.93221 14.1441C6.12767 14.1239 6.33321 14.083 6.52672 14.0124C6.99129 13.8433 7.59085 13.4893 7.37214 12.8906L7.37859 12.9057ZM8.99939 16.8884C8.76416 16.246 7.82101 16.3535 7.33207 16.5468L7.06324 16.6436C7.14529 17.057 7.2419 17.4613 7.40432 17.8601L7.56646 18.2589C7.76332 18.2891 7.95991 18.2678 8.15481 18.1961C8.58774 18.0388 9.19401 17.3779 9.01395 16.8845L8.99939 16.8884Z\" fill=\"white\"/>\\n<path d=\"M21.8552 13.4104C21.9899 13.8854 22.0627 14.3765 22.1962 14.852C22.3007 15.2172 22.4659 15.5695 22.5656 15.9218C22.8081 16.7787 22.6331 16.9775 21.7905 17.2166C21.4382 17.3146 21.0641 17.3393 20.7115 17.4384C20.2987 17.5549 19.9064 17.7487 19.4928 17.8663C18.2374 18.2214 16.9633 18.5137 15.7028 18.8531C15.4889 18.9147 15.2912 19.0374 15.0772 19.0962C14.8639 19.1589 14.5631 19.0928 14.5099 18.8459C14.2539 17.9402 13.9938 17.0217 13.784 16.1049C13.7012 15.7481 14.0548 15.5992 14.3309 15.5196C14.8196 15.3818 14.2954 14.1071 14.2083 13.803C13.9551 12.8487 13.7171 11.8898 13.4491 10.9383L13.3559 10.6683C13.2478 10.2853 12.8728 10.6554 12.5578 10.5955C12.0369 10.5126 11.9204 9.9817 11.7911 9.52244C11.7297 9.30961 11.7353 9.09232 11.7084 8.88397C11.6177 8.446 11.4371 8.03435 11.2962 7.5947C11.1442 7.05983 11.7552 6.82069 12.1725 6.71931C12.6171 6.59218 13.0873 6.5597 13.546 6.42864C15.0014 6.01756 16.4348 5.5303 17.889 5.11865C18.8095 4.85822 19.0324 4.7126 19.3267 5.75544C19.5693 6.6129 19.847 7.47708 20.1052 8.33062C20.292 8.98926 20.073 9.03407 19.4906 9.19873C19.1234 9.3029 18.7734 9.53252 18.4065 9.6367C17.4886 9.89769 17.541 9.61656 17.2923 8.79548C17.0739 8.84027 16.8342 8.87389 16.6009 8.92429C16.3559 8.99318 16.3808 9.20208 16.4371 9.39979L16.7899 10.7064C16.8546 10.936 17.0616 10.8459 17.2607 10.7871C17.4746 10.7266 17.6561 10.6095 17.87 10.549C18.2996 10.4286 18.3875 10.5031 18.4998 10.9013C18.6342 11.3768 18.7224 11.8646 18.8608 12.3541C19.0428 12.9954 18.7224 12.9719 18.2161 13.1147C18.1092 13.1455 17.8087 13.3124 17.8434 13.4362L18.2268 14.8492C18.2651 14.9876 18.5275 14.9786 18.6185 14.9534C19.3853 14.7378 19.2021 14.6728 19.0355 14.0254C18.9621 13.7644 18.9753 13.4614 19.2671 13.3813C19.8482 13.2155 20.45 13.0621 21.0333 12.8974C21.6759 12.7159 21.6824 12.7966 21.8602 13.4239L21.8552 13.4104Z\" fill=\"white\"/>\\n<path d=\"M33.9022 14.0407C33.9926 14.4932 33.6521 14.6579 33.278 14.7341C32.95 14.8001 32.612 14.8181 32.285 14.883C31.9251 14.9559 31.5762 15.0746 31.2007 15.1485C31.0299 15.1832 30.733 15.2426 30.605 15.0891C29.4648 13.8559 28.4827 12.5106 27.3147 11.2986C27.1749 11.1648 26.5849 10.3241 26.444 10.3521C26.3499 10.3711 26.4373 10.8898 26.4525 10.9693L26.6367 11.8895C26.7686 12.626 27.206 12.0525 27.4371 12.3129C27.7454 12.6394 27.7795 13.2196 27.8607 13.6251C27.9666 14.1549 28.2254 14.6388 28.3301 15.1541C28.4852 15.9348 27.6115 15.7847 27.0797 15.8912C26.7051 15.9662 26.3612 16.1163 26.0072 16.2048C25.6782 16.2692 25.3343 16.2574 25.0047 16.3067C24.5992 16.3885 24.2083 16.5459 23.7899 16.6461C23.1968 16.766 22.9817 14.7945 22.891 14.3431C22.8216 13.9993 22.7471 13.624 22.7283 13.2891C22.7154 13.0628 23.5337 13.013 23.5219 12.7066C23.5219 12.4641 23.4676 12.1992 23.4186 11.9483L22.7812 8.76264C22.6474 8.09168 22.5387 7.9511 21.8672 8.08608C21.6952 8.12026 21.4922 8.0788 21.4553 7.89342C21.3021 7.12725 21.1803 6.3566 21.024 5.57586C20.9705 5.30983 20.9843 5.04828 20.9282 4.76825C20.8033 4.14266 21.8523 4.11185 22.2441 4.04912C22.7294 3.95279 23.1976 3.77861 23.6849 3.69628L23.9968 3.63468C24.6866 3.51258 25.7913 5.22358 26.2587 5.69796C26.7437 6.17065 27.1581 6.70384 27.6429 7.17653C27.7795 7.29303 28.3169 8.11072 28.4107 8.09392C28.4883 8.07654 28.4603 7.9371 28.4513 7.89006L28.1643 6.45405C28.0892 6.07936 27.9041 6.2121 27.609 6.27259C27.2659 6.34091 27.0192 6.32523 26.9531 5.91638C26.9161 5.72932 26.9408 5.52994 26.9024 5.34288C26.8431 5.04492 26.6899 4.76825 26.616 4.47477C26.5342 4.06929 26.3286 3.20006 26.8904 3.08805C27.5776 2.95083 28.2757 2.87635 28.9638 2.73857C29.5574 2.61984 30.1189 2.42717 30.7117 2.309C31.3678 2.17739 31.5667 2.12082 31.714 2.85394C31.8786 3.68172 31.9831 4.52126 32.1477 5.3496C32.225 5.73884 31.805 5.90462 31.4757 5.96959C31.3986 5.98697 31.309 6.01943 31.309 6.10121C31.4793 7.52713 31.763 9.02923 32.0413 10.4188C32.1567 10.9956 32.5566 10.803 32.9621 10.7217C33.3376 10.6478 33.3712 10.9805 33.4303 11.2785C33.6117 12.1813 33.7176 13.1188 33.9022 14.0407Z\" fill=\"white\"/>\\n<path d=\"M57.3055 2.42754C57.3095 2.8095 57.3912 3.19034 57.3945 3.58855C57.398 3.87475 57.3195 4.09821 56.9689 4.10157C56.4917 4.10329 56.2693 4.10674 56.2727 4.66332C56.2834 5.93691 56.5477 7.20882 56.5583 8.51321C56.5824 11.3315 55.5642 13.3774 52.3332 13.3869C49.5611 13.4104 48.2136 12.0506 48.1915 9.2805C48.1798 7.80137 49.1887 6.64707 50.702 6.65099C51.7681 6.64147 52.5194 7.16122 52.5287 8.25894C52.5321 8.65659 52.3296 9.20097 52.0288 9.4586C51.9344 9.53813 51.5858 9.58742 51.6012 9.69943C51.6023 9.89042 51.8263 9.95202 51.9694 9.93578C52.718 9.92964 53.0904 8.81229 53.0862 8.22422C53.0839 7.90498 53.0325 7.58742 53.0476 7.26819C53.0596 6.95007 53.1209 6.63196 53.119 6.32784C53.1155 6.04221 53.0739 4.72045 53.0089 4.51546C52.9602 4.42081 52.4186 4.39224 52.2909 4.39337C51.7975 4.39853 50.0812 4.71429 50.0753 3.95036L50.0543 1.46646C50.0482 0.606764 50.1912 0.606763 51.0512 0.583799C51.9269 0.575942 52.8023 0.66445 53.6779 0.657728L55.5407 0.643166C55.8745 0.639725 56.2072 0.559155 56.5583 0.569238C57.1934 0.564076 57.3727 0.835828 57.3777 1.43902C57.3812 1.77338 57.3032 2.09262 57.3055 2.42754Z\" fill=\"white\"/>\\n<path d=\"M66.2289 10.2358C66.1992 10.7297 66.1051 11.217 66.0743 11.7099C66.0519 12.0907 66.0922 12.4783 66.0698 12.8423C66.0165 13.7328 65.7841 13.8616 64.9115 13.809C64.5452 13.7866 64.1857 13.6846 63.8205 13.6622C63.3904 13.6359 62.9558 13.6902 62.5268 13.6622C61.2241 13.5827 59.9258 13.4399 58.622 13.3452C58.3991 13.3329 58.1739 13.3833 57.9505 13.3687C57.7287 13.3548 57.4683 13.1963 57.4985 12.9431C57.5562 12.0055 57.6128 11.0512 57.718 10.117C57.7561 9.75185 58.1415 9.72832 58.4282 9.744C58.9373 9.77761 58.8606 8.40096 58.8796 8.08173C58.9558 7.09769 59.0471 6.1159 59.1081 5.13018L59.1093 4.84175C59.1328 4.44578 58.6573 4.67149 58.3789 4.51075C57.9141 4.26096 57.9813 3.72217 58.0093 3.245C58.0216 3.02209 58.1 2.8199 58.1437 2.61548C58.2025 2.17303 58.1661 1.72274 58.1785 1.26124C58.2121 0.70454 58.8685 0.681013 59.2952 0.72246C59.7567 0.751594 60.2126 0.874799 60.6876 0.903921C62.1975 0.995774 63.713 1.00921 65.2207 1.1005C66.1751 1.15819 66.4338 1.09534 66.3678 2.17527C66.3145 3.06354 66.2916 3.97253 66.2524 4.86303C66.2103 5.54519 65.9903 5.51662 65.3865 5.47966C65.0046 5.45838 64.6002 5.56031 64.2171 5.53791C63.2661 5.47854 63.4084 5.23323 63.4431 4.37297C63.2213 4.34384 62.9861 4.29792 62.7475 4.26656C62.4921 4.2509 62.449 4.45586 62.4378 4.66196L62.3381 6.0134C62.3252 6.25087 62.5487 6.23239 62.7553 6.24471C62.9782 6.25928 63.1888 6.2083 63.4117 6.22121C63.8547 6.24862 63.9124 6.3489 63.8878 6.76055C63.8587 7.25172 63.7808 7.74122 63.7495 8.25144C63.7097 8.91848 63.4134 8.78855 62.8897 8.75774C62.7772 8.75161 62.44 8.80758 62.4327 8.9364L62.328 10.3987C62.3185 10.5416 62.5705 10.62 62.6629 10.6267C63.4588 10.6732 63.307 10.5516 63.3636 9.88684C63.3792 9.61632 63.4935 9.33685 63.7943 9.35365C64.3974 9.39007 65.0169 9.44494 65.6206 9.48079C66.2894 9.52225 66.2675 9.60064 66.2277 10.252L66.2289 10.2358Z\" fill=\"white\"/>\\n<path d=\"M75.9952 15.1668L73.7381 14.8705C73.5802 14.8526 73.4256 14.8145 73.2716 14.7624C72.5765 14.5423 72.3995 10.8604 71.9168 10.1402C71.849 10.0506 71.7084 10.0142 71.5964 10.0002C71.2184 9.95032 71.1971 10.1077 71.1534 10.4398C71.1058 10.819 70.9848 11.2519 71.4743 11.3174C72.0736 11.3947 71.6356 12.6532 71.583 13.0648C71.5415 13.3807 71.5628 13.7033 71.518 14.0354C71.4637 14.4622 71.2861 14.5837 70.8448 14.5249C70.4662 14.4773 70.101 14.3328 69.7224 14.2824C68.8683 14.1715 68.0103 14.1066 67.1579 13.9951C66.4791 13.9072 66.8011 13.1612 66.8616 12.7042C66.9254 12.2147 66.8946 11.7117 66.9602 11.2082C67.0386 10.6084 67.0386 10.3687 67.7325 10.4572C67.9061 10.4813 68.0321 9.38856 68.0534 9.24687C68.2035 8.07969 68.2774 6.91643 68.4443 5.7515C68.5194 5.18303 68.3239 5.31688 67.8809 5.27544C67.4721 5.2217 67.2761 4.98869 67.3309 4.5776C67.4093 3.97833 67.5841 3.37402 67.6636 2.77643C67.7129 2.38102 67.6866 1.97329 67.7538 1.58237L67.7745 1.42555C67.8282 1.14159 69.8557 1.47372 70.2175 1.51964C72.0657 1.76159 75.1763 2.26452 76.0814 4.07018C76.516 4.92876 76.8044 5.65629 76.6751 6.65152C76.5014 7.97608 76.0853 8.58095 74.9926 9.33648C74.9747 9.35162 74.9713 9.36504 74.9702 9.38184C74.9501 9.52355 75.3958 10.3037 75.4804 10.5076C75.574 10.7786 75.7509 11.5073 75.901 11.7028C75.985 11.8092 76.3547 11.7957 76.4964 11.8282C77.3331 11.9391 76.8778 13.0828 76.8061 13.6204C76.7624 13.9665 76.7826 14.3071 76.7389 14.6375C76.67 15.1595 76.4981 15.2323 75.9952 15.1668ZM72.3065 5.4373C72.2119 5.4244 72.0534 5.40427 71.994 5.49276C71.9346 5.58237 71.775 6.68347 71.7498 6.87277C71.7145 7.14104 71.7123 7.26985 72.0299 7.31242C72.6286 7.39026 73.4311 7.26986 73.5269 6.52888C73.6115 5.89713 72.8279 5.50563 72.3065 5.4373Z\" fill=\"white\"/>\\n<path d=\"M86.3594 17.3851L84.1371 16.8933C83.9803 16.8609 83.8302 16.8093 83.6812 16.7455C83.0091 16.4677 83.1514 12.7819 82.7324 12.0219C82.6719 11.9267 82.5342 11.8807 82.4255 11.8561C82.0531 11.7754 82.0189 11.9295 81.9478 12.2571C81.8654 12.6312 81.7075 13.0513 82.188 13.1577C82.78 13.2865 82.2351 14.5046 82.1455 14.9084C82.0772 15.2176 82.0716 15.5436 81.9982 15.8701C81.9069 16.2896 81.721 16.396 81.2858 16.2997C80.9117 16.2179 80.5594 16.0415 80.1864 15.9603C79.3474 15.7743 78.4972 15.6371 77.6594 15.4528C76.9895 15.305 77.3737 14.5909 77.4745 14.14C77.5798 13.6567 77.5927 13.1566 77.7019 12.6575C77.8319 12.0667 77.852 11.8264 78.5376 11.9771C78.7078 12.0168 78.929 10.9387 78.9587 10.7987C79.2136 9.64943 79.3855 8.49681 79.6532 7.35204C79.7764 6.78973 79.572 6.9079 79.1323 6.82781C78.7291 6.73988 78.5555 6.48842 78.6451 6.08405C78.7739 5.49486 79.0024 4.90735 79.1312 4.3176C79.2175 3.92948 79.2253 3.52287 79.3261 3.1381L79.3586 2.9824C79.4381 2.70685 81.4303 3.20979 81.787 3.2882C83.6061 3.68809 86.663 4.45929 87.4078 6.33552C87.7652 7.22938 87.9926 7.97931 87.7764 8.95831C87.4874 10.2655 87.0197 10.83 85.8643 11.4887C85.8469 11.501 85.843 11.5167 85.8386 11.5324C85.8072 11.6735 86.1824 12.4879 86.2508 12.699C86.3191 12.9757 86.4345 13.7172 86.5678 13.9261C86.6406 14.0398 87.0113 14.056 87.1469 14.1036C87.9713 14.2834 87.4202 15.3845 87.3037 15.9138C87.2275 16.2549 87.2186 16.5954 87.1457 16.9213C87.0337 17.4355 86.8568 17.4948 86.3594 17.3851ZM83.5277 7.37334C83.4359 7.35206 83.2791 7.3173 83.2141 7.40074C83.1446 7.48251 82.8904 8.56904 82.8484 8.75442C82.7896 9.01878 82.7784 9.14647 83.0897 9.21592C83.6812 9.34585 84.4899 9.29489 84.6523 8.564C84.7879 7.94345 84.0407 7.48479 83.5277 7.37334Z\" fill=\"white\"/>\\n<path d=\"M98.222 8.44386C98.0338 9.08401 97.6311 10.725 97.3057 11.2106C97.0599 11.536 96.5922 11.1002 96.2198 11.2369C95.835 11.3562 93.4026 13.41 93.1624 13.7706C92.8991 14.1571 92.7602 14.632 92.6241 15.0902C92.3268 16.0972 93.6463 15.2246 93.238 16.5491C93.1041 17.0067 92.6404 18.9115 92.1543 18.9837C91.8092 19.0308 89.0089 18.17 88.4741 18.0115C87.4363 17.7046 87.5897 17.3539 87.8585 16.3873C88.0142 15.8675 88.2047 15.3287 88.4085 14.8062C88.5217 14.5402 88.9776 14.6264 89.1904 14.6892C89.2346 14.7021 89.3013 14.7049 89.3433 14.6834C89.4822 14.4907 89.4827 14.2611 89.5421 14.0612C89.6855 13.5728 89.8905 13.1035 90.0294 12.6291C90.175 12.1407 89.5516 9.53306 89.2867 9.0234C89.2122 8.88562 89.0369 8.91585 88.8986 8.87665C88.3335 8.70863 88.7535 7.57113 88.8526 7.23566C88.9742 6.82289 89.0156 6.4034 89.136 5.99231C89.3125 5.3964 89.4883 5.08276 90.175 5.28663C90.9086 5.50169 91.6378 5.7851 92.3704 6.00129C92.7053 6.10154 93.0548 6.10265 93.3853 6.21746C93.9655 6.38996 93.5746 7.31967 93.4519 7.73075C93.3192 8.18945 93.1108 8.61006 92.9613 9.06371C92.7395 9.81196 92.2595 9.23845 92.1475 9.6193C92.0943 9.80356 92.4466 11.2508 92.5832 11.2922C92.7356 11.337 93.2234 10.7013 93.3393 10.5871C93.5219 10.423 93.8249 10.297 93.896 10.055C93.9778 9.77949 93.294 9.95871 93.4497 9.42441C93.5818 8.98084 93.8344 8.57311 93.9756 8.15194C94.0999 7.79014 94.1615 7.4104 94.2562 7.04019C94.4774 6.29026 95.341 6.8453 95.8462 6.99427C96.5642 7.20597 97.3192 7.34655 98.0349 7.55713C98.4639 7.68371 98.3178 8.12224 98.2181 8.45884L98.222 8.44386Z\" fill=\"white\"/>\\n<path d=\"M99.3554 10.7162C99.1336 10.6406 98.8816 10.4815 98.9689 10.2194C99.0664 9.94495 99.7004 10.2653 100.005 9.3776C100.055 9.23255 100.038 9.19782 99.893 9.14742C99.1224 8.88418 98.825 8.09561 99.0798 7.35185C99.3677 6.51399 100.31 6.15218 101.115 6.44174C102.12 6.78842 102.37 7.76405 102.053 8.69152C101.756 9.55402 100.374 11.0662 99.3554 10.7162Z\" fill=\"white\"/>\\n<path d=\"M105.938 20.2212C105.232 22.0482 103.407 23.287 101.431 22.5242C100.452 22.1451 99.6807 20.9594 99.4898 20.8866C99.4741 20.8787 99.3895 20.8799 99.3733 20.8754C99.1918 20.9415 99.1868 21.179 99.0227 21.2512C98.7824 21.3459 98.4211 21.086 98.1904 20.9807C97.8936 20.8665 97.5727 20.8104 97.2865 20.7175C96.4251 20.3826 96.8216 19.7519 97.0736 19.0989C97.2349 18.6833 97.4634 18.3114 97.6191 17.911C97.8196 17.3907 97.9613 16.848 98.1618 16.3299C98.5108 15.4232 98.6765 15.6573 99.4483 15.9552C99.8504 16.1115 100.213 16.3187 100.629 16.4811C101.563 16.8429 100.3 18.2991 101.503 18.7634C101.919 18.9241 102.493 18.806 102.661 18.3764C103.262 16.8161 99.4976 15.1218 100.735 11.8808C101.411 10.1277 103.25 9.30221 105.001 9.97877C105.638 10.2269 106.26 10.9611 106.572 11.0815C106.691 11.1269 106.757 10.8654 106.916 10.857C107.055 10.8424 107.234 10.9113 107.353 10.9566C107.62 11.0603 108.867 11.5436 108.888 11.7564C108.898 11.9468 108.836 12.1457 108.776 12.3086C108.615 12.7242 108.366 13.1051 108.206 13.5217C108.027 13.9821 107.923 14.4694 107.726 14.9387C107.449 15.6528 106.925 15.1594 106.389 14.9539C106.12 14.8491 105.825 14.82 105.558 14.7164C105.485 14.6889 105.42 14.6307 105.389 14.5836C105.204 13.9138 105.447 13.2406 104.617 12.9191C104.334 12.8105 103.943 12.9852 103.82 13.2597C103.299 14.5949 107.389 16.4296 105.924 20.2168L105.938 20.2212Z\" fill=\"white\"/>\\n<path d=\"M46.7626 7.19727C47.3137 6.60248 47.5912 5.64813 47.5159 4.83939L47.5 4.84054C47.3863 3.63753 46.5969 2.73525 45.3123 2.85679C44.4585 2.93744 43.7783 3.68792 43.8581 4.54537C43.8982 4.79796 43.983 5.02873 44.13 5.22251C44.3448 5.47342 44.6372 5.52662 44.9382 5.65936C44.9715 5.67054 44.9878 5.66945 44.99 5.70082C45.0272 6.09735 43.587 6.42443 43.3174 6.45019C42.2569 6.56613 41.0768 6.59693 40.3101 7.45383C39.8878 7.89292 39.6498 8.25193 39.71 8.90104C39.7727 9.55071 40.1998 10.1825 40.9446 10.1119C40.9446 10.1119 41.0553 10.1024 41.0513 10.0548C41.0384 9.91196 40.9458 9.79267 40.9306 9.63417C40.885 9.14243 41.4588 8.78399 41.8867 8.7431C42.2986 8.70502 42.6898 8.94025 42.7301 9.36813C42.8105 10.2385 41.831 10.8602 41.0698 10.9324C39.8954 11.0259 38.8293 10.2312 38.7181 9.04218C38.6582 8.24857 39.0592 7.25052 39.9477 7.1682C40.0894 7.15363 40.2535 7.18781 40.3546 7.06738C40.4551 6.96097 40.8044 5.56921 40.7895 5.41071C40.7279 4.76047 39.4801 5.43761 39.3762 4.32866C39.3389 3.93326 39.5414 3.52777 39.9685 3.48744C40.9522 3.39503 40.7912 4.57845 41.5674 4.50396C42.0595 4.45917 42.5372 4.44515 43.0113 4.40147C43.2362 4.39533 43.3731 4.31858 43.3504 4.08055C43.2698 3.22813 43.279 2.36619 43.2034 1.51265C43.2011 1.49361 43.2011 1.47457 43.1988 1.45776C43.1602 1.03771 43.0115 0.923455 42.8012 0.91674C42.5973 0.912152 42.3366 1.01083 42.0563 1.03715C41.8356 1.05843 41.6074 1.03102 41.3859 1.05229C41.2741 1.06239 41.1322 1.07747 41.0784 1.17775C41.0498 1.22759 41.0395 1.27746 41.0426 1.30882C41.0454 1.3469 41.0563 1.39898 41.0619 1.4533C41.07 1.53283 41.0622 1.61182 40.9759 1.61798C40.9707 1.61798 40.8981 1.57427 40.7855 1.51156C40.4959 1.35418 39.9244 1.07863 39.4105 1.12624C39.1324 1.15314 38.8603 1.20129 38.5987 1.26682C38.0269 1.41299 37.5136 1.6583 37.1288 2.02122C36.6376 2.48496 36.354 3.1408 36.4377 4.02962C36.4634 4.29845 36.5374 4.57959 36.6259 4.84226C36.7116 5.05957 36.7967 5.29031 36.9574 5.46785C37.0109 5.52554 37.112 5.581 37.119 5.65941C37.1083 5.70982 36.0171 6.69218 35.8911 6.87924C35.2321 7.86775 34.9961 8.75433 35.1092 9.9428C35.2397 11.4964 35.8499 12.5437 37.1325 13.4286C38.4307 14.3141 39.8365 14.3113 41.3428 14.1674C43.5147 13.9629 45.6592 12.4659 46.0565 10.2217C46.1039 9.88231 46.1837 9.53843 46.1518 9.20631C46.105 8.71513 45.7026 8.16067 45.7012 8.14555C45.6718 8.00272 46.5876 7.38993 46.7626 7.19727Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nu5d0n\",\"data-framer-name\":\"Church and Dwight\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:47,intrinsicWidth:47,svg:'<svg width=\"47\" height=\"47\" viewBox=\"0 0 47 47\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.578125 22.342V24.9799C0.637837 25.1247 0.800613 26.9443 0.867687 27.3471C1.67993 32.2259 3.8999 36.416 7.23763 39.7517C8.87235 41.3856 10.8637 42.9258 13.4886 44.1904C18.0283 46.3772 21.564 46.2279 22.011 46.4112H24.6486C24.7766 46.3572 26.6374 46.1838 27.0121 46.1228C29.2202 45.7629 31.1387 45.1458 33.1354 44.2071C38.9491 41.4739 43.6799 35.9231 45.3056 29.6043C45.4949 28.8686 45.6573 28.1541 45.7837 27.3888C45.8454 27.0142 46.0221 25.1186 46.079 24.9803V22.3436C46.0185 22.1964 45.852 20.3445 45.7825 19.931C45.652 19.158 45.4941 18.4537 45.3056 17.7184C44.9604 16.3696 44.4259 14.99 43.8586 13.8212C40.5785 7.0635 34.4033 2.43092 27.0154 1.20069C26.606 1.13239 24.7995 0.973299 24.6477 0.911133H22.011C21.8642 0.971663 20.0021 1.13894 19.6033 1.2056C12.2563 2.42806 5.89412 7.22382 2.78297 13.8555C1.86602 15.8105 1.21123 17.799 0.864824 19.9809C0.804703 20.3584 0.635792 22.2025 0.578534 22.3436L0.578125 22.342Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.1029 2.31145C17.5509 2.58792 13.7792 4.09585 10.3781 6.63729C9.09677 7.59513 7.99415 8.6679 6.96392 9.89199C6.74511 10.1521 6.57252 10.346 6.37048 10.6216C5.13125 12.314 4.28506 13.6379 3.45073 15.7433C2.35997 18.4958 1.78984 21.6331 1.97634 24.9279C2.62131 36.3002 12.3846 45.7171 24.5953 45.0128C35.9835 44.356 45.3885 34.5951 44.6801 22.393C44.4147 17.8234 42.8548 14.1217 40.3519 10.7087L38.5004 8.58978C37.3761 7.45976 36.1483 6.42911 34.7847 5.58824C31.0127 3.26152 26.7989 2.02638 22.1021 2.31145H22.1029Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.1216 2.72678C17.377 3.04579 13.3755 4.68173 9.91548 7.5479C8.26359 8.91636 6.75034 10.6247 5.60232 12.4471C3.33286 16.0499 2.10631 20.4154 2.3926 24.8946C2.69116 29.5697 4.3905 33.6645 7.21699 37.0742C11.4124 42.135 17.8322 44.9991 24.5498 44.5979C29.1591 44.3222 33.3851 42.5787 36.7449 39.7735L38.1351 38.5167C38.3653 38.2836 38.549 38.0529 38.7743 37.832C40.3599 36.2775 42.002 33.469 42.8265 31.4003C45.6878 24.2206 44.3156 16.0736 39.4422 10.2452L38.1862 8.8542C34.0137 4.69891 28.1795 2.31902 22.1216 2.72678Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.3476 10.2972C15.3384 10.8563 9.64532 16.8876 10.1815 24.5266C10.6694 31.4757 16.8357 37.3598 24.4944 36.7209C31.4217 36.143 37.2007 30.1207 36.6175 22.4895C36.0846 15.5187 30.0071 9.68619 22.3476 10.2972Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.6995 17.8855L17.5821 17.953C17.0472 17.9457 17.4071 17.7538 17.0365 17.6377C16.7098 17.5354 16.5106 17.6745 16.3625 17.814C16.1441 18.0205 16.0472 17.9943 15.7507 18.1166C15.3855 18.2675 15.5241 18.3681 15.1752 18.4565C14.819 18.5469 14.8501 18.5493 14.6706 18.8197C14.5192 19.0475 14.435 19.1243 14.2722 19.3358C13.9753 19.7215 13.7912 20.0012 13.7512 20.6572C13.3704 21.031 12.5671 21.0961 12.9692 22.058C13.4105 23.1144 13.8559 22.6408 14.3716 22.4564C14.6419 22.6093 15.5282 23.5455 15.6685 24.1962C15.9683 25.5867 16.3752 26.9818 16.7318 28.3245C17.0488 29.5175 17.3478 30.2892 17.8929 31.2843C18.2434 31.9244 20.1043 34.4879 20.7023 34.6842C21.9411 35.0911 22.8723 34.0032 23.6048 33.5554C24.6752 32.901 25.6215 32.1751 26.5369 31.3456C27.0833 30.8508 27.5916 30.2847 28.0403 29.6938C28.2067 29.4745 28.774 28.576 28.9274 28.4828C29.1981 28.5752 29.2979 28.7613 29.7233 28.5797C29.9899 28.466 30.192 28.2586 30.2823 28.0562C31.2157 28.0999 31.0443 27.664 31.6749 27.5331C31.9162 27.4828 31.9809 27.4623 32.1829 27.3666C32.1363 27.2423 32.1007 27.2333 32.095 27.0771L32.4344 26.7826C32.4205 26.5875 32.4197 26.7253 32.3923 26.6521C32.2516 26.2771 32.5314 26.181 32.4209 25.7655L32.2328 26.3597L32.1539 26.1691C32.0385 26.244 32.0614 26.3249 31.9457 26.3454L31.9964 25.9945C31.8958 26.0746 31.8177 26.1744 31.8124 26.2742C31.8009 25.8562 31.895 25.4203 31.8676 24.9299C31.8471 24.5614 31.7743 23.9725 31.6373 23.7009C31.6561 23.9487 31.7653 24.2313 31.7281 24.523C31.6974 24.7626 31.6279 24.7017 31.5682 24.853C31.5653 24.8604 31.5612 24.8747 31.5592 24.8825L31.3825 25.5201C31.3375 25.6608 31.3985 25.4554 31.3715 25.689C31.351 25.8652 31.2075 25.9519 31.1187 26.1004C31.0271 26.2538 31.1821 26.1192 31.0144 26.2693L30.9564 26.1667C30.9519 26.1573 30.9449 26.1417 30.94 26.1311C30.8831 26.0121 30.9429 26.0722 30.8619 25.9659C30.8422 26.0027 30.85 26.0055 30.8267 26.0652C30.8226 26.0755 30.8169 26.0918 30.8124 26.1025C30.8079 26.1143 30.8009 26.1303 30.796 26.1417L30.6762 25.8325C30.6079 25.8538 30.6995 25.8383 30.621 25.8771C30.459 25.9573 30.6885 25.963 30.5298 25.8984C30.4725 25.5875 30.5224 25.4485 30.6529 25.2452C30.794 25.361 30.8909 25.5765 31.1424 25.2878C31.0279 24.9606 30.8083 25.0812 30.5286 24.9585C30.4545 24.9262 30.486 24.9254 30.4144 25.0178C30.4091 25.0244 30.4005 25.0432 30.3911 25.0542C30.329 24.889 30.3506 24.9013 30.2079 24.8207L30.4226 25.3994C30.2108 25.1786 29.9478 24.7786 29.8881 24.4093C30.0349 24.5426 30.2059 24.5409 30.394 24.426C30.4067 24.0837 30.311 24.2203 30.057 24.0555C29.877 23.9385 29.8153 23.8146 29.6668 23.6833C29.493 23.5291 29.4165 23.5001 29.3818 23.1962C29.3494 22.9128 29.3625 22.8821 29.5789 22.8024C29.5871 22.7995 29.6059 22.7917 29.6124 22.7893C29.6194 22.7868 29.637 22.7831 29.6464 22.775C29.093 22.2445 29.3548 23.3074 27.9266 22.2682C27.0088 21.6008 26.6395 22.0703 25.7058 21.7917C25.6616 21.6269 25.6649 21.4269 25.7377 21.2834C25.797 21.1656 25.9725 21.0331 26.0727 20.9173C25.8878 20.9501 25.678 21.0523 25.6125 21.1599C25.3095 21.6601 25.5794 21.6245 24.6154 22.3488C23.2138 23.4023 24.1762 23.8547 24.1439 24.3172C24.1124 24.7643 23.4028 24.9737 23.0184 26.0963C22.8249 26.6615 22.7243 28.0394 22.3628 28.3801C22.0466 28.1053 21.9664 27.6799 21.6896 27.4357C21.3497 27.1356 21.1951 26.9274 20.8884 26.61C20.3698 26.073 19.9125 25.3229 19.5518 24.6358C19.3567 24.2641 18.5089 22.6347 18.7027 22.2932L19.0193 21.7905C20.1616 19.3636 18.3081 20.31 20.4368 19.1366C20.807 18.9325 21.1534 18.7342 21.5129 18.5346L23.1218 17.6491C23.3913 17.5068 23.4196 17.4091 23.7872 17.4434C24.0993 17.8262 24.348 18.2651 24.7021 18.6205C24.9042 18.8233 24.9758 18.9313 25.2694 19.074C25.678 19.2724 25.6489 19.2331 25.9786 19.0295C26.3823 18.7804 26.8665 18.5227 27.3246 18.2912C27.8207 18.0405 28.2202 17.7874 28.6174 17.5093C28.5266 16.5375 28.093 15.63 28.0231 15.0059C28.1544 14.8717 28.1867 14.895 28.3323 14.7515C28.3352 14.1674 27.7102 12.8685 27.0125 13.356C26.5185 12.8632 26.2477 12.1978 25.5606 11.9017C25.3156 11.7961 25.1169 11.9745 24.9038 12.1012C24.4997 12.3417 24.0989 12.5716 23.6719 12.8039C23.2916 13.0108 22.7664 13.3711 22.4114 13.5053C22.4131 14.3118 22.6552 14.9846 22.8993 15.6443C22.1182 16.1931 20.3771 17.0688 19.4684 17.5592C19.104 17.7559 18.6479 18.016 18.2884 18.1514C18.0983 17.8238 18.131 17.9137 17.6991 17.8831L17.6995 17.8855Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.6557 37.1751C15.4443 37.3853 14.74 38.9145 14.6509 39.9018C14.5732 40.7639 14.875 41.2322 15.3138 41.6003C15.7052 41.9287 16.4852 42.2494 17.1674 42.1308C18.7362 41.8576 19.9693 38.7566 18.4581 37.6925C18.016 37.3812 17.3526 37.0544 16.6561 37.1751H16.6557ZM16.8749 38.1526C15.9805 38.4061 15.3003 40.0429 15.8856 40.8236C16.0611 41.0576 16.4929 41.294 16.9498 41.1545C17.5076 40.9844 17.9645 40.256 18.0925 39.5501C18.2495 38.6863 17.7105 37.9158 16.8749 38.153V38.1526Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.8017 37.7827L29.6904 40.9029C29.3383 40.6158 27.3519 38.5226 27.0435 38.3034L26.0488 38.595L27.3559 43.1196L28.2173 42.8873L27.3314 39.7892C27.5494 39.9013 29.5968 41.9842 29.9955 42.3425L30.9718 42.0836L29.6594 37.5549L28.8013 37.7827H28.8017Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.1806 38.9622C13.9278 38.8314 13.6816 38.5856 13.4039 38.3966C13.1336 38.5537 12.4281 39.2117 11.8003 38.3933C11.269 37.7005 12.1692 36.5096 12.7095 36.1472C13.4072 35.6793 14.0542 35.957 14.2468 36.5104C14.3977 36.9443 14.1957 37.1721 14.1045 37.5034C14.2542 37.6486 14.7176 38.0371 14.891 38.1083C15.1225 37.6089 15.4869 37.139 15.2456 36.3717C15.0763 35.8327 14.6513 35.4401 14.2399 35.1918C12.4129 34.0888 10.8003 36.494 10.6314 37.5672C10.4326 38.8293 11.752 39.8215 12.7389 39.7753C13.3471 39.7471 13.9565 39.3381 14.1806 38.9618V38.9622Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.7342 37.9067L33.8627 38.4093C33.9232 38.759 34.0852 38.9643 33.9404 39.3594C33.852 39.6007 33.5968 39.844 33.3285 39.9221C32.2623 40.2326 31.035 38.1799 31.6501 37.3263C31.7809 37.1447 32.1188 36.9369 32.4897 36.9778C32.8693 37.0196 33.03 37.2433 33.2529 37.4465C33.4116 37.411 33.9756 37.0707 34.0983 36.9443C33.9563 36.6237 33.3838 36.1378 32.8979 36.0282C31.776 35.775 29.4268 36.9803 30.9667 39.4857C31.4546 40.28 32.2865 41.3744 33.7191 40.7687C34.1976 40.5663 34.6496 40.1626 34.8569 39.7193C35.1894 39.0089 34.9277 38.5164 34.7338 37.9071L34.7342 37.9067Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.1563 22.0289L26.4962 22.1655C26.2345 22.3564 26.1069 22.1 25.7167 22.1724C25.0357 22.2988 24.8783 22.134 24.2975 22.7977C24.167 22.9466 24.0378 23.329 24.0312 23.5703C24.3462 23.7184 24.246 23.7302 24.7032 23.7036C25.0566 23.6828 25.2005 23.7421 25.338 23.9392C25.3371 23.7208 25.3326 23.8431 25.3858 23.7642C25.648 23.7225 25.5756 23.6746 25.7923 23.7924C25.8897 23.8456 25.8463 23.8345 25.9743 23.8677C26.3195 23.9564 26.3036 24.0153 26.587 24.0239C26.9915 24.0366 26.78 23.9593 26.9653 23.8914C27.1522 24.0541 27.122 24.2157 27.2798 24.3662L27.4602 24.2227C27.4684 24.2153 27.4835 24.2022 27.4904 24.1961C27.497 24.1903 27.5097 24.1768 27.5207 24.1695C27.5972 24.2406 27.6348 24.2852 27.7121 24.3642C27.76 24.4124 27.7743 24.4165 27.816 24.466C28.007 24.6942 27.9915 25.0967 28.3788 24.85C28.4184 25.0304 28.6794 25.3907 28.7567 25.7649C28.7174 25.5739 28.7828 25.5715 28.8237 25.52C28.9636 26.178 29.0008 25.9931 29.0994 26.2365C29.2106 26.5126 29.0965 26.8287 29.1816 27.1052C29.2851 26.9432 29.2695 26.5142 29.2843 26.2549C29.292 26.1191 29.2953 25.9801 29.3362 25.8435C29.3804 25.6958 29.3517 25.7445 29.4078 25.7465C29.7174 25.7563 29.2597 25.958 29.4838 25.7981C29.4847 25.5748 29.4667 25.2725 29.5436 25.0926L29.663 24.9028C29.701 24.8586 29.7063 24.868 29.7587 24.8157C29.9673 25.0054 29.9223 25.4819 29.9374 25.7486C29.9386 25.7723 29.946 25.8819 29.9493 25.9007L30.0073 26.0799C30.063 24.6394 29.8474 24.8075 29.5374 24.6427L29.5301 23.8374C29.353 23.7016 29.5018 23.8341 29.3145 23.7662C28.9055 23.6186 28.8933 23.4611 28.8712 23.2534C28.6871 23.3695 28.762 23.3568 28.6062 23.1728L28.4094 23.0272C28.1726 22.9282 28.1088 22.7863 28.0213 22.7356L27.6365 22.5548C27.4839 22.4677 27.299 22.5847 26.9579 22.2211C26.5719 21.8105 26.778 22.0546 26.4426 22.0661C26.3952 22.0677 26.2627 22.035 26.1559 22.0301L26.1563 22.0289Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M36.6597 29.3576C36.8131 29.486 40.251 30.8393 40.6334 30.9383L40.1398 32.254L41.0976 32.6495L42.5045 29.0095L41.5557 28.6639L41.0289 29.9612C40.3341 29.758 37.4061 28.4488 37.0201 28.4496L36.6597 29.358V29.3576ZM37.8728 23.9295L40.1472 24.1475L39.9635 26.2632C39.377 26.2763 38.112 26.0064 37.6654 26.0882L37.5701 27.1049L42.8207 27.6084C42.945 27.3519 42.9205 26.8808 42.9589 26.5761L41.0068 26.3806C40.9753 26.1978 41.1344 24.4776 41.1929 24.2759L43.1659 24.4363L43.2579 23.4077L37.9885 22.8858L37.8724 23.9291L37.8728 23.9295ZM38.355 21.8282L37.8814 22.076L37.9693 22.5876C38.328 22.5709 40.6285 22.0625 40.8518 21.9296L40.4416 20.0552L39.5402 20.2474L39.7255 21.1533C38.8981 21.1893 38.2916 20.8572 38.3255 19.9943C38.3529 19.2953 39.0122 18.9252 39.6294 18.7362C40.3426 18.5178 41.2645 18.6058 41.613 19.0679C41.7896 19.3023 41.9332 19.6871 41.8121 20.0536C41.7647 20.1971 41.653 20.3415 41.5667 20.4208L41.2248 20.6822C41.2199 20.6871 41.2085 20.6985 41.2011 20.708L41.4424 21.7946C43.716 21.218 43.3585 17.2483 40.2236 17.5003C39.0617 17.5939 37.8487 18.1039 37.4601 18.9088C37.198 19.4524 37.2098 20.0875 37.4012 20.6826C37.6564 21.4764 38.0895 21.5926 38.3546 21.8273L38.355 21.8282ZM36.2642 16.9997C36.3248 17.2058 36.5808 17.7943 36.7141 17.9383L41.4956 15.7085L41.0621 14.7601L36.2638 16.9997H36.2642ZM33.3739 12.9802C33.4619 13.1552 33.9052 13.6787 34.068 13.8125L37.4098 12.0959C37.2634 12.4211 35.3285 14.6529 35.0855 15.059C35.1964 15.3024 35.5551 15.675 35.7477 15.8852C36.0099 15.8267 36.6851 15.4459 36.9644 15.3077L40.6187 13.4726L39.9852 12.6751C39.7729 12.7372 39.3615 12.9855 39.1423 13.109L36.573 14.4844L38.993 11.5066C38.9145 11.3536 38.8118 11.244 38.6903 11.0984C38.5607 10.943 38.4642 10.8121 38.3595 10.6886L34.9383 12.4747C34.9702 12.381 37.0716 9.80072 37.3648 9.52138C37.3096 9.40482 36.8299 8.80525 36.7145 8.71813L33.3739 12.9798V12.9802ZM29.0117 10.1222C29.2751 10.3365 31.192 11.4878 31.5401 11.5794C32.7408 11.8951 33.6022 10.7091 34.0005 10.0551C34.5105 9.21791 34.9845 7.96887 34.1993 7.14068C33.8721 6.79549 32.9007 6.26381 32.3785 5.95871C32.1789 5.84215 31.9241 5.66547 31.7266 5.58121C31.6026 5.68673 31.4742 5.94071 31.3748 6.10513L29.0113 10.1218L29.0117 10.1222ZM30.4297 9.76309C30.4436 9.77577 30.4587 9.77618 30.4632 9.79376C30.4681 9.81135 30.4857 9.81544 30.4922 9.82117L31.0979 10.1913C31.9175 10.6788 32.331 10.6862 33.0733 9.48294C33.6566 8.53777 33.7257 7.95129 32.8104 7.40856C32.6222 7.29691 32.2717 7.05888 32.0824 7.00817L30.4293 9.7635L30.4297 9.76309ZM23.9755 6.04255C23.4667 6.23764 23.1366 6.4544 22.9395 6.93455C22.2745 8.55209 23.6802 9.76963 25.1255 9.22159C25.4126 9.1128 25.5893 8.92181 25.7717 8.85964C26.0752 9.20114 25.7599 9.47598 27.3439 9.47516C27.184 9.04982 26.7255 8.56435 26.5418 8.13778C26.6187 7.98114 26.7652 7.84618 26.8752 7.66459C26.9782 7.49404 27.0964 7.27073 27.1561 7.0691C27.0244 6.89774 26.802 6.76564 26.6367 6.62904C26.5083 6.74723 26.4249 7.06052 26.0768 7.42451L25.9001 7.19466C25.8282 7.0826 25.7852 7.01144 25.7235 6.91205C25.6024 6.71697 25.4638 6.56155 25.3897 6.32066C26.5521 5.9767 26.669 4.28555 25.3627 3.9645C24.247 3.69007 23.2086 4.51008 23.9755 6.04337V6.04255ZM24.9063 5.75708C25.4813 5.58326 25.6233 4.83809 25.1509 4.72194C24.8581 4.64996 24.6576 4.81437 24.636 5.08143C24.6102 5.40208 24.7521 5.58612 24.9063 5.75708ZM25.3247 8.13696L24.481 6.77832C24.4278 6.71779 24.4503 6.7411 24.3975 6.69897C23.9542 6.91655 23.6258 7.45723 23.9333 8.0429C24.1824 8.5165 24.9124 8.54391 25.3247 8.13656V8.13696ZM17.7904 4.61969L18.446 6.4998L16.462 7.20366C16.2456 6.88547 15.9651 5.66383 15.7454 5.35873L14.786 5.68264L16.5524 10.687L17.5356 10.3488L16.7724 8.16355L18.8038 7.46377L19.5511 9.60727C19.8578 9.57414 20.3146 9.41545 20.5351 9.25718C20.3629 8.58399 19.2954 5.75585 18.9012 4.62583L18.7703 4.32849C18.7654 4.3199 18.756 4.30395 18.7482 4.29209L17.7908 4.6201L17.7904 4.61969ZM15.2387 9.10462C14.9156 9.25268 14.6338 9.60522 14.3132 9.75368C14.5193 10.2764 14.8588 11.1774 13.8559 11.541C12.7108 11.9565 11.1178 9.78599 11.7345 8.80852C11.8838 8.57213 12.2188 8.33246 12.5889 8.32755C13.0228 8.32183 13.3181 8.58521 13.5561 8.77048C13.86 8.58521 14.1619 8.26743 14.4347 8.14883C14.3467 7.93983 14.0269 7.68626 13.7975 7.53821C12.8216 6.91042 11.8793 7.25437 11.1362 7.90548C9.97344 8.92426 10.4446 10.3381 11.2462 11.363C11.9063 12.2068 13.0089 13.2714 14.5013 12.3892C14.9299 12.136 15.4387 11.6215 15.6097 11.0559C15.8669 10.204 15.5111 9.70297 15.2379 9.10381L15.2387 9.10462ZM6.21936 13.6337C6.22672 13.644 6.24022 13.6456 6.24431 13.6624L10.5027 16.7302C10.7051 16.5228 10.9378 16.1735 11.1043 15.924C10.9346 15.6844 9.85238 15.0607 9.57263 14.7535C9.72886 14.4983 9.8851 14.2951 10.0548 14.0517C10.2119 13.8268 10.3648 13.5012 10.7031 13.5176C11.2601 13.5442 11.6732 14.2456 12.2973 14.3155C12.4171 14.0325 12.7329 13.72 12.8895 13.4305C12.7177 13.3188 12.4453 13.262 12.2617 13.1474C11.7014 12.7978 11.0712 12.1949 10.4082 12.4595C10.4462 11.2841 8.85977 10.4113 8.02626 11.1573C7.84712 11.3176 7.71707 11.5225 7.55224 11.7524L6.21895 13.6341L6.21936 13.6337ZM7.66799 13.3793C7.81072 13.5343 7.98209 13.6325 8.1739 13.7756L8.72153 14.1356C8.96038 13.8775 9.15915 13.5331 9.36691 13.2616C9.68183 12.8509 9.65525 12.5507 9.26916 12.2718C8.79965 11.9323 8.54771 12.1098 8.28678 12.4878C8.10356 12.7528 7.81604 13.1061 7.66799 13.3797V13.3793ZM3.65298 22.0044L5.60834 22.0588C5.6885 22.3701 5.58584 23.7668 5.58012 24.1954L3.58222 24.1434L3.56055 25.1908L8.87449 25.3409C8.87449 25.0272 8.94279 24.5806 8.86386 24.2939L6.60176 24.2297L6.66025 22.1112L8.96161 22.1509L8.98737 21.1161L3.68365 20.9554L3.65257 22.0044H3.65298ZM6.89828 26.0129L7.20256 27.0934C7.58823 27.0832 7.97064 27.0689 8.25734 27.2799C8.94239 27.7834 8.94811 28.9564 7.28804 29.4561C4.86562 30.185 4.65499 27.8668 5.99769 27.4897C5.95352 27.172 5.81528 26.6157 5.66805 26.3949C5.11592 26.5474 4.54375 27.0264 4.31962 27.4509C4.00593 28.0451 4.09754 28.8484 4.35112 29.4557C4.88934 30.744 6.05209 30.9841 7.6365 30.5146C10.708 29.6038 9.80821 27.0869 8.84914 26.3327C8.41275 25.9896 7.57965 25.8223 6.89869 26.0129H6.89828ZM4.99813 16.2979C5.76171 16.522 6.58295 16.8434 7.34734 17.095C8.10478 17.344 9.23072 17.5972 8.88513 18.6344C8.36981 20.1808 5.79565 18.2904 4.36502 18.1301L4.04233 19.0773C4.3368 19.2794 6.64757 19.9943 7.16862 20.1742C8.59025 20.6662 9.41108 20.2241 9.83275 19.0201C10.6274 16.7502 8.73748 16.4541 6.9265 15.8361C6.47293 15.6811 5.75312 15.3899 5.31673 15.3081L4.99854 16.2983L4.99813 16.2979Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M40.8453 42.2226C38.91 42.7465 39.7304 45.5828 41.6285 45.0638C42.296 44.8814 42.8755 44.1326 42.6301 43.2402C42.4481 42.5784 41.7459 41.9784 40.8453 42.2226Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M40.8664 42.4113C39.264 42.898 39.9163 45.2725 41.5053 44.8922C42.1159 44.7462 42.6435 44.1323 42.4525 43.3196C42.3142 42.7323 41.6394 42.1765 40.8664 42.4113Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.7309 38.6745L25.1983 43.3259L26.1137 43.2457C26.1173 42.7995 25.7059 38.7502 25.6188 38.5571L24.9448 38.6099C24.8213 38.6316 25.0082 38.5886 24.8581 38.6279L24.7305 38.6741L24.7309 38.6745Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.0879 13.2939C23.1259 13.3745 23.1591 13.4395 23.2118 13.4653C23.4036 13.5585 22.9975 13.3532 23.395 13.4542L23.4891 13.7303L23.3566 13.7168C23.4147 13.9548 23.5169 14.1556 23.6118 14.3168L24.0024 14.8738C23.8973 14.5094 23.7247 14.4763 23.6547 14.0882C24.0883 14.3475 23.8376 14.8296 24.4101 14.927C24.33 14.6661 24.2306 14.6272 24.1758 14.3266L24.3459 14.502C24.395 14.572 24.4265 14.6431 24.4707 14.7299C24.5615 14.9069 24.6314 15.0521 24.7537 15.1765L24.6069 14.7712C24.9226 15.0804 25.4171 16.1253 25.6641 16.5936C25.8236 16.8963 25.9851 17.2296 26.1622 17.5183C26.3688 17.8553 26.5213 18.1081 26.7185 18.4062C26.496 16.4177 26.3144 16.7592 25.6477 15.5887C25.3913 15.1384 25.1983 14.9961 25.1954 14.691C25.2056 14.7004 25.2212 14.7012 25.2261 14.72L25.4269 14.9973C25.4985 15.129 25.5594 15.2345 25.6244 15.3581C25.7684 15.6325 25.8915 15.8096 26.0571 16.021C25.8898 15.3294 25.0396 14.064 24.5177 13.563C23.9042 12.9741 23.9962 12.6166 23.0883 13.2943L23.0879 13.2939Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.0628 28.6987C27.012 29.1764 26.9204 28.9211 26.7151 29.2397L26.5131 29.4528C26.5053 29.4598 26.493 29.4688 26.4857 29.4761L26.3564 29.6913C26.2202 29.8749 26.1613 29.7718 26.0521 30.0078C25.9188 30.2966 25.909 30.524 25.6562 30.6622C25.7299 30.7309 25.9008 30.8348 26.0014 30.8082C26.0832 30.7865 26.019 30.7035 26.2947 30.7031L26.1065 30.479C26.3744 30.5023 26.3065 30.4917 26.572 30.418L26.6938 30.3812C26.5642 30.3174 26.4399 30.2319 26.3045 30.1898C26.4157 30.1088 26.2321 30.1076 26.5049 30.1465C26.554 30.1534 26.6071 30.2013 26.7388 30.2229L26.4779 29.9857L26.9384 30.1064C26.8329 29.9551 26.7609 29.9559 26.6889 29.8254C26.8542 29.8504 26.7985 29.8569 26.9417 29.9105C27.0832 29.7428 26.9691 29.7469 27.2243 29.735C27.1478 29.6471 27.1368 29.6442 27.0734 29.5404C27.1928 29.5285 27.383 29.396 27.4038 29.3641C27.5388 29.1584 27.34 29.1477 27.6705 29.0639C27.6762 29.0622 27.6934 29.061 27.7028 29.0549C27.6578 28.8905 27.7085 28.9571 27.6873 28.7363C27.7768 28.7539 27.8746 28.7985 27.9699 28.7334L27.7564 28.6377C27.7625 28.6385 27.7834 28.6173 27.7891 28.6279L28.0648 28.4316C28.1384 28.3768 28.0611 28.4606 28.131 28.387C28.3024 28.2075 28.1584 27.9269 28.1556 27.8803C28.1498 27.7817 28.2374 27.7003 28.2083 27.4832C27.8002 27.9821 28.1318 27.2791 27.5781 28.0611C27.5715 28.07 27.5629 28.0823 27.5564 28.0909L27.3343 28.4291C27.1253 28.7985 27.1495 28.6524 27.0623 28.6982L27.0628 28.6987Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.1223 43.2027L21.5281 43.2788C21.5006 43.6735 21.3685 43.8591 21.0324 43.954L20.9902 44.4256C21.9603 44.3307 22.1861 43.1941 22.1481 42.2019L21.2303 42.1013L21.1223 43.2031V43.2027Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M40.6562 44.4484L40.8665 44.4611L40.8775 43.7138L41.2448 43.7171L41.6996 44.4627L41.9356 44.459L41.5024 43.7621C41.617 43.6635 41.8129 43.6586 41.9086 43.5114C42.0149 43.3474 41.9953 43.0852 41.8534 42.9486C41.6566 42.7589 40.9536 42.7789 40.6612 42.8255L40.6562 44.448V44.4484Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.2013 19.9443C14.0528 19.9701 14.1637 19.7688 14.0671 19.995C14.0675 20.348 14.016 20.2518 13.9551 20.5627C14.7354 20.2187 14.2361 20.2858 14.5407 20.0613C14.616 20.0056 14.5493 20.0559 14.6409 20.0089L14.7784 19.9402C15.0708 20.0797 15.2397 20.2486 15.4884 20.4036C15.764 20.5754 16.2446 20.6841 16.025 20.1226C15.7665 20.0854 15.8401 20.2285 15.5575 20.1835C15.555 19.9831 15.6483 19.8445 15.5951 19.7234C15.452 19.3954 15.4974 19.7819 15.3383 19.4437L15.1293 19.5116L15.1068 19.3296C15.0802 19.3312 14.9718 19.3631 14.9657 19.3635C14.8761 19.3688 14.9497 19.4093 14.7068 19.2588C14.5923 19.1881 14.7195 19.2212 14.5702 19.1873C14.3044 19.4887 14.2483 19.3897 14.2013 19.9443Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.8672 18.8757C15.1322 19.2446 15.8079 18.8949 16.1109 20.1387C16.1665 20.3673 16.1224 20.3064 16.2798 20.3972C16.398 20.4744 16.7113 20.4528 16.8262 20.4029C16.9121 20.1882 16.823 20.0172 16.7105 19.9088C16.5354 19.9616 16.6864 19.9554 16.6111 20.0974L16.2262 20.1571C16.2847 19.8557 16.414 19.7824 16.7105 19.6978C16.6287 19.4773 16.7129 19.7056 16.5706 19.5399L16.4782 19.4225C16.4684 19.4148 16.4332 19.3923 16.4209 19.3845L16.3534 19.3465C16.1158 19.2066 16.0308 19.1776 16.162 19.0279C15.8128 19.0041 15.6439 18.7481 15.3555 18.8021L15.4042 18.6377C14.8676 18.7252 14.9412 18.6299 14.8672 18.8757Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.2049 41.9239L19.3093 41.7468L19.0508 42.8482L19.9542 43.04L20.2049 41.9239Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.7153 37.8525C35.8269 37.9834 35.9492 38.0987 36.0731 38.2443C36.2347 38.4337 36.2539 38.4827 36.4588 38.6529C36.6596 38.5196 36.9622 38.2472 37.1312 38.0631L36.3954 37.2214C36.2236 37.4165 35.9013 37.6051 35.7148 37.8529L35.7153 37.8525Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.6935 23.0484C15.7683 22.9232 16.0473 22.6075 16.1462 22.538C15.99 22.2194 16.0845 22.2431 15.8309 21.9805C15.8784 21.7294 15.898 21.7638 15.9916 21.5842C15.514 21.7805 15.0731 22.0554 14.916 22.5032C15.0575 22.4316 15.1688 22.3245 15.2604 22.2116C15.1994 22.4378 15.0821 22.4038 14.9913 22.6934C14.9974 22.6975 15.0101 22.6914 15.0117 22.6991C15.0506 22.8893 14.9586 22.5282 15.1684 22.8648L15.1982 22.9138C15.2996 23.0553 15.2436 22.9241 15.4166 23.0251C15.5966 23.1302 15.487 23.0095 15.5258 23.1858C15.6399 22.9862 15.5356 23.0946 15.6931 23.0488L15.6935 23.0484Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.6413 30.5414C29.5914 30.3701 29.5852 30.368 29.4903 30.2253C29.4957 30.2151 29.5087 30.1897 29.5116 30.1971C29.5251 30.2302 29.7153 29.9456 29.6204 29.7848C29.4368 29.645 29.2519 29.6707 28.9685 29.6715L28.9558 30.5504C29.2499 30.5251 29.1623 30.5149 29.1607 30.177C29.3096 30.2756 29.3214 30.3729 29.4347 30.5333L29.6404 30.541L29.6413 30.5414ZM29.0331 29.3452C28.0491 29.6237 28.4458 31.22 29.5636 30.8641C30.4654 30.5774 30.1684 29.0233 29.0331 29.3452Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M40.8839 43.5451C41.1951 43.5447 41.7056 43.62 41.7485 43.2977C41.8037 42.8846 41.1976 42.9774 40.877 42.9774L40.8839 43.5451Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.8604 27.6308L26.8592 27.6296C26.9299 27.5948 26.889 27.6145 26.8604 27.6308ZM26.8665 27.637C26.8248 27.6525 26.8395 27.6427 26.8604 27.6308L26.8665 27.637ZM23.0994 32.8299C23.2675 32.7297 23.1975 32.7624 23.2814 32.6569C23.3828 32.5288 23.4163 32.5861 23.5591 32.492L23.8421 32.2646C23.849 32.2569 23.8584 32.245 23.865 32.2368L24.2376 31.7972C24.3832 31.6618 24.3513 31.8295 24.4993 31.6708L24.4666 31.3964L24.6969 31.3244L24.5492 31.2168C24.9136 31.0696 24.4167 31.0356 24.9668 31.0389C24.8355 30.8074 24.86 30.9628 24.9034 30.6647L25.2273 30.7465L25.0375 30.5023C25.0437 30.5076 25.1038 30.4913 25.114 30.4864C25.1897 30.4504 25.1815 30.4516 25.211 30.4287L25.0073 30.2843C25.1312 30.178 25.2384 30.2651 25.123 30.0353C25.287 30.0582 25.2613 30.1068 25.402 30.0316C25.3087 29.969 25.211 29.9138 25.1337 29.8177C25.2142 29.7731 25.2662 29.832 25.3602 29.7608L25.2191 29.5878L25.5954 29.6516L25.2564 29.3972L25.8118 29.5645C25.7422 29.3727 25.5725 29.3469 25.3623 29.2676C25.3725 29.2594 25.3913 29.2382 25.397 29.2496L25.548 29.2218C25.5639 29.223 25.7197 29.2643 25.7766 29.2729C25.768 29.2627 25.7541 29.2349 25.7496 29.2435L25.5774 29.0844C25.5013 29.0108 25.5549 29.0811 25.4891 28.9891C25.7345 29.0525 25.7889 29.1641 26.0502 29.1285C25.9888 29.0946 25.9246 29.0414 25.8383 28.9944L25.6392 28.875C25.5492 28.796 25.6273 28.8881 25.5529 28.778L26.0416 28.9126C25.9488 28.758 26.0056 28.8533 25.9107 28.7588C25.8019 28.6509 25.8539 28.7572 25.7844 28.6108L26.1737 28.7044L26.0359 28.5126L26.3729 28.5498C26.2874 28.457 26.15 28.3355 26.0723 28.2361L26.4228 28.3089L26.3107 28.0893L26.6318 28.1924C26.5835 28.0259 26.5524 28.0517 26.4805 27.9024L26.8305 27.9952C26.7676 27.8051 26.7688 27.9155 26.6894 27.7384C26.9536 27.7347 26.8289 27.7699 27.0727 27.8451L26.8657 27.6357C26.8833 27.6292 26.9111 27.6178 26.9528 27.6006C26.9614 27.5969 26.9778 27.5908 26.9872 27.5867L27.0935 27.527C27.0334 27.4717 26.986 27.4403 26.9422 27.338L27.244 27.3237C27.1536 27.2112 27.1316 27.23 27.0338 27.12C27.2281 27.0329 27.1962 27.1413 27.3986 27.221C27.298 27.0006 27.1843 27.0206 27.0849 26.8288C27.4101 26.9213 27.3949 26.8669 27.6379 27.0534C27.5017 26.7781 27.3254 26.8452 27.1667 26.5262C27.3864 26.5462 27.3843 26.7552 27.6702 26.7315C27.579 26.6742 27.2686 26.3503 27.1999 26.217C27.4722 26.3258 27.5585 26.4718 27.8002 26.5736C27.6792 26.327 27.4686 26.2963 27.2829 26.0072C27.5655 26.0988 27.5348 26.2374 27.842 26.2869C27.7324 25.9953 27.3401 25.9409 27.2072 25.6497L27.5941 25.783C27.4444 25.5147 27.3103 25.5262 27.1328 25.3491C27.1328 25.2072 27.0829 25.3479 27.2878 25.2501L26.5541 24.8546C26.8199 24.797 26.8841 24.9303 27.1401 24.9716C27.0056 24.8456 26.7671 24.7295 26.5381 24.662C26.6383 24.6203 26.6154 24.6469 26.6894 24.6256C26.7029 24.6215 26.7177 24.6178 26.7316 24.6138L26.7741 24.5998L26.8604 24.5671C26.332 24.4686 26.3512 24.3066 26.2788 24.2833C26.0375 24.2567 25.586 24.1917 25.3598 24.1995C24.7967 24.2191 25.1557 24.5111 24.8081 24.3054C24.8715 24.6358 24.8114 24.4457 24.7688 24.4939C24.7635 24.4996 24.75 24.5078 24.7439 24.5136L24.5198 24.7287C24.5026 24.736 24.494 24.7377 24.4903 24.736C24.4883 24.7385 24.4858 24.7409 24.4834 24.7438L24.2261 24.7021L24.3627 25.0755C24.2098 25.0158 24.2179 24.9773 24.1083 24.8469C24.1145 25.0379 24.1537 25.0297 24.2188 25.1859L24.0429 25.1585L24.1047 25.3896C24.0298 25.3483 24.0028 25.3344 23.9337 25.2906C24.0253 25.7 23.9484 25.3532 23.8519 25.6518C23.8503 25.6563 23.8478 25.671 23.8462 25.6751L23.8376 25.6935C23.7353 25.871 23.8499 25.6673 23.7963 25.7282C23.6826 25.8567 23.7051 26.116 23.5812 26.253L23.3587 26.0301C23.409 26.3225 23.5088 26.2746 23.5133 26.5433C23.3358 26.4534 23.3619 26.1941 23.2863 26.4211C23.2253 26.6039 23.3296 26.7159 23.3664 26.9053C23.2315 26.8603 23.3443 26.9335 23.2343 26.8092L23.1439 26.6861C23.1386 26.6791 23.1288 26.664 23.1198 26.6542C23.1758 26.8963 23.2409 26.9581 23.155 27.1474C23.099 27.2709 23.2049 27.0824 23.13 27.2206C23.0785 27.3155 23.1215 27.2623 23.0397 27.2726C23.1264 27.5041 23.1345 27.376 23.1505 27.6452L23.2041 27.9253C23.2053 27.9347 23.2053 27.9498 23.2065 27.9593C23.2249 28.1065 23.6012 28.6108 23.7247 28.7482C23.7178 28.7527 23.7034 28.7457 23.701 28.7551C23.6674 28.8823 23.5803 28.6611 23.5493 28.8922C23.5468 28.9097 23.5623 29.0046 23.5677 29.0402L23.3427 28.9404L23.4981 29.2157L23.2249 29.0026C23.1219 28.8995 23.0806 28.8823 23.0106 28.7453C22.9877 28.8296 22.9607 28.967 22.9104 29.0398C22.7898 29.0042 22.775 29.0557 22.6871 28.9768C22.6515 28.9449 22.5333 28.7641 22.5207 28.7461C22.5489 28.9564 22.6785 29.1572 22.6147 29.2909C22.5239 29.2001 22.4724 29.1081 22.4364 28.9752C22.4356 29.1212 22.4589 29.1134 22.4695 29.2467L22.3963 30.2079C22.137 31.2598 22.0102 31.0127 21.9321 31.3142L22.0532 30.6258L21.834 31.2565C21.7624 31.1755 21.762 31.1612 21.7935 30.9911C21.8168 30.8655 21.8331 30.8369 21.8405 30.6856L21.6655 30.8782C21.6577 30.8855 21.6434 30.8982 21.6319 30.9076L21.7383 30.4009C21.6712 30.4905 21.5784 30.6786 21.4675 30.7142L21.5563 30.3571L21.3236 30.5575L21.4528 30.0618L21.2144 30.1563C21.2626 29.9719 21.2945 29.9715 21.3628 29.8001C21.2205 29.8696 21.2078 29.9187 21.1019 30.0365C21.0422 30.1032 21.0847 30.0672 21.0176 30.1187L21.1816 29.6794C21.0953 29.7604 21.0561 29.8197 20.9559 29.8745C20.8356 29.9404 20.825 29.8745 20.7379 30.0884C20.7281 30.0778 20.7158 30.0451 20.7109 30.0545L20.5129 29.8815C20.4336 29.8214 20.4823 29.879 20.4344 29.8165C20.6998 29.4598 20.551 29.6525 20.7444 29.661L20.8495 29.6615C21.0311 29.6512 21.0683 29.5801 21.1743 29.4091C21.1362 29.2946 21.1407 29.3641 21.0892 29.2966L21.0446 29.239C20.9072 29.041 20.8847 28.7895 20.7931 28.5911L20.7612 28.4734C20.7318 28.3384 20.4275 28.0595 20.3281 27.931L20.2271 27.7756C20.2213 27.7658 20.2136 27.7527 20.2082 27.7429C20.1093 27.5544 20.1571 27.6165 20.2001 27.3953C19.9338 27.4525 20.1633 27.5572 19.8508 27.63C19.933 27.32 20.025 27.4276 20.1383 27.1564C19.9265 27.257 20.077 27.2075 19.942 27.3008C19.7858 27.4088 19.9702 27.3814 19.6982 27.3805C19.722 27.0542 19.9195 27.1368 19.9813 26.763C19.9719 26.754 19.9547 26.7298 19.9498 26.7393L19.7187 26.502C19.6684 26.3986 19.6148 26.217 19.585 26.1368C19.3473 26.2006 19.2508 26.3507 19.0574 26.4415L19.2205 26.1454L18.933 26.3119C19.0099 26.0104 19.0999 26.1176 19.2353 25.8653L18.8778 26.08C18.9649 25.8665 19.0116 25.8558 19.0958 25.6972C18.8709 25.7749 18.9347 25.889 18.6979 25.9884C18.7167 25.579 19.2398 25.7078 19.0009 25.327C18.8001 25.3884 18.7343 25.5278 18.5666 25.6195C18.5834 25.2931 19.1768 25.3323 18.8639 24.8146L18.6067 24.3994C18.5445 24.3332 18.3273 24.2992 18.5281 24.053L18.331 24.1062C18.423 23.786 18.241 23.7778 18.2721 23.6641C18.2758 23.6514 18.3445 23.5443 18.3645 23.505L18.185 23.4543C18.2373 23.0134 18.1281 23.1414 18.0664 22.8666C18.0263 22.6895 18.095 22.7312 18.0423 22.6224C17.976 22.4854 17.9813 22.6433 17.8599 22.4179L18.3907 22.3766L18.5797 22.0478C18.3245 22.0625 18.2676 22.112 18.1089 21.9598C18.2357 21.9042 18.223 21.941 18.3138 21.901C18.5101 21.8142 18.4324 21.8061 18.5028 21.7341L18.6934 21.6196C18.9056 21.528 18.803 21.6323 18.8942 21.4752C18.4995 21.5815 18.6193 21.5333 18.542 21.4543L18.9298 21.3271C18.8005 21.2392 18.5866 21.3022 18.6414 21.1362C18.6696 21.0511 18.8917 20.9946 19.0009 20.9492L18.9048 20.8372L19.1837 20.7227L18.976 20.6613C18.9703 20.6597 18.9543 20.6585 18.9453 20.6535C19.0525 20.5386 19.0889 20.5227 19.1077 20.4L19.1449 20.2826C19.1547 20.2311 19.1567 20.2883 19.1428 20.1804L19.0909 19.6331C19.0979 19.4303 19.1187 19.3113 18.9735 19.1857L18.6287 18.9354C18.4439 18.7452 18.576 18.9096 18.596 18.6242C18.3515 18.7415 18.5527 18.7796 18.3089 18.6577C18.2071 18.6066 18.0607 18.5096 17.9969 18.4512C17.8823 18.3469 17.8177 18.2663 17.8251 18.1354C17.8284 18.0798 17.8378 18.0716 17.8451 18.0757C17.841 18.0675 17.8357 18.0561 17.8284 18.0393C17.7899 17.9906 17.6991 17.9735 17.666 17.926C17.3609 18.1457 17.4963 18.67 17.6615 18.888C18.0374 19.3832 18.3367 19.1354 18.3964 19.6352C18.4365 19.9705 18.2946 19.9828 18.0954 20.357L18.0607 20.4237L18.0431 20.4581C17.8644 20.8192 17.9641 20.6675 17.9547 20.8143C17.9359 21.1112 17.6194 21.0781 17.3785 21.2237C17.1908 21.337 17.2468 21.4224 17.2431 21.4388L17.221 21.5308C17.1711 21.6216 17.0153 21.6715 16.9327 21.7762C16.9335 21.7893 16.9327 21.8065 16.9302 21.8286C16.9163 21.95 16.8824 21.9627 16.7793 22.0645C17.127 21.8768 17.0431 22.02 17.0738 22.0425C16.9658 22.0969 16.8914 22.1782 16.7875 22.2568C16.7957 22.2572 16.8971 22.2326 16.9764 22.2817L16.8088 22.4314C16.8129 22.4306 16.83 22.4208 16.8341 22.4314C16.8382 22.4425 16.8591 22.4355 16.8644 22.4367L17.0693 22.4874L16.8709 22.5946L17.0632 22.703C16.9585 22.7905 16.9944 22.7529 16.9302 22.8416C17.1629 23.0678 17.0402 23.0318 17.12 23.1717C17.1478 23.2208 17.2771 23.3357 17.2693 23.4457C17.2582 23.5995 17.0292 23.6436 17.3617 23.8596C17.2059 24.0395 17.2938 23.9684 17.2762 24.1217C17.2537 24.3181 17.2255 24.2134 17.1707 24.4313C17.421 24.3176 17.183 24.3258 17.4807 24.2604C17.4329 24.3696 17.3932 24.4211 17.3404 24.5107C17.484 24.4309 17.4038 24.4142 17.558 24.5037C17.4411 24.6211 17.2439 24.9667 17.0443 25.0109C16.7961 25.0657 17.0263 25.0387 16.8112 24.9385L16.9895 24.6285C16.9286 24.5954 16.994 24.5581 16.7086 24.6461C16.7605 24.4898 16.7871 24.5176 16.7564 24.4179L16.6493 24.2289C16.4783 23.9451 16.6022 23.9721 16.5352 23.6751C16.5 23.5209 16.3883 23.3811 16.3421 23.2113C16.3188 23.1259 16.3118 23.0015 16.273 22.9226C16.2607 22.8977 16.2268 22.8547 16.2076 22.8355C16.1249 22.7525 16.1409 22.7864 16.0849 22.7476L15.6922 23.0457L15.5781 23.3373L15.7867 23.222C15.8223 23.3005 15.7933 23.3128 15.7479 23.4162C16.0059 23.2936 15.8988 23.3332 15.9433 23.4694L15.9204 23.7079L16.0595 23.7353C15.9507 23.9872 15.9425 23.9958 16.0055 24.2101L16.1847 24.99C16.2125 25.2133 16.2509 25.1405 16.3184 25.3041C16.3274 25.3262 16.4791 25.1949 16.3016 25.5307L16.5061 25.4338C16.473 25.6391 16.5368 25.4918 16.5286 25.6882C16.5282 25.6959 16.5249 25.7123 16.5245 25.7201C16.5086 25.9164 16.6697 26.2836 16.5495 26.6055L16.7392 26.4718C16.7396 26.7253 16.6542 26.6562 16.6349 26.8309L16.7969 26.6975L16.6664 27.0636C16.8276 27.1474 16.6914 26.9969 16.8538 27.0664L16.7176 27.5225C16.8509 27.3675 16.8153 27.2538 16.9695 27.1368C17.075 27.3486 16.8202 27.4812 16.8231 27.7638C16.9204 27.6112 16.8848 27.5589 17.0492 27.4901L16.9343 27.9192C17.0537 27.756 17.0161 27.747 17.1928 27.6693L17.0824 27.9838C17.0852 27.9875 17.0979 27.9846 17.1 27.9936C17.1204 28.0791 17.1315 27.9903 17.212 28.0333L17.0807 28.3408C17.1372 28.3789 17.1584 28.275 17.2582 28.3384L17.1683 28.5956C17.2693 28.65 17.1449 28.5944 17.2325 28.5932L17.3049 28.592C17.3081 28.592 17.322 28.5891 17.3294 28.5932L17.2161 28.8476C17.2251 28.8517 17.2423 28.8423 17.2451 28.8533C17.2513 28.8762 17.3936 28.8214 17.3392 29.093C17.4104 29.0157 17.4276 28.9637 17.4999 29.0005L17.4096 29.3065C17.473 29.3294 17.4231 29.3494 17.5548 29.221L17.4198 29.9032L17.6402 29.4705C17.7036 29.7179 17.5441 29.9195 17.5507 30.1968C17.5969 30.0594 17.776 29.8021 17.801 29.6868L17.7093 30.2189C17.8361 30.115 17.8811 29.9866 17.9703 29.87L17.8725 30.324L18.1551 30.4258L18.0778 30.832L18.2132 30.7731L18.1543 31.1649C18.194 31.0377 18.2357 31.0115 18.3196 30.9448L18.2713 31.2913C18.3416 31.324 18.3236 31.3158 18.4169 31.2614C18.4251 31.2565 18.4394 31.2414 18.4517 31.2328C18.4189 31.8107 18.5343 31.1653 18.54 31.7829C18.5903 31.7428 18.5678 31.7587 18.614 31.717L18.7069 31.6344C18.7105 31.7931 18.7232 31.787 18.7355 31.7972L18.8541 31.8L18.8022 32.1105C19.0234 31.9514 19.0709 32.0184 19.0831 32.3436L19.1563 32.283C19.2165 32.2393 19.1805 32.2601 19.234 32.2311L19.2569 32.5702C19.3903 32.4495 19.2909 32.4794 19.3821 32.526L19.4091 33.0777C19.4692 32.9607 19.4439 32.8744 19.5097 32.7685L19.5747 33.0499C19.7469 32.9456 19.6079 32.9579 19.7248 32.9706L19.6995 33.3153L19.8868 33.1235C19.8622 33.5165 19.953 33.31 20.052 33.6511C20.1044 33.8323 20.108 33.9648 20.2651 34.0994C20.4042 34.2184 20.5772 34.4012 20.7575 34.4257C20.8017 34.4319 20.7857 34.4204 20.8876 34.4413C21.0193 34.4683 21.081 34.4948 21.2397 34.4944C21.6961 34.4928 22.4871 34.101 22.6078 33.6748C22.6986 33.3534 22.6577 33.3284 22.9448 33.3525C22.9542 33.1088 22.7513 33.0335 23.0985 32.8262L23.0994 32.8299Z\" fill=\"#231F20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.1699 29.8398V30.0182C29.5261 30.0182 29.5261 29.8398 29.1699 29.8398Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1loazzx\",\"data-framer-name\":\"Skinnyfit\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"24\" viewBox=\"0 0 128 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M72.5345 23.9207C72.5255 23.9342 72.524 23.9492 72.5315 23.9627H71.3243C71.3243 23.9477 71.3243 23.9342 71.3228 23.9192C71.7267 23.9192 72.1306 23.9192 72.533 23.9192L72.5345 23.9207Z\" fill=\"white\"/>\\n<path d=\"M127.232 8.30347C127.247 8.30347 127.26 8.30347 127.276 8.30497V9.33054C127.26 9.33054 127.245 9.33054 127.23 9.33054C127.23 8.98818 127.23 8.64582 127.23 8.30347H127.232Z\" fill=\"white\"/>\\n<path d=\"M127.232 8.30399C127.232 8.64634 127.232 8.9887 127.232 9.33106C127.121 10.4422 126.68 11.4077 125.897 12.202C124.64 13.4799 123.366 14.7397 122.098 16.0085C121.352 16.7563 120.61 17.5071 119.864 18.2549C119.305 18.8134 118.654 18.8134 118.098 18.2609C116.112 16.2923 114.123 14.3253 112.138 12.3552C111.219 11.4438 110.7 10.3491 110.647 9.04726C110.53 6.12071 112.834 3.82182 115.786 3.92993C116.945 3.97197 117.954 4.40593 118.819 5.17022C118.918 5.25731 118.965 5.26332 119.065 5.17172C120.028 4.31283 121.161 3.8969 122.451 3.9059C124.837 3.92392 126.932 5.78436 127.226 8.14632C127.232 8.19738 127.232 8.24993 127.235 8.30249L127.232 8.30399ZM125.002 8.83404C125.008 7.75892 124.37 6.79041 123.384 6.37598C122.375 5.95254 121.256 6.17177 120.478 6.94507C120.245 7.17631 120.016 7.40905 119.783 7.63879C119.29 8.1253 118.627 8.13581 118.13 7.65982C117.894 7.43308 117.663 7.20034 117.43 6.9721C116.832 6.38499 116.119 6.12221 115.281 6.2003C113.705 6.34595 112.605 7.86853 112.958 9.40764C113.101 10.0278 113.463 10.4948 113.907 10.9332C115.551 12.5504 117.182 14.1811 118.816 15.8103C118.912 15.9064 118.966 15.959 119.094 15.8313C120.81 14.106 122.535 12.3897 124.25 10.6644C124.749 10.1629 124.995 9.54578 125.002 8.83704V8.83404Z\" fill=\"white\"/>\\n<path d=\"M88.5923 12.8169C88.5923 14.3109 88.5923 15.805 88.5923 17.2991C88.5923 18.1459 88.0833 18.709 87.2379 18.8096C86.4631 18.9012 85.6988 18.2495 85.6703 17.4717C85.6643 17.3306 85.6628 17.1894 85.6628 17.0483C85.6583 14.8785 85.6658 12.7073 85.6462 10.5375C85.6387 9.7567 85.6357 8.97739 85.6357 8.19657C85.6357 8.04041 85.5922 7.98635 85.4345 7.99837C85.2573 8.01038 85.0772 8.00287 84.8985 8.00137C84.1041 7.99386 83.4675 7.3602 83.4615 6.56888C83.4555 5.75353 84.0651 5.11236 84.8714 5.08983C85.0576 5.08383 85.2438 5.07782 85.43 5.09134C85.5877 5.10335 85.6327 5.04929 85.6282 4.89313C85.6117 4.24596 85.6432 3.60178 85.8009 2.96812C86.2033 1.34643 87.3715 0.37342 89.0428 0.271314C89.3161 0.254797 89.5879 0.214254 89.8656 0.263806C90.6209 0.400448 91.1405 1.05063 91.0864 1.80741C91.0309 2.58973 90.4422 3.16633 89.6659 3.19186C89.4287 3.19937 89.1899 3.20237 88.9587 3.27144C88.8341 3.30748 88.753 3.37805 88.7109 3.50268C88.5533 3.97567 88.5593 4.46669 88.5473 4.9562C88.5443 5.0598 88.6073 5.07632 88.6929 5.07482C88.9242 5.07332 89.1554 5.07182 89.3851 5.07482C90.196 5.08683 90.8176 5.72049 90.8161 6.53284C90.8146 7.33017 90.169 7.98335 89.3746 7.99086C89.1584 7.99236 88.9422 7.99837 88.7275 7.98936C88.5983 7.98335 88.5653 8.0314 88.5653 8.15453C88.5728 9.45488 88.5743 10.7567 88.5788 12.0571C88.5788 12.3094 88.5788 12.5631 88.5788 12.8154C88.5833 12.8154 88.5878 12.8154 88.5923 12.8154V12.8169Z\" fill=\"white\"/>\\n<path d=\"M102.16 12.3036C102.16 11.0993 102.156 9.89507 102.165 8.69082C102.166 8.49862 102.108 8.45357 101.926 8.46108C101.681 8.47159 101.436 8.47609 101.19 8.44606C100.429 8.34996 99.8958 7.7118 99.9229 6.92197C99.9484 6.16669 100.534 5.57207 101.288 5.53903C101.51 5.52852 101.735 5.52402 101.957 5.53603C102.118 5.54504 102.16 5.48648 102.154 5.33332C102.111 4.11555 102.136 2.89628 102.133 1.67851C102.133 1.06887 102.5 0.54633 103.057 0.328603C103.632 0.103368 104.289 0.244515 104.701 0.682972C104.974 0.974275 105.09 1.32414 105.091 1.71905C105.094 2.90078 105.103 4.08251 105.096 5.26425C105.096 5.47597 105.16 5.52852 105.359 5.51801C105.632 5.50299 105.91 5.50149 106.178 5.57957C106.892 5.78529 107.338 6.44748 107.247 7.17724C107.165 7.85144 106.54 8.41453 105.839 8.44456C105.653 8.45207 105.467 8.45657 105.28 8.44456C105.142 8.43705 105.102 8.4821 105.105 8.62024C105.114 9.22988 105.112 9.83951 105.114 10.4491C105.12 12.1729 105.129 13.8967 105.132 15.6205C105.132 15.7512 105.133 15.8323 105.309 15.8503C106.067 15.9299 106.635 16.6026 106.6 17.3563C106.561 18.1807 105.967 18.7723 105.16 18.7888C103.563 18.8219 102.184 17.4885 102.175 15.8923C102.169 14.6956 102.175 13.4988 102.175 12.3036C102.169 12.3036 102.163 12.3036 102.157 12.3036H102.16Z\" fill=\"white\"/>\\n<path d=\"M72.5345 23.9215C72.1306 23.9215 71.7266 23.9215 71.3242 23.9215C70.605 23.8614 69.9233 23.6602 69.2701 23.3614C68.9833 23.2308 68.8436 22.8689 68.9397 22.5866C69.0433 22.2803 69.3572 22.0941 69.683 22.1526C69.7761 22.1692 69.8692 22.2052 69.9563 22.2427C71.8272 23.0581 73.9309 22.6887 75.3844 21.2517C76.3184 20.3282 76.7944 19.1915 76.8214 17.8747C76.8275 17.6089 76.8214 17.3416 76.7764 17.0383C76.7013 17.1224 76.6323 17.214 76.5512 17.2921C75.5691 18.2471 74.3979 18.8192 73.024 18.8507C70.8993 18.9002 69.2866 17.9678 68.201 16.1524C67.731 15.3656 67.5223 14.4977 67.5193 13.5787C67.5133 11.2528 67.4982 8.92685 67.4907 6.60093C67.4892 6.08289 67.9082 5.77507 68.3721 5.94775C68.6364 6.04685 68.7791 6.26308 68.7791 6.5739C68.7821 8.17156 68.7806 9.77073 68.7881 11.3684C68.7911 12.2078 68.7866 13.0486 68.8241 13.8865C68.9037 15.6539 70.3737 17.244 72.1321 17.4978C74.4069 17.8251 76.386 16.3896 76.7614 14.1253C76.862 13.5216 76.8184 12.909 76.8064 12.3009C76.8064 12.2423 76.7959 12.1822 76.7959 12.1237C76.7914 10.2647 76.7869 8.40731 76.7854 6.54837C76.7854 6.14595 77.0392 5.86666 77.4236 5.87417C77.7659 5.88018 78.0738 6.11142 78.0738 6.54687C78.0753 7.23759 78.0783 7.92981 78.0798 8.62053C78.0873 10.7978 78.0933 12.9766 78.1008 15.1538C78.1038 16.0608 78.1113 16.9677 78.1113 17.8747C78.1113 20.8733 75.8695 23.453 72.8888 23.8779C72.7717 23.8944 72.6531 23.9065 72.5345 23.92V23.9215Z\" fill=\"white\"/>\\n<path d=\"M15.4178 13.58C15.5214 13.5484 15.5634 13.4748 15.619 13.4193C18.0906 10.9462 20.5607 8.47163 23.0292 5.99555C23.2289 5.79584 23.4512 5.68022 23.729 5.77332C23.9767 5.8559 24.1479 6.02708 24.1914 6.29736C24.2335 6.55863 24.1073 6.75234 23.9317 6.92802C22.9481 7.91154 21.9646 8.89507 20.9826 9.8816C20.373 10.4927 19.7693 11.1099 19.1567 11.715C19.0381 11.8321 19.0246 11.9057 19.1357 12.0378C20.7348 13.9568 22.3295 15.8803 23.9242 17.8039C24.0052 17.9015 24.0878 17.9991 24.1494 18.1072C24.3086 18.388 24.2185 18.7784 23.9677 18.945C23.6914 19.1297 23.2875 19.0712 23.0788 18.8204C21.4691 16.8894 19.8594 14.9599 18.2482 13.0304C18.0485 12.7916 18.0996 12.7841 17.8774 13.0064C17.104 13.7797 16.3337 14.556 15.5574 15.3263C15.4598 15.4239 15.4193 15.52 15.4223 15.6581C15.4358 16.5425 15.4133 17.427 15.4418 18.3099C15.4568 18.7799 15.1941 19.0637 14.7841 19.0697C14.4012 19.0772 14.1234 18.7934 14.1234 18.3865C14.1189 16.981 14.1204 15.577 14.1159 14.1716C14.1039 10.2104 14.0904 6.24931 14.0784 2.28818C14.0784 1.9173 14.0694 1.54491 14.0724 1.17402C14.0754 0.791124 14.3427 0.513335 14.7045 0.505827C15.0769 0.496818 15.3652 0.776109 15.3803 1.15901C15.3803 1.18904 15.3803 1.21907 15.3803 1.2476C15.3878 3.17261 15.3938 5.09761 15.3998 7.02112C15.4058 9.14733 15.4118 11.272 15.4178 13.3983C15.4178 13.4553 15.4178 13.5124 15.4178 13.58Z\" fill=\"white\"/>\\n<path d=\"M37.6758 7.89176C37.9535 7.59295 38.1953 7.3542 38.4611 7.14098C41.5453 4.67991 46.2662 6.47879 46.9314 10.3633C47.065 11.1396 46.987 11.9205 47.017 12.6983C47.032 13.0842 47.017 13.4716 47.02 13.8575C47.026 15.3215 47.035 16.7855 47.0395 18.2496C47.0395 18.7195 46.7542 19.0033 46.3278 18.9658C46.0124 18.9388 45.7767 18.6985 45.7557 18.3847C45.7542 18.3547 45.7557 18.3246 45.7542 18.2961C45.7467 17.0618 45.7392 15.829 45.7347 14.5947C45.7301 13.4866 45.7256 12.3799 45.7241 11.2718C45.7211 8.97889 43.7706 7.159 41.4762 7.30915C39.3725 7.4473 37.7028 9.21764 37.7013 11.3258C37.7013 13.6668 37.7118 16.0092 37.7163 18.3502C37.7163 18.6865 37.5211 18.9313 37.2118 18.9913C36.8934 19.0544 36.6096 18.8982 36.491 18.6039C36.4595 18.5243 36.4595 18.4448 36.458 18.3637C36.4505 16.5573 36.443 14.7509 36.4385 12.946C36.4325 10.8724 36.428 8.79871 36.4189 6.72504C36.4189 6.50281 36.476 6.31211 36.6517 6.17247C36.8469 6.01631 37.0706 5.97426 37.3004 6.07937C37.5271 6.18148 37.6667 6.36467 37.6728 6.61843C37.6818 7.01935 37.6758 7.41877 37.6758 7.89026V7.89176Z\" fill=\"white\"/>\\n<path d=\"M53.9676 7.75007C54.364 7.3927 54.7469 7.05785 55.1809 6.78006C58.3882 4.72442 62.7368 6.73501 63.2443 10.5069C63.3194 11.0625 63.2938 11.6196 63.2998 12.1752C63.3224 14.1963 63.3149 16.2174 63.3179 18.24C63.3179 18.5628 63.1677 18.7851 62.8974 18.8812C62.6271 18.9773 62.3494 18.9022 62.1722 18.686C62.052 18.5388 62.028 18.3676 62.028 18.1844C62.028 16.3195 62.028 14.4531 62.0205 12.5881C62.019 12.031 62.0175 11.474 61.9875 10.9184C61.8854 9.05643 60.2922 7.45727 58.4333 7.26807C56.0037 7.02031 53.9601 9.00238 53.9766 11.3568C53.9932 13.6677 53.9886 15.9801 53.9916 18.2911C53.9916 18.5899 53.8475 18.8211 53.6103 18.9127C53.337 19.0178 53.0682 18.9547 52.8805 18.737C52.7739 18.6139 52.7318 18.4712 52.7318 18.3076C52.7318 17.3045 52.7303 16.3015 52.7273 15.2969C52.7213 13.0971 52.7138 10.8974 52.7063 8.69756C52.7033 8.02186 52.6988 7.34465 52.6958 6.66895C52.6958 6.38515 52.8039 6.16142 53.0682 6.03679C53.4436 5.8596 53.8655 6.07733 53.9421 6.48425C53.9616 6.58636 53.9661 6.68997 53.9661 6.79358C53.9691 7.11191 53.9661 7.43024 53.9661 7.74857L53.9676 7.75007Z\" fill=\"white\"/>\\n<path d=\"M4.90716 6.11379C6.06337 6.07475 7.09795 6.46215 8.07697 7.03275C8.30821 7.16789 8.53645 7.30753 8.76318 7.45018C9.12506 7.67992 9.23768 8.08985 9.03046 8.40968C8.82174 8.73252 8.42533 8.78507 8.05144 8.53882C7.49286 8.17093 6.93878 7.78953 6.30212 7.5643C5.11738 7.14386 3.96268 7.23846 2.85002 7.82107C2.56472 7.96972 2.32297 8.18144 2.11726 8.4322C1.41452 9.28509 1.56168 10.2746 2.49415 10.8768C3.15484 11.3032 3.89661 11.5284 4.66391 11.6486C5.72552 11.8137 6.7631 12.0405 7.74963 12.4894C8.54245 12.8513 9.15059 13.3889 9.49444 14.1892C10.0065 15.3784 9.82179 16.4776 8.96139 17.4371C7.98087 18.5302 6.71955 19.0558 5.26304 19.0993C3.37407 19.1564 1.75087 18.4476 0.288351 17.3125C-0.0389905 17.0587 -0.0870405 16.7073 0.141197 16.4145C0.361927 16.1322 0.746328 16.0962 1.07667 16.3364C1.88902 16.9266 2.75692 17.4101 3.73745 17.6533C4.96723 17.9581 6.15947 17.8951 7.26012 17.1953C7.56193 17.0031 7.84423 16.7854 8.07396 16.5061C8.60252 15.8634 8.60552 15.0526 8.09649 14.3979C7.60097 13.7628 6.92076 13.4369 6.17298 13.2162C5.31559 12.9639 4.42816 12.8528 3.56326 12.6351C2.85002 12.4549 2.18333 12.1786 1.57519 11.7597C0.208768 10.8137 -0.0329842 9.04935 1.02262 7.70845C1.66378 6.8931 2.53169 6.47867 3.51371 6.25644C3.97169 6.15283 4.43717 6.10027 4.90867 6.11379H4.90716Z\" fill=\"white\"/>\\n<path d=\"M93.8416 12.1519C93.8416 10.4431 93.8356 8.73434 93.8431 7.02406C93.8476 5.93693 94.9107 5.26273 95.9033 5.7132C96.3913 5.93543 96.6436 6.33634 96.7066 6.86039C96.7141 6.92646 96.7141 6.99403 96.7141 7.0601C96.7216 8.43403 96.7291 9.80946 96.7336 11.1834C96.7412 13.2345 96.7472 15.2857 96.7502 17.3353C96.7502 18.0876 96.2787 18.6747 95.5924 18.7888C94.6314 18.9495 93.8657 18.2918 93.8642 17.2993C93.8612 15.583 93.8642 13.8667 93.8642 12.1504C93.8566 12.1504 93.8476 12.1504 93.8401 12.1504L93.8416 12.1519Z\" fill=\"white\"/>\\n<path d=\"M28.9966 12.8514C28.9966 11.069 28.9966 9.28517 28.9966 7.50282C28.9966 7.19199 28.9471 6.88117 28.9966 6.57034C29.0477 6.25652 29.2789 6.0463 29.5837 6.02978C29.9246 6.01176 30.1979 6.19495 30.2775 6.50277C30.2985 6.58686 30.3 6.67846 30.3 6.76705C30.303 7.62895 30.3045 8.49085 30.3075 9.35274C30.3135 11.3799 30.321 13.4085 30.3285 15.4356C30.3315 16.3861 30.336 17.3366 30.339 18.2886C30.339 18.7375 30.0868 19.0153 29.6798 19.0183C29.2714 19.0213 29.0237 18.748 29.0237 18.2901C29.0237 16.4777 29.0237 14.6653 29.0237 12.8529C29.0162 12.8529 29.0071 12.8529 28.9996 12.8529L28.9966 12.8514Z\" fill=\"white\"/>\\n<path d=\"M96.7021 2.05119C96.7427 2.51217 96.6285 2.98517 96.2231 3.34254C95.7982 3.71643 95.3012 3.81854 94.7696 3.61733C94.232 3.41462 93.9167 3.0122 93.8431 2.4401C93.8011 2.11576 93.7996 1.78692 93.8431 1.46408C93.9452 0.734322 94.6074 0.202768 95.3402 0.250818C96.1165 0.301871 96.6916 0.894989 96.7021 1.65778C96.7036 1.7689 96.7021 1.88002 96.7021 2.0527V2.05119Z\" fill=\"white\"/>\\n<path d=\"M28.9665 2.71486C28.9665 2.61125 28.9605 2.50615 28.9665 2.40404C28.9905 2.06919 29.2428 1.81242 29.5626 1.7914C29.92 1.76738 30.2113 1.9791 30.2714 2.32746C30.3164 2.59173 30.3104 2.86202 30.2789 3.12629C30.2353 3.48517 29.9485 3.73743 29.6212 3.73743C29.3058 3.73743 29.0371 3.49417 28.98 3.1368C28.9575 2.99866 28.965 2.85601 28.959 2.71486C28.962 2.71486 28.9635 2.71486 28.9665 2.71486Z\" fill=\"white\"/>\\n<path d=\"M106.93 2.37475C106.355 2.36875 105.906 1.90626 105.913 1.32666C105.921 0.756066 106.397 0.284575 106.955 0.293584C107.536 0.302593 107.997 0.781593 107.985 1.3612C107.973 1.93179 107.505 2.38076 106.928 2.37475H106.93ZM107.841 1.34918C107.844 0.83715 107.455 0.430226 106.954 0.42422C106.466 0.416712 106.051 0.83715 106.051 1.34168C106.051 1.8447 106.434 2.23961 106.931 2.24562C107.442 2.25162 107.838 1.86272 107.841 1.35069V1.34918Z\" fill=\"white\"/>\\n<path d=\"M106.555 1.34238C106.555 1.1787 106.558 1.01503 106.555 0.851364C106.554 0.738746 106.603 0.686192 106.716 0.690696C106.82 0.695201 106.926 0.686192 107.027 0.70421C107.333 0.759768 107.456 1.06609 107.266 1.31084C107.206 1.38742 107.182 1.42496 107.267 1.50004C107.389 1.60515 107.296 1.79284 107.402 1.91297C107.408 1.91898 107.389 1.96402 107.381 1.96402C107.354 1.96402 107.323 1.95952 107.302 1.9445C107.236 1.90096 107.254 1.82438 107.242 1.76131C107.221 1.64869 107.188 1.54359 107.081 1.48202C106.851 1.34988 106.685 1.45049 106.673 1.71176C106.668 1.80336 106.739 1.97303 106.616 1.97153C106.507 1.97153 106.567 1.79585 106.558 1.69825C106.548 1.57962 106.555 1.461 106.557 1.34238H106.555ZM106.86 1.34538C107.114 1.34688 107.254 1.24778 107.251 1.0736C107.248 0.911426 107.12 0.822834 106.902 0.812323C106.748 0.804815 106.631 0.824336 106.679 1.01804C106.709 1.14417 106.555 1.38442 106.862 1.34538H106.86Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y4dr8m\",\"data-framer-name\":\"Deutsche Bank\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:135,svg:'<svg width=\"135\" height=\"22\" viewBox=\"0 0 135 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.76035 11.1991H3.00014V19.818H4.73C7.85589 19.818 8.88773 18.5738 8.88773 15.4175C8.91808 12.2613 7.70414 11.1991 4.76035 11.1991ZM5.33697 9.46924C9.00913 9.46924 11.1335 11.1384 11.1335 15.4479C11.1335 19.0593 9.52505 21.5479 5.27627 21.5479H0.966797V9.46924H5.33697Z\" fill=\"white\"/>\\n<path d=\"M13.9258 16.5106H17.8407C17.78 15.2056 17.2641 14.4772 15.9591 14.4772C14.7755 14.4772 14.1079 15.0538 13.9258 16.5106ZM17.7497 19.0295H19.6616C19.4188 20.3952 18.3263 21.7001 15.9288 21.7001C13.2278 21.7001 11.9531 19.8185 11.9531 17.3603C11.9531 14.811 13.2581 12.9294 15.9288 12.9294C18.8119 12.9294 19.7223 14.9021 19.7223 16.9961V17.9369H13.8954C14.0168 19.4847 14.6845 20.1827 15.9288 20.1827C17.3855 20.1827 17.6586 19.515 17.7497 19.0295Z\" fill=\"white\"/>\\n<path d=\"M26.5502 20.5469C26.0647 21.1538 25.2756 21.7001 23.8796 21.7001C21.8766 21.7001 20.8447 20.6379 20.8447 18.5742V13.1418H22.7567V18.0886C22.7567 19.2722 23.0602 20.122 24.3651 20.122C25.397 20.122 26.0343 19.3936 26.2164 18.8777C26.3378 18.5135 26.3681 18.1493 26.3681 17.6941V13.1418H28.2801V21.518H26.5806L26.5502 20.5469Z\" fill=\"white\"/>\\n<path d=\"M34.8962 21.4874C34.6534 21.5481 34.2285 21.5784 33.6823 21.5784C31.7096 21.5784 30.8599 21.1536 30.8599 18.7864V14.5983H29.2817V13.1416H30.8599V10.7744H32.7718V13.1416H34.8355V14.5983H32.7718V18.6347C32.7718 19.7879 33.0449 20.0914 34.1375 20.0914C34.5017 20.0914 34.8355 20.0307 34.8962 20.0003V21.4874Z\" fill=\"white\"/>\\n<path d=\"M37.5369 18.9985C37.5672 19.4841 37.7493 20.2428 39.1453 20.2731C40.3289 20.2731 40.7538 19.8179 40.7538 19.2413C40.7538 18.695 40.42 18.4522 39.722 18.2701L37.9011 17.8756C36.7175 17.6025 35.807 16.9651 35.807 15.5084C35.807 13.8696 37.1727 12.9895 39.0846 12.9895C41.3304 12.9895 42.4533 14.1427 42.5444 15.7209H40.6628C40.6021 15.2656 40.2682 14.4462 38.9329 14.4462C37.9921 14.4462 37.5672 14.8408 37.5672 15.387C37.5672 15.994 37.9618 16.2368 38.7205 16.3885L40.4807 16.7527C41.907 17.0562 42.6051 17.9059 42.6051 19.1806C42.6051 20.4856 41.6946 21.7602 39.1757 21.7602C36.6871 21.7298 35.7463 20.5766 35.6553 19.0288H37.5369V18.9985Z\" fill=\"white\"/>\\n<path d=\"M45.2754 17.3603C45.2754 19.0295 45.7913 20.1524 47.1873 20.1524C48.6137 20.1524 48.8565 19.2419 48.8868 18.5742H50.7988C50.6167 20.4862 49.4028 21.6698 47.1873 21.6698C44.0918 21.6698 43.3027 19.6364 43.3027 17.33C43.3027 15.0538 44.1221 12.9294 47.1873 12.9294C49.6456 12.9294 50.7077 14.2648 50.8291 16.025H48.8868C48.7958 15.4484 48.6137 14.4772 47.157 14.4772C45.9127 14.5076 45.2754 15.418 45.2754 17.3603Z\" fill=\"white\"/>\\n<path d=\"M53.6517 21.5479H51.7397V9.46924H53.6517V13.9912C54.1676 13.4449 54.9263 12.9593 56.292 12.9593C58.2343 12.9593 59.2055 14.1429 59.2055 15.9031V21.5479H57.2935V16.5101C57.2935 15.1444 56.7169 14.5981 55.7457 14.5981C54.8656 14.5981 54.2587 15.0837 53.9552 15.5389C53.7124 15.9334 53.6517 16.2976 53.6517 16.9046V21.5479Z\" fill=\"white\"/>\\n<path d=\"M62.1797 16.5106H66.0946C66.0339 15.2056 65.518 14.4772 64.213 14.4772C63.0294 14.4772 62.3618 15.0538 62.1797 16.5106ZM66.0036 19.0295H67.9155C67.6727 20.3952 66.5802 21.7001 64.1827 21.7001C61.4817 21.7001 60.207 19.8185 60.207 17.3603C60.207 14.811 61.512 12.9294 64.1827 12.9294C67.0658 12.9294 67.9762 14.9021 67.9762 16.9961V17.9369H62.1493C62.2707 19.4847 62.9384 20.1827 64.1827 20.1827C65.6394 20.1827 65.9125 19.515 66.0036 19.0295Z\" fill=\"white\"/>\\n<path d=\"M74.1672 16.0852V19.818H76.8986C78.4463 19.818 79.1443 19.3021 79.1443 17.9364C79.1443 16.5708 78.4463 16.0852 76.8986 16.0852H74.1672ZM76.504 11.1688H74.1672V14.3553H76.5647C78.1125 14.3553 78.5981 13.8698 78.5981 12.7469C78.5981 11.715 78.1125 11.1688 76.504 11.1688ZM72.1035 21.5479V9.46924H76.8682C79.6906 9.46924 80.7832 10.7439 80.7832 12.5648C80.7832 13.9001 80.0851 14.8409 79.1443 15.1444C80.2672 15.3265 81.3598 16.2369 81.3598 17.9668C81.3598 20.1822 80.2065 21.5479 77.2324 21.5479H72.1035Z\" fill=\"white\"/>\\n<path d=\"M87.5207 18.362V17.8157H85.6087C84.5162 17.8157 84.0609 18.2406 84.0609 19.0296C84.0609 19.6973 84.3644 20.1829 85.457 20.1829C86.5495 20.1829 87.2172 19.6366 87.4296 18.9993C87.5207 18.7869 87.5207 18.6351 87.5207 18.362ZM89.4023 21.5486H87.7331L87.6724 20.5774C87.1868 21.1844 86.3371 21.7307 84.9714 21.7307C83.3022 21.7307 82.1187 20.7595 82.1187 19.0903C82.1187 17.4819 83.3022 16.3893 85.6087 16.3893H87.5207V15.8127C87.5207 14.7809 86.9744 14.447 85.9729 14.447C84.7893 14.447 84.5162 14.963 84.4251 15.5092H82.4828C82.756 14.0222 83.7575 12.96 86.0032 12.96C88.3097 12.96 89.3719 13.8704 89.3719 15.9341V21.5486H89.4023Z\" fill=\"white\"/>\\n<path d=\"M92.8315 13.9918C93.3474 13.4455 94.1364 12.96 95.4718 12.96C97.4141 12.96 98.3852 14.1435 98.3852 15.9038V21.5486H96.4429V16.5107C96.4429 15.145 95.8663 14.5988 94.8952 14.5988C94.015 14.5988 93.4081 15.0843 93.1046 15.5396C92.8618 15.9341 92.8011 16.3286 92.8011 16.9356V21.5182H90.8892V13.1421H92.7101L92.8315 13.9918Z\" fill=\"white\"/>\\n<path d=\"M99.9331 21.5176H101.845V9.46924H99.9331V21.5176ZM105.244 13.1414L101.936 16.8439L105.578 21.5479H107.884L104.121 16.7832L107.429 13.1414H105.244Z\" fill=\"white\"/>\\n<path d=\"M113.074 21.5483H134.166V0.425781H113.074V21.5483ZM116.018 3.39993H131.222V18.6045H116.018V3.39993ZM125.729 5.49397L117.717 16.4801H121.511L129.523 5.49397H125.729Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sokecw\",\"data-framer-name\":\"Fiverr\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:76,svg:'<svg width=\"76\" height=\"24\" viewBox=\"0 0 76 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M68.8649 11.759H66.2812C64.6143 11.759 63.6975 13.0092 63.6975 15.1761V22.9272H58.6968V11.759H56.6132C54.9463 11.759 54.0295 13.0092 54.0295 15.1761V22.9272H49.0288V7.59176H54.0295V9.92542C54.863 8.09183 55.9465 7.59176 57.6133 7.59176H63.6975V9.92542C64.531 8.09183 65.6145 7.59176 67.2814 7.59176H68.9483L68.8649 11.759ZM47.862 16.4263H37.5272C37.7773 18.1766 38.8607 19.0934 40.611 19.0934C41.9445 19.0934 42.8613 18.5099 43.1947 17.5931L47.612 18.8433C46.5285 21.5104 43.8614 23.0939 40.611 23.0939C35.1936 23.0939 32.6932 18.8433 32.6932 15.1761C32.6932 11.5923 34.8602 7.34172 40.2776 7.34172C46.0284 7.34172 47.9453 11.6757 47.9453 14.9261C47.9453 15.6762 47.9453 16.0929 47.862 16.4263ZM43.1113 13.5092C43.028 12.1757 42.0279 11.0089 40.361 11.0089C38.7774 11.0089 37.8606 11.6757 37.5272 13.5092H43.1113ZM24.0254 22.9272H28.3593L33.8601 7.6751H28.8594L26.1923 16.593L23.5253 7.59176H18.5246L24.0254 22.9272ZM3.6892 22.9272H8.60655V11.759H13.3572V22.9272H18.2746V7.59176H8.60655V6.67496C8.60655 5.67482 9.35665 5.00807 10.4401 5.00807H13.3572V0.84082H9.69003C6.1062 0.84082 3.6892 3.09113 3.6892 6.34158V7.59176H0.855469V11.759H3.6892V22.9272Z\" fill=\"white\"/>\\n<path d=\"M71.9485 23.3438C73.6154 23.3438 75.0323 21.9269 75.0323 20.26C75.0323 18.5931 73.6154 17.1763 71.9485 17.1763C70.2816 17.1763 68.8647 18.5931 68.8647 20.26C68.8647 21.9269 70.2816 23.3438 71.9485 23.3438Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12nfswq\",\"data-framer-name\":\"Elementor\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:145,svg:'<svg width=\"145\" height=\"24\" viewBox=\"0 0 145 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M91.1013 10.9986C91.1013 10.9986 89.868 11.2947 88.8247 11.5446L87.2387 11.9079C87.2344 11.9079 87.2281 11.9079 87.2241 11.9079C87.2241 11.4774 87.2552 11.0238 87.3578 10.6058C87.4892 10.0703 87.777 9.44448 88.278 9.16937C88.8225 8.87114 89.486 8.83544 90.062 9.06647C90.6589 9.30376 90.9321 9.8834 91.0493 10.4841C91.0826 10.6521 91.1035 10.8201 91.12 10.9902L91.1013 10.9986ZM95.2374 11.9079C95.2374 7.7434 92.6308 5.9541 89.3004 5.9541C85.536 5.9541 83.1777 8.57713 83.1777 11.9289C83.1777 15.5726 85.1852 17.9457 89.5069 17.9457C91.8443 17.9457 93.1673 17.5299 94.7404 16.7382L94.1417 14.0101C92.9417 14.5519 91.8252 14.8838 90.3356 14.8838C88.7013 14.8838 87.7708 14.2601 87.4182 13.0945H95.133C95.1956 12.7816 95.2374 12.4266 95.2374 11.9079Z\" fill=\"white\"/>\\n<path d=\"M56.4792 10.9986C56.4792 10.9986 55.2459 11.2947 54.2026 11.5446L52.6167 11.9079C52.6127 11.9079 52.6064 11.9079 52.602 11.9079C52.602 11.4774 52.6335 11.0238 52.7357 10.6058C52.8671 10.0703 53.155 9.44448 53.6559 9.16937C54.2004 8.87114 54.8643 8.83544 55.44 9.06647C56.0369 9.30376 56.3104 9.8834 56.4272 10.4841C56.4605 10.6521 56.4814 10.8201 56.4983 10.9902L56.4792 10.9986ZM60.6153 11.9079C60.6153 7.7434 58.0088 5.9541 54.6783 5.9541C50.9139 5.9541 48.5557 8.57713 48.5557 11.9289C48.5557 15.5726 50.5635 17.9457 54.8852 17.9457C57.2222 17.9457 58.5452 17.5299 60.1187 16.7382L59.5197 14.0101C58.32 14.5519 57.2035 14.8838 55.7135 14.8838C54.0796 14.8838 53.1487 14.2601 52.7961 13.0945H60.5109C60.5736 12.7816 60.6153 12.4266 60.6153 11.9079Z\" fill=\"white\"/>\\n<path d=\"M46.936 2.89453H43.1152V17.5281H46.936V2.89453Z\" fill=\"white\"/>\\n<path d=\"M96.042 6.3279H100.055L100.9 8.91526C101.428 7.63837 102.618 5.99609 104.727 5.99609C107.624 5.99609 109.195 7.47457 109.195 11.2842V17.5299H105.182C105.182 16.2279 105.184 14.9279 105.186 13.6258C105.186 13.0294 105.176 12.433 105.184 11.8365C105.19 11.2863 105.23 10.7172 104.938 10.2236C104.74 9.88972 104.416 9.64401 104.068 9.476C103.36 9.13578 102.592 9.14416 101.898 9.50958C101.726 9.59988 100.9 10.0493 100.9 10.2572V17.5299H96.8871V9.34996L96.042 6.3279Z\" fill=\"white\"/>\\n<path d=\"M112.229 9.26481H110.389V6.32883H112.229V4.49336L116.242 3.54199V6.32883H120.276V9.26481H116.242V12.5536C116.242 13.8451 116.862 14.4479 117.793 14.4479C118.744 14.4479 119.283 14.3219 120.088 14.0531L120.564 17.0919C119.468 17.5708 118.103 17.7997 116.716 17.7997C113.799 17.7997 112.227 16.4052 112.227 13.6982V9.26481H112.229Z\" fill=\"white\"/>\\n<path d=\"M127.784 14.6134C129.253 14.6134 130.121 13.5507 130.121 11.8454C130.121 10.1401 129.295 9.15938 127.846 9.15938C126.377 9.15938 125.53 10.138 125.53 11.9063C125.53 13.5738 126.356 14.6134 127.784 14.6134ZM127.826 5.8916C131.59 5.8916 134.34 8.26471 134.34 11.9483C134.34 15.6529 131.59 17.8811 127.784 17.8811C123.999 17.8811 121.309 15.592 121.309 11.9483C121.309 8.26471 123.978 5.8916 127.826 5.8916Z\" fill=\"white\"/>\\n<path d=\"M79.5824 6.29363C78.8728 5.99962 78.0693 5.89042 77.3014 6.0017C76.9111 6.05842 76.5295 6.17183 76.1747 6.34823C75.2021 6.83126 74.4448 7.93381 74.0376 8.91666C73.7707 7.7847 72.9922 6.76824 71.8548 6.29571C71.1455 6.0017 70.3421 5.89251 69.5742 6.00383C69.1838 6.06051 68.8019 6.17392 68.4474 6.35035C67.477 6.83126 66.7216 7.9296 66.3126 8.91036V8.83895L65.4945 6.33142H61.4814L62.3266 9.35348V17.5313H66.3126V10.2208C66.3272 10.1662 66.5044 10.0654 66.5359 10.0423C67.0032 9.70843 67.5521 9.36399 68.1362 9.32199C68.733 9.2779 69.3215 9.58242 69.6763 10.0591C69.7141 10.1116 69.7496 10.1641 69.7829 10.2187C70.0751 10.7123 70.0352 11.2814 70.029 11.8316C70.0228 12.4281 70.0312 13.0245 70.0312 13.6209C70.029 14.923 70.0268 16.223 70.0268 17.5251H74.0398V11.2814C74.0398 11.2499 74.0398 11.2184 74.0398 11.189V10.225C74.0482 10.1725 74.2317 10.0675 74.265 10.0444C74.7326 9.71051 75.2816 9.36608 75.8656 9.32408C76.4625 9.27999 77.051 9.58451 77.4058 10.0612C77.4435 10.1137 77.4787 10.1662 77.5124 10.2208C77.8042 10.7144 77.7647 11.2835 77.7584 11.8337C77.7522 12.4301 77.7606 13.0266 77.7606 13.623C77.7585 14.9251 77.7563 16.2251 77.7563 17.5271H81.7693V11.2814C81.7693 9.45008 81.5086 7.09166 79.5824 6.29363Z\" fill=\"white\"/>\\n<path d=\"M143.832 5.99609C141.722 5.99609 140.535 7.64049 140.005 8.91526L139.16 6.3279H135.146L135.992 9.34996V17.5278H140.005V9.9716C140.576 9.87083 143.679 10.4463 144.268 10.6626V6.01078C144.126 6.00239 143.982 5.99609 143.832 5.99609Z\" fill=\"white\"/>\\n<path d=\"M37.3599 10.9986C37.3599 10.9986 36.1267 11.2947 35.0833 11.5446L33.4974 11.9079C33.4932 11.9079 33.487 11.9079 33.4828 11.9079C33.4828 11.4774 33.5141 11.0238 33.6163 10.6058C33.7478 10.0703 34.0358 9.44448 34.5366 9.16937C35.0812 8.87114 35.7448 8.83544 36.3208 9.06647C36.9176 9.30376 37.191 9.8834 37.3078 10.4841C37.3412 10.6521 37.3621 10.8201 37.3789 10.9902L37.3599 10.9986ZM41.496 11.9079C41.496 7.7434 38.8895 5.9541 35.5591 5.9541C31.7945 5.9541 29.4365 8.57713 29.4365 11.9289C29.4365 15.5726 31.444 17.9457 35.7657 17.9457C38.1029 17.9457 39.4259 17.5299 40.9994 16.7382L40.4003 14.0101C39.2007 14.5519 38.0842 14.8838 36.5942 14.8838C34.9602 14.8838 34.0295 14.2601 33.6768 13.0945H41.3916C41.4542 12.7816 41.496 12.4266 41.496 11.9079Z\" fill=\"white\"/>\\n<path d=\"M12.1853 0.556641C5.85403 0.556641 0.722656 5.72083 0.722656 12.0926C0.722656 18.4622 5.85403 23.6285 12.1853 23.6285C18.5166 23.6285 23.648 18.4643 23.648 12.0926C23.6459 5.72083 18.5145 0.556641 12.1853 0.556641ZM9.32017 16.8977H7.41076V7.2854H9.32017V16.8977ZM16.9599 16.8977H11.2296V14.976H16.9599V16.8977ZM16.9599 13.0523H11.2296V11.1307H16.9599V13.0523ZM16.9599 9.207H11.2296V7.2854H16.9599V9.207Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lhhtbh\",\"data-framer-name\":\"VShred\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:112,svg:'<svg width=\"112\" height=\"27\" viewBox=\"0 0 112 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.996\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.957031 0C3.76257 0 6.56811 0 9.37364 0C9.97391 1.59607 10.5746 3.19272 11.1756 4.78994C10.5903 4.80894 10.0048 4.82035 9.41926 4.82416C10.5657 7.36422 11.7214 9.89983 12.8863 12.431C14.0389 9.8939 15.1946 7.35829 16.3533 4.82416C15.7677 4.82035 15.1822 4.80894 14.597 4.78994C15.1827 3.19282 15.7681 1.59617 16.3533 0C19.174 0 21.9948 0 24.8155 0C20.8391 8.72835 16.8627 17.4567 12.8863 26.185C12.8787 26.185 12.8711 26.185 12.8635 26.185C8.91 17.4717 4.94119 8.75852 0.957031 0.0456185C0.957031 0.0304123 0.957031 0.0152062 0.957031 0Z\" fill=\"white\"/>\\n<path opacity=\"0.996\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M43.7016 0C45.8076 0 47.9138 0 50.0198 0C48.8631 2.56447 47.6998 5.1267 46.53 7.68672C47.6779 7.71712 48.8262 7.71712 49.9742 7.68672C51.1516 5.12661 52.3224 2.56435 53.4868 0C55.5928 0 57.699 0 59.8049 0C56.7159 6.73671 53.6366 13.473 50.5672 20.209C48.4687 20.2166 46.3703 20.209 44.2718 20.1862C45.4335 17.6233 46.6043 15.0649 47.7845 12.5109C46.6157 12.4919 45.4488 12.4957 44.2832 12.5223C43.1184 15.0779 41.9512 17.6325 40.782 20.1862C38.6761 20.209 36.5701 20.2166 34.4639 20.209C37.5342 13.4691 40.6135 6.73276 43.7016 0Z\" fill=\"white\"/>\\n<path opacity=\"0.997\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M61.949 0C66.6249 0 71.3008 0 75.9767 0C77.1404 0.0767123 77.5624 0.677355 77.2426 1.80193C77.1464 2.09056 77.0323 2.37186 76.9005 2.64587C75.4938 5.71753 74.0874 8.78915 72.6808 11.8608C71.8544 13.3556 70.5885 14.0399 68.883 13.9136C69.1711 16.0133 69.4676 18.1118 69.7726 20.209C67.6285 20.2166 65.4845 20.209 63.3404 20.1862C63.0222 18.0965 62.7106 16.0056 62.4052 13.9136C62.2321 13.9065 62.061 13.9141 61.892 13.9364C60.9315 16.017 59.9774 18.1002 59.0294 20.1862C56.9159 20.2128 54.8022 20.2166 52.6885 20.1976C55.7787 13.4662 58.8654 6.73365 61.949 0ZM66.0547 4.81275C66.929 4.80894 67.8035 4.81275 68.6778 4.82416C68.8231 4.83734 68.9522 4.87536 69.0655 4.9382C69.1834 5.0447 69.2366 5.17777 69.2252 5.33736C69.2245 5.4544 69.2053 5.56844 69.1682 5.6795C68.774 6.55773 68.371 7.43207 67.9593 8.30257C67.6771 8.78968 67.2551 9.06718 66.6934 9.1351C65.8266 9.1541 64.9599 9.15032 64.0931 9.1237C64.7473 7.68537 65.4012 6.24839 66.0547 4.81275Z\" fill=\"white\"/>\\n<path opacity=\"0.996\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.8527 0.0453709C33.1028 0.0415693 37.353 0.0453709 41.6031 0.0567755C40.238 3.042 38.8694 6.02621 37.4974 9.0094C36.3766 8.18886 35.2589 7.36395 34.1445 6.5346C34.3997 5.96715 34.6581 5.40073 34.92 4.83531C33.6123 4.80869 32.3047 4.80491 30.9968 4.82391C30.9633 4.89211 30.9405 4.96434 30.9284 5.0406C30.9569 5.2136 31.0064 5.38089 31.0766 5.5424C32.2474 7.70168 33.4185 9.86094 34.5893 12.0202C35.073 12.9079 35.149 13.8279 34.8173 14.7801C34.2882 15.9827 33.7407 17.1764 33.1751 18.3612C32.5766 19.4305 31.6678 20.0502 30.4494 20.2201C26.1617 20.2579 21.8735 20.2655 17.585 20.243C18.9589 17.2556 20.3236 14.2638 21.6792 11.2675C22.7817 12.0962 23.8842 12.925 24.9866 13.7537C24.7487 14.3247 24.4941 14.8911 24.2225 15.453C25.5379 15.472 26.8533 15.4682 28.1685 15.4416C28.233 15.1826 28.1874 14.9431 28.0316 14.7231C28.0391 14.7155 28.0469 14.7079 28.0544 14.7003C26.8108 12.4336 25.5791 10.1602 24.3593 7.88035C24.3668 7.87275 24.3746 7.86513 24.3821 7.85754C24.0445 7.02391 24.0484 6.19137 24.3935 5.35993C24.8344 4.38672 25.2756 3.41354 25.7165 2.44034C25.9943 1.81964 26.3859 1.28362 26.8911 0.83229C27.4687 0.380005 28.1226 0.117699 28.8527 0.0453709Z\" fill=\"white\"/>\\n<path opacity=\"0.996\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M80.1508 0.0467964C85.0548 0.0391934 89.9588 0.0467964 94.8628 0.0696057C94.1434 1.64896 93.4213 3.22659 92.6959 4.80252C89.8829 4.80633 87.0696 4.81774 84.2565 4.83674C83.8186 5.80784 83.3774 6.77723 82.9336 7.74492C85.2676 7.75251 87.6019 7.76013 89.936 7.76773C89.2056 9.35746 88.4757 10.9465 87.7463 12.5349C85.4122 12.5425 83.0779 12.5501 80.7439 12.5577C80.3007 13.5181 79.8598 14.4799 79.4209 15.443C82.2265 15.462 85.032 15.4734 87.8375 15.4773C87.112 17.0682 86.3821 18.6573 85.6479 20.2444C80.7363 20.2558 75.8246 20.2596 70.9131 20.2558C73.9921 13.5197 77.0714 6.78337 80.1508 0.0467964Z\" fill=\"white\"/>\\n<path opacity=\"0.997\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M111.422 2.39574C111.422 2.64664 111.422 2.89754 111.422 3.14844C111.342 3.72144 111.186 4.27645 110.955 4.81352C109.287 8.45495 107.614 12.0968 105.937 15.7391C105.499 16.4733 104.955 17.1233 104.306 17.6893C102.943 18.8709 101.388 19.711 99.6415 20.2098C99.6321 20.1993 99.6207 20.1917 99.6072 20.187C99.503 20.2171 99.3967 20.2361 99.2879 20.244C95.4332 20.263 91.5784 20.2592 87.7236 20.2326C90.8084 13.5063 93.8951 6.78136 96.9842 0.0577914C100.885 0.0425852 104.785 0.0425852 108.685 0.0577914C109.459 0.129055 110.135 0.417972 110.715 0.924543C111.108 1.34049 111.344 1.83089 111.422 2.39574ZM102.048 4.79071C102.458 4.7869 102.869 4.79071 103.28 4.80211C103.672 4.87392 103.904 5.0982 103.975 5.47499C104.016 5.82855 103.97 6.17069 103.838 6.5014C102.759 8.9404 101.65 11.3658 100.508 13.7776C100.205 14.3244 99.7904 14.7692 99.2651 15.1119C98.9636 15.2961 98.6365 15.4025 98.2843 15.4312C97.6151 15.4502 96.9461 15.4464 96.2771 15.4198C97.8865 11.8893 99.5021 8.36143 101.124 4.83633C101.434 4.82132 101.742 4.80611 102.048 4.79071Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})],speed:30,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pc8fr4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ArxF3UMjk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"ArxF3UMjk\",layoutId:\"ArxF3UMjk\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p1b2rv\",\"data-framer-name\":\"ticker-2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1mzz1g2\",\"data-framer-name\":\"Allianz\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:122,svg:'<svg width=\"122\" height=\"32\" viewBox=\"0 0 122 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.06 16.8896H6.9166L9.12286 9.6906L11.06 16.8896ZM4.76878 24.8289L6.18101 20.098H11.7659L13.0884 24.8289H18.2626L13.1222 6.78156C12.8264 5.71585 12.1806 5.22221 11.06 5.22221H3.74203V6.92663H4.35664C5.12145 6.92663 5.53512 7.22548 5.53512 7.81138C5.53512 8.1943 5.44901 8.51622 5.14606 9.39585L0 24.8289H4.76878ZM24.2212 24.8289V6.72466C24.2212 5.78198 23.6681 5.22221 22.7546 5.22221H18.2293V6.92663H18.5241C19.2858 6.92663 19.6087 7.25059 19.6087 8.02207V24.8289H24.2212ZM32.0671 24.8289V6.72466C32.0671 5.78198 31.5063 5.22221 30.598 5.22221H26.0732V6.92663H26.3603C27.1282 6.92663 27.4516 7.25059 27.4516 8.02207V24.8289H32.0671ZM40.115 7.01172C40.115 5.6974 39.1426 4.90234 37.471 4.90234C35.8261 4.90234 34.8203 5.69688 34.8203 7.01172C34.8203 8.34091 35.8261 9.12981 37.471 9.12981C39.1421 9.12981 40.115 8.34091 40.115 7.01172ZM40.0289 24.8289V11.6308C40.0289 10.6902 39.4671 10.1345 38.5557 10.1345H34.0893V11.8061H34.3523C35.1171 11.8061 35.4401 12.1578 35.4401 12.9236V24.8294L40.0289 24.8289ZM50.1319 17.7703V20.626C49.364 21.4211 48.4285 21.8968 47.636 21.8968C46.8081 21.8968 46.5185 21.4908 46.5185 20.3897C46.5185 19.3009 46.7492 18.8073 47.574 18.4864C48.1886 18.2193 48.9847 17.9841 50.1319 17.7703ZM43.9242 14.3399C45.4554 13.6049 47.1321 13.1922 48.4526 13.1922C49.691 13.1922 50.1319 13.6331 50.1319 14.9187V15.2467C48.2516 15.5435 47.6642 15.6645 46.6031 15.8983C45.9926 16.0423 45.4246 16.2161 44.8679 16.4539C43.0128 17.1967 42.1368 18.6289 42.1368 20.8311C42.1368 23.6243 43.3404 24.9734 45.8373 24.9734C46.7487 24.9734 47.5735 24.7986 48.3101 24.508C48.9539 24.222 49.3368 23.9816 50.2795 23.2465V23.451C50.2795 24.3604 50.7475 24.8289 51.662 24.8289H55.8633V23.2465H55.6562C54.8648 23.2465 54.5716 22.8907 54.5716 21.9542V14.9535C54.5716 11.2228 53.2772 9.9223 49.5398 9.9223C48.3372 9.9223 47.1618 10.0761 46.0192 10.339C44.8674 10.601 44.2769 10.8368 42.9021 11.5155L43.9242 14.3399ZM62.5574 24.8289V14.8936C63.3248 14.0401 64.1158 13.6551 65.0272 13.6551C66.0006 13.6551 66.2328 14.0401 66.2328 15.5174V24.8289H70.8181V14.8367C70.8181 12.5115 70.6479 11.7769 69.9103 10.9885C69.2921 10.3068 68.3525 9.95869 67.1432 9.95869C65.3481 9.95869 64.0855 10.5154 62.3893 12.1029V11.517C62.3893 10.6015 61.9116 10.1345 60.973 10.1345H56.6184V11.8061H56.8824C57.6472 11.8061 57.9737 12.1578 57.9737 12.9236V24.8294L62.5574 24.8289ZM84.4237 21.743H78.0151L84.131 13.165V10.132H74.5509C73.4621 10.132 72.9634 10.6307 72.9634 11.7205V14.3912H74.6667V14.1293C74.6667 13.4547 75.0189 13.1307 75.7499 13.1307H79.047L72.8721 21.803V24.8279H84.4237V21.743Z\" fill=\"white\"/>\\n<path d=\"M110.408 24.4562H114.727V11.518C114.727 10.2206 114.227 9.75156 112.961 9.75156H110.408V24.4562ZM108.491 24.4562V7.84466C108.491 6.52111 108.021 6.07617 106.734 6.07617H102.846V7.93078H103.079C103.967 7.93078 104.139 8.1307 104.139 9.19948V24.4567H108.491V24.4562ZM102.231 24.4562V9.75207H99.6734C98.4088 9.75207 97.9121 10.2211 97.9121 11.5185V24.4567H102.231V24.4562Z\" fill=\"white\"/>\\n<path d=\"M118.811 16.0112C118.811 23.3307 113.549 28.6526 106.318 28.6526C99.087 28.6526 93.823 23.3307 93.823 16.0112C93.823 8.68914 99.087 3.36674 106.318 3.36674C113.55 3.36726 118.811 8.72297 118.811 16.0112ZM121.368 16.0112C121.368 7.40352 114.93 0.958008 106.318 0.958008C97.7024 0.958008 91.2656 7.40352 91.2656 16.0112C91.2656 24.6291 97.7029 31.0593 106.318 31.0593C114.93 31.0593 121.368 24.6291 121.368 16.0112Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y6migi\",\"data-framer-name\":\"Amazon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:95,svg:'<svg width=\"95\" height=\"30\" viewBox=\"0 0 95 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M59.0812 23.0219C53.6023 27.0604 45.6608 29.215 38.8234 29.215C29.2362 29.215 20.6053 25.6691 14.0756 19.7715C13.5626 19.3077 14.0223 18.6757 14.6379 19.0368C21.6846 23.1368 30.3977 25.6034 39.398 25.6034C45.4679 25.6034 52.1453 24.3476 58.285 21.7414C59.2126 21.3475 59.9882 22.3489 59.0812 23.0219Z\" fill=\"white\"/>\\n<path d=\"M61.3592 20.4164C60.6615 19.5217 56.7298 19.9937 54.965 20.203C54.4274 20.2687 54.3453 19.8008 54.8296 19.4643C57.961 17.2604 63.0994 17.8965 63.6986 18.6352C64.2978 19.3781 63.5426 24.5287 60.6 26.9871C60.1485 27.3647 59.7176 27.1636 59.9187 26.6629C60.5794 25.013 62.061 21.3152 61.3592 20.4164Z\" fill=\"white\"/>\\n<path d=\"M55.0878 3.90503V1.76269C55.0878 1.43846 55.3341 1.22095 55.6296 1.22095H65.2209C65.5287 1.22095 65.7749 1.44257 65.7749 1.76269V3.59722C65.7708 3.90503 65.5123 4.30723 65.0526 4.94337L60.0825 12.0394C61.9294 11.9942 63.8788 12.2692 65.5533 13.2131C65.9309 13.4266 66.0335 13.7385 66.0622 14.0463V16.3323C66.0622 16.6442 65.7175 17.0094 65.3563 16.8206C62.4055 15.2734 58.486 15.1051 55.2233 16.8371C54.8908 17.0176 54.542 16.6565 54.542 16.3446V14.1735C54.542 13.8247 54.5461 13.2296 54.8949 12.7001L60.653 4.44267H55.6419C55.3341 4.44267 55.0878 4.22515 55.0878 3.90503Z\" fill=\"white\"/>\\n<path d=\"M20.1004 17.2727H17.1824C16.9033 17.2521 16.6817 17.0428 16.6611 16.7761V1.80019C16.6611 1.50059 16.9115 1.26255 17.2234 1.26255H19.9444C20.2276 1.27485 20.4533 1.49238 20.4738 1.76325V3.72091H20.5272C21.2372 1.82892 22.571 0.946533 24.3686 0.946533C26.195 0.946533 27.3359 1.82892 28.1567 3.72091C28.8626 1.82892 30.4673 0.946533 32.187 0.946533C33.41 0.946533 34.7479 1.45134 35.5646 2.58407C36.4881 3.84403 36.2993 5.67446 36.2993 7.27917L36.2952 16.7309C36.2952 17.0305 36.0448 17.2727 35.7329 17.2727H32.819C32.5276 17.2521 32.2937 17.0182 32.2937 16.7309V8.79358C32.2937 8.16155 32.3511 6.58557 32.2116 5.98637C31.9941 4.98087 31.3415 4.69768 30.4961 4.69768C29.7902 4.69768 29.0514 5.16966 28.7518 5.92481C28.4522 6.67997 28.481 7.94403 28.481 8.79358V16.7309C28.481 17.0305 28.2306 17.2727 27.9187 17.2727H25.0048C24.7093 17.2521 24.4795 17.0182 24.4795 16.7309L24.4753 8.79358C24.4753 7.12321 24.7503 4.66485 22.6777 4.66485C20.5805 4.66485 20.6626 7.06165 20.6626 8.79358V16.7309C20.6626 17.0305 20.4123 17.2727 20.1004 17.2727Z\" fill=\"white\"/>\\n<path d=\"M74.0324 0.946533C78.3622 0.946533 80.7057 4.66485 80.7057 9.39278C80.7057 13.9606 78.116 17.5846 74.0324 17.5846C69.7805 17.5846 67.4658 13.8663 67.4658 9.23272C67.4658 4.57046 69.8093 0.946533 74.0324 0.946533ZM74.057 4.00409C71.9065 4.00409 71.771 6.93442 71.771 8.76075C71.771 10.5912 71.7423 14.4983 74.0324 14.4983C76.2938 14.4983 76.4005 11.3463 76.4005 9.42561C76.4005 8.16155 76.3471 6.65124 75.9654 5.45284C75.6371 4.4104 74.9845 4.00409 74.057 4.00409Z\" fill=\"white\"/>\\n<path d=\"M86.3209 17.2727H83.4152C83.1238 17.2521 82.8898 17.0182 82.8898 16.7309L82.8857 1.75094C82.9104 1.47596 83.1525 1.26255 83.448 1.26255H86.1526C86.4071 1.27485 86.6164 1.44723 86.6738 1.68117V3.97126H86.7272C87.5439 1.92331 88.6889 0.946533 90.7041 0.946533C92.0133 0.946533 93.2896 1.41851 94.1105 2.7113C94.8738 3.9097 94.8738 5.92481 94.8738 7.37356V16.8007C94.841 17.0633 94.5988 17.2727 94.3116 17.2727H91.3853C91.1186 17.2521 90.8969 17.0551 90.8682 16.8007V8.66635C90.8682 7.02882 91.057 4.63202 89.0419 4.63202C88.3319 4.63202 87.6793 5.1081 87.3551 5.83042C86.9447 6.74563 86.8913 7.65674 86.8913 8.66635V16.7309C86.8872 17.0305 86.6328 17.2727 86.3209 17.2727Z\" fill=\"white\"/>\\n<path d=\"M47.4418 10.1181V9.48604C45.3323 9.48604 43.1038 9.93749 43.1038 12.4246C43.1038 13.6845 43.7564 14.5382 44.8768 14.5382C45.6976 14.5382 46.4322 14.0334 46.896 13.2126C47.4706 12.203 47.4418 11.2549 47.4418 10.1181ZM50.3845 17.2305C50.1916 17.4029 49.9125 17.4152 49.695 17.3003C48.7264 16.4959 48.5541 16.1224 48.0205 15.3549C46.4199 16.9883 45.2872 17.4767 43.2105 17.4767C40.7563 17.4767 38.8438 15.9623 38.8438 12.9294C38.8438 10.5613 40.1283 8.9484 41.9547 8.16042C43.5388 7.46272 45.751 7.3396 47.4418 7.1467V6.76913C47.4418 6.07553 47.4952 5.25471 47.0889 4.65551C46.7318 4.11787 46.0506 3.89625 45.4514 3.89625C44.3391 3.89625 43.346 4.46672 43.1038 5.6487C43.0546 5.91137 42.8617 6.16993 42.599 6.18224L39.7672 5.87853C39.5291 5.82518 39.2665 5.63229 39.3321 5.26702C39.9847 1.83599 43.0833 0.801758 45.8577 0.801758C47.2777 0.801758 49.1327 1.17934 50.2532 2.25461C51.6732 3.58024 51.5377 5.3491 51.5377 7.27393V11.8213C51.5377 13.1879 52.1041 13.7871 52.6376 14.5259C52.8264 14.7885 52.8675 15.1046 52.6294 15.3016C52.0343 15.7982 50.9755 16.7216 50.3927 17.2387L50.3845 17.2305Z\" fill=\"white\"/>\\n<path d=\"M9.18794 10.1181V9.48604C7.07843 9.48604 4.8499 9.93749 4.8499 12.4246C4.8499 13.6845 5.50245 14.5382 6.62287 14.5382C7.44369 14.5382 8.17833 14.0334 8.64209 13.2126C9.21667 12.203 9.18794 11.2549 9.18794 10.1181ZM12.1306 17.2305C11.9377 17.4029 11.6586 17.4152 11.4411 17.3003C10.4725 16.4959 10.3002 16.1224 9.76662 15.3549C8.16602 16.9883 7.03329 17.4767 4.95661 17.4767C2.50235 17.4767 0.589844 15.9623 0.589844 12.9294C0.589844 10.5613 1.87443 8.9484 3.70075 8.16042C5.28494 7.46272 7.49705 7.3396 9.18794 7.1467V6.76913C9.18794 6.07553 9.24129 5.25471 8.83499 4.65551C8.47793 4.11787 7.79665 3.89625 7.19745 3.89625C6.08524 3.89625 5.09204 4.46672 4.8499 5.6487C4.80065 5.91137 4.60776 6.16993 4.3451 6.18224L1.51327 5.87853C1.27523 5.82518 1.01257 5.63229 1.07823 5.26702C1.73078 1.83599 4.82938 0.801758 7.60376 0.801758C9.02377 0.801758 10.8788 1.17934 11.9992 2.25461C13.4193 3.58024 13.2838 5.3491 13.2838 7.27393V11.8213C13.2838 13.1879 13.8502 13.7871 14.3837 14.5259C14.5725 14.7885 14.6136 15.1046 14.3755 15.3016C13.7804 15.7982 12.7216 16.7216 12.1388 17.2387L12.1306 17.2305Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yae4tn\",\"data-framer-name\":\"Johnson & Johnson\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:156,svg:'<svg width=\"156\" height=\"30\" viewBox=\"0 0 156 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M56.5047 11.1206C56.5047 10.8646 56.6788 10.7278 56.8975 10.7278C57.2675 10.7278 57.8261 11.1206 58.1411 11.9062C58.0282 11.9062 57.8582 11.9404 57.7442 11.9404C57.0705 11.9404 56.5047 11.6202 56.5047 11.1206ZM15.7473 11.1206C15.7473 10.8646 15.9141 10.7278 16.1421 10.7278C16.5028 10.7278 17.0386 11.1206 17.3495 11.9062C16.309 11.9062 15.7473 11.6813 15.7473 11.1206ZM23.6084 7.06106C23.6084 2.85847 24.4271 2.21279 24.681 2.21279C25.1329 2.21279 25.1868 2.49469 25.1868 4.10629C25.1868 5.76245 24.481 7.92956 23.6084 9.11935V7.06106ZM52.2244 11.2046C51.7393 11.8803 51.3465 12.84 51.3465 14.0764C51.3465 16.4446 52.6969 18.705 55.3211 18.705C57.8582 18.705 59.6356 16.7006 59.6356 13.9054C59.6356 13.0939 59.6045 12.982 59.5517 12.6452C60.1414 12.3882 60.6503 11.9954 61.0462 11.6813C61.383 11.4274 61.6349 11.2854 61.8359 11.2854C62.0888 11.2854 62.1997 11.4834 62.1997 11.8492V17.3794C62.1997 18.2801 62.4847 18.705 63.1863 18.705C63.833 18.705 64.288 18.2511 64.5399 17.7163C65.4726 15.771 66.8231 13.1779 67.4128 12.1933C67.5548 11.9674 67.6698 11.7943 67.7506 11.7943C67.8636 11.7943 67.9216 11.8803 67.9216 12.2451V16.6477C67.9216 17.8862 68.4875 18.705 69.7229 18.705C71.0225 18.705 71.6672 17.4603 72.8031 15.544C72.857 15.4289 72.8808 15.3471 72.8808 15.2652C72.8808 15.0113 72.6611 14.8672 72.4341 14.8672C72.1781 14.8672 72.0372 15.1232 71.1935 16.0508C71.0225 16.227 70.8567 16.4716 70.5437 16.4716C70.4318 16.4716 70.3458 16.3358 70.3458 16.1638V11.2284C70.3458 9.90287 69.753 9.36809 68.9922 9.36809C68.3735 9.36809 67.8636 9.622 67.3288 10.4117C66.3701 11.8244 65.3835 13.8277 64.8498 14.8372C64.7896 14.9553 64.7088 15.1232 64.6539 15.1232C64.5948 15.1232 64.5699 15.0361 64.5699 14.8372V11.2284C64.5699 10.1879 64.288 9.36809 63.1863 9.36809C62.0297 9.36809 61.439 10.1589 60.5933 10.7496C60.0574 11.1486 59.5797 11.4274 59.2149 11.5963C58.6479 10.1589 57.6064 9.43027 56.7327 9.45203C55.8559 9.48209 55.2361 10.021 55.2361 10.9237C55.2361 11.8492 55.803 12.4939 56.5606 12.7809C56.9814 12.9499 57.3773 12.982 57.9442 12.982C58.1142 12.982 58.2821 12.982 58.3909 12.9499C58.451 13.2307 58.4241 13.6308 58.4241 13.9396C58.4241 15.3232 57.6064 16.7006 56.086 16.7006C54.5034 16.7006 53.5768 15.1781 53.5768 13.4318C53.5768 12.1052 53.9696 11.0077 54.6132 10.249C54.8734 9.96506 55.0672 9.79302 55.0672 9.53288C55.0672 9.40126 54.8734 9.36809 54.7024 9.36809C53.6287 9.36809 52.4482 9.84898 51.6326 10.2698C50.5557 10.8346 49.2903 11.7684 48.2456 12.698C47.7388 11.5673 47.119 10.5807 46.8071 9.81685C46.6952 9.50697 46.6133 9.14734 46.3874 9.14734C46.1873 9.14734 46.1003 9.34425 45.9624 9.7329C45.4567 11.2284 42.7486 15.602 42.1568 16.1938C42.1008 16.2747 42.0189 16.3638 41.992 16.3638C41.9308 16.3638 41.8987 16.3358 41.8987 16.1638V11.2284C41.8987 9.90287 41.3639 9.36809 40.6364 9.36809C40.0135 9.36809 39.4798 9.62201 38.973 10.4117C38.0443 11.8244 36.9116 13.8826 36.3778 14.8952C36.2918 15.0693 36.2068 15.1232 36.1778 15.1232C36.1498 15.1232 36.127 15.0113 36.127 14.8372V11.2284C36.127 9.90287 35.5891 9.36809 34.8553 9.36809C34.2335 9.36809 33.6448 9.59921 33.1629 10.4117C31.9814 12.4161 30.0091 15.4891 29.6423 15.9928C29.5853 16.0798 29.5283 16.1368 29.4723 16.1638C29.4163 16.1638 29.3842 16.1088 29.3842 15.9689V11.2284C29.3842 9.90287 28.8494 9.36809 28.1208 9.36809C27.1041 9.36809 26.5434 10.3029 26.1734 10.8916C25.6635 11.7093 24.9899 12.811 24.4561 13.8277C24.0882 14.5076 23.7763 15.1232 23.6622 15.1232C23.6084 15.1232 23.6084 14.8672 23.6084 14.3894V10.6128C25.3816 8.63536 26.4823 6.21329 26.4823 3.56322C26.4823 2.03764 25.8086 1.19609 24.7681 1.19609C22.8186 1.19609 21.3283 4.24206 21.3283 7.8477V10.7797C20.4245 11.3445 19.5778 11.6202 18.5331 11.8244C17.9994 10.249 16.8697 9.43028 15.9711 9.45204C15.0995 9.4821 14.4767 10.021 14.4767 10.9237C14.4767 12.4161 15.9432 13.0359 17.2366 13.0359H17.6035C17.6584 13.3199 17.6584 13.6308 17.6584 13.9396C17.6584 15.3232 16.8417 16.7006 15.3234 16.7006C13.746 16.7006 12.8132 15.1781 12.8132 13.4318C12.8132 12.1052 13.204 11.0077 13.8527 10.249C14.1087 9.96506 14.3077 9.71114 14.3077 9.53288C14.3077 9.40126 14.1087 9.36809 13.9377 9.36809C12.8671 9.36809 10.5021 10.8118 7.68099 13.6308C7.43121 11.3746 7.14724 9.17324 7.14724 7.02997C7.14724 4.63485 7.62087 2.6004 7.73384 2.0138C7.79084 1.65003 7.82608 1.42098 7.82608 1.25516C7.82608 1.02819 7.70586 0.912109 7.40219 0.912109C5.1159 0.912109 0.0976562 4.5509 0.0976562 9.992C0.0976562 13.8505 1.51027 15.7129 3.95824 18.1091C2.47205 20.5063 1.28019 23.3522 1.28019 25.8904C1.28019 27.7196 1.70718 29.1053 3.05657 29.1053C5.87661 29.1053 7.98879 23.2444 7.98879 18.8998C7.98879 17.6043 7.93697 16.3057 7.82608 15.0113C8.86559 13.9054 10.473 12.4161 10.8648 12.2752C10.6969 12.868 10.5839 13.4898 10.5839 14.0764C10.5839 16.4446 11.9395 18.705 14.5585 18.705C17.0148 18.705 18.872 16.7006 18.872 13.9054C18.872 13.5448 18.843 13.2307 18.8181 12.8939C19.7156 12.725 20.5416 12.4939 21.3283 12.0223V17.6883C21.3283 18.4179 21.832 18.705 22.3118 18.705C22.9637 18.705 23.3016 18.2511 23.7762 17.2136C24.1753 16.3638 25.2427 14.4205 25.8905 13.2608C26.4014 12.356 26.6833 11.7684 26.9103 11.7684C26.9632 11.7684 27.0233 11.9062 27.0233 12.2451V17.0675C27.0233 18.3651 27.7 18.705 28.2856 18.705C28.8494 18.705 29.2184 18.3951 29.5853 17.8862C31.0528 15.7979 32.6053 13.3199 33.2209 12.2451C33.3349 12.0524 33.4749 11.9062 33.5889 11.9062C33.6987 11.9062 33.7557 11.9674 33.7557 12.3291V17.3794C33.7557 18.2801 34.0376 18.705 34.7455 18.705C35.3901 18.705 35.8119 18.2511 36.0638 17.7163C37.0007 15.771 38.3781 13.2038 38.973 12.1933C39.1108 11.9674 39.2528 11.7684 39.3367 11.7684C39.4538 11.7684 39.4797 11.9062 39.4797 12.2752V17.0675C39.4797 18.3651 40.1565 18.705 40.7524 18.705C41.5349 18.705 42.0479 18.1381 42.5547 17.4924C43.4792 16.2746 44.8338 14.1127 45.6525 12.725C45.9365 13.1779 46.2433 13.7147 46.5013 14.3055C45.8235 15.1232 45.1457 16.0508 45.1457 17.0364C45.1457 18.0811 45.8785 18.705 46.6402 18.705C47.9347 18.705 49.1172 17.4603 49.1172 15.744C49.1172 15.0693 48.9234 14.3625 48.6716 13.6878C49.8209 12.5571 51.2045 11.4575 52.2244 11.2046ZM5.78956 17.3504C6.01756 18.8428 6.21552 20.3125 6.21552 21.466C6.21552 24.1679 5.31592 27.3268 3.76443 27.3009C3.1654 27.3009 2.66171 26.7019 2.63683 25.6644C2.57983 22.2847 4.18625 19.4077 5.78956 17.3504ZM46.948 15.4289C47.1191 15.914 47.2051 16.3057 47.2051 16.7006C47.2051 17.1525 47.0351 17.6043 46.7231 17.6043C46.5014 17.6043 46.2754 17.3504 46.2754 16.9545C46.2754 16.5306 46.6402 15.8539 46.948 15.4289ZM6.8073 1.98375C6.8073 2.15579 6.41243 2.94241 5.90667 4.35399C5.37085 5.81738 4.85991 7.90158 4.85991 10.4117C4.85991 11.9062 5.2299 13.8826 5.54186 15.8829L4.63915 17.0996C3.1996 15.3471 2.29897 13.3769 2.29897 9.992C2.29897 5.20073 5.20192 1.877 6.6933 1.877C6.78243 1.877 6.8073 1.90187 6.8073 1.98375Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M139.183 11.1206C139.183 10.8646 139.347 10.7278 139.576 10.7278C139.939 10.7278 140.504 11.1206 140.813 11.9062C140.703 11.9062 140.534 11.9404 140.416 11.9404C139.745 11.9404 139.183 11.6202 139.183 11.1206ZM98.417 11.1206C98.417 10.8646 98.589 10.7278 98.8119 10.7278C99.1788 10.7278 99.7198 11.1206 100.023 11.9062C98.9808 11.9062 98.417 11.6813 98.417 11.1206ZM106.283 7.06106C106.283 2.85847 107.097 2.21279 107.354 2.21279C107.804 2.21279 107.861 2.49469 107.861 4.10629C107.861 5.76245 107.154 7.92956 106.283 9.11935V7.06106ZM88.4697 17.3504C88.6883 18.8428 88.8935 20.3125 88.8935 21.466C88.8935 24.1679 87.9929 27.3268 86.4383 27.3009C85.8476 27.3009 85.3397 26.7019 85.3117 25.6644C85.2537 22.2847 86.8632 19.4077 88.4697 17.3504ZM129.627 15.4289C129.798 15.914 129.879 16.3057 129.879 16.7006C129.879 17.1525 129.71 17.6043 129.4 17.6043C129.177 17.6043 128.945 17.3504 128.945 16.9545C128.945 16.5306 129.315 15.8539 129.627 15.4289ZM89.4791 1.98375C89.4791 2.15579 89.0884 2.94241 88.5774 4.35399C88.0458 5.81738 87.5348 7.90158 87.5348 10.4117C87.5348 11.9062 87.911 13.8826 88.2188 15.8829L87.3141 17.0996C85.8787 15.3471 84.9718 13.3769 84.9718 9.992C84.9718 5.20073 87.881 1.877 89.3724 1.877C89.4542 1.877 89.4791 1.90187 89.4791 1.98375ZM84.779 16.0798C85.2827 16.7566 85.9046 17.4043 86.6373 18.1091C85.1418 20.5063 83.9592 23.3522 83.9592 25.8904C83.9592 27.7196 84.3852 29.1053 85.7387 29.1053C88.5546 29.1053 90.6668 23.2444 90.6668 18.8998C90.6668 17.6043 90.6119 16.3057 90.4989 15.0113C91.5436 13.9054 93.1448 12.4161 93.5449 12.2752C93.3749 12.868 93.2578 13.4898 93.2578 14.0764C93.2578 16.4446 94.6124 18.705 97.2365 18.705C99.6866 18.705 101.547 16.7006 101.547 13.9054C101.547 13.5448 101.521 13.2307 101.49 12.8939C102.394 12.725 103.217 12.4939 104.001 12.0223V17.6883C104.001 18.4179 104.506 18.705 104.982 18.705C105.639 18.705 105.976 18.2511 106.453 17.2136C106.846 16.3638 107.92 14.4205 108.57 13.2608C109.075 12.356 109.357 11.7684 109.588 11.7684C109.641 11.7684 109.694 11.9062 109.694 12.2451V17.0675C109.694 18.3651 110.369 18.705 110.962 18.705C111.527 18.705 111.89 18.3951 112.264 17.8862C113.726 15.7979 115.278 13.3199 115.897 12.2451C116.01 12.0524 116.153 11.9062 116.262 11.9062C116.372 11.9062 116.434 11.9674 116.434 12.3291V17.3794C116.434 18.2801 116.713 18.705 117.416 18.705C118.065 18.705 118.488 18.2511 118.744 17.7163C119.675 15.771 121.055 13.2038 121.645 12.1933C121.789 11.9674 121.929 11.7684 122.017 11.7684C122.127 11.7684 122.158 11.9062 122.158 12.2752V17.0675C122.158 18.3651 122.828 18.705 123.419 18.705C124.214 18.705 124.722 18.1381 125.226 17.4924C126.155 16.2746 127.512 14.1127 128.329 12.725C128.607 13.1779 128.921 13.7147 129.177 14.3055C128.493 15.1232 127.824 16.0508 127.824 17.0364C127.824 18.0811 128.548 18.705 129.315 18.705C130.61 18.705 131.792 17.4603 131.792 15.744C131.792 15.0693 131.596 14.3625 131.342 13.6878C132.497 12.5571 133.879 11.4575 134.894 11.2046C134.415 11.8803 134.02 12.84 134.02 14.0764C134.02 16.4446 135.375 18.705 137.997 18.705C140.534 18.705 142.305 16.7006 142.305 13.9054C142.305 13.0939 142.279 12.982 142.227 12.6452C142.812 12.3882 143.323 11.9954 143.722 11.6813C144.053 11.4274 144.312 11.2854 144.506 11.2854C144.761 11.2854 144.88 11.4834 144.88 11.8492V17.3794C144.88 18.2801 145.158 18.705 145.862 18.705C146.508 18.705 146.962 18.2511 147.217 17.7163C148.141 15.771 149.497 13.1779 150.087 12.1933C150.228 11.9674 150.343 11.7943 150.428 11.7943C150.543 11.7943 150.598 11.8803 150.598 12.2451V16.6477C150.598 17.8862 151.156 18.705 152.4 18.705C153.701 18.705 154.347 17.4603 155.477 15.544C155.53 15.4289 155.557 15.3471 155.557 15.2652C155.557 15.0113 155.331 14.8672 155.107 14.8672C154.855 14.8672 154.711 15.1232 153.867 16.0508C153.701 16.227 153.529 16.4716 153.22 16.4716C153.104 16.4716 153.024 16.3358 153.024 16.1638V11.2284C153.024 9.90287 152.425 9.36809 151.664 9.36809C151.047 9.36809 150.543 9.622 150.005 10.4117C149.044 11.8244 148.061 13.8277 147.529 14.8372C147.468 14.9553 147.386 15.1232 147.326 15.1232C147.266 15.1232 147.244 15.0361 147.244 14.8372V11.2284C147.244 10.1879 146.962 9.36809 145.862 9.36809C144.704 9.36809 144.115 10.1589 143.27 10.7496C142.729 11.1486 142.254 11.4274 141.884 11.5963C141.325 10.1589 140.278 9.43027 139.409 9.45203C138.53 9.48209 137.915 10.021 137.915 10.9237C137.915 11.8492 138.479 12.4939 139.233 12.7809C139.657 12.9499 140.052 12.982 140.623 12.982C140.788 12.982 140.952 12.982 141.072 12.9499C141.127 13.2307 141.098 13.6308 141.098 13.9396C141.098 15.3232 140.278 16.7006 138.755 16.7006C137.177 16.7006 136.251 15.1781 136.251 13.4318C136.251 12.1052 136.643 11.0077 137.288 10.249C137.545 9.96506 137.744 9.79302 137.744 9.53288C137.744 9.40126 137.545 9.36809 137.376 9.36809C136.31 9.36809 135.122 9.84898 134.304 10.2698C133.232 10.8346 131.963 11.7684 130.924 12.698C130.415 11.5673 129.798 10.5807 129.484 9.81685C129.368 9.50696 129.291 9.14733 129.057 9.14733C128.862 9.14733 128.776 9.34425 128.637 9.7329C128.128 11.2284 125.425 15.602 124.833 16.1938C124.776 16.2746 124.692 16.3638 124.662 16.3638C124.609 16.3638 124.578 16.3358 124.578 16.1638V11.2284C124.578 9.90287 124.046 9.36809 123.306 9.36809C122.685 9.36809 122.158 9.622 121.645 10.4117C120.713 11.8244 119.589 13.8826 119.053 14.8952C118.97 15.0693 118.887 15.1232 118.86 15.1232C118.828 15.1232 118.799 15.0113 118.799 14.8372V11.2284C118.799 9.90287 118.267 9.36809 117.533 9.36809C116.912 9.36809 116.316 9.5992 115.841 10.4117C114.653 12.4161 112.683 15.4891 112.314 15.9927C112.264 16.0798 112.204 16.1368 112.144 16.1638C112.094 16.1638 112.061 16.1088 112.061 15.9689V11.2284C112.061 9.90287 111.527 9.36809 110.792 9.36809C109.774 9.36809 109.214 10.3029 108.845 10.8916C108.338 11.7093 107.666 12.811 107.128 13.8277C106.764 14.5076 106.453 15.1232 106.34 15.1232C106.283 15.1232 106.283 14.8672 106.283 14.3894V10.6128C108.062 8.63535 109.157 6.21329 109.157 3.56322C109.157 2.03764 108.482 1.19608 107.436 1.19608C105.494 1.19608 104.001 4.24206 104.001 7.84769V10.7797C103.096 11.3445 102.251 11.6202 101.206 11.8243C100.674 10.249 99.5456 9.43027 98.6492 9.45203C97.7693 9.48209 97.1516 10.021 97.1516 10.9237C97.1516 12.4161 98.6129 13.0359 99.9125 13.0359H100.281C100.333 13.3199 100.333 13.6308 100.333 13.9396C100.333 15.3232 99.5187 16.7006 97.9952 16.7006C96.4157 16.7006 95.4902 15.1781 95.4902 13.4318C95.4902 12.1052 95.884 11.0077 96.5276 10.249C96.7805 9.96505 96.9795 9.71113 96.9795 9.53287C96.9795 9.40125 96.7805 9.36809 96.6137 9.36809C95.541 9.36809 93.1749 10.8118 90.3528 13.6308C90.1051 11.3746 89.8201 9.17324 89.8201 7.02997C89.8201 4.63485 90.2989 2.6004 90.4118 2.0138C90.4678 1.65003 90.4989 1.42098 90.4989 1.25516C90.4989 1.02819 90.3839 0.912109 90.0792 0.912109C87.795 0.912109 82.7767 4.5509 82.7767 9.992C82.7767 12.2161 83.2555 13.7987 84.1012 15.1781C83.7862 15.1232 83.5385 15.1232 83.3073 15.1232C82.4088 15.1232 81.56 15.3471 81.0335 15.4621V14.8952C81.0335 13.6878 80.7474 12.0223 80.2386 11.4575C80.1785 11.3994 80.0945 11.3746 80.0157 11.3746C79.7836 11.3746 79.5058 11.4834 79.197 11.6544C78.855 11.8243 78.5171 11.9954 78.5171 12.1052C78.5171 12.1591 78.5171 12.2161 78.6021 12.356C78.8011 12.6452 79.3379 13.2038 79.5317 14.5325C78.571 13.5728 77.4766 13.1468 76.0443 13.1468C74.3498 13.1468 73.8398 13.9054 73.8398 14.6713C73.8398 16.1368 75.7852 16.8695 78.2414 16.8695C78.6912 16.8695 79.197 16.7845 79.7017 16.6695C79.7017 17.1214 79.7587 17.5214 79.7587 17.8572C79.7587 18.3371 79.8406 18.705 80.1546 18.705C80.6324 18.705 80.9164 17.7422 80.9703 16.3638C81.844 16.1368 82.7477 15.942 83.5115 15.942C83.8763 15.942 84.3323 15.9927 84.779 16.0798ZM79.226 15.7979C78.7513 15.8539 78.4622 15.8539 77.9595 15.8539C76.8568 15.8539 76.0443 15.4289 76.0443 14.8144C76.0443 14.4205 76.2391 14.1915 76.8029 14.1915C77.7067 14.1915 78.4352 14.8144 79.226 15.7979Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qjb7eo\",\"data-framer-name\":\"True Classic\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:108,svg:'<svg width=\"108\" height=\"24\" viewBox=\"0 0 108 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M103.174 23.5371C103.076 23.4839 102.966 23.4972 102.861 23.4831C101.987 23.3665 101.173 23.0942 100.465 22.5543C99.6458 21.9291 99.1646 21.1021 99.0089 20.0841C98.9744 19.8564 98.958 19.6287 98.958 19.3986C98.958 14.4738 98.958 9.54814 98.958 4.62328C98.958 3.88385 99.1153 3.18511 99.4948 2.54583C99.9447 1.7884 100.6 1.26884 101.402 0.924557C101.938 0.694512 102.499 0.571664 103.078 0.512979C103.091 0.511414 103.105 0.508284 103.118 0.506719C103.23 0.523151 103.338 0.473856 103.449 0.482463H103.945C104.039 0.476986 104.128 0.522369 104.222 0.505154C104.559 0.547408 104.894 0.599833 105.218 0.704684C106.272 1.04349 107.028 1.70624 107.431 2.74771C107.608 3.20545 107.693 3.68198 107.697 4.17258C107.696 4.22266 107.693 4.27274 107.693 4.3236C107.693 5.87602 107.693 7.42843 107.693 8.98085C107.693 9.03093 107.695 9.08179 107.696 9.13187C107.675 9.15847 107.646 9.14986 107.62 9.15065C106.614 9.1616 105.61 9.17256 104.604 9.18116C104.423 9.18273 104.445 9.20307 104.444 9.01919C104.444 7.63344 104.444 6.24691 104.444 4.86116C104.444 4.78291 104.444 4.70466 104.439 4.6272C104.423 4.39246 104.381 4.16319 104.276 3.94958C104.143 3.67806 103.933 3.50123 103.632 3.44019C103.514 3.41672 103.395 3.4175 103.276 3.42846C102.963 3.45584 102.718 3.59747 102.55 3.86507C102.483 3.97071 102.437 4.08495 102.402 4.20466C102.322 4.48166 102.317 4.76491 102.317 5.05051C102.317 9.69055 102.317 14.3306 102.317 18.9706C102.317 19.0669 102.317 19.1631 102.319 19.2594C102.326 19.4808 102.356 19.6983 102.431 19.9072C102.638 20.4894 103.102 20.6662 103.631 20.5778C103.991 20.5176 104.208 20.2766 104.329 19.944C104.412 19.7179 104.443 19.4816 104.443 19.2414C104.443 18.9706 104.443 18.6999 104.443 18.4292C104.443 17.1623 104.443 15.8955 104.443 14.6287C104.443 14.4894 104.426 14.4965 104.578 14.4973C104.839 14.498 105.101 14.4996 105.363 14.5019C106.138 14.5106 106.913 14.5207 107.69 14.5301C107.69 14.5896 107.692 14.6491 107.692 14.7093C107.692 16.3713 107.692 18.0332 107.692 19.6944C107.692 19.7445 107.695 19.7953 107.696 19.8454C107.695 20.1623 107.656 20.4753 107.581 20.7836C107.324 21.8423 106.726 22.6318 105.738 23.1122C105.259 23.3454 104.747 23.4573 104.22 23.5136C104.164 23.5113 104.106 23.5003 104.054 23.5355H103.172L103.174 23.5371Z\" fill=\"white\"/>\\n<path d=\"M0.779297 0.509766C1.1228 0.527762 1.4663 0.547324 1.81059 0.562973C2.53985 0.595055 3.26911 0.624788 3.99759 0.656087C5.20807 0.706948 6.41855 0.759373 7.62902 0.808668C8.22996 0.832925 8.83089 0.853269 9.43183 0.875178C9.44591 0.875178 9.45922 0.875178 9.4733 0.876743C9.57111 0.883785 9.57267 0.883785 9.57346 0.979247C9.57502 1.09427 9.57346 1.20851 9.57346 1.32353C9.57346 2.09896 9.57346 2.87517 9.57346 3.65059C9.57346 3.67328 9.57346 3.69676 9.57346 3.71945C9.57189 3.82039 9.57189 3.82274 9.46626 3.81961C8.88801 3.80474 8.30977 3.78752 7.73231 3.77188C7.44827 3.76405 7.16502 3.75701 6.8802 3.74997C6.85594 3.80865 6.8669 3.86421 6.8669 3.9182C6.8669 10.275 6.8669 16.6325 6.8669 22.9893C6.8669 23.1685 6.8669 23.1677 6.69476 23.1747C5.67677 23.2154 4.65877 23.2561 3.64078 23.2968C3.6267 23.2968 3.6134 23.2992 3.59931 23.2999C3.51168 23.3023 3.51089 23.3023 3.50855 23.2107C3.50776 23.174 3.50855 23.1372 3.50855 23.1004C3.50855 16.6795 3.50855 10.2578 3.50855 3.83682C3.50855 3.65059 3.50855 3.64825 3.32545 3.64199C2.49994 3.61382 1.67444 3.588 0.848154 3.56139C0.825462 3.56139 0.802771 3.5653 0.780079 3.56765V0.509766H0.779297Z\" fill=\"white\"/>\\n<path d=\"M103.449 0.481501C103.337 0.472894 103.23 0.521407 103.118 0.505757C103.118 0.497933 103.118 0.490108 103.118 0.481501H103.449Z\" fill=\"white\"/>\\n<path d=\"M104.221 0.481907C104.222 0.489732 104.222 0.496774 104.221 0.504599C104.127 0.521813 104.037 0.47643 103.944 0.481907H104.22H104.221Z\" fill=\"white\"/>\\n<path d=\"M104.222 23.5152C104.222 23.5222 104.222 23.53 104.221 23.5371H104.056C104.107 23.5019 104.165 23.5128 104.222 23.5152Z\" fill=\"white\"/>\\n<path d=\"M17.9336 11.6817C18.22 11.8077 18.4782 11.954 18.7121 12.1426C19.2379 12.5667 19.5502 13.1167 19.6832 13.7748C19.7379 14.0455 19.7567 14.3202 19.7567 14.5956C19.7583 16.3992 19.7575 18.2036 19.7567 20.0072C19.7567 20.4986 19.7692 20.9892 19.8232 21.4774C19.8694 21.8921 19.939 22.3029 20.1002 22.7035C19.9758 22.7294 19.8577 22.7262 19.7419 22.7294C18.907 22.7536 18.0721 22.7755 17.2364 22.7982C17.1034 22.8021 16.9704 22.8068 16.8373 22.817C16.7653 22.8225 16.7309 22.7928 16.7074 22.7278C16.6167 22.4821 16.5549 22.2286 16.5134 21.9704C16.4148 21.3663 16.396 20.756 16.396 20.1457C16.396 18.3006 16.396 16.4555 16.396 14.6097C16.396 14.3937 16.378 14.1793 16.3233 13.9689C16.1941 13.4673 15.8569 13.1692 15.342 13.0964C15.1269 13.0659 14.9117 13.0706 14.6965 13.0698C14.5494 13.0698 14.4023 13.0706 14.256 13.0721C14.1409 13.0729 14.1409 13.0729 14.1402 13.1942C14.1402 13.2216 14.1402 13.249 14.1402 13.2772C14.1402 16.4258 14.1402 19.5745 14.1402 22.7239C14.1402 22.9 14.1402 22.8984 13.9672 22.9046C12.9719 22.9399 11.9766 22.9758 10.9813 23.0103C10.781 23.0173 10.781 23.0158 10.781 22.8107C10.781 15.5768 10.781 8.34291 10.781 1.10821C10.781 0.904765 10.7419 0.924327 10.961 0.932151C11.6676 0.95719 12.3734 0.983794 13.0799 1.00883C13.9469 1.03857 14.8139 1.06439 15.6808 1.09725C16.3123 1.12151 16.9312 1.2154 17.5243 1.44623C18.2763 1.73888 18.8788 2.20914 19.2786 2.9204C19.5157 3.34215 19.6487 3.79677 19.7113 4.27407C19.7497 4.56593 19.7575 4.85936 19.7575 5.15279C19.7575 6.43838 19.7575 7.72319 19.7575 9.00879C19.7575 9.42506 19.7027 9.83195 19.54 10.2193C19.2583 10.8906 18.7646 11.3429 18.0948 11.6121C18.0439 11.6324 17.9891 11.6426 17.9344 11.6833L17.9336 11.6817ZM14.1409 7.08235C14.1409 8.10582 14.1409 9.12851 14.1409 10.152C14.1409 10.1841 14.1441 10.2161 14.1409 10.2482C14.1347 10.3093 14.1613 10.3257 14.22 10.3257C14.3757 10.3241 14.5322 10.3304 14.6879 10.3296C14.9492 10.328 15.2114 10.346 15.4719 10.3194C15.8741 10.278 16.1519 10.0683 16.2943 9.68719C16.3725 9.47827 16.3952 9.25918 16.396 9.03852C16.3976 7.7631 16.3968 6.48768 16.396 5.21225C16.396 5.06045 16.3812 4.91022 16.3506 4.76155C16.2434 4.23417 15.9125 3.93761 15.378 3.89301C14.9938 3.86093 14.6073 3.88049 14.2223 3.85702C14.166 3.85389 14.1339 3.86797 14.1409 3.93135C14.1441 3.96343 14.1409 3.99551 14.1409 4.0276C14.1409 5.04637 14.1409 6.06514 14.1409 7.08313V7.08235Z\" fill=\"white\"/>\\n<path d=\"M72.4075 13.607C72.4075 16.5084 72.4075 19.409 72.4075 22.3104C72.4075 22.3331 72.4075 22.3566 72.4075 22.3793C72.4044 22.5146 72.4443 22.5318 72.2487 22.5272C71.7205 22.5154 71.1931 22.5146 70.665 22.5092C70.165 22.5037 69.6642 22.4959 69.1642 22.4896C69.0484 22.488 69.0476 22.488 69.0476 22.3667C69.0476 21.2509 69.0476 20.1359 69.0476 19.0201C69.0476 18.5522 69.0476 18.0835 69.0476 17.6156C69.0476 17.4943 69.0476 17.5021 68.9357 17.5021C68.2698 17.499 67.604 17.4943 66.9389 17.4904C66.9068 17.4904 66.8747 17.4904 66.8426 17.4912C66.8082 17.4912 66.7941 17.5115 66.7941 17.5436C66.7941 17.5804 66.7941 17.6172 66.7941 17.6539C66.7941 19.2009 66.7941 20.7478 66.7941 22.2948C66.7941 22.4888 66.8137 22.463 66.6251 22.4622C65.6055 22.4552 64.5868 22.4458 63.5672 22.4372C63.5445 22.4372 63.521 22.434 63.4983 22.4356C63.4522 22.4387 63.4311 22.4184 63.4334 22.3714C63.435 22.3394 63.4334 22.3073 63.4334 22.2752C63.4334 16.5968 63.4334 10.9185 63.4326 5.24008C63.4326 4.41771 63.6603 3.67515 64.1869 3.03587C64.6298 2.49832 65.1971 2.13603 65.8434 1.89034C66.3309 1.70489 66.8364 1.59926 67.3551 1.55231C67.8184 1.51006 68.2816 1.50771 68.744 1.55857C69.6352 1.65716 70.467 1.91851 71.1767 2.48893C71.8582 3.03744 72.2534 3.75026 72.3739 4.61646C72.4013 4.81286 72.4099 5.00926 72.4099 5.20644C72.4099 8.00689 72.4099 10.8066 72.4099 13.607H72.4075ZM69.0468 10.0961C69.0468 8.59531 69.0468 7.09453 69.0468 5.59454C69.0468 5.42944 69.0382 5.26512 69.0061 5.10159C68.8989 4.55621 68.55 4.24009 68.0046 4.21583C67.3974 4.18845 67.0015 4.51474 66.8551 5.03821C66.8066 5.21191 66.7933 5.38954 66.7933 5.5695C66.7933 8.64851 66.7933 11.7283 66.7933 14.8073C66.7933 14.8394 66.7933 14.8715 66.7933 14.9036C66.7933 14.9419 66.8082 14.9638 66.8497 14.963C66.8817 14.9623 66.9138 14.963 66.9459 14.963C67.5836 14.9646 68.2221 14.9654 68.8598 14.9669C69.0766 14.9669 69.046 14.992 69.046 14.7909C69.0468 13.226 69.046 11.661 69.046 10.0961H69.0468Z\" fill=\"white\"/>\\n<path d=\"M21.1783 10.4451C21.1783 7.44745 21.1783 4.44981 21.1783 1.45218C21.1783 1.25734 21.1478 1.26673 21.3606 1.27299C22.3011 1.29881 23.2424 1.32072 24.183 1.34498C24.2792 1.34733 24.3754 1.35515 24.4717 1.35593C24.5171 1.35593 24.5398 1.3708 24.5366 1.41931C24.5343 1.46078 24.5366 1.50226 24.5366 1.54294C24.5366 7.2401 24.5366 12.9365 24.5366 18.6336C24.5366 18.8824 24.5562 19.1281 24.6383 19.366C24.8199 19.8918 25.2534 20.1094 25.7573 20.0538C26.3183 19.9912 26.6704 19.636 26.7643 19.0679C26.7878 18.927 26.7948 18.7854 26.7948 18.643C26.7948 12.9599 26.7948 7.27687 26.7948 1.59302C26.7948 1.472 26.8556 1.41279 26.9771 1.4154C27.9959 1.43653 29.0147 1.45766 30.0335 1.47878C30.1138 1.48035 30.1545 1.52025 30.1555 1.5985C30.1555 1.6165 30.1555 1.63528 30.1555 1.65327C30.1555 7.43258 30.1555 13.2127 30.1555 18.992C30.1555 19.7017 29.9865 20.3637 29.5961 20.9607C29.2009 21.5655 28.6555 21.9951 28.0061 22.3003C27.4654 22.5538 26.895 22.6993 26.3034 22.7682C25.8418 22.8222 25.3786 22.8355 24.9153 22.7924C24.0022 22.7079 23.1509 22.4521 22.4255 21.866C21.7409 21.3136 21.3488 20.5921 21.2229 19.7236C21.19 19.5006 21.1783 19.2768 21.1783 19.0515C21.1783 16.1821 21.1783 13.3128 21.1783 10.4443V10.4451Z\" fill=\"white\"/>\\n<path d=\"M83.7428 17.0028C83.7428 16.2086 83.7428 15.4144 83.7428 14.6202C83.7428 14.5881 83.7444 14.556 83.7428 14.524C83.7412 14.4833 83.76 14.4668 83.7999 14.4676C83.8915 14.4692 83.9838 14.47 84.0753 14.47C85.0026 14.4731 85.9306 14.4762 86.8578 14.4794C86.8758 14.4794 86.8946 14.4817 86.9126 14.4794C86.9892 14.4676 87.0104 14.506 87.0033 14.5748C87.0002 14.6069 87.0033 14.639 87.0033 14.6711C87.0033 16.0576 87.0033 17.4441 87.0033 18.8299C87.0033 19.0419 87.0229 19.2516 87.0816 19.4559C87.2412 20.0106 87.6465 20.2329 88.188 20.1914C88.8007 20.1444 88.983 19.7282 89.0612 19.333C89.0847 19.2156 89.0964 19.0975 89.0964 18.977C89.0964 17.93 89.0957 16.8839 89.0941 15.8369C89.0941 15.6711 89.0722 15.5083 89.0432 15.3448C88.9892 15.0396 88.8578 14.7704 88.6645 14.531C88.5409 14.3769 88.4055 14.2329 88.2576 14.1014C87.2146 13.1742 86.1731 12.2446 85.1207 11.3284C84.706 10.9669 84.3422 10.5639 84.0996 10.0623C83.922 9.69457 83.8234 9.30647 83.7733 8.9035C83.7436 8.66171 83.7404 8.41836 83.7404 8.17502C83.7404 7.078 83.7404 5.98098 83.7404 4.88317C83.7404 4.20008 83.8954 3.55532 84.2467 2.96613C84.6747 2.24939 85.2991 1.76504 86.062 1.44814C86.6176 1.21731 87.1997 1.1015 87.7983 1.0569C88.2302 1.02482 88.6606 1.03265 89.0902 1.08898C89.7576 1.17584 90.3883 1.37146 90.9532 1.74782C91.7177 2.25721 92.177 2.9716 92.3679 3.86362C92.4313 4.16096 92.4564 4.46221 92.4564 4.7658C92.4564 6.17972 92.4564 7.59364 92.4564 9.00756C92.4564 9.01226 92.4564 9.01695 92.4564 9.02165C92.4564 9.1445 92.4697 9.14371 92.3398 9.1445C92.087 9.14684 91.8351 9.15232 91.5823 9.15388C90.8429 9.15858 90.1035 9.16249 89.3648 9.1664C89.3327 9.1664 89.3007 9.16406 89.2686 9.1664C89.2177 9.17032 89.1903 9.15388 89.195 9.09755C89.1982 9.06547 89.195 9.03338 89.195 9.0013C89.195 7.72979 89.195 6.45828 89.195 5.18677C89.195 4.97081 89.1778 4.75641 89.1191 4.54671C88.9869 4.07645 88.688 3.84171 88.2005 3.82997C88.091 3.82762 87.9814 3.83858 87.8727 3.86362C87.5745 3.93404 87.3664 4.11166 87.2412 4.38787C87.141 4.60853 87.1035 4.84327 87.1011 5.08427C87.0996 5.24467 87.1011 5.40586 87.1011 5.56627C87.1011 6.22745 87.1011 6.88864 87.1011 7.54904C87.1011 7.75561 87.116 7.96062 87.1536 8.16485C87.2083 8.46062 87.3335 8.72196 87.5221 8.95357C87.6528 9.11398 87.7952 9.26343 87.9501 9.40036C88.9924 10.3221 90.0338 11.2439 91.0745 12.1672C91.465 12.5138 91.8085 12.8988 92.0495 13.3683C92.2615 13.7814 92.3734 14.2227 92.4251 14.6828C92.454 14.9434 92.4556 15.2047 92.4556 15.4668C92.4556 16.7337 92.4548 18.0013 92.4556 19.2681C92.4556 19.8494 92.3546 20.4089 92.1019 20.9355C91.7224 21.725 91.1066 22.2626 90.3093 22.6037C89.8155 22.815 89.2975 22.9253 88.7631 22.9676C88.0479 23.0239 87.3414 22.9738 86.6473 22.7923C85.8914 22.5943 85.2177 22.2477 84.6778 21.6695C84.1974 21.1546 83.9157 20.5427 83.7968 19.8518C83.7522 19.5928 83.7373 19.333 83.7373 19.0709C83.7389 18.3823 83.7373 17.6937 83.7373 17.0052L83.7428 17.0028Z\" fill=\"white\"/>\\n<path d=\"M73.814 16.9493C73.814 16.1738 73.814 15.3976 73.814 14.6222C73.814 14.5948 73.814 14.5674 73.814 14.5393C73.8155 14.4258 73.8163 14.425 73.9267 14.4242C74.2295 14.4242 74.5331 14.4227 74.8359 14.4242C75.483 14.4266 76.1309 14.4305 76.778 14.4336C76.8515 14.4336 76.9251 14.4399 76.9978 14.4383C77.0542 14.4368 77.0847 14.4524 77.0784 14.515C77.0753 14.5471 77.0784 14.5792 77.0784 14.6112C77.0784 15.9657 77.0784 17.3194 77.0784 18.6738C77.0784 18.8906 77.0972 19.1042 77.1598 19.3131C77.2928 19.7536 77.5964 19.9915 78.055 20.0158C78.1653 20.022 78.2756 20.022 78.3844 20.0017C78.7138 19.9406 78.9391 19.7505 79.0604 19.4399C79.1379 19.2411 79.1731 19.0338 79.1731 18.8209C79.1747 17.889 79.1754 16.9571 79.1754 16.0252C79.1754 15.8374 79.1708 15.6496 79.1496 15.4618C79.1097 15.1112 78.9931 14.7943 78.7709 14.5181C78.6442 14.3601 78.5072 14.2122 78.3539 14.0792C77.3304 13.1926 76.3061 12.3061 75.2811 11.4211C75.0198 11.1958 74.7686 10.9618 74.5511 10.6926C74.1481 10.1926 73.9282 9.6191 73.8523 8.9853C73.8202 8.71613 73.8148 8.44539 73.814 8.17466C73.8132 7.15588 73.814 6.13633 73.814 5.11756C73.814 4.74432 73.8484 4.37578 73.9493 4.01506C74.2169 3.06201 74.8046 2.36561 75.6645 1.89222C76.1723 1.61288 76.7193 1.45013 77.2905 1.36327C77.8147 1.28346 78.3413 1.26312 78.8695 1.31006C79.7005 1.38362 80.4853 1.5988 81.17 2.09645C81.9055 2.63009 82.328 3.357 82.479 4.24823C82.5205 4.49315 82.5346 4.73962 82.5338 4.98845C82.5322 6.3476 82.5338 7.70596 82.5322 9.06511C82.5322 9.2263 82.5674 9.21925 82.3789 9.22082C81.4008 9.22864 80.4227 9.2349 79.4454 9.24116C79.4133 9.24116 79.3812 9.23882 79.3492 9.24116C79.2983 9.24507 79.2709 9.22864 79.2748 9.17309C79.2772 9.13631 79.2748 9.09954 79.2748 9.06276C79.2748 7.83741 79.2756 6.61129 79.274 5.38594C79.274 5.16998 79.2607 4.95558 79.2036 4.7451C79.0557 4.19581 78.6747 3.99706 78.1676 4.01819C78.0816 4.0221 77.9947 4.0354 77.9094 4.05809C77.6348 4.13165 77.4407 4.29831 77.3194 4.55418C77.2068 4.79205 77.1747 5.04713 77.1747 5.30457C77.1731 6.12146 77.1849 6.93836 77.177 7.75604C77.1708 8.44618 77.4634 8.98295 77.9751 9.42035C78.3554 9.74585 78.7334 10.0737 79.1113 10.4016C79.778 10.9782 80.4438 11.5565 81.1097 12.1332C81.4548 12.4321 81.7717 12.756 82.0142 13.1457C82.3014 13.6066 82.4469 14.1128 82.5049 14.6488C82.5307 14.8867 82.5322 15.1253 82.5322 15.364C82.5322 16.6261 82.5362 17.889 82.5307 19.1511C82.5268 19.9704 82.2952 20.7153 81.7686 21.3546C81.3304 21.8858 80.7662 22.2356 80.1215 22.461C79.6332 22.6315 79.1285 22.7184 78.6121 22.7419C77.9384 22.7724 77.2733 22.7231 76.6207 22.5455C76.0065 22.378 75.4423 22.1112 74.9626 21.6855C74.3195 21.1167 73.9634 20.3968 73.85 19.551C73.8202 19.3319 73.8132 19.112 73.8132 18.8921C73.8116 18.245 73.8132 17.5979 73.8132 16.95L73.814 16.9493Z\" fill=\"white\"/>\\n<path d=\"M44.8424 12.0318C44.8424 9.73209 44.84 7.43241 44.8432 5.13274C44.844 4.31663 45.0787 3.57798 45.6108 2.94731C46.045 2.43244 46.5959 2.08894 47.2227 1.85889C47.7039 1.68284 48.2015 1.58581 48.7117 1.54747C49.4355 1.4927 50.1514 1.53573 50.8549 1.72274C51.5693 1.9121 52.207 2.23839 52.7179 2.78534C53.1765 3.27594 53.4417 3.86045 53.5466 4.52085C53.5857 4.76576 53.5998 5.01302 53.599 5.26106C53.5974 6.61082 53.599 7.9598 53.5982 9.30956C53.5982 9.4817 53.6186 9.46057 53.4417 9.46057C52.4542 9.46057 51.4675 9.46057 50.4801 9.46057C50.3212 9.46057 50.3298 9.48013 50.3298 9.31503C50.3298 8.0623 50.3298 6.80879 50.3298 5.55606C50.3298 5.3307 50.315 5.1077 50.2414 4.89096C50.0904 4.4473 49.7594 4.20552 49.2892 4.19769C49.1835 4.19613 49.0787 4.20082 48.9746 4.22351C48.6968 4.28533 48.4934 4.44104 48.3643 4.69378C48.2555 4.90661 48.2195 5.13665 48.2047 5.37139C48.2007 5.42617 48.2015 5.48172 48.2015 5.53649C48.2015 9.86511 48.2015 14.1937 48.2015 18.5223C48.2015 18.7297 48.218 18.9347 48.2766 19.1342C48.4151 19.61 48.7266 19.8494 49.2226 19.8604C49.8001 19.8737 50.1898 19.5466 50.2954 18.9652C50.3236 18.8111 50.3298 18.6554 50.3298 18.4996C50.3298 17.1499 50.3298 15.8009 50.3298 14.4512C50.3298 14.2563 50.3103 14.2829 50.4981 14.2829C51.4808 14.2829 52.4636 14.2829 53.4464 14.2829C53.6201 14.2829 53.5982 14.2641 53.5982 14.4379C53.5982 15.93 53.6013 17.4214 53.5974 18.9136C53.5951 19.6655 53.4088 20.3658 52.9597 20.9809C52.5442 21.5505 51.9855 21.9316 51.333 22.1819C50.8103 22.3823 50.2665 22.484 49.7093 22.5161C49.1765 22.5474 48.6452 22.5301 48.1186 22.4355C47.3338 22.2946 46.6084 22.0168 45.995 21.4934C45.3807 20.9691 45.0145 20.304 44.8893 19.5067C44.8557 19.2931 44.8408 19.0787 44.8408 18.8627C44.8408 16.5857 44.8408 14.3095 44.8408 12.0325L44.8424 12.0318Z\" fill=\"white\"/>\\n<path d=\"M31.7434 11.9831C31.7434 8.55434 31.7434 5.12557 31.7434 1.69601C31.7434 1.51213 31.7434 1.51526 31.9242 1.51839C32.3185 1.52621 32.7137 1.52934 33.1088 1.5356C34.2426 1.5536 35.3764 1.56768 36.5094 1.59272C37.1338 1.60602 37.7583 1.60681 38.3819 1.61854C38.5329 1.62167 38.6847 1.62793 38.8357 1.63028C38.8819 1.63028 38.903 1.6475 38.8999 1.69523C38.8983 1.72261 38.8999 1.75 38.8999 1.77817C38.8999 2.59506 38.8999 3.41196 38.8999 4.22964C38.8999 4.24372 38.8999 4.25703 38.8999 4.27111C38.8975 4.37909 38.896 4.37909 38.7942 4.37831C38.2113 4.37205 37.6284 4.36735 37.0454 4.3611C36.4625 4.35484 35.8795 4.34623 35.2966 4.3384C35.2457 4.3384 35.1957 4.33997 35.1448 4.33684C35.0939 4.33371 35.0666 4.35014 35.0697 4.4057C35.072 4.43778 35.0697 4.46986 35.0697 4.50194C35.0697 6.35169 35.0697 8.20145 35.0697 10.0512C35.0697 10.0739 35.0728 10.0974 35.0697 10.1201C35.0587 10.1975 35.0971 10.2116 35.1652 10.2108C35.3443 10.2077 35.5235 10.2124 35.7019 10.2132C36.3952 10.2155 37.0885 10.2171 37.7817 10.2194C37.9468 10.2194 38.1119 10.2249 38.277 10.2241C38.3334 10.2241 38.3647 10.2398 38.3576 10.3016C38.3553 10.3243 38.3576 10.3478 38.3576 10.3705C38.3576 11.1873 38.3576 12.0042 38.3576 12.8219C38.3576 12.9706 38.3827 12.9729 38.2113 12.9722C37.982 12.9722 37.752 12.9722 37.5227 12.9722C36.7465 12.9737 35.9711 12.9761 35.1949 12.9784C35.0705 12.9784 35.0697 12.9792 35.0697 13.1075C35.0697 15.2374 35.0697 17.3673 35.0697 19.4972C35.0697 19.5112 35.0713 19.5246 35.0697 19.5386C35.0611 19.6091 35.0861 19.6333 35.1612 19.6317C35.4734 19.6255 35.7856 19.6271 36.0979 19.6239C36.9789 19.6153 37.8608 19.6067 38.7418 19.5973C38.7692 19.5973 38.7974 19.5989 38.8248 19.5973C38.8756 19.5934 38.9038 19.6114 38.8999 19.6662C38.8983 19.6936 38.8999 19.7209 38.8999 19.7491C38.8999 20.566 38.8999 21.3829 38.8999 22.2006C38.8999 22.2053 38.8999 22.21 38.8999 22.2147C38.9014 22.3696 38.8975 22.3485 38.7669 22.35C37.7246 22.3626 36.6831 22.3727 35.6409 22.3876C34.4977 22.404 33.3553 22.4236 32.2121 22.4424C32.0838 22.4447 31.9555 22.4471 31.8271 22.4557C31.7575 22.4604 31.7372 22.4306 31.7419 22.3673C31.745 22.3305 31.7419 22.2937 31.7419 22.2569C31.7419 18.8328 31.7419 15.408 31.7419 11.9839L31.7434 11.9831Z\" fill=\"white\"/>\\n<path d=\"M55.1497 12.0185C55.1497 8.60855 55.1497 5.19855 55.1497 1.78777C55.1497 1.60389 55.1231 1.61876 55.3179 1.61876C56.3093 1.61641 57.3015 1.61485 58.2928 1.61328C58.3202 1.61328 58.3476 1.61328 58.3758 1.61328C58.4446 1.61432 58.4796 1.6498 58.4806 1.7197C58.4806 1.75178 58.4806 1.78386 58.4806 1.81594C58.4806 7.7048 58.4806 13.5929 58.4806 19.4817C58.4806 19.6672 58.4806 19.6664 58.6598 19.6672C59.8672 19.6711 61.0745 19.6758 62.2819 19.6805C62.4031 19.6805 62.4047 19.6813 62.4047 19.7978C62.4047 20.6421 62.4047 21.4872 62.4047 22.3315C62.4047 22.4465 62.4031 22.4481 62.2803 22.4473C61.5323 22.4441 60.7834 22.4395 60.0354 22.4363C59.3836 22.4332 58.7318 22.4316 58.0792 22.4301C57.1567 22.4285 56.2334 22.4277 55.3108 22.4262C55.3015 22.4262 55.2929 22.4262 55.2835 22.4262C55.1504 22.4254 55.1497 22.4254 55.1497 22.2908C55.1497 20.8683 55.1497 19.4449 55.1497 18.0224C55.1497 16.0217 55.1497 14.0201 55.1497 12.0193V12.0185Z\" fill=\"white\"/>\\n<path d=\"M97.3394 12.0012C97.3394 15.6225 97.3394 19.2445 97.3394 22.8658C97.3394 23.0669 97.3699 23.0426 97.1657 23.0356C96.1289 23.0012 95.0921 22.9644 94.0554 22.9284C93.9505 22.9245 93.9497 22.9245 93.9482 22.8204C93.9482 22.793 93.9482 22.7656 93.9482 22.7375C93.9482 15.5771 93.9482 8.41673 93.9482 1.25637C93.9482 1.03023 93.9231 1.06936 94.1352 1.06153C95.089 1.02632 96.0436 0.992674 96.9975 0.959028C97.089 0.955898 97.1813 0.955116 97.2729 0.950421C97.3191 0.948074 97.3418 0.963723 97.3394 1.01224C97.3378 1.05371 97.3394 1.09518 97.3394 1.13587C97.3394 4.75713 97.3394 8.37917 97.3394 12.0004V12.0012Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mthk3r\",\"data-framer-name\":\"Monday\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:144,svg:'<svg width=\"144\" height=\"28\" viewBox=\"0 0 144 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.88595 21.5701C2.81288 21.5725 1.82156 20.9972 1.29114 20.0644C0.768375 19.1373 0.799723 17.9975 1.37266 17.1005L6.71624 8.70928C7.27304 7.79114 8.28078 7.24359 9.35407 7.27602C10.4266 7.30172 11.4021 7.90306 11.907 8.84966C12.4051 9.79158 12.3429 10.9248 11.7462 11.809L6.40604 20.2003C5.85566 21.0579 4.90501 21.5747 3.88595 21.5701Z\" fill=\"white\"/>\\n<path d=\"M13.0515 21.5698C11.9737 21.5698 10.9819 20.9935 10.4612 20.0674C9.93956 19.1429 9.97092 18.0059 10.5427 17.1115L15.8761 8.73948C16.4248 7.80816 17.4356 7.24776 18.5162 7.27565C19.603 7.29943 20.5879 7.90737 21.0861 8.85835C21.5808 9.80933 21.5084 10.9494 20.8936 11.8313L15.5614 20.2033C15.0127 21.0572 14.0664 21.5724 13.0515 21.5698Z\" fill=\"white\"/>\\n<path d=\"M22.0118 21.6405C23.5311 21.6405 24.7628 20.4347 24.7628 18.9472C24.7628 17.4597 23.5311 16.2539 22.0118 16.2539C20.4924 16.2539 19.2607 17.4597 19.2607 18.9472C19.2607 20.4347 20.4924 21.6405 22.0118 21.6405Z\" fill=\"white\"/>\\n<path d=\"M141.525 16.4099C142.356 16.4099 142.853 17.0009 142.853 17.9688V21.2859H143.982V17.893C143.982 16.2469 143.206 15.2925 141.748 15.2925C141.178 15.2925 140.272 15.4487 139.732 16.4982C139.476 15.8675 138.895 15.4283 138.218 15.3548C138.009 15.3165 137.796 15.304 137.584 15.3174C137.12 15.3548 136.294 15.6435 135.984 16.2978V15.4182H134.855V21.2859H135.984V18.1194C135.984 16.8877 136.791 16.4099 137.598 16.4099C138.354 16.4099 138.851 16.9884 138.851 17.9564V21.2859H139.974V18.1194C139.974 17.139 140.563 16.3986 141.525 16.4099ZM130.708 20.3055C131.224 20.3168 131.722 20.1108 132.083 19.7372C132.445 19.3636 132.638 18.8553 132.619 18.3334C132.619 17.1514 131.749 16.4099 130.708 16.4099C129.665 16.4099 128.797 17.1514 128.797 18.3334C128.776 18.8541 128.969 19.3613 129.329 19.7338C129.689 20.1074 130.185 20.3146 130.699 20.3055H130.708ZM130.708 21.4059C129.057 21.4059 127.679 20.1866 127.679 18.3266C127.679 16.4665 129.057 15.2857 130.708 15.2857C132.358 15.2857 133.747 16.4665 133.747 18.3266C133.747 20.1866 132.35 21.4116 130.7 21.4116L130.708 21.4059ZM121.866 18.3266L121.855 18.3334C121.855 16.4733 123.269 15.2925 124.931 15.2857C125.775 15.2694 126.587 15.6117 127.164 16.2276L126.308 16.9567C125.941 16.5962 125.445 16.3973 124.931 16.4042C123.889 16.4042 122.983 17.1458 122.983 18.3266C122.983 19.1247 123.458 19.8436 124.186 20.1493C124.914 20.455 125.751 20.2851 126.308 19.7213L127.177 20.4504C126.597 21.0728 125.781 21.42 124.931 21.4059C123.281 21.4059 121.866 20.1866 121.866 18.3266ZM118.251 20.1595C118.249 19.9523 118.329 19.7526 118.473 19.6044C118.618 19.4562 118.816 19.3716 119.023 19.3693C119.23 19.3716 119.428 19.4562 119.573 19.6044C119.718 19.7526 119.798 19.9523 119.795 20.1595C119.774 20.5719 119.436 20.8968 119.023 20.901C118.61 20.8968 118.272 20.5719 118.251 20.1595Z\" fill=\"white\"/>\\n<path d=\"M121.34 7.95856H117.319L114.502 15.2233L111.698 7.95856H107.678L112.566 19.4382L109.526 27.0279H113.517L121.34 7.95856ZM96.8904 14.3437C96.8904 16.1777 98.4935 17.3846 100.068 17.3846C101.616 17.3846 103.136 16.2615 103.136 14.3426C103.136 12.4236 101.616 11.2994 100.068 11.2994C98.4935 11.2994 96.8904 12.5074 96.8904 14.3426V14.3437ZM103.136 20.7537V19.3012C102.321 20.5352 100.419 21.0017 99.4433 21.0017C96.2122 21.0017 92.98 18.4544 92.98 14.3426C92.98 10.2318 96.2111 7.68459 99.4433 7.68459C100.257 7.68459 102.159 7.9563 103.136 9.38276V7.96309H106.884V20.756L103.136 20.7549V20.7537ZM91.9136 20.7537H88.1663V19.1642C87.5402 20.3416 86.0221 21.0277 84.4462 21.0277C81.1868 21.0277 78.3078 18.425 78.3078 14.3946C78.3078 10.2885 81.1868 7.68232 84.4462 7.68232C86.0198 7.68232 87.5425 8.33895 88.1663 9.51748V0.989258H91.9136V20.7537ZM88.0848 14.3143C88.0848 12.3965 86.7002 11.2723 85.1526 11.2723C83.5495 11.2723 82.2182 12.478 82.2182 14.3143C82.2182 16.2094 83.5495 17.4095 85.1515 17.4095C86.7285 17.4117 88.0848 16.1505 88.0848 14.3143ZM69.0426 13.9837C69.0426 12.0387 70.0479 11.3809 71.3782 11.3809C72.654 11.3809 73.5779 12.23 73.5779 13.9282V20.7515H77.3523V13.1074C77.3523 9.46427 75.5591 7.68232 72.7073 7.68232C71.214 7.68232 69.7207 8.53141 69.0415 9.81976V7.95856H65.2693V20.7515H69.0426V13.9837ZM57.6048 20.9711C54.0206 20.9711 51.0306 18.3412 51.0306 14.3131C51.0306 10.2828 54.0172 7.67893 57.6048 7.67893C61.1925 7.67893 64.2051 10.2828 64.2051 14.3131C64.2051 18.3435 61.1891 20.9722 57.6048 20.9722V20.9711ZM57.6048 17.2464C59.1785 17.2464 60.4838 16.0939 60.4838 14.3143C60.4838 12.5878 59.1796 11.4092 57.6048 11.4092C56.8385 11.3973 56.101 11.7006 55.5648 12.2481C55.0256 12.7985 54.7327 13.5441 54.753 14.3143C54.7542 16.0962 56.0572 17.2464 57.6048 17.2464ZM44.264 11.3821C45.3769 11.3821 46.355 12.2595 46.355 13.9293V20.7537H50.1023V13.4878C50.1023 9.62503 48.2241 7.68006 45.2138 7.68006C44.3195 7.68006 42.6349 7.95177 41.4122 9.95335C40.7057 8.47367 39.3483 7.7061 37.3422 7.7061C35.9197 7.69886 34.6243 8.52407 34.0297 9.81636V7.95969H30.2529V20.7526H34.0263V13.9837C34.0263 12.0387 35.0859 11.3809 36.226 11.3809C37.3128 11.3809 38.2887 12.23 38.317 13.8467V20.7526H42.0915V13.9837C42.0915 12.1236 43.0696 11.3832 44.264 11.3832V11.3821Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sjskgf\",\"data-framer-name\":\"N26\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:43,svg:'<svg width=\"43\" height=\"30\" viewBox=\"0 0 43 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.961 6.77002V17.9822C10.961 18.9809 11.0064 19.571 11.0518 20.1611H11.0064C10.7794 19.4802 10.4616 18.9355 10.0531 18.1638L3.38024 6.77002H0.338867V23.1571H2.69933V11.9903C2.69933 10.9916 2.65394 10.4015 2.60855 9.81139H2.65394C2.88091 10.4923 3.19866 11.037 3.60721 11.8087L10.2347 23.2025H13.2307V6.77002H10.961Z\" fill=\"white\"/>\\n<path d=\"M37.9254 12.2618C35.9735 12.2618 34.5663 13.1697 33.8854 14.4861C33.8854 11.3086 34.9748 8.58497 37.6076 8.58497C39.2872 8.58497 39.9227 9.53823 40.2859 11.127L42.6917 10.6277C42.1016 7.90406 40.3766 6.58765 37.6076 6.58765C34.1123 6.58765 31.4795 9.26587 31.4795 15.3032C31.4795 20.6597 33.6584 23.3379 37.4261 23.3379C40.5582 23.3379 42.8733 21.2044 42.8733 17.7091C42.8733 14.9855 41.4207 12.2618 37.9254 12.2618ZM37.4261 21.386C35.4741 21.386 34.1577 19.6156 33.9307 17.2551C34.5209 15.2578 35.8373 14.2592 37.3807 14.2592C39.378 14.2592 40.4674 15.7118 40.4674 17.7999C40.4674 20.0242 39.1964 21.386 37.4261 21.386Z\" fill=\"white\"/>\\n<path d=\"M20.7209 21.0704C21.9466 20.2079 23.7169 18.8007 24.534 18.0291C25.4419 17.1212 27.9839 14.8515 27.9839 11.5832C27.9839 8.17864 25.7596 6.63525 22.809 6.63525C19.1775 6.63525 17.4072 8.85954 17.4072 11.4016C17.4072 11.8101 17.4526 12.2187 17.5888 12.718L20.0854 12.945C19.9492 12.4002 19.9038 11.9463 19.9038 11.5378C19.9038 9.63123 21.1749 8.72336 22.7636 8.72336C24.307 8.72336 25.4419 9.58584 25.4419 11.6739C25.4419 13.7621 24.3978 15.2146 22.8544 16.8034C21.2203 18.4376 18.5874 20.3895 17.3164 21.2974V23.2493H28.2109V21.1158H20.7209V21.0704Z\" fill=\"white\"/>\\n<path d=\"M13.4127 27.469V29.6025H0.203125V27.469H13.4127Z\" fill=\"white\"/>\\n<path d=\"M13.4127 0.415039V2.54854H0.203125V0.415039H13.4127Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-im4p99\",\"data-framer-name\":\"Playtika\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"28\" viewBox=\"0 0 98 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M46.5918 7.58206C46.5918 7.26938 46.7795 7.11304 47.0921 7.11304H50.4066C50.7193 7.11304 50.8756 7.26938 50.8756 7.58206V20.2457C50.8756 25.1236 48.8432 27.2811 44.2154 27.2811C41.8391 27.2811 40.1506 26.8433 38.6497 25.7489C38.3683 25.5926 38.337 25.3425 38.5246 25.0923L40.0255 22.841C40.1818 22.5909 40.4007 22.5283 40.6821 22.6847C41.5889 23.2162 42.7458 23.6227 44.0904 23.6227C45.7789 23.6227 46.7482 22.9661 46.7169 20.9024C45.9352 21.1212 45.0597 21.3088 44.1529 21.3088C40.7447 21.3088 38.1807 19.1201 38.1807 15.3366V7.61333C38.1807 7.30064 38.3683 7.1443 38.6809 7.1443H41.9954C42.3081 7.1443 42.4644 7.30064 42.4644 7.61333V15.2428C42.4644 16.9 43.3712 17.6192 44.7783 17.6192C45.4662 17.6192 46.1854 17.4628 46.5918 17.2127V7.58206Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.31986 9.36567C9.31986 7.89606 8.288 6.80167 6.75586 6.80167H3.91044V11.8984H6.75586C8.31927 11.8984 9.31986 10.8353 9.31986 9.36567ZM13.2284 9.36567C13.2284 12.8677 10.5081 15.4943 6.94347 15.4943H3.94171V21.06H0.0957031V3.26835H6.97473C10.5081 3.23708 13.2284 5.83235 13.2284 9.36567Z\" fill=\"white\"/>\\n<path d=\"M9.31986 9.36567C9.31986 7.89606 8.288 6.80167 6.75586 6.80167H3.91044V11.8984H6.75586C8.31927 11.8984 9.31986 10.8353 9.31986 9.36567ZM13.2284 9.36567C13.2284 12.8677 10.5081 15.4943 6.94347 15.4943H3.94171V21.06H0.0957031V3.26835H6.97473C10.5081 3.23708 13.2284 5.83235 13.2284 9.36567Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.1045 21.0278H18.8254V3.11108H15.1045V21.0278Z\" fill=\"white\"/>\\n<path d=\"M15.1045 21.0278H18.8254V3.11108H15.1045V21.0278Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M32.1775 14.149C32.1775 11.9915 30.5828 10.3968 28.4253 10.3968C26.2678 10.3968 24.6731 11.9915 24.6731 14.149C24.6731 16.3065 26.2678 17.9012 28.4253 17.9012C30.6141 17.9012 32.1775 16.3065 32.1775 14.149ZM35.8359 7.26999V20.9968H32.9279L32.6152 19.7773C31.4271 20.8092 29.8949 21.4033 28.1439 21.4033C24.0165 21.4033 20.9209 18.2764 20.9209 14.1178C20.9209 9.99034 23.9852 6.89478 28.1439 6.89478C29.8949 6.89478 31.4896 7.52014 32.6778 8.58326L33.0843 7.26999H35.8359Z\" fill=\"white\"/>\\n<path d=\"M32.1775 14.149C32.1775 11.9915 30.5828 10.3968 28.4253 10.3968C26.2678 10.3968 24.6731 11.9915 24.6731 14.149C24.6731 16.3065 26.2678 17.9012 28.4253 17.9012C30.6141 17.9012 32.1775 16.3065 32.1775 14.149ZM35.8359 7.26999V20.9968H32.9279L32.6152 19.7773C31.4271 20.8092 29.8949 21.4033 28.1439 21.4033C24.0165 21.4033 20.9209 18.2764 20.9209 14.1178C20.9209 9.99034 23.9852 6.89478 28.1439 6.89478C29.8949 6.89478 31.4896 7.52014 32.6778 8.58326L33.0843 7.26999H35.8359Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M60.7564 17.7126V21.0271H58.0986C55.0655 21.0271 53.2207 19.1823 53.2207 16.118V7.26903L56.0036 3.95459H56.8791V7.3003H60.6626V10.2708H56.9416V15.6177C56.9416 16.9309 57.6921 17.7126 59.0679 17.7126H60.7564Z\" fill=\"white\"/>\\n<path d=\"M60.7564 17.7126V21.0271H58.0986C55.0655 21.0271 53.2207 19.1823 53.2207 16.118V7.26903L56.0036 3.95459H56.8791V7.3003H60.6626V10.2708H56.9416V15.6177C56.9416 16.9309 57.6921 17.7126 59.0679 17.7126H60.7564Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M63.6953 21.0278H67.4162V7.30103H63.6953V21.0278Z\" fill=\"white\"/>\\n<path d=\"M63.6953 21.0278H67.4162V7.30103H63.6953V21.0278Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M78.454 21.0289L74.0764 14.4626V21.0289H70.3555V3.3623H74.0764V13.3994L78.2038 7.30211H82.4876L77.8286 13.8372L82.9879 21.0289H78.454Z\" fill=\"white\"/>\\n<path d=\"M78.454 21.0289L74.0764 14.4626V21.0289H70.3555V3.3623H74.0764V13.3994L78.2038 7.30211H82.4876L77.8286 13.8372L82.9879 21.0289H78.454Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M93.7751 14.149C93.7751 11.9915 92.1805 10.3968 90.023 10.3968C87.8654 10.3968 86.2708 11.9915 86.2708 14.149C86.2708 16.3065 87.8654 17.9012 90.023 17.9012C92.2117 17.9012 93.7751 16.3065 93.7751 14.149ZM97.4335 7.26999V20.9968H94.5256L94.2129 19.7773C93.0247 20.8092 91.4926 21.4033 89.7415 21.4033C85.6141 21.4033 82.5186 18.2764 82.5186 14.1178C82.5186 9.99034 85.5829 6.89478 89.7415 6.89478C91.4926 6.89478 93.0872 7.52014 94.2754 8.58326L94.6819 7.26999H97.4335Z\" fill=\"white\"/>\\n<path d=\"M93.7751 14.149C93.7751 11.9915 92.1805 10.3968 90.023 10.3968C87.8654 10.3968 86.2708 11.9915 86.2708 14.149C86.2708 16.3065 87.8654 17.9012 90.023 17.9012C92.2117 17.9012 93.7751 16.3065 93.7751 14.149ZM97.4335 7.26999V20.9968H94.5256L94.2129 19.7773C93.0247 20.8092 91.4926 21.4033 89.7415 21.4033C85.6141 21.4033 82.5186 18.2764 82.5186 14.1178C82.5186 9.99034 85.5829 6.89478 89.7415 6.89478C91.4926 6.89478 93.0872 7.52014 94.2754 8.58326L94.6819 7.26999H97.4335Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M66.7597 5.17514C65.4465 6.08192 63.7892 5.92558 63.0701 4.86246C62.3509 3.79934 62.8199 2.20465 64.1645 1.32914C65.4777 0.422356 67.135 0.578698 67.8541 1.64182C68.542 2.67367 68.073 4.26836 66.7597 5.17514Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mdqjnw\",\"data-framer-name\":\"Roman\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:82,svg:'<svg width=\"82\" height=\"16\" viewBox=\"0 0 82 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M41.4699 2.62474C42.8857 0.924321 44.6984 0.395603 46.8268 0.84298C48.7229 1.24 49.9992 2.4853 50.1037 4.30967C50.3032 7.82864 50.1618 11.367 50.1618 14.9537H46.5712C46.5712 14.518 46.5712 14.1093 46.5712 13.7007C46.5654 11.2856 46.5906 8.86865 46.5421 6.45553C46.5112 4.90811 45.7326 4.08307 44.4563 4.07339C43.1491 4.06371 42.2756 4.95846 42.2485 6.46908C42.2059 8.91513 42.2272 11.365 42.2233 13.8111C42.2233 14.1597 42.2233 14.5102 42.2233 14.9344H38.4739C38.4739 14.58 38.4758 14.2101 38.4739 13.8401C38.4564 11.2314 38.4642 8.62269 38.408 6.0159C38.3867 5.0611 37.8871 4.36389 36.9032 4.13536C35.8806 3.89909 34.9355 4.25738 34.5211 5.14438C34.2848 5.64986 34.1647 6.25024 34.155 6.80994C34.1163 9.19208 34.1376 11.5762 34.1357 13.9602C34.1357 14.274 34.1357 14.5877 34.1357 14.9537H30.4366C30.4366 14.6574 30.4366 14.3534 30.4366 14.0474C30.4366 10.2786 30.456 6.50975 30.4192 2.74288C30.4114 2.03017 30.6186 1.699 31.3255 1.57311C32.1912 1.41818 33.0395 1.16641 33.9536 0.939815C34.0079 1.51308 34.0427 1.88299 34.0814 2.30325C36.3919 0.0256943 39.4751 0.167073 41.4699 2.6228V2.62474Z\" fill=\"white\"/>\\n<path d=\"M19.5686 15.3732C15.2614 15.3654 12.1181 12.288 12.1162 8.08151C12.1162 3.8382 15.366 0.683325 19.7216 0.700755C23.9088 0.716249 27.1469 3.94472 27.1372 8.09313C27.1275 12.3287 23.9533 15.3809 19.5686 15.3732ZM23.3858 8.04858C23.3742 5.72067 21.7939 4.00863 19.6383 3.98733C17.4634 3.96603 15.8076 5.7536 15.8289 8.10087C15.8482 10.4133 17.4731 12.1098 19.648 12.0905C21.8539 12.0711 23.3994 10.4017 23.3858 8.05052V8.04858Z\" fill=\"white\"/>\\n<path d=\"M65.5548 14.9372C63.0158 15.2103 62.4155 15.1057 62.0204 14.3407C59.3574 15.8687 56.5318 15.6848 54.7384 13.8643C53.3459 12.4505 53.0631 10.1381 54.0722 8.41053C55.3484 6.22981 58.0017 5.61394 61.7783 6.6249C62.0204 4.92835 61.3019 4.00649 59.6305 3.96582C58.9623 3.95032 58.2787 4.02973 57.626 4.17498C56.9753 4.31829 56.3555 4.59912 55.6428 4.84508C55.2051 4.05878 54.7732 3.27829 54.2871 2.40484C55.7842 1.31641 57.4594 0.876785 59.2277 0.710229C59.737 0.661812 60.2618 0.673432 60.7712 0.727659C63.7924 1.04528 65.3282 2.4029 65.5122 5.42802C65.702 8.56547 65.5548 11.7242 65.5548 14.9372ZM59.5472 12.5764C61.3232 12.4718 62.3922 11.1974 61.786 9.84175C61.4432 9.07288 60.4904 8.57322 59.4291 8.66811C58.4975 8.75333 57.6492 9.02059 57.3026 10.0374C57.0082 10.9011 57.32 11.5828 58.0366 12.0283C58.482 12.3052 59.0398 12.3982 59.5453 12.5744L59.5472 12.5764Z\" fill=\"white\"/>\\n<path d=\"M81.7054 14.9662H78.0237C78.0237 13.0644 78.0237 11.2051 78.0237 9.34786C78.0237 8.47828 78.0296 7.6087 78.0199 6.73913C78.0024 5.13361 77.1793 4.14008 75.8314 4.08004C74.3982 4.01807 73.3834 4.89539 73.3137 6.52609C73.2111 8.93728 73.2672 11.3562 73.2556 13.7713C73.2556 14.1489 73.2556 14.5266 73.2556 14.9565H69.6069C69.5875 14.6893 69.5488 14.4143 69.5488 14.1392C69.5449 10.3375 69.5643 6.53577 69.5275 2.73404C69.5216 2.05039 69.7405 1.75601 70.3873 1.62431C71.2821 1.44033 72.1614 1.18081 73.151 0.929038C73.1859 1.50424 73.2091 1.87802 73.242 2.38156C73.5674 2.10461 73.8134 1.87802 74.0748 1.67273C76.8404 -0.509927 80.7293 0.950342 81.4827 4.46932C81.6221 5.12586 81.6899 5.80758 81.6957 6.47961C81.719 9.27814 81.7054 12.0747 81.7054 14.9662Z\" fill=\"white\"/>\\n<path d=\"M0.658203 2.38735C2.40898 1.88768 4.15781 1.38802 6.06933 0.843804V2.57521C7.13452 1.43062 8.30815 0.721792 9.90786 0.706299V4.37247C9.78779 4.41507 9.64835 4.4906 9.49922 4.51191C7.39984 4.7966 6.36177 5.88503 6.28818 8.03282C6.22233 9.96371 6.25138 11.8985 6.23783 13.8313C6.23589 14.1799 6.23783 14.5266 6.23783 14.9449H2.48257C2.48257 14.6079 2.48257 14.269 2.48257 13.9281C2.48257 11.0599 2.48257 8.19357 2.48257 5.32532C2.48257 3.51645 2.3625 3.33827 0.727924 2.69335C0.704684 2.59264 0.681443 2.49193 0.658203 2.39122L0.658203 2.38735Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gnydvl\",\"data-framer-name\":\"The Oodie\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:85,svg:'<svg width=\"85\" height=\"32\" viewBox=\"0 0 85 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M71.8737 31.4272C71.2715 31.2112 70.6275 31.2001 70.0111 31.0449C66.7643 30.2282 64.2206 27.3794 63.7492 24.0758C63.5001 22.3283 63.5183 20.5996 64.0897 18.9309C65.2004 15.6903 67.3618 13.5187 70.7906 12.8148C72.7644 12.4096 74.7398 12.5333 76.5898 13.3996C79.113 14.5812 80.6138 16.6213 81.3153 19.2785C81.6732 20.6335 81.6645 22.0193 81.6385 23.4058C81.6353 23.5674 81.5817 23.6525 81.4099 23.6431C81.3051 23.6376 81.2002 23.6431 81.0954 23.6431C77.1061 23.6431 73.1175 23.6431 69.1282 23.6431C68.578 23.6431 68.5733 23.6447 68.7152 24.2004C69.1274 25.8132 70.0568 26.9798 71.6995 27.4378C73.1617 27.8453 74.4915 27.4346 75.714 26.6046C76.336 26.1821 76.8838 25.6792 77.3079 25.0541C77.4103 24.9027 77.5049 24.8696 77.6602 24.9792C78.7299 25.732 79.7995 26.4856 80.8763 27.2273C81.0773 27.366 81.004 27.4945 80.9031 27.6167C79.3833 29.4541 77.5562 30.7973 75.1378 31.2033C74.7059 31.2758 74.2581 31.2616 73.8419 31.4272H71.8737ZM72.5871 20.2685C73.8183 20.2685 75.0495 20.2646 76.2816 20.2725C76.5086 20.2741 76.6386 20.2252 76.5921 19.969C76.4369 19.109 76.1578 18.2979 75.5635 17.6365C74.7035 16.6812 73.6378 16.2768 72.3403 16.4006C71.3897 16.4912 70.5644 16.7836 69.896 17.4828C69.2212 18.1883 68.8949 19.0594 68.6624 19.98C68.5922 20.2583 68.7633 20.2725 68.9722 20.2717C70.1774 20.267 71.3826 20.2693 72.5878 20.2693L72.5871 20.2685Z\" fill=\"white\"/>\\n<path d=\"M0.931641 4.78848C1.24536 4.6734 1.5717 4.73646 1.89173 4.73409C2.07933 4.73252 2.1416 4.67891 2.13529 4.48973C2.12268 4.11058 2.13924 3.73064 2.1282 3.35148C2.12189 3.15363 2.17865 3.0685 2.39305 3.0748C2.8258 3.0882 3.25855 3.08899 3.69129 3.0748C3.89309 3.0685 3.9325 3.14969 3.92777 3.32783C3.91752 3.69438 3.9388 4.06171 3.9191 4.42667C3.90649 4.66 3.96088 4.74986 4.21548 4.73567C4.63404 4.71202 5.05496 4.73961 5.47431 4.72463C5.68241 4.71675 5.7502 4.78375 5.73916 4.98949C5.71946 5.35288 5.85425 5.81637 5.67689 6.05443C5.50899 6.27987 5.01713 6.11749 4.66872 6.12222C3.92462 6.13326 3.92462 6.12537 3.92462 6.87658C3.92462 7.68849 3.92304 8.49961 3.92462 9.31152C3.92619 9.87828 4.13665 10.0919 4.69552 10.1085C4.99742 10.1171 5.29853 10.1053 5.58703 10.0068C5.82508 9.92558 5.8976 10.0162 5.87553 10.244C5.86528 10.3481 5.87395 10.4529 5.87395 10.5578C5.87395 11.2916 5.87237 11.2822 5.12275 11.3933C4.56073 11.4761 4.00423 11.5045 3.44457 11.3878C2.72254 11.2372 2.27324 10.7556 2.19362 10.0273C2.06278 8.84014 2.15185 7.64829 2.14002 6.45959C2.13766 6.18213 2.06751 6.09621 1.7932 6.12064C1.50785 6.14508 1.21935 6.12616 0.931641 6.12616V4.79006L0.931641 4.78848Z\" fill=\"white\"/>\\n<path d=\"M38.3571 23.9685C38.1679 24.5715 38.0489 25.1832 37.7998 25.7594C36.5236 28.7091 34.337 30.5757 31.1667 31.1756C28.7949 31.6241 26.4561 31.4388 24.3058 30.2344C21.9568 28.918 20.4607 26.9371 19.9019 24.2846C19.8695 24.1324 19.7876 23.989 19.8073 23.8179C19.6362 24.0812 19.6402 24.3894 19.5574 24.6716C18.5082 28.2503 16.1656 30.4669 12.5002 31.1803C10.2703 31.6146 8.05845 31.4404 5.99561 30.3818C3.38099 29.0394 1.77927 26.9087 1.25351 24.0221C0.860964 21.8686 1.00206 19.7347 1.97318 17.7436C3.15161 15.3284 5.0568 13.7022 7.67773 13.0148C10.1749 12.3598 12.6524 12.4717 14.9753 13.6612C17.5221 14.965 19.1034 17.057 19.6749 19.879C19.6827 19.9176 19.689 19.9562 19.6993 19.9941C19.7229 20.0808 19.7489 20.1675 19.7891 20.3094C20.0083 18.848 20.5222 17.5552 21.3641 16.4067C22.8326 14.4022 24.7985 13.1914 27.2609 12.7996C29.2253 12.4875 31.1525 12.6104 32.9947 13.3987C35.3933 14.4258 37.0455 16.175 37.9346 18.632C38.1167 19.1349 38.2373 19.6528 38.3579 20.1817C38.6022 18.6359 39.1848 17.236 40.0912 15.9732C41.3343 14.2421 42.9723 13.0937 45.1006 12.7468C46.4493 12.5269 47.7869 12.6168 49.0678 13.1607C49.8963 13.5122 50.56 14.0648 51.0944 14.7797C51.2087 14.9327 51.3167 15.0903 51.4838 15.3244C51.4838 15.0801 51.4838 14.9295 51.4838 14.779C51.4838 11.6228 51.4893 8.46656 51.4759 5.31037C51.4743 4.95565 51.5602 4.84135 51.9307 4.84687C53.3606 4.86894 54.7913 4.86263 56.2212 4.85002C56.5049 4.84766 56.6074 4.91545 56.6074 5.21893C56.5995 13.6525 56.6003 22.0869 56.6066 30.5205C56.6066 30.7956 56.5231 30.8784 56.2487 30.876C54.7921 30.8642 53.3354 30.8634 51.8795 30.876C51.5626 30.8792 51.4696 30.7657 51.4783 30.4638C51.4964 29.8686 51.4838 29.2735 51.4538 28.6681C51.0605 29.3657 50.5765 29.9687 49.9207 30.4243C49.1246 30.9769 48.2212 31.2512 47.2753 31.3261C45.7477 31.4475 44.2343 31.364 42.8312 30.6443C40.7282 29.5651 39.448 27.8136 38.7347 25.6089C38.562 25.076 38.4288 24.5297 38.3563 23.9669L38.3571 23.9685ZM15.0289 22.0199C15.1787 19.4959 13.1048 16.7433 10.0535 17.0428C8.53061 17.1918 7.39475 17.9446 6.61911 19.2263C5.9294 20.3661 5.76938 21.6187 5.96802 22.928C6.20213 24.4698 6.96594 25.6506 8.32567 26.4357C9.1147 26.8914 9.9731 26.997 10.8654 26.9505C11.98 26.8914 12.9196 26.4287 13.6731 25.6396C14.6364 24.6306 15.088 23.4017 15.0289 22.0199ZM29.2284 17.0342C27.5029 17.0231 26.2764 17.6805 25.3967 18.9425C24.6022 20.0832 24.3641 21.3704 24.5446 22.7459C24.7866 24.5904 25.6955 25.9376 27.4446 26.6588C29.3987 27.4652 31.8131 26.6502 32.8922 24.8411C33.6591 23.5547 33.8326 22.1697 33.5157 20.7327C33.0727 18.7218 31.3181 16.9419 29.2284 17.035V17.0342ZM51.8771 22.0018C51.9236 21.0456 51.7037 20.095 51.2221 19.1948C49.7615 16.465 45.903 16.2341 44.2721 18.833C43.0377 20.8005 42.9715 22.8996 44.0837 24.9459C45.3615 27.2973 48.6674 27.7127 50.5324 25.7925C51.5334 24.7615 51.9189 23.4813 51.8771 22.0018Z\" fill=\"white\"/>\\n<path d=\"M62.8232 22.0005C62.8232 24.7759 62.8138 27.5514 62.8342 30.3268C62.8374 30.7399 62.7129 30.8242 62.3266 30.8179C60.9495 30.7951 59.5717 30.8006 58.1946 30.8156C57.8793 30.8187 57.7658 30.747 57.7666 30.4073C57.7769 24.7775 57.7761 19.1477 57.769 13.5188C57.769 13.2279 57.8234 13.1065 58.1528 13.1104C59.5827 13.1294 61.0126 13.1286 62.4425 13.1104C62.7696 13.1065 62.8303 13.2216 62.8295 13.5164C62.8201 16.3439 62.824 19.1722 62.824 22.0005H62.8232Z\" fill=\"white\"/>\\n<path d=\"M9.19964 5.48355C9.83418 4.97591 10.4987 4.69844 11.2325 4.59203C12.5481 4.40206 13.6588 5.07681 13.6146 6.59421C13.5854 7.60082 13.6178 8.60979 13.6028 9.61719C13.5996 9.85918 13.6619 9.92224 13.9047 9.92067C14.6322 9.91515 14.6322 9.92776 14.6322 10.6506C14.6322 11.0868 14.4163 11.3049 13.9843 11.3049C13.0266 11.3049 12.0696 11.2993 11.1119 11.3096C10.8975 11.3119 10.7927 11.2623 10.8258 11.0313C10.8384 10.9415 10.8258 10.8485 10.8282 10.757C10.836 10.4969 10.7549 10.1753 10.8794 9.9924C11.0205 9.78588 11.365 9.92619 11.6188 9.92067C11.819 9.91594 11.8552 9.8379 11.8545 9.66212C11.8482 8.69335 11.8639 7.72457 11.8474 6.75659C11.8363 6.10864 11.5061 5.86901 10.7864 5.96991C10.2472 6.04558 9.78215 6.30649 9.33916 6.61076C9.23826 6.68013 9.2225 6.76684 9.2225 6.87719C9.22565 7.80655 9.23196 8.73591 9.21856 9.66527C9.2154 9.89466 9.31236 9.91357 9.49917 9.9183C10.2236 9.93486 10.2236 9.94037 10.2236 10.6545C10.2236 11.0886 10.0065 11.3056 9.57248 11.3056C8.61476 11.3056 7.65783 11.2993 6.70011 11.3104C6.48019 11.3127 6.38402 11.2552 6.41713 11.029C6.42816 10.9517 6.41713 10.8721 6.41949 10.7933C6.42816 10.5197 6.34618 10.1879 6.47309 9.99003C6.60473 9.78509 6.95865 9.92619 7.21326 9.92067C7.41741 9.91594 7.44579 9.83081 7.445 9.65896C7.44106 7.172 7.43948 4.68504 7.44737 2.19808C7.44737 1.96869 7.34726 1.95372 7.16438 1.94978C6.4187 1.9348 6.4187 1.92928 6.4187 1.19856C6.4187 0.798128 6.61471 0.59791 7.00673 0.59791C7.60974 0.59791 8.21354 0.612887 8.81655 0.591604C9.10899 0.581356 9.21304 0.643629 9.20831 0.966027C9.1886 2.4448 9.19964 3.92358 9.19964 5.48276V5.48355Z\" fill=\"white\"/>\\n<path d=\"M20.6948 9.51434V10.208C20.6948 10.9167 20.6956 10.9206 19.9988 11.172C18.9591 11.5473 17.9099 11.5843 16.8568 11.2327C15.7391 10.8599 15.1061 10.0622 14.8689 8.93181C14.7025 8.13882 14.7396 7.3545 15.006 6.58595C15.5546 5.00233 17.0736 4.43321 18.5508 4.60032C20.802 4.85572 21.3136 6.96983 21.0913 8.43127C21.0534 8.67957 20.88 8.58025 20.7642 8.58104C19.5061 8.58813 18.2473 8.58498 16.9892 8.58577C16.5455 8.58577 16.5423 8.59128 16.685 9.01221C16.9538 9.8052 17.8784 10.2585 18.8716 10.1126C19.4951 10.0212 20.0926 9.86511 20.6932 9.51434H20.6948ZM17.9856 7.35766C18.3647 7.35766 18.7455 7.33795 19.1222 7.36396C19.4218 7.38446 19.4911 7.26306 19.4257 7.00609C19.2562 6.34474 18.9189 5.78744 17.9249 5.86784C17.2659 5.92066 16.6755 6.4748 16.5943 7.14404C16.5715 7.33401 16.6487 7.36317 16.8087 7.36002C17.2005 7.35293 17.593 7.35766 17.9848 7.35766H17.9856Z\" fill=\"white\"/>\\n<path d=\"M60.2238 11.7868C58.7995 11.7844 57.6935 10.6722 57.6943 9.24225C57.6951 7.78002 58.8168 6.66857 60.2853 6.67409C61.6671 6.67961 62.8156 7.84702 62.8172 9.24776C62.8187 10.6588 61.664 11.7891 60.2238 11.7868Z\" fill=\"white\"/>\\n<path d=\"M81.3956 13.6983C81.4051 12.9101 82.0057 12.326 82.7979 12.3331C83.5743 12.341 84.1718 12.9653 84.1553 13.7504C84.1387 14.5181 83.5152 15.0991 82.7199 15.0873C81.9435 15.0754 81.3862 14.4905 81.3956 13.6983ZM82.753 14.8571C83.4246 14.9564 83.9291 14.2407 83.9212 13.7117C83.9117 13.0732 83.4261 12.5774 82.7782 12.5656C82.1437 12.5538 81.6297 13.0843 81.6337 13.7464C81.6368 14.3526 82.1413 14.8531 82.753 14.8571Z\" fill=\"white\"/>\\n<path d=\"M82.6331 13.9418C82.5046 14.1538 82.7246 14.5046 82.4416 14.503C82.1271 14.5014 82.3028 14.1586 82.2768 13.9686C82.2477 13.751 82.2579 13.5256 82.2745 13.3049C82.2847 13.1646 82.1783 12.9391 82.3903 12.9036C82.6505 12.8603 82.95 12.7941 83.1731 13.014C83.3386 13.1772 83.382 13.457 83.2322 13.5839C82.9035 13.8622 83.0816 14.06 83.2464 14.2933C83.2913 14.3572 83.4135 14.436 83.2882 14.5133C83.1967 14.57 83.0864 14.5361 83.0131 14.4376C82.8932 14.2752 82.8176 14.0766 82.6323 13.9418H82.6331ZM82.5803 13.401C82.5976 13.498 82.5393 13.6604 82.7317 13.6446C82.868 13.6336 82.9831 13.5674 82.9807 13.3971C82.9784 13.2489 82.9279 13.1362 82.764 13.1244C82.5551 13.1086 82.5866 13.2655 82.5811 13.401H82.5803Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-owzlf6\",\"data-framer-name\":\"Loop\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:65,svg:'<svg width=\"65\" height=\"33\" viewBox=\"0 0 65 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M50.1791 23.5171C50.1791 26.2232 50.156 28.7337 50.1951 31.2443C50.2058 31.8808 50.0191 32.0462 49.4092 32.007C48.586 31.9537 47.7504 31.943 46.9289 32.0088C46.2426 32.0639 46.1093 31.8221 46.1128 31.1749C46.1395 25.6471 46.1288 20.1193 46.1288 14.5915C46.1288 12.5219 46.1555 10.4523 46.111 8.38445C46.0968 7.74259 46.3031 7.57368 46.9022 7.60746C47.697 7.65191 48.5025 7.6768 49.2937 7.60568C50.0618 7.53456 50.3036 7.82082 50.1844 8.53914C50.1507 8.74005 50.1791 8.94986 50.1791 9.31968C51.2655 8.49113 52.3145 7.83505 53.5324 7.47589C58.4913 6.01792 63.7329 9.26634 64.5579 14.371C65.1482 18.0159 64.3712 21.2714 61.4463 23.7287C58.3846 26.2996 54.0303 26.353 50.7943 23.9758C50.6361 23.8584 50.4778 23.7411 50.1773 23.5188L50.1791 23.5171ZM50.1773 16.3677C50.1738 19.5823 52.3696 21.8795 55.4402 21.876C58.4593 21.8724 60.8098 19.449 60.7885 16.3606C60.7671 13.3664 58.4949 11.0408 55.5771 11.0283C52.3643 11.0141 50.1809 13.1726 50.1773 16.3677Z\" fill=\"white\"/>\\n<path d=\"M6.00294 16.436C5.99583 11.2425 10.0604 7.15483 15.2361 7.14771C20.4083 7.1406 24.5582 11.2442 24.5653 16.372C24.5724 21.594 20.4812 25.6905 15.2486 25.7012C10.0568 25.7119 6.01005 21.6562 6.00294 16.436ZM20.6128 16.4645C20.6484 13.4099 18.3334 10.9082 15.4353 10.8709C12.306 10.83 9.95011 13.1467 9.92167 16.2938C9.89144 19.5458 12.1335 21.9354 15.261 21.987C18.1965 22.035 20.5773 19.5778 20.6128 16.4645Z\" fill=\"white\"/>\\n<path d=\"M26.0459 16.391C26.0423 11.2295 30.146 7.14537 35.3307 7.14893C40.4851 7.15248 44.6154 11.2739 44.619 16.4212C44.6243 21.5703 40.5367 25.6615 35.3378 25.7131C30.1442 25.7629 26.0495 21.6557 26.0459 16.391ZM40.6736 16.4568C40.7162 13.4324 38.3746 10.913 35.4818 10.8685C32.4023 10.8205 30.0233 13.1213 29.9717 16.1972C29.9184 19.4741 32.1231 21.9082 35.2222 21.9882C38.2092 22.0664 40.6291 19.611 40.6736 16.4568Z\" fill=\"white\"/>\\n<path d=\"M4.42119 12.6504C4.42119 16.5833 4.39985 20.5145 4.44074 24.4475C4.44786 25.1498 4.22916 25.2938 3.59619 25.2547C2.7712 25.2031 1.93909 25.2013 1.11587 25.2547C0.500682 25.2956 0.374444 25.052 0.381556 24.4937C0.406448 22.1876 0.394002 19.8815 0.394002 17.5755C0.392224 12.0192 0.402892 6.45936 0.378 0.901307C0.374444 0.230998 0.504238 -0.0552611 1.24033 0.0087471C2.03155 0.0780894 2.84054 0.0780894 3.63175 0.0087471C4.33762 -0.0534831 4.44074 0.225664 4.43541 0.855078C4.40696 4.78625 4.42119 8.7192 4.42119 12.6522V12.6504Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1boucl7\",\"data-framer-name\":\"Pleo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:37,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"37\" viewBox=\"0 0 38 37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.28801 4.91323C7.28801 5.89302 6.49112 6.67685 5.51133 6.67685H2.63728V3.14961H5.52439C6.49112 3.13654 7.28801 3.93344 7.28801 4.91323ZM9.8224 4.91323C9.8224 2.60092 7.9412 0.719727 5.61584 0.719727H0.194336V12.6078H2.63728V9.09366H5.61584C7.9412 9.10673 9.8224 7.22553 9.8224 4.91323ZM16.2106 26.965H25.0026V24.5482H18.6274V22.5886C19.5942 22.4319 20.5478 22.1967 21.4623 21.8571L22.6511 21.4259L21.7889 19.0614L20.6001 19.4925C19.96 19.7276 19.2937 19.9105 18.6274 20.0412V17.4807H25.0026V15.0638H16.2106V20.1979C14.7344 20.0542 13.6893 19.4794 12.9839 18.8654C11.7428 17.7811 10.4625 15.6256 11.3509 11.419L11.6121 10.191L9.14308 9.66847L8.8818 10.8965C7.96733 15.1553 8.81648 18.565 11.3117 20.7466C12.3437 21.648 13.5587 22.2359 14.9042 22.5233C15.3223 22.6148 15.7534 22.667 16.1845 22.6931L16.2106 26.965ZM34.8397 29.9697C34.8397 30.4792 34.7613 30.9887 34.6045 31.4721C34.4478 31.9293 34.2257 32.3343 33.9383 32.6739C33.6509 33.0136 33.2851 33.2749 32.8801 33.4578C32.4621 33.6537 32.0048 33.7452 31.4953 33.7452C30.9859 33.7452 30.5156 33.6537 30.0975 33.4578C29.6925 33.2749 29.3267 33.0136 29.0393 32.6739C28.7519 32.3343 28.5298 31.9424 28.3731 31.4721C28.2163 30.9887 28.1379 30.4792 28.1379 29.9697C28.1379 29.4341 28.2163 28.9246 28.3731 28.4674C28.5298 28.0101 28.7519 27.6051 29.0393 27.2655C29.3267 26.9258 29.6925 26.6515 30.0975 26.4686C30.5156 26.2726 30.9728 26.1812 31.4953 26.1812C32.0048 26.1812 32.4751 26.2726 32.8801 26.4686C33.2851 26.6515 33.6509 26.9258 33.9383 27.2655C34.2257 27.6051 34.4478 28.0101 34.6045 28.4674C34.7613 28.9246 34.8397 29.421 34.8397 29.9697ZM37.2434 29.9697C37.2434 29.0814 37.1128 28.2583 36.8385 27.5006C36.5772 26.7429 36.1853 26.0897 35.6888 25.528C35.1794 24.9663 34.5653 24.5351 33.873 24.2347C33.1675 23.9211 32.3706 23.7644 31.4953 23.7644C30.6201 23.7644 29.8232 23.9211 29.1047 24.2347C28.4123 24.5351 27.7852 24.9793 27.2888 25.528C26.7924 26.0767 26.4004 26.7429 26.1392 27.5006C25.8779 28.2583 25.7342 29.0814 25.7342 29.9697C25.7342 30.8581 25.8648 31.6811 26.1392 32.4388C26.4004 33.1965 26.7924 33.8497 27.2888 34.3984C27.7983 34.947 28.4123 35.3912 29.1047 35.6917C29.8232 36.0052 30.6201 36.162 31.4953 36.162C32.3706 36.162 33.1675 36.0052 33.873 35.6917C34.5653 35.3912 35.1794 34.9601 35.6888 34.3984C36.1853 33.8497 36.5772 33.1965 36.8385 32.4388C37.1128 31.6811 37.2434 30.8581 37.2434 29.9697Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17dda53\",\"data-framer-name\":\"Future Play\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:44,svg:'<svg width=\"44\" height=\"45\" viewBox=\"0 0 44 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.53455 33.713C8.76134 32.7179 8.31008 31.6418 7.79171 30.5472C5.3688 25.4191 2.98523 20.2724 0.587777 15.1327C0.36099 14.649 0.437357 14.4477 0.927956 14.2186C3.38095 13.0754 5.83395 11.9299 8.28925 10.7937C8.4767 10.7057 8.54844 10.6109 8.53687 10.4049C8.51835 10.0277 8.53687 9.64586 8.52993 9.26865C8.5253 9.01178 8.62943 8.90302 8.89325 8.90533C9.94618 8.91227 11.0014 8.90533 12.0567 8.90996C12.2372 8.90996 12.3992 8.87525 12.5635 8.79888C18.1614 6.18621 23.7593 3.57585 29.3572 0.963183C29.8779 0.720198 30.0654 0.787308 30.3084 1.31031C31.4469 3.75636 32.5878 6.2001 33.7194 8.64846C33.8097 8.84285 33.9092 8.92384 34.1313 8.91227C34.5826 8.89145 35.0362 8.90533 35.4897 8.90765C35.8114 8.90765 35.8646 8.96087 35.8669 9.27328C35.8669 9.59726 35.8646 9.92124 35.8669 10.2452C35.8692 10.4535 35.779 10.553 35.5684 10.5484C35.337 10.5437 35.1056 10.5623 34.8742 10.5437C34.6103 10.5206 34.6358 10.6178 34.7214 10.8006C35.5244 12.5085 36.3205 14.2186 37.1166 15.9288C39.2641 20.5339 41.4139 25.1391 43.5615 29.7442C43.7929 30.2394 43.7235 30.4269 43.2282 30.6583C40.0995 32.1185 36.9708 33.5788 33.8397 35.0297C33.6546 35.1153 33.5551 35.2056 33.5921 35.4139C33.606 35.4856 33.5875 35.562 33.5944 35.636C33.6176 35.8952 33.488 35.9808 33.2473 35.9762C32.8585 35.967 32.4698 35.9808 32.0833 35.9716C31.9121 35.967 31.7593 36.0017 31.6043 36.0734C26.0064 38.6861 20.4084 41.2964 14.8105 43.9091C14.2667 44.1637 14.0908 44.0989 13.8386 43.562C12.6954 41.109 11.5476 38.6583 10.4113 36.2007C10.335 36.0341 10.254 35.9623 10.0642 35.9693C9.67543 35.9855 9.28665 35.9762 8.90019 35.9739C8.59009 35.9739 8.53224 35.9114 8.52993 35.5944C8.52761 35.0482 8.52993 34.5044 8.52993 33.713H8.53455ZM13.5192 8.9007C13.6743 9.01641 13.6789 9.17609 13.6743 9.34271C13.6673 9.60189 13.6743 9.86107 13.6743 10.1203C13.6743 10.5229 13.628 10.5692 13.2323 10.5692C12.3807 10.5692 11.5314 10.5738 10.6798 10.5669C10.5085 10.5669 10.4322 10.597 10.4414 10.7914C10.4576 11.113 10.4553 11.4393 10.4414 11.761C10.4345 11.9369 10.4784 11.997 10.6659 11.9924C11.4527 11.9808 12.2372 11.9878 13.024 11.9878C13.3457 11.9878 13.3989 12.041 13.4012 12.3534C13.4012 12.6311 13.4012 12.9088 13.4012 13.1865C13.4012 13.5822 13.3619 13.6216 12.9523 13.6216C12.221 13.6216 11.492 13.6308 10.7608 13.6169C10.5201 13.6123 10.4275 13.6586 10.4368 13.927C10.4599 14.5634 10.4414 15.2021 10.446 15.8408C10.446 16.0815 10.3442 16.1995 10.0966 16.1949C9.75411 16.1879 9.41161 16.1949 9.07144 16.1949C8.56001 16.1949 8.53455 16.1694 8.53455 15.6719C8.53455 14.2857 8.52993 12.8972 8.53918 11.5111C8.53918 11.2588 8.49058 11.2449 8.27305 11.3491C5.9242 12.4529 3.57071 13.5521 1.21491 14.6398C1.01127 14.7347 0.974239 14.7948 1.07375 15.01C3.49666 20.1868 5.91031 25.3705 8.32628 30.5518C8.37951 30.6629 8.43273 30.774 8.48364 30.8874C8.53455 30.2973 8.53224 29.7188 8.53455 29.1402C8.53455 28.7607 8.59472 28.7028 8.96267 28.7005C9.32368 28.7005 9.68468 28.7005 10.0434 28.7005C10.409 28.7005 10.4599 28.7514 10.4599 29.1148C10.4599 30.7601 10.4646 32.4055 10.4553 34.0532C10.4553 34.2661 10.5039 34.3285 10.7237 34.3262C11.5915 34.3123 12.4617 34.3193 13.3318 34.3216C13.6558 34.3216 13.7182 34.3887 13.7206 34.715C13.7206 34.9927 13.7206 35.2704 13.7206 35.5481C13.7206 35.9392 13.6789 35.9832 13.2971 35.9832C12.5658 35.9832 11.8368 35.9901 11.1056 35.9785C10.8927 35.9762 10.8765 36.0317 10.9598 36.2099C12.0752 38.5958 13.186 40.9817 14.2968 43.3699C14.3569 43.5018 14.4009 43.5666 14.5745 43.4856C20.2117 40.8498 25.8513 38.2186 31.4932 35.5921C31.6459 35.5203 31.6876 35.4347 31.6853 35.2773C31.676 34.7405 31.6783 34.2059 31.6853 33.669C31.6876 33.4769 31.639 33.3103 31.5464 33.1437C30.8128 31.8223 30.0862 30.4963 29.3596 29.1726C29.1837 28.8533 29.2693 28.7052 29.628 28.7005C30.0353 28.6982 30.4426 28.7121 30.8475 28.6959C31.0813 28.6866 31.2178 28.7676 31.3266 28.9782C31.7686 29.8252 32.2268 30.6606 32.6942 31.5284C32.7521 31.4243 32.7961 31.3456 32.84 31.2669C33.245 30.5125 33.6569 29.7604 34.0526 29.0014C34.1637 28.7908 34.2956 28.682 34.5479 28.6959C34.9158 28.7167 35.2884 28.7005 35.6563 28.7005C36.0752 28.7005 36.1562 28.8417 35.9549 29.205C35.293 30.3875 34.6659 31.5909 33.9554 32.741C33.5898 33.3311 33.5713 33.9259 33.613 34.5599C33.6801 34.5923 33.724 34.5461 33.7703 34.5252C36.8504 33.0905 39.9283 31.6534 43.0107 30.2256C43.1981 30.1399 43.1611 30.0613 43.094 29.9178C41.7379 27.0158 40.3841 24.1116 39.0304 21.2073C37.4082 17.7292 35.7813 14.251 34.1683 10.7682C34.0596 10.5345 33.9115 10.5368 33.731 10.5576C33.5181 10.5808 33.6176 10.759 33.6176 10.8631C33.6106 12.5085 33.613 14.1538 33.613 15.8015C33.613 16.1532 33.5667 16.1972 33.2103 16.1995C32.8493 16.1995 32.4883 16.1995 32.1296 16.1995C31.7408 16.1995 31.7061 16.1648 31.7061 15.7691C31.7061 14.133 31.6992 12.4969 31.713 10.8585C31.7154 10.5923 31.632 10.5414 31.3891 10.5484C30.8522 10.5646 30.3176 10.5484 29.7807 10.5576C29.5516 10.5623 29.4614 10.4628 29.4637 10.2452C29.466 9.92124 29.4729 9.59726 29.4637 9.27328C29.4544 9.01178 29.5609 8.90996 29.8247 8.91227C30.7504 8.92153 31.6737 8.9169 32.5994 8.9169C32.8192 8.9169 33.039 8.9169 33.2658 8.9169C33.2612 8.86136 33.2658 8.83128 33.2543 8.80814C32.1157 6.3644 30.9725 3.92066 29.8386 1.4723C29.7645 1.31031 29.6905 1.36816 29.5887 1.41444C28.7301 1.8171 27.8692 2.21514 27.0107 2.6178C22.5213 4.7121 18.0341 6.80409 13.5239 8.90765L13.5192 8.9007Z\" fill=\"white\"/>\\n<path d=\"M37.1816 11.447C37.1816 10.7157 37.1862 9.98677 37.1792 9.2555C37.1769 9.0102 37.2649 8.89913 37.5194 8.90607C37.9267 8.91764 38.334 8.91764 38.739 8.90607C39.0074 8.89913 39.093 9.01715 39.0907 9.27402C39.0815 10.4936 39.0861 11.7154 39.0884 12.935C39.0884 13.1294 39.093 13.3215 39.1324 13.5135C39.2805 14.2587 39.7341 14.6289 40.4676 14.5896C41.0971 14.5549 41.5599 14.0805 41.5877 13.3701C41.6201 12.5393 41.6108 11.7062 41.6155 10.8754C41.6178 10.3293 41.6201 9.78544 41.6155 9.2393C41.6131 9.00558 41.708 8.90144 41.9464 8.90607C42.3629 8.91532 42.7795 8.91532 43.1937 8.90607C43.4483 8.90144 43.5316 9.01715 43.5316 9.26245C43.5246 10.5931 43.5316 11.926 43.5269 13.2567C43.52 15.0779 42.4 16.2327 40.5764 16.3021C39.8937 16.3275 39.2296 16.2373 38.6186 15.9087C37.7277 15.4296 37.2857 14.6428 37.2186 13.664C37.1677 12.9281 37.2093 12.1852 37.2093 11.447C37.2024 11.447 37.1931 11.447 37.1862 11.447H37.1816Z\" fill=\"white\"/>\\n<path d=\"M1.36075 32.3146C1.36075 31.2246 1.36307 30.1347 1.35844 29.0424C1.35844 28.8341 1.41398 28.6883 1.64308 28.693C2.78858 28.7138 3.93408 28.6282 5.07727 28.7392C6.30608 28.8573 7.16 29.8037 7.18546 31.0418C7.19471 31.4422 7.16694 31.8332 7.02347 32.2128C6.68792 33.1014 6.00524 33.5295 5.10504 33.6753C4.56353 33.7632 4.01739 33.717 3.47357 33.7193C3.29769 33.7193 3.23752 33.7563 3.24215 33.9438C3.25604 34.5061 3.23752 35.0707 3.25141 35.6354C3.25835 35.8923 3.14496 35.9848 2.9066 35.9825C2.49931 35.9779 2.09434 35.9802 1.68705 35.9825C1.45795 35.9825 1.35612 35.8853 1.35844 35.6446C1.36538 34.5362 1.36075 33.4277 1.36075 32.3169V32.3146ZM3.90631 32.104C4.17244 32.1109 4.44088 32.1433 4.70469 32.0716C5.12124 31.9605 5.34571 31.6504 5.33183 31.1853C5.31563 30.6993 5.07727 30.4124 4.62832 30.3383C4.23492 30.2735 3.83689 30.3244 3.44117 30.3013C3.27455 30.292 3.24215 30.3591 3.24678 30.5096C3.25604 30.822 3.24447 31.1367 3.25141 31.4491C3.25835 31.6666 3.15421 31.9559 3.29538 32.0809C3.4134 32.185 3.69804 32.1017 3.90863 32.1017L3.90631 32.104Z\" fill=\"white\"/>\\n<path d=\"M15.6137 22.506C15.6137 21.416 15.6137 20.3237 15.6137 19.2338C15.6137 18.9052 15.6553 18.8658 15.9816 18.8658C17.0068 18.8658 18.0343 18.8566 19.0594 18.8704C20.2582 18.8866 21.1977 19.5763 21.4361 20.613C21.6953 21.7354 21.3944 22.9827 20.2096 23.4802C20.0383 23.552 20.1471 23.6306 20.198 23.707C20.6169 24.348 21.0357 24.989 21.4546 25.6301C21.5286 25.7411 21.6374 25.8453 21.561 26.005C21.4754 26.1831 21.3134 26.1345 21.1723 26.1345C20.7557 26.1392 20.3392 26.1276 19.9249 26.1392C19.7329 26.1461 19.6218 26.0744 19.5223 25.9147C19.1219 25.2621 18.7077 24.6188 18.3004 23.9708C18.1801 23.7811 17.752 23.6515 17.5599 23.744C17.4673 23.788 17.5067 23.8736 17.5067 23.9384C17.5043 24.5494 17.5067 25.158 17.5043 25.7689C17.5043 26.0906 17.4604 26.1322 17.1318 26.1345C16.743 26.1345 16.3542 26.1253 15.9677 26.1392C15.7016 26.1484 15.6091 26.0397 15.6114 25.7805C15.6183 24.6905 15.6137 23.5982 15.6137 22.5083V22.506ZM17.5067 21.3072C17.5067 21.5873 17.5136 21.8187 17.5043 22.0501C17.4997 22.1727 17.5437 22.2074 17.6617 22.2051C18.0574 22.1982 18.4555 22.2098 18.8512 22.1936C19.3325 22.1727 19.6102 21.8927 19.6542 21.4137C19.6982 20.9462 19.4552 20.6223 18.9947 20.5065C18.7933 20.4556 18.592 20.4718 18.3907 20.4718C18.106 20.4718 17.7242 20.37 17.5645 20.5135C17.3817 20.6778 17.5298 21.0666 17.5067 21.3072Z\" fill=\"white\"/>\\n<path d=\"M15.2594 11.4439C15.2594 10.7219 15.2594 10.0022 15.2594 9.28015C15.2594 8.9608 15.3103 8.9122 15.6296 8.90988C16.0091 8.90988 16.3887 8.90988 16.7659 8.90988C17.1246 8.90988 17.1685 8.95385 17.1685 9.3056C17.1685 10.5252 17.1685 11.747 17.1685 12.9666C17.1685 13.1517 17.1685 13.3345 17.2102 13.5173C17.3699 14.2694 17.8119 14.6305 18.5478 14.5911C19.1841 14.5564 19.6516 14.0681 19.6678 13.3415C19.6956 12.1219 19.6863 10.9 19.6886 9.68049C19.6886 8.81269 19.6308 8.9122 20.4662 8.90988C20.7439 8.90988 21.0216 8.90988 21.2993 8.90988C21.5052 8.90988 21.6071 9.00014 21.6047 9.21072C21.6024 10.6247 21.6371 12.0409 21.5909 13.4549C21.533 15.1673 20.4222 16.2226 18.675 16.3013C17.8952 16.336 17.1431 16.2249 16.4766 15.7806C15.5648 15.1743 15.2709 14.2579 15.257 13.2211C15.2478 12.6287 15.257 12.0386 15.257 11.4462L15.2594 11.4439Z\" fill=\"white\"/>\\n<path d=\"M23.2479 22.4914C23.2479 21.4199 23.2479 20.3462 23.2479 19.2747C23.2479 18.9114 23.2988 18.8628 23.6645 18.8628C25.1247 18.8628 26.5849 18.8628 28.0451 18.8628C28.42 18.8628 28.4501 18.8929 28.4501 19.2793C28.4501 19.557 28.4501 19.8347 28.4501 20.1101C28.4501 20.4665 28.4038 20.5128 28.0544 20.5128C27.1681 20.5128 26.2795 20.5197 25.3931 20.5082C25.1941 20.5058 25.1108 20.5452 25.1316 20.7627C25.1525 20.9826 25.1478 21.207 25.1316 21.4269C25.1177 21.6051 25.1849 21.6398 25.3492 21.6375C26.1707 21.6282 26.9945 21.6421 27.816 21.6282C28.0868 21.6236 28.1817 21.7323 28.1701 21.9892C28.1585 22.2854 28.1701 22.5816 28.1678 22.8755C28.1655 23.1949 28.1192 23.2388 27.7906 23.2388C26.9876 23.2388 26.1823 23.2458 25.3792 23.2342C25.1918 23.2319 25.1177 23.2712 25.1316 23.4726C25.1501 23.7294 25.1478 23.9909 25.1316 24.2478C25.1201 24.4353 25.1895 24.4746 25.3654 24.4746C26.2609 24.4653 27.1588 24.47 28.0544 24.47C28.4108 24.47 28.4501 24.5116 28.4524 24.8703C28.4524 25.1943 28.4524 25.5183 28.4524 25.8399C28.4524 26.0343 28.3691 26.1292 28.1678 26.1269C26.6243 26.1269 25.0807 26.1246 23.5372 26.1269C23.2711 26.1269 23.2456 25.958 23.2456 25.7566C23.2456 24.6667 23.2456 23.5744 23.2456 22.4844L23.2479 22.4914Z\" fill=\"white\"/>\\n<path d=\"M18.4487 28.6922C18.532 28.6922 18.6153 28.6922 18.6986 28.6922C19.5433 28.6991 19.3651 28.595 19.6543 29.3425C20.4388 31.3743 21.2094 33.413 21.9847 35.4495C22.149 35.8799 22.0819 35.9794 21.6237 35.9794C21.2719 35.9794 20.9202 35.9702 20.5707 35.9841C20.3324 35.9933 20.1935 35.9123 20.1195 35.6763C20.02 35.3616 19.8904 35.0561 19.7839 34.7414C19.74 34.6118 19.6821 34.5562 19.5317 34.5585C18.7842 34.5678 18.0344 34.5678 17.287 34.5585C17.1273 34.5585 17.0625 34.6118 17.0162 34.7529C16.9098 35.0769 16.7825 35.3916 16.6783 35.7156C16.6182 35.9031 16.5071 35.9841 16.3127 35.9794C15.9147 35.9748 15.519 35.9841 15.1209 35.9748C14.8155 35.9702 14.7345 35.8522 14.8409 35.5721C15.6786 33.3621 16.5187 31.1544 17.3564 28.9467C17.4235 28.7686 17.5299 28.6806 17.729 28.6899C17.9696 28.7014 18.2103 28.6922 18.4487 28.6922ZM17.6734 32.9942C18.1201 32.9942 18.5273 32.9896 18.9323 32.9965C19.0989 32.9988 19.1383 32.9687 19.0735 32.7975C18.849 32.2143 18.6431 31.6242 18.4116 30.9786C18.1594 31.6682 17.9234 32.3138 17.6734 32.9942Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1m1xwwx\",\"data-framer-name\":\"Navan\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:77,svg:'<svg width=\"77\" height=\"18\" viewBox=\"0 0 77 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.4006 17.6726H11.968C11.7769 6.71327 11.3065 4.0304 9.80699 4.0304C7.75625 4.0304 5.94807 10.2194 3.97083 17.6726H0.913086V1.20787H4.27954V8.73461C5.71286 4.26561 7.40343 0.972656 10.2995 0.972656C14.4892 0.972656 15.1874 6.10319 15.4006 17.6726ZM32.2917 17.6726H29.1604C26.0365 14.7545 23.2361 12.498 21.494 12.498C20.7443 12.498 20.2959 12.939 20.1048 13.8431L19.2889 17.6726H16.7531C18.6936 9.79306 19.7299 0.972656 24.5297 0.972656C29.3295 0.972656 30.3585 9.77101 32.2917 17.6726ZM20.9722 10.1018C21.1633 10.0724 21.3764 10.0503 21.5896 10.0503C23.5154 10.0503 25.6102 11.3734 27.8227 13.1816C26.5731 7.53651 25.5441 4.0304 24.0814 4.0304C22.8612 4.0304 21.9204 6.36045 20.9795 10.1018H20.9722ZM30.9466 1.20787H34.4306C36.0771 8.92572 37.2238 14.8501 38.9878 14.8501C40.7519 14.8501 42.0603 8.69051 43.6553 1.20787H46.1912C44.236 9.08743 43.229 17.9078 38.5689 17.9078C33.9161 17.9078 32.8797 9.08743 30.9466 1.20787ZM60.3773 17.6726H57.2461C54.1148 14.7545 51.3217 12.498 49.5797 12.498C48.8226 12.498 48.3816 12.939 48.1905 13.8431L47.3672 17.6726H44.824C46.7792 9.79306 47.8156 0.972656 52.6154 0.972656C57.4151 0.972656 58.4442 9.77101 60.3773 17.6726ZM49.0578 10.1018C49.2489 10.0724 49.4621 10.0503 49.6752 10.0503C51.601 10.0503 53.6959 11.3734 55.9083 13.1816C54.6588 7.53651 53.6297 4.0304 52.1596 4.0304C50.9395 4.0304 49.9986 6.36045 49.0578 10.1018ZM76.2761 17.6726H72.8361C72.6524 6.71327 72.1746 4.0304 70.6751 4.0304C68.6317 4.0304 66.8162 10.2194 64.839 17.6726H61.7812V1.20787H65.155V8.73461C66.581 4.26561 68.2789 0.972656 71.1823 0.972656C75.3647 0.972656 76.0703 6.10319 76.2834 17.6726H76.2761Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k74tfm\",\"data-framer-name\":\"Mixtiles\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:124,svg:'<svg width=\"124\" height=\"21\" viewBox=\"0 0 124 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.537378 20.8191C0.530639 18.5711 0.537378 16.3218 0.505033 14.0738C0.498294 13.6035 0.719318 13.5927 1.07377 13.594C2.88913 13.6048 4.70449 13.5819 6.51986 13.6089C7.09937 13.6169 7.30961 13.439 7.29883 12.8447C7.26649 11.0644 7.30827 9.28136 7.27457 7.50104C7.26514 6.9633 7.38509 6.77328 7.96595 6.78541C9.7584 6.82449 11.5522 6.77462 13.3447 6.81236C13.9835 6.82584 14.1519 6.59538 14.1412 5.997C14.1102 4.21667 14.1465 2.435 14.1196 0.653331C14.1128 0.182981 14.2463 0.0562959 14.7166 0.0616867C16.7341 0.0872932 18.7517 0.08325 20.7678 0.0643821C21.2085 0.060339 21.3972 0.142549 21.3905 0.639854C21.3622 2.66546 21.3635 4.69241 21.3905 6.71802C21.3972 7.2032 21.2314 7.30966 20.7759 7.30427C18.9835 7.28136 17.1897 7.32045 15.3972 7.28136C14.7557 7.26789 14.5279 7.44848 14.5428 8.10481C14.5819 9.86357 14.532 11.6237 14.5697 13.3811C14.5819 13.9283 14.3986 14.0401 13.8891 14.032C12.0967 14.0037 10.3029 14.0374 8.51042 14.0118C7.95382 14.0037 7.76514 14.1857 7.77457 14.7436C7.80692 16.7692 7.79748 18.7948 7.80422 20.8191H0.537378Z\" fill=\"white\"/>\\n<path d=\"M36.8217 10.8283C37.4808 9.10996 38.1196 7.47519 38.7287 5.82829C38.8635 5.46306 39.0293 5.30133 39.4444 5.31751C40.3177 5.35255 41.1937 5.34446 42.067 5.3202C42.4579 5.30942 42.6223 5.40106 42.6196 5.83098C42.6034 8.8822 42.6034 11.9348 42.6196 14.986C42.6223 15.4159 42.4659 15.521 42.0697 15.4994C41.5333 15.4711 40.9916 15.4644 40.4565 15.5008C40.0185 15.5304 39.939 15.3485 39.9417 14.9604C39.9579 13.0776 39.9498 11.1949 39.9498 9.28381C39.6668 9.38354 39.6775 9.61804 39.6115 9.78651C38.9579 11.4658 38.3096 13.145 37.6829 14.8337C37.5212 15.2676 37.3514 15.5183 36.8002 15.5183C36.2692 15.5183 36.1196 15.273 35.9673 14.8674C35.3339 13.18 34.6789 11.5008 34.0293 9.8202C33.9592 9.63961 33.8689 9.46575 33.6695 9.29999C33.6695 9.54796 33.6695 9.79459 33.6695 10.0426C33.6695 11.6908 33.6614 13.3391 33.6748 14.9873C33.6775 15.3377 33.6142 15.5224 33.2031 15.5008C32.6223 15.4698 32.0374 15.4752 31.4552 15.4994C31.0886 15.5143 31.0023 15.3593 31.0037 15.0264C31.0118 11.9523 31.0145 8.87815 31.001 5.80403C30.9996 5.41319 31.1411 5.31077 31.5118 5.3202C32.408 5.34176 33.3056 5.3485 34.2018 5.31751C34.5872 5.30403 34.7503 5.44689 34.877 5.7892C35.4323 7.29055 36.0131 8.78381 36.5872 10.2784C36.6479 10.4375 36.7207 10.5911 36.8217 10.8269V10.8283Z\" fill=\"white\"/>\\n<path d=\"M118.955 5.17871C120.305 5.20836 121.563 5.53451 122.692 6.3027C122.993 6.50755 123.071 6.67871 122.823 6.98464C122.459 7.43612 122.219 8.04259 121.766 8.35257C121.2 8.74071 120.823 7.9523 120.289 7.82831C119.632 7.67467 118.99 7.50216 118.308 7.56685C117.947 7.60189 117.629 7.72588 117.571 8.12211C117.51 8.53181 117.862 8.65176 118.153 8.73531C118.754 8.90782 119.367 9.03585 119.977 9.17871C120.522 9.3054 121.057 9.46173 121.567 9.70028C122.548 10.1585 123.2 10.8633 123.284 11.9806C123.378 13.2582 122.952 14.3094 121.838 15.0102C120.014 16.1571 116.405 15.7973 114.801 14.3391C114.586 14.1423 114.506 14.0008 114.704 13.7367C115.052 13.2731 115.378 12.7919 115.681 12.2987C115.87 11.9914 115.989 12.0601 116.226 12.2623C117.113 13.0156 118.153 13.366 119.323 13.3337C119.621 13.3256 119.905 13.2717 120.167 13.1383C120.39 13.0237 120.584 12.862 120.586 12.5803C120.587 12.2825 120.363 12.1342 120.13 12.0669C119.531 11.893 118.92 11.7488 118.311 11.6086C117.765 11.4833 117.225 11.3445 116.707 11.1275C115.574 10.6504 114.881 9.83505 114.839 8.59111C114.796 7.35122 115.363 6.40378 116.438 5.77709C117.211 5.32561 118.068 5.18275 118.955 5.18006V5.17871Z\" fill=\"white\"/>\\n<path d=\"M102.423 10.3734C102.423 8.88011 102.436 7.38685 102.413 5.89494C102.407 5.4758 102.498 5.31408 102.962 5.31947C105.116 5.34372 107.269 5.34103 109.421 5.32081C109.842 5.31677 109.944 5.45558 109.95 5.85585C109.979 7.66448 109.993 7.66313 108.21 7.66313C107.335 7.66313 106.461 7.6793 105.586 7.65639C105.204 7.64696 105.093 7.77499 105.086 8.15235C105.07 9.18739 105.051 9.18739 106.098 9.18739C107.152 9.18739 108.207 9.20491 109.261 9.1793C109.676 9.16987 109.838 9.25478 109.839 9.71704C109.843 11.4825 109.862 11.4825 108.078 11.4825C107.226 11.4825 106.373 11.4933 105.521 11.4771C105.203 11.4718 105.106 11.5823 105.087 11.899C105.013 13.178 105.001 13.1766 106.269 13.1766C107.302 13.1766 108.333 13.1928 109.365 13.1685C109.78 13.1591 109.95 13.2453 109.954 13.7116C109.967 15.492 109.985 15.492 108.196 15.492C106.469 15.492 104.742 15.4758 103.016 15.5028C102.554 15.5095 102.403 15.3963 102.412 14.9178C102.443 13.403 102.424 11.8882 102.424 10.372L102.423 10.3734Z\" fill=\"white\"/>\\n<path d=\"M65.8974 5.32923C64.857 6.87236 63.9216 8.30497 62.9311 9.69851C62.6184 10.1379 62.6386 10.4263 62.9405 10.8535C63.9931 12.3414 64.9998 13.8629 66.1063 15.491C65.047 15.491 64.1009 15.4896 63.1561 15.491C62.8691 15.491 62.799 15.2511 62.6831 15.0745C62.0564 14.1298 61.4392 13.1783 60.764 12.1446C60.1265 13.119 59.5119 14.0125 58.9513 14.9371C58.7033 15.3454 58.4311 15.53 57.9365 15.5031C57.1413 15.46 56.3408 15.491 55.4189 15.491C56.2478 14.2713 57.0092 13.1554 57.7653 12.0368C58.1521 11.4654 58.7923 10.9074 58.8381 10.3063C58.8839 9.69851 58.1777 9.14594 57.8003 8.57047C57.1157 7.53004 56.4122 6.50174 55.6238 5.33193C56.7154 5.33193 57.6818 5.32519 58.6481 5.33732C58.8866 5.34001 58.9446 5.58664 59.0483 5.74702C59.609 6.62708 60.1602 7.51387 60.764 8.47479C61.3489 7.53678 61.9028 6.68233 62.4176 5.80363C62.6211 5.45727 62.8475 5.29824 63.2667 5.31576C64.0915 5.34945 64.9176 5.32519 65.9014 5.32519L65.8974 5.32923Z\" fill=\"white\"/>\\n<path d=\"M73.5847 5.32583C74.7949 5.32583 76.0051 5.34066 77.214 5.31775C77.6237 5.30966 77.745 5.435 77.7545 5.8447C77.7936 7.6668 77.807 7.6668 75.9715 7.6668C75.8151 7.6668 75.6547 7.68432 75.5011 7.66411C75.0119 7.59807 74.9054 7.82583 74.9095 8.27462C74.9283 10.4781 74.9027 12.6816 74.9297 14.8851C74.9364 15.3824 74.807 15.5725 74.2963 15.5172C73.613 15.4431 72.6952 15.8083 72.3043 15.3609C71.9661 14.9741 72.1952 14.0873 72.1925 13.4229C72.1857 11.7531 72.1574 10.0832 72.2073 8.41478C72.2262 7.77192 72.0038 7.60885 71.4108 7.65872C70.8771 7.70319 70.3353 7.65602 69.7989 7.67219C69.4876 7.68163 69.3286 7.57785 69.365 7.25306C69.3677 7.23149 69.365 7.20858 69.365 7.18567C69.3066 5.94578 69.9072 5.32583 71.1669 5.32583C71.9728 5.32583 72.7801 5.32583 73.586 5.32583H73.5847Z\" fill=\"white\"/>\\n<path d=\"M91.0967 10.4062C91.0967 8.95881 91.1223 7.51137 91.0833 6.06528C91.0684 5.50463 91.1803 5.23509 91.807 5.31865C92.2032 5.37121 92.617 5.36447 93.0145 5.31865C93.5886 5.25396 93.7841 5.42242 93.7719 6.03563C93.7302 8.17174 93.7773 10.3106 93.7423 12.4467C93.7329 13.0329 93.8852 13.223 94.4862 13.1879C95.4027 13.1354 96.3245 13.1947 97.2423 13.165C97.683 13.1502 97.9161 13.2324 97.8555 13.7337C97.7854 14.2998 98.1008 15.0599 97.718 15.3901C97.3919 15.6704 96.652 15.4858 96.0954 15.4885C94.6156 15.4952 93.1372 15.4763 91.6574 15.4992C91.2261 15.506 91.0792 15.3928 91.0873 14.9453C91.1143 13.4319 91.0967 11.917 91.0967 10.4036V10.4062Z\" fill=\"white\"/>\\n<path d=\"M50.8971 10.3899C50.8971 11.9048 50.8836 13.4196 50.9065 14.9344C50.9133 15.3616 50.8014 15.5301 50.3486 15.5004C49.7906 15.4641 49.2273 15.4775 48.6666 15.4964C48.327 15.5085 48.195 15.4048 48.1963 15.0449C48.2084 11.9479 48.2084 8.85085 48.1963 5.75382C48.195 5.37376 48.3688 5.31312 48.6869 5.32255C49.2475 5.33872 49.8095 5.3495 50.3688 5.31985C50.7785 5.29694 50.9119 5.43037 50.9052 5.84411C50.8836 7.35894 50.8971 8.87376 50.8971 10.3886V10.3899Z\" fill=\"white\"/>\\n<path d=\"M82.6371 10.3244C82.6371 8.83379 82.6492 7.34188 82.629 5.85131C82.6236 5.45104 82.7288 5.29336 83.1519 5.32031C83.687 5.354 84.2288 5.354 84.7638 5.32031C85.1951 5.29336 85.2881 5.46856 85.2854 5.86074C85.2719 8.8877 85.2705 11.9147 85.2867 14.9403C85.2894 15.3756 85.1654 15.5346 84.7166 15.5023C84.2045 15.4659 83.6843 15.4618 83.1722 15.5023C82.7045 15.54 82.6223 15.3405 82.6277 14.9295C82.6479 13.3944 82.6358 11.858 82.6358 10.323L82.6371 10.3244Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1p59q69\",\"data-framer-name\":\"Flying Tiger\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:110,svg:'<svg width=\"110\" height=\"31\" viewBox=\"0 0 110 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M53.0479 5.45101C53.6179 5.45101 54.1888 5.46882 54.7578 5.4426C55.0113 5.43072 55.0693 5.53065 55.113 5.74486C55.3179 6.75258 55.4404 7.77366 55.6051 8.78732C55.8234 10.1285 55.9553 11.4766 56.0277 12.834C56.0669 13.5647 55.87 14.2499 55.7777 14.9563C55.6373 16.0343 55.0887 16.8862 54.3907 17.6792C53.7945 18.357 53.0087 18.6879 52.1902 18.9902C51.0701 19.4043 49.9009 19.524 48.7257 19.6229C48.3799 19.6521 48.0347 19.6813 47.6899 19.7194C47.5312 19.7367 47.4573 19.6872 47.4151 19.525C47.1537 18.5242 46.8858 17.5249 46.6075 16.5285C46.5529 16.3326 46.6224 16.3138 46.7881 16.3064C47.8392 16.2609 48.876 16.1347 49.8557 15.7172C50.2451 15.551 50.6112 15.3477 50.9039 15.035C50.9729 14.9613 51.1048 14.892 51.0577 14.7812C51.015 14.6818 50.8791 14.7303 50.7839 14.7283C49.5422 14.6981 48.3824 14.3691 47.4399 13.5608C46.1392 12.4447 45.5216 11.0353 45.9115 9.2939C45.9651 9.05347 46.0241 8.81453 46.0837 8.57559C46.2508 7.90674 46.6323 7.38433 47.2033 7.00489C48.2673 6.29745 49.3959 5.73843 50.6732 5.51829C51.1996 5.42726 51.7269 5.46041 52.2547 5.452C52.5191 5.44804 52.7835 5.4515 53.0479 5.4515V5.45101Z\" fill=\"white\"/>\\n<path d=\"M84.1981 5.45443C84.7928 5.45443 85.3881 5.46432 85.9824 5.44849C86.1679 5.44354 86.2185 5.51231 86.2508 5.67259C86.5464 7.12407 86.7081 8.59632 86.9472 10.0562C87.1075 11.0342 87.1114 12.0237 87.1839 13.0076C87.2399 13.7665 87.038 14.4962 86.8714 15.2224C86.4318 17.136 85.2383 18.3604 83.3751 18.9911C82.2535 19.3711 81.1036 19.5309 79.9349 19.6229C79.5644 19.6521 79.1943 19.6852 78.8247 19.7238C78.6863 19.7382 78.6114 19.6951 78.5747 19.5566C78.3083 18.5484 78.0414 17.5407 77.7651 16.5349C77.7165 16.3583 77.7542 16.3153 77.9358 16.3088C78.9964 16.2712 80.0401 16.1377 81.0272 15.7162C81.4325 15.543 81.8095 15.3258 82.1047 14.9909C82.1563 14.9321 82.258 14.8796 82.2213 14.7911C82.1846 14.7025 82.0769 14.7317 81.997 14.7317C81.0277 14.7332 80.119 14.4923 79.2737 14.0282C77.8986 13.2738 77.1505 12.0746 76.9714 10.5549C76.8727 9.71733 77.0875 8.88672 77.4134 8.1026C77.6049 7.64153 77.9402 7.28782 78.353 7.01375C79.4245 6.30236 80.559 5.73592 81.8472 5.52171C82.4971 5.41386 83.1494 5.47224 83.8007 5.45492C83.9327 5.45146 84.0651 5.45443 84.1971 5.45443H84.1981Z\" fill=\"white\"/>\\n<path d=\"M34.3317 10.564C34.3615 9.0086 34.3947 7.45324 34.4176 5.89738C34.42 5.71434 34.4677 5.65695 34.6582 5.62826C36.3611 5.3715 38.073 5.278 39.7934 5.29581C40.6546 5.30472 41.4458 5.56345 42.2097 5.9325C42.3312 5.99088 42.4319 6.07349 42.5202 6.17343C43.2256 6.97139 43.7336 7.86434 43.9107 8.93093C44.0541 9.79717 44.0169 10.6703 44.0541 11.5405C44.1121 12.902 43.9221 14.2515 43.87 15.6075C43.8641 15.7609 43.8065 15.7742 43.6761 15.7609C42.7236 15.6639 41.7707 15.5665 40.8163 15.4878C40.6223 15.472 40.597 15.4022 40.597 15.2345C40.599 13.5386 40.5916 11.8428 40.5901 10.1469C40.5901 9.84515 40.5206 9.58246 40.2706 9.38211C40.027 9.1867 39.4397 9.13673 39.1679 9.2896C39.0632 9.34847 39.0974 9.43059 39.1019 9.50281C39.2165 11.3792 39.0905 13.2552 39.1049 15.1316C39.1063 15.3117 39.0428 15.3409 38.8816 15.3453C37.4118 15.3839 35.9425 15.4279 34.4731 15.4804C34.2866 15.4868 34.239 15.4443 34.2434 15.2553C34.2821 13.6915 34.3084 12.1277 34.3387 10.564C34.3367 10.564 34.3342 10.564 34.3322 10.564H34.3317Z\" fill=\"white\"/>\\n<path d=\"M69.8526 6.84144C69.8526 7.36781 69.8397 7.89516 69.8585 8.42104C69.8665 8.63822 69.8114 8.70995 69.5907 8.70649C68.9622 8.6956 68.3381 8.62882 67.7126 8.58182C67.5067 8.56648 67.2433 8.47348 67.1099 8.56549C66.9486 8.67631 67.099 8.94246 67.1193 9.13688C67.2304 10.2 67.3013 11.2676 67.4521 12.3268C67.473 12.4752 67.532 12.5321 67.663 12.583C68.1551 12.774 68.6531 12.9447 69.172 13.0436C69.3069 13.0693 69.3421 13.1242 69.3451 13.2543C69.3709 14.2418 69.4051 15.2287 69.4349 16.2157C69.4374 16.3052 69.4751 16.3933 69.3178 16.4289C67.9313 16.742 66.5721 16.6634 65.3414 15.9416C64.261 15.3079 63.3452 14.4733 62.805 13.288C62.4786 12.5716 62.1845 11.8627 62.1656 11.0588C62.1473 10.2693 62.0838 9.4812 62.052 8.69165C62.0451 8.51108 62.0079 8.4339 61.8045 8.43588C61.3173 8.44033 60.8302 8.41065 60.3431 8.40818C60.1858 8.40719 60.1318 8.37355 60.1382 8.20287C60.1734 7.30646 60.1992 6.40955 60.2156 5.51265C60.2186 5.35088 60.2657 5.30289 60.4234 5.29646C60.8525 5.27865 61.2801 5.2371 61.7092 5.21929C61.865 5.21285 61.9106 5.16388 61.9116 5.00557C61.9176 4.30605 61.9444 3.60654 61.9523 2.90702C61.9543 2.72496 62.0089 2.64284 62.2023 2.62503C63.7882 2.47761 65.3736 2.32128 66.9596 2.16792C67.2691 2.13775 67.2631 2.13873 67.2438 2.43803C67.1952 3.18504 67.159 3.93304 67.1054 4.68005C67.0925 4.85864 67.1545 4.87744 67.3098 4.86507C68.0425 4.80769 68.7761 4.76712 69.5083 4.70776C69.6844 4.69341 69.7415 4.72359 69.7564 4.91603C69.805 5.55717 69.7717 6.20029 69.8526 6.84094V6.84144ZM66.4188 7.41381C66.2006 6.70391 66.3211 6.34326 66.8083 6.20425C67.0806 6.12658 67.3068 6.1904 67.5107 6.38482C67.7051 6.57033 67.8098 6.79246 67.8172 7.09225C68.1169 6.51641 67.9795 6.04446 67.4477 5.7788C66.7373 5.4236 66.0255 5.49335 65.3349 5.83272C65.1891 5.90446 65.0061 6.00439 65.014 6.23146C65.0254 6.55351 65.074 6.86815 65.1574 7.17982C65.1856 7.28568 65.2347 7.32526 65.3394 7.33664C65.6916 7.37523 66.0413 7.43706 66.4188 7.41381ZM64.252 7.0319C64.4728 6.59754 64.2942 5.99944 63.9103 5.85004C63.568 5.71696 63.2178 5.6477 62.8482 5.74615C62.562 5.82234 62.2718 5.88269 61.9826 5.94601C61.8551 5.97372 61.7643 6.03753 61.6934 6.15082C61.5431 6.39076 61.5664 7.07988 61.738 7.30349C61.7762 7.35296 61.8208 7.38957 61.8779 7.39551C62.2341 7.43063 62.5902 7.4341 62.9573 7.40936C62.683 6.75239 62.7812 6.45655 63.307 6.28984C63.8195 6.12708 64.0878 6.33238 64.252 7.03289V7.0319Z\" fill=\"white\"/>\\n<path d=\"M21.2108 10.3725C21.4321 9.53201 21.5769 8.74394 21.7411 7.95983C21.879 7.30038 22.0184 6.64143 22.1474 5.98C22.1836 5.79498 22.2595 5.73166 22.4569 5.74205C23.1346 5.77816 23.7958 5.92905 24.4675 6.00721C25.0742 6.07796 25.6789 6.16601 26.287 6.21944C26.4899 6.23725 26.482 6.30057 26.4373 6.45344C25.8694 8.39962 25.3058 10.3473 24.7418 12.2945C24.4104 13.4377 24.0726 14.579 23.7517 15.7248C23.6202 16.1943 23.6257 16.6865 23.585 17.1688C23.523 17.8985 23.4818 18.6302 23.452 19.3614C23.4451 19.5365 23.3479 19.5385 23.2377 19.5533C22.2322 19.6918 21.2272 19.8294 20.2212 19.9659C19.9107 20.008 19.5996 20.0475 19.2941 20.0871C19.2474 20.0282 19.2643 19.9689 19.2678 19.913C19.3422 18.6643 19.4215 17.4157 19.491 16.1665C19.5183 15.6758 19.4126 15.2043 19.232 14.7487C18.3406 12.4963 17.3113 10.3043 16.3157 8.09736C16.1336 7.69318 15.9496 7.28999 15.7551 6.89175C15.6911 6.76065 15.7105 6.71069 15.841 6.6345C16.3464 6.33916 16.9125 6.21895 17.4591 6.04234C17.7017 5.96417 17.9472 5.89244 18.1854 5.8024C18.4101 5.71682 18.5738 5.77569 18.6864 5.97753C18.7821 6.14969 18.8669 6.32778 18.9562 6.50341C19.6215 7.81686 20.3998 9.06402 21.2113 10.371L21.2108 10.3725Z\" fill=\"white\"/>\\n<path d=\"M88.6895 10.015C88.7272 9.09633 88.8755 8.17716 89.2113 7.28965C89.503 6.5189 90.0397 5.95641 90.6826 5.47407C90.8409 5.35534 91.0125 5.25244 91.1598 5.12184C91.774 4.57667 92.5156 4.4708 93.3043 4.37285C94.6725 4.20317 95.7266 4.71519 96.6771 5.6116C97.7798 6.65148 98.2813 7.95009 98.3944 9.42729C98.4088 9.61577 98.4143 9.80574 98.4376 9.99324C98.4525 10.1159 98.4143 10.1585 98.2922 10.1936C97.5566 10.4043 96.7941 10.4246 96.0441 10.534C95.3883 10.6294 94.7255 10.6082 94.0683 10.6784C93.6218 10.7264 93.598 10.7823 93.7696 11.2053C94.0549 11.9087 94.852 12.1101 95.4275 11.9181C95.8719 11.7697 96.1517 11.9132 96.4637 12.162C97.0178 12.6038 97.5982 13.0115 98.2079 13.3746C98.3468 13.4572 98.3637 13.5096 98.2605 13.6467C97.4623 14.7133 96.3725 15.2901 95.1035 15.625C94.5132 15.7808 93.9532 15.7383 93.3693 15.6675C92.5617 15.5696 91.7814 15.387 91.0279 15.0818C90.7541 14.971 90.5408 14.7944 90.3175 14.6069C89.3785 13.8178 89.12 12.7176 88.8829 11.6025C88.7733 11.0865 88.7024 10.5656 88.6895 10.0145V10.015Z\" fill=\"white\"/>\\n<path d=\"M2.03847 12.5354C2.06575 11.5317 2.08807 10.5274 2.12428 9.52415C2.12974 9.36732 2.07269 9.32577 1.93727 9.31043C1.51909 9.26146 1.1024 9.2011 0.684215 9.15658C0.569624 9.14421 0.512081 9.13679 0.521506 8.99233C0.569624 8.22801 0.589963 7.4627 0.556727 6.69738C0.550774 6.5648 0.622207 6.57173 0.703561 6.56282C1.1138 6.51879 1.52405 6.4708 1.93479 6.43321C2.34305 6.3961 2.2984 6.42974 2.29394 6.04783C2.28203 5.05396 2.5251 4.13133 2.99636 3.26064C3.12038 3.03159 3.27316 2.83816 3.49788 2.69717C3.76278 2.53045 4.03313 2.36621 4.27273 2.16733C4.88934 1.6568 5.60962 1.46139 6.38893 1.37728C7.11914 1.29863 7.84636 1.19672 8.57954 1.1418C8.75515 1.12894 8.83353 1.17891 8.85238 1.35601C8.93869 2.18465 8.9625 3.01378 8.92828 3.84638C8.92133 4.01012 8.8618 4.09126 8.70802 4.14815C8.22188 4.32723 7.74219 4.52462 7.25704 4.70717C7.13055 4.75466 7.05465 4.81254 7.03927 4.96145C6.99661 5.37849 6.94006 5.79404 6.88103 6.2091C6.86218 6.34169 6.9227 6.3595 7.03233 6.36048C7.45348 6.36296 7.87464 6.3773 8.2958 6.37483C8.46991 6.37384 8.55573 6.42183 8.54928 6.6118C8.51853 7.48347 8.49174 8.35564 8.47239 9.22782C8.46942 9.37178 8.38906 9.35891 8.29728 9.3599C7.79329 9.36584 7.28929 9.38315 6.78628 9.37326C6.58785 9.3693 6.54122 9.43065 6.53874 9.61913C6.51692 11.6276 6.48219 13.6362 6.46285 15.6442C6.46086 15.8663 6.40679 15.9311 6.17761 15.9232C4.86503 15.8777 3.55195 15.8445 2.23937 15.8178C2.02011 15.8134 1.9457 15.752 1.95413 15.522C1.99134 14.5266 2.0087 13.5308 2.0335 12.5354C2.03549 12.5354 2.03698 12.5354 2.03896 12.5354H2.03847Z\" fill=\"white\"/>\\n<path d=\"M14.8433 8.82717C14.8835 9.70676 14.9023 10.5883 14.9698 11.4659C15.0318 12.2728 14.9122 13.0777 14.9881 13.8841C15.0412 14.449 15.0387 15.0189 15.0739 15.5854C15.0839 15.7462 15.0427 15.8105 14.877 15.8125C13.3903 15.8288 11.9031 15.8481 10.4164 15.8713C10.2413 15.8743 10.1843 15.8035 10.1887 15.6363C10.2056 14.9779 10.1932 14.3184 10.2314 13.6615C10.3212 12.1145 10.2334 10.5661 10.2879 9.01911C10.3663 6.78154 10.4402 4.54348 10.5067 2.30542C10.5136 2.07934 10.5791 1.9987 10.8128 1.98831C12.0752 1.93142 13.3372 1.86365 14.5982 1.78449C14.8482 1.76866 14.9043 1.85771 14.9013 2.08379C14.882 3.63124 14.8706 5.17918 14.8601 6.72713C14.8557 7.42665 14.8591 8.12666 14.8591 8.82667C14.8537 8.82667 14.8482 8.82667 14.8428 8.82667L14.8433 8.82717Z\" fill=\"white\"/>\\n<path d=\"M109.215 7.37257C109.215 7.65753 109.213 8.22545 109.217 8.79338C109.218 8.89875 109.211 8.95812 109.077 8.95515C108.194 8.93684 107.309 8.99324 106.43 8.85967C106.256 8.83345 106.098 8.78249 105.946 8.69097C105.542 8.44758 105.1 8.29174 104.65 8.15372C104.495 8.10623 104.46 8.13146 104.455 8.2957C104.408 9.99057 104.353 11.6854 104.299 13.3803C104.274 14.162 104.243 14.9436 104.227 15.7252C104.223 15.8895 104.17 15.9266 104.012 15.9202C102.733 15.8687 101.457 15.7757 100.185 15.6268C99.9931 15.6045 100.032 15.4937 100.04 15.3878C100.09 14.7066 100.141 14.0254 100.199 13.3452C100.305 12.1158 100.382 10.884 100.531 9.65813C100.696 8.31153 100.837 6.96197 101.072 5.62477C101.109 5.41106 101.19 5.34081 101.412 5.32547C103.809 5.16172 106.206 4.98165 108.603 4.81394C109.099 4.77931 109.107 4.75557 109.13 5.26413C109.156 5.87262 109.18 6.48111 109.217 7.37257H109.215Z\" fill=\"white\"/>\\n<path d=\"M31.8621 10.7665C31.9266 12.3456 31.9867 13.9242 32.0601 15.5028C32.0705 15.7323 32.0234 15.8169 31.7729 15.8184C30.4186 15.8253 29.0639 15.8456 27.7096 15.8733C27.4859 15.8778 27.4288 15.8065 27.4328 15.5923C27.4755 13.3627 27.5008 11.1325 27.5504 8.90338C27.5712 7.96591 27.6397 7.02942 27.6828 6.09245C27.6883 5.97322 27.7012 5.89901 27.8545 5.88962C29.0415 5.81887 30.2261 5.71795 31.4157 5.68134C31.5977 5.6759 31.6578 5.71993 31.6642 5.90644C31.7198 7.52661 31.7853 9.14678 31.8478 10.7669C31.8527 10.7669 31.8572 10.7669 31.8621 10.7665Z\" fill=\"white\"/>\\n<path d=\"M71.1401 12.7165C71.0265 10.7703 71.2442 8.83453 71.3137 6.89428C71.3196 6.73202 71.3588 6.67859 71.5325 6.66523C72.6605 6.57866 73.7885 6.49604 74.9186 6.42926C75.1701 6.41441 75.2232 6.50791 75.2311 6.72064C75.2613 7.52652 75.2976 8.3324 75.3368 9.13828C75.4389 11.2512 75.5406 13.3641 75.6518 15.476C75.6632 15.6966 75.6235 15.7743 75.3814 15.7758C74.0351 15.7852 72.6888 15.8089 71.3425 15.8396C71.1014 15.845 71.028 15.7664 71.0324 15.5289C71.0503 14.5905 71.1505 13.655 71.1406 12.716L71.1401 12.7165Z\" fill=\"white\"/>\\n<path d=\"M71.8987 27.2289C71.4681 27.2175 71.0415 27.2556 70.6169 27.1893C69.6272 27.0354 68.8856 26.5595 68.4793 25.6131C68.1693 24.8914 68.5255 23.7308 69.1966 23.3306C70.0414 22.827 70.9333 22.5123 71.9389 22.5786C72.358 22.6063 72.7807 22.589 73.2018 22.5796C73.3273 22.5771 73.3789 22.6192 73.3978 22.7359C73.6076 24.042 73.9087 25.3421 73.8819 26.6694C73.8651 27.4876 73.7187 28.3044 73.0942 28.9416C72.8362 29.2052 72.5579 29.4189 72.2142 29.5594C71.4418 29.8756 70.6327 30.0012 69.8063 30.0482C69.3132 30.0759 69.3132 30.0774 69.1738 29.6005C69.1138 29.3957 69.0543 29.1914 68.9947 28.9866C68.9813 28.9396 68.9694 28.8921 68.954 28.8327C70.1382 28.6734 71.3386 28.5413 71.8987 27.2289Z\" fill=\"white\"/>\\n<path d=\"M31.3096 22.345C31.45 22.345 31.5909 22.3549 31.7308 22.3435C32.7938 22.2579 33.4377 22.8659 33.9402 23.6841C34.3604 24.3683 34.3897 25.1064 34.1848 25.8688C34.093 26.2096 34.0151 26.5549 33.9531 26.9017C33.908 27.154 33.7706 27.3222 33.5851 27.4885C32.8117 28.1811 31.9222 28.2948 30.95 28.0579C30.6062 27.9743 30.2619 27.8946 29.9231 27.7902C29.7029 27.7225 29.5466 27.5988 29.436 27.4034C29.0828 26.779 28.7663 26.1295 28.6259 25.4295C28.5079 24.8413 28.7003 24.2585 28.9037 23.6995C29.0873 23.1939 29.4132 22.8085 29.8874 22.5404C30.0953 22.4231 30.3056 22.3534 30.5417 22.3544C30.7977 22.3554 31.0536 22.3544 31.3096 22.3544C31.3096 22.3509 31.3096 22.3479 31.3096 22.3445V22.345Z\" fill=\"white\"/>\\n<path d=\"M35.9339 26.1928C35.9339 25.1559 35.9374 24.119 35.9305 23.0821C35.9295 22.9144 35.9771 22.8565 36.1492 22.851C37.1647 22.8184 38.1796 22.7749 39.1946 22.7358C39.4758 22.7249 39.712 22.8466 39.9109 23.0252C40.6108 23.655 40.8946 24.445 40.779 25.3746C40.7502 25.6076 40.6361 25.8104 40.4744 25.983C40.1624 26.3165 39.8226 26.6019 39.3707 26.7449C38.955 26.8765 38.5487 27.0501 38.1181 27.1149C37.8651 27.153 37.8239 27.2505 37.8329 27.479C37.8577 28.1123 37.8507 28.7465 37.8646 29.3802C37.8681 29.5291 37.8512 29.5974 37.6687 29.586C37.125 29.5509 36.5798 29.5326 36.0351 29.5232C35.866 29.5202 35.8189 29.4782 35.8203 29.3035C35.8298 28.2666 35.8253 27.2297 35.8253 26.1928C35.862 26.1928 35.8982 26.1928 35.9349 26.1928H35.9339Z\" fill=\"white\"/>\\n<path d=\"M55.8474 24.6894C55.8682 23.3072 55.9099 21.9507 56.1068 20.6036C56.1192 20.5185 56.1316 20.4621 56.2368 20.476C56.7358 20.5403 57.2354 20.6036 57.7349 20.664C57.8664 20.6798 57.8321 20.7758 57.8316 20.85C57.8272 21.3274 57.8252 21.8048 57.8078 22.2821C57.8019 22.4429 57.8416 22.4894 58.0087 22.487C58.601 22.4795 59.1884 22.4647 59.7703 22.6601C60.3368 22.8506 60.5898 23.2948 60.8155 23.7697C60.9598 24.074 61.0074 24.4114 61.0243 24.7522C61.0724 25.7154 61.063 26.6766 60.9648 27.6369C60.9549 27.7348 60.942 27.7888 60.8249 27.7779C60.4385 27.7413 60.052 27.7076 59.6646 27.6829C59.5064 27.6725 59.5589 27.5627 59.5584 27.4865C59.5525 26.6306 59.5485 25.7743 59.55 24.9185C59.5505 24.6137 59.4994 24.3322 59.298 24.0888C59.0713 23.8143 58.3342 23.8009 58.1025 24.072C58.0202 24.1685 58.0157 24.2828 58.0216 24.398C58.0737 25.3934 58.0216 26.3897 58.037 27.3851C58.039 27.5275 58.0137 27.5834 57.852 27.5849C57.2408 27.5914 56.6297 27.6092 56.0195 27.6379C55.8474 27.6458 55.8013 27.6062 55.8018 27.4301C55.8042 26.508 55.8836 25.5878 55.8474 24.6899V24.6894Z\" fill=\"white\"/>\\n<path d=\"M81.4551 25.202C81.4551 24.4451 81.4601 23.6882 81.4516 22.9313C81.4497 22.7522 81.5037 22.6939 81.6863 22.68C82.6496 22.6068 83.6125 22.5425 84.5793 22.5435C85.0327 22.544 85.4678 22.631 85.877 22.8131C86.3116 23.006 86.5204 23.4117 86.7059 23.8139C86.8473 24.1206 86.9138 24.456 86.9272 24.7949C86.9654 25.7734 86.9674 26.7515 86.8612 27.7275C86.8478 27.8517 86.8051 27.872 86.694 27.8636C86.126 27.822 85.5575 27.78 84.9891 27.7552C84.7931 27.7468 84.7296 27.6919 84.7321 27.4851C84.743 26.6461 84.74 25.8066 84.7242 24.9675C84.7128 24.3704 84.2678 24.0053 83.6725 24.0756C83.3486 24.1137 83.1874 24.3031 83.2057 24.6227C83.2608 25.5765 83.2092 26.5313 83.2221 27.4851C83.2241 27.6167 83.176 27.6543 83.0524 27.6573C82.541 27.6701 82.0291 27.686 81.5181 27.7107C81.3539 27.7186 81.3782 27.6207 81.3782 27.5217C81.3787 26.7485 81.3782 25.9753 81.3782 25.202C81.404 25.202 81.4293 25.202 81.4551 25.202Z\" fill=\"white\"/>\\n<path d=\"M48.6371 25.225C48.6371 24.4597 48.6421 23.6938 48.6336 22.9285C48.6317 22.7494 48.6887 22.6935 48.8698 22.6772C49.8326 22.5916 50.7965 22.5357 51.7638 22.5481C52.1914 22.5535 52.6031 22.6515 52.9821 22.8365C53.3795 23.0304 53.5853 23.4138 53.7599 23.7933C53.9038 24.1064 53.9609 24.4503 53.9772 24.7995C54.0224 25.7627 54.0139 26.7244 53.9222 27.6852C53.9103 27.8113 53.8969 27.8771 53.7416 27.8647C53.1572 27.8172 52.5719 27.7782 51.9865 27.7485C51.8288 27.7406 51.7851 27.6921 51.7866 27.5343C51.794 26.6616 51.7871 25.7889 51.7891 24.9163C51.7896 24.5809 51.6755 24.3098 51.3937 24.1114C51.1249 23.9224 50.85 23.9447 50.5742 24.0772C50.4011 24.1604 50.3704 24.3241 50.3803 24.4977C50.4383 25.4768 50.3823 26.4568 50.3996 27.4358C50.4026 27.61 50.347 27.6599 50.1789 27.6619C49.6917 27.6683 49.2041 27.6832 48.718 27.7104C48.5528 27.7193 48.5523 27.6431 48.5528 27.5214C48.5567 26.7561 48.5548 25.9903 48.5548 25.225C48.5825 25.225 48.6103 25.225 48.6381 25.225H48.6371Z\" fill=\"white\"/>\\n<path d=\"M77.8593 22.2147C78.9427 22.2216 79.9621 22.9805 80.165 24.048C80.2111 24.29 80.2414 24.5348 80.2841 24.7777C80.3054 24.8989 80.2732 24.9454 80.1397 24.9682C79.5196 25.0746 78.8941 25.1166 78.2676 25.1483C78.1118 25.1562 77.9575 25.1973 77.8018 25.2042C77.5369 25.2156 77.4878 25.3724 77.5012 25.595C77.5329 26.1144 77.9208 26.4949 78.4432 26.5082C78.7681 26.5166 79.0861 26.4612 79.3941 26.3687C79.5301 26.3282 79.6144 26.3489 79.6838 26.4662C79.8302 26.7135 79.972 26.9639 80.1268 27.2063C80.1983 27.3176 80.099 27.3334 80.0514 27.3715C79.2647 28.0008 78.3817 28.2323 77.389 28.0057C77.2764 27.98 77.1643 27.9533 77.0507 27.9325C76.1548 27.7673 75.6275 27.2439 75.4008 26.3578C75.1826 25.505 75.1483 24.6734 75.4425 23.8363C75.569 23.4767 75.7759 23.1788 76.078 22.9448C76.6033 22.5382 77.1341 22.2097 77.8588 22.2147H77.8593Z\" fill=\"white\"/>\\n<path d=\"M45.3637 26.4903C45.5299 26.4868 45.8092 26.4472 46.0751 26.3582C46.2755 26.2914 46.3812 26.3582 46.471 26.5264C46.5796 26.7287 46.6897 26.932 46.8217 27.1195C46.9055 27.2388 46.8762 27.2867 46.774 27.3674C45.9327 28.0333 44.9947 28.2044 43.9579 27.9556C43.3969 27.8205 42.8641 27.6652 42.4935 27.1715C42.2663 26.8692 42.2078 26.514 42.1046 26.1722C41.866 25.3826 41.9067 24.5995 42.1731 23.8228C42.2996 23.4542 42.5084 23.145 42.8239 22.915C43.0898 22.7211 43.3631 22.5366 43.6384 22.3555C43.8339 22.2269 44.0685 22.2655 44.2848 22.2239C45.3211 22.025 46.0265 22.5529 46.6247 23.2875C46.906 23.6328 46.9179 24.083 46.9789 24.503C47.0389 24.9146 47.0246 24.9206 46.6069 24.9824C45.9942 25.0724 45.3766 25.1071 44.7595 25.1511C44.7184 25.1541 44.6772 25.157 44.6365 25.1635C44.2491 25.2278 44.1568 25.3782 44.266 25.7645C44.4044 26.2543 44.7283 26.4942 45.3632 26.4903H45.3637Z\" fill=\"white\"/>\\n<path d=\"M65.338 27.8805C64.769 27.8854 64.2015 28.0155 63.6315 27.926C63.0745 27.8384 62.6434 27.6059 62.4256 27.0439C62.1027 26.2108 62.5481 25.263 63.4108 25.0087C63.8176 24.8885 64.2367 24.8454 64.6594 24.8617C64.8529 24.8692 64.9297 24.7974 64.9297 24.6085C64.9297 24.4868 64.9669 24.3646 64.9669 24.2429C64.9674 23.809 64.8409 23.6458 64.4188 23.5142C64.0234 23.391 63.6177 23.4004 63.2153 23.4444C63.0085 23.4672 62.9772 23.4033 63.0065 23.2213C63.0457 22.9784 63.0685 22.7315 63.0864 22.4857C63.0968 22.3422 63.1489 22.2878 63.3012 22.2942C64.2214 22.3313 65.1277 22.4678 66.0017 22.7498C66.5077 22.9131 66.8192 23.3158 66.9829 23.8184C67.1496 24.3294 67.159 24.8598 67.0906 25.3827C67.0087 26.0065 67.0107 26.6298 67.0068 27.2551C67.0028 27.8651 67.0013 27.8686 66.4026 27.8795C66.0479 27.8859 65.6927 27.8805 65.3375 27.8805H65.338Z\" fill=\"white\"/>\\n<path d=\"M25.2028 24.9349C25.181 25.2778 25.1264 25.6231 25.307 25.9481C25.556 26.3973 25.8199 26.5096 26.3065 26.3473C26.3224 26.3419 26.3388 26.3399 26.3547 26.3345C26.8919 26.146 26.8983 26.14 27.2585 26.5507C27.4271 26.7431 27.5898 26.9385 27.7873 27.1018C27.89 27.1864 27.9058 27.2452 27.7952 27.3511C27.2858 27.8389 26.6627 28.1342 25.9816 28.1669C25.2767 28.201 24.5301 28.105 23.9373 27.7033C23.3212 27.2858 23.0033 26.6343 22.9298 25.864C22.8485 25.0096 22.9264 24.1869 23.2811 23.4048C23.4661 22.9967 23.7523 22.6632 24.1864 22.4792C24.6953 22.2635 25.2345 22.1586 25.7757 22.1468C26.5734 22.1289 27.2714 22.4233 27.8423 22.9937C27.9068 23.058 27.8994 23.0936 27.8384 23.151C27.6151 23.3598 27.4078 23.5834 27.256 23.851C27.1806 23.9836 27.0928 23.9163 27.005 23.8758C26.6761 23.7249 26.3576 23.5606 25.9692 23.6086C25.5044 23.6665 25.2336 23.9213 25.2058 24.3903C25.1954 24.5708 25.2043 24.7519 25.2043 24.933L25.2028 24.9349Z\" fill=\"white\"/>\\n<path d=\"M75.0562 2.70193C75.0284 3.30746 74.9585 3.81157 74.8657 4.3137C74.828 4.51702 74.7258 4.67929 74.5814 4.82127C74.1295 5.26601 72.8209 5.67959 71.9811 5.26997C71.2737 4.92516 70.8952 4.38444 70.8769 3.60082C70.8491 2.41451 71.482 1.38799 72.5183 0.962539C73.0283 0.753277 73.5298 0.759709 73.9946 1.10798C74.2064 1.26678 74.4163 1.42559 74.5963 1.61951C74.9049 1.95146 75.1212 2.31903 75.0562 2.70144V2.70193Z\" fill=\"white\"/>\\n<path d=\"M29.7175 5.05082C28.9029 5.14926 28.0537 4.5007 28.2089 3.44301C28.2471 3.18329 28.2868 2.92307 28.3101 2.66187C28.3632 2.06179 28.6167 1.59231 29.1758 1.32319C29.8177 1.01449 30.4764 0.973922 31.1337 1.26481C31.8734 1.59231 32.2087 2.44519 31.9418 3.31389C31.7662 3.88677 31.4299 4.3602 30.9606 4.73222C30.5975 5.01965 30.1605 5.05477 29.7175 5.05131V5.05082Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})],speed:30,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{y:(componentViewport?.y||0)+0+1215.5952},OQzcYzjPf:{y:(componentViewport?.y||0)+0+1478.581}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:644,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1822.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u76van-container\",nodeId:\"zF6IzfeO3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{variant:\"LPkmpzJIv\"},OQzcYzjPf:{variant:\"T7KaQgLSV\"}},children:/*#__PURE__*/_jsx(CpCretivePerformanceNew,{height:\"100%\",id:\"zF6IzfeO3\",layoutId:\"zF6IzfeO3\",style:{width:\"100%\"},variant:\"j1n_gZ1tm\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12f3ogi\",\"data-framer-name\":\"DR video ads\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jehqg0\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ff84z\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lt7qvp\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-abojeg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ekia7c\",\"data-styles-preset\":\"UbDGjDiwv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Paid Social Videos\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ekia7c\",\"data-styles-preset\":\"UbDGjDiwv\",style:{\"--framer-text-alignment\":\"left\"},children:\"Paid Social Videos\"})}),className:\"framer-198v3pm\",\"data-framer-name\":\"DR Video Ads\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yto8xk\",\"data-styles-preset\":\"GSKOyKdAm\",style:{\"--framer-text-color\":\"var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42))\"},children:\"There aren't many creative agencies that truly understand performance. We craft strategies based on your goals, all backed by data. We speak the language of the platform, tap into consumer psychology, and produce all content in-house to deliver cutting edge social-first creatives.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kn9nmc\",\"data-styles-preset\":\"ctyWJhsLH\",children:\"There aren't many creative agencies that truly understand performance. We craft strategies based on your goals, all backed by data. We speak the language of the platform, tap into consumer psychology, and produce all content in-house to deliver cutting edge social-first creatives.\"})}),className:\"framer-150u6o7\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uxnyfyUqR\"},implicitPathVariables:undefined},{href:{webPageId:\"uxnyfyUqR\"},implicitPathVariables:undefined},{href:{webPageId:\"uxnyfyUqR\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{y:(componentViewport?.y||0)+0+1859.5952+32+0+0+40+309+0+171},OQzcYzjPf:{y:(componentViewport?.y||0)+0+2122.581+96+0+0+30+0+179}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+2466.2+120+0+0+0+0+179,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ac2i4m-container\",nodeId:\"D6It8Xu76\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{HD9J17O_6:resolvedLinks1[2],variant:\"t4D_XAnRu\"},OQzcYzjPf:{HD9J17O_6:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{HD9J17O_6:resolvedLinks1[0],height:\"100%\",id:\"D6It8Xu76\",layoutId:\"D6It8Xu76\",rPnNJHft5:\"View Our Process\",variant:\"gFQaIgvFs\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r9ux2p\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mstx3v\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8l3354\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:986.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1859.5952+32+0+0+40+0+0+-3.4343+0+0+-268.5328),pixelHeight:3840,pixelWidth:1973,sizes:\"144px\",src:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=1024 526w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048 1052w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png 1973w\"}},OQzcYzjPf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:986.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2122.581+96+0+0+107+-144.1663+0+0+-229.5836),pixelHeight:3840,pixelWidth:1973,sizes:\"184px\",src:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=1024 526w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048 1052w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png 1973w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:986.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2466.2+120+0+0+16.5+-184.9343+0+0+-128.3156),pixelHeight:3840,pixelWidth:1973,sizes:\"288px\",src:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=1024 526w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048 1052w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png 1973w\"},className:\"framer-wwxxjl\",\"data-framer-name\":\"Phone\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{width:\"137.4857px\",y:(componentViewport?.y||0)+0+1859.5952+32+0+0+40+0+0+-3.4343+0+-260.7828},OQzcYzjPf:{width:\"175.6762px\",y:(componentViewport?.y||0)+0+2122.581+96+0+0+107+-144.1663+0+-221.8336}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:802,width:\"274.9714px\",y:(componentViewport?.y||0)+0+2466.2+120+0+0+16.5+-184.9343+0+-120.5656,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-jo6yp4-container\",\"data-framer-appear-id\":\"jo6yp4\",initial:animation2,nodeId:\"s8pyswrp2\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ElementsVimeoAutoplay,{height:\"100%\",id:\"s8pyswrp2\",layoutId:\"s8pyswrp2\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yachqYzVz:\"https://vimeo.com/1026148896\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xw8gt5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:986.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1859.5952+32+0+0+40+0+0+-3.4343+0+-268.5328),pixelHeight:3840,pixelWidth:1973,sizes:\"144px\",src:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=1024 526w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048 1052w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png 1973w\"}},OQzcYzjPf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:986.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2122.581+96+0+0+107+-144.1663+0+-229.5836),pixelHeight:3840,pixelWidth:1973,sizes:\"184px\",src:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=1024 526w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048 1052w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png 1973w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:986.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2466.2+120+0+0+16.5+-184.9343+0+-128.3156),pixelHeight:3840,pixelWidth:1973,sizes:\"288px\",src:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=1024 526w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048 1052w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png 1973w\"},className:\"framer-1s4xc21\",\"data-framer-name\":\"Phone\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{width:\"136.8px\",y:(componentViewport?.y||0)+0+1859.5952+32+0+0+40+0+0+-3.4343+0+-258.7828},OQzcYzjPf:{width:\"174.8px\",y:(componentViewport?.y||0)+0+2122.581+96+0+0+107+-144.1663+0+-219.8336}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:798,width:\"273.6px\",y:(componentViewport?.y||0)+0+2466.2+120+0+0+16.5+-184.9343+0+-118.5656,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-16luv70-container\",\"data-framer-appear-id\":\"16luv70\",initial:animation2,nodeId:\"RR9dlxwOU\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ElementsVimeoAutoplay,{height:\"100%\",id:\"RR9dlxwOU\",layoutId:\"RR9dlxwOU\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yachqYzVz:\"https://vimeo.com/1026148933\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d0gffi\",\"data-framer-name\":\"BG\"})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rcm5dz\",\"data-framer-name\":\"Scroll graphic ads\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rlcbxg\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-110l6zz\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rvyizg\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6090a0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:986.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2536.5952+0+0+0+40+0+0+-89.4571+0+-268.5214),pixelHeight:3840,pixelWidth:1973,sizes:\"144px\",src:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=1024 526w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048 1052w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png 1973w\"}},OQzcYzjPf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:986.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2566.581+64+0+0+85+-144.1809+0+-229.569),pixelHeight:3840,pixelWidth:1973,sizes:\"184px\",src:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=1024 526w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048 1052w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png 1973w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:986.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2870.2+60+0+0+24.5+-185+0+-128.25),pixelHeight:3840,pixelWidth:1973,sizes:\"288px\",src:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=1024 526w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png?scale-down-to=2048 1052w,https://framerusercontent.com/images/jUs6cRe3zZTi1kAa3LIVz9T0OZ0.png 1973w\"},className:\"framer-1c4tl7j\",\"data-framer-name\":\"Phone\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{width:\"135.0857px\",y:(componentViewport?.y||0)+0+2536.5952+0+0+0+40+0+0+-89.4571+-253.4286},OQzcYzjPf:{width:\"172.6095px\",y:(componentViewport?.y||0)+0+2566.581+64+0+0+85+-144.1809+-214.381}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:788,width:\"270.1714px\",y:(componentViewport?.y||0)+0+2870.2+60+0+0+24.5+-185+-112.8142,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-1c95jzb-container\",\"data-framer-appear-id\":\"1c95jzb\",initial:animation2,nodeId:\"YN3HbL6tF\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ElementsVimeoAutoplay,{height:\"100%\",id:\"YN3HbL6tF\",layoutId:\"YN3HbL6tF\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yachqYzVz:\"https://vimeo.com/1026148860\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vsdd6h\",\"data-framer-name\":\"Right\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1knkqbs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ekia7c\",\"data-styles-preset\":\"UbDGjDiwv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Scroll-Stopping\"}),/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ekia7c\",\"data-styles-preset\":\"UbDGjDiwv\",style:{\"--framer-text-alignment\":\"center\"},children:\"Graphic Ads\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ekia7c\",\"data-styles-preset\":\"UbDGjDiwv\",style:{\"--framer-text-alignment\":\"left\"},children:\"Scroll-Stopping\"}),/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ekia7c\",\"data-styles-preset\":\"UbDGjDiwv\",style:{\"--framer-text-alignment\":\"left\"},children:\"Graphic Ads\"})]}),className:\"framer-1xdynut\",\"data-framer-name\":\"DR Video Ads\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yto8xk\",\"data-styles-preset\":\"GSKOyKdAm\",style:{\"--framer-text-color\":\"var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42))\"},children:\"Add diversity to your creative strategy by exploring different execution styles for both static and animated graphics. We blend direct response copywriting with native or branded styles to deliver conversion-focused graphics.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kn9nmc\",\"data-styles-preset\":\"ctyWJhsLH\",children:\"Add diversity to your creative strategy by exploring different execution styles for both static and animated graphics. We blend direct response copywriting with native or branded styles to deliver conversion-focused graphics.\"})}),className:\"framer-1k6pktr\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"v7AHZVURx\"},implicitPathVariables:undefined},{href:{webPageId:\"v7AHZVURx\"},implicitPathVariables:undefined},{href:{webPageId:\"v7AHZVURx\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{y:(componentViewport?.y||0)+0+2536.5952+0+0+0+40+215+0+210},OQzcYzjPf:{y:(componentViewport?.y||0)+0+2566.581+64+0+0+0+0+195}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+2870.2+60+0+0+0+0+195,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q91wi7-container\",nodeId:\"pOmrL9rQF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{HD9J17O_6:resolvedLinks2[2],variant:\"t4D_XAnRu\"},OQzcYzjPf:{HD9J17O_6:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{HD9J17O_6:resolvedLinks2[0],height:\"100%\",id:\"pOmrL9rQF\",layoutId:\"pOmrL9rQF\",rPnNJHft5:\"View Our Portfolio\",variant:\"gFQaIgvFs\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yk4gpq\",\"data-framer-name\":\"BG\"})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{y:(componentViewport?.y||0)+0+3150.5952},OQzcYzjPf:{y:(componentViewport?.y||0)+0+2966.581}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:516,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3290.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zq3g5w-container\",nodeId:\"ff1sIA0qm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{variant:\"LhxO9AyT1\"},OQzcYzjPf:{variant:\"khGmnLpMe\"}},children:/*#__PURE__*/_jsx(SectionQuote,{bTbZqKaVi:\"\u201CThe ad performance was outstanding, ranking among the top performers. They delivered exceptional results, they were fast, professional, and delivered on time.\u201D\",GKA9nC0_k:\"\u201CMight be one of the best creative agencies I've worked with. They are quick to respond and make edits, do amazing work converting angles into solid creatives, and go above and beyond in delivering ads.\u201D\",height:\"100%\",id:\"ff1sIA0qm\",layoutId:\"ff1sIA0qm\",RHi_oMwT7:\"\u201CThey absolutely nailed it, \\u2028with everything from creative strategy, to finding the perfect talent and ad structure.\u201D\",style:{width:\"100%\"},TFysv1fhc:'\"Creative Milkshake has proven to be a great sparring partner to discuss any new angles, audiences, or concepts we could try out. They understood our product quickly and were able to get into the minds of our customers.\"',UJZa9XDlG:\"\u201CWe've worked with other UGC agencies and creators and none have been as professional as Creative Milkshake, we look forward to continuing our partnership for a long time.\u201D\",uqMMk71Fm:\"\u201CThey just get it! In an ever-changing, ever-growing market, [they] always hit the mark and are ahead of the social trends. Taking risks and pushing boundaries is what makes the team strategic trailblazers.\u201D\",variant:\"wg7F87m0v\",VoQKRkC6J:\"\\\"What I love most is that it's a hands-off approach for us. Everything is taken care of, and I'm part of the entire process. They take the least amount of my time but produce great content every time.\\\"\",width:\"100%\",YRuinxKiP:\"\u201CThey truly understand paid strategy and get creative \u2013 often you seem to find one or the other.\u201D\",zJpir2ivT:'\"Creative Milkshake brought \\u2028a professional touch to our ideation and editing processes, enhancing the overall quality of our campaigns.\"'})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cjhdwa\",\"data-framer-name\":\"Studio Production\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5hy7qc\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lbhezb\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c79db3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-1ekia7c\",\"data-styles-preset\":\"UbDGjDiwv\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Repurpose & Optimize\",/*#__PURE__*/_jsx(\"br\",{}),\"Existing Content\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-1ekia7c\",\"data-styles-preset\":\"UbDGjDiwv\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Repurpose & Optimize\",/*#__PURE__*/_jsx(\"br\",{}),\"Existing Content\"]})}),className:\"framer-1jhvej8\",\"data-framer-name\":\"DR Video Ads\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yto8xk\",\"data-styles-preset\":\"GSKOyKdAm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42))\"},children:\"The key to top-performing ads is a well-executed creative testing plan. We leverage data-driven insights to identify winning ad combinations that drive unmatched ROAs.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kn9nmc\",\"data-styles-preset\":\"ctyWJhsLH\",children:\"Transform your asset-filled folders into profitable ads. \\u2028\\u2028Our specialists curate your content and turn them into native ads for Meta, TikTok, or YouTube, that are designed to convert.\"})}),className:\"framer-1ud36se\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WW3s48ZOn\"},implicitPathVariables:undefined},{href:{webPageId:\"WW3s48ZOn\"},implicitPathVariables:undefined},{href:{webPageId:\"uxnyfyUqR\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{y:(componentViewport?.y||0)+0+3666.5952+72+0+0+343+0+171},OQzcYzjPf:{y:(componentViewport?.y||0)+0+3482.581+96+0+0+165}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+3806.2+200+0+0+165,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jlh8n2-container\",nodeId:\"y29yhxZ7k\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{HD9J17O_6:resolvedLinks3[2],rPnNJHft5:\"View Process\",variant:\"t4D_XAnRu\"},OQzcYzjPf:{HD9J17O_6:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button,{HD9J17O_6:resolvedLinks3[0],height:\"100%\",id:\"y29yhxZ7k\",layoutId:\"y29yhxZ7k\",rPnNJHft5:\"Get Started\",variant:\"gFQaIgvFs\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u319do\",\"data-framer-name\":\"right\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3666.5952+72+0+0+0+326-51),pixelHeight:67,pixelWidth:146,src:\"https://framerusercontent.com/images/vMibIRwyRO0e03ggaf0Y5dtDwA.svg\"}},OQzcYzjPf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3482.581+96+0+210-13),pixelHeight:67,pixelWidth:146,src:\"https://framerusercontent.com/images/vMibIRwyRO0e03ggaf0Y5dtDwA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3806.2+200+0+210-19),pixelHeight:67,pixelWidth:146,src:\"https://framerusercontent.com/images/vMibIRwyRO0e03ggaf0Y5dtDwA.svg\"},className:\"framer-5lda7y\",\"data-framer-name\":\"graphic bot\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3666.5952+72+0+0+0+10),pixelHeight:118,pixelWidth:109,src:\"https://framerusercontent.com/images/0YpudFcjBCpa29L7niboV3elXcc.svg\"}},OQzcYzjPf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3482.581+96+0+-63),pixelHeight:118,pixelWidth:109,src:\"https://framerusercontent.com/images/0YpudFcjBCpa29L7niboV3elXcc.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3806.2+200+0+-124),pixelHeight:118,pixelWidth:109,src:\"https://framerusercontent.com/images/0YpudFcjBCpa29L7niboV3elXcc.svg\"},className:\"framer-19pwux3\",\"data-framer-name\":\"graphic top\"})}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-124pady\",\"data-framer-name\":\"big video\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4319,intrinsicWidth:5532,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3666.5952+72+0+0+0+22.5+281-211),pixelHeight:4319,pixelWidth:5532,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 350px) - 36px)`,src:\"https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png\",srcSet:\"https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png?scale-down-to=512 512w,https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png 5532w\"}},OQzcYzjPf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4319,intrinsicWidth:5532,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3482.581+96+0+210-268+0),pixelHeight:4319,pixelWidth:5532,sizes:\"386.8173px\",src:\"https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png\",srcSet:\"https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png?scale-down-to=512 512w,https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png 5532w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4319,intrinsicWidth:5532,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3806.2+200+0+210-291+0),pixelHeight:4319,pixelWidth:5532,sizes:\"416.2769px\",src:\"https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png\",srcSet:\"https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png?scale-down-to=512 512w,https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/O1kv4IcJkC5nEbWNqbBdST1KfCo.png 5532w\"},className:\"framer-msg7kg\",\"data-framer-name\":\"Tablet\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nzvpey-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"l5RgzrNDQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"l5RgzrNDQ\",isMixedBorderRadius:false,layoutId:\"l5RgzrNDQ\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/zSuW0R1l2iRsR8LkGr78rmvH0.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/32RLDGouV6e8ZeR1KUHqU730Es.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1yfdd2v\",\"data-framer-name\":\"Phone Bot\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:486,intrinsicWidth:377,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3666.5952+72+0+0+0+326-183+146-209),pixelHeight:3537,pixelWidth:2741,src:\"https://framerusercontent.com/images/shZI3WOveOOrKzGm0twWS3u85E.png\"}},OQzcYzjPf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:486,intrinsicWidth:377,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3482.581+96+0+210-148+169-209),pixelHeight:3537,pixelWidth:2741,src:\"https://framerusercontent.com/images/shZI3WOveOOrKzGm0twWS3u85E.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:486,intrinsicWidth:377,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3806.2+200+0+210-131+204-209),pixelHeight:3537,pixelWidth:2741,src:\"https://framerusercontent.com/images/shZI3WOveOOrKzGm0twWS3u85E.png\"},className:\"framer-1jnhfuy\",\"data-framer-name\":\"Mockup1\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8j879v-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RhBRVJcwP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"RhBRVJcwP\",isMixedBorderRadius:false,layoutId:\"RhBRVJcwP\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/Y9FRnPoNE36SRZJ9G0s5O1OsGw.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-wldqi9\",\"data-framer-name\":\"Phone Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:486,intrinsicWidth:377,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3666.5952+72+0+0+0+-19+204-209),pixelHeight:3536,pixelWidth:2741,src:\"https://framerusercontent.com/images/VQBurIcThU7IHm4e8gakOGXn8.png\"}},OQzcYzjPf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:486,intrinsicWidth:377,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3482.581+96+0+-72+155-209),pixelHeight:3536,pixelWidth:2741,src:\"https://framerusercontent.com/images/VQBurIcThU7IHm4e8gakOGXn8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:486,intrinsicWidth:377,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3806.2+200+0+-139+204-209),pixelHeight:3536,pixelWidth:2741,src:\"https://framerusercontent.com/images/VQBurIcThU7IHm4e8gakOGXn8.png\"},className:\"framer-1xb8xsj\",\"data-framer-name\":\"Mockup1\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u3461q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fiMo1IsPD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"fiMo1IsPD\",isMixedBorderRadius:false,layoutId:\"fiMo1IsPD\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/JtDsZkzc97wC07Go0kpxSgv6gVY.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kn129l\",\"data-framer-name\":\"Creative Testing\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xbe9ix\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oclysd\",\"data-framer-name\":\"left\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{height:253.5,width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 350px) + 10px)`,y:(componentViewport?.y||0)+0+4353.5952+56+0+0+0+-2.5},OQzcYzjPf:{height:253.5,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 750px) - 50px) / 2, 1px) + 10px)`,y:(componentViewport?.y||0)+0+3884.581+96+0+-16.75}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 50px) / 2, 1px) + 10px)`,y:(componentViewport?.y||0)+0+4416.2+160+0+220-322,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OQzcYzjPf:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-p219ty-container\",\"data-framer-appear-id\":\"p219ty\",initial:animation2,nodeId:\"EWC9rEAki\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsVimeoAutoplay,{height:\"100%\",id:\"EWC9rEAki\",layoutId:\"EWC9rEAki\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yachqYzVz:\"https://vimeo.com/1029312728\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sx7t9l\",\"data-framer-name\":\"right\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ryld6h\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-1ekia7c\",\"data-styles-preset\":\"UbDGjDiwv\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Optimized Monthly \",/*#__PURE__*/_jsx(\"br\",{}),\"Deliverables\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-1ekia7c\",\"data-styles-preset\":\"UbDGjDiwv\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Optimized Monthly \",/*#__PURE__*/_jsx(\"br\",{}),\"Deliverables\"]})}),className:\"framer-ek59h0\",\"data-framer-name\":\"DR Video Ads\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yto8xk\",\"data-styles-preset\":\"GSKOyKdAm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42))\"},children:\"The key to top-performing ads is a well-executed creative testing plan. We analyze performance metrics monthly, and use the data-driven insights to inform the next round of creatives. By following the data, we ensure each month\u2019s content grows stronger and more impactful.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yto8xk\",\"data-styles-preset\":\"GSKOyKdAm\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2a5dd054-dc91-4422-b401-643bc738343b, rgb(42, 42, 42))\"},children:\"The key to top-performing ads is a well-executed creative testing plan. We analyze performance metrics monthly, and use the data-driven insights to inform the next round of creatives. By following the data, we ensure each month\u2019s content grows stronger and more impactful.\"})}),className:\"framer-tjmxub\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uKzKVeJ1t\"},implicitPathVariables:undefined},{href:{webPageId:\"uKzKVeJ1t\"},implicitPathVariables:undefined},{href:{webPageId:\"uxnyfyUqR\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{y:(componentViewport?.y||0)+0+4353.5952+56+0+0+281+0+167},OQzcYzjPf:{y:(componentViewport?.y||0)+0+3884.581+96+0+0+175}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+4416.2+160+0+0+175,children:/*#__PURE__*/_jsx(Container,{className:\"framer-126a6zn-container\",nodeId:\"m7KpoibWg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{HD9J17O_6:resolvedLinks4[2],rPnNJHft5:\"View Process\",variant:\"t4D_XAnRu\"},OQzcYzjPf:{HD9J17O_6:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button,{HD9J17O_6:resolvedLinks4[0],height:\"100%\",id:\"m7KpoibWg\",layoutId:\"m7KpoibWg\",rPnNJHft5:\"View Pricing\",variant:\"gFQaIgvFs\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{y:(componentViewport?.y||0)+0+4958.5952},OQzcYzjPf:{y:(componentViewport?.y||0)+0+4296.581}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:815,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4956.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f9roi4-container\",nodeId:\"YmxWP_T7S\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{variant:\"WawjxZfCQ\"},OQzcYzjPf:{variant:\"RLpH0rRSK\"}},children:/*#__PURE__*/_jsx(Slideshow,{height:\"100%\",id:\"YmxWP_T7S\",layoutId:\"YmxWP_T7S\",style:{width:\"100%\"},variant:\"yYJDJHjA2\",width:\"100%\",ZsTig9tW9:0})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{y:(componentViewport?.y||0)+0+5773.5952},OQzcYzjPf:{y:(componentViewport?.y||0)+0+5111.581}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:620,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5771.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rjf74z-container\",nodeId:\"OPusH0EqD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{variant:\"PYCxo7LAa\"},OQzcYzjPf:{variant:\"RRDX85gZ0\"}},children:/*#__PURE__*/_jsx(SectionLocalization,{height:\"100%\",id:\"OPusH0EqD\",layoutId:\"OPusH0EqD\",style:{width:\"100%\"},variant:\"HgmJeak5D\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{y:(componentViewport?.y||0)+0+6393.5952},OQzcYzjPf:{y:(componentViewport?.y||0)+0+5731.581}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:554,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6391.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1euq02g-container\",nodeId:\"wFTcSfKoA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{variant:\"GA47dWQ_t\"},OQzcYzjPf:{variant:\"WaHrM1Z6Z\"}},children:/*#__PURE__*/_jsx(SectionCTA,{height:\"100%\",id:\"wFTcSfKoA\",layoutId:\"wFTcSfKoA\",style:{width:\"100%\"},variant:\"hpYJ6jglE\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{y:(componentViewport?.y||0)+0+6947.5952},OQzcYzjPf:{y:(componentViewport?.y||0)+0+6285.581}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:206,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6945.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6ol0ct-container\",\"data-framer-name\":\"Section / Media\",name:\"Section / Media\",nodeId:\"Py1BmQeiz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{variant:\"IUD3cZOH3\"},OQzcYzjPf:{variant:\"i2S_sleiS\"}},children:/*#__PURE__*/_jsx(SectionMedia,{height:\"100%\",id:\"Py1BmQeiz\",layoutId:\"Py1BmQeiz\",name:\"Section / Media\",OO20RlKAD:\"var(--token-ca112a6a-7ca5-4393-871c-63649586a670, rgb(250, 245, 236))\",style:{width:\"100%\"},variant:\"c1lLGGh1X\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{y:(componentViewport?.y||0)+0+7153.5952},OQzcYzjPf:{y:(componentViewport?.y||0)+0+6491.581}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7151.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ivmm9l-container\",nodeId:\"x9Q8jLrDl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GoYWNyyha:{variant:\"pD1RUsiC2\"},OQzcYzjPf:{variant:\"SX5Ubq_OZ\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"x9Q8jLrDl\",layoutId:\"x9Q8jLrDl\",style:{width:\"100%\"},variant:\"FLuxuDHnI\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aw4oB.framer-lux5qc, .framer-aw4oB .framer-lux5qc { display: block; }\",\".framer-aw4oB.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-ca112a6a-7ca5-4393-871c-63649586a670, #faf5ec); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-aw4oB .framer-1cveeis { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 24px 30px 0px 30px; position: sticky; top: 0px; width: 100%; z-index: 9; }\",\".framer-aw4oB .framer-imbr45-container { flex: 1 0 0px; height: auto; max-width: 1260px; position: sticky; top: 0px; width: 1px; z-index: 9; }\",\".framer-aw4oB.framer-irakqg { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-aw4oB.framer-1ueqy3o { cursor: pointer; flex: none; height: 100%; left: 0px; overflow: hidden; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-aw4oB.framer-1h8eq74-container { flex: none; height: 90%; left: calc(50.00000000000002% - 93.33333333333333% / 2); position: fixed; top: calc(50.00000000000002% - 90% / 2); width: 93%; z-index: 10; }\",\".framer-aw4oB .framer-529kc0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 72px 30px 80px 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-aw4oB .framer-xvircc-container { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 49.57282440457927%, rgba(0, 0, 0, 0) 100%) add; flex: none; height: 498px; left: 0px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 49.57282440457927%, rgba(0, 0, 0, 0) 100%) add; mix-blend-mode: darken; opacity: 0.41; position: absolute; right: 0px; top: calc(50.200000000000024% - 498px / 2); z-index: 0; }\",\".framer-aw4oB .framer-dpzflc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-aw4oB .framer-xvokd7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aw4oB .framer-83ltv1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-1obezlw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-1gqxzlt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-aw4oB .framer-1pdwe5v { align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; width: 33px; }\",\".framer-aw4oB .framer-tm6awn { bottom: -10px; flex: none; left: -77px; position: absolute; top: -33px; width: 70px; z-index: 1; }\",\".framer-aw4oB .framer-edj1xf { bottom: -152px; flex: none; height: 96px; position: absolute; right: -196px; width: 82px; z-index: 1; }\",\".framer-aw4oB .framer-1ad5jai { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 224px; justify-content: center; overflow: visible; padding: 0px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-1hrexy0-container { flex: none; height: 224px; position: relative; width: 100%; z-index: 2; }\",\".framer-aw4oB .framer-1v4v3p6 { bottom: 0px; flex: none; height: 5px; left: 0px; overflow: visible; position: absolute; width: 36px; z-index: 1; }\",\".framer-aw4oB .framer-ukex1p { bottom: -3px; flex: none; height: 27px; left: 0px; position: absolute; width: 666px; }\",\".framer-aw4oB .framer-4zpl7m, .framer-aw4oB .framer-c79db3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-addi1e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-1fnh6d-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-aw4oB.framer-1dkfiz0 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-aw4oB.framer-os28t1 { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 707px; justify-content: center; left: calc(50.00000000000002% - 90% / 2); overflow: hidden; padding: 0px; position: fixed; top: calc(50.00000000000002% - 707px / 2); width: 90%; will-change: var(--framer-will-change-override, transform); z-index: 9; }\",\".framer-aw4oB .framer-qrx17o-container { flex: none; height: 100%; position: relative; width: 100%; z-index: 10; }\",\".framer-aw4oB .framer-yfgicr, .framer-aw4oB .framer-1i9hygr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-aw4oB .framer-xf3gbx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 28px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 156px; }\",\".framer-aw4oB .framer-ysjnzd { flex: none; height: 20px; position: relative; width: 50px; }\",\".framer-aw4oB .framer-1vhscqb { flex: none; height: 20px; overflow: visible; position: relative; width: 81px; }\",\".framer-aw4oB .framer-1284abb { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 187px; }\",\".framer-aw4oB .framer-1m251ao { flex: none; height: 100px; overflow: visible; position: relative; width: 100%; }\",\".framer-aw4oB .framer-1mswe5u { align-content: center; align-items: center; bottom: -132px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: -42px; overflow: visible; padding: 0px; position: absolute; width: min-content; }\",\".framer-aw4oB .framer-1bahuom { aspect-ratio: 0.9912663755458515 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 229px); position: relative; width: 227px; }\",\".framer-aw4oB .framer-1t4q8bi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-1dygm03 { flex: none; height: 42px; overflow: visible; position: relative; width: 101px; }\",\".framer-aw4oB .framer-u0e5yv { flex: none; height: 42px; overflow: visible; position: relative; width: 170px; }\",\".framer-aw4oB .framer-x6nwf4 { flex: none; height: 106px; overflow: hidden; position: absolute; right: 20px; top: 30px; width: 107px; z-index: 2; }\",\".framer-aw4oB .framer-1sh4i85 { aspect-ratio: 0.9912663755458515 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 106px); left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-aw4oB .framer-hauphf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 72px 0px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-m2zvud { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-aw4oB .framer-94yq2x, .framer-aw4oB .framer-oosuay, .framer-aw4oB .framer-1gfm8sh, .framer-aw4oB .framer-ifmjx9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-aw4oB .framer-4j39by-container, .framer-aw4oB .framer-yuduxb-container, .framer-aw4oB .framer-2dvb3k-container, .framer-aw4oB .framer-r0sxvw-container, .framer-aw4oB .framer-dj4rb8-container, .framer-aw4oB .framer-gustlt-container, .framer-aw4oB .framer-1kaukdj-container, .framer-aw4oB .framer-1ug5djm-container { aspect-ratio: 0.5562913907284768 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 453px); position: relative; width: 252px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-aw4oB .framer-xkk9ds-container, .framer-aw4oB .framer-8nu9o1-container, .framer-aw4oB .framer-drc2gp-container, .framer-aw4oB .framer-1ac2i4m-container, .framer-aw4oB .framer-q91wi7-container, .framer-aw4oB .framer-1jlh8n2-container, .framer-aw4oB .framer-126a6zn-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-aw4oB .framer-ainlba-container, .framer-aw4oB .framer-16l9y3h-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 252px); position: relative; width: 252px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-aw4oB .framer-1t29l90 { 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: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-aw4oB .framer-1a4zd36 { align-content: center; align-items: center; align-self: stretch; 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: auto; }\",\".framer-aw4oB .framer-1nhy66r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-1p2a26a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-eze216 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-seqwq8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-aw4oB .framer-7bg4t4-container { flex: none; height: 60px; position: relative; width: 228px; }\",\".framer-aw4oB .framer-vyq4az-container { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 49.57282440457927%, rgba(0, 0, 0, 0) 100%) add; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 49.57282440457927%, rgba(0, 0, 0, 0) 100%) add; mix-blend-mode: darken; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-aw4oB .framer-marjco, .framer-aw4oB .framer-1b0wjcu { align-content: center; align-items: center; background-color: var(--token-fbd44840-817d-4361-be53-e8a88247dd39, #242423); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-aw4oB .framer-15lpkgs-container, .framer-aw4oB .framer-6zqxv5-container, .framer-aw4oB .framer-9ecuzv-container, .framer-aw4oB .framer-pc8fr4-container { flex: none; height: 60px; max-width: 1638px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-1ho2om2, .framer-aw4oB .framer-3wvvm8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-aw4oB .framer-tlmi8 { flex: none; height: 39px; position: relative; width: 106px; }\",\".framer-aw4oB .framer-mzxzx7 { flex: none; height: 21px; position: relative; width: 166px; }\",\".framer-aw4oB .framer-1hks58i { flex: none; height: 21px; position: relative; width: 88px; }\",\".framer-aw4oB .framer-fuooe5 { flex: none; height: 45px; position: relative; width: 72px; }\",\".framer-aw4oB .framer-1gc9u90 { flex: none; height: 25px; position: relative; width: 151px; }\",\".framer-aw4oB .framer-1m0tmcj { flex: none; height: 19px; position: relative; width: 108px; }\",\".framer-aw4oB .framer-1p7mfw0 { flex: none; height: 17px; position: relative; width: 84px; }\",\".framer-aw4oB .framer-up6veg { flex: none; height: 23px; position: relative; width: 109px; }\",\".framer-aw4oB .framer-1h3nhc7 { flex: none; height: 47px; position: relative; width: 47px; }\",\".framer-aw4oB .framer-xtu4za { flex: none; height: 24px; position: relative; width: 128px; }\",\".framer-aw4oB .framer-1ejhq6n { flex: none; height: 22px; position: relative; width: 135px; }\",\".framer-aw4oB .framer-axfe5a { flex: none; height: 24px; position: relative; width: 76px; }\",\".framer-aw4oB .framer-116e4kb { flex: none; height: 24px; position: relative; width: 145px; }\",\".framer-aw4oB .framer-hizgz9 { flex: none; height: 27px; position: relative; width: 112px; }\",\".framer-aw4oB .framer-1b3io5n { flex: none; height: 32px; position: relative; width: 122px; }\",\".framer-aw4oB .framer-1iagh27 { flex: none; height: 30px; position: relative; width: 95px; }\",\".framer-aw4oB .framer-1tomrrx { flex: none; height: 30px; position: relative; width: 156px; }\",\".framer-aw4oB .framer-1fhzf8x { flex: none; height: 24px; position: relative; width: 108px; }\",\".framer-aw4oB .framer-1hm5lz4 { flex: none; height: 28px; position: relative; width: 144px; }\",\".framer-aw4oB .framer-18c8owt { flex: none; height: 30px; position: relative; width: 43px; }\",\".framer-aw4oB .framer-t5hqrb { flex: none; height: 28px; position: relative; width: 98px; }\",\".framer-aw4oB .framer-2qwrwz { flex: none; height: 16px; position: relative; width: 82px; }\",\".framer-aw4oB .framer-1kg0e18 { flex: none; height: 32px; position: relative; width: 85px; }\",\".framer-aw4oB .framer-2nzbta { flex: none; height: 33px; position: relative; width: 65px; }\",\".framer-aw4oB .framer-1hym7nj { flex: none; height: 37px; position: relative; width: 38px; }\",\".framer-aw4oB .framer-13nc5r0 { flex: none; height: 45px; position: relative; width: 44px; }\",\".framer-aw4oB .framer-1qr76gz { flex: none; height: 18px; position: relative; width: 77px; }\",\".framer-aw4oB .framer-1vgawf8 { flex: none; height: 21px; position: relative; width: 124px; }\",\".framer-aw4oB .framer-1ruxy8j { flex: none; height: 31px; position: relative; width: 110px; }\",\".framer-aw4oB .framer-1pgn7wy, .framer-aw4oB .framer-p1b2rv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-aw4oB .framer-7r0ru1 { flex: none; height: 24px; position: relative; width: 65px; }\",\".framer-aw4oB .framer-kuobbv { flex: none; height: 13px; position: relative; width: 101px; }\",\".framer-aw4oB .framer-1xhl44b, .framer-aw4oB .framer-1m1xwwx { flex: none; height: 13px; position: relative; width: 54px; }\",\".framer-aw4oB .framer-1mrk15r { flex: none; height: 27px; position: relative; width: 44px; }\",\".framer-aw4oB .framer-oj2kq2 { flex: none; height: 15px; position: relative; width: 91px; }\",\".framer-aw4oB .framer-3anofr { flex: none; height: 11px; position: relative; width: 66px; }\",\".framer-aw4oB .framer-uyg9x2 { flex: none; height: 11px; position: relative; width: 52px; }\",\".framer-aw4oB .framer-rb6b2z { flex: none; height: 14px; position: relative; width: 66px; }\",\".framer-aw4oB .framer-1nu5d0n { flex: none; height: 29px; position: relative; width: 29px; }\",\".framer-aw4oB .framer-1loazzx { flex: none; height: 15px; position: relative; width: 78px; }\",\".framer-aw4oB .framer-1y4dr8m { flex: none; height: 13px; position: relative; width: 82px; }\",\".framer-aw4oB .framer-1sokecw { flex: none; height: 15px; position: relative; width: 46px; }\",\".framer-aw4oB .framer-12nfswq { flex: none; height: 15px; position: relative; width: 89px; }\",\".framer-aw4oB .framer-1lhhtbh { flex: none; height: 16px; position: relative; width: 68px; }\",\".framer-aw4oB .framer-1mzz1g2 { flex: none; height: 22px; position: relative; width: 87px; }\",\".framer-aw4oB .framer-1y6migi { flex: none; height: 22px; position: relative; width: 68px; }\",\".framer-aw4oB .framer-1yae4tn { flex: none; height: 22px; position: relative; width: 111px; }\",\".framer-aw4oB .framer-1qjb7eo { flex: none; height: 17px; position: relative; width: 77px; }\",\".framer-aw4oB .framer-mthk3r { flex: none; height: 20px; position: relative; width: 102px; }\",\".framer-aw4oB .framer-1sjskgf { flex: none; height: 22px; position: relative; width: 31px; }\",\".framer-aw4oB .framer-im4p99 { flex: none; height: 20px; position: relative; width: 70px; }\",\".framer-aw4oB .framer-1mdqjnw { flex: none; height: 11px; position: relative; width: 58px; }\",\".framer-aw4oB .framer-1gnydvl { flex: none; height: 22px; position: relative; width: 60px; }\",\".framer-aw4oB .framer-owzlf6 { flex: none; height: 23px; position: relative; width: 46px; }\",\".framer-aw4oB .framer-1boucl7 { flex: none; height: 26px; position: relative; width: 27px; }\",\".framer-aw4oB .framer-17dda53 { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-aw4oB .framer-k74tfm { flex: none; height: 13px; position: relative; width: 80px; }\",\".framer-aw4oB .framer-1p59q69 { flex: none; height: 20px; position: relative; width: 71px; }\",\".framer-aw4oB .framer-u76van-container, .framer-aw4oB .framer-zq3g5w-container, .framer-aw4oB .framer-1f9roi4-container, .framer-aw4oB .framer-rjf74z-container, .framer-aw4oB .framer-1euq02g-container, .framer-aw4oB .framer-1ivmm9l-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-aw4oB .framer-12f3ogi { align-content: center; align-items: center; background-color: var(--token-ca112a6a-7ca5-4393-871c-63649586a670, #faf5ec); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 120px 30px 60px 30px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-1jehqg0, .framer-aw4oB .framer-1rlcbxg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1140px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-ff84z { align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px 60px 0px 72px; position: relative; width: 1px; }\",\".framer-aw4oB .framer-lt7qvp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-aw4oB .framer-abojeg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-198v3pm, .framer-aw4oB .framer-1xdynut, .framer-aw4oB .framer-1k6pktr, .framer-aw4oB .framer-1jhvej8, .framer-aw4oB .framer-ek59h0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-aw4oB .framer-150u6o7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 87%; word-break: break-word; word-wrap: break-word; }\",\".framer-aw4oB .framer-1r9ux2p { align-content: center; align-items: center; aspect-ratio: 2.5340314136125652 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: var(--framer-aspect-ratio-supported, 561px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 48%; z-index: 2; }\",\".framer-aw4oB .framer-mstx3v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-aw4oB .framer-8l3354 { align-content: center; align-items: center; aspect-ratio: 0.5134892086330936 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: var(--framer-aspect-ratio-supported, 561px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 288px; }\",\".framer-aw4oB .framer-wwxxjl, .framer-aw4oB .framer-1s4xc21, .framer-aw4oB .framer-1c4tl7j { aspect-ratio: 0.5138020833333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 561px); overflow: visible; position: relative; width: 100%; z-index: 1; }\",\".framer-aw4oB .framer-jo6yp4-container { aspect-ratio: 0.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 550px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 95%; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-aw4oB .framer-1xw8gt5 { align-content: center; align-items: center; aspect-ratio: 0.5134892086330936 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: var(--framer-aspect-ratio-supported, 561px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 288px; }\",\".framer-aw4oB .framer-16luv70-container { aspect-ratio: 0.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 547px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 95%; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-aw4oB .framer-d0gffi, .framer-aw4oB .framer-yk4gpq { background-color: var(--token-b1247827-f09a-4078-b38a-9f75119dce01, #ddd4f6); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 423px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(50.88339222614843% - 423px / 2); will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-aw4oB .framer-rcm5dz { align-content: center; align-items: center; background-color: var(--token-ca112a6a-7ca5-4393-871c-63649586a670, #faf5ec); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 60px 30px 120px 30px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-110l6zz { align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 1px; }\",\".framer-aw4oB .framer-1rvyizg { align-content: center; align-items: center; aspect-ratio: 2.5595854922279795 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: var(--framer-aspect-ratio-supported, 561px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 43%; z-index: 2; }\",\".framer-aw4oB .framer-6090a0 { align-content: center; align-items: center; aspect-ratio: 0.5134474327628362 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: var(--framer-aspect-ratio-supported, 561px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 288px; }\",\".framer-aw4oB .framer-1c95jzb-container { aspect-ratio: 0.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 541px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 94%; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-aw4oB .framer-vsdd6h { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-aw4oB .framer-1knkqbs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-1cjhdwa { align-content: center; align-items: center; background-color: var(--token-ca112a6a-7ca5-4393-871c-63649586a670, #faf5ec); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 200px 30px 200px 30px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-5hy7qc, .framer-aw4oB .framer-1xbe9ix { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1140px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aw4oB .framer-lbhezb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aw4oB .framer-1ud36se { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 80%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-aw4oB .framer-u319do, .framer-aw4oB .framer-1oclysd { align-self: stretch; flex: 1 0 0px; height: auto; overflow: visible; position: relative; width: 1px; }\",\".framer-aw4oB .framer-5lda7y { bottom: -47px; flex: none; height: 66px; left: 277px; overflow: hidden; position: absolute; width: 145px; }\",\".framer-aw4oB .framer-19pwux3 { flex: none; height: 116px; left: -38px; overflow: hidden; position: absolute; top: -124px; width: 108px; }\",\".framer-aw4oB .framer-124pady { aspect-ratio: 1.556701030927835 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 291px); left: 46px; overflow: visible; position: absolute; right: 46px; }\",\".framer-aw4oB .framer-msg7kg { aspect-ratio: 1.2808520490854365 / 1; bottom: -34px; flex: none; left: -42px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 417px); }\",\".framer-aw4oB .framer-nzvpey-container { bottom: 0px; flex: none; height: 252px; left: -32px; position: absolute; right: 0px; }\",\".framer-aw4oB .framer-1yfdd2v { aspect-ratio: 0.7352941176470589 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: -73px; flex: none; height: var(--framer-aspect-ratio-supported, 204px); left: 389px; overflow: visible; position: absolute; width: 28%; z-index: 2; }\",\".framer-aw4oB .framer-1jnhfuy, .framer-aw4oB .framer-1xb8xsj { aspect-ratio: 0.7757201646090535 / 1; bottom: -34px; flex: none; height: var(--framer-aspect-ratio-supported, 243px); left: -20px; overflow: visible; position: absolute; right: -18px; }\",\".framer-aw4oB .framer-8j879v-container { flex: none; height: 124px; left: calc(49.33333333333336% - 130px / 2); position: absolute; top: calc(53.921568627451% - 124px / 2); width: 130px; }\",\".framer-aw4oB .framer-wldqi9 { aspect-ratio: 0.7352941176470589 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 204px); left: 389px; overflow: visible; position: absolute; top: -139px; width: 28%; z-index: 2; }\",\".framer-aw4oB .framer-u3461q-container { aspect-ratio: 1.0483870967741935 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 124px); left: 49%; position: absolute; top: 54%; transform: translate(-50%, -50%); width: 130px; }\",\".framer-aw4oB .framer-1kn129l { align-content: center; align-items: center; background-color: #e3d9f8; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 160px 30px 160px 30px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-p219ty-container { aspect-ratio: 1.4194373401534526 / 1; bottom: -69px; flex: none; height: var(--framer-aspect-ratio-supported, 391px); left: -5px; position: absolute; right: -5px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-aw4oB .framer-sx7t9l { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aw4oB .framer-1ryld6h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aw4oB .framer-tjmxub { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-aw4oB .framer-6ol0ct-container { cursor: default; flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-aw4oB.framer-72rtr7, .framer-aw4oB .framer-1cveeis, .framer-aw4oB .framer-529kc0, .framer-aw4oB .framer-xvokd7, .framer-aw4oB .framer-83ltv1, .framer-aw4oB .framer-1obezlw, .framer-aw4oB .framer-1ad5jai, .framer-aw4oB .framer-4zpl7m, .framer-aw4oB .framer-addi1e, .framer-aw4oB.framer-os28t1, .framer-aw4oB .framer-xf3gbx, .framer-aw4oB .framer-1mswe5u, .framer-aw4oB .framer-1t4q8bi, .framer-aw4oB .framer-hauphf, .framer-aw4oB .framer-m2zvud, .framer-aw4oB .framer-94yq2x, .framer-aw4oB .framer-oosuay, .framer-aw4oB .framer-1t29l90, .framer-aw4oB .framer-1a4zd36, .framer-aw4oB .framer-1nhy66r, .framer-aw4oB .framer-1p2a26a, .framer-aw4oB .framer-eze216, .framer-aw4oB .framer-seqwq8, .framer-aw4oB .framer-1gfm8sh, .framer-aw4oB .framer-ifmjx9, .framer-aw4oB .framer-marjco, .framer-aw4oB .framer-1ho2om2, .framer-aw4oB .framer-3wvvm8, .framer-aw4oB .framer-1b0wjcu, .framer-aw4oB .framer-1pgn7wy, .framer-aw4oB .framer-p1b2rv, .framer-aw4oB .framer-12f3ogi, .framer-aw4oB .framer-1jehqg0, .framer-aw4oB .framer-ff84z, .framer-aw4oB .framer-lt7qvp, .framer-aw4oB .framer-abojeg, .framer-aw4oB .framer-1r9ux2p, .framer-aw4oB .framer-mstx3v, .framer-aw4oB .framer-8l3354, .framer-aw4oB .framer-1xw8gt5, .framer-aw4oB .framer-rcm5dz, .framer-aw4oB .framer-1rlcbxg, .framer-aw4oB .framer-110l6zz, .framer-aw4oB .framer-1rvyizg, .framer-aw4oB .framer-6090a0, .framer-aw4oB .framer-vsdd6h, .framer-aw4oB .framer-1knkqbs, .framer-aw4oB .framer-1cjhdwa, .framer-aw4oB .framer-5hy7qc, .framer-aw4oB .framer-lbhezb, .framer-aw4oB .framer-c79db3, .framer-aw4oB .framer-1kn129l, .framer-aw4oB .framer-1xbe9ix, .framer-aw4oB .framer-sx7t9l, .framer-aw4oB .framer-1ryld6h { gap: 0px; } .framer-aw4oB.framer-72rtr7 > *, .framer-aw4oB .framer-1ad5jai > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-aw4oB.framer-72rtr7 > :first-child, .framer-aw4oB .framer-529kc0 > :first-child, .framer-aw4oB .framer-xvokd7 > :first-child, .framer-aw4oB .framer-83ltv1 > :first-child, .framer-aw4oB .framer-1ad5jai > :first-child, .framer-aw4oB .framer-4zpl7m > :first-child, .framer-aw4oB .framer-addi1e > :first-child, .framer-aw4oB .framer-hauphf > :first-child, .framer-aw4oB .framer-94yq2x > :first-child, .framer-aw4oB .framer-oosuay > :first-child, .framer-aw4oB .framer-1t29l90 > :first-child, .framer-aw4oB .framer-1a4zd36 > :first-child, .framer-aw4oB .framer-1nhy66r > :first-child, .framer-aw4oB .framer-1p2a26a > :first-child, .framer-aw4oB .framer-eze216 > :first-child, .framer-aw4oB .framer-1gfm8sh > :first-child, .framer-aw4oB .framer-ifmjx9 > :first-child, .framer-aw4oB .framer-marjco > :first-child, .framer-aw4oB .framer-1b0wjcu > :first-child, .framer-aw4oB .framer-12f3ogi > :first-child, .framer-aw4oB .framer-lt7qvp > :first-child, .framer-aw4oB .framer-abojeg > :first-child, .framer-aw4oB .framer-8l3354 > :first-child, .framer-aw4oB .framer-rcm5dz > :first-child, .framer-aw4oB .framer-6090a0 > :first-child, .framer-aw4oB .framer-vsdd6h > :first-child, .framer-aw4oB .framer-1knkqbs > :first-child, .framer-aw4oB .framer-lbhezb > :first-child, .framer-aw4oB .framer-c79db3 > :first-child, .framer-aw4oB .framer-sx7t9l > :first-child, .framer-aw4oB .framer-1ryld6h > :first-child { margin-top: 0px; } .framer-aw4oB.framer-72rtr7 > :last-child, .framer-aw4oB .framer-529kc0 > :last-child, .framer-aw4oB .framer-xvokd7 > :last-child, .framer-aw4oB .framer-83ltv1 > :last-child, .framer-aw4oB .framer-1ad5jai > :last-child, .framer-aw4oB .framer-4zpl7m > :last-child, .framer-aw4oB .framer-addi1e > :last-child, .framer-aw4oB .framer-hauphf > :last-child, .framer-aw4oB .framer-94yq2x > :last-child, .framer-aw4oB .framer-oosuay > :last-child, .framer-aw4oB .framer-1t29l90 > :last-child, .framer-aw4oB .framer-1a4zd36 > :last-child, .framer-aw4oB .framer-1nhy66r > :last-child, .framer-aw4oB .framer-1p2a26a > :last-child, .framer-aw4oB .framer-eze216 > :last-child, .framer-aw4oB .framer-1gfm8sh > :last-child, .framer-aw4oB .framer-ifmjx9 > :last-child, .framer-aw4oB .framer-marjco > :last-child, .framer-aw4oB .framer-1b0wjcu > :last-child, .framer-aw4oB .framer-12f3ogi > :last-child, .framer-aw4oB .framer-lt7qvp > :last-child, .framer-aw4oB .framer-abojeg > :last-child, .framer-aw4oB .framer-8l3354 > :last-child, .framer-aw4oB .framer-rcm5dz > :last-child, .framer-aw4oB .framer-6090a0 > :last-child, .framer-aw4oB .framer-vsdd6h > :last-child, .framer-aw4oB .framer-1knkqbs > :last-child, .framer-aw4oB .framer-lbhezb > :last-child, .framer-aw4oB .framer-c79db3 > :last-child, .framer-aw4oB .framer-sx7t9l > :last-child, .framer-aw4oB .framer-1ryld6h > :last-child { margin-bottom: 0px; } .framer-aw4oB .framer-1cveeis > *, .framer-aw4oB .framer-xf3gbx > *, .framer-aw4oB .framer-1mswe5u > *, .framer-aw4oB .framer-m2zvud > *, .framer-aw4oB .framer-1jehqg0 > *, .framer-aw4oB .framer-1rlcbxg > *, .framer-aw4oB .framer-1cjhdwa > *, .framer-aw4oB .framer-1kn129l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-aw4oB .framer-1cveeis > :first-child, .framer-aw4oB .framer-1obezlw > :first-child, .framer-aw4oB.framer-os28t1 > :first-child, .framer-aw4oB .framer-xf3gbx > :first-child, .framer-aw4oB .framer-1mswe5u > :first-child, .framer-aw4oB .framer-1t4q8bi > :first-child, .framer-aw4oB .framer-m2zvud > :first-child, .framer-aw4oB .framer-seqwq8 > :first-child, .framer-aw4oB .framer-1ho2om2 > :first-child, .framer-aw4oB .framer-3wvvm8 > :first-child, .framer-aw4oB .framer-1pgn7wy > :first-child, .framer-aw4oB .framer-p1b2rv > :first-child, .framer-aw4oB .framer-1jehqg0 > :first-child, .framer-aw4oB .framer-ff84z > :first-child, .framer-aw4oB .framer-1r9ux2p > :first-child, .framer-aw4oB .framer-mstx3v > :first-child, .framer-aw4oB .framer-1xw8gt5 > :first-child, .framer-aw4oB .framer-1rlcbxg > :first-child, .framer-aw4oB .framer-110l6zz > :first-child, .framer-aw4oB .framer-1rvyizg > :first-child, .framer-aw4oB .framer-1cjhdwa > :first-child, .framer-aw4oB .framer-5hy7qc > :first-child, .framer-aw4oB .framer-1kn129l > :first-child, .framer-aw4oB .framer-1xbe9ix > :first-child { margin-left: 0px; } .framer-aw4oB .framer-1cveeis > :last-child, .framer-aw4oB .framer-1obezlw > :last-child, .framer-aw4oB.framer-os28t1 > :last-child, .framer-aw4oB .framer-xf3gbx > :last-child, .framer-aw4oB .framer-1mswe5u > :last-child, .framer-aw4oB .framer-1t4q8bi > :last-child, .framer-aw4oB .framer-m2zvud > :last-child, .framer-aw4oB .framer-seqwq8 > :last-child, .framer-aw4oB .framer-1ho2om2 > :last-child, .framer-aw4oB .framer-3wvvm8 > :last-child, .framer-aw4oB .framer-1pgn7wy > :last-child, .framer-aw4oB .framer-p1b2rv > :last-child, .framer-aw4oB .framer-1jehqg0 > :last-child, .framer-aw4oB .framer-ff84z > :last-child, .framer-aw4oB .framer-1r9ux2p > :last-child, .framer-aw4oB .framer-mstx3v > :last-child, .framer-aw4oB .framer-1xw8gt5 > :last-child, .framer-aw4oB .framer-1rlcbxg > :last-child, .framer-aw4oB .framer-110l6zz > :last-child, .framer-aw4oB .framer-1rvyizg > :last-child, .framer-aw4oB .framer-1cjhdwa > :last-child, .framer-aw4oB .framer-5hy7qc > :last-child, .framer-aw4oB .framer-1kn129l > :last-child, .framer-aw4oB .framer-1xbe9ix > :last-child { margin-right: 0px; } .framer-aw4oB .framer-529kc0 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-aw4oB .framer-xvokd7 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-aw4oB .framer-83ltv1 > *, .framer-aw4oB .framer-4zpl7m > *, .framer-aw4oB .framer-12f3ogi > *, .framer-aw4oB .framer-rcm5dz > *, .framer-aw4oB .framer-c79db3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-aw4oB .framer-1obezlw > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-aw4oB .framer-addi1e > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-aw4oB.framer-os28t1 > *, .framer-aw4oB .framer-1xw8gt5 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-aw4oB .framer-1t4q8bi > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-aw4oB .framer-hauphf > *, .framer-aw4oB .framer-8l3354 > *, .framer-aw4oB .framer-6090a0 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-aw4oB .framer-94yq2x > *, .framer-aw4oB .framer-oosuay > *, .framer-aw4oB .framer-1gfm8sh > *, .framer-aw4oB .framer-ifmjx9 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-aw4oB .framer-1t29l90 > *, .framer-aw4oB .framer-1a4zd36 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-aw4oB .framer-1nhy66r > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-aw4oB .framer-1p2a26a > *, .framer-aw4oB .framer-abojeg > *, .framer-aw4oB .framer-vsdd6h > *, .framer-aw4oB .framer-lbhezb > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-aw4oB .framer-eze216 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-aw4oB .framer-seqwq8 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-aw4oB .framer-marjco > *, .framer-aw4oB .framer-1b0wjcu > *, .framer-aw4oB .framer-1ryld6h > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-aw4oB .framer-1ho2om2 > *, .framer-aw4oB .framer-3wvvm8 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-aw4oB .framer-1pgn7wy > *, .framer-aw4oB .framer-p1b2rv > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-aw4oB .framer-ff84z > *, .framer-aw4oB .framer-110l6zz > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-aw4oB .framer-lt7qvp > *, .framer-aw4oB .framer-sx7t9l > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-aw4oB .framer-1r9ux2p > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-aw4oB .framer-mstx3v > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-aw4oB .framer-1rvyizg > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-aw4oB .framer-1knkqbs > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } .framer-aw4oB .framer-5hy7qc > *, .framer-aw4oB .framer-1xbe9ix > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-aw4oB.framer-72rtr7 { width: 810px; } .framer-aw4oB .framer-1cveeis { order: 0; padding: 24px 24px 0px 24px; } .framer-aw4oB .framer-529kc0 { order: 1; padding: 72px 24px 60px 24px; } .framer-aw4oB .framer-edj1xf { aspect-ratio: 0.8541666666666666 / 1; bottom: -241px; height: var(--framer-aspect-ratio-supported, 50px); right: -73px; width: 43px; } .framer-aw4oB .framer-ukex1p { bottom: 33px; width: 534px; } .framer-aw4oB .framer-1mswe5u { bottom: -119px; left: -34px; } .framer-aw4oB .framer-hauphf { order: 2; padding: 0px 0px 48px 0px; } .framer-aw4oB .framer-4j39by-container, .framer-aw4oB .framer-2dvb3k-container, .framer-aw4oB .framer-r0sxvw-container, .framer-aw4oB .framer-dj4rb8-container, .framer-aw4oB .framer-gustlt-container, .framer-aw4oB .framer-1kaukdj-container { height: var(--framer-aspect-ratio-supported, 310px); width: 172px; } .framer-aw4oB .framer-yuduxb-container, .framer-aw4oB .framer-1ug5djm-container { height: var(--framer-aspect-ratio-supported, 309px); width: 172px; } .framer-aw4oB .framer-ainlba-container, .framer-aw4oB .framer-16l9y3h-container { height: var(--framer-aspect-ratio-supported, 172px); width: 172px; } .framer-aw4oB .framer-vyq4az-container { height: 593px; top: calc(50.00000000000002% - 593px / 2); } .framer-aw4oB .framer-1b0wjcu { gap: 0px; order: 5; } .framer-aw4oB .framer-u76van-container { order: 6; } .framer-aw4oB .framer-12f3ogi { order: 7; padding: 96px 24px 64px 24px; } .framer-aw4oB .framer-1jehqg0, .framer-aw4oB .framer-1rlcbxg { max-width: unset; } .framer-aw4oB .framer-ff84z { padding: 30px 60px 30px 32px; } .framer-aw4oB .framer-150u6o7 { width: 90%; } .framer-aw4oB .framer-1r9ux2p { aspect-ratio: 4.6 / 1; gap: 24px; height: var(--framer-aspect-ratio-supported, 359px); width: 46%; } .framer-aw4oB .framer-mstx3v { gap: 8px; } .framer-aw4oB .framer-8l3354, .framer-aw4oB .framer-1xw8gt5 { height: var(--framer-aspect-ratio-supported, 359px); width: 184px; } .framer-aw4oB .framer-wwxxjl, .framer-aw4oB .framer-1s4xc21, .framer-aw4oB .framer-1c4tl7j { height: var(--framer-aspect-ratio-supported, 358px); } .framer-aw4oB .framer-jo6yp4-container { height: var(--framer-aspect-ratio-supported, 352px); } .framer-aw4oB .framer-16luv70-container { height: var(--framer-aspect-ratio-supported, 350px); } .framer-aw4oB .framer-rcm5dz { order: 9; padding: 64px 24px 96px 24px; } .framer-aw4oB .framer-110l6zz { padding: 0px 60px 0px 32px; } .framer-aw4oB .framer-1rvyizg { gap: 48px; height: var(--framer-aspect-ratio-supported, 358px); width: 48%; } .framer-aw4oB .framer-6090a0 { height: var(--framer-aspect-ratio-supported, 358px); width: 184px; } .framer-aw4oB .framer-1c95jzb-container { height: var(--framer-aspect-ratio-supported, 345px); } .framer-aw4oB .framer-yk4gpq { height: 315px; top: calc(50.97560975609758% - 315px / 2); } .framer-aw4oB .framer-zq3g5w-container { order: 10; } .framer-aw4oB .framer-1cjhdwa { order: 11; padding: 96px 24px 96px 24px; } .framer-aw4oB .framer-5hy7qc, .framer-aw4oB .framer-1xbe9ix { max-width: 750px; } .framer-aw4oB .framer-5lda7y { bottom: -53px; left: 185px; } .framer-aw4oB .framer-19pwux3 { height: 86px; left: -84px; top: -63px; width: 80px; } .framer-aw4oB .framer-124pady { aspect-ratio: 1.261744966442953 / 1; height: var(--framer-aspect-ratio-supported, 268px); left: -13px; right: 25px; } .framer-aw4oB .framer-msg7kg { width: var(--framer-aspect-ratio-supported, 387px); } .framer-aw4oB .framer-1yfdd2v { bottom: -21px; height: var(--framer-aspect-ratio-supported, 169px); left: unset; right: -9px; width: 35%; } .framer-aw4oB .framer-1jnhfuy { height: var(--framer-aspect-ratio-supported, 209px); } .framer-aw4oB .framer-8j879v-container { bottom: 23px; height: 106px; left: calc(49.1935483870968% - 113px / 2); top: unset; width: 113px; } .framer-aw4oB .framer-wldqi9 { height: var(--framer-aspect-ratio-supported, 155px); left: unset; right: 0px; top: -72px; width: 33%; } .framer-aw4oB .framer-1xb8xsj { height: var(--framer-aspect-ratio-supported, 196px); } .framer-aw4oB .framer-u3461q-container { bottom: 17px; height: var(--framer-aspect-ratio-supported, 102px); left: 50%; top: unset; transform: translateX(-50%); width: 107px; } .framer-aw4oB .framer-1kn129l { order: 12; padding: 96px 24px 96px 24px; } .framer-aw4oB .framer-p219ty-container { bottom: unset; height: var(--framer-aspect-ratio-supported, 254px); top: 50%; transform: translateY(-50%); } .framer-aw4oB .framer-tjmxub { width: 95%; } .framer-aw4oB .framer-1f9roi4-container { order: 14; } .framer-aw4oB .framer-rjf74z-container { order: 16; } .framer-aw4oB .framer-1euq02g-container { order: 17; } .framer-aw4oB .framer-6ol0ct-container { order: 18; } .framer-aw4oB .framer-1ivmm9l-container { order: 19; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-aw4oB .framer-1b0wjcu, .framer-aw4oB .framer-1r9ux2p, .framer-aw4oB .framer-mstx3v, .framer-aw4oB .framer-1rvyizg { gap: 0px; } .framer-aw4oB .framer-1b0wjcu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-aw4oB .framer-1b0wjcu > :first-child { margin-top: 0px; } .framer-aw4oB .framer-1b0wjcu > :last-child { margin-bottom: 0px; } .framer-aw4oB .framer-1r9ux2p > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-aw4oB .framer-1r9ux2p > :first-child, .framer-aw4oB .framer-mstx3v > :first-child, .framer-aw4oB .framer-1rvyizg > :first-child { margin-left: 0px; } .framer-aw4oB .framer-1r9ux2p > :last-child, .framer-aw4oB .framer-mstx3v > :last-child, .framer-aw4oB .framer-1rvyizg > :last-child { margin-right: 0px; } .framer-aw4oB .framer-mstx3v > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-aw4oB .framer-1rvyizg > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } }}\",\"@media (max-width: 809px) { .framer-aw4oB.framer-72rtr7 { width: 390px; } .framer-aw4oB .framer-1cveeis { padding: 24px 20px 0px 20px; } .framer-aw4oB .framer-529kc0 { padding: 100px 20px 40px 20px; } .framer-aw4oB .framer-xvircc-container { height: 400px; top: calc(49.874686716792% - 400px / 2); } .framer-aw4oB .framer-dpzflc { z-index: 2; } .framer-aw4oB .framer-83ltv1, .framer-aw4oB .framer-oosuay, .framer-aw4oB .framer-1gfm8sh, .framer-aw4oB .framer-abojeg, .framer-aw4oB .framer-1knkqbs { gap: 8px; } .framer-aw4oB .framer-1gqxzlt { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-aw4oB .framer-1ad5jai { height: 135px; padding: 0px; } .framer-aw4oB .framer-1hrexy0-container { height: 121px; left: -13px; position: absolute; top: 0px; width: 350px; } .framer-aw4oB .framer-1v4v3p6 { bottom: -6px; } .framer-aw4oB .framer-ukex1p { bottom: 15px; height: 8px; left: 3px; width: 328px; } .framer-aw4oB .framer-4zpl7m { align-content: center; align-items: center; flex-direction: row; } .framer-aw4oB .framer-addi1e { flex: 1 0 0px; gap: 10px; width: 1px; z-index: 10; } .framer-aw4oB .framer-x6nwf4 { right: 21px; width: 105px; } .framer-aw4oB .framer-hauphf { padding: 0px 0px 40px 0px; } .framer-aw4oB .framer-m2zvud { align-content: flex-start; align-items: flex-start; gap: 8px; } .framer-aw4oB .framer-4j39by-container, .framer-aw4oB .framer-yuduxb-container, .framer-aw4oB .framer-2dvb3k-container, .framer-aw4oB .framer-r0sxvw-container, .framer-aw4oB .framer-dj4rb8-container, .framer-aw4oB .framer-gustlt-container, .framer-aw4oB .framer-1kaukdj-container, .framer-aw4oB .framer-1ug5djm-container { height: var(--framer-aspect-ratio-supported, 155px); width: 86px; } .framer-aw4oB .framer-ainlba-container, .framer-aw4oB .framer-16l9y3h-container { height: var(--framer-aspect-ratio-supported, 153px); width: 86px; } .framer-aw4oB .framer-1a4zd36 { align-self: unset; gap: 16px; width: min-content; } .framer-aw4oB .framer-1nhy66r { gap: 8px; width: min-content; } .framer-aw4oB .framer-1p2a26a, .framer-aw4oB .framer-1i9hygr { align-self: stretch; width: auto; } .framer-aw4oB .framer-8nu9o1-container, .framer-aw4oB .framer-150u6o7, .framer-aw4oB .framer-tjmxub { width: 100%; } .framer-aw4oB .framer-eze216 { gap: 16px; width: min-content; } .framer-aw4oB .framer-seqwq8 { gap: 6px; } .framer-aw4oB .framer-7bg4t4-container { height: auto; width: auto; } .framer-aw4oB .framer-1b0wjcu { gap: 0px; } .framer-aw4oB .framer-12f3ogi { padding: 32px 20px 40px 20px; } .framer-aw4oB .framer-1jehqg0, .framer-aw4oB .framer-1rlcbxg { max-width: unset; } .framer-aw4oB .framer-ff84z { flex-direction: column; padding: 40px 30px 40px 30px; } .framer-aw4oB .framer-lt7qvp { align-content: center; align-items: center; flex: none; order: 1; width: 100%; } .framer-aw4oB .framer-1r9ux2p { align-content: flex-end; align-items: flex-end; aspect-ratio: 0.4981949458483754 / 1; gap: 28px; height: var(--framer-aspect-ratio-supported, 281px); max-height: 350px; max-width: 168px; order: 0; width: 48%; } .framer-aw4oB .framer-mstx3v { gap: 4px; } .framer-aw4oB .framer-8l3354, .framer-aw4oB .framer-1xw8gt5, .framer-aw4oB .framer-6090a0 { height: var(--framer-aspect-ratio-supported, 281px); width: 144px; } .framer-aw4oB .framer-wwxxjl, .framer-aw4oB .framer-1s4xc21, .framer-aw4oB .framer-1c4tl7j { height: var(--framer-aspect-ratio-supported, 280px); } .framer-aw4oB .framer-jo6yp4-container { height: var(--framer-aspect-ratio-supported, 275px); } .framer-aw4oB .framer-16luv70-container { height: var(--framer-aspect-ratio-supported, 274px); } .framer-aw4oB .framer-d0gffi { bottom: -1px; height: 464px; order: 2; top: unset; } .framer-aw4oB .framer-rcm5dz { padding: 0px 20px 64px 20px; } .framer-aw4oB .framer-110l6zz { flex-direction: column; gap: 24px; padding: 40px 30px 40px 30px; } .framer-aw4oB .framer-1rvyizg { align-content: flex-end; align-items: flex-end; gap: 0px; height: var(--framer-aspect-ratio-supported, 281px); order: 0; } .framer-aw4oB .framer-1c95jzb-container { height: var(--framer-aspect-ratio-supported, 270px); } .framer-aw4oB .framer-vsdd6h, .framer-aw4oB .framer-lbhezb { align-content: center; align-items: center; flex: none; gap: 24px; order: 1; width: 100%; } .framer-aw4oB .framer-yk4gpq { bottom: -1px; height: 450px; order: 2; top: unset; } .framer-aw4oB .framer-1cjhdwa { flex-direction: column; padding: 72px 20px 56px 20px; } .framer-aw4oB .framer-5hy7qc { flex: none; flex-direction: column; gap: 17px; max-width: 350px; width: 100%; } .framer-aw4oB .framer-c79db3 { align-content: center; align-items: center; gap: 8px; } .framer-aw4oB .framer-1ud36se { max-width: 96%; } .framer-aw4oB .framer-u319do { align-self: unset; flex: none; height: 326px; order: 0; width: 100%; } .framer-aw4oB .framer-5lda7y { bottom: -4px; height: 55px; left: unset; right: -4px; width: 120px; } .framer-aw4oB .framer-19pwux3 { height: 88px; left: -15px; top: 10px; width: 82px; } .framer-aw4oB .framer-124pady { aspect-ratio: 1.2459677419354838 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 244px); left: 0px; top: 50%; transform: translateY(-50%); } .framer-aw4oB .framer-msg7kg { height: var(--framer-aspect-ratio-supported, 245px); left: 0px; right: -10px; top: unset; width: unset; } .framer-aw4oB .framer-nzvpey-container { height: 181px; left: unset; width: 297px; } .framer-aw4oB .framer-1yfdd2v { bottom: 37px; height: var(--framer-aspect-ratio-supported, 146px); left: unset; right: -5px; width: 31%; } .framer-aw4oB .framer-1jnhfuy { height: var(--framer-aspect-ratio-supported, 187px); } .framer-aw4oB .framer-8j879v-container { bottom: 16px; height: 96px; left: calc(48.59813084112152% - 100px / 2); top: unset; width: 100px; } .framer-aw4oB .framer-wldqi9 { height: var(--framer-aspect-ratio-supported, 131px); left: 239px; top: -19px; } .framer-aw4oB .framer-1xb8xsj { height: var(--framer-aspect-ratio-supported, 173px); } .framer-aw4oB .framer-u3461q-container { bottom: 13px; height: var(--framer-aspect-ratio-supported, 88px); left: 49%; top: unset; transform: translateX(-50%); width: 92px; } .framer-aw4oB .framer-1kn129l { flex-direction: column; padding: 56px 20px 56px 20px; } .framer-aw4oB .framer-1xbe9ix { flex: none; flex-direction: column; gap: 32px; max-width: 350px; width: 100%; } .framer-aw4oB .framer-1oclysd { align-self: unset; flex: none; height: 249px; width: 100%; } .framer-aw4oB .framer-p219ty-container { bottom: unset; height: var(--framer-aspect-ratio-supported, 254px); top: -2px; } .framer-aw4oB .framer-sx7t9l { align-content: center; align-items: center; flex: none; gap: 16px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-aw4oB .framer-83ltv1, .framer-aw4oB .framer-4zpl7m, .framer-aw4oB .framer-addi1e, .framer-aw4oB .framer-m2zvud, .framer-aw4oB .framer-oosuay, .framer-aw4oB .framer-1a4zd36, .framer-aw4oB .framer-1nhy66r, .framer-aw4oB .framer-eze216, .framer-aw4oB .framer-seqwq8, .framer-aw4oB .framer-1gfm8sh, .framer-aw4oB .framer-1b0wjcu, .framer-aw4oB .framer-ff84z, .framer-aw4oB .framer-abojeg, .framer-aw4oB .framer-1r9ux2p, .framer-aw4oB .framer-mstx3v, .framer-aw4oB .framer-110l6zz, .framer-aw4oB .framer-1rvyizg, .framer-aw4oB .framer-vsdd6h, .framer-aw4oB .framer-1knkqbs, .framer-aw4oB .framer-1cjhdwa, .framer-aw4oB .framer-5hy7qc, .framer-aw4oB .framer-lbhezb, .framer-aw4oB .framer-c79db3, .framer-aw4oB .framer-1kn129l, .framer-aw4oB .framer-1xbe9ix, .framer-aw4oB .framer-sx7t9l { gap: 0px; } .framer-aw4oB .framer-83ltv1 > *, .framer-aw4oB .framer-oosuay > *, .framer-aw4oB .framer-1nhy66r > *, .framer-aw4oB .framer-1gfm8sh > *, .framer-aw4oB .framer-abojeg > *, .framer-aw4oB .framer-1knkqbs > *, .framer-aw4oB .framer-c79db3 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-aw4oB .framer-83ltv1 > :first-child, .framer-aw4oB .framer-addi1e > :first-child, .framer-aw4oB .framer-oosuay > :first-child, .framer-aw4oB .framer-1a4zd36 > :first-child, .framer-aw4oB .framer-1nhy66r > :first-child, .framer-aw4oB .framer-eze216 > :first-child, .framer-aw4oB .framer-1gfm8sh > :first-child, .framer-aw4oB .framer-1b0wjcu > :first-child, .framer-aw4oB .framer-ff84z > :first-child, .framer-aw4oB .framer-abojeg > :first-child, .framer-aw4oB .framer-110l6zz > :first-child, .framer-aw4oB .framer-vsdd6h > :first-child, .framer-aw4oB .framer-1knkqbs > :first-child, .framer-aw4oB .framer-1cjhdwa > :first-child, .framer-aw4oB .framer-5hy7qc > :first-child, .framer-aw4oB .framer-lbhezb > :first-child, .framer-aw4oB .framer-c79db3 > :first-child, .framer-aw4oB .framer-1kn129l > :first-child, .framer-aw4oB .framer-1xbe9ix > :first-child, .framer-aw4oB .framer-sx7t9l > :first-child { margin-top: 0px; } .framer-aw4oB .framer-83ltv1 > :last-child, .framer-aw4oB .framer-addi1e > :last-child, .framer-aw4oB .framer-oosuay > :last-child, .framer-aw4oB .framer-1a4zd36 > :last-child, .framer-aw4oB .framer-1nhy66r > :last-child, .framer-aw4oB .framer-eze216 > :last-child, .framer-aw4oB .framer-1gfm8sh > :last-child, .framer-aw4oB .framer-1b0wjcu > :last-child, .framer-aw4oB .framer-ff84z > :last-child, .framer-aw4oB .framer-abojeg > :last-child, .framer-aw4oB .framer-110l6zz > :last-child, .framer-aw4oB .framer-vsdd6h > :last-child, .framer-aw4oB .framer-1knkqbs > :last-child, .framer-aw4oB .framer-1cjhdwa > :last-child, .framer-aw4oB .framer-5hy7qc > :last-child, .framer-aw4oB .framer-lbhezb > :last-child, .framer-aw4oB .framer-c79db3 > :last-child, .framer-aw4oB .framer-1kn129l > :last-child, .framer-aw4oB .framer-1xbe9ix > :last-child, .framer-aw4oB .framer-sx7t9l > :last-child { margin-bottom: 0px; } .framer-aw4oB .framer-4zpl7m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-aw4oB .framer-4zpl7m > :first-child, .framer-aw4oB .framer-m2zvud > :first-child, .framer-aw4oB .framer-seqwq8 > :first-child, .framer-aw4oB .framer-1r9ux2p > :first-child, .framer-aw4oB .framer-mstx3v > :first-child, .framer-aw4oB .framer-1rvyizg > :first-child { margin-left: 0px; } .framer-aw4oB .framer-4zpl7m > :last-child, .framer-aw4oB .framer-m2zvud > :last-child, .framer-aw4oB .framer-seqwq8 > :last-child, .framer-aw4oB .framer-1r9ux2p > :last-child, .framer-aw4oB .framer-mstx3v > :last-child, .framer-aw4oB .framer-1rvyizg > :last-child { margin-right: 0px; } .framer-aw4oB .framer-addi1e > *, .framer-aw4oB .framer-1cjhdwa > *, .framer-aw4oB .framer-1kn129l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-aw4oB .framer-m2zvud > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-aw4oB .framer-1a4zd36 > *, .framer-aw4oB .framer-eze216 > *, .framer-aw4oB .framer-sx7t9l > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-aw4oB .framer-seqwq8 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-aw4oB .framer-1b0wjcu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-aw4oB .framer-ff84z > *, .framer-aw4oB .framer-1xbe9ix > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-aw4oB .framer-1r9ux2p > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-aw4oB .framer-mstx3v > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-aw4oB .framer-110l6zz > *, .framer-aw4oB .framer-vsdd6h > *, .framer-aw4oB .framer-lbhezb > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-aw4oB .framer-1rvyizg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-aw4oB .framer-5hy7qc > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8287.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OQzcYzjPf\":{\"layout\":[\"fixed\",\"auto\"]},\"GoYWNyyha\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-aw4oB\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8287.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Sora\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XR5REPALAPN54FEEIVU4Z7ZE3Z5TYAXV/ZVSCLT36TMKD3NSNAKQISILPVOHE4VFU/NTHDIHEFNRRDAFXF6EKGHNYZ4FA3VMWE.woff2\",weight:\"400\"},{family:\"Sora\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/SJWETCERZXVLDCL4K6NJGS3H7NAV5YTM/F5EBUUP2RO5CM2W74SL4R7M6IUX4GDPL/OAO3FLMO5KOXWLXSTUJGS4EGOYFMSDQ3.woff2\",weight:\"500\"}]},...NavigationFonts,...EmbedFonts,...ElementsPatternFonts,...TypewriterLoopComponentFonts,...ButtonBookACallFonts,...ElementsVimeoAutoplayFonts,...LabelFonts,...ButtonFonts,...TickerFonts,...CpCretivePerformanceNewFonts,...SectionQuoteFonts,...VideoFonts,...SlideshowFonts,...SectionLocalizationFonts,...SectionCTAFonts,...SectionMediaFonts,...SectionFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"8287.5\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OQzcYzjPf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GoYWNyyha\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "n", "progress", "t", "e", "n", "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", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "text1", "text2", "text3", "text4", "text5", "text6", "text7", "text8", "text9", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "_ref7", "_ref8", "_ref9", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "YRuinxKiP", "bTbZqKaVi", "RHi_oMwT7", "uqMMk71Fm", "GKA9nC0_k", "TFysv1fhc", "UJZa9XDlG", "VoQKRkC6J", "zJpir2ivT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "SVG", "css", "FramerklDbgmGZd", "withCSS", "klDbgmGZd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1mhf8a7", "args", "onAppear1pl7lxz", "onAppear1s5sai", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerCDlBFwY51", "withCSS", "CDlBFwY51_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramerQHhR4qlc4", "withCSS", "QHhR4qlc4_default", "addFonts", "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", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1xvw6ej", "args", "onAppear1b78eh9", "onAppear11bnhvb", "onAppeara822i9", "onAppearwuuez8", "onAppear2rft1e", "onAppear1ac9arf", "onAppear1j16ntr", "onAppear166pi1k", "onAppearke45vt", "useOnVariantChange", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerTFdfRjZIe", "withCSS", "TFdfRjZIe_default", "addPropertyControls", "ControlType", "addFonts", "CpArrowFonts", "getFonts", "CDlBFwY51_default", "CpScribblesFonts", "TFdfRjZIe_default", "ElementsPatternFonts", "QHhR4qlc4_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transformTemplate1", "_", "t", "transformTemplate2", "transition4", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1m39nk6", "args", "onAppeare1xr5f", "onAppear1xx2y7n", "onAppeardwv744", "onAppear1e9n3rp", "onAppearcic17i", "onAppear18q375a", "onAppear1dqndh6", "onAppearrllauu", "onAppear10o0gby", "onAppear1uefjn5", "onAppear1sfrymd", "onAppearmd6x4u", "onAppeard5sujw", "onAppearvtg275", "onAppear1meju2o", "onAppearaf7cg2", "onAppear1m5mtz6", "onAppear78mght", "onAppear14qr5jn", "onAppear13faun", "onAppear177alve", "onAppear1fjry3h", "onAppear6ckcud", "onAppear1ny7ajf", "onAppear3uz1cq", "onAppear1bl68hk", "onAppear1qfmu94", "onAppearfrimiq", "onAppearg6f7m8", "onAppear1xx2j1q", "onAppear1jz200k", "onAppear1pwxemz", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "ComponentViewportProvider", "css", "FramerKx2Ggjrn6", "withCSS", "Kx2Ggjrn6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "zixQkrwF7", "kuOl64Alt", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1vlazj7", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "SVG", "css", "FrameraZVH3umBF", "withCSS", "aZVH3umBF_default", "addPropertyControls", "ControlType", "addFonts", "SocialMediaIconsFonts", "getFonts", "aZVH3umBF_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "l7P2BkT5s", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "SVG", "css", "Framerpxv4834MF", "withCSS", "pxv4834MF_default", "addPropertyControls", "ControlType", "addFonts", "typingSpeed", "eraseSpeed", "displayDuration", "TypewriterLoopComponent", "props", "fixedText", "words", "fontSize", "fontFamily", "fontWeight", "color", "backgroundColor", "style", "displayedText", "setDisplayedText", "ye", "currentWordIndex", "setCurrentWordIndex", "charIndex", "setCharIndex", "isErasing", "setIsErasing", "ue", "timeout", "prev", "textStyle", "u", "motion", "p", "addPropertyControls", "ControlType", "NavigationFonts", "getFonts", "KzUyLixXo_default", "NavigationWithVariantAppearEffect", "withVariantAppearEffect", "EmbedFonts", "Embed", "ElementsPatternFonts", "QHhR4qlc4_default", "TypewriterLoopComponentFonts", "TypewriterLoopComponent", "ButtonBookACallFonts", "NhjwBdgiN_default", "MotionDivWithFX", "withFX", "motion", "ElementsVimeoAutoplayFonts", "uqeoG8Tm3_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "LabelFonts", "pxv4834MF_default", "ButtonFonts", "qpSVWSMWl_default", "TickerFonts", "Ticker", "CpCretivePerformanceNewFonts", "Kx2Ggjrn6_default", "SectionQuoteFonts", "klDbgmGZd_default", "VideoFonts", "Video", "SlideshowFonts", "ELwAVuReb_default", "SectionLocalizationFonts", "yETSl9zVM_default", "SectionCTAFonts", "FpM3kB6E8_default", "SectionMediaFonts", "bGN3TJXLU_default", "SectionFooterFonts", "KdljHHouH_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition1", "animation", "transition2", "animation1", "animation2", "transformTemplate1", "_", "t", "transformTemplate2", "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", "g7lERPYhbgj9CYYFOn", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "iGrbjt8NY3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "jpvDeCZCk3bnx0g", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "l", "PropertyOverrides2", "ComponentViewportProvider", "AnimatePresence", "Ga", "x", "RichText2", "SVG", "overlay1", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
