{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://boosters.flowbase.co/before-after-framer.js#Pi7ExYI4gXmQ", "ssg:https://framerusercontent.com/modules/d0J10qPQ3T9q0Uyn7n7P/GaMwyalQUDsT1DjqjUBc/Before_After_Image_Slider.js", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.53", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js", "ssg:https://framerusercontent.com/modules/4KkSO8k8vII1dY9rdqvK/272jb8OtFhftisYkWhUp/b8qvm_XpH.js", "ssg:https://framer.com/m/feather-icons/home.js@0.0.29", "ssg:https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js", "ssg:https://framerusercontent.com/modules/rBLj6WtXE4tGaBciBmAd/c4LIkBkUJzdsBiC22qZf/xqxwjckIG.js", "ssg:https://framerusercontent.com/modules/v7Nh7GpZv4GEbHzfkCtL/9c239Vj6uXn0zeETHxDW/DOWnf2wWb.js", "ssg:https://framerusercontent.com/modules/pNo1ByiHDJTXdMDIVlrC/AedoHnW5jkw2mVVRklf9/QhK6qqT5U.js", "ssg:https://framerusercontent.com/modules/tFQnuia2KoVlOBHXaF1m/XrW4mXGr9ZzWescUFAdc/EB78TtOt_.js", "ssg:https://framerusercontent.com/modules/WmgvPkuhJcIBcSO3Wfya/Y6VerovZHOKVg1FIXOOS/zvKbYC0Od.js", "ssg:https://framerusercontent.com/modules/pd6iJXxaoZpW86UA8vKk/ASTR8uJjkC71tKYe3Jv5/m4VVEPNmb.js", "ssg:https://framerusercontent.com/modules/lIT1BLTmjyK2ChoETyF1/jPiiZGQWZniXfnRck2a7/okWhwsiak.js", "ssg:https://framerusercontent.com/modules/DvckZ7QKupUj1ETxMUE2/ym8tAjl4B81Hhs65jhnX/Uqb4T5RRv.js", "ssg:https://framerusercontent.com/modules/rKYD0kwEhKBEfD2Qbwx4/258fJhQFdxyXfROPdL4k/vpXpYM35p.js", "ssg:https://framerusercontent.com/modules/BypOyHTYWo9ow2ZPYfUM/IuBNiQRLNEm6XJl85mkf/mkuzLWTgX.js", "ssg:https://framerusercontent.com/modules/6AekRqgdEOKzFsX0PmIN/tB5QZ1SaUBxK3H7aDUF1/ZOHrKWkPd.js", "ssg:https://framerusercontent.com/modules/M3nqKzaPwOjFK1EhH8F4/Q229ycOSuIDkPycsx5tW/Me1Owk5Wc.js", "ssg:https://framerusercontent.com/modules/t5p3JGDlGYhxZ1YyFeaU/aHUjwsi7Pi2kkAYfs5zE/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import * as Sr from \"react\";\nimport Yr, { forwardRef as $t, useContext as Be, createContext as Ur, createElement as ne, Fragment as qr, useRef as te, useEffect as We, useState as Dt } from \"react\";\nvar Re = {}, jt = {\n  get exports() {\n    return Re;\n  },\n  set exports(e) {\n    Re = e;\n  }\n}, le = {};\n/**\n * @license React\n * react-jsx-runtime.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\nvar Rr;\nfunction Lt() {\n  if (Rr)\n    return le;\n  Rr = 1;\n  var e = Yr, r = Symbol.for(\"react.element\"), n = Symbol.for(\"react.fragment\"), a = Object.prototype.hasOwnProperty, i = e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, s = { key: !0, ref: !0, __self: !0, __source: !0 };\n  function l(u, d, g) {\n    var f, v = {}, C = null, T = null;\n    g !== void 0 && (C = \"\" + g), d.key !== void 0 && (C = \"\" + d.key), d.ref !== void 0 && (T = d.ref);\n    for (f in d)\n      a.call(d, f) && !s.hasOwnProperty(f) && (v[f] = d[f]);\n    if (u && u.defaultProps)\n      for (f in d = u.defaultProps, d)\n        v[f] === void 0 && (v[f] = d[f]);\n    return { $$typeof: r, type: u, key: C, ref: T, props: v, _owner: i.current };\n  }\n  return le.Fragment = n, le.jsx = l, le.jsxs = l, le;\n}\nvar ue = {};\n/**\n * @license React\n * react-jsx-runtime.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\nvar Or;\nfunction Vt() {\n  return Or || (Or = 1, process.env.NODE_ENV !== \"production\" && function() {\n    var e = Yr, r = Symbol.for(\"react.element\"), n = Symbol.for(\"react.portal\"), a = Symbol.for(\"react.fragment\"), i = Symbol.for(\"react.strict_mode\"), s = Symbol.for(\"react.profiler\"), l = Symbol.for(\"react.provider\"), u = Symbol.for(\"react.context\"), d = Symbol.for(\"react.forward_ref\"), g = Symbol.for(\"react.suspense\"), f = Symbol.for(\"react.suspense_list\"), v = Symbol.for(\"react.memo\"), C = Symbol.for(\"react.lazy\"), T = Symbol.for(\"react.offscreen\"), x = Symbol.iterator, h = \"@@iterator\";\n    function O(t) {\n      if (t === null || typeof t != \"object\")\n        return null;\n      var o = x && t[x] || t[h];\n      return typeof o == \"function\" ? o : null;\n    }\n    var E = e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;\n    function p(t) {\n      {\n        for (var o = arguments.length, c = new Array(o > 1 ? o - 1 : 0), m = 1; m < o; m++)\n          c[m - 1] = arguments[m];\n        P(\"error\", t, c);\n      }\n    }\n    function P(t, o, c) {\n      {\n        var m = E.ReactDebugCurrentFrame, w = m.getStackAddendum();\n        w !== \"\" && (o += \"%s\", c = c.concat([w]));\n        var k = c.map(function(y) {\n          return String(y);\n        });\n        k.unshift(\"Warning: \" + o), Function.prototype.apply.call(console[t], console, k);\n      }\n    }\n    var q = !1, D = !1, V = !1, R = !1, Ne = !1, K;\n    K = Symbol.for(\"react.module.reference\");\n    function Q(t) {\n      return !!(typeof t == \"string\" || typeof t == \"function\" || t === a || t === s || Ne || t === i || t === g || t === f || R || t === T || q || D || V || typeof t == \"object\" && t !== null && (t.$$typeof === C || t.$$typeof === v || t.$$typeof === l || t.$$typeof === u || t.$$typeof === d || // This needs to include all possible module reference object\n      // types supported by any Flight configuration anywhere since\n      // we don't know which Flight build this will end up being used\n      // with.\n      t.$$typeof === K || t.getModuleId !== void 0));\n    }\n    function ct(t, o, c) {\n      var m = t.displayName;\n      if (m)\n        return m;\n      var w = o.displayName || o.name || \"\";\n      return w !== \"\" ? c + \"(\" + w + \")\" : c;\n    }\n    function rr(t) {\n      return t.displayName || \"Context\";\n    }\n    function G(t) {\n      if (t == null)\n        return null;\n      if (typeof t.tag == \"number\" && p(\"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"), typeof t == \"function\")\n        return t.displayName || t.name || null;\n      if (typeof t == \"string\")\n        return t;\n      switch (t) {\n        case a:\n          return \"Fragment\";\n        case n:\n          return \"Portal\";\n        case s:\n          return \"Profiler\";\n        case i:\n          return \"StrictMode\";\n        case g:\n          return \"Suspense\";\n        case f:\n          return \"SuspenseList\";\n      }\n      if (typeof t == \"object\")\n        switch (t.$$typeof) {\n          case u:\n            var o = t;\n            return rr(o) + \".Consumer\";\n          case l:\n            var c = t;\n            return rr(c._context) + \".Provider\";\n          case d:\n            return ct(t, t.render, \"ForwardRef\");\n          case v:\n            var m = t.displayName || null;\n            return m !== null ? m : G(t.type) || \"Memo\";\n          case C: {\n            var w = t, k = w._payload, y = w._init;\n            try {\n              return G(y(k));\n            } catch {\n              return null;\n            }\n          }\n        }\n      return null;\n    }\n    var Z = Object.assign, se = 0, tr, nr, ar, ir, or, sr, cr;\n    function lr() {\n    }\n    lr.__reactDisabledLog = !0;\n    function lt() {\n      {\n        if (se === 0) {\n          tr = console.log, nr = console.info, ar = console.warn, ir = console.error, or = console.group, sr = console.groupCollapsed, cr = console.groupEnd;\n          var t = {\n            configurable: !0,\n            enumerable: !0,\n            value: lr,\n            writable: !0\n          };\n          Object.defineProperties(console, {\n            info: t,\n            log: t,\n            warn: t,\n            error: t,\n            group: t,\n            groupCollapsed: t,\n            groupEnd: t\n          });\n        }\n        se++;\n      }\n    }\n    function ut() {\n      {\n        if (se--, se === 0) {\n          var t = {\n            configurable: !0,\n            enumerable: !0,\n            writable: !0\n          };\n          Object.defineProperties(console, {\n            log: Z({}, t, {\n              value: tr\n            }),\n            info: Z({}, t, {\n              value: nr\n            }),\n            warn: Z({}, t, {\n              value: ar\n            }),\n            error: Z({}, t, {\n              value: ir\n            }),\n            group: Z({}, t, {\n              value: or\n            }),\n            groupCollapsed: Z({}, t, {\n              value: sr\n            }),\n            groupEnd: Z({}, t, {\n              value: cr\n            })\n          });\n        }\n        se < 0 && p(\"disabledDepth fell below zero. This is a bug in React. Please file an issue.\");\n      }\n    }\n    var Ae = E.ReactCurrentDispatcher, Ie;\n    function ve(t, o, c) {\n      {\n        if (Ie === void 0)\n          try {\n            throw Error();\n          } catch (w) {\n            var m = w.stack.trim().match(/\\n( *(at )?)/);\n            Ie = m && m[1] || \"\";\n          }\n        return `\n` + Ie + t;\n      }\n    }\n    var $e = !1, ge;\n    {\n      var ft = typeof WeakMap == \"function\" ? WeakMap : Map;\n      ge = new ft();\n    }\n    function ur(t, o) {\n      if (!t || $e)\n        return \"\";\n      {\n        var c = ge.get(t);\n        if (c !== void 0)\n          return c;\n      }\n      var m;\n      $e = !0;\n      var w = Error.prepareStackTrace;\n      Error.prepareStackTrace = void 0;\n      var k;\n      k = Ae.current, Ae.current = null, lt();\n      try {\n        if (o) {\n          var y = function() {\n            throw Error();\n          };\n          if (Object.defineProperty(y.prototype, \"props\", {\n            set: function() {\n              throw Error();\n            }\n          }), typeof Reflect == \"object\" && Reflect.construct) {\n            try {\n              Reflect.construct(y, []);\n            } catch (J) {\n              m = J;\n            }\n            Reflect.construct(t, [], y);\n          } else {\n            try {\n              y.call();\n            } catch (J) {\n              m = J;\n            }\n            t.call(y.prototype);\n          }\n        } else {\n          try {\n            throw Error();\n          } catch (J) {\n            m = J;\n          }\n          t();\n        }\n      } catch (J) {\n        if (J && m && typeof J.stack == \"string\") {\n          for (var b = J.stack.split(`\n`), F = m.stack.split(`\n`), N = b.length - 1, A = F.length - 1; N >= 1 && A >= 0 && b[N] !== F[A]; )\n            A--;\n          for (; N >= 1 && A >= 0; N--, A--)\n            if (b[N] !== F[A]) {\n              if (N !== 1 || A !== 1)\n                do\n                  if (N--, A--, A < 0 || b[N] !== F[A]) {\n                    var Y = `\n` + b[N].replace(\" at new \", \" at \");\n                    return t.displayName && Y.includes(\"<anonymous>\") && (Y = Y.replace(\"<anonymous>\", t.displayName)), typeof t == \"function\" && ge.set(t, Y), Y;\n                  }\n                while (N >= 1 && A >= 0);\n              break;\n            }\n        }\n      } finally {\n        $e = !1, Ae.current = k, ut(), Error.prepareStackTrace = w;\n      }\n      var re = t ? t.displayName || t.name : \"\", _r = re ? ve(re) : \"\";\n      return typeof t == \"function\" && ge.set(t, _r), _r;\n    }\n    function dt(t, o, c) {\n      return ur(t, !1);\n    }\n    function pt(t) {\n      var o = t.prototype;\n      return !!(o && o.isReactComponent);\n    }\n    function be(t, o, c) {\n      if (t == null)\n        return \"\";\n      if (typeof t == \"function\")\n        return ur(t, pt(t));\n      if (typeof t == \"string\")\n        return ve(t);\n      switch (t) {\n        case g:\n          return ve(\"Suspense\");\n        case f:\n          return ve(\"SuspenseList\");\n      }\n      if (typeof t == \"object\")\n        switch (t.$$typeof) {\n          case d:\n            return dt(t.render);\n          case v:\n            return be(t.type, o, c);\n          case C: {\n            var m = t, w = m._payload, k = m._init;\n            try {\n              return be(k(w), o, c);\n            } catch {\n            }\n          }\n        }\n      return \"\";\n    }\n    var ye = Object.prototype.hasOwnProperty, fr = {}, dr = E.ReactDebugCurrentFrame;\n    function Ee(t) {\n      if (t) {\n        var o = t._owner, c = be(t.type, t._source, o ? o.type : null);\n        dr.setExtraStackFrame(c);\n      } else\n        dr.setExtraStackFrame(null);\n    }\n    function ht(t, o, c, m, w) {\n      {\n        var k = Function.call.bind(ye);\n        for (var y in t)\n          if (k(t, y)) {\n            var b = void 0;\n            try {\n              if (typeof t[y] != \"function\") {\n                var F = Error((m || \"React class\") + \": \" + c + \" type `\" + y + \"` is invalid; it must be a function, usually from the `prop-types` package, but received `\" + typeof t[y] + \"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.\");\n                throw F.name = \"Invariant Violation\", F;\n              }\n              b = t[y](o, y, m, c, null, \"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED\");\n            } catch (N) {\n              b = N;\n            }\n            b && !(b instanceof Error) && (Ee(w), p(\"%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).\", m || \"React class\", c, y, typeof b), Ee(null)), b instanceof Error && !(b.message in fr) && (fr[b.message] = !0, Ee(w), p(\"Failed %s type: %s\", c, b.message), Ee(null));\n          }\n      }\n    }\n    var mt = Array.isArray;\n    function De(t) {\n      return mt(t);\n    }\n    function vt(t) {\n      {\n        var o = typeof Symbol == \"function\" && Symbol.toStringTag, c = o && t[Symbol.toStringTag] || t.constructor.name || \"Object\";\n        return c;\n      }\n    }\n    function gt(t) {\n      try {\n        return pr(t), !1;\n      } catch {\n        return !0;\n      }\n    }\n    function pr(t) {\n      return \"\" + t;\n    }\n    function hr(t) {\n      if (gt(t))\n        return p(\"The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.\", vt(t)), pr(t);\n    }\n    var ce = E.ReactCurrentOwner, bt = {\n      key: !0,\n      ref: !0,\n      __self: !0,\n      __source: !0\n    }, mr, vr, je;\n    je = {};\n    function yt(t) {\n      if (ye.call(t, \"ref\")) {\n        var o = Object.getOwnPropertyDescriptor(t, \"ref\").get;\n        if (o && o.isReactWarning)\n          return !1;\n      }\n      return t.ref !== void 0;\n    }\n    function Et(t) {\n      if (ye.call(t, \"key\")) {\n        var o = Object.getOwnPropertyDescriptor(t, \"key\").get;\n        if (o && o.isReactWarning)\n          return !1;\n      }\n      return t.key !== void 0;\n    }\n    function xt(t, o) {\n      if (typeof t.ref == \"string\" && ce.current && o && ce.current.stateNode !== o) {\n        var c = G(ce.current.type);\n        je[c] || (p('Component \"%s\" contains the string ref \"%s\". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', G(ce.current.type), t.ref), je[c] = !0);\n      }\n    }\n    function wt(t, o) {\n      {\n        var c = function() {\n          mr || (mr = !0, p(\"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)\", o));\n        };\n        c.isReactWarning = !0, Object.defineProperty(t, \"key\", {\n          get: c,\n          configurable: !0\n        });\n      }\n    }\n    function _t(t, o) {\n      {\n        var c = function() {\n          vr || (vr = !0, p(\"%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)\", o));\n        };\n        c.isReactWarning = !0, Object.defineProperty(t, \"ref\", {\n          get: c,\n          configurable: !0\n        });\n      }\n    }\n    var St = function(t, o, c, m, w, k, y) {\n      var b = {\n        // This tag allows us to uniquely identify this as a React Element\n        $$typeof: r,\n        // Built-in properties that belong on the element\n        type: t,\n        key: o,\n        ref: c,\n        props: y,\n        // Record the component responsible for creating this element.\n        _owner: k\n      };\n      return b._store = {}, Object.defineProperty(b._store, \"validated\", {\n        configurable: !1,\n        enumerable: !1,\n        writable: !0,\n        value: !1\n      }), Object.defineProperty(b, \"_self\", {\n        configurable: !1,\n        enumerable: !1,\n        writable: !1,\n        value: m\n      }), Object.defineProperty(b, \"_source\", {\n        configurable: !1,\n        enumerable: !1,\n        writable: !1,\n        value: w\n      }), Object.freeze && (Object.freeze(b.props), Object.freeze(b)), b;\n    };\n    function Rt(t, o, c, m, w) {\n      {\n        var k, y = {}, b = null, F = null;\n        c !== void 0 && (hr(c), b = \"\" + c), Et(o) && (hr(o.key), b = \"\" + o.key), yt(o) && (F = o.ref, xt(o, w));\n        for (k in o)\n          ye.call(o, k) && !bt.hasOwnProperty(k) && (y[k] = o[k]);\n        if (t && t.defaultProps) {\n          var N = t.defaultProps;\n          for (k in N)\n            y[k] === void 0 && (y[k] = N[k]);\n        }\n        if (b || F) {\n          var A = typeof t == \"function\" ? t.displayName || t.name || \"Unknown\" : t;\n          b && wt(y, A), F && _t(y, A);\n        }\n        return St(t, b, F, w, m, ce.current, y);\n      }\n    }\n    var Le = E.ReactCurrentOwner, gr = E.ReactDebugCurrentFrame;\n    function ee(t) {\n      if (t) {\n        var o = t._owner, c = be(t.type, t._source, o ? o.type : null);\n        gr.setExtraStackFrame(c);\n      } else\n        gr.setExtraStackFrame(null);\n    }\n    var Ve;\n    Ve = !1;\n    function Fe(t) {\n      return typeof t == \"object\" && t !== null && t.$$typeof === r;\n    }\n    function br() {\n      {\n        if (Le.current) {\n          var t = G(Le.current.type);\n          if (t)\n            return `\n\nCheck the render method of \\`` + t + \"`.\";\n        }\n        return \"\";\n      }\n    }\n    function Ot(t) {\n      {\n        if (t !== void 0) {\n          var o = t.fileName.replace(/^.*[\\\\\\/]/, \"\"), c = t.lineNumber;\n          return `\n\nCheck your code at ` + o + \":\" + c + \".\";\n        }\n        return \"\";\n      }\n    }\n    var yr = {};\n    function kt(t) {\n      {\n        var o = br();\n        if (!o) {\n          var c = typeof t == \"string\" ? t : t.displayName || t.name;\n          c && (o = `\n\nCheck the top-level render call using <` + c + \">.\");\n        }\n        return o;\n      }\n    }\n    function Er(t, o) {\n      {\n        if (!t._store || t._store.validated || t.key != null)\n          return;\n        t._store.validated = !0;\n        var c = kt(o);\n        if (yr[c])\n          return;\n        yr[c] = !0;\n        var m = \"\";\n        t && t._owner && t._owner !== Le.current && (m = \" It was passed a child from \" + G(t._owner.type) + \".\"), ee(t), p('Each child in a list should have a unique \"key\" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', c, m), ee(null);\n      }\n    }\n    function xr(t, o) {\n      {\n        if (typeof t != \"object\")\n          return;\n        if (De(t))\n          for (var c = 0; c < t.length; c++) {\n            var m = t[c];\n            Fe(m) && Er(m, o);\n          }\n        else if (Fe(t))\n          t._store && (t._store.validated = !0);\n        else if (t) {\n          var w = O(t);\n          if (typeof w == \"function\" && w !== t.entries)\n            for (var k = w.call(t), y; !(y = k.next()).done; )\n              Fe(y.value) && Er(y.value, o);\n        }\n      }\n    }\n    function Ct(t) {\n      {\n        var o = t.type;\n        if (o == null || typeof o == \"string\")\n          return;\n        var c;\n        if (typeof o == \"function\")\n          c = o.propTypes;\n        else if (typeof o == \"object\" && (o.$$typeof === d || // Note: Memo only checks outer props here.\n        // Inner props are checked in the reconciler.\n        o.$$typeof === v))\n          c = o.propTypes;\n        else\n          return;\n        if (c) {\n          var m = G(o);\n          ht(c, t.props, \"prop\", m, t);\n        } else if (o.PropTypes !== void 0 && !Ve) {\n          Ve = !0;\n          var w = G(o);\n          p(\"Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?\", w || \"Unknown\");\n        }\n        typeof o.getDefaultProps == \"function\" && !o.getDefaultProps.isReactClassApproved && p(\"getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.\");\n      }\n    }\n    function Tt(t) {\n      {\n        for (var o = Object.keys(t.props), c = 0; c < o.length; c++) {\n          var m = o[c];\n          if (m !== \"children\" && m !== \"key\") {\n            ee(t), p(\"Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.\", m), ee(null);\n            break;\n          }\n        }\n        t.ref !== null && (ee(t), p(\"Invalid attribute `ref` supplied to `React.Fragment`.\"), ee(null));\n      }\n    }\n    function wr(t, o, c, m, w, k) {\n      {\n        var y = Q(t);\n        if (!y) {\n          var b = \"\";\n          (t === void 0 || typeof t == \"object\" && t !== null && Object.keys(t).length === 0) && (b += \" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.\");\n          var F = Ot(w);\n          F ? b += F : b += br();\n          var N;\n          t === null ? N = \"null\" : De(t) ? N = \"array\" : t !== void 0 && t.$$typeof === r ? (N = \"<\" + (G(t.type) || \"Unknown\") + \" />\", b = \" Did you accidentally export a JSX literal instead of a component?\") : N = typeof t, p(\"React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s\", N, b);\n        }\n        var A = Rt(t, o, c, w, k);\n        if (A == null)\n          return A;\n        if (y) {\n          var Y = o.children;\n          if (Y !== void 0)\n            if (m)\n              if (De(Y)) {\n                for (var re = 0; re < Y.length; re++)\n                  xr(Y[re], t);\n                Object.freeze && Object.freeze(Y);\n              } else\n                p(\"React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.\");\n            else\n              xr(Y, t);\n        }\n        return t === a ? Tt(A) : Ct(A), A;\n      }\n    }\n    function Pt(t, o, c) {\n      return wr(t, o, c, !0);\n    }\n    function Nt(t, o, c) {\n      return wr(t, o, c, !1);\n    }\n    var At = Nt, It = Pt;\n    ue.Fragment = a, ue.jsx = At, ue.jsxs = It;\n  }()), ue;\n}\n(function(e) {\n  process.env.NODE_ENV === \"production\" ? e.exports = Lt() : e.exports = Vt();\n})(jt);\nconst L = Re.jsx, Br = Re.jsxs;\nfunction ze() {\n  return ze = Object.assign ? Object.assign.bind() : function(e) {\n    for (var r = 1; r < arguments.length; r++) {\n      var n = arguments[r];\n      for (var a in n)\n        Object.prototype.hasOwnProperty.call(n, a) && (e[a] = n[a]);\n    }\n    return e;\n  }, ze.apply(this, arguments);\n}\nfunction Hr(e) {\n  var r = /* @__PURE__ */ Object.create(null);\n  return function(n) {\n    return r[n] === void 0 && (r[n] = e(n)), r[n];\n  };\n}\nvar Ft = /^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/, Mt = /* @__PURE__ */ Hr(\n  function(e) {\n    return Ft.test(e) || e.charCodeAt(0) === 111 && e.charCodeAt(1) === 110 && e.charCodeAt(2) < 91;\n  }\n  /* Z+1 */\n);\nfunction Wt(e) {\n  if (e.sheet)\n    return e.sheet;\n  for (var r = 0; r < document.styleSheets.length; r++)\n    if (document.styleSheets[r].ownerNode === e)\n      return document.styleSheets[r];\n}\nfunction zt(e) {\n  var r = document.createElement(\"style\");\n  return r.setAttribute(\"data-emotion\", e.key), e.nonce !== void 0 && r.setAttribute(\"nonce\", e.nonce), r.appendChild(document.createTextNode(\"\")), r.setAttribute(\"data-s\", \"\"), r;\n}\nvar Yt = /* @__PURE__ */ function() {\n  function e(n) {\n    var a = this;\n    this._insertTag = function(i) {\n      var s;\n      a.tags.length === 0 ? a.insertionPoint ? s = a.insertionPoint.nextSibling : a.prepend ? s = a.container.firstChild : s = a.before : s = a.tags[a.tags.length - 1].nextSibling, a.container.insertBefore(i, s), a.tags.push(i);\n    }, this.isSpeedy = n.speedy === void 0 ? process.env.NODE_ENV === \"production\" : n.speedy, this.tags = [], this.ctr = 0, this.nonce = n.nonce, this.key = n.key, this.container = n.container, this.prepend = n.prepend, this.insertionPoint = n.insertionPoint, this.before = null;\n  }\n  var r = e.prototype;\n  return r.hydrate = function(a) {\n    a.forEach(this._insertTag);\n  }, r.insert = function(a) {\n    this.ctr % (this.isSpeedy ? 65e3 : 1) === 0 && this._insertTag(zt(this));\n    var i = this.tags[this.tags.length - 1];\n    if (process.env.NODE_ENV !== \"production\") {\n      var s = a.charCodeAt(0) === 64 && a.charCodeAt(1) === 105;\n      s && this._alreadyInsertedOrderInsensitiveRule && console.error(`You're attempting to insert the following rule:\n` + a + \"\\n\\n`@import` rules must be before all other types of rules in a stylesheet but other rules have already been inserted. Please ensure that `@import` rules are before all other rules.\"), this._alreadyInsertedOrderInsensitiveRule = this._alreadyInsertedOrderInsensitiveRule || !s;\n    }\n    if (this.isSpeedy) {\n      var l = Wt(i);\n      try {\n        l.insertRule(a, l.cssRules.length);\n      } catch (u) {\n        process.env.NODE_ENV !== \"production\" && !/:(-moz-placeholder|-moz-focus-inner|-moz-focusring|-ms-input-placeholder|-moz-read-write|-moz-read-only|-ms-clear|-ms-expand|-ms-reveal){/.test(a) && console.error('There was a problem inserting the following rule: \"' + a + '\"', u);\n      }\n    } else\n      i.appendChild(document.createTextNode(a));\n    this.ctr++;\n  }, r.flush = function() {\n    this.tags.forEach(function(a) {\n      return a.parentNode && a.parentNode.removeChild(a);\n    }), this.tags = [], this.ctr = 0, process.env.NODE_ENV !== \"production\" && (this._alreadyInsertedOrderInsensitiveRule = !1);\n  }, e;\n}(), j = \"-ms-\", Oe = \"-moz-\", _ = \"-webkit-\", He = \"comm\", Ge = \"rule\", Je = \"decl\", Ut = \"@import\", Gr = \"@keyframes\", qt = Math.abs, Ce = String.fromCharCode, Bt = Object.assign;\nfunction Ht(e, r) {\n  return $(e, 0) ^ 45 ? (((r << 2 ^ $(e, 0)) << 2 ^ $(e, 1)) << 2 ^ $(e, 2)) << 2 ^ $(e, 3) : 0;\n}\nfunction Jr(e) {\n  return e.trim();\n}\nfunction Gt(e, r) {\n  return (e = r.exec(e)) ? e[0] : e;\n}\nfunction S(e, r, n) {\n  return e.replace(r, n);\n}\nfunction Ye(e, r) {\n  return e.indexOf(r);\n}\nfunction $(e, r) {\n  return e.charCodeAt(r) | 0;\n}\nfunction de(e, r, n) {\n  return e.slice(r, n);\n}\nfunction B(e) {\n  return e.length;\n}\nfunction Xe(e) {\n  return e.length;\n}\nfunction xe(e, r) {\n  return r.push(e), e;\n}\nfunction Jt(e, r) {\n  return e.map(r).join(\"\");\n}\nvar Te = 1, ie = 1, Xr = 0, M = 0, I = 0, oe = \"\";\nfunction Pe(e, r, n, a, i, s, l) {\n  return { value: e, root: r, parent: n, type: a, props: i, children: s, line: Te, column: ie, length: l, return: \"\" };\n}\nfunction fe(e, r) {\n  return Bt(Pe(\"\", null, null, \"\", null, null, 0), e, { length: -e.length }, r);\n}\nfunction Xt() {\n  return I;\n}\nfunction Kt() {\n  return I = M > 0 ? $(oe, --M) : 0, ie--, I === 10 && (ie = 1, Te--), I;\n}\nfunction W() {\n  return I = M < Xr ? $(oe, M++) : 0, ie++, I === 10 && (ie = 1, Te++), I;\n}\nfunction H() {\n  return $(oe, M);\n}\nfunction we() {\n  return M;\n}\nfunction me(e, r) {\n  return de(oe, e, r);\n}\nfunction pe(e) {\n  switch (e) {\n    case 0:\n    case 9:\n    case 10:\n    case 13:\n    case 32:\n      return 5;\n    case 33:\n    case 43:\n    case 44:\n    case 47:\n    case 62:\n    case 64:\n    case 126:\n    case 59:\n    case 123:\n    case 125:\n      return 4;\n    case 58:\n      return 3;\n    case 34:\n    case 39:\n    case 40:\n    case 91:\n      return 2;\n    case 41:\n    case 93:\n      return 1;\n  }\n  return 0;\n}\nfunction Kr(e) {\n  return Te = ie = 1, Xr = B(oe = e), M = 0, [];\n}\nfunction Zr(e) {\n  return oe = \"\", e;\n}\nfunction _e(e) {\n  return Jr(me(M - 1, Ue(e === 91 ? e + 2 : e === 40 ? e + 1 : e)));\n}\nfunction Zt(e) {\n  for (; (I = H()) && I < 33; )\n    W();\n  return pe(e) > 2 || pe(I) > 3 ? \"\" : \" \";\n}\nfunction Qt(e, r) {\n  for (; --r && W() && !(I < 48 || I > 102 || I > 57 && I < 65 || I > 70 && I < 97); )\n    ;\n  return me(e, we() + (r < 6 && H() == 32 && W() == 32));\n}\nfunction Ue(e) {\n  for (; W(); )\n    switch (I) {\n      case e:\n        return M;\n      case 34:\n      case 39:\n        e !== 34 && e !== 39 && Ue(I);\n        break;\n      case 40:\n        e === 41 && Ue(e);\n        break;\n      case 92:\n        W();\n        break;\n    }\n  return M;\n}\nfunction en(e, r) {\n  for (; W() && e + I !== 47 + 10; )\n    if (e + I === 42 + 42 && H() === 47)\n      break;\n  return \"/*\" + me(r, M - 1) + \"*\" + Ce(e === 47 ? e : W());\n}\nfunction rn(e) {\n  for (; !pe(H()); )\n    W();\n  return me(e, M);\n}\nfunction tn(e) {\n  return Zr(Se(\"\", null, null, null, [\"\"], e = Kr(e), 0, [0], e));\n}\nfunction Se(e, r, n, a, i, s, l, u, d) {\n  for (var g = 0, f = 0, v = l, C = 0, T = 0, x = 0, h = 1, O = 1, E = 1, p = 0, P = \"\", q = i, D = s, V = a, R = P; O; )\n    switch (x = p, p = W()) {\n      case 40:\n        if (x != 108 && $(R, v - 1) == 58) {\n          Ye(R += S(_e(p), \"&\", \"&\\f\"), \"&\\f\") != -1 && (E = -1);\n          break;\n        }\n      case 34:\n      case 39:\n      case 91:\n        R += _e(p);\n        break;\n      case 9:\n      case 10:\n      case 13:\n      case 32:\n        R += Zt(x);\n        break;\n      case 92:\n        R += Qt(we() - 1, 7);\n        continue;\n      case 47:\n        switch (H()) {\n          case 42:\n          case 47:\n            xe(nn(en(W(), we()), r, n), d);\n            break;\n          default:\n            R += \"/\";\n        }\n        break;\n      case 123 * h:\n        u[g++] = B(R) * E;\n      case 125 * h:\n      case 59:\n      case 0:\n        switch (p) {\n          case 0:\n          case 125:\n            O = 0;\n          case 59 + f:\n            T > 0 && B(R) - v && xe(T > 32 ? Cr(R + \";\", a, n, v - 1) : Cr(S(R, \" \", \"\") + \";\", a, n, v - 2), d);\n            break;\n          case 59:\n            R += \";\";\n          default:\n            if (xe(V = kr(R, r, n, g, f, i, u, P, q = [], D = [], v), s), p === 123)\n              if (f === 0)\n                Se(R, r, V, V, q, s, v, u, D);\n              else\n                switch (C === 99 && $(R, 3) === 110 ? 100 : C) {\n                  case 100:\n                  case 109:\n                  case 115:\n                    Se(e, V, V, a && xe(kr(e, V, V, 0, 0, i, u, P, i, q = [], v), D), i, D, v, u, a ? q : D);\n                    break;\n                  default:\n                    Se(R, V, V, V, [\"\"], D, 0, u, D);\n                }\n        }\n        g = f = T = 0, h = E = 1, P = R = \"\", v = l;\n        break;\n      case 58:\n        v = 1 + B(R), T = x;\n      default:\n        if (h < 1) {\n          if (p == 123)\n            --h;\n          else if (p == 125 && h++ == 0 && Kt() == 125)\n            continue;\n        }\n        switch (R += Ce(p), p * h) {\n          case 38:\n            E = f > 0 ? 1 : (R += \"\\f\", -1);\n            break;\n          case 44:\n            u[g++] = (B(R) - 1) * E, E = 1;\n            break;\n          case 64:\n            H() === 45 && (R += _e(W())), C = H(), f = v = B(P = R += rn(we())), p++;\n            break;\n          case 45:\n            x === 45 && B(R) == 2 && (h = 0);\n        }\n    }\n  return s;\n}\nfunction kr(e, r, n, a, i, s, l, u, d, g, f) {\n  for (var v = i - 1, C = i === 0 ? s : [\"\"], T = Xe(C), x = 0, h = 0, O = 0; x < a; ++x)\n    for (var E = 0, p = de(e, v + 1, v = qt(h = l[x])), P = e; E < T; ++E)\n      (P = Jr(h > 0 ? C[E] + \" \" + p : S(p, /&\\f/g, C[E]))) && (d[O++] = P);\n  return Pe(e, r, n, i === 0 ? Ge : u, d, g, f);\n}\nfunction nn(e, r, n) {\n  return Pe(e, r, n, He, Ce(Xt()), de(e, 2, -2), 0);\n}\nfunction Cr(e, r, n, a) {\n  return Pe(e, r, n, Je, de(e, 0, a), de(e, a + 1, -1), a);\n}\nfunction ae(e, r) {\n  for (var n = \"\", a = Xe(e), i = 0; i < a; i++)\n    n += r(e[i], i, e, r) || \"\";\n  return n;\n}\nfunction an(e, r, n, a) {\n  switch (e.type) {\n    case Ut:\n    case Je:\n      return e.return = e.return || e.value;\n    case He:\n      return \"\";\n    case Gr:\n      return e.return = e.value + \"{\" + ae(e.children, a) + \"}\";\n    case Ge:\n      e.value = e.props.join(\",\");\n  }\n  return B(n = ae(e.children, a)) ? e.return = e.value + \"{\" + n + \"}\" : \"\";\n}\nfunction on(e) {\n  var r = Xe(e);\n  return function(n, a, i, s) {\n    for (var l = \"\", u = 0; u < r; u++)\n      l += e[u](n, a, i, s) || \"\";\n    return l;\n  };\n}\nfunction sn(e) {\n  return function(r) {\n    r.root || (r = r.return) && e(r);\n  };\n}\nvar cn = function(r, n, a) {\n  for (var i = 0, s = 0; i = s, s = H(), i === 38 && s === 12 && (n[a] = 1), !pe(s); )\n    W();\n  return me(r, M);\n}, ln = function(r, n) {\n  var a = -1, i = 44;\n  do\n    switch (pe(i)) {\n      case 0:\n        i === 38 && H() === 12 && (n[a] = 1), r[a] += cn(M - 1, n, a);\n        break;\n      case 2:\n        r[a] += _e(i);\n        break;\n      case 4:\n        if (i === 44) {\n          r[++a] = H() === 58 ? \"&\\f\" : \"\", n[a] = r[a].length;\n          break;\n        }\n      default:\n        r[a] += Ce(i);\n    }\n  while (i = W());\n  return r;\n}, un = function(r, n) {\n  return Zr(ln(Kr(r), n));\n}, Tr = /* @__PURE__ */ new WeakMap(), fn = function(r) {\n  if (!(r.type !== \"rule\" || !r.parent || // positive .length indicates that this rule contains pseudo\n  // negative .length indicates that this rule has been already prefixed\n  r.length < 1)) {\n    for (var n = r.value, a = r.parent, i = r.column === a.column && r.line === a.line; a.type !== \"rule\"; )\n      if (a = a.parent, !a)\n        return;\n    if (!(r.props.length === 1 && n.charCodeAt(0) !== 58 && !Tr.get(a)) && !i) {\n      Tr.set(r, !0);\n      for (var s = [], l = un(n, s), u = a.props, d = 0, g = 0; d < l.length; d++)\n        for (var f = 0; f < u.length; f++, g++)\n          r.props[g] = s[d] ? l[d].replace(/&\\f/g, u[f]) : u[f] + \" \" + l[d];\n    }\n  }\n}, dn = function(r) {\n  if (r.type === \"decl\") {\n    var n = r.value;\n    // charcode for l\n    n.charCodeAt(0) === 108 && // charcode for b\n    n.charCodeAt(2) === 98 && (r.return = \"\", r.value = \"\");\n  }\n}, pn = \"emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason\", hn = function(r) {\n  return r.type === \"comm\" && r.children.indexOf(pn) > -1;\n}, mn = function(r) {\n  return function(n, a, i) {\n    if (!(n.type !== \"rule\" || r.compat)) {\n      var s = n.value.match(/(:first|:nth|:nth-last)-child/g);\n      if (s) {\n        for (var l = !!n.parent, u = l ? n.parent.children : (\n          // global rule at the root level\n          i\n        ), d = u.length - 1; d >= 0; d--) {\n          var g = u[d];\n          if (g.line < n.line)\n            break;\n          if (g.column < n.column) {\n            if (hn(g))\n              return;\n            break;\n          }\n        }\n        s.forEach(function(f) {\n          console.error('The pseudo class \"' + f + '\" is potentially unsafe when doing server-side rendering. Try changing it to \"' + f.split(\"-child\")[0] + '-of-type\".');\n        });\n      }\n    }\n  };\n}, Qr = function(r) {\n  return r.type.charCodeAt(1) === 105 && r.type.charCodeAt(0) === 64;\n}, vn = function(r, n) {\n  for (var a = r - 1; a >= 0; a--)\n    if (!Qr(n[a]))\n      return !0;\n  return !1;\n}, Pr = function(r) {\n  r.type = \"\", r.value = \"\", r.return = \"\", r.children = \"\", r.props = \"\";\n}, gn = function(r, n, a) {\n  Qr(r) && (r.parent ? (console.error(\"`@import` rules can't be nested inside other rules. Please move it to the top level and put it before regular rules. Keep in mind that they can only be used within global styles.\"), Pr(r)) : vn(n, a) && (console.error(\"`@import` rules can't be after other rules. Please put your `@import` rules before your other rules.\"), Pr(r)));\n};\nfunction et(e, r) {\n  switch (Ht(e, r)) {\n    case 5103:\n      return _ + \"print-\" + e + e;\n    case 5737:\n    case 4201:\n    case 3177:\n    case 3433:\n    case 1641:\n    case 4457:\n    case 2921:\n    case 5572:\n    case 6356:\n    case 5844:\n    case 3191:\n    case 6645:\n    case 3005:\n    case 6391:\n    case 5879:\n    case 5623:\n    case 6135:\n    case 4599:\n    case 4855:\n    case 4215:\n    case 6389:\n    case 5109:\n    case 5365:\n    case 5621:\n    case 3829:\n      return _ + e + e;\n    case 5349:\n    case 4246:\n    case 4810:\n    case 6968:\n    case 2756:\n      return _ + e + Oe + e + j + e + e;\n    case 6828:\n    case 4268:\n      return _ + e + j + e + e;\n    case 6165:\n      return _ + e + j + \"flex-\" + e + e;\n    case 5187:\n      return _ + e + S(e, /(\\w+).+(:[^]+)/, _ + \"box-$1$2\" + j + \"flex-$1$2\") + e;\n    case 5443:\n      return _ + e + j + \"flex-item-\" + S(e, /flex-|-self/, \"\") + e;\n    case 4675:\n      return _ + e + j + \"flex-line-pack\" + S(e, /align-content|flex-|-self/, \"\") + e;\n    case 5548:\n      return _ + e + j + S(e, \"shrink\", \"negative\") + e;\n    case 5292:\n      return _ + e + j + S(e, \"basis\", \"preferred-size\") + e;\n    case 6060:\n      return _ + \"box-\" + S(e, \"-grow\", \"\") + _ + e + j + S(e, \"grow\", \"positive\") + e;\n    case 4554:\n      return _ + S(e, /([^-])(transform)/g, \"$1\" + _ + \"$2\") + e;\n    case 6187:\n      return S(S(S(e, /(zoom-|grab)/, _ + \"$1\"), /(image-set)/, _ + \"$1\"), e, \"\") + e;\n    case 5495:\n    case 3959:\n      return S(e, /(image-set\\([^]*)/, _ + \"$1$`$1\");\n    case 4968:\n      return S(S(e, /(.+:)(flex-)?(.*)/, _ + \"box-pack:$3\" + j + \"flex-pack:$3\"), /s.+-b[^;]+/, \"justify\") + _ + e + e;\n    case 4095:\n    case 3583:\n    case 4068:\n    case 2532:\n      return S(e, /(.+)-inline(.+)/, _ + \"$1$2\") + e;\n    case 8116:\n    case 7059:\n    case 5753:\n    case 5535:\n    case 5445:\n    case 5701:\n    case 4933:\n    case 4677:\n    case 5533:\n    case 5789:\n    case 5021:\n    case 4765:\n      if (B(e) - 1 - r > 6)\n        switch ($(e, r + 1)) {\n          case 109:\n            if ($(e, r + 4) !== 45)\n              break;\n          case 102:\n            return S(e, /(.+:)(.+)-([^]+)/, \"$1\" + _ + \"$2-$3$1\" + Oe + ($(e, r + 3) == 108 ? \"$3\" : \"$2-$3\")) + e;\n          case 115:\n            return ~Ye(e, \"stretch\") ? et(S(e, \"stretch\", \"fill-available\"), r) + e : e;\n        }\n      break;\n    case 4949:\n      if ($(e, r + 1) !== 115)\n        break;\n    case 6444:\n      switch ($(e, B(e) - 3 - (~Ye(e, \"!important\") && 10))) {\n        case 107:\n          return S(e, \":\", \":\" + _) + e;\n        case 101:\n          return S(e, /(.+:)([^;!]+)(;|!.+)?/, \"$1\" + _ + ($(e, 14) === 45 ? \"inline-\" : \"\") + \"box$3$1\" + _ + \"$2$3$1\" + j + \"$2box$3\") + e;\n      }\n      break;\n    case 5936:\n      switch ($(e, r + 11)) {\n        case 114:\n          return _ + e + j + S(e, /[svh]\\w+-[tblr]{2}/, \"tb\") + e;\n        case 108:\n          return _ + e + j + S(e, /[svh]\\w+-[tblr]{2}/, \"tb-rl\") + e;\n        case 45:\n          return _ + e + j + S(e, /[svh]\\w+-[tblr]{2}/, \"lr\") + e;\n      }\n      return _ + e + j + e + e;\n  }\n  return e;\n}\nvar bn = function(r, n, a, i) {\n  if (r.length > -1 && !r.return)\n    switch (r.type) {\n      case Je:\n        r.return = et(r.value, r.length);\n        break;\n      case Gr:\n        return ae([fe(r, {\n          value: S(r.value, \"@\", \"@\" + _)\n        })], i);\n      case Ge:\n        if (r.length)\n          return Jt(r.props, function(s) {\n            switch (Gt(s, /(::plac\\w+|:read-\\w+)/)) {\n              case \":read-only\":\n              case \":read-write\":\n                return ae([fe(r, {\n                  props: [S(s, /:(read-\\w+)/, \":\" + Oe + \"$1\")]\n                })], i);\n              case \"::placeholder\":\n                return ae([fe(r, {\n                  props: [S(s, /:(plac\\w+)/, \":\" + _ + \"input-$1\")]\n                }), fe(r, {\n                  props: [S(s, /:(plac\\w+)/, \":\" + Oe + \"$1\")]\n                }), fe(r, {\n                  props: [S(s, /:(plac\\w+)/, j + \"input-$1\")]\n                })], i);\n            }\n            return \"\";\n          });\n    }\n}, yn = [bn], En = function(r) {\n  var n = r.key;\n  if (process.env.NODE_ENV !== \"production\" && !n)\n    throw new Error(`You have to configure \\`key\\` for your cache. Please make sure it's unique (and not equal to 'css') as it's used for linking styles to your cache.\nIf multiple caches share the same key they might \"fight\" for each other's style elements.`);\n  if (n === \"css\") {\n    var a = document.querySelectorAll(\"style[data-emotion]:not([data-s])\");\n    Array.prototype.forEach.call(a, function(h) {\n      var O = h.getAttribute(\"data-emotion\");\n      O.indexOf(\" \") !== -1 && (document.head.appendChild(h), h.setAttribute(\"data-s\", \"\"));\n    });\n  }\n  var i = r.stylisPlugins || yn;\n  if (process.env.NODE_ENV !== \"production\" && /[^a-z-]/.test(n))\n    throw new Error('Emotion key must only contain lower case alphabetical characters and - but \"' + n + '\" was passed');\n  var s = {}, l, u = [];\n  l = r.container || document.head, Array.prototype.forEach.call(\n    // this means we will ignore elements which don't have a space in them which\n    // means that the style elements we're looking at are only Emotion 11 server-rendered style elements\n    document.querySelectorAll('style[data-emotion^=\"' + n + ' \"]'),\n    function(h) {\n      for (var O = h.getAttribute(\"data-emotion\").split(\" \"), E = 1; E < O.length; E++)\n        s[O[E]] = !0;\n      u.push(h);\n    }\n  );\n  var d, g = [fn, dn];\n  process.env.NODE_ENV !== \"production\" && g.push(mn({\n    get compat() {\n      return x.compat;\n    }\n  }), gn);\n  {\n    var f, v = [an, process.env.NODE_ENV !== \"production\" ? function(h) {\n      h.root || (h.return ? f.insert(h.return) : h.value && h.type !== He && f.insert(h.value + \"{}\"));\n    } : sn(function(h) {\n      f.insert(h);\n    })], C = on(g.concat(i, v)), T = function(O) {\n      return ae(tn(O), C);\n    };\n    d = function(O, E, p, P) {\n      f = p, process.env.NODE_ENV !== \"production\" && E.map !== void 0 && (f = {\n        insert: function(D) {\n          p.insert(D + E.map);\n        }\n      }), T(O ? O + \"{\" + E.styles + \"}\" : E.styles), P && (x.inserted[E.name] = !0);\n    };\n  }\n  var x = {\n    key: n,\n    sheet: new Yt({\n      key: n,\n      container: l,\n      nonce: r.nonce,\n      speedy: r.speedy,\n      prepend: r.prepend,\n      insertionPoint: r.insertionPoint\n    }),\n    nonce: r.nonce,\n    inserted: s,\n    registered: {},\n    insert: d\n  };\n  return x.sheet.hydrate(u), x;\n}, xn = !0;\nfunction rt(e, r, n) {\n  var a = \"\";\n  return n.split(\" \").forEach(function(i) {\n    e[i] !== void 0 ? r.push(e[i] + \";\") : a += i + \" \";\n  }), a;\n}\nvar Ke = function(r, n, a) {\n  var i = r.key + \"-\" + n.name;\n  // we only need to add the styles to the registered cache if the\n  // class name could be used further down\n  // the tree but if it's a string tag, we know it won't\n  // so we don't have to add it to registered cache.\n  // this improves memory usage since we can avoid storing the whole style string\n  (a === !1 || // we need to always store it if we're in compat mode and\n  // in node since emotion-server relies on whether a style is in\n  // the registered cache to know whether a style is global or not\n  // also, note that this check will be dead code eliminated in the browser\n  xn === !1) && r.registered[i] === void 0 && (r.registered[i] = n.styles);\n}, tt = function(r, n, a) {\n  Ke(r, n, a);\n  var i = r.key + \"-\" + n.name;\n  if (r.inserted[n.name] === void 0) {\n    var s = n;\n    do\n      r.insert(n === s ? \".\" + i : \"\", s, r.sheet, !0), s = s.next;\n    while (s !== void 0);\n  }\n};\nfunction wn(e) {\n  for (var r = 0, n, a = 0, i = e.length; i >= 4; ++a, i -= 4)\n    n = e.charCodeAt(a) & 255 | (e.charCodeAt(++a) & 255) << 8 | (e.charCodeAt(++a) & 255) << 16 | (e.charCodeAt(++a) & 255) << 24, n = /* Math.imul(k, m): */\n    (n & 65535) * 1540483477 + ((n >>> 16) * 59797 << 16), n ^= /* k >>> r: */\n    n >>> 24, r = /* Math.imul(k, m): */\n    (n & 65535) * 1540483477 + ((n >>> 16) * 59797 << 16) ^ /* Math.imul(h, m): */\n    (r & 65535) * 1540483477 + ((r >>> 16) * 59797 << 16);\n  switch (i) {\n    case 3:\n      r ^= (e.charCodeAt(a + 2) & 255) << 16;\n    case 2:\n      r ^= (e.charCodeAt(a + 1) & 255) << 8;\n    case 1:\n      r ^= e.charCodeAt(a) & 255, r = /* Math.imul(h, m): */\n      (r & 65535) * 1540483477 + ((r >>> 16) * 59797 << 16);\n  }\n  return r ^= r >>> 13, r = /* Math.imul(h, m): */\n  (r & 65535) * 1540483477 + ((r >>> 16) * 59797 << 16), ((r ^ r >>> 15) >>> 0).toString(36);\n}\nvar _n = {\n  animationIterationCount: 1,\n  borderImageOutset: 1,\n  borderImageSlice: 1,\n  borderImageWidth: 1,\n  boxFlex: 1,\n  boxFlexGroup: 1,\n  boxOrdinalGroup: 1,\n  columnCount: 1,\n  columns: 1,\n  flex: 1,\n  flexGrow: 1,\n  flexPositive: 1,\n  flexShrink: 1,\n  flexNegative: 1,\n  flexOrder: 1,\n  gridRow: 1,\n  gridRowEnd: 1,\n  gridRowSpan: 1,\n  gridRowStart: 1,\n  gridColumn: 1,\n  gridColumnEnd: 1,\n  gridColumnSpan: 1,\n  gridColumnStart: 1,\n  msGridRow: 1,\n  msGridRowSpan: 1,\n  msGridColumn: 1,\n  msGridColumnSpan: 1,\n  fontWeight: 1,\n  lineHeight: 1,\n  opacity: 1,\n  order: 1,\n  orphans: 1,\n  tabSize: 1,\n  widows: 1,\n  zIndex: 1,\n  zoom: 1,\n  WebkitLineClamp: 1,\n  // SVG-related properties\n  fillOpacity: 1,\n  floodOpacity: 1,\n  stopOpacity: 1,\n  strokeDasharray: 1,\n  strokeDashoffset: 1,\n  strokeMiterlimit: 1,\n  strokeOpacity: 1,\n  strokeWidth: 1\n}, Nr = `You have illegal escape sequence in your template literal, most likely inside content's property value.\nBecause you write your CSS inside a JavaScript string you actually have to do double escaping, so for example \"content: '\\\\00d7';\" should become \"content: '\\\\\\\\00d7';\".\nYou can read more about this here:\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences`, Sn = \"You have passed in falsy value as style object's key (can happen when in example you pass unexported component as computed key).\", Rn = /[A-Z]|^ms/g, nt = /_EMO_([^_]+?)_([^]*?)_EMO_/g, Ze = function(r) {\n  return r.charCodeAt(1) === 45;\n}, Ar = function(r) {\n  return r != null && typeof r != \"boolean\";\n}, Me = /* @__PURE__ */ Hr(function(e) {\n  return Ze(e) ? e : e.replace(Rn, \"-$&\").toLowerCase();\n}), ke = function(r, n) {\n  switch (r) {\n    case \"animation\":\n    case \"animationName\":\n      if (typeof n == \"string\")\n        return n.replace(nt, function(a, i, s) {\n          return U = {\n            name: i,\n            styles: s,\n            next: U\n          }, i;\n        });\n  }\n  return _n[r] !== 1 && !Ze(r) && typeof n == \"number\" && n !== 0 ? n + \"px\" : n;\n};\nif (process.env.NODE_ENV !== \"production\") {\n  var On = /(var|attr|counters?|url|element|(((repeating-)?(linear|radial))|conic)-gradient)\\(|(no-)?(open|close)-quote/, kn = [\"normal\", \"none\", \"initial\", \"inherit\", \"unset\"], Cn = ke, Tn = /^-ms-/, Pn = /-(.)/g, Ir = {};\n  ke = function(r, n) {\n    if (r === \"content\" && (typeof n != \"string\" || kn.indexOf(n) === -1 && !On.test(n) && (n.charAt(0) !== n.charAt(n.length - 1) || n.charAt(0) !== '\"' && n.charAt(0) !== \"'\")))\n      throw new Error(\"You seem to be using a value for 'content' without quotes, try replacing it with `content: '\\\"\" + n + \"\\\"'`\");\n    var a = Cn(r, n);\n    return a !== \"\" && !Ze(r) && r.indexOf(\"-\") !== -1 && Ir[r] === void 0 && (Ir[r] = !0, console.error(\"Using kebab-case for css properties in objects is not supported. Did you mean \" + r.replace(Tn, \"ms-\").replace(Pn, function(i, s) {\n      return s.toUpperCase();\n    }) + \"?\")), a;\n  };\n}\nvar at = \"Component selectors can only be used in conjunction with @emotion/babel-plugin, the swc Emotion plugin, or another Emotion-aware compiler transform.\";\nfunction he(e, r, n) {\n  if (n == null)\n    return \"\";\n  if (n.__emotion_styles !== void 0) {\n    if (process.env.NODE_ENV !== \"production\" && n.toString() === \"NO_COMPONENT_SELECTOR\")\n      throw new Error(at);\n    return n;\n  }\n  switch (typeof n) {\n    case \"boolean\":\n      return \"\";\n    case \"object\": {\n      if (n.anim === 1)\n        return U = {\n          name: n.name,\n          styles: n.styles,\n          next: U\n        }, n.name;\n      if (n.styles !== void 0) {\n        var a = n.next;\n        if (a !== void 0)\n          for (; a !== void 0; )\n            U = {\n              name: a.name,\n              styles: a.styles,\n              next: U\n            }, a = a.next;\n        var i = n.styles + \";\";\n        return process.env.NODE_ENV !== \"production\" && n.map !== void 0 && (i += n.map), i;\n      }\n      return Nn(e, r, n);\n    }\n    case \"function\": {\n      if (e !== void 0) {\n        var s = U, l = n(e);\n        return U = s, he(e, r, l);\n      } else\n        process.env.NODE_ENV !== \"production\" && console.error(\"Functions that are interpolated in css calls will be stringified.\\nIf you want to have a css call based on props, create a function that returns a css call like this\\nlet dynamicStyle = (props) => css`color: ${props.color}`\\nIt can be called directly with props or interpolated in a styled call like this\\nlet SomeComponent = styled('div')`${dynamicStyle}`\");\n      break;\n    }\n    case \"string\":\n      if (process.env.NODE_ENV !== \"production\") {\n        var u = [], d = n.replace(nt, function(f, v, C) {\n          var T = \"animation\" + u.length;\n          return u.push(\"const \" + T + \" = keyframes`\" + C.replace(/^@keyframes animation-\\w+/, \"\") + \"`\"), \"${\" + T + \"}\";\n        });\n        u.length && console.error(\"`keyframes` output got interpolated into plain string, please wrap it with `css`.\\n\\nInstead of doing this:\\n\\n\" + [].concat(u, [\"`\" + d + \"`\"]).join(`\n`) + `\n\nYou should wrap it with \\`css\\` like this:\n\n` + (\"css`\" + d + \"`\"));\n      }\n      break;\n  }\n  if (r == null)\n    return n;\n  var g = r[n];\n  return g !== void 0 ? g : n;\n}\nfunction Nn(e, r, n) {\n  var a = \"\";\n  if (Array.isArray(n))\n    for (var i = 0; i < n.length; i++)\n      a += he(e, r, n[i]) + \";\";\n  else\n    for (var s in n) {\n      var l = n[s];\n      if (typeof l != \"object\")\n        r != null && r[l] !== void 0 ? a += s + \"{\" + r[l] + \"}\" : Ar(l) && (a += Me(s) + \":\" + ke(s, l) + \";\");\n      else {\n        if (s === \"NO_COMPONENT_SELECTOR\" && process.env.NODE_ENV !== \"production\")\n          throw new Error(at);\n        if (Array.isArray(l) && typeof l[0] == \"string\" && (r == null || r[l[0]] === void 0))\n          for (var u = 0; u < l.length; u++)\n            Ar(l[u]) && (a += Me(s) + \":\" + ke(s, l[u]) + \";\");\n        else {\n          var d = he(e, r, l);\n          switch (s) {\n            case \"animation\":\n            case \"animationName\": {\n              a += Me(s) + \":\" + d + \";\";\n              break;\n            }\n            default:\n              process.env.NODE_ENV !== \"production\" && s === \"undefined\" && console.error(Sn), a += s + \"{\" + d + \"}\";\n          }\n        }\n      }\n    }\n  return a;\n}\nvar $r = /label:\\s*([^\\s;\\n{]+)\\s*(;|$)/g, it;\nprocess.env.NODE_ENV !== \"production\" && (it = /\\/\\*#\\ssourceMappingURL=data:application\\/json;\\S+\\s+\\*\\//g);\nvar U, qe = function(r, n, a) {\n  if (r.length === 1 && typeof r[0] == \"object\" && r[0] !== null && r[0].styles !== void 0)\n    return r[0];\n  var i = !0, s = \"\";\n  U = void 0;\n  var l = r[0];\n  l == null || l.raw === void 0 ? (i = !1, s += he(a, n, l)) : (process.env.NODE_ENV !== \"production\" && l[0] === void 0 && console.error(Nr), s += l[0]);\n  for (var u = 1; u < r.length; u++)\n    s += he(a, n, r[u]), i && (process.env.NODE_ENV !== \"production\" && l[u] === void 0 && console.error(Nr), s += l[u]);\n  var d;\n  process.env.NODE_ENV !== \"production\" && (s = s.replace(it, function(C) {\n    return d = C, \"\";\n  })), $r.lastIndex = 0;\n  for (var g = \"\", f; (f = $r.exec(s)) !== null; )\n    g += \"-\" + // $FlowFixMe we know it's not null\n    f[1];\n  var v = wn(s) + g;\n  return process.env.NODE_ENV !== \"production\" ? {\n    name: v,\n    styles: s,\n    map: d,\n    next: U,\n    toString: function() {\n      return \"You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop).\";\n    }\n  } : {\n    name: v,\n    styles: s,\n    next: U\n  };\n}, An = function(r) {\n  return r();\n}, In = Sr[\"useInsertionEffect\"] ? Sr[\"useInsertionEffect\"] : !1, ot = In || An, $n = {}.hasOwnProperty, Qe = /* @__PURE__ */ Ur(\n  // we're doing this to avoid preconstruct's dead code elimination in this one case\n  // because this module is primarily intended for the browser and node\n  // but it's also required in react native and similar environments sometimes\n  // and we could have a special build just for that\n  // but this is much easier and the native packages\n  // might use a different theme context in the future anyway\n  typeof HTMLElement < \"u\" ? /* @__PURE__ */ En({\n    key: \"css\"\n  }) : null\n);\nprocess.env.NODE_ENV !== \"production\" && (Qe.displayName = \"EmotionCacheContext\");\nQe.Provider;\nvar st = function(r) {\n  return /* @__PURE__ */ $t(function(n, a) {\n    var i = Be(Qe);\n    return r(n, i, a);\n  });\n}, er = /* @__PURE__ */ Ur({});\nprocess.env.NODE_ENV !== \"production\" && (er.displayName = \"EmotionThemeContext\");\nvar Dr = \"__EMOTION_TYPE_PLEASE_DO_NOT_USE__\", jr = \"__EMOTION_LABEL_PLEASE_DO_NOT_USE__\", Dn = function(r) {\n  var n = r.cache, a = r.serialized, i = r.isStringTag;\n  return Ke(n, a, i), ot(function() {\n    return tt(n, a, i);\n  }), null;\n}, jn = /* @__PURE__ */ st(function(e, r, n) {\n  var a = e.css;\n  typeof a == \"string\" && r.registered[a] !== void 0 && (a = r.registered[a]);\n  var i = e[Dr], s = [a], l = \"\";\n  typeof e.className == \"string\" ? l = rt(r.registered, s, e.className) : e.className != null && (l = e.className + \" \");\n  var u = qe(s, void 0, Be(er));\n  if (process.env.NODE_ENV !== \"production\" && u.name.indexOf(\"-\") === -1) {\n    var d = e[jr];\n    d && (u = qe([u, \"label:\" + d + \";\"]));\n  }\n  l += r.key + \"-\" + u.name;\n  var g = {};\n  for (var f in e)\n    $n.call(e, f) && f !== \"css\" && f !== Dr && (process.env.NODE_ENV === \"production\" || f !== jr) && (g[f] = e[f]);\n  return g.ref = n, g.className = l, /* @__PURE__ */ ne(qr, null, /* @__PURE__ */ ne(Dn, {\n    cache: r,\n    serialized: u,\n    isStringTag: typeof i == \"string\"\n  }), /* @__PURE__ */ ne(i, g));\n});\nprocess.env.NODE_ENV !== \"production\" && (jn.displayName = \"EmotionCssPropInternal\");\nvar Ln = Mt, Vn = function(r) {\n  return r !== \"theme\";\n}, Lr = function(r) {\n  return typeof r == \"string\" && // 96 is one less than the char code\n  // for \"a\" so this is checking that\n  // it's a lowercase character\n  r.charCodeAt(0) > 96 ? Ln : Vn;\n}, Vr = function(r, n, a) {\n  var i;\n  if (n) {\n    var s = n.shouldForwardProp;\n    i = r.__emotion_forwardProp && s ? function(l) {\n      return r.__emotion_forwardProp(l) && s(l);\n    } : s;\n  }\n  return typeof i != \"function\" && a && (i = r.__emotion_forwardProp), i;\n}, Fr = `You have illegal escape sequence in your template literal, most likely inside content's property value.\nBecause you write your CSS inside a JavaScript string you actually have to do double escaping, so for example \"content: '\\\\00d7';\" should become \"content: '\\\\\\\\00d7';\".\nYou can read more about this here:\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences`, Fn = function(r) {\n  var n = r.cache, a = r.serialized, i = r.isStringTag;\n  return Ke(n, a, i), ot(function() {\n    return tt(n, a, i);\n  }), null;\n}, Mn = function e(r, n) {\n  if (process.env.NODE_ENV !== \"production\" && r === void 0)\n    throw new Error(`You are trying to create a styled element with an undefined component.\nYou may have forgotten to import it.`);\n  var a = r.__emotion_real === r, i = a && r.__emotion_base || r, s, l;\n  n !== void 0 && (s = n.label, l = n.target);\n  var u = Vr(r, n, a), d = u || Lr(i), g = !d(\"as\");\n  return function() {\n    var f = arguments, v = a && r.__emotion_styles !== void 0 ? r.__emotion_styles.slice(0) : [];\n    if (s !== void 0 && v.push(\"label:\" + s + \";\"), f[0] == null || f[0].raw === void 0)\n      v.push.apply(v, f);\n    else {\n      process.env.NODE_ENV !== \"production\" && f[0][0] === void 0 && console.error(Fr), v.push(f[0][0]);\n      for (var C = f.length, T = 1; T < C; T++)\n        process.env.NODE_ENV !== \"production\" && f[0][T] === void 0 && console.error(Fr), v.push(f[T], f[0][T]);\n    }\n    var x = st(function(h, O, E) {\n      var p = g && h.as || i, P = \"\", q = [], D = h;\n      if (h.theme == null) {\n        D = {};\n        for (var V in h)\n          D[V] = h[V];\n        D.theme = Be(er);\n      }\n      typeof h.className == \"string\" ? P = rt(O.registered, q, h.className) : h.className != null && (P = h.className + \" \");\n      var R = qe(v.concat(q), O.registered, D);\n      P += O.key + \"-\" + R.name, l !== void 0 && (P += \" \" + l);\n      var Ne = g && u === void 0 ? Lr(p) : d, K = {};\n      for (var Q in h)\n        g && Q === \"as\" || // $FlowFixMe\n        Ne(Q) && (K[Q] = h[Q]);\n      return K.className = P, K.ref = E, /* @__PURE__ */ ne(qr, null, /* @__PURE__ */ ne(Fn, {\n        cache: O,\n        serialized: R,\n        isStringTag: typeof p == \"string\"\n      }), /* @__PURE__ */ ne(p, K));\n    });\n    return x.displayName = s !== void 0 ? s : \"Styled(\" + (typeof i == \"string\" ? i : i.displayName || i.name || \"Component\") + \")\", x.defaultProps = r.defaultProps, x.__emotion_real = x, x.__emotion_base = i, x.__emotion_styles = v, x.__emotion_forwardProp = u, Object.defineProperty(x, \"toString\", {\n      value: function() {\n        return l === void 0 && process.env.NODE_ENV !== \"production\" ? \"NO_COMPONENT_SELECTOR\" : \".\" + l;\n      }\n    }), x.withComponent = function(h, O) {\n      return e(h, ze({}, n, O, {\n        shouldForwardProp: Vr(x, O, !0)\n      })).apply(void 0, v);\n    }, x;\n  };\n}, Wn = [\n  \"a\",\n  \"abbr\",\n  \"address\",\n  \"area\",\n  \"article\",\n  \"aside\",\n  \"audio\",\n  \"b\",\n  \"base\",\n  \"bdi\",\n  \"bdo\",\n  \"big\",\n  \"blockquote\",\n  \"body\",\n  \"br\",\n  \"button\",\n  \"canvas\",\n  \"caption\",\n  \"cite\",\n  \"code\",\n  \"col\",\n  \"colgroup\",\n  \"data\",\n  \"datalist\",\n  \"dd\",\n  \"del\",\n  \"details\",\n  \"dfn\",\n  \"dialog\",\n  \"div\",\n  \"dl\",\n  \"dt\",\n  \"em\",\n  \"embed\",\n  \"fieldset\",\n  \"figcaption\",\n  \"figure\",\n  \"footer\",\n  \"form\",\n  \"h1\",\n  \"h2\",\n  \"h3\",\n  \"h4\",\n  \"h5\",\n  \"h6\",\n  \"head\",\n  \"header\",\n  \"hgroup\",\n  \"hr\",\n  \"html\",\n  \"i\",\n  \"iframe\",\n  \"img\",\n  \"input\",\n  \"ins\",\n  \"kbd\",\n  \"keygen\",\n  \"label\",\n  \"legend\",\n  \"li\",\n  \"link\",\n  \"main\",\n  \"map\",\n  \"mark\",\n  \"marquee\",\n  \"menu\",\n  \"menuitem\",\n  \"meta\",\n  \"meter\",\n  \"nav\",\n  \"noscript\",\n  \"object\",\n  \"ol\",\n  \"optgroup\",\n  \"option\",\n  \"output\",\n  \"p\",\n  \"param\",\n  \"picture\",\n  \"pre\",\n  \"progress\",\n  \"q\",\n  \"rp\",\n  \"rt\",\n  \"ruby\",\n  \"s\",\n  \"samp\",\n  \"script\",\n  \"section\",\n  \"select\",\n  \"small\",\n  \"source\",\n  \"span\",\n  \"strong\",\n  \"style\",\n  \"sub\",\n  \"summary\",\n  \"sup\",\n  \"table\",\n  \"tbody\",\n  \"td\",\n  \"textarea\",\n  \"tfoot\",\n  \"th\",\n  \"thead\",\n  \"time\",\n  \"title\",\n  \"tr\",\n  \"track\",\n  \"u\",\n  \"ul\",\n  \"var\",\n  \"video\",\n  \"wbr\",\n  // SVG\n  \"circle\",\n  \"clipPath\",\n  \"defs\",\n  \"ellipse\",\n  \"foreignObject\",\n  \"g\",\n  \"image\",\n  \"line\",\n  \"linearGradient\",\n  \"mask\",\n  \"path\",\n  \"pattern\",\n  \"polygon\",\n  \"polyline\",\n  \"radialGradient\",\n  \"rect\",\n  \"stop\",\n  \"svg\",\n  \"text\",\n  \"tspan\"\n], z = Mn.bind();\nWn.forEach(function(e) {\n  z[e] = z(e);\n});\nconst zn = (e) => Br(Yn, {\n  children: [L(Un, {\n    src: \"https://assets.website-files.com/5beab1239ac88487c3a6608f/616b9cffac007b154cee8afc_Logo.webp\"\n  }), L(qn, {\n    children: e.text\n  })]\n}), Yn = z.div`\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  flex-direction: column;\n  row-gap: 20px;\n\n  width: 100%;\n  height: 100%;\n\n  border-radius: 18px;\n\n  min-width: 600px;\n  min-height: 400px;\n\n  background: #f7f8fd;\n`, Un = z.img`\n  width: 160px;\n`, qn = z.span`\n  color: #061237;\n  font-family: Inter, sans-serif;\n  font-size: 18px;\n  line-height: 36px;\n`, Bn = 50;\nvar Hn = ((e) => (e[e.Left = 0] = \"Left\", e[e.Right = 1] = \"Right\", e))(Hn || {});\nconst Gn = (e) => {\n  var x, h, O, E;\n  if (!((x = e.left) != null && x.src) || !((h = e.right) != null && h.src)) {\n    let p = 2;\n    return ((O = e.left) != null && O.src || (E = e.right) != null && E.src) && p--, L(zn, {\n      text: `Upload ${p} image${p > 1 ? \"s\" : \"\"} to continue`\n    });\n  }\n  const r = te(null), n = te(null), a = te(null), i = te(null), s = te(null), l = te(null), u = (p) => {\n    r.current.style.clipPath = `inset(0px 0px 0px ${p}%)`, a.current.style.left = `${p}%`;\n  }, d = (p) => n.current.value = `${p}`, g = (p) => {\n    u(+p.target.value);\n  };\n  We(() => {\n    u(e.position);\n  }, [e.position]), We(() => {\n    f(), e.position !== Bn && (u(e.position), d(e.position));\n  }, []);\n  const f = () => {\n    var P;\n    const p = (P = a.current) == null ? void 0 : P.firstChild;\n    i.current && p && i.current.style.setProperty(\"--thumb-size\", `${p.clientWidth}px`);\n  }, v = () => {\n    r.current.style.transition = \"clip-path 0.3s\", a.current.style.transition = \"left 0.3s\";\n  }, C = () => {\n    r.current.style.transition = \"\", a.current.style.transition = \"\";\n  }, T = (p) => {\n    switch (v(), p) {\n      case 0:\n        u(0), d(0);\n        break;\n      case 1:\n        u(100), d(100);\n        break;\n    }\n    setTimeout(C, 300);\n  };\n  return Br(Jn, {\n    ref: i,\n    borderRadius: e.radius,\n    background: e.bg,\n    children: [L(Wr, {\n      ref: s,\n      hp: \"left\",\n      vp: e.label.position,\n      x: e.label.x,\n      y: e.label.y,\n      onClick: () => T(0),\n      children: e.customLabel ? e.leftLabel : L(zr, {\n        children: e.label.before\n      })\n    }), L(Wr, {\n      ref: l,\n      hp: \"right\",\n      vp: e.label.position,\n      x: e.label.x,\n      y: e.label.y,\n      onClick: () => T(1),\n      children: e.customLabel ? e.rightLabel : L(zr, {\n        children: e.label.after\n      })\n    }), L(Xn, {\n      ref: r,\n      children: L(Mr, {\n        src: e.right.src,\n        srcSet: e.right.srcSet,\n        alt: e.right.alt\n      })\n    }), L(Mr, {\n      src: e.left.src,\n      srcSet: e.left.srcSet,\n      alt: e.left.alt\n    }), L(Zn, {\n      type: \"range\",\n      ref: n,\n      min: \"0\",\n      max: \"100\",\n      onChange: g\n    }), L(Kn, {\n      ref: a,\n      color: e.line.color,\n      width: e.line.width,\n      children: e.customHandle ? e.handle : L(Qn, {})\n    })]\n  });\n}, Jn = z.div`\n  position: relative;\n  display: inline-block;\n  overflow: hidden;\n  width: 100%;\n  height: 100%;\n  border-radius: ${(e) => e.borderRadius}px;\n  background: ${(e) => e.background};\n`, Xn = z.div`\n  position: absolute;\n  z-index: 1;\n  bottom: 0;\n  right: 0;\n  left: 0;\n  top: 0;\n`, Mr = z.img`\n  vertical-align: bottom;\n  object-fit: cover;\n  height: 100%;\n  width: 100%;\n}`, Kn = z.div`\n  pointer-events: none;\n\n  display: flex;\n  align-items: center;\n  justify-content: center;\n\n  position: absolute;\n  z-index: 2;\n\n  left: 50%;\n  bottom: 0;\n  top: 0;\n\n  transform: translateX(-50%);\n\n  &:before {\n    content: '';\n\n    position: absolute;\n    left: 50%;\n    bottom: 0;\n    top: 0;\n\n    width: ${(e) => e.width}px;\n    background: ${(e) => e.color};\n\n    transform: translateX(-50%);\n  }\n`, Zn = z.input`\n  bottom: 0;\n  cursor: pointer;\n  height: 100%;\n  left: -1px;\n  margin: 0;\n  opacity: 0;\n  position: absolute;\n  top: 0;\n  touch-action: auto;\n  width: calc(100% + 2px);\n  z-index: 2;\n\n  &::-webkit-slider-thumb {\n    -webkit-appearance: none;\n    width: calc(var(--thumb-size) * 2);\n    height: calc(var(--thumb-size) * 1.5);\n  }\n`, Qn = z.div`\n  flex-shrink: 0;\n  position: relative;\n\n  width: 64px;\n  height: 64px;\n  background: rgba(255, 255, 255, 0.4);\n  border: 1px solid rgba(255, 255, 255, 0.24);\n  border-radius: 50%;\n\n  &:before,\n  &:after {\n    content: '';\n\n    position: absolute;\n    top: 50%;\n\n    border-left: 2px solid;\n    border-top: 2px solid;\n\n    height: 8px;\n    width: 8px;\n\n    transform-origin: 0 0;\n  }\n\n  &:before {\n    left: 18px;\n    transform: rotate(-45deg);\n  }\n\n  &:after {\n    right: 8px;\n    transform: rotate(135deg);\n  }\n`, Wr = z.div`\n  position: absolute;\n  z-index: 3;\n\n  cursor: pointer;\n\n  ${(e) => `${e.vp}: ${e.y}px;`}\n  ${(e) => `${e.hp}: ${e.x}px;`}\n`, zr = z.div`\n  display: flex;\n  flex-direction: row;\n  align-items: flex-start;\n  padding: 2px 16px;\n  background: rgba(255, 255, 255, 0.48);\n  border: 1px solid rgba(255, 255, 255, 0.24);\n  border-radius: 6px;\n\n  font-family: Inter, sans-serif;\n  font-weight: 500;\n  font-size: 14px;\n  line-height: 28px;\n  color: #000000;\n`, ea = ({ loading: e, loaded: r }) => {\n  const [n, a] = Dt(!0);\n  return We(() => a(!1), []), n ? e : r;\n}, X = (e) => {\n  var r, n;\n  return !((r = e.left) != null && r.src) || !((n = e.right) != null && n.src);\n}, ta = {\n  left: {\n    type: \"responsiveimage\",\n    title: \"Left Image\"\n  },\n  right: {\n    type: \"responsiveimage\",\n    title: \"Right Image\",\n    description: \"[Flowbase](https://www.flowbase.co/) is the worlds largest component resource site. Explore endless components and templates to inspire your workflows and help you build better, faster.\"\n  },\n  radius: {\n    type: \"number\",\n    defaultValue: 0,\n    min: 0,\n    max: 999,\n    step: 1,\n    displayStepper: !0,\n    hidden: X\n  },\n  bg: {\n    type: \"color\",\n    title: \"Background\",\n    defaultValue: \"#e4e6f1\"\n  },\n  position: {\n    type: \"number\",\n    defaultValue: 50,\n    description: \"Starting position of the handle\",\n    min: 0,\n    max: 100,\n    step: 1,\n    displayStepper: !0,\n    hidden: X\n  },\n  customHandle: {\n    type: \"boolean\",\n    defaultValue: !1,\n    hidden: X\n  },\n  handle: {\n    type: \"componentinstance\",\n    title: \"Handle\",\n    hidden: (e) => X(e) || !e.customHandle\n  },\n  label: {\n    type: \"object\",\n    hidden: X,\n    controls: {\n      position: {\n        type: \"enum\",\n        defaultValue: \"row\",\n        options: [\"top\", \"bottom\"],\n        optionTitles: [\"Top\", \"Bottom\"]\n      },\n      x: {\n        type: \"number\",\n        defaultValue: 24,\n        min: 0,\n        max: 999,\n        step: 1,\n        displayStepper: !0\n      },\n      y: {\n        type: \"number\",\n        defaultValue: 24,\n        min: 0,\n        max: 999,\n        step: 1,\n        displayStepper: !0\n      },\n      before: {\n        type: \"string\",\n        defaultValue: \"Before\"\n      },\n      after: {\n        type: \"string\",\n        defaultValue: \"After\"\n      }\n    }\n  },\n  customLabel: {\n    type: \"boolean\",\n    defaultValue: !1,\n    hidden: X\n  },\n  leftLabel: {\n    type: \"componentinstance\",\n    title: \"Left Label\",\n    hidden: (e) => X(e) || !e.customLabel\n  },\n  rightLabel: {\n    type: \"componentinstance\",\n    title: \"Left Label\",\n    hidden: (e) => X(e) || !e.customLabel\n  },\n  line: {\n    type: \"object\",\n    hidden: X,\n    controls: {\n      color: {\n        type: \"color\",\n        defaultValue: \"rgba(255, 255, 255, 0.4)\"\n      },\n      width: {\n        type: \"number\",\n        defaultValue: 1,\n        min: 0,\n        max: 99,\n        step: 1,\n        displayStepper: !0\n      }\n    }\n  }\n}, na = (e) => L(ea, {\n  loading: L(\"div\", {\n    style: {\n      width: \"100%\",\n      height: \"100%\",\n      borderRadius: `${e.radius}px`,\n      background: e.bg\n    }\n  }),\n  loaded: L(Gn, {\n    ...e\n  })\n});\nexport {\n  na as BeforeAfter,\n  ta as propertyControls\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls}from\"framer\";import{propertyControls,BeforeAfter as Component}from\"https://boosters.flowbase.co/before-after-framer.js#Pi7ExYI4gXmQ\";addPropertyControls(BeforeAfter,propertyControls);export default function BeforeAfter(props){return /*#__PURE__*/ _jsx(Component,{...props});};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BeforeAfter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Before_After_Image_Slider.map", "let Component;\nvar House_default = (React) => {\n  if (!Component) {\n    const weights = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M221.56,100.85,141.61,25.38l-.16-.15a19.93,19.93,0,0,0-26.91,0l-.17.15L34.44,100.85A20.07,20.07,0,0,0,28,115.55V208a20,20,0,0,0,20,20H96a20,20,0,0,0,20-20V164h24v44a20,20,0,0,0,20,20h48a20,20,0,0,0,20-20V115.55A20.07,20.07,0,0,0,221.56,100.85ZM204,204H164V160a20,20,0,0,0-20-20H112a20,20,0,0,0-20,20v44H52V117.28l76-71.75,76,71.75Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,115.54V208a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.54a8,8,0,0,1,2.62-5.92l80-75.54a8,8,0,0,1,10.77,0l80,75.54A8,8,0,0,1,216,115.54Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,115.55V208a16,16,0,0,1-16,16H168a16,16,0,0,1-16-16V168a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v40a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V115.55a16,16,0,0,1,5.17-11.78l80-75.48.11-.11a16,16,0,0,1,21.53,0,1.14,1.14,0,0,0,.11.11l80,75.48A16,16,0,0,1,224,115.55Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.47,105.24l-80-75.5-.09-.08a13.94,13.94,0,0,0-18.83,0l-.09.08-80,75.5A14,14,0,0,0,34,115.55V208a14,14,0,0,0,14,14H96a14,14,0,0,0,14-14V160a2,2,0,0,1,2-2h32a2,2,0,0,1,2,2v48a14,14,0,0,0,14,14h48a14,14,0,0,0,14-14V115.55A14,14,0,0,0,217.47,105.24ZM210,208a2,2,0,0,1-2,2H160a2,2,0,0,1-2-2V160a14,14,0,0,0-14-14H112a14,14,0,0,0-14,14v48a2,2,0,0,1-2,2H48a2,2,0,0,1-2-2V115.55a2,2,0,0,1,.65-1.48l.09-.08,79.94-75.48a2,2,0,0,1,2.63,0L209.26,114l.08.08a2,2,0,0,1,.66,1.48Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.13,106.72,136.07,31.13a12,12,0,0,0-16.2.05L39.93,106.67A12,12,0,0,0,36,115.54V208a12,12,0,0,0,12,12H96a12,12,0,0,0,12-12V160a4,4,0,0,1,4-4h32a4,4,0,0,1,4,4v48a12,12,0,0,0,12,12h48a12,12,0,0,0,12-12V115.54A12,12,0,0,0,216.13,106.72ZM212,208a4,4,0,0,1-4,4H160a4,4,0,0,1-4-4V160a12,12,0,0,0-12-12H112a12,12,0,0,0-12,12v48a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V115.54a4.09,4.09,0,0,1,1.36-3L125.3,37.05a4,4,0,0,1,5.33,0l80.06,75.58a4,4,0,0,1,1.31,3Z\" }))\n      ]\n    ]);\n    const House = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, weights.get(props.weight)));\n    House.displayName = \"House\";\n    Component = House;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.53\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"AddressBook\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Baby\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"BezierCurve\",\"Bicycle\",\"Binoculars\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"BoundingBox\",\"BowlFood\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Butterfly\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Church\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCounterClockwise\",\"ClockCountdown\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"Command\",\"Compass\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"Cpu\",\"CreditCard\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"Fan\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileCloud\",\"FileCode\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"Footprints\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeStand\",\"Goggles\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GridFour\",\"GridNine\",\"Guitar\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandCoins\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighHeel\",\"HighlighterCircle\",\"Hoodie\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Jeep\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MathOperations\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"MetaLogo\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Newspaper\",\"NewspaperClipping\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Option\",\"OrangeSlice\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleRun\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhonePlus\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PinterestLogo\",\"Pinwheel\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Scales\",\"Scan\",\"Scissors\",\"Scooter\",\"Screencast\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealQuestion\",\"SealWarning\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackOverflowLogo\",\"StackSimple\",\"Stairs\",\"Stamp\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"Subtitles\",\"Subtract\",\"SubtractSquare\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextT\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Timer\",\"Tipi\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tote\",\"ToteSimple\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XSquare\",\"YinYang\",\"YoutubeLogo\",];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\",];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.53\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/ _jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (3e73c7d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/9IiNyvbqjmpGpfJA91Dr/ApEnHMeijxKHeBfOkZnA/QhK6qqT5U.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/i1EQ95JZUUYNISev75nO/osFr1DXwLG6XmoLC5l9j/VnmEZ_3BZ.js\";import ButtonPrimaryButton from\"https://framerusercontent.com/modules/8pnzyCnUr5uTwyipf3NX/7Xymyvaoz0GIfmyV2A0H/GNvaONxX6.js\";const PhosphorFonts=getFonts(Phosphor);const ButtonPrimaryButtonFonts=getFonts(ButtonPrimaryButton);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"yLhTPJOM4\",\"SfWBpAMP1\"];const serializationHash=\"framer-oLLVP\";const variantClassNames={SfWBpAMP1:\"framer-v-1e359vu\",yLhTPJOM4:\"framer-v-zfz3je\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const 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={Primary:\"yLhTPJOM4\",Secondary:\"SfWBpAMP1\"};const getProps=({description,height,icon,id,padding,title,width,...props})=>{return{...props,AHckVUVc2:description??props.AHckVUVc2??\"Designers can take control of HTML, CSS, and JavaScript in a visual canvas \u2014 while marketers can work with pre-made, design-approved building blocks.\",gYnJmHWHb:padding??props.gYnJmHWHb??\"40px\",MDnAmdwHw:icon??props.MDnAmdwHw??\"Carrot\",qXT0C0aT_:title??props.qXT0C0aT_??\"Kickoff\",variant:humanReadableVariantMap[props.variant]??props.variant??\"yLhTPJOM4\"};};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,MDnAmdwHw,qXT0C0aT_,AHckVUVc2,gYnJmHWHb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yLhTPJOM4\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"SfWBpAMP1\")return true;return false;};const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1203,pixelWidth:2001,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/47YzcP5udfcpZtxH5XKRYL1V9PA.png\",srcSet:\"https://framerusercontent.com/images/47YzcP5udfcpZtxH5XKRYL1V9PA.png?scale-down-to=512 512w,https://framerusercontent.com/images/47YzcP5udfcpZtxH5XKRYL1V9PA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/47YzcP5udfcpZtxH5XKRYL1V9PA.png 2001w\"},className:cx(scopingClassNames,\"framer-zfz3je\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"yLhTPJOM4\",ref:refBinding,style:{\"--1tuuvai\":numberToPixelString(gYnJmHWHb),\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-082d630a-c036-4f77-8c8d-5d7b4650e064, rgba(255, 255, 255, 0.08))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(0px)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,WebkitBackdropFilter:\"blur(0px)\",...style},...addPropertyOverrides({SfWBpAMP1:{\"data-framer-name\":\"Secondary\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gg1egh\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"Ge_0vwroU\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a0dsmx\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"DGeLkKEbT\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(230, 131, 18, 0.15)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 5px 25px 0px rgba(230, 131, 18, 0.25), inset 0px 10px 10px -1px rgba(255, 255, 255, 0.08)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-o6y13u\",\"data-framer-name\":\"Shadow\",layoutDependency:layoutDependency,layoutId:\"nSPFSPAr4\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgba(230, 131, 18, 0.15) 0%, rgba(20, 15, 8, 0.15) 100%)\",boxShadow:\"inset 0px 10px 10px -1px rgba(230, 131, 18, 0.1)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p4mmvm-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"SMMV5iXIf-container\",nodeId:\"SMMV5iXIf\",rendersWithMotion:true,scopeId:\"b8qvm_XpH\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:MDnAmdwHw,id:\"SMMV5iXIf\",layoutId:\"SMMV5iXIf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zmjl3j\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"ru5bouzuj\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oioiqw\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"Dr6f6JSjc\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7lwy0t\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"tnlkCEENz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"Kickoff\"})}),className:\"framer-dq3b\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qfvvOUG_S\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:qXT0C0aT_,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d1y8lj\",\"data-framer-name\":\"Seperator\",layoutDependency:layoutDependency,layoutId:\"AZYx_Y9U9\",style:{background:\"linear-gradient(90.00000000000075deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x4vx8v\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"mYTiOjphi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d2ee1de5-88f8-41d7-8642-338767096a94, rgba(255, 255, 255, 0.5)))\"},children:\"Designers can take control of HTML, CSS, and JavaScript in a visual canvas \u2014 while marketers can work with pre-made, design-approved building blocks.\"})}),className:\"framer-6igokm\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J4htUzBA9\",style:{\"--extracted-r6o4lv\":\"var(--token-d2ee1de5-88f8-41d7-8642-338767096a94, rgba(255, 255, 255, 0.5))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AHckVUVc2,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-moytir\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"xSiqK0ekL\",children:isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined},{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({SfWBpAMP1:{height:46}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-w5c34p-container\",layoutDependency:layoutDependency,layoutId:\"YGZ5TWhBs-container\",nodeId:\"YGZ5TWhBs\",rendersWithMotion:true,scopeId:\"b8qvm_XpH\",children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"Book an Appointment\",GT109pdEG:resolvedLinks[0],height:\"100%\",id:\"YGZ5TWhBs\",layoutId:\"YGZ5TWhBs\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3},...addPropertyOverrides({SfWBpAMP1:{GT109pdEG:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:201,pixelWidth:200,src:\"https://framerusercontent.com/images/QMirkdl4WPEe5bmSFhvVcssWj4.svg\"},className:\"framer-6qto93\",\"data-framer-name\":\"Star Line\",layoutDependency:layoutDependency,layoutId:\"Ln7qu5KwX\",...addPropertyOverrides({SfWBpAMP1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||371)-150),pixelHeight:201,pixelWidth:200,src:\"https://framerusercontent.com/images/QMirkdl4WPEe5bmSFhvVcssWj4.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cbdtzy\",\"data-framer-name\":\"Blur\",layoutDependency:layoutDependency,layoutId:\"lk85vkNpc\",style:{backdropFilter:\"blur(10px)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,WebkitBackdropFilter:\"blur(10px)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oLLVP.framer-1vr6li4, .framer-oLLVP .framer-1vr6li4 { display: block; }\",\".framer-oLLVP.framer-zfz3je { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: var(--1tuuvai); position: relative; width: 587px; }\",\".framer-oLLVP .framer-1gg1egh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-oLLVP .framer-1a0dsmx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 14px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-oLLVP .framer-o6y13u { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-oLLVP .framer-p4mmvm-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-oLLVP .framer-zmjl3j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 650px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-oLLVP .framer-oioiqw { align-content: flex-start; align-items: flex-start; 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: 100%; }\",\".framer-oLLVP .framer-7lwy0t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oLLVP .framer-dq3b { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-oLLVP .framer-1d1y8lj { flex: none; height: 1px; position: relative; width: 230px; }\",\".framer-oLLVP .framer-x4vx8v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oLLVP .framer-6igokm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-oLLVP .framer-moytir { 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; min-height: 200px; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-oLLVP .framer-w5c34p-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-oLLVP .framer-6qto93 { aspect-ratio: 1 / 1; bottom: -50px; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: hidden; position: absolute; right: -50px; width: 200px; z-index: 2; }\",\".framer-oLLVP .framer-cbdtzy { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.10482180293503% - 100% / 2); width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oLLVP.framer-zfz3je, .framer-oLLVP .framer-1a0dsmx, .framer-oLLVP .framer-zmjl3j, .framer-oLLVP .framer-oioiqw, .framer-oLLVP .framer-7lwy0t, .framer-oLLVP .framer-x4vx8v, .framer-oLLVP .framer-moytir { gap: 0px; } .framer-oLLVP.framer-zfz3je > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-oLLVP.framer-zfz3je > :first-child, .framer-oLLVP .framer-zmjl3j > :first-child, .framer-oLLVP .framer-oioiqw > :first-child, .framer-oLLVP .framer-x4vx8v > :first-child, .framer-oLLVP .framer-moytir > :first-child { margin-top: 0px; } .framer-oLLVP.framer-zfz3je > :last-child, .framer-oLLVP .framer-zmjl3j > :last-child, .framer-oLLVP .framer-oioiqw > :last-child, .framer-oLLVP .framer-x4vx8v > :last-child, .framer-oLLVP .framer-moytir > :last-child { margin-bottom: 0px; } .framer-oLLVP .framer-1a0dsmx > *, .framer-oLLVP .framer-7lwy0t > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oLLVP .framer-1a0dsmx > :first-child, .framer-oLLVP .framer-7lwy0t > :first-child { margin-left: 0px; } .framer-oLLVP .framer-1a0dsmx > :last-child, .framer-oLLVP .framer-7lwy0t > :last-child { margin-right: 0px; } .framer-oLLVP .framer-zmjl3j > *, .framer-oLLVP .framer-oioiqw > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-oLLVP .framer-x4vx8v > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-oLLVP .framer-moytir > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-oLLVP.framer-v-1e359vu.framer-zfz3je { overflow: hidden; will-change: var(--framer-will-change-override, transform); }\",\".framer-oLLVP.framer-v-1e359vu .framer-zmjl3j { overflow: visible; z-index: 4; }\",\".framer-oLLVP.framer-v-1e359vu .framer-x4vx8v { overflow: visible; }\",\".framer-oLLVP.framer-v-1e359vu .framer-6igokm { order: 0; }\",\".framer-oLLVP.framer-v-1e359vu .framer-moytir { min-height: unset; order: 2; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-oLLVP[data-border=\"true\"]::after, .framer-oLLVP [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 285\n * @framerIntrinsicWidth 587\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SfWBpAMP1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"MDnAmdwHw\":\"icon\",\"qXT0C0aT_\":\"title\",\"AHckVUVc2\":\"description\",\"gYnJmHWHb\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerb8qvm_XpH=withCSS(Component,css,\"framer-oLLVP\");export default Framerb8qvm_XpH;Framerb8qvm_XpH.displayName=\"Card/Process Card\";Framerb8qvm_XpH.defaultProps={height:285,width:587};addPropertyControls(Framerb8qvm_XpH,{variant:{options:[\"yLhTPJOM4\",\"SfWBpAMP1\"],optionTitles:[\"Primary\",\"Secondary\"],title:\"Variant\",type:ControlType.Enum},MDnAmdwHw:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Carrot\",description:undefined,hidden:undefined,title:\"Icon\"},qXT0C0aT_:{defaultValue:\"Kickoff\",displayTextArea:true,title:\"Title\",type:ControlType.String},AHckVUVc2:{defaultValue:\"Designers can take control of HTML, CSS, and JavaScript in a visual canvas \u2014 while marketers can work with pre-made, design-approved building blocks.\",displayTextArea:true,title:\"Description\",type:ControlType.String},gYnJmHWHb:{defaultValue:\"40px\",title:\"Padding\",type:ControlType.Padding}});addFonts(Framerb8qvm_XpH,[{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\"}]},...PhosphorFonts,...ButtonPrimaryButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerb8qvm_XpH\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"MDnAmdwHw\\\":\\\"icon\\\",\\\"qXT0C0aT_\\\":\\\"title\\\",\\\"AHckVUVc2\\\":\\\"description\\\",\\\"gYnJmHWHb\\\":\\\"padding\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SfWBpAMP1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"285\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"587\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "let r;var s=o=>{if(!r){const n=o.forwardRef(({color:t=\"currentColor\",size:e=24,...i},l)=>o.createElement(\"svg\",{ref:l,xmlns:\"http://www.w3.org/2000/svg\",width:e,height:e,viewBox:\"0 0 24 24\",fill:\"none\",stroke:t,strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\",...i},o.createElement(\"path\",{d:\"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"}),o.createElement(\"polyline\",{points:\"9 22 9 12 15 12 15 22\"})));n.displayName=\"Home\",r=n}return r};export{s as default};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/feather-icons/home.js@0.0.29\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"activity\",\"airplay\",\"alert-circle\",\"alert-octagon\",\"alert-triangle\",\"align-center\",\"align-justify\",\"align-left\",\"align-right\",\"anchor\",\"aperture\",\"archive\",\"arrow-down\",\"arrow-down-circle\",\"arrow-down-left\",\"arrow-down-right\",\"arrow-left\",\"arrow-left-circle\",\"arrow-right\",\"arrow-right-circle\",\"arrow-up\",\"arrow-up-circle\",\"arrow-up-left\",\"arrow-up-right\",\"at-sign\",\"award\",\"bar-chart\",\"bar-chart-2\",\"battery\",\"battery-charging\",\"bell\",\"bell-off\",\"bluetooth\",\"bold\",\"book\",\"book-open\",\"bookmark\",\"box\",\"briefcase\",\"calendar\",\"camera\",\"camera-off\",\"cast\",\"check\",\"check-circle\",\"check-square\",\"chevron-down\",\"chevron-left\",\"chevron-right\",\"chevron-up\",\"chevrons-down\",\"chevrons-left\",\"chevrons-right\",\"chevrons-up\",\"chrome\",\"circle\",\"clipboard\",\"clock\",\"cloud\",\"cloud-drizzle\",\"cloud-lightning\",\"cloud-off\",\"cloud-rain\",\"cloud-snow\",\"code\",\"codepen\",\"codesandbox\",\"coffee\",\"columns\",\"command\",\"compass\",\"copy\",\"corner-down-left\",\"corner-down-right\",\"corner-left-down\",\"corner-left-up\",\"corner-right-down\",\"corner-right-up\",\"corner-up-left\",\"corner-up-right\",\"cpu\",\"credit-card\",\"crop\",\"crosshair\",\"database\",\"delete\",\"disc\",\"divide\",\"divide-circle\",\"divide-square\",\"dollar-sign\",\"download\",\"download-cloud\",\"dribbble\",\"droplet\",\"edit\",\"edit-2\",\"edit-3\",\"external-link\",\"eye\",\"eye-off\",\"facebook\",\"fast-forward\",\"feather\",\"figma\",\"file\",\"file-minus\",\"file-plus\",\"file-text\",\"film\",\"filter\",\"flag\",\"folder\",\"folder-minus\",\"folder-plus\",\"framer\",\"frown\",\"gift\",\"git-branch\",\"git-commit\",\"git-merge\",\"git-pull-request\",\"github\",\"gitlab\",\"globe\",\"grid\",\"hard-drive\",\"hash\",\"headphones\",\"heart\",\"help-circle\",\"hexagon\",\"home\",\"image\",\"inbox\",\"info\",\"instagram\",\"italic\",\"key\",\"layers\",\"layout\",\"life-buoy\",\"link\",\"link-2\",\"linkedin\",\"list\",\"loader\",\"lock\",\"log-in\",\"log-out\",\"mail\",\"map\",\"map-pin\",\"maximize\",\"maximize-2\",\"meh\",\"menu\",\"message-circle\",\"message-square\",\"mic\",\"mic-off\",\"minimize\",\"minimize-2\",\"minus\",\"minus-circle\",\"minus-square\",\"monitor\",\"moon\",\"more-horizontal\",\"more-vertical\",\"mouse-pointer\",\"move\",\"music\",\"navigation\",\"navigation-2\",\"octagon\",\"package\",\"paperclip\",\"pause\",\"pause-circle\",\"pen-tool\",\"percent\",\"phone\",\"phone-call\",\"phone-forwarded\",\"phone-incoming\",\"phone-missed\",\"phone-off\",\"phone-outgoing\",\"pie-chart\",\"play\",\"play-circle\",\"plus\",\"plus-circle\",\"plus-square\",\"pocket\",\"power\",\"printer\",\"radio\",\"refresh-ccw\",\"refresh-cw\",\"repeat\",\"rewind\",\"rotate-ccw\",\"rotate-cw\",\"rss\",\"save\",\"scissors\",\"search\",\"send\",\"server\",\"settings\",\"share\",\"share-2\",\"shield\",\"shield-off\",\"shopping-bag\",\"shopping-cart\",\"shuffle\",\"sidebar\",\"skip-back\",\"skip-forward\",\"slack\",\"slash\",\"sliders\",\"smartphone\",\"smile\",\"speaker\",\"square\",\"star\",\"stop-circle\",\"sun\",\"sunrise\",\"sunset\",\"tablet\",\"tag\",\"target\",\"terminal\",\"thermometer\",\"thumbs-down\",\"thumbs-up\",\"toggle-left\",\"toggle-right\",\"tool\",\"trash\",\"trash-2\",\"trello\",\"trending-down\",\"trending-up\",\"triangle\",\"truck\",\"tv\",\"twitch\",\"twitter\",\"type\",\"umbrella\",\"underline\",\"unlock\",\"upload\",\"upload-cloud\",\"user\",\"user-check\",\"user-minus\",\"user-plus\",\"user-x\",\"users\",\"video\",\"video-off\",\"voicemail\",\"volume\",\"volume-1\",\"volume-2\",\"volume-x\",\"watch\",\"wifi\",\"wifi-off\",\"wind\",\"x\",\"x-circle\",\"x-octagon\",\"x-square\",\"youtube\",\"zap\",\"zap-off\",\"zoom-in\",\"zoom-out\",];const moduleBaseUrl=\"https://framer.com/m/feather-icons/\";const uppercaseIconKeys=iconKeys.map(name=>name.charAt(0).toUpperCase()+name.slice(1));const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * FEATHER\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){let active=true;// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.29`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);// console.log(module.default)\nif(active)setSelectedIcon(module.default(React));}catch(e){console.log(e);if(active)setSelectedIcon(null);}return()=>{active=false;};}// Import module when new style or icon is selected\nuseEffect(()=>{importModule();},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(\"div\",{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Feather\";Icon.defaultProps={width:24,height:24,iconSelection:\"home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,optionTitles:uppercaseIconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Feather site](https://feathericons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Feather.map", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";const FeatherFonts=getFonts(Feather);const FeatherControls=getPropertyControls(Feather);const enabledGestures={cV0QiNbar:{hover:true}};const serializationHash=\"framer-3ZtdV\";const variantClassNames={cV0QiNbar:\"framer-v-hgx4sp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};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 humanReadableEnumMap={\"Alert-circle\":\"alert-circle\",\"Alert-octagon\":\"alert-octagon\",\"Alert-triangle\":\"alert-triangle\",\"Align-center\":\"align-center\",\"Align-justify\":\"align-justify\",\"Align-left\":\"align-left\",\"Align-right\":\"align-right\",\"Arrow-down-circle\":\"arrow-down-circle\",\"Arrow-down-left\":\"arrow-down-left\",\"Arrow-down-right\":\"arrow-down-right\",\"Arrow-down\":\"arrow-down\",\"Arrow-left-circle\":\"arrow-left-circle\",\"Arrow-left\":\"arrow-left\",\"Arrow-right-circle\":\"arrow-right-circle\",\"Arrow-right\":\"arrow-right\",\"Arrow-up-circle\":\"arrow-up-circle\",\"Arrow-up-left\":\"arrow-up-left\",\"Arrow-up-right\":\"arrow-up-right\",\"Arrow-up\":\"arrow-up\",\"At-sign\":\"at-sign\",\"Bar-chart-2\":\"bar-chart-2\",\"Bar-chart\":\"bar-chart\",\"Battery-charging\":\"battery-charging\",\"Bell-off\":\"bell-off\",\"Book-open\":\"book-open\",\"Camera-off\":\"camera-off\",\"Check-circle\":\"check-circle\",\"Check-square\":\"check-square\",\"Chevron-down\":\"chevron-down\",\"Chevron-left\":\"chevron-left\",\"Chevron-right\":\"chevron-right\",\"Chevron-up\":\"chevron-up\",\"Chevrons-down\":\"chevrons-down\",\"Chevrons-left\":\"chevrons-left\",\"Chevrons-right\":\"chevrons-right\",\"Chevrons-up\":\"chevrons-up\",\"Cloud-drizzle\":\"cloud-drizzle\",\"Cloud-lightning\":\"cloud-lightning\",\"Cloud-off\":\"cloud-off\",\"Cloud-rain\":\"cloud-rain\",\"Cloud-snow\":\"cloud-snow\",\"Corner-down-left\":\"corner-down-left\",\"Corner-down-right\":\"corner-down-right\",\"Corner-left-down\":\"corner-left-down\",\"Corner-left-up\":\"corner-left-up\",\"Corner-right-down\":\"corner-right-down\",\"Corner-right-up\":\"corner-right-up\",\"Corner-up-left\":\"corner-up-left\",\"Corner-up-right\":\"corner-up-right\",\"Credit-card\":\"credit-card\",\"Divide-circle\":\"divide-circle\",\"Divide-square\":\"divide-square\",\"Dollar-sign\":\"dollar-sign\",\"Download-cloud\":\"download-cloud\",\"Edit-2\":\"edit-2\",\"Edit-3\":\"edit-3\",\"External-link\":\"external-link\",\"Eye-off\":\"eye-off\",\"Fast-forward\":\"fast-forward\",\"File-minus\":\"file-minus\",\"File-plus\":\"file-plus\",\"File-text\":\"file-text\",\"Folder-minus\":\"folder-minus\",\"Folder-plus\":\"folder-plus\",\"Git-branch\":\"git-branch\",\"Git-commit\":\"git-commit\",\"Git-merge\":\"git-merge\",\"Git-pull-request\":\"git-pull-request\",\"Hard-drive\":\"hard-drive\",\"Help-circle\":\"help-circle\",\"Life-buoy\":\"life-buoy\",\"Link-2\":\"link-2\",\"Log-in\":\"log-in\",\"Log-out\":\"log-out\",\"Map-pin\":\"map-pin\",\"Maximize-2\":\"maximize-2\",\"Message-circle\":\"message-circle\",\"Message-square\":\"message-square\",\"Mic-off\":\"mic-off\",\"Minimize-2\":\"minimize-2\",\"Minus-circle\":\"minus-circle\",\"Minus-square\":\"minus-square\",\"More-horizontal\":\"more-horizontal\",\"More-vertical\":\"more-vertical\",\"Mouse-pointer\":\"mouse-pointer\",\"Navigation-2\":\"navigation-2\",\"Pause-circle\":\"pause-circle\",\"Pen-tool\":\"pen-tool\",\"Phone-call\":\"phone-call\",\"Phone-forwarded\":\"phone-forwarded\",\"Phone-incoming\":\"phone-incoming\",\"Phone-missed\":\"phone-missed\",\"Phone-off\":\"phone-off\",\"Phone-outgoing\":\"phone-outgoing\",\"Pie-chart\":\"pie-chart\",\"Play-circle\":\"play-circle\",\"Plus-circle\":\"plus-circle\",\"Plus-square\":\"plus-square\",\"Refresh-ccw\":\"refresh-ccw\",\"Refresh-cw\":\"refresh-cw\",\"Rotate-ccw\":\"rotate-ccw\",\"Rotate-cw\":\"rotate-cw\",\"Share-2\":\"share-2\",\"Shield-off\":\"shield-off\",\"Shopping-bag\":\"shopping-bag\",\"Shopping-cart\":\"shopping-cart\",\"Skip-back\":\"skip-back\",\"Skip-forward\":\"skip-forward\",\"Stop-circle\":\"stop-circle\",\"Thumbs-down\":\"thumbs-down\",\"Thumbs-up\":\"thumbs-up\",\"Toggle-left\":\"toggle-left\",\"Toggle-right\":\"toggle-right\",\"Trash-2\":\"trash-2\",\"Trending-down\":\"trending-down\",\"Trending-up\":\"trending-up\",\"Upload-cloud\":\"upload-cloud\",\"User-check\":\"user-check\",\"User-minus\":\"user-minus\",\"User-plus\":\"user-plus\",\"User-x\":\"user-x\",\"Video-off\":\"video-off\",\"Volume-1\":\"volume-1\",\"Volume-2\":\"volume-2\",\"Volume-x\":\"volume-x\",\"Wifi-off\":\"wifi-off\",\"X-circle\":\"x-circle\",\"X-octagon\":\"x-octagon\",\"X-square\":\"x-square\",\"Zap-off\":\"zap-off\",\"Zoom-in\":\"zoom-in\",\"Zoom-out\":\"zoom-out\",Activity:\"activity\",Airplay:\"airplay\",Anchor:\"anchor\",Aperture:\"aperture\",Archive:\"archive\",Award:\"award\",Battery:\"battery\",Bell:\"bell\",Bluetooth:\"bluetooth\",Bold:\"bold\",Book:\"book\",Bookmark:\"bookmark\",Box:\"box\",Briefcase:\"briefcase\",Calendar:\"calendar\",Camera:\"camera\",Cast:\"cast\",Check:\"check\",Chrome:\"chrome\",Circle:\"circle\",Clipboard:\"clipboard\",Clock:\"clock\",Cloud:\"cloud\",Code:\"code\",Codepen:\"codepen\",Codesandbox:\"codesandbox\",Coffee:\"coffee\",Columns:\"columns\",Command:\"command\",Compass:\"compass\",Copy:\"copy\",Cpu:\"cpu\",Crop:\"crop\",Crosshair:\"crosshair\",Database:\"database\",Delete:\"delete\",Disc:\"disc\",Divide:\"divide\",Download:\"download\",Dribbble:\"dribbble\",Droplet:\"droplet\",Edit:\"edit\",Eye:\"eye\",Facebook:\"facebook\",Feather:\"feather\",Figma:\"figma\",File:\"file\",Film:\"film\",Filter:\"filter\",Flag:\"flag\",Folder:\"folder\",Framer:\"framer\",Frown:\"frown\",Gift:\"gift\",Github:\"github\",Gitlab:\"gitlab\",Globe:\"globe\",Grid:\"grid\",Hash:\"hash\",Headphones:\"headphones\",Heart:\"heart\",Hexagon:\"hexagon\",Home:\"home\",Image:\"image\",Inbox:\"inbox\",Info:\"info\",Instagram:\"instagram\",Italic:\"italic\",Key:\"key\",Layers:\"layers\",Layout:\"layout\",Link:\"link\",Linkedin:\"linkedin\",List:\"list\",Loader:\"loader\",Lock:\"lock\",Mail:\"mail\",Map:\"map\",Maximize:\"maximize\",Meh:\"meh\",Menu:\"menu\",Mic:\"mic\",Minimize:\"minimize\",Minus:\"minus\",Monitor:\"monitor\",Moon:\"moon\",Move:\"move\",Music:\"music\",Navigation:\"navigation\",Octagon:\"octagon\",Package:\"package\",Paperclip:\"paperclip\",Pause:\"pause\",Percent:\"percent\",Phone:\"phone\",Play:\"play\",Plus:\"plus\",Pocket:\"pocket\",Power:\"power\",Printer:\"printer\",Radio:\"radio\",Repeat:\"repeat\",Rewind:\"rewind\",Rss:\"rss\",Save:\"save\",Scissors:\"scissors\",Search:\"search\",Send:\"send\",Server:\"server\",Settings:\"settings\",Share:\"share\",Shield:\"shield\",Shuffle:\"shuffle\",Sidebar:\"sidebar\",Slack:\"slack\",Slash:\"slash\",Sliders:\"sliders\",Smartphone:\"smartphone\",Smile:\"smile\",Speaker:\"speaker\",Square:\"square\",Star:\"star\",Sun:\"sun\",Sunrise:\"sunrise\",Sunset:\"sunset\",Tablet:\"tablet\",Tag:\"tag\",Target:\"target\",Terminal:\"terminal\",Thermometer:\"thermometer\",Tool:\"tool\",Trash:\"trash\",Trello:\"trello\",Triangle:\"triangle\",Truck:\"truck\",Tv:\"tv\",Twitch:\"twitch\",Twitter:\"twitter\",Type:\"type\",Umbrella:\"umbrella\",Underline:\"underline\",Unlock:\"unlock\",Upload:\"upload\",User:\"user\",Users:\"users\",Video:\"video\",Voicemail:\"voicemail\",Volume:\"volume\",Watch:\"watch\",Wifi:\"wifi\",Wind:\"wind\",X:\"x\",Youtube:\"youtube\",Zap:\"zap\"};const getProps=({background,border,borderHover,click,color,color1,gapBetween,height,hover,hoverBG,hoverText,icon,icon1,id,leftIcon,onHover,onHover1,padding,radius,rightIcon,text,text1,width,...props})=>{return{...props,C0r82MLJr:color??props.C0r82MLJr??\"rgb(255, 255, 255)\",CtQpOUQ1_:text1??props.CtQpOUQ1_??\"rgb(255, 255, 255)\",EGLpWafNn:hover??props.EGLpWafNn,ey9xsi0og:hoverBG??props.ey9xsi0og??\"rgb(61, 50, 217)\",GBMDuPoJG:borderHover??props.GBMDuPoJG??{borderColor:\"rgb(255, 255, 255)\",borderStyle:\"solid\",borderWidth:0},iIzfEdxZY:humanReadableEnumMap[icon1]??icon1??props.iIzfEdxZY??\"arrow-right\",IkzY64T_e:hoverText??props.IkzY64T_e??\"rgb(255, 255, 255)\",iV0HO3a2q:background??props.iV0HO3a2q??\"rgb(63, 56, 255)\",LFzMfF88n:leftIcon??props.LFzMfF88n??true,mJhvMHYEF:onHover1??props.mJhvMHYEF??\"rgb(255, 255, 255)\",NSKJbcdIB:humanReadableEnumMap[icon]??icon??props.NSKJbcdIB??\"play\",nxtJ82G9s:click??props.nxtJ82G9s,Pn3hutrG4:text??props.Pn3hutrG4??\"Get started for free \",pUO0U4n2S:onHover??props.pUO0U4n2S??\"rgb(255, 255, 255)\",THhOdmXed:rightIcon??props.THhOdmXed??true,vunRB1fnm:border??props.vunRB1fnm??{borderColor:\"rgb(255, 255, 255)\",borderStyle:\"solid\",borderWidth:0},wr7wfl6G2:color1??props.wr7wfl6G2??\"rgb(255, 255, 255)\",WSrj4xXMs:padding??props.WSrj4xXMs??\"16px 18px 16px 18px\",yPtz4F1S4:radius??props.yPtz4F1S4??\"10px\",zhtCNCTQz:gapBetween??props.zhtCNCTQz??8};};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,Pn3hutrG4,yPtz4F1S4,WSrj4xXMs,CtQpOUQ1_,iV0HO3a2q,vunRB1fnm,IkzY64T_e,ey9xsi0og,GBMDuPoJG,LFzMfF88n,NSKJbcdIB,C0r82MLJr,pUO0U4n2S,THhOdmXed,iIzfEdxZY,wr7wfl6G2,mJhvMHYEF,zhtCNCTQz,EGLpWafNn,nxtJ82G9s,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"cV0QiNbar\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ng7a27=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(nxtJ82G9s){const res=await nxtJ82G9s(...args);if(res===false)return false;}});const onMouseEntert2gvso=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(EGLpWafNn){const res=await EGLpWafNn(...args);if(res===false)return false;}});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-hgx4sp\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"cV0QiNbar\",onMouseEnter:onMouseEntert2gvso,onTap:onTap1ng7a27,ref:refBinding,style:{\"--22iio5\":zhtCNCTQz,\"--border-bottom-width\":(vunRB1fnm.borderBottomWidth??vunRB1fnm.borderWidth)+\"px\",\"--border-color\":vunRB1fnm.borderColor,\"--border-left-width\":(vunRB1fnm.borderLeftWidth??vunRB1fnm.borderWidth)+\"px\",\"--border-right-width\":(vunRB1fnm.borderRightWidth??vunRB1fnm.borderWidth)+\"px\",\"--border-style\":vunRB1fnm.borderStyle,\"--border-top-width\":(vunRB1fnm.borderTopWidth??vunRB1fnm.borderWidth)+\"px\",\"--gdwdw\":numberToPixelString(WSrj4xXMs),backgroundColor:iV0HO3a2q,borderBottomLeftRadius:radiusForCorner(yPtz4F1S4,3),borderBottomRightRadius:radiusForCorner(yPtz4F1S4,2),borderTopLeftRadius:radiusForCorner(yPtz4F1S4,0),borderTopRightRadius:radiusForCorner(yPtz4F1S4,1),...style},variants:{\"cV0QiNbar-hover\":{\"--border-bottom-width\":(GBMDuPoJG.borderBottomWidth??GBMDuPoJG.borderWidth)+\"px\",\"--border-color\":GBMDuPoJG.borderColor,\"--border-left-width\":(GBMDuPoJG.borderLeftWidth??GBMDuPoJG.borderWidth)+\"px\",\"--border-right-width\":(GBMDuPoJG.borderRightWidth??GBMDuPoJG.borderWidth)+\"px\",\"--border-style\":GBMDuPoJG.borderStyle,\"--border-top-width\":(GBMDuPoJG.borderTopWidth??GBMDuPoJG.borderWidth)+\"px\",backgroundColor:ey9xsi0og}},...addPropertyOverrides({\"cV0QiNbar-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[LFzMfF88n&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-114zq2o-container\",\"data-framer-name\":\"Icon Left\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Mw0HDUEYE-container\",name:\"Icon Left\",nodeId:\"Mw0HDUEYE\",rendersWithMotion:true,scopeId:\"xqxwjckIG\",children:/*#__PURE__*/_jsx(Feather,{color:C0r82MLJr,height:\"100%\",iconSearch:\"Home\",iconSelection:NSKJbcdIB,id:\"Mw0HDUEYE\",layoutId:\"Mw0HDUEYE\",mirrored:false,name:\"Icon Left\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"cV0QiNbar-hover\":{color:pUO0U4n2S}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-CtQpOUQ1_-xqxwjckIG))\"},children:\"Get started for free \"})}),className:\"framer-980ls7\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"J8F7xIsW5\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-CtQpOUQ1_-xqxwjckIG)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-CtQpOUQ1_-xqxwjckIG\":CtQpOUQ1_,\"--variable-reference-IkzY64T_e-xqxwjckIG\":IkzY64T_e},text:Pn3hutrG4,variants:{\"cV0QiNbar-hover\":{\"--extracted-r6o4lv\":\"var(--variable-reference-IkzY64T_e-xqxwjckIG)\",\"--variable-reference-IkzY64T_e-xqxwjckIG\":IkzY64T_e}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"cV0QiNbar-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-IkzY64T_e-xqxwjckIG))\"},children:\"Get started for free \"})})}},baseVariant,gestureVariant)}),THhOdmXed&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wd0ffw-container\",\"data-framer-name\":\"Icon Right\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"VdjceBnvt-container\",name:\"Icon Right\",nodeId:\"VdjceBnvt\",rendersWithMotion:true,scopeId:\"xqxwjckIG\",children:/*#__PURE__*/_jsx(Feather,{color:wr7wfl6G2,height:\"100%\",iconSearch:\"Home\",iconSelection:iIzfEdxZY,id:\"VdjceBnvt\",layoutId:\"VdjceBnvt\",mirrored:false,name:\"Icon Right\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"cV0QiNbar-hover\":{color:mJhvMHYEF}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3ZtdV.framer-585gmv, .framer-3ZtdV .framer-585gmv { display: block; }\",\".framer-3ZtdV.framer-hgx4sp { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: calc(max(0, var(--22iio5)) * 1px); height: min-content; justify-content: center; overflow: hidden; padding: var(--gdwdw); position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-3ZtdV .framer-114zq2o-container, .framer-3ZtdV .framer-1wd0ffw-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-3ZtdV .framer-980ls7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3ZtdV.framer-hgx4sp { gap: 0px; } .framer-3ZtdV.framer-hgx4sp > * { margin: 0px; margin-left: calc(calc(max(0, var(--22iio5)) * 1px) / 2); margin-right: calc(calc(max(0, var(--22iio5)) * 1px) / 2); } .framer-3ZtdV.framer-hgx4sp > :first-child { margin-left: 0px; } .framer-3ZtdV.framer-hgx4sp > :last-child { margin-right: 0px; } }\",'.framer-3ZtdV[data-border=\"true\"]::after, .framer-3ZtdV [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 52\n * @framerIntrinsicWidth 242\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"zFRm8XGYj\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"Pn3hutrG4\":\"text\",\"yPtz4F1S4\":\"radius\",\"WSrj4xXMs\":\"padding\",\"CtQpOUQ1_\":\"text1\",\"iV0HO3a2q\":\"background\",\"vunRB1fnm\":\"border\",\"IkzY64T_e\":\"hoverText\",\"ey9xsi0og\":\"hoverBG\",\"GBMDuPoJG\":\"borderHover\",\"LFzMfF88n\":\"leftIcon\",\"NSKJbcdIB\":\"icon\",\"C0r82MLJr\":\"color\",\"pUO0U4n2S\":\"onHover\",\"THhOdmXed\":\"rightIcon\",\"iIzfEdxZY\":\"icon1\",\"wr7wfl6G2\":\"color1\",\"mJhvMHYEF\":\"onHover1\",\"zhtCNCTQz\":\"gapBetween\",\"EGLpWafNn\":\"hover\",\"nxtJ82G9s\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerxqxwjckIG=withCSS(Component,css,\"framer-3ZtdV\");export default FramerxqxwjckIG;FramerxqxwjckIG.displayName=\"Component Button\";FramerxqxwjckIG.defaultProps={height:52,width:242};addPropertyControls(FramerxqxwjckIG,{Pn3hutrG4:{defaultValue:\"Get started for free \",displayTextArea:false,title:\"Text\",type:ControlType.String},yPtz4F1S4:{defaultValue:\"10px\",title:\"Radius\",type:ControlType.BorderRadius},WSrj4xXMs:{defaultValue:\"16px 18px 16px 18px\",title:\"Padding\",type:ControlType.Padding},CtQpOUQ1_:{defaultValue:\"rgb(255, 255, 255)\",title:\"Text\",type:ControlType.Color},iV0HO3a2q:{defaultValue:\"rgb(63, 56, 255)\",title:\"Background\",type:ControlType.Color},vunRB1fnm:{defaultValue:{borderColor:\"rgb(255, 255, 255)\",borderStyle:\"solid\",borderWidth:0},title:\"Border\",type:ControlType.Border},IkzY64T_e:{defaultValue:\"rgb(255, 255, 255)\",title:\"Hover Text\",type:ControlType.Color},ey9xsi0og:{defaultValue:\"rgb(61, 50, 217)\",title:\"Hover BG\",type:ControlType.Color},GBMDuPoJG:{defaultValue:{borderColor:\"rgb(255, 255, 255)\",borderStyle:\"solid\",borderWidth:0},title:\"Border - Hover\",type:ControlType.Border},LFzMfF88n:{defaultValue:true,title:\"Left Icon\",type:ControlType.Boolean},NSKJbcdIB:FeatherControls?.[\"iconSelection\"]&&{...FeatherControls[\"iconSelection\"],defaultValue:\"play\",description:undefined,hidden:undefined,title:\"Icon\"},C0r82MLJr:{defaultValue:\"rgb(255, 255, 255)\",title:\"Color\",type:ControlType.Color},pUO0U4n2S:{defaultValue:\"rgb(255, 255, 255)\",title:\"On Hover\",type:ControlType.Color},THhOdmXed:{defaultValue:true,title:\"Right Icon\",type:ControlType.Boolean},iIzfEdxZY:FeatherControls?.[\"iconSelection\"]&&{...FeatherControls[\"iconSelection\"],defaultValue:\"arrow-right\",description:undefined,hidden:undefined,title:\"Icon\"},wr7wfl6G2:{defaultValue:\"rgb(255, 255, 255)\",title:\"Color\",type:ControlType.Color},mJhvMHYEF:{defaultValue:\"rgb(255, 255, 255)\",title:\"On Hover\",type:ControlType.Color},zhtCNCTQz:{defaultValue:8,min:0,title:\"Gap Between\",type:ControlType.Number},EGLpWafNn:{title:\"Hover\",type:ControlType.EventHandler},nxtJ82G9s:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerxqxwjckIG,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxqxwjckIG\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"242\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"Pn3hutrG4\\\":\\\"text\\\",\\\"yPtz4F1S4\\\":\\\"radius\\\",\\\"WSrj4xXMs\\\":\\\"padding\\\",\\\"CtQpOUQ1_\\\":\\\"text1\\\",\\\"iV0HO3a2q\\\":\\\"background\\\",\\\"vunRB1fnm\\\":\\\"border\\\",\\\"IkzY64T_e\\\":\\\"hoverText\\\",\\\"ey9xsi0og\\\":\\\"hoverBG\\\",\\\"GBMDuPoJG\\\":\\\"borderHover\\\",\\\"LFzMfF88n\\\":\\\"leftIcon\\\",\\\"NSKJbcdIB\\\":\\\"icon\\\",\\\"C0r82MLJr\\\":\\\"color\\\",\\\"pUO0U4n2S\\\":\\\"onHover\\\",\\\"THhOdmXed\\\":\\\"rightIcon\\\",\\\"iIzfEdxZY\\\":\\\"icon1\\\",\\\"wr7wfl6G2\\\":\\\"color1\\\",\\\"mJhvMHYEF\\\":\\\"onHover1\\\",\\\"zhtCNCTQz\\\":\\\"gapBetween\\\",\\\"EGLpWafNn\\\":\\\"hover\\\",\\\"nxtJ82G9s\\\":\\\"click\\\"}\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zFRm8XGYj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"52\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xqxwjckIG.map", "// Generated by Framer (ed8225c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-PiCzp .framer-styles-preset-68ruwb:not(.rich-text-wrapper), .framer-PiCzp .framer-styles-preset-68ruwb.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, #0055ff) /* {\"name\":\"Blue\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-d2ee1de5-88f8-41d7-8642-338767096a94, rgba(255, 255, 255, 0.5)); --framer-link-text-decoration: none; }'];export const className=\"framer-PiCzp\";\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 (0623976)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-regular\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-JDW32RmYJpso5.woff2\",weight:\"400\"}]}];export const css=['.framer-cAY5t .framer-styles-preset-x0s9r5:not(.rich-text-wrapper), .framer-cAY5t .framer-styles-preset-x0s9r5.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.2px; --framer-line-height: 26px; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-cAY5t\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ComponentButton from\"https://framerusercontent.com/modules/rBLj6WtXE4tGaBciBmAd/c4LIkBkUJzdsBiC22qZf/xqxwjckIG.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/v7Nh7GpZv4GEbHzfkCtL/9c239Vj6uXn0zeETHxDW/DOWnf2wWb.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/pNo1ByiHDJTXdMDIVlrC/AedoHnW5jkw2mVVRklf9/QhK6qqT5U.js\";const ComponentButtonFonts=getFonts(ComponentButton);const cycleOrder=[\"bDk7F1kVD\",\"FDCmoGw1j\",\"NsDxD6sbJ\"];const serializationHash=\"framer-3ST9X\";const variantClassNames={bDk7F1kVD:\"framer-v-ycqv3k\",FDCmoGw1j:\"framer-v-186hcc8\",NsDxD6sbJ:\"framer-v-qx6gpu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 3\":\"NsDxD6sbJ\",Default:\"bDk7F1kVD\",Small:\"FDCmoGw1j\"};const getProps=({height,icon,id,link,text,title,width,...props})=>{return{...props,eRXpdnZKZ:icon??props.eRXpdnZKZ??{pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/lkjWSbX3QvCuOM4t3dWNmxU08yQ.svg\"},rywAnDLkY:text??props.rywAnDLkY??\"Earning potential grows with dedication, innovation, & with our instruction from expert.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"bDk7F1kVD\",VWcrWhUyS:title??props.VWcrWhUyS??\"Multiple Account\",wl8EAW9iO:link??props.wl8EAW9iO};};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,eRXpdnZKZ,VWcrWhUyS,wl8EAW9iO,rywAnDLkY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bDk7F1kVD\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ycqv3k\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"bDk7F1kVD\",ref:refBinding,style:{...style},...addPropertyOverrides({FDCmoGw1j:{\"data-framer-name\":\"Small\"},NsDxD6sbJ:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:wl8EAW9iO,motionChild:true,nodeId:\"MsxCmkGRy\",openInNewTab:false,scopeId:\"EB78TtOt_\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:396,intrinsicWidth:396,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||198)-0-198)/2)),pixelHeight:1203,pixelWidth:2001,sizes:`calc(${componentViewport?.width||\"100vw\"} / 3)`,src:\"https://framerusercontent.com/images/47YzcP5udfcpZtxH5XKRYL1V9PA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/47YzcP5udfcpZtxH5XKRYL1V9PA.png?scale-down-to=512 512w,https://framerusercontent.com/images/47YzcP5udfcpZtxH5XKRYL1V9PA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/47YzcP5udfcpZtxH5XKRYL1V9PA.png 2001w\"},className:\"framer-14u2cad framer-vuh3mg\",\"data-framer-name\":\"WIdget Icon\",layoutDependency:layoutDependency,layoutId:\"MsxCmkGRy\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({FDCmoGw1j:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:396,intrinsicWidth:396,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||255)-0-464)/2+0+0)),pixelHeight:1203,pixelWidth:2001,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.26)`,src:\"https://framerusercontent.com/images/47YzcP5udfcpZtxH5XKRYL1V9PA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/47YzcP5udfcpZtxH5XKRYL1V9PA.png?scale-down-to=512 512w,https://framerusercontent.com/images/47YzcP5udfcpZtxH5XKRYL1V9PA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/47YzcP5udfcpZtxH5XKRYL1V9PA.png 2001w\"}},NsDxD6sbJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:396,intrinsicWidth:396,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1203,pixelWidth:2001,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.1936)`,src:\"https://framerusercontent.com/images/47YzcP5udfcpZtxH5XKRYL1V9PA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/47YzcP5udfcpZtxH5XKRYL1V9PA.png?scale-down-to=512 512w,https://framerusercontent.com/images/47YzcP5udfcpZtxH5XKRYL1V9PA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/47YzcP5udfcpZtxH5XKRYL1V9PA.png 2001w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||198)-0-198)/2)+49),pixelHeight:100,pixelWidth:100,sizes:`calc(${componentViewport?.width||\"100vw\"} / 5.94)`,...toResponsiveImage(eRXpdnZKZ),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1h420f0\",\"data-framer-name\":\"Icon Image\",layoutDependency:layoutDependency,layoutId:\"n2eevpcTz\",transformTemplate:transformTemplate1,...addPropertyOverrides({FDCmoGw1j:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||255)-0-464)/2+0+0)+49),pixelHeight:100,pixelWidth:100,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.1313)`,...toResponsiveImage(eRXpdnZKZ),...{positionX:\"center\",positionY:\"center\"}}},NsDxD6sbJ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+7.5),pixelHeight:100,pixelWidth:100,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.0978)`,...toResponsiveImage(eRXpdnZKZ),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ksrw4g\",\"data-framer-name\":\"Widget Body\",layoutDependency:layoutDependency,layoutId:\"qKZ8jYX6E\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gyopu3\",\"data-framer-name\":\"Widget Text Block\",layoutDependency:layoutDependency,layoutId:\"X_EHbsPRx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:wl8EAW9iO,motionChild:true,nodeId:\"QkdfbN_7g\",openInNewTab:false,scopeId:\"EB78TtOt_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-68ruwb\",\"data-styles-preset\":\"DOWnf2wWb\",children:\"Multiple Account\"})})})}),className:\"framer-15nanrv\",\"data-framer-name\":\"Widget Title\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"QkdfbN_7g\",style:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:VWcrWhUyS,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({FDCmoGw1j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:wl8EAW9iO,motionChild:true,nodeId:\"QkdfbN_7g\",openInNewTab:false,scopeId:\"EB78TtOt_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-68ruwb\",\"data-styles-preset\":\"DOWnf2wWb\",children:\"Multiple Account\"})})})})},NsDxD6sbJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:\"Multiple Account\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Earning potential grows with dedication, innovation, & with our instruction from expert.\"})}),className:\"framer-oamvgx\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gkxYSqi_e\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:rywAnDLkY,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FDCmoGw1j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\"},children:\"Earning potential grows with dedication, innovation, & with our instruction from expert.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:(componentViewport?.y||0)+(0+((componentViewport?.height||198)-0-248)/2)+0+196,...addPropertyOverrides({FDCmoGw1j:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||255)-0-464)/2+198+30)+0+184},NsDxD6sbJ:{y:(componentViewport?.y||0)+0+142+0+196}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1epimxw-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZIsssMRaU-container\",nodeId:\"ZIsssMRaU\",rendersWithMotion:true,scopeId:\"EB78TtOt_\",children:/*#__PURE__*/_jsx(ComponentButton,{C0r82MLJr:\"rgb(255, 255, 255)\",CtQpOUQ1_:\"var(--token-d2ee1de5-88f8-41d7-8642-338767096a94, rgba(255, 255, 255, 0.5))\",ey9xsi0og:\"rgba(255, 255, 255, 0)\",GBMDuPoJG:{borderColor:\"rgb(255, 255, 255)\",borderStyle:\"solid\",borderWidth:0},height:\"100%\",id:\"ZIsssMRaU\",iIzfEdxZY:\"chevron-right\",IkzY64T_e:\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\",iV0HO3a2q:\"rgba(255, 255, 255, 0)\",layoutId:\"ZIsssMRaU\",LFzMfF88n:false,mJhvMHYEF:\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\",NSKJbcdIB:\"play\",Pn3hutrG4:\"Learn More\",pUO0U4n2S:\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\",THhOdmXed:true,vunRB1fnm:{borderColor:\"rgb(255, 255, 255)\",borderStyle:\"solid\",borderWidth:0},width:\"100%\",wr7wfl6G2:\"var(--token-d2ee1de5-88f8-41d7-8642-338767096a94, rgba(255, 255, 255, 0.5))\",WSrj4xXMs:\"0px\",yPtz4F1S4:\"10px\",zhtCNCTQz:8})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3ST9X.framer-vuh3mg, .framer-3ST9X .framer-vuh3mg { display: block; }\",\".framer-3ST9X.framer-ycqv3k { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 594px; }\",\".framer-3ST9X .framer-14u2cad { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 198px); overflow: hidden; position: relative; text-decoration: none; width: 33%; will-change: var(--framer-will-change-override, transform); }\",\".framer-3ST9X .framer-1h420f0 { aspect-ratio: 1.0000000762939512 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 100px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 51%; }\",\".framer-3ST9X .framer-ksrw4g { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3ST9X .framer-1gyopu3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3ST9X .framer-15nanrv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3ST9X .framer-oamvgx { flex: none; height: auto; max-width: 371px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3ST9X .framer-1epimxw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3ST9X.framer-v-186hcc8.framer-ycqv3k { flex-direction: column; gap: 30px; justify-content: center; width: 380px; }\",\".framer-3ST9X.framer-v-186hcc8 .framer-14u2cad { height: var(--framer-aspect-ratio-supported, 99px); width: 26%; }\",\".framer-3ST9X.framer-v-186hcc8 .framer-1h420f0 { height: var(--framer-aspect-ratio-supported, 50px); }\",\".framer-3ST9X.framer-v-186hcc8 .framer-ksrw4g { align-content: center; align-items: center; flex: none; justify-content: center; max-width: 380px; width: 100%; }\",\".framer-3ST9X.framer-v-186hcc8 .framer-1gyopu3 { gap: 4px; }\",\".framer-3ST9X.framer-v-186hcc8 .framer-oamvgx { max-width: unset; }\",\".framer-3ST9X.framer-v-qx6gpu.framer-ycqv3k { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 27px; }\",\".framer-3ST9X.framer-v-qx6gpu .framer-14u2cad { height: var(--framer-aspect-ratio-supported, 115px); width: 19%; }\",\".framer-3ST9X.framer-v-qx6gpu .framer-1h420f0 { height: var(--framer-aspect-ratio-supported, 58px); }\",\".framer-3ST9X.framer-v-qx6gpu .framer-ksrw4g { flex: none; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 198\n * @framerIntrinsicWidth 594\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FDCmoGw1j\":{\"layout\":[\"fixed\",\"auto\"]},\"NsDxD6sbJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"eRXpdnZKZ\":\"icon\",\"VWcrWhUyS\":\"title\",\"wl8EAW9iO\":\"link\",\"rywAnDLkY\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerEB78TtOt_=withCSS(Component,css,\"framer-3ST9X\");export default FramerEB78TtOt_;FramerEB78TtOt_.displayName=\"Feature Widget\";FramerEB78TtOt_.defaultProps={height:198,width:594};addPropertyControls(FramerEB78TtOt_,{variant:{options:[\"bDk7F1kVD\",\"FDCmoGw1j\",\"NsDxD6sbJ\"],optionTitles:[\"Default\",\"Small\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},eRXpdnZKZ:{__defaultAssetReference:\"data:framer/asset-reference,lkjWSbX3QvCuOM4t3dWNmxU08yQ.svg?originalFilename=icon-01.svg&preferredSize=auto\",title:\"Icon\",type:ControlType.ResponsiveImage},VWcrWhUyS:{defaultValue:\"Multiple Account\",displayTextArea:false,title:\"Title\",type:ControlType.String},wl8EAW9iO:{title:\"Link\",type:ControlType.Link},rywAnDLkY:{defaultValue:\"Earning potential grows with dedication, innovation, & with our instruction from expert.\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerEB78TtOt_,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{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\"}]},...ComponentButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEB78TtOt_\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FDCmoGw1j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NsDxD6sbJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"eRXpdnZKZ\\\":\\\"icon\\\",\\\"VWcrWhUyS\\\":\\\"title\\\",\\\"wl8EAW9iO\\\":\\\"link\\\",\\\"rywAnDLkY\\\":\\\"text\\\"}\",\"framerIntrinsicWidth\":\"594\",\"framerIntrinsicHeight\":\"198\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EB78TtOt_.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"BHtnK0DBP\",\"K3DCsYzu6\",\"Pn8LAqFVX\"];const serializationHash=\"framer-Btsan\";const variantClassNames={BHtnK0DBP:\"framer-v-1e032tj\",K3DCsYzu6:\"framer-v-174tqnx\",Pn8LAqFVX:\"framer-v-17qod1e\"};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 humanReadableVariantMap={\"Variant 1\":\"BHtnK0DBP\",\"Variant 2\":\"K3DCsYzu6\",\"Variant 3\":\"Pn8LAqFVX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"BHtnK0DBP\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BHtnK0DBP\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear147zwbn=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"K3DCsYzu6\",true),1e3);});const onAppear19s9xfh=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"BHtnK0DBP\",true),1e3);});useOnVariantChange(baseVariant,{default:onAppear147zwbn,K3DCsYzu6:onAppear19s9xfh,Pn8LAqFVX:undefined});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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1e032tj\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BHtnK0DBP\",ref:refBinding,style:{backgroundColor:\"rgba(72, 255, 0, 0.15)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,...style},...addPropertyOverrides({K3DCsYzu6:{\"data-framer-name\":\"Variant 2\"},Pn8LAqFVX:{\"data-framer-name\":\"Variant 3\",\"data-highlight\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9iq5kt\",layoutDependency:layoutDependency,layoutId:\"hyHj1KQRG\",style:{backgroundColor:\"rgb(72, 255, 0)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},variants:{K3DCsYzu6:{backgroundColor:\"rgba(72, 255, 0, 0.33)\"}}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Btsan.framer-ydun1t, .framer-Btsan .framer-ydun1t { display: block; }\",\".framer-Btsan.framer-1e032tj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 5px; justify-content: center; padding: 0px; position: relative; width: 10px; }\",\".framer-Btsan .framer-9iq5kt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 5px); overflow: hidden; position: relative; width: 5px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Btsan.framer-v-174tqnx.framer-1e032tj, .framer-Btsan.framer-v-17qod1e.framer-1e032tj { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 10px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10\n * @framerIntrinsicWidth 10\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"K3DCsYzu6\":{\"layout\":[\"fixed\",\"fixed\"]},\"Pn8LAqFVX\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerzvKbYC0Od=withCSS(Component,css,\"framer-Btsan\");export default FramerzvKbYC0Od;FramerzvKbYC0Od.displayName=\"Bullet Point\";FramerzvKbYC0Od.defaultProps={height:10,width:10};addPropertyControls(FramerzvKbYC0Od,{variant:{options:[\"BHtnK0DBP\",\"K3DCsYzu6\",\"Pn8LAqFVX\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerzvKbYC0Od,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzvKbYC0Od\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"K3DCsYzu6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Pn8LAqFVX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"10\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"10\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zvKbYC0Od.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/rmHmgUuutDQOkNYIEMlo/RsTKXvCqOgCSBeVVBcHg/qScbNYtt3.js\";import BulletPoint from\"https://framerusercontent.com/modules/WmgvPkuhJcIBcSO3Wfya/Y6VerovZHOKVg1FIXOOS/zvKbYC0Od.js\";const BulletPointFonts=getFonts(BulletPoint);const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-OrGIN\";const variantClassNames={NebylwRNF:\"framer-v-1oqyond\"};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:\"NebylwRNF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1oqyond\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"NebylwRNF\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-30ee69d1-cae6-4a5c-9af2-db5c94a12e77, rgba(255, 255, 255, 0.05))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(0.07383128568086761deg, var(--token-64bf095d-9ad7-4fc0-9f3c-f96ec87f9b9b, rgba(0, 85, 255, 0.08)) 0%, var(--token-b6113dae-1252-48c9-8fac-f8a781d683c0, rgba(153, 153, 153, 0.1)) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,width:\"15px\",y:(componentViewport?.y||0)+(6+((componentViewport?.height||38)-12-15)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kszt7j-container\",layoutDependency:layoutDependency,layoutId:\"ZTFbkjdmj-container\",nodeId:\"ZTFbkjdmj\",rendersWithMotion:true,scopeId:\"m4VVEPNmb\",children:/*#__PURE__*/_jsx(BulletPoint,{height:\"100%\",id:\"ZTFbkjdmj\",layoutId:\"ZTFbkjdmj\",style:{height:\"100%\",width:\"100%\"},variant:\"BHtnK0DBP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-m6m3zm\",\"data-styles-preset\":\"qScbNYtt3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(153, 153, 153, 0) 350%)\"},children:\"Advance Solutions by Advance Amazon Podcast\"})})}),className:\"framer-1dz306w\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ukKfwRmbv\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:.3,durationBasedSpring:false,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.3,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1mvsv5\",\"data-framer-name\":\"Blue Line\",layoutDependency:layoutDependency,layoutId:\"MushM5vq4\",style:{background:\"linear-gradient(90.00000000000155deg, rgba(0, 85, 255, 0) 0%, rgb(230, 131, 18) 50%, rgba(0, 85, 255, 0) 100%)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OrGIN.framer-ckk55m, .framer-OrGIN .framer-ckk55m { display: block; }\",\".framer-OrGIN.framer-1oqyond { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 14px 6px 14px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-OrGIN .framer-kszt7j-container { flex: none; height: 15px; position: relative; width: 15px; }\",\".framer-OrGIN .framer-1dz306w { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-OrGIN .framer-1mvsv5 { flex: none; height: 1px; left: calc(50.3937007874016% - 62% / 2); position: absolute; top: 0px; width: 62%; z-index: 1; }\",...sharedStyle.css,'.framer-OrGIN[data-border=\"true\"]::after, .framer-OrGIN [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 388\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerm4VVEPNmb=withCSS(Component,css,\"framer-OrGIN\");export default Framerm4VVEPNmb;Framerm4VVEPNmb.displayName=\"Tag/Primary Tag live\";Framerm4VVEPNmb.defaultProps={height:38,width:388};addFonts(Framerm4VVEPNmb,[{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\"}]},...BulletPointFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerm4VVEPNmb\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"38\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"388\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import BeforeAfter from\"https://framerusercontent.com/modules/d0J10qPQ3T9q0Uyn7n7P/GaMwyalQUDsT1DjqjUBc/Before_After_Image_Slider.js\";import ButtonPrimaryButton from\"https://framerusercontent.com/modules/8pnzyCnUr5uTwyipf3NX/7Xymyvaoz0GIfmyV2A0H/GNvaONxX6.js\";const ButtonPrimaryButtonFonts=getFonts(ButtonPrimaryButton);const BeforeAfterFonts=getFonts(BeforeAfter);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"aG_3htl7U\",\"j8gm0xwGN\",\"qr8bdPHap\",\"HINCsxHT3\",\"W7Ee8v4yg\",\"SHf63oS7s\"];const serializationHash=\"framer-7kGfB\";const variantClassNames={aG_3htl7U:\"framer-v-111d0ip\",HINCsxHT3:\"framer-v-1ui5k8g\",j8gm0xwGN:\"framer-v-v278ih\",qr8bdPHap:\"framer-v-146ygwb\",SHf63oS7s:\"framer-v-1qpbnvc\",W7Ee8v4yg:\"framer-v-14gb6de\"};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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const transition2={damping:60,delay:.6,mass:1,stiffness:320,type:\"spring\"};const animation1={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition3={damping:50,delay:.05,mass:1,stiffness:300,type:\"spring\"};const textEffect={effect:animation1,repeat:false,startDelay:0,threshold:.5,tokenization:\"word\",transition:transition3,trigger:\"onInView\",type:\"appear\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"j8gm0xwGN\",\"Variant 3\":\"qr8bdPHap\",\"Variant 5\":\"W7Ee8v4yg\",\"Variant 6\":\"SHf63oS7s\",Mobile:\"HINCsxHT3\",XL:\"aG_3htl7U\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"aG_3htl7U\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"aG_3htl7U\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const Ni9YzzpUb1eecerp=activeVariantCallback(async(...args)=>{setVariant(\"aG_3htl7U\");});const Ni9YzzpUb1ndgxja=activeVariantCallback(async(...args)=>{setVariant(\"HINCsxHT3\");});const Ni9YzzpUb2bj7qc=activeVariantCallback(async(...args)=>{setVariant(\"j8gm0xwGN\");});const Ni9YzzpUbjn3uq8=activeVariantCallback(async(...args)=>{setVariant(\"W7Ee8v4yg\");});const Ni9YzzpUbz6jnyk=activeVariantCallback(async(...args)=>{setVariant(\"qr8bdPHap\");});const Ni9YzzpUbxuuzxq=activeVariantCallback(async(...args)=>{setVariant(\"SHf63oS7s\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"j8gm0xwGN\",\"qr8bdPHap\",\"W7Ee8v4yg\",\"SHf63oS7s\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"j8gm0xwGN\",\"qr8bdPHap\",\"W7Ee8v4yg\",\"SHf63oS7s\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"j8gm0xwGN\",\"W7Ee8v4yg\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"qr8bdPHap\",\"SHf63oS7s\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.header,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-111d0ip\",className,classNames),\"data-framer-name\":\"XL\",layoutDependency:layoutDependency,layoutId:\"aG_3htl7U\",ref:refBinding,style:{...style},...addPropertyOverrides({HINCsxHT3:{\"data-framer-name\":\"Mobile\"},j8gm0xwGN:{\"data-framer-name\":\"Variant 2\"},qr8bdPHap:{\"data-framer-name\":\"Variant 3\"},SHf63oS7s:{\"data-framer-name\":\"Variant 6\"},W7Ee8v4yg:{\"data-framer-name\":\"Variant 5\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12torw1\",layoutDependency:layoutDependency,layoutId:\"BdMXEOyez\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+40+(((componentViewport?.height||1371)-80-1756)/2+0+0)+0,...addPropertyOverrides({HINCsxHT3:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||6894)-0-6968)/2+0+0)+0+0},j8gm0xwGN:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||858)-80-706)/2+0+0)+0},qr8bdPHap:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||1548)-80-1396)/2+0+0)+0},SHf63oS7s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||3022)-0-2878)/2+0+0)+0+0},W7Ee8v4yg:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||3106)-0-2818)/2+0+0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sn2pfk-container\",layoutDependency:layoutDependency,layoutId:\"BPpa0iiOc-container\",nodeId:\"BPpa0iiOc\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"Main Image Optimization\",height:\"100%\",id:\"BPpa0iiOc\",layoutId:\"BPpa0iiOc\",Ni9YzzpUb:Ni9YzzpUb1eecerp,SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3},...addPropertyOverrides({HINCsxHT3:{Ni9YzzpUb:Ni9YzzpUb1ndgxja,style:{width:\"100%\"}},j8gm0xwGN:{variant:\"xQAMtyuwR\"},qr8bdPHap:{variant:\"xQAMtyuwR\"},SHf63oS7s:{Ni9YzzpUb:Ni9YzzpUb1ndgxja,style:{width:\"100%\"},variant:\"xQAMtyuwR\"},W7Ee8v4yg:{Ni9YzzpUb:Ni9YzzpUb1ndgxja,style:{width:\"100%\"},variant:\"xQAMtyuwR\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+40+(((componentViewport?.height||1371)-80-1756)/2+0+0)+0,...addPropertyOverrides({HINCsxHT3:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||6894)-0-6968)/2+0+0)+0+66},j8gm0xwGN:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||858)-80-706)/2+0+0)+0},qr8bdPHap:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||1548)-80-1396)/2+0+0)+0},SHf63oS7s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||3022)-0-2878)/2+0+0)+0+66},W7Ee8v4yg:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||3106)-0-2818)/2+0+0)+0+66}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3hjpgb-container\",layoutDependency:layoutDependency,layoutId:\"agcBt_Vrs-container\",nodeId:\"agcBt_Vrs\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"Brand Story\",height:\"100%\",id:\"agcBt_Vrs\",layoutId:\"agcBt_Vrs\",Ni9YzzpUb:Ni9YzzpUb2bj7qc,SD1BGlGhK:false,variant:\"xQAMtyuwR\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3},...addPropertyOverrides({HINCsxHT3:{Ni9YzzpUb:Ni9YzzpUbjn3uq8,style:{width:\"100%\"}},j8gm0xwGN:{variant:\"vf6JWDf13\"},SHf63oS7s:{Ni9YzzpUb:Ni9YzzpUbjn3uq8,style:{width:\"100%\"}},W7Ee8v4yg:{Ni9YzzpUb:Ni9YzzpUbjn3uq8,style:{width:\"100%\"},variant:\"vf6JWDf13\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+40+(((componentViewport?.height||1371)-80-1756)/2+0+0)+0,...addPropertyOverrides({HINCsxHT3:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||6894)-0-6968)/2+0+0)+0+132},j8gm0xwGN:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||858)-80-706)/2+0+0)+0},qr8bdPHap:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||1548)-80-1396)/2+0+0)+0},SHf63oS7s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||3022)-0-2878)/2+0+0)+0+132},W7Ee8v4yg:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||3106)-0-2818)/2+0+0)+0+132}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19z4620-container\",layoutDependency:layoutDependency,layoutId:\"X8Tx3l37B-container\",nodeId:\"X8Tx3l37B\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"A+ Content\",height:\"100%\",id:\"X8Tx3l37B\",layoutId:\"X8Tx3l37B\",Ni9YzzpUb:Ni9YzzpUbz6jnyk,SD1BGlGhK:false,variant:\"xQAMtyuwR\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3},...addPropertyOverrides({HINCsxHT3:{Ni9YzzpUb:Ni9YzzpUbxuuzxq,style:{width:\"100%\"}},qr8bdPHap:{variant:\"vf6JWDf13\"},SHf63oS7s:{Ni9YzzpUb:Ni9YzzpUbxuuzxq,style:{width:\"100%\"},variant:\"vf6JWDf13\"},W7Ee8v4yg:{Ni9YzzpUb:Ni9YzzpUbxuuzxq,style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cj2j59\",layoutDependency:layoutDependency,layoutId:\"nxRlLr2ja\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d20ait\",layoutDependency:layoutDependency,layoutId:\"fqHekyqEb\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9oykyb-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"prZ3coxxp-container\",nodeId:\"prZ3coxxp\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"prZ3coxxp\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"prZ3coxxp\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/V4jwuT1z59ofkYli5wz97ACg.png\",srcSet:\"https://framerusercontent.com/images/V4jwuT1z59ofkYli5wz97ACg.png?scale-down-to=512 512w,https://framerusercontent.com/images/V4jwuT1z59ofkYli5wz97ACg.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/6diGGtYXdTL4h7UICFxLo3Qfco.png\",srcSet:\"https://framerusercontent.com/images/6diGGtYXdTL4h7UICFxLo3Qfco.png?scale-down-to=512 512w,https://framerusercontent.com/images/6diGGtYXdTL4h7UICFxLo3Qfco.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hwnfei-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pMYhBYp_K-container\",nodeId:\"pMYhBYp_K\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"pMYhBYp_K\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"pMYhBYp_K\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/KwJJ2UCMUsFOEIncS5zxh4Mro.png\",srcSet:\"https://framerusercontent.com/images/KwJJ2UCMUsFOEIncS5zxh4Mro.png?scale-down-to=512 512w,https://framerusercontent.com/images/KwJJ2UCMUsFOEIncS5zxh4Mro.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/757evtyh67LYmkhfs1vmFAYPCI.png\",srcSet:\"https://framerusercontent.com/images/757evtyh67LYmkhfs1vmFAYPCI.png?scale-down-to=512 512w,https://framerusercontent.com/images/757evtyh67LYmkhfs1vmFAYPCI.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12vcfqd-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wJ4cDjfws-container\",nodeId:\"wJ4cDjfws\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"wJ4cDjfws\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"wJ4cDjfws\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/8FjYMdWk4hv6OgArIRkgFJrfoCM.png\",srcSet:\"https://framerusercontent.com/images/8FjYMdWk4hv6OgArIRkgFJrfoCM.png?scale-down-to=512 512w,https://framerusercontent.com/images/8FjYMdWk4hv6OgArIRkgFJrfoCM.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/hJ5O8ab0X3wJ13ukSMtJIpbfc.png\",srcSet:\"https://framerusercontent.com/images/hJ5O8ab0X3wJ13ukSMtJIpbfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/hJ5O8ab0X3wJ13ukSMtJIpbfc.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1t5z624-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"j7D6Niw3G-container\",nodeId:\"j7D6Niw3G\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"j7D6Niw3G\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"j7D6Niw3G\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/jFAvLF36uCSvhGDrCp1zgvcaqn4.png\",srcSet:\"https://framerusercontent.com/images/jFAvLF36uCSvhGDrCp1zgvcaqn4.png?scale-down-to=512 512w,https://framerusercontent.com/images/jFAvLF36uCSvhGDrCp1zgvcaqn4.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/qGa6dRHSj6BdhSOWFzkGWmVj4Ms.png\",srcSet:\"https://framerusercontent.com/images/qGa6dRHSj6BdhSOWFzkGWmVj4Ms.png?scale-down-to=512 512w,https://framerusercontent.com/images/qGa6dRHSj6BdhSOWFzkGWmVj4Ms.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1n02g8t-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FCeZOtWdo-container\",nodeId:\"FCeZOtWdo\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"FCeZOtWdo\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"FCeZOtWdo\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/css01akKtTMnlSsiRRyjJLVS18.png\",srcSet:\"https://framerusercontent.com/images/css01akKtTMnlSsiRRyjJLVS18.png?scale-down-to=512 512w,https://framerusercontent.com/images/css01akKtTMnlSsiRRyjJLVS18.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/jOkXhQXFvgFV2LvmVgzGeFUs5A.png\",srcSet:\"https://framerusercontent.com/images/jOkXhQXFvgFV2LvmVgzGeFUs5A.png?scale-down-to=512 512w,https://framerusercontent.com/images/jOkXhQXFvgFV2LvmVgzGeFUs5A.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cwdj84-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PwIbXHNWK-container\",nodeId:\"PwIbXHNWK\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"PwIbXHNWK\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"PwIbXHNWK\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/WmwvAWo2GZ6eqxxpk56LRneiCo.png\",srcSet:\"https://framerusercontent.com/images/WmwvAWo2GZ6eqxxpk56LRneiCo.png?scale-down-to=512 512w,https://framerusercontent.com/images/WmwvAWo2GZ6eqxxpk56LRneiCo.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/cLAZjOwMafm5naBZIQKXu3BUSMg.png\",srcSet:\"https://framerusercontent.com/images/cLAZjOwMafm5naBZIQKXu3BUSMg.png?scale-down-to=512 512w,https://framerusercontent.com/images/cLAZjOwMafm5naBZIQKXu3BUSMg.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x6nb67-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"CLxSKs2ok-container\",nodeId:\"CLxSKs2ok\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"CLxSKs2ok\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"CLxSKs2ok\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/j9j4rXq23gDQSJl901jPFpJNRqk.png\",srcSet:\"https://framerusercontent.com/images/j9j4rXq23gDQSJl901jPFpJNRqk.png?scale-down-to=512 512w,https://framerusercontent.com/images/j9j4rXq23gDQSJl901jPFpJNRqk.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/1XepdUzsIf4m7MYo3IJYCM5oWU.png\",srcSet:\"https://framerusercontent.com/images/1XepdUzsIf4m7MYo3IJYCM5oWU.png?scale-down-to=512 512w,https://framerusercontent.com/images/1XepdUzsIf4m7MYo3IJYCM5oWU.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uxzcfo-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qiJ7MwBRk-container\",nodeId:\"qiJ7MwBRk\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"qiJ7MwBRk\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"qiJ7MwBRk\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/vjsAHmSF2MUfPgP5HZ8XPCH5GjM.png\",srcSet:\"https://framerusercontent.com/images/vjsAHmSF2MUfPgP5HZ8XPCH5GjM.png?scale-down-to=512 512w,https://framerusercontent.com/images/vjsAHmSF2MUfPgP5HZ8XPCH5GjM.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/FwsshzP9mbTqODFFn8cFraRjOZU.png\",srcSet:\"https://framerusercontent.com/images/FwsshzP9mbTqODFFn8cFraRjOZU.png?scale-down-to=512 512w,https://framerusercontent.com/images/FwsshzP9mbTqODFFn8cFraRjOZU.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-144sqxf-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KLcZR2bHv-container\",nodeId:\"KLcZR2bHv\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"KLcZR2bHv\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"KLcZR2bHv\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/zkRbfe3AqkI1aJ94ViYsQ7jrdl8.png\",srcSet:\"https://framerusercontent.com/images/zkRbfe3AqkI1aJ94ViYsQ7jrdl8.png?scale-down-to=512 512w,https://framerusercontent.com/images/zkRbfe3AqkI1aJ94ViYsQ7jrdl8.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/HUKq2n5ym0lNPbxi8ayF54XZAKQ.png\",srcSet:\"https://framerusercontent.com/images/HUKq2n5ym0lNPbxi8ayF54XZAKQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/HUKq2n5ym0lNPbxi8ayF54XZAKQ.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v7wrfq-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ODEobRglB-container\",nodeId:\"ODEobRglB\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"ODEobRglB\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"ODEobRglB\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/EnfCboA7IAKl9AcqSsk5crc7g.png\",srcSet:\"https://framerusercontent.com/images/EnfCboA7IAKl9AcqSsk5crc7g.png?scale-down-to=512 512w,https://framerusercontent.com/images/EnfCboA7IAKl9AcqSsk5crc7g.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/08kW8p9eBsGHQbejHqpEsUdSWU.png\",srcSet:\"https://framerusercontent.com/images/08kW8p9eBsGHQbejHqpEsUdSWU.png?scale-down-to=512 512w,https://framerusercontent.com/images/08kW8p9eBsGHQbejHqpEsUdSWU.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12pogq0-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"R9ZYE5ehS-container\",nodeId:\"R9ZYE5ehS\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"R9ZYE5ehS\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"R9ZYE5ehS\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/BEwi3pvZMb8yI54yAwA7zL6NyfA.png\",srcSet:\"https://framerusercontent.com/images/BEwi3pvZMb8yI54yAwA7zL6NyfA.png?scale-down-to=512 512w,https://framerusercontent.com/images/BEwi3pvZMb8yI54yAwA7zL6NyfA.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/29c1QTVdZCPYTBpmwR2dhgEWxag.png\",srcSet:\"https://framerusercontent.com/images/29c1QTVdZCPYTBpmwR2dhgEWxag.png?scale-down-to=512 512w,https://framerusercontent.com/images/29c1QTVdZCPYTBpmwR2dhgEWxag.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kkvaro-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JwjeZX_rl-container\",nodeId:\"JwjeZX_rl\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"JwjeZX_rl\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"JwjeZX_rl\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/rlqWeBnbFc0wjdSO1joIDyC9w.png\",srcSet:\"https://framerusercontent.com/images/rlqWeBnbFc0wjdSO1joIDyC9w.png?scale-down-to=512 512w,https://framerusercontent.com/images/rlqWeBnbFc0wjdSO1joIDyC9w.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/PxZcHzHTlYOjndOYxSYbTZuXtkQ.png\",srcSet:\"https://framerusercontent.com/images/PxZcHzHTlYOjndOYxSYbTZuXtkQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/PxZcHzHTlYOjndOYxSYbTZuXtkQ.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1oh6oio-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Iz3g1W8s9-container\",nodeId:\"Iz3g1W8s9\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"Iz3g1W8s9\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"Iz3g1W8s9\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/vnaVAuMy1ro8N3Y1mMmZAQMiwTw.png\",srcSet:\"https://framerusercontent.com/images/vnaVAuMy1ro8N3Y1mMmZAQMiwTw.png?scale-down-to=512 512w,https://framerusercontent.com/images/vnaVAuMy1ro8N3Y1mMmZAQMiwTw.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/vE8qGTiXVyqt3DBfiKjabJBZBM.png\",srcSet:\"https://framerusercontent.com/images/vE8qGTiXVyqt3DBfiKjabJBZBM.png?scale-down-to=512 512w,https://framerusercontent.com/images/vE8qGTiXVyqt3DBfiKjabJBZBM.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e0jr0f-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QnhWwREzm-container\",nodeId:\"QnhWwREzm\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"QnhWwREzm\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"QnhWwREzm\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/szZvFNcLPU2WA8wr8SCwuphxcw.png\",srcSet:\"https://framerusercontent.com/images/szZvFNcLPU2WA8wr8SCwuphxcw.png?scale-down-to=512 512w,https://framerusercontent.com/images/szZvFNcLPU2WA8wr8SCwuphxcw.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/CHER3vh39pIHuql60pe1ylixWxQ.png\",srcSet:\"https://framerusercontent.com/images/CHER3vh39pIHuql60pe1ylixWxQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/CHER3vh39pIHuql60pe1ylixWxQ.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1l6xojr-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"U233XhlGg-container\",nodeId:\"U233XhlGg\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"U233XhlGg\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"U233XhlGg\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/266tEbaJVdMLANWi8RUwLmTr5rQ.png\",srcSet:\"https://framerusercontent.com/images/266tEbaJVdMLANWi8RUwLmTr5rQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/266tEbaJVdMLANWi8RUwLmTr5rQ.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/SbwqpA2AMyNOjhuAPBsuFu3hS6g.png\",srcSet:\"https://framerusercontent.com/images/SbwqpA2AMyNOjhuAPBsuFu3hS6g.png?scale-down-to=512 512w,https://framerusercontent.com/images/SbwqpA2AMyNOjhuAPBsuFu3hS6g.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rsthih-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Zp0kSCmIQ-container\",nodeId:\"Zp0kSCmIQ\",rendersWithMotion:true,scopeId:\"okWhwsiak\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"Zp0kSCmIQ\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"Zp0kSCmIQ\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/YslIVIFXnKfQiDonnsAoRDyI.png\",srcSet:\"https://framerusercontent.com/images/YslIVIFXnKfQiDonnsAoRDyI.png?scale-down-to=512 512w,https://framerusercontent.com/images/YslIVIFXnKfQiDonnsAoRDyI.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/rU5uRdwaDFbShiJqyozLwitQMxo.png\",srcSet:\"https://framerusercontent.com/images/rU5uRdwaDFbShiJqyozLwitQMxo.png?scale-down-to=512 512w,https://framerusercontent.com/images/rU5uRdwaDFbShiJqyozLwitQMxo.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ozymlo\",layoutDependency:layoutDependency,layoutId:\"GvhJIE2z8\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-qo98pg\",layoutDependency:layoutDependency,layoutId:\"H14ev5U8w\",style:{backgroundColor:\"var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, rgb(4, 7, 13))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:840,pixelWidth:1200,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"},className:\"framer-ytok42\",layoutDependency:layoutDependency,layoutId:\"Dbr3T9AUx\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({j8gm0xwGN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||858)-80-706)/2+46+20)+0+0+0+20+0),pixelHeight:840,pixelWidth:1200,sizes:`calc(min(max((max(${componentViewport?.width||\"100vw\"} - 80px, 1px) - 60px) / 4, 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"}},W7Ee8v4yg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||3106)-0-2818)/2+178+20)+0+0+0+20+0),pixelHeight:840,pixelWidth:1200,sizes:`calc(min(max(max(${componentViewport?.width||\"100vw\"}, 1px), 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jry5h3\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"CCrC9S1ee\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255)))\"},children:\"293% higher monthly revenue\"})}),className:\"framer-lrim4e\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"EhXAZsqt4\",style:{\"--extracted-a0htzi\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-c9b34o\",layoutDependency:layoutDependency,layoutId:\"YxwzGhuVC\",style:{backgroundColor:\"var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, rgb(4, 7, 13))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13z0uiw\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"BNhP8Jj0c\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:840,pixelWidth:1200,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"},className:\"framer-678tow\",layoutDependency:layoutDependency,layoutId:\"KsCvKFE00\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({j8gm0xwGN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||858)-80-706)/2+46+20)+0+0+0+20+0+0+0),pixelHeight:840,pixelWidth:1200,sizes:`calc(min(max((max(${componentViewport?.width||\"100vw\"} - 80px, 1px) - 60px) / 4, 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"}},W7Ee8v4yg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||3106)-0-2818)/2+178+20)+0+0+330+20+0+0+0),pixelHeight:840,pixelWidth:1200,sizes:`calc(min(max(max(${componentViewport?.width||\"100vw\"}, 1px), 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zw8jsd\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"yPipvMq0E\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255)))\"},children:\"293% higher monthly revenue\"})}),className:\"framer-57v9j3\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"nsXJndoop\",style:{\"--extracted-a0htzi\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1dpj30m\",layoutDependency:layoutDependency,layoutId:\"Wc4yImvUo\",style:{backgroundColor:\"var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, rgb(4, 7, 13))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mtktkj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"wcVokzJQN\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:840,pixelWidth:1200,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"},className:\"framer-itd6oo\",layoutDependency:layoutDependency,layoutId:\"oaN7n1lo_\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({j8gm0xwGN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||858)-80-706)/2+46+20)+0+0+0+20+0+0+0),pixelHeight:840,pixelWidth:1200,sizes:`calc(min(max((max(${componentViewport?.width||\"100vw\"} - 80px, 1px) - 60px) / 4, 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"}},W7Ee8v4yg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||3106)-0-2818)/2+178+20)+0+0+660+20+0+0+0),pixelHeight:840,pixelWidth:1200,sizes:`calc(min(max(max(${componentViewport?.width||\"100vw\"}, 1px), 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1slxapt\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"iGatevwcf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255)))\"},children:\"293% higher monthly revenue\"})}),className:\"framer-3hdovm\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"FCYRFKTNi\",style:{\"--extracted-a0htzi\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1rq0n8p\",layoutDependency:layoutDependency,layoutId:\"XHL6ZGOrX\",style:{backgroundColor:\"var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, rgb(4, 7, 13))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qdznhg\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"yROYqKBty\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:840,pixelWidth:1200,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"},className:\"framer-17s8bww\",layoutDependency:layoutDependency,layoutId:\"slW3IgBe7\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({j8gm0xwGN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||858)-80-706)/2+46+20)+0+0+0+20+0+0+0),pixelHeight:840,pixelWidth:1200,sizes:`calc(min(max((max(${componentViewport?.width||\"100vw\"} - 80px, 1px) - 60px) / 4, 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"}},W7Ee8v4yg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||3106)-0-2818)/2+178+20)+0+0+990+20+0+0+0),pixelHeight:840,pixelWidth:1200,sizes:`calc(min(max(max(${componentViewport?.width||\"100vw\"}, 1px), 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uqqknp\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"VbdOKQRfr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255)))\"},children:\"293% higher monthly revenue\"})}),className:\"framer-1kox176\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"miO1nDdUZ\",style:{\"--extracted-a0htzi\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-zrxvu4\",layoutDependency:layoutDependency,layoutId:\"MAetOh4vN\",style:{backgroundColor:\"var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, rgb(4, 7, 13))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j5evwk\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"EHipU6oGe\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:840,pixelWidth:1200,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"},className:\"framer-1v6dl06\",layoutDependency:layoutDependency,layoutId:\"PGrUQ_gMV\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({j8gm0xwGN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||858)-80-706)/2+46+20)+0+0+330+20+0+0+0),pixelHeight:840,pixelWidth:1200,sizes:`calc(min(max((max(${componentViewport?.width||\"100vw\"} - 80px, 1px) - 60px) / 4, 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"}},qr8bdPHap:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||1548)-80-1396)/2+46+20)+0+0+0+20+0+0+0),pixelHeight:2100,pixelWidth:970,sizes:`calc(min(max((max(${componentViewport?.width||\"100vw\"} - 80px, 1px) - 60px) / 4, 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/IOlwKXlnUhWgVjUfWv8QvJAvEws.png\",srcSet:\"https://framerusercontent.com/images/IOlwKXlnUhWgVjUfWv8QvJAvEws.png?scale-down-to=2048 945w,https://framerusercontent.com/images/IOlwKXlnUhWgVjUfWv8QvJAvEws.png 970w\"}},SHf63oS7s:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||3022)-0-2878)/2+178+20)+0+0+0+20+0+0+0),pixelHeight:2100,pixelWidth:970,sizes:`calc(min(max(max(${componentViewport?.width||\"100vw\"}, 1px), 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/IOlwKXlnUhWgVjUfWv8QvJAvEws.png\",srcSet:\"https://framerusercontent.com/images/IOlwKXlnUhWgVjUfWv8QvJAvEws.png?scale-down-to=2048 945w,https://framerusercontent.com/images/IOlwKXlnUhWgVjUfWv8QvJAvEws.png 970w\"}},W7Ee8v4yg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||3106)-0-2818)/2+178+20)+0+0+1320+20+0+0+0),pixelHeight:840,pixelWidth:1200,sizes:`calc(min(max(max(${componentViewport?.width||\"100vw\"}, 1px), 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kbw441\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"kdrqdHKWW\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255)))\"},children:\"293% higher monthly revenue\"})}),className:\"framer-j9kgxo\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"AQD2iXVIT\",style:{\"--extracted-a0htzi\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-afn4ct\",layoutDependency:layoutDependency,layoutId:\"TrZn5VhSx\",style:{backgroundColor:\"var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, rgb(4, 7, 13))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-n1m96t\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"v76p80a3k\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:840,pixelWidth:1200,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"},className:\"framer-pl6xqx\",layoutDependency:layoutDependency,layoutId:\"w71M6L79k\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({j8gm0xwGN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||858)-80-706)/2+46+20)+0+0+330+20+0+0+0),pixelHeight:840,pixelWidth:1200,sizes:`calc(min(max((max(${componentViewport?.width||\"100vw\"} - 80px, 1px) - 60px) / 4, 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"}},qr8bdPHap:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||1548)-80-1396)/2+46+20)+0+0+0+20+0+0+0),pixelHeight:2100,pixelWidth:978,sizes:`calc(min(max((max(${componentViewport?.width||\"100vw\"} - 80px, 1px) - 60px) / 4, 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/FditYkwIiFXtUcVQMs2anmWoZuw.png\",srcSet:\"https://framerusercontent.com/images/FditYkwIiFXtUcVQMs2anmWoZuw.png?scale-down-to=2048 953w,https://framerusercontent.com/images/FditYkwIiFXtUcVQMs2anmWoZuw.png 978w\"}},SHf63oS7s:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||3022)-0-2878)/2+178+20)+0+0+675+20+0+0+0),pixelHeight:2100,pixelWidth:978,sizes:`calc(min(max(max(${componentViewport?.width||\"100vw\"}, 1px), 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/FditYkwIiFXtUcVQMs2anmWoZuw.png\",srcSet:\"https://framerusercontent.com/images/FditYkwIiFXtUcVQMs2anmWoZuw.png?scale-down-to=2048 953w,https://framerusercontent.com/images/FditYkwIiFXtUcVQMs2anmWoZuw.png 978w\"}},W7Ee8v4yg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||3106)-0-2818)/2+178+20)+0+0+1650+20+0+0+0),pixelHeight:840,pixelWidth:1200,sizes:`calc(min(max(max(${componentViewport?.width||\"100vw\"}, 1px), 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eizkpq\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"ubQUurMHB\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255)))\"},children:\"293% higher monthly revenue\"})}),className:\"framer-gkjziv\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"L71NLAe80\",style:{\"--extracted-a0htzi\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-oesfds\",layoutDependency:layoutDependency,layoutId:\"cSR3nP9mV\",style:{backgroundColor:\"var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, rgb(4, 7, 13))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cev1pw\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"UG6xvIgYY\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:840,pixelWidth:1200,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"},className:\"framer-uw9kr3\",layoutDependency:layoutDependency,layoutId:\"EgvbvvzPI\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({j8gm0xwGN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||858)-80-706)/2+46+20)+0+0+330+20+0+0+0),pixelHeight:840,pixelWidth:1200,sizes:`calc(min(max((max(${componentViewport?.width||\"100vw\"} - 80px, 1px) - 60px) / 4, 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"}},qr8bdPHap:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||1548)-80-1396)/2+46+20)+0+0+0+20+0+0+0),pixelHeight:2100,pixelWidth:970,sizes:`calc(min(max((max(${componentViewport?.width||\"100vw\"} - 80px, 1px) - 60px) / 4, 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/RWD7n04LkwVlm53CRwKvoPQtVQI.png\",srcSet:\"https://framerusercontent.com/images/RWD7n04LkwVlm53CRwKvoPQtVQI.png?scale-down-to=2048 945w,https://framerusercontent.com/images/RWD7n04LkwVlm53CRwKvoPQtVQI.png 970w\"}},SHf63oS7s:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||3022)-0-2878)/2+178+20)+0+0+1350+20+0+0+0),pixelHeight:2100,pixelWidth:970,sizes:`calc(min(max(max(${componentViewport?.width||\"100vw\"}, 1px), 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/RWD7n04LkwVlm53CRwKvoPQtVQI.png\",srcSet:\"https://framerusercontent.com/images/RWD7n04LkwVlm53CRwKvoPQtVQI.png?scale-down-to=2048 945w,https://framerusercontent.com/images/RWD7n04LkwVlm53CRwKvoPQtVQI.png 970w\"}},W7Ee8v4yg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||3106)-0-2818)/2+178+20)+0+0+1980+20+0+0+0),pixelHeight:840,pixelWidth:1200,sizes:`calc(min(max(max(${componentViewport?.width||\"100vw\"}, 1px), 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uwiz28\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"zYGONaHcc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255)))\"},children:\"293% higher monthly revenue\"})}),className:\"framer-x3tj92\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"lcDEIQgXp\",style:{\"--extracted-a0htzi\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1wjsogc\",layoutDependency:layoutDependency,layoutId:\"s25gG2zwR\",style:{backgroundColor:\"var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, rgb(4, 7, 13))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o369fp\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"d6uxl5EkS\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:840,pixelWidth:1200,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"},className:\"framer-1y7hhwt\",layoutDependency:layoutDependency,layoutId:\"iNZghDu6O\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({j8gm0xwGN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||858)-80-706)/2+46+20)+0+0+330+20+0+0+0),pixelHeight:840,pixelWidth:1200,sizes:`calc(min(max((max(${componentViewport?.width||\"100vw\"} - 80px, 1px) - 60px) / 4, 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"}},qr8bdPHap:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||1548)-80-1396)/2+46+20)+0+0+0+20+0+0+0),pixelHeight:2400,pixelWidth:971,sizes:`calc(min(max((max(${componentViewport?.width||\"100vw\"} - 80px, 1px) - 60px) / 4, 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/5yBJTK2cdcm1AEpWvLBdMN4LLxU.png\",srcSet:\"https://framerusercontent.com/images/5yBJTK2cdcm1AEpWvLBdMN4LLxU.png?scale-down-to=2048 828w,https://framerusercontent.com/images/5yBJTK2cdcm1AEpWvLBdMN4LLxU.png 971w\"}},SHf63oS7s:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||3022)-0-2878)/2+178+20)+0+0+2025+20+0+0+0),pixelHeight:2400,pixelWidth:971,sizes:`calc(min(max(max(${componentViewport?.width||\"100vw\"}, 1px), 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/5yBJTK2cdcm1AEpWvLBdMN4LLxU.png\",srcSet:\"https://framerusercontent.com/images/5yBJTK2cdcm1AEpWvLBdMN4LLxU.png?scale-down-to=2048 828w,https://framerusercontent.com/images/5yBJTK2cdcm1AEpWvLBdMN4LLxU.png 971w\"}},W7Ee8v4yg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||3106)-0-2818)/2+178+20)+0+0+2310+20+0+0+0),pixelHeight:840,pixelWidth:1200,sizes:`calc(min(max(max(${componentViewport?.width||\"100vw\"}, 1px), 50px), 1249px) - 40px)`,src:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png\",srcSet:\"https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gIrM1HlOnGG8ZVvl7f4A5vRNYo.png 1200w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oe6m3f\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"pKoqhPdNw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255)))\"},children:\"293% higher monthly revenue\"})}),className:\"framer-rmg5vk\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"kVutbiXzq\",style:{\"--extracted-a0htzi\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7kGfB.framer-114oxrn, .framer-7kGfB .framer-114oxrn { display: block; }\",\".framer-7kGfB.framer-111d0ip { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1300px; }\",\".framer-7kGfB .framer-12torw1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7kGfB .framer-1sn2pfk-container, .framer-7kGfB .framer-3hjpgb-container, .framer-7kGfB .framer-19z4620-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-7kGfB .framer-cj2j59 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7kGfB .framer-d20ait { display: grid; flex: 1 0 0px; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 10px 20px 10px 0px; position: relative; width: 1px; }\",\".framer-7kGfB .framer-9oykyb-container, .framer-7kGfB .framer-1hwnfei-container, .framer-7kGfB .framer-12vcfqd-container, .framer-7kGfB .framer-1t5z624-container, .framer-7kGfB .framer-144sqxf-container, .framer-7kGfB .framer-v7wrfq-container, .framer-7kGfB .framer-12pogq0-container, .framer-7kGfB .framer-kkvaro-container, .framer-7kGfB .framer-1oh6oio-container, .framer-7kGfB .framer-1e0jr0f-container, .framer-7kGfB .framer-1l6xojr-container, .framer-7kGfB .framer-1rsthih-container { align-self: start; aspect-ratio: 1.0075949367088608 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 279px); justify-self: start; position: relative; width: 100%; }\",\".framer-7kGfB .framer-1n02g8t-container, .framer-7kGfB .framer-cwdj84-container, .framer-7kGfB .framer-x6nb67-container, .framer-7kGfB .framer-1uxzcfo-container { align-self: start; aspect-ratio: 1.0075949367088608 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 278px); justify-self: start; position: relative; width: 100%; }\",\".framer-7kGfB .framer-ozymlo { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7kGfB .framer-qo98pg, .framer-7kGfB .framer-c9b34o, .framer-7kGfB .framer-1dpj30m, .framer-7kGfB .framer-1rq0n8p, .framer-7kGfB .framer-zrxvu4, .framer-7kGfB .framer-afn4ct, .framer-7kGfB .framer-oesfds, .framer-7kGfB .framer-1wjsogc { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; justify-self: start; max-width: 1249px; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7kGfB .framer-ytok42, .framer-7kGfB .framer-678tow, .framer-7kGfB .framer-itd6oo, .framer-7kGfB .framer-17s8bww, .framer-7kGfB .framer-1v6dl06, .framer-7kGfB .framer-pl6xqx, .framer-7kGfB .framer-uw9kr3, .framer-7kGfB .framer-1y7hhwt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: 194px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7kGfB .framer-jry5h3, .framer-7kGfB .framer-zw8jsd, .framer-7kGfB .framer-1slxapt, .framer-7kGfB .framer-uqqknp, .framer-7kGfB .framer-1kbw441, .framer-7kGfB .framer-1eizkpq, .framer-7kGfB .framer-uwiz28, .framer-7kGfB .framer-1oe6m3f { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7kGfB .framer-lrim4e, .framer-7kGfB .framer-57v9j3, .framer-7kGfB .framer-3hdovm, .framer-7kGfB .framer-1kox176, .framer-7kGfB .framer-j9kgxo, .framer-7kGfB .framer-gkjziv, .framer-7kGfB .framer-x3tj92, .framer-7kGfB .framer-rmg5vk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7kGfB .framer-13z0uiw, .framer-7kGfB .framer-mtktkj, .framer-7kGfB .framer-qdznhg, .framer-7kGfB .framer-1j5evwk, .framer-7kGfB .framer-n1m96t, .framer-7kGfB .framer-1cev1pw, .framer-7kGfB .framer-1o369fp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7kGfB.framer-v-146ygwb .framer-1v6dl06, .framer-7kGfB.framer-v-146ygwb .framer-pl6xqx, .framer-7kGfB.framer-v-146ygwb .framer-uw9kr3, .framer-7kGfB.framer-v-146ygwb .framer-1y7hhwt, .framer-7kGfB.framer-v-1qpbnvc .framer-1v6dl06, .framer-7kGfB.framer-v-1qpbnvc .framer-pl6xqx, .framer-7kGfB.framer-v-1qpbnvc .framer-uw9kr3, .framer-7kGfB.framer-v-1qpbnvc .framer-1y7hhwt { height: 539px; }\",\".framer-7kGfB.framer-v-1ui5k8g.framer-111d0ip, .framer-7kGfB.framer-v-14gb6de.framer-111d0ip, .framer-7kGfB.framer-v-1qpbnvc.framer-111d0ip { padding: 0px; width: 390px; }\",\".framer-7kGfB.framer-v-1ui5k8g .framer-12torw1, .framer-7kGfB.framer-v-14gb6de .framer-12torw1, .framer-7kGfB.framer-v-1qpbnvc .framer-12torw1 { flex-direction: column; gap: 20px; }\",\".framer-7kGfB.framer-v-1ui5k8g .framer-1sn2pfk-container, .framer-7kGfB.framer-v-1ui5k8g .framer-3hjpgb-container, .framer-7kGfB.framer-v-1ui5k8g .framer-19z4620-container, .framer-7kGfB.framer-v-14gb6de .framer-1sn2pfk-container, .framer-7kGfB.framer-v-14gb6de .framer-3hjpgb-container, .framer-7kGfB.framer-v-14gb6de .framer-19z4620-container, .framer-7kGfB.framer-v-1qpbnvc .framer-1sn2pfk-container, .framer-7kGfB.framer-v-1qpbnvc .framer-3hjpgb-container, .framer-7kGfB.framer-v-1qpbnvc .framer-19z4620-container { width: 100%; }\",\".framer-7kGfB.framer-v-1ui5k8g .framer-d20ait { grid-template-columns: repeat(1, minmax(50px, 1fr)); padding: 0px; }\",\".framer-7kGfB.framer-v-1ui5k8g .framer-9oykyb-container, .framer-7kGfB.framer-v-1ui5k8g .framer-12vcfqd-container, .framer-7kGfB.framer-v-1ui5k8g .framer-1n02g8t-container, .framer-7kGfB.framer-v-1ui5k8g .framer-cwdj84-container, .framer-7kGfB.framer-v-1ui5k8g .framer-1uxzcfo-container, .framer-7kGfB.framer-v-1ui5k8g .framer-144sqxf-container, .framer-7kGfB.framer-v-1ui5k8g .framer-12pogq0-container, .framer-7kGfB.framer-v-1ui5k8g .framer-1oh6oio-container, .framer-7kGfB.framer-v-1ui5k8g .framer-1e0jr0f-container, .framer-7kGfB.framer-v-1ui5k8g .framer-1rsthih-container { height: var(--framer-aspect-ratio-supported, 390px); }\",\".framer-7kGfB.framer-v-1ui5k8g .framer-1hwnfei-container, .framer-7kGfB.framer-v-1ui5k8g .framer-1t5z624-container, .framer-7kGfB.framer-v-1ui5k8g .framer-x6nb67-container, .framer-7kGfB.framer-v-1ui5k8g .framer-v7wrfq-container, .framer-7kGfB.framer-v-1ui5k8g .framer-kkvaro-container, .framer-7kGfB.framer-v-1ui5k8g .framer-1l6xojr-container { height: var(--framer-aspect-ratio-supported, 391px); }\",\".framer-7kGfB.framer-v-14gb6de .framer-ozymlo, .framer-7kGfB.framer-v-1qpbnvc .framer-ozymlo { grid-template-columns: repeat(1, minmax(50px, 1fr)); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1371\n * @framerIntrinsicWidth 1300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"j8gm0xwGN\":{\"layout\":[\"fixed\",\"auto\"]},\"qr8bdPHap\":{\"layout\":[\"fixed\",\"auto\"]},\"HINCsxHT3\":{\"layout\":[\"fixed\",\"auto\"]},\"W7Ee8v4yg\":{\"layout\":[\"fixed\",\"auto\"]},\"SHf63oS7s\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerokWhwsiak=withCSS(Component,css,\"framer-7kGfB\");export default FramerokWhwsiak;FramerokWhwsiak.displayName=\"Before after\";FramerokWhwsiak.defaultProps={height:1371,width:1300};addPropertyControls(FramerokWhwsiak,{variant:{options:[\"aG_3htl7U\",\"j8gm0xwGN\",\"qr8bdPHap\",\"HINCsxHT3\",\"W7Ee8v4yg\",\"SHf63oS7s\"],optionTitles:[\"XL\",\"Variant 2\",\"Variant 3\",\"Mobile\",\"Variant 5\",\"Variant 6\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerokWhwsiak,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...ButtonPrimaryButtonFonts,...BeforeAfterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerokWhwsiak\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"1371\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1300\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j8gm0xwGN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qr8bdPHap\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HINCsxHT3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W7Ee8v4yg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SHf63oS7s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./okWhwsiak.map", "// Generated by Framer (1bcc82d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/9IiNyvbqjmpGpfJA91Dr/ApEnHMeijxKHeBfOkZnA/QhK6qqT5U.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/i1EQ95JZUUYNISev75nO/osFr1DXwLG6XmoLC5l9j/VnmEZ_3BZ.js\";const YouTubeFonts=getFonts(YouTube);const ImageWithFX=withFX(Image);const cycleOrder=[\"jN7B5s35q\",\"TqkC4IMVi\",\"YD1D8FiPK\"];const serializationHash=\"framer-SjgDz\";const variantClassNames={jN7B5s35q:\"framer-v-119s0c5\",TqkC4IMVi:\"framer-v-10zkmid\",YD1D8FiPK:\"framer-v-jtuvh4\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-50,y:0};const transition2={damping:60,delay:.8,mass:1,stiffness:400,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={Mobile:\"YD1D8FiPK\",PC:\"TqkC4IMVi\",Tag:\"jN7B5s35q\"};const getProps=({height,id,logoImage,subTitle,title,video,width,...props})=>{return{...props,lPPOOL5ct:video??props.lPPOOL5ct??\"https://youtu.be/smPos0mJvh8\",ryerV11KR:logoImage??props.ryerV11KR??{pixelHeight:90,pixelWidth:494,src:\"https://framerusercontent.com/images/tjDnTDBYT5ru6pKEL1rouq18fQ4.svg\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"jN7B5s35q\",w9GS3W6Sr:subTitle??props.w9GS3W6Sr??\"Amanda , Director Remodeez\",z27LqGa7Y:title??props.z27LqGa7Y??\"B\"};};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,ryerV11KR,z27LqGa7Y,w9GS3W6Sr,lPPOOL5ct,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jN7B5s35q\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"TqkC4IMVi\",\"YD1D8FiPK\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"TqkC4IMVi\",\"YD1D8FiPK\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-119s0c5\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Tag\",layoutDependency:layoutDependency,layoutId:\"jN7B5s35q\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-082d630a-c036-4f77-8c8d-5d7b4650e064, rgba(255, 255, 255, 0.08))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(2px)\",backgroundColor:\"var(--token-74f48371-76c0-476a-a319-1331b3a438c2, rgb(8, 8, 8))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,WebkitBackdropFilter:\"blur(2px)\",...style},...addPropertyOverrides({TqkC4IMVi:{\"data-framer-name\":\"PC\"},YD1D8FiPK:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yvtmz2\",\"data-border\":true,\"data-framer-name\":\"Border\",layoutDependency:layoutDependency,layoutId:\"WDbKUe3lJ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-082d630a-c036-4f77-8c8d-5d7b4650e064, rgba(255, 255, 255, 0.08))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},variants:{TqkC4IMVi:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},YD1D8FiPK:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11lvim3\",\"data-framer-name\":\"BG Image\",layoutDependency:layoutDependency,layoutId:\"zH1Z71V2d\",style:{borderBottomLeftRadius:19,borderBottomRightRadius:19,borderTopLeftRadius:19,borderTopRightRadius:19},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10jpc7o-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"eFoa079HF-container\",nodeId:\"eFoa079HF\",rendersWithMotion:true,scopeId:\"Uqb4T5RRv\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,height:\"100%\",id:\"eFoa079HF\",isMixedBorderRadius:false,isRed:true,layoutId:\"eFoa079HF\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:14,topRightRadius:14,url:lPPOOL5ct,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-838s1d\",\"data-border\":true,\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"YBxijoouB\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-30ee69d1-cae6-4a5c-9af2-db5c94a12e77, rgba(255, 255, 255, 0.05))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-74f48371-76c0-476a-a319-1331b3a438c2, rgb(8, 8, 8))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wdaarh\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"WO5EwI3Om\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(10+((componentViewport?.height||521)-20-613.5)/2)+1+0+10+280+26+0+0+0),pixelHeight:24,pixelWidth:61,sizes:\"100px\",...toResponsiveImage(ryerV11KR),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1cwauta\",\"data-framer-name\":\"Logo Image\",layoutDependency:layoutDependency,layoutId:\"p1KDbWgJw\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dqyjz6\",\"data-framer-name\":\"Stars\",fill:'var(--token-de44fed5-3dd9-4780-961e-245e765ce621, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',intrinsicHeight:21,intrinsicWidth:108,layoutDependency:layoutDependency,layoutId:\"AwhACIFem\",svg:'<svg width=\"108\" height=\"21\" viewBox=\"0 0 108 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.6326 1.62969L12.7357 6.42656C12.8148 6.60706 12.941 6.76302 13.1009 6.87817C13.2609 6.99333 13.4488 7.06346 13.6451 7.08125L18.7685 7.54063C19.3482 7.625 19.5794 8.33594 19.1591 8.74531L15.2997 11.9875C14.9872 12.25 14.8451 12.6625 14.931 13.0609L16.0529 18.3125C16.1513 18.8891 15.5466 19.3297 15.0279 19.0563L10.556 16.4375C10.3874 16.3385 10.1953 16.2862 9.99975 16.2862C9.80417 16.2862 9.61214 16.3385 9.4435 16.4375L4.97162 19.0547C4.45444 19.3266 3.84819 18.8875 3.94662 18.3109L5.0685 13.0594C5.15287 12.6609 5.01225 12.2484 4.69975 11.9859L0.83881 8.74688C0.42006 8.33906 0.65131 7.62656 1.22944 7.54219L6.35287 7.08281C6.54916 7.06502 6.73707 6.99489 6.89702 6.87973C7.05697 6.76458 7.1831 6.60862 7.26225 6.42813L9.36537 1.63125C9.62631 1.10625 10.3732 1.10625 10.6326 1.62969Z\" fill=\"#FF801E\"/>\\n<path d=\"M10.4792 6.71328L10.1229 3.17891C10.1089 2.98203 10.0683 2.64453 10.3839 2.64453C10.6339 2.64453 10.7698 3.16484 10.7698 3.16484L11.8386 6.00234C12.2417 7.08203 12.0761 7.45234 11.687 7.67109C11.2401 7.92109 10.5808 7.72578 10.4792 6.71328Z\" fill=\"#FF801E\"/>\\n<path d=\"M14.8875 11.6735L17.9531 9.2813C18.1047 9.15474 18.3781 8.95317 18.1594 8.72349C17.986 8.54224 17.5172 8.80317 17.5172 8.80317L14.8344 9.85161C14.0344 10.1282 13.5031 10.5375 13.4563 11.0532C13.3953 11.7407 14.0125 12.2704 14.8875 11.6735Z\" fill=\"#FF801E\"/>\\n<path d=\"M32.6326 1.62969L34.7357 6.42656C34.8148 6.60706 34.941 6.76302 35.1009 6.87817C35.2609 6.99333 35.4488 7.06346 35.6451 7.08125L40.7685 7.54063C41.3482 7.625 41.5794 8.33594 41.1591 8.74531L37.2997 11.9875C36.9872 12.25 36.8451 12.6625 36.931 13.0609L38.0529 18.3125C38.1513 18.8891 37.5466 19.3297 37.0279 19.0563L32.556 16.4375C32.3874 16.3385 32.1953 16.2862 31.9997 16.2862C31.8042 16.2862 31.6121 16.3385 31.4435 16.4375L26.9716 19.0547C26.4544 19.3266 25.8482 18.8875 25.9466 18.3109L27.0685 13.0594C27.1529 12.6609 27.0122 12.2484 26.6997 11.9859L22.8388 8.74688C22.4201 8.33906 22.6513 7.62656 23.2294 7.54219L28.3529 7.08281C28.5492 7.06502 28.7371 6.99489 28.897 6.87973C29.057 6.76458 29.1831 6.60862 29.2622 6.42813L31.3654 1.63125C31.6263 1.10625 32.3732 1.10625 32.6326 1.62969Z\" fill=\"#FF801E\"/>\\n<path d=\"M32.4792 6.71328L32.1229 3.17891C32.1089 2.98203 32.0683 2.64453 32.3839 2.64453C32.6339 2.64453 32.7698 3.16484 32.7698 3.16484L33.8386 6.00234C34.2417 7.08203 34.0761 7.45234 33.687 7.67109C33.2401 7.92109 32.5808 7.72578 32.4792 6.71328Z\" fill=\"#FF801E\"/>\\n<path d=\"M36.8875 11.6735L39.9531 9.2813C40.1047 9.15474 40.3781 8.95317 40.1594 8.72349C39.986 8.54224 39.5172 8.80317 39.5172 8.80317L36.8344 9.85161C36.0344 10.1282 35.5031 10.5375 35.4563 11.0532C35.3953 11.7407 36.0125 12.2704 36.8875 11.6735Z\" fill=\"#FF801E\"/>\\n<path d=\"M54.6326 1.62969L56.7357 6.42656C56.8148 6.60706 56.941 6.76302 57.1009 6.87817C57.2609 6.99333 57.4488 7.06346 57.6451 7.08125L62.7685 7.54063C63.3482 7.625 63.5794 8.33594 63.1591 8.74531L59.2997 11.9875C58.9872 12.25 58.8451 12.6625 58.931 13.0609L60.0529 18.3125C60.1513 18.8891 59.5466 19.3297 59.0279 19.0563L54.556 16.4375C54.3874 16.3385 54.1953 16.2862 53.9997 16.2862C53.8042 16.2862 53.6121 16.3385 53.4435 16.4375L48.9716 19.0547C48.4544 19.3266 47.8482 18.8875 47.9466 18.3109L49.0685 13.0594C49.1529 12.6609 49.0122 12.2484 48.6997 11.9859L44.8388 8.74688C44.4201 8.33906 44.6513 7.62656 45.2294 7.54219L50.3529 7.08281C50.5492 7.06502 50.7371 6.99489 50.897 6.87973C51.057 6.76458 51.1831 6.60862 51.2622 6.42813L53.3654 1.63125C53.6263 1.10625 54.3732 1.10625 54.6326 1.62969Z\" fill=\"#FF801E\"/>\\n<path d=\"M54.4792 6.71328L54.1229 3.17891C54.1089 2.98203 54.0683 2.64453 54.3839 2.64453C54.6339 2.64453 54.7698 3.16484 54.7698 3.16484L55.8386 6.00234C56.2417 7.08203 56.0761 7.45234 55.687 7.67109C55.2401 7.92109 54.5808 7.72578 54.4792 6.71328Z\" fill=\"#FF801E\"/>\\n<path d=\"M58.8875 11.6735L61.9531 9.2813C62.1047 9.15474 62.3781 8.95317 62.1594 8.72349C61.986 8.54224 61.5172 8.80317 61.5172 8.80317L58.8344 9.85161C58.0344 10.1282 57.5031 10.5375 57.4563 11.0532C57.3953 11.7407 58.0125 12.2704 58.8875 11.6735Z\" fill=\"#FF801E\"/>\\n<path d=\"M76.6326 1.62969L78.7357 6.42656C78.8148 6.60706 78.941 6.76302 79.1009 6.87817C79.2609 6.99333 79.4488 7.06346 79.6451 7.08125L84.7685 7.54063C85.3482 7.625 85.5794 8.33594 85.1591 8.74531L81.2997 11.9875C80.9872 12.25 80.8451 12.6625 80.931 13.0609L82.0529 18.3125C82.1513 18.8891 81.5466 19.3297 81.0279 19.0563L76.556 16.4375C76.3874 16.3385 76.1953 16.2862 75.9997 16.2862C75.8042 16.2862 75.6121 16.3385 75.4435 16.4375L70.9716 19.0547C70.4544 19.3266 69.8482 18.8875 69.9466 18.3109L71.0685 13.0594C71.1529 12.6609 71.0122 12.2484 70.6997 11.9859L66.8388 8.74688C66.4201 8.33906 66.6513 7.62656 67.2294 7.54219L72.3529 7.08281C72.5492 7.06502 72.7371 6.99489 72.897 6.87973C73.057 6.76458 73.1831 6.60862 73.2622 6.42813L75.3654 1.63125C75.6263 1.10625 76.3732 1.10625 76.6326 1.62969Z\" fill=\"#FF801E\"/>\\n<path d=\"M76.4792 6.71328L76.1229 3.17891C76.1089 2.98203 76.0683 2.64453 76.3839 2.64453C76.6339 2.64453 76.7698 3.16484 76.7698 3.16484L77.8386 6.00234C78.2417 7.08203 78.0761 7.45234 77.687 7.67109C77.2401 7.92109 76.5808 7.72578 76.4792 6.71328Z\" fill=\"#FF801E\"/>\\n<path d=\"M80.8875 11.6735L83.9531 9.2813C84.1047 9.15474 84.3781 8.95317 84.1594 8.72349C83.986 8.54224 83.5172 8.80317 83.5172 8.80317L80.8344 9.85161C80.0344 10.1282 79.5031 10.5375 79.4563 11.0532C79.3953 11.7407 80.0125 12.2704 80.8875 11.6735Z\" fill=\"#FF801E\"/>\\n<path d=\"M98.6326 1.62969L100.736 6.42656C100.815 6.60706 100.941 6.76302 101.101 6.87817C101.261 6.99333 101.449 7.06346 101.645 7.08125L106.768 7.54063C107.348 7.625 107.579 8.33594 107.159 8.74531L103.3 11.9875C102.987 12.25 102.845 12.6625 102.931 13.0609L104.053 18.3125C104.151 18.8891 103.547 19.3297 103.028 19.0563L98.556 16.4375C98.3874 16.3385 98.1953 16.2862 97.9997 16.2862C97.8042 16.2862 97.6121 16.3385 97.4435 16.4375L92.9716 19.0547C92.4544 19.3266 91.8482 18.8875 91.9466 18.3109L93.0685 13.0594C93.1529 12.6609 93.0122 12.2484 92.6997 11.9859L88.8388 8.74688C88.4201 8.33906 88.6513 7.62656 89.2294 7.54219L94.3529 7.08281C94.5492 7.06502 94.7371 6.99489 94.897 6.87973C95.057 6.76458 95.1831 6.60862 95.2622 6.42813L97.3654 1.63125C97.6263 1.10625 98.3732 1.10625 98.6326 1.62969Z\" fill=\"#FF801E\"/>\\n<path d=\"M98.4792 6.71328L98.1229 3.17891C98.1089 2.98203 98.0683 2.64453 98.3839 2.64453C98.6339 2.64453 98.7698 3.16484 98.7698 3.16484L99.8386 6.00234C100.242 7.08203 100.076 7.45234 99.687 7.67109C99.2401 7.92109 98.5808 7.72578 98.4792 6.71328Z\" fill=\"#FF801E\"/>\\n<path d=\"M102.888 11.6735L105.953 9.2813C106.105 9.15474 106.378 8.95317 106.159 8.72349C105.986 8.54224 105.517 8.80317 105.517 8.80317L102.834 9.85161C102.034 10.1282 101.503 10.5375 101.456 11.0532C101.395 11.7407 102.013 12.2704 102.888 11.6735Z\" fill=\"#FF801E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"Building Framer Templates\"})}),className:\"framer-1l6t83m\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Xw5dRTa2Y\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:z27LqGa7Y,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rgwu9s\",\"data-framer-name\":\"Seperator\",layoutDependency:layoutDependency,layoutId:\"f_ncoXkr3\",style:{background:\"linear-gradient(90.00000000000075deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10py8a1\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"trBzenEn8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d2ee1de5-88f8-41d7-8642-338767096a94, rgba(255, 255, 255, 0.5)))\"},children:\"Designers can take control of HTML, CSS, and JavaScript.\"})}),className:\"framer-1cz9yby\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xQLNP1bRu\",style:{\"--extracted-r6o4lv\":\"var(--token-d2ee1de5-88f8-41d7-8642-338767096a94, rgba(255, 255, 255, 0.5))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rdslew\",layoutDependency:layoutDependency,layoutId:\"kL93upeRD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",style:{\"--framer-text-alignment\":\"center\"},children:\"I Wish I had a Brain like yours!\"})}),className:\"framer-1vtj2yc\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x__CnGiDB\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:z27LqGa7Y,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.666666666666664,intrinsicWidth:176,pixelHeight:49,pixelWidth:264,src:\"https://framerusercontent.com/images/QYIjhfMniXoGKTkOXbjTe8w8.png\"},className:\"framer-b797ng\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"PEKB5f_KR\",...addPropertyOverrides({TqkC4IMVi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.666666666666664,intrinsicWidth:176,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(10+((componentViewport?.height||302)-20-272)/2)+1+42.5+0+38),pixelHeight:49,pixelWidth:264,src:\"https://framerusercontent.com/images/QYIjhfMniXoGKTkOXbjTe8w8.png\"}},YD1D8FiPK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.666666666666664,intrinsicWidth:176,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+(((componentViewport?.height||456)-20-496)/2+0+0)+1+0+299+0+38),pixelHeight:49,pixelWidth:264,src:\"https://framerusercontent.com/images/QYIjhfMniXoGKTkOXbjTe8w8.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Amanda , Director Remodeez\"})}),className:\"framer-21rr66\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SICui5ijT\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:w9GS3W6Sr,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:476,pixelHeight:720,pixelWidth:1280,...toResponsiveImage(ryerV11KR)},className:\"framer-1mzh4ue\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"mxphpBsgQ\",style:{transformPerspective:1200},variants:{TqkC4IMVi:{transformPerspective:undefined},YD1D8FiPK:{transformPerspective:undefined}},...addPropertyOverrides({TqkC4IMVi:{__framer__styleAppearEffectEnabled:undefined,background:{alt:\"\",fit:\"fit\",intrinsicHeight:128,intrinsicWidth:476,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(10+((componentViewport?.height||302)-20-272)/2)+1+42.5+0+121),pixelHeight:720,pixelWidth:1280,sizes:\"203.4px\",...toResponsiveImage(ryerV11KR),...{positionX:\"center\",positionY:\"center\"}}},YD1D8FiPK:{__framer__styleAppearEffectEnabled:undefined,background:{alt:\"\",fit:\"fit\",intrinsicHeight:128,intrinsicWidth:476,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+(((componentViewport?.height||456)-20-496)/2+0+0)+1+0+299+0+121),pixelHeight:720,pixelWidth:1280,sizes:\"203.4px\",...toResponsiveImage(ryerV11KR),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SjgDz.framer-r6my50, .framer-SjgDz .framer-r6my50 { display: block; }\",\".framer-SjgDz.framer-119s0c5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 10px; position: relative; width: 460px; }\",\".framer-SjgDz .framer-1yvtmz2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 1px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SjgDz .framer-11lvim3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-SjgDz .framer-10jpc7o-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 235px); position: relative; width: 100%; }\",\".framer-SjgDz .framer-838s1d { 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: 26px 16px 16px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-SjgDz .framer-1wdaarh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 340px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SjgDz .framer-1cwauta { flex: none; height: 27px; overflow: hidden; position: relative; width: 100px; }\",\".framer-SjgDz .framer-1dqyjz6 { flex: none; height: 18px; position: relative; width: 90px; }\",\".framer-SjgDz .framer-1l6t83m { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SjgDz .framer-1rgwu9s { flex: none; height: 1px; position: relative; width: 230px; }\",\".framer-SjgDz .framer-10py8a1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SjgDz .framer-1cz9yby, .framer-SjgDz .framer-1vtj2yc, .framer-SjgDz .framer-21rr66 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-SjgDz .framer-1rdslew { 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: hidden; padding: 0px; position: relative; width: 226px; }\",\".framer-SjgDz .framer-b797ng { aspect-ratio: 5.387755102040817 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 176px; }\",\".framer-SjgDz .framer-1mzh4ue { flex: none; height: 64px; position: relative; width: 100%; }\",\".framer-SjgDz.framer-v-10zkmid.framer-119s0c5 { width: 755px; }\",\".framer-SjgDz.framer-v-10zkmid .framer-1yvtmz2 { flex-direction: row; }\",\".framer-SjgDz.framer-v-10zkmid .framer-11lvim3 { flex: 1 0 0px; flex-direction: row; padding: 0px; width: 1px; }\",\".framer-SjgDz.framer-v-10zkmid .framer-10jpc7o-container { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 280px); width: 1px; }\",\".framer-SjgDz.framer-v-10zkmid .framer-1mzh4ue, .framer-SjgDz.framer-v-jtuvh4 .framer-1mzh4ue { width: 90%; }\",\".framer-SjgDz.framer-v-jtuvh4.framer-119s0c5 { flex-direction: column; width: 350px; }\",\".framer-SjgDz.framer-v-jtuvh4 .framer-1yvtmz2 { flex: none; flex-direction: row; width: 100%; }\",\".framer-SjgDz.framer-v-jtuvh4 .framer-11lvim3 { flex: 1 0 0px; gap: 29px; justify-content: flex-start; padding: 0px 0px 10px 0px; width: 1px; }\",\".framer-SjgDz.framer-v-jtuvh4 .framer-10jpc7o-container { height: var(--framer-aspect-ratio-supported, 185px); }\",\".framer-SjgDz.framer-v-jtuvh4 .framer-b797ng { height: var(--framer-aspect-ratio-supported, 32px); }\",...sharedStyle.css,...sharedStyle1.css,'.framer-SjgDz[data-border=\"true\"]::after, .framer-SjgDz [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 521\n * @framerIntrinsicWidth 460\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TqkC4IMVi\":{\"layout\":[\"fixed\",\"auto\"]},\"YD1D8FiPK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ryerV11KR\":\"logoImage\",\"z27LqGa7Y\":\"title\",\"w9GS3W6Sr\":\"subTitle\",\"lPPOOL5ct\":\"video\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerUqb4T5RRv=withCSS(Component,css,\"framer-SjgDz\");export default FramerUqb4T5RRv;FramerUqb4T5RRv.displayName=\"Youtube Card 2\";FramerUqb4T5RRv.defaultProps={height:521,width:460};addPropertyControls(FramerUqb4T5RRv,{variant:{options:[\"jN7B5s35q\",\"TqkC4IMVi\",\"YD1D8FiPK\"],optionTitles:[\"Tag\",\"PC\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},ryerV11KR:{__defaultAssetReference:\"data:framer/asset-reference,tjDnTDBYT5ru6pKEL1rouq18fQ4.svg?originalFilename=113.svg&preferredSize=auto\",title:\"Logo Image\",type:ControlType.ResponsiveImage},z27LqGa7Y:{defaultValue:\"B\",displayTextArea:true,title:\"Title\",type:ControlType.String},w9GS3W6Sr:{defaultValue:\"Amanda , Director Remodeez\",displayTextArea:false,title:\"Sub Title\",type:ControlType.String},lPPOOL5ct:{defaultValue:\"https://youtu.be/smPos0mJvh8\",title:\"Video\",type:ControlType.String}});addFonts(FramerUqb4T5RRv,[{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\"}]},...YouTubeFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUqb4T5RRv\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"521\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"460\",\"framerVariables\":\"{\\\"ryerV11KR\\\":\\\"logoImage\\\",\\\"z27LqGa7Y\\\":\\\"title\\\",\\\"w9GS3W6Sr\\\":\\\"subTitle\\\",\\\"lPPOOL5ct\\\":\\\"video\\\"}\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TqkC4IMVi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YD1D8FiPK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Uqb4T5RRv.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,Image,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/2CANVTJcufBRva85u72G/mJbahYyfzSMUlvhmUVA5/QuTNz53Yy.js\";import ButtonContactButton from\"https://framerusercontent.com/modules/1XrZhaIWOHdJ7wi8Hkhp/K42mQyhJQlsV7uNGxWqn/ROAZLEJAK.js\";const ButtonContactButtonFonts=getFonts(ButtonContactButton);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"fFQQgeTCN\",\"VYzZCIpXK\",\"yD1iAK3eE\"];const serializationHash=\"framer-8Ppd6\";const variantClassNames={fFQQgeTCN:\"framer-v-ep5wv6\",VYzZCIpXK:\"framer-v-1t3ogw3\",yD1iAK3eE:\"framer-v-1h2zacy\"};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 animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"fFQQgeTCN\",\"Variant 3\":\"yD1iAK3eE\",Close:\"VYzZCIpXK\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"fFQQgeTCN\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fFQQgeTCN\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const ltC_t6Nme8xis0e=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"VYzZCIpXK\"),2e3);});const onTap1ce8u43=activeVariantCallback(async(...args)=>{setVariant(\"VYzZCIpXK\");});const sharedStyleClassNames=[sharedStyle.className];const isDisplayed=()=>{if(baseVariant===\"VYzZCIpXK\")return false;return true;};const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-ep5wv6\",className,classNames),\"data-border\":true,\"data-framer-appear-id\":\"ep5wv6\",\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"fFQQgeTCN\",optimized:true,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-5970a3c6-0f13-482e-8fb6-b8cb7d627b04, rgba(216, 231, 242, 0.07))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, rgb(4, 7, 13))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2)\",...style},...addPropertyOverrides({yD1iAK3eE:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:341.3333333333333,intrinsicWidth:341.3333333333333,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/IMVMF978vEEGtvwZxZC3yRO1KNI.png\"},className:\"framer-sx5cq7\",\"data-framer-name\":\"Subscribe\",layoutDependency:layoutDependency,layoutId:\"ZMFQ3tUMR\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cygrfd\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"J2l1vNokJ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-iw90x1\",\"data-framer-name\":\"Count Component\",layoutDependency:layoutDependency,layoutId:\"LdhdE0BhT\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Subscribe to our\",/*#__PURE__*/_jsx(motion.br,{}),\"Newsletter!\"]})}),className:\"framer-frd1px\",\"data-framer-name\":\"Number\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"X8C1QWT8P\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6)))\"},children:\"Be the first to get exclusive offers ands the latest news\"})}),className:\"framer-1ia4kod\",fonts:[\"GF;Outfit-500\"],layoutDependency:layoutDependency,layoutId:\"WNBtVr1Qv\",style:{\"--extracted-r6o4lv\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10qh2gz\",\"data-framer-name\":\"Light\",layoutDependency:layoutDependency,layoutId:\"tl6v1myT0\",style:{background:\"radial-gradient(50% 50% at 93.7% 8.1%, var(--token-08c4a6f9-af82-471d-b559-befcf7c9487d, rgb(254, 190, 54)) 0%, rgba(4, 7, 13, 0) 100%)\",opacity:.1}}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/980cec8b-fbed-4396-8419-163eb602e215/submit\",className:\"framer-1mz3ye9\",layoutDependency:layoutDependency,layoutId:\"QoE8MplL7\",nodeId:\"QoE8MplL7\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(motion.label,{className:\"framer-8j82r6\",\"data-framer-name\":\"Email\",layoutDependency:layoutDependency,layoutId:\"BtivFsSqz\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-9jqyon\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"dgQQs8wpR\",placeholder:\"Enter your email address\",required:true,style:{\"--framer-input-background\":\"var(--token-cd35caec-4f2a-4f7e-8c70-9992720e55b3, rgba(51, 51, 51, 0.2))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(255, 255, 255, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"5px\",\"--framer-input-border-radius-bottom-right\":\"5px\",\"--framer-input-border-radius-top-left\":\"5px\",\"--framer-input-border-radius-top-right\":\"5px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-3f9a2c63-f1d1-4706-bf6c-31956c981af9, rgb(153, 153, 153))\"},type:\"email\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kkpqj7-container\",layoutDependency:layoutDependency,layoutId:\"REzS_R4cq-container\",nodeId:\"REzS_R4cq\",rendersWithMotion:true,scopeId:\"vpXpYM35p\",children:/*#__PURE__*/_jsx(ButtonContactButton,{height:\"100%\",HMdja7XRJ:\"Subscribe Now\",id:\"REzS_R4cq\",layoutId:\"REzS_R4cq\",ltC_t6Nme:ltC_t6Nme8xis0e,style:{width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"pVumzGZCv\",success:\"QHCIz2XOl\"},\"OnYleudVI\"),width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ua6ffz\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"lYK333hSG\",onTap:onTap1ce8u43,style:{backgroundColor:\"rgba(255, 255, 255, 0.08)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1n5jrf\",layoutDependency:layoutDependency,layoutId:\"cMk9NXQVD\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\" overflow=\"visible\"><path d=\"M 12 0 L 0 12 M 0 0 L 12 12\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-eji1wd\",layoutDependency:layoutDependency,layoutId:\"NMeijH8El\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\" overflow=\"visible\"><path d=\"M 12 0 L 0 12\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wqyqej\",layoutDependency:layoutDependency,layoutId:\"ZkDHiIfeT\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\" overflow=\"visible\"><path d=\"M 0 0 L 12 12\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8Ppd6.framer-9kjhc9, .framer-8Ppd6 .framer-9kjhc9 { display: block; }\",\".framer-8Ppd6.framer-ep5wv6 { align-content: center; align-items: center; cursor: default; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8Ppd6 .framer-sx5cq7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 85px); overflow: visible; position: relative; width: 85px; }\",\".framer-8Ppd6 .framer-cygrfd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8Ppd6 .framer-iw90x1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-8Ppd6 .framer-frd1px { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8Ppd6 .framer-1ia4kod { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-8Ppd6 .framer-10qh2gz { -webkit-user-select: none; flex: none; height: 306px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; width: 437px; z-index: 1; }\",\".framer-8Ppd6 .framer-1mz3ye9 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-8Ppd6 .framer-8j82r6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-8Ppd6 .framer-9jqyon { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"DM Sans\"; --framer-input-font-letter-spacing: -0.5px; --framer-input-font-line-height: 16px; --framer-input-font-size: 14px; --framer-input-font-weight: 500; --framer-input-padding: 18px; --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }',\".framer-8Ppd6 .framer-1kkpqj7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-8Ppd6 .framer-ua6ffz { align-content: center; align-items: center; aspect-ratio: 1 / 1; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 49px; height: var(--framer-aspect-ratio-supported, 36px); justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 10px; top: 10px; width: 36px; z-index: 1; }\",\".framer-8Ppd6 .framer-1n5jrf { height: 12px; position: relative; width: 12px; }\",\".framer-8Ppd6 .framer-eji1wd, .framer-8Ppd6 .framer-1wqyqej { height: 12px; left: 0px; position: absolute; top: 0px; width: 12px; }\",\".framer-8Ppd6.framer-v-1h2zacy.framer-ep5wv6 { width: 350px; }\",\".framer-8Ppd6.framer-v-1h2zacy .framer-cygrfd, .framer-8Ppd6.framer-v-1h2zacy .framer-iw90x1 { width: 100%; }\",\".framer-8Ppd6.framer-v-1h2zacy .framer-frd1px { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-8Ppd6.framer-v-1h2zacy .framer-1ia4kod { align-self: unset; width: 100%; }\",\".framer-8Ppd6.framer-v-1h2zacy .framer-1mz3ye9 { align-self: unset; gap: 20px; width: 100%; }\",...sharedStyle.css,'.framer-8Ppd6[data-border=\"true\"]::after, .framer-8Ppd6 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 500\n * @framerIntrinsicWidth 449\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"VYzZCIpXK\":{\"layout\":[\"auto\",\"auto\"]},\"yD1iAK3eE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramervpXpYM35p=withCSS(Component,css,\"framer-8Ppd6\");export default FramervpXpYM35p;FramervpXpYM35p.displayName=\"Newsletter\";FramervpXpYM35p.defaultProps={height:500,width:449};addPropertyControls(FramervpXpYM35p,{variant:{options:[\"fFQQgeTCN\",\"VYzZCIpXK\",\"yD1iAK3eE\"],optionTitles:[\"Variant 1\",\"Close\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramervpXpYM35p,[{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:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v14/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...ButtonContactButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervpXpYM35p\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"500\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"449\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VYzZCIpXK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yD1iAK3eE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vpXpYM35p.map", "// Generated by Framer (f2c0341)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";const YouTubeFonts=getFonts(YouTube);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const serializationHash=\"framer-YKkiH\";const variantClassNames={nxKKAmxY5:\"framer-v-44d71e\"};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 animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};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,name1,review,videoLink,width,...props})=>{return{...props,acQko3Vb3:review??props.acQko3Vb3??\"Advance Amazon completely transformed my business. Their team is insanely dedicated, data-driven, and always on top of every little detail.\",T8l6ikqIq:videoLink??props.T8l6ikqIq??\"https://www.youtube.com/watch?v=iOzF043RPSk\",tdW60sEoV:name1??props.tdW60sEoV??\"Paul Mott CEO & Coyotevest\"};};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,tdW60sEoV,acQko3Vb3,T8l6ikqIq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"nxKKAmxY5\",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__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-44d71e\",className,classNames),\"data-framer-appear-id\":\"44d71e\",\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"nxKKAmxY5\",optimized:true,ref:refBinding,style:{backgroundColor:\"var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, rgb(4, 7, 13))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2)\",...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1oo5tv4-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"cpegn5WzC-container\",nodeId:\"cpegn5WzC\",rendersWithMotion:true,scopeId:\"mkuzLWTgX\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"cpegn5WzC\",isMixedBorderRadius:false,isRed:true,layoutId:\"cpegn5WzC\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:T8l6ikqIq,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-48gry5\",\"data-framer-name\":\"Section Title\",layoutDependency:layoutDependency,layoutId:\"RlgVURIEB\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t95728\",\"data-framer-name\":\"Title & Paragraph\",layoutDependency:layoutDependency,layoutId:\"nBGB5cYCr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kc6un8\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"XUxb5tNdR\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.666666666666664,intrinsicWidth:176,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+154+20+0+0+0+0),pixelHeight:49,pixelWidth:264,src:\"https://framerusercontent.com/images/QYIjhfMniXoGKTkOXbjTe8w8.png\"},className:\"framer-1u8zmc4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LnJI8bbBJ\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255)))\"},children:\"ahhh\u2026 put your feet up, the results start rolling in! monitor essential metrics like cvr, tacos, acos, and profit as we implement your strategy.\"})}),className:\"framer-1too0sj\",\"data-framer-name\":\"Start by sharing your real estate goals with us. Whether you're buying, selling, or renting, we\u2019ll gather all the necessary details to tailor our services to your needs. Simply fill out our contact form or give us a call.\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"K8KtM1YtE\",style:{\"--extracted-r6o4lv\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.8},text:acQko3Vb3,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255)))\"},children:\"Paul Mott CEO & Coyotevest\"})}),className:\"framer-coc8vk\",\"data-framer-name\":\"How to start\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"vKqKbL37B\",style:{\"--extracted-r6o4lv\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:tdW60sEoV,verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-51pitq\",\"data-framer-name\":\"Light\",layoutDependency:layoutDependency,layoutId:\"wXg_0QQTS\",style:{background:\"radial-gradient(50% 50% at 6.4% 6.1%, var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18)) 0%, rgba(4, 7, 13, 0) 100%)\",opacity:.1}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YKkiH.framer-4iuivx, .framer-YKkiH .framer-4iuivx { display: block; }\",\".framer-YKkiH.framer-44d71e { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 946px; overflow: hidden; padding: 0px; position: relative; width: 280px; will-change: var(--framer-will-change-override, transform); }\",\".framer-YKkiH .framer-1oo5tv4-container { flex: none; height: 154px; position: relative; width: 100%; }\",\".framer-YKkiH .framer-48gry5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-YKkiH .framer-t95728 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-YKkiH .framer-1kc6un8 { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-YKkiH .framer-1u8zmc4 { aspect-ratio: 5.387755102040817 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); overflow: visible; position: relative; width: 102px; }\",\".framer-YKkiH .framer-1too0sj, .framer-YKkiH .framer-coc8vk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-YKkiH .framer-51pitq { -webkit-user-select: none; flex: none; height: 306px; left: 0px; overflow: hidden; pointer-events: none; position: absolute; top: 0px; user-select: none; width: 437px; z-index: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 365\n * @framerIntrinsicWidth 280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"946px\",null,null]}}}\n * @framerVariables {\"tdW60sEoV\":\"name1\",\"acQko3Vb3\":\"review\",\"T8l6ikqIq\":\"videoLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramermkuzLWTgX=withCSS(Component,css,\"framer-YKkiH\");export default FramermkuzLWTgX;FramermkuzLWTgX.displayName=\"Hero review card\";FramermkuzLWTgX.defaultProps={height:365,width:280};addPropertyControls(FramermkuzLWTgX,{tdW60sEoV:{defaultValue:\"Paul Mott CEO & Coyotevest\",displayTextArea:false,title:\"Name\",type:ControlType.String},acQko3Vb3:{defaultValue:\"Advance Amazon completely transformed my business. Their team is insanely dedicated, data-driven, and always on top of every little detail.\",displayTextArea:false,title:\"Review\",type:ControlType.String},T8l6ikqIq:{defaultValue:\"https://www.youtube.com/watch?v=iOzF043RPSk\",title:\"Video link\",type:ControlType.String}});addFonts(FramermkuzLWTgX,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...YouTubeFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermkuzLWTgX\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"365\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"946px\\\",null,null]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"280\",\"framerVariables\":\"{\\\"tdW60sEoV\\\":\\\"name1\\\",\\\"acQko3Vb3\\\":\\\"review\\\",\\\"T8l6ikqIq\\\":\\\"videoLink\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mkuzLWTgX.map", "// Generated by Framer (f2c0341)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import HeroReviewCard from\"https://framerusercontent.com/modules/BypOyHTYWo9ow2ZPYfUM/IuBNiQRLNEm6XJl85mkf/mkuzLWTgX.js\";const HeroReviewCardFonts=getFonts(HeroReviewCard);const SlideshowFonts=getFonts(Slideshow);const serializationHash=\"framer-wFbiP\";const variantClassNames={BW88nK1o_:\"framer-v-1px3oi6\"};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:\"BW88nK1o_\",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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1px3oi6\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"BW88nK1o_\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fg7u3b-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"IePl88nPh-container\",nodeId:\"IePl88nPh\",rendersWithMotion:true,scopeId:\"ZOHrKWkPd\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"top\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"IePl88nPh\",intervalControl:7,itemAmount:1,layoutId:\"IePl88nPh\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:365,width:\"280px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sd47ui-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"AgevjhQo_-container\",nodeId:\"AgevjhQo_\",rendersWithMotion:true,scopeId:\"ZOHrKWkPd\",children:/*#__PURE__*/_jsx(HeroReviewCard,{acQko3Vb3:\"Absolutely incredible service! Advance Amazon gave me full confidence to grow. Their team acts like true partners, not just another agency\",height:\"100%\",id:\"AgevjhQo_\",layoutId:\"AgevjhQo_\",T8l6ikqIq:\"https://www.youtube.com/shorts/HTqyXKvy7Uk\",tdW60sEoV:\"Andrea Secara, Co-Founder Algora\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:365,width:\"280px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-d7cngd-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"s9kgJVUPM-container\",nodeId:\"s9kgJVUPM\",rendersWithMotion:true,scopeId:\"ZOHrKWkPd\",children:/*#__PURE__*/_jsx(HeroReviewCard,{acQko3Vb3:\"Advance Amazon is the reason I sleep at night. From product launch to scaling, their team handled everything flawlessly\",height:\"100%\",id:\"s9kgJVUPM\",layoutId:\"s9kgJVUPM\",T8l6ikqIq:\"https://www.youtube.com/watch?v=HJyt8rz_F5Q\",tdW60sEoV:\"Danielle Garafolo, CEO Epi-Pet\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:365,width:\"280px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tnu95-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"BvYkcU9XF-container\",nodeId:\"BvYkcU9XF\",rendersWithMotion:true,scopeId:\"ZOHrKWkPd\",children:/*#__PURE__*/_jsx(HeroReviewCard,{acQko3Vb3:\"They understood my brand better than I did. Advance Amazon\u2019s creative, analytics, and logistics teams are all rockstars. Best decision ever!\",height:\"100%\",id:\"BvYkcU9XF\",layoutId:\"BvYkcU9XF\",T8l6ikqIq:\"https://www.youtube.com/watch?v=KiBkc21Hx9o\",tdW60sEoV:\"Rajiv Chandra, CEO Mum & You\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:365,width:\"280px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vir7ax-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"hwyuueaEu-container\",nodeId:\"hwyuueaEu\",rendersWithMotion:true,scopeId:\"ZOHrKWkPd\",children:/*#__PURE__*/_jsx(HeroReviewCard,{acQko3Vb3:\"I\u2019ve never felt this supported by an agency. Every team member at Advance Amazon brings their A-game\u2014super organized and efficient.\",height:\"100%\",id:\"hwyuueaEu\",layoutId:\"hwyuueaEu\",T8l6ikqIq:\"https://www.youtube.com/watch?v=l6X5B9icHlM&feature=youtu.be\",tdW60sEoV:\"Alana Warner, Director Day One\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:365,width:\"280px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5csh6p-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"l3sZAZCcc-container\",nodeId:\"l3sZAZCcc\",rendersWithMotion:true,scopeId:\"ZOHrKWkPd\",children:/*#__PURE__*/_jsx(HeroReviewCard,{acQko3Vb3:\"The growth we\u2019ve seen since hiring Advance Amazon is unreal. Their systems, support, and knowledge are next-level. Highly recommend them!\",height:\"100%\",id:\"l3sZAZCcc\",layoutId:\"l3sZAZCcc\",T8l6ikqIq:\"https://www.youtube.com/watch?v=hQmveYvfaaU&feature=youtu.be\",tdW60sEoV:\"Jon Shavel, President Shavel Products\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wFbiP.framer-1i1ia3i, .framer-wFbiP .framer-1i1ia3i { display: block; }\",\".framer-wFbiP.framer-1px3oi6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: 344px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 283px; }\",\".framer-wFbiP .framer-fg7u3b-container { flex: none; height: 343px; position: relative; width: 100%; }\",\".framer-wFbiP .framer-sd47ui-container, .framer-wFbiP .framer-d7cngd-container, .framer-wFbiP .framer-tnu95-container, .framer-wFbiP .framer-1vir7ax-container, .framer-wFbiP .framer-5csh6p-container { height: auto; position: relative; width: auto; z-index: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 344\n * @framerIntrinsicWidth 283\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZOHrKWkPd=withCSS(Component,css,\"framer-wFbiP\");export default FramerZOHrKWkPd;FramerZOHrKWkPd.displayName=\"Fixed review\";FramerZOHrKWkPd.defaultProps={height:344,width:283};addFonts(FramerZOHrKWkPd,[{explicitInter:true,fonts:[]},...HeroReviewCardFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZOHrKWkPd\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"344\",\"framerIntrinsicWidth\":\"283\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZOHrKWkPd.map", "// Generated by Framer (6aa4fc0)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-xqhVm .framer-styles-preset-1hxjtx2:not(.rich-text-wrapper), .framer-xqhVm .framer-styles-preset-1hxjtx2.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, #e68312); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, #e68312); --framer-link-text-decoration: none; }\"];export const className=\"framer-xqhVm\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (29d106d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,FormSelect,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import BeforeAfter from\"https://framerusercontent.com/modules/d0J10qPQ3T9q0Uyn7n7P/GaMwyalQUDsT1DjqjUBc/Before_After_Image_Slider.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js\";import Simplecast from\"https://framerusercontent.com/modules/q2cL7syGc9ukRT0XBvXQ/eisuJ8RdREB9nFBEu9GQ/Simplecast.js\";import{NumberCounter}from\"https://framerusercontent.com/modules/tBPs2KQ27TisPVIQSgAN/EOqeYzSYT8fhoB9GfFzK/Counter_7.js\";import{Icon as Phosphor1}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import CardFeatureCard from\"#framer/local/canvasComponent/aVNCbnCZn/aVNCbnCZn.js\";import CardProcessCard from\"#framer/local/canvasComponent/b8qvm_XpH/b8qvm_XpH.js\";import CardConsultationCard from\"#framer/local/canvasComponent/DzWG2ePx4/DzWG2ePx4.js\";import FeatureWidget from\"#framer/local/canvasComponent/EB78TtOt_/EB78TtOt_.js\";import ButtonPrimaryButton from\"#framer/local/canvasComponent/GNvaONxX6/GNvaONxX6.js\";import TagPrimaryTag from\"#framer/local/canvasComponent/IHYC0Q7Lw/IHYC0Q7Lw.js\";import BlogBlogSingleCard from\"#framer/local/canvasComponent/KtVf94LV_/KtVf94LV_.js\";import TagPrimaryTagLive from\"#framer/local/canvasComponent/m4VVEPNmb/m4VVEPNmb.js\";import CardAboutCard from\"#framer/local/canvasComponent/ms2G8Wp92/ms2G8Wp92.js\";import BeforeAfter1 from\"#framer/local/canvasComponent/okWhwsiak/okWhwsiak.js\";import InteractiveComponentsCursor from\"#framer/local/canvasComponent/RMpAvj7R1/RMpAvj7R1.js\";import ButtonContactButton from\"#framer/local/canvasComponent/ROAZLEJAK/ROAZLEJAK.js\";import FAQFAQ from\"#framer/local/canvasComponent/tAU8hAZZK/tAU8hAZZK.js\";import YoutubeCard2 from\"#framer/local/canvasComponent/Uqb4T5RRv/Uqb4T5RRv.js\";import Newsletter from\"#framer/local/canvasComponent/vpXpYM35p/vpXpYM35p.js\";import FixedReview from\"#framer/local/canvasComponent/ZOHrKWkPd/ZOHrKWkPd.js\";import Blog from\"#framer/local/collection/BUGTPjXwz/BUGTPjXwz.js\";import CaseStudies from\"#framer/local/collection/yoco0NHMS/yoco0NHMS.js\";import*as sharedStyle from\"#framer/local/css/BB5OYjlP6/BB5OYjlP6.js\";import*as sharedStyle9 from\"#framer/local/css/JQSP3EtUD/JQSP3EtUD.js\";import*as sharedStyle8 from\"#framer/local/css/Me1Owk5Wc/Me1Owk5Wc.js\";import*as sharedStyle10 from\"#framer/local/css/Q9pwvaSty/Q9pwvaSty.js\";import*as sharedStyle6 from\"#framer/local/css/Q9YGoPiQM/Q9YGoPiQM.js\";import*as sharedStyle1 from\"#framer/local/css/QhK6qqT5U/QhK6qqT5U.js\";import*as sharedStyle7 from\"#framer/local/css/qScbNYtt3/qScbNYtt3.js\";import*as sharedStyle3 from\"#framer/local/css/QuTNz53Yy/QuTNz53Yy.js\";import*as sharedStyle2 from\"#framer/local/css/VnmEZ_3BZ/VnmEZ_3BZ.js\";import*as sharedStyle5 from\"#framer/local/css/VqRaec8fA/VqRaec8fA.js\";import*as sharedStyle4 from\"#framer/local/css/W_ZWObZHr/W_ZWObZHr.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const ButtonPrimaryButtonFonts=getFonts(ButtonPrimaryButton);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TickerFonts=getFonts(Ticker);const TagPrimaryTagFonts=getFonts(TagPrimaryTag);const CardFeatureCardFonts=getFonts(CardFeatureCard);const NumberCounterFonts=getFonts(NumberCounter);const MotionDivWithFX=withFX(motion.div);const YouTubeFonts=getFonts(YouTube);const CardProcessCardFonts=getFonts(CardProcessCard);const ContainerWithFX=withFX(Container);const CardAboutCardFonts=getFonts(CardAboutCard);const CardConsultationCardFonts=getFonts(CardConsultationCard);const Ticker1Fonts=getFonts(Ticker1);const YoutubeCard2Fonts=getFonts(YoutubeCard2);const Phosphor1Fonts=getFonts(Phosphor1);const FeatureWidgetFonts=getFonts(FeatureWidget);const MotionAWithFX=withFX(motion.a);const BlogBlogSingleCardFonts=getFonts(BlogBlogSingleCard);const MotionHeaderWithFX=withFX(motion.header);const ButtonContactButtonFonts=getFonts(ButtonContactButton);const BeforeAfterFonts=getFonts(BeforeAfter);const BeforeAfter1Fonts=getFonts(BeforeAfter1);const TagPrimaryTagLiveFonts=getFonts(TagPrimaryTagLive);const SimplecastFonts=getFonts(Simplecast);const EmbedFonts=getFonts(Embed);const FAQFAQFonts=getFonts(FAQFAQ);const NewsletterFonts=getFonts(Newsletter);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const FixedReviewFonts=getFonts(FixedReview);const InteractiveComponentsCursorFonts=getFonts(InteractiveComponentsCursor);const breakpoints={euNp7MUYv:\"(min-width: 1200px) and (max-width: 1439px)\",nWzKj3W9V:\"(min-width: 810px) and (max-width: 1199px)\",QvtLBAi1h:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-7Ppsp\";const variantClassNames={euNp7MUYv:\"framer-v-g34ahf\",nWzKj3W9V:\"framer-v-1hn01op\",QvtLBAi1h:\"framer-v-1dp0tct\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:60,delay:1.2,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation2={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={damping:50,delay:.05,mass:1,stiffness:300,type:\"spring\"};const textEffect={effect:animation2,repeat:false,startDelay:0,threshold:.5,tokenization:\"word\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const textEffect1={effect:animation2,repeat:false,startDelay:.2,threshold:.5,tokenization:\"word\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-50};const transition3={damping:60,delay:0,mass:1,stiffness:200,type:\"spring\"};const transition4={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition5={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const transition6={damping:60,delay:.6,mass:1,stiffness:320,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const transition7={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition7,x:0,y:50};const transition8={delay:0,duration:60,ease:[0,0,1,1],type:\"tween\"};const animation11={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transition9={bounce:.2,delay:7,duration:.4,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={L:\"euNp7MUYv\",M:\"nWzKj3W9V\",S:\"QvtLBAi1h\",XL:\"WQLkyLRf1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const cursor={alignment:\"center\",component:InteractiveComponentsCursor,offset:{x:0,y:0},placement:\"bottom\",transition:transition5,variant:\"VKeZmVTKZ\"};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,dFDcF1wOrq4_WTQmAI,xLZiRq4JMq4_WTQmAI,FWAhBi6Vjq4_WTQmAI,hVHwPyywIq4_WTQmAI,ci15sXoHaq4_WTQmAI,idq4_WTQmAI,zucQ2lYw5Yhn6xP9ti,iwOaZHlgxYhn6xP9ti,T52KCtq91Yhn6xP9ti,gOvUDDoChYhn6xP9ti,idYhn6xP9ti,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"QvtLBAi1h\")return false;return true;};const elementId=useRouteElementId(\"AEgEFBaeQ\");const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const elementId1=useRouteElementId(\"o0iN1zqMr\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"goOlR_7hX\");const ref3=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"nWzKj3W9V\",\"QvtLBAi1h\"].includes(baseVariant))return false;return true;};const elementId3=useRouteElementId(\"q5ElvtMno\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"tIMLpB5Xx\");const ref5=React.useRef(null);useCustomCursors({\"1bf4dyq\":cursor});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-8e9f7de0-9fd7-44d3-bc3e-2dea20c4e4bd, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"1bf4dyq\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{\"data-framer-name\":\"Tablet\"},QvtLBAi1h:{\"data-framer-name\":\"Phone\"}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12paqds\",\"data-framer-name\":\"Hero 134\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7s15yl\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kzv5dq\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15hvyux\",\"data-framer-name\":\"Content Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wugoqy\",\"data-framer-name\":\"Sub Header\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-2xa5z4\",\"data-framer-name\":\"Marketing\",fill:'var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18)) /* {\"name\":\"Blue\"} */',intrinsicHeight:16,intrinsicWidth:16,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\"><path fill=\"currentColor\" d=\"M14.25 2.1a1.25 1.25 0 0 0-1.17-.1L6.91 4.43a1.2 1.2 0 0 1-.46.09H2.5a1.25 1.25 0 0 0-1.25 1.25v.1H0v3h1.25V9a1.25 1.25 0 0 0 1.25 1.22L4 13.4a1.26 1.26 0 0 0 1.13.72h.63A1.25 1.25 0 0 0 7 12.87v-2.53l6.08 2.43a1.3 1.3 0 0 0 .47.09 1.3 1.3 0 0 0 .7-.22 1.25 1.25 0 0 0 .55-1V3.13a1.25 1.25 0 0 0-.55-1.03m-8.5 3.67V9H2.5V5.77zm0 7.1h-.63l-1.23-2.65h1.86zm1.62-3.72A2.3 2.3 0 0 0 7 9V5.7a2.3 2.3 0 0 0 .37-.11l6.18-2.46v8.48zm7.46-3.03v2.5a1.25 1.25 0 0 0 0-2.5\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Your amazon pro team on demand\"})}),fonts:[\"GF;DM Sans-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-o1ogpi\",\"data-styles-preset\":\"BB5OYjlP6\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Your amazon pro team on demand\"})}),className:\"framer-1tzep1a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 2.95)\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1.14em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Scale your \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"Amazon brand\"}),\" without anymore hurdles\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 4.25)\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1.14em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Scale your \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"Amazon brand\"}),\" without anymore hurdles\"]})}),className:\"framer-1lpqnhr\",fonts:[\"GF;Figtree-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\"},children:\"Want to Optimize your Amazon brand for success and amplify your sales like never before?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Want to Optimize your Amazon brand for success and amplify your sales like never before?\"})}),className:\"framer-h8iahz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uz8yuj\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-re4uxh-container\",nodeId:\"POStJlrES\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"Speak With Our Team\",GT109pdEG:resolvedLinks[0],height:\"100%\",id:\"POStJlrES\",layoutId:\"POStJlrES\",SD1BGlGhK:true,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1jq7msv\",\"data-framer-appear-id\":\"1jq7msv\",\"data-framer-name\":\"Bottom\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1itu3fc\",\"data-framer-name\":\"Seperator\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10z3q8z\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gtrbpj\",\"data-framer-name\":\"Author Image List \",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Author Image 01\",fit:\"stretch\",pixelHeight:900,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"50px\",src:\"https://framerusercontent.com/images/zXLxzhh1LsRyiQKAVnXhZ9LY7YU.jpg\",srcSet:\"https://framerusercontent.com/images/zXLxzhh1LsRyiQKAVnXhZ9LY7YU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zXLxzhh1LsRyiQKAVnXhZ9LY7YU.jpg 900w\"},className:\"framer-5xw8wq\",\"data-border\":true,\"data-framer-name\":\"Author Image 01\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Author Image 02\",fit:\"stretch\",pixelHeight:900,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"50px\",src:\"https://framerusercontent.com/images/ltUBSCdokXDQN5KEStM70SA4Is.jpg\",srcSet:\"https://framerusercontent.com/images/ltUBSCdokXDQN5KEStM70SA4Is.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ltUBSCdokXDQN5KEStM70SA4Is.jpg 900w\"},className:\"framer-jlu060\",\"data-border\":true,\"data-framer-name\":\"Author Image 02\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\" Author Image 03\",fit:\"stretch\",pixelHeight:900,pixelWidth:900,positionX:\"center\",positionY:\"center\",sizes:\"50px\",src:\"https://framerusercontent.com/images/2VG6lAQWpwexOQcXMtWqRWQ2b4.jpg\",srcSet:\"https://framerusercontent.com/images/2VG6lAQWpwexOQcXMtWqRWQ2b4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2VG6lAQWpwexOQcXMtWqRWQ2b4.jpg 900w\"},className:\"framer-1opvmwi\",\"data-border\":true,\"data-framer-name\":\" Author Image 03\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6r5p0b\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1neopxp\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uwzd8b-container\",\"data-framer-name\":\"Star\",isAuthoredByUser:true,isModuleExternal:true,name:\"Star\",nodeId:\"gBCxtRo4I\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-271bf69e-979d-41ea-9e87-8af6446b1dff, rgb(245, 147, 9))\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"gBCxtRo4I\",layoutId:\"gBCxtRo4I\",mirrored:false,name:\"Star\",selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1acqpqr-container\",\"data-framer-name\":\"Star\",isAuthoredByUser:true,isModuleExternal:true,name:\"Star\",nodeId:\"TJ0PfIjY7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-271bf69e-979d-41ea-9e87-8af6446b1dff, rgb(245, 147, 9))\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"TJ0PfIjY7\",layoutId:\"TJ0PfIjY7\",mirrored:false,name:\"Star\",selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4hpv4f-container\",\"data-framer-name\":\"Star\",isAuthoredByUser:true,isModuleExternal:true,name:\"Star\",nodeId:\"pDW_EjjEC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-271bf69e-979d-41ea-9e87-8af6446b1dff, rgb(245, 147, 9))\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"pDW_EjjEC\",layoutId:\"pDW_EjjEC\",mirrored:false,name:\"Star\",selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10w6s08-container\",\"data-framer-name\":\"Star\",isAuthoredByUser:true,isModuleExternal:true,name:\"Star\",nodeId:\"pXKkWAz_S\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-271bf69e-979d-41ea-9e87-8af6446b1dff, rgb(245, 147, 9))\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"pXKkWAz_S\",layoutId:\"pXKkWAz_S\",mirrored:false,name:\"Star\",selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-oky38y-container\",\"data-framer-name\":\"Star\",isAuthoredByUser:true,isModuleExternal:true,name:\"Star\",nodeId:\"t0C3VOk4F\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-271bf69e-979d-41ea-9e87-8af6446b1dff, rgb(245, 147, 9))\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"t0C3VOk4F\",layoutId:\"t0C3VOk4F\",mirrored:false,name:\"Star\",selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"300+ scaled by our systems\"})}),className:\"framer-pip7po\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1354,pixelWidth:1970,sizes:\"850px\",src:\"https://framerusercontent.com/images/6cf9glWCyedJfGV2rXmxsOIYHI.png\",srcSet:\"https://framerusercontent.com/images/6cf9glWCyedJfGV2rXmxsOIYHI.png?scale-down-to=512 512w,https://framerusercontent.com/images/6cf9glWCyedJfGV2rXmxsOIYHI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6cf9glWCyedJfGV2rXmxsOIYHI.png 1970w\"},className:\"framer-15q34un\",\"data-framer-name\":\"Images\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9vszyv\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sns1hi\"})})]})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-nc8rxr\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",style:{\"--framer-text-alignment\":\"center\"},children:\"TRUSTED BY TOP BRANDS\"})}),className:\"framer-101muxf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-iymd8p-container\",isModuleExternal:true,nodeId:\"YF18ZxFWE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"YF18ZxFWE\",layoutId:\"YF18ZxFWE\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yp4yvp\",\"data-framer-name\":\"Top logos\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/fgjXDgvdi2MF8JWPAEB9CrPM60.png\"},className:\"framer-1he4cjs\",\"data-framer-name\":\"Frame 1321317765\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/6KEuaMZpQZ15v6a4e7TKKEgfTs.png\"},className:\"framer-1wib8zo\",\"data-framer-name\":\"Frame 1321317766\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/izlbAzVhL6UCYJMjO8CyUUiqK3c.png\"},className:\"framer-1h5hmdr\",\"data-framer-name\":\"Frame 1321317767\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/FzakIQVKWq9w8GYdadIAmwH0vw.png\"},className:\"framer-jnmi4w\",\"data-framer-name\":\"Frame 1321317769\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/erBd0UbRWwScLrqmdsHRBleuOw.png\"},className:\"framer-1flitvv\",\"data-framer-name\":\"Frame 1321317770\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/n9CdRgsFuNTsiP3tiP9sHFNqzBY.png\"},className:\"framer-1g2nvvd\",\"data-framer-name\":\"Frame 1321317771\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/qFCgCMCHM9RrrbiSGkaJlM7G0YQ.png\"},className:\"framer-1lowrxw\",\"data-framer-name\":\"Frame 1321317772\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/DDaXpMJmz8U7JC9qIBIOCzJxnE.png\"},className:\"framer-nzjib9\",\"data-framer-name\":\"Frame 1321317773\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/6y2DAaSINKw8jedd2M7HzaqSvo.png\"},className:\"framer-1hvv1ze\",\"data-framer-name\":\"Frame 1321317774\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/KJ8wCklB44SuWLHORrG1zXPehA.png\"},className:\"framer-opx4pk\",\"data-framer-name\":\"Frame 1321317775\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/pcVfNHlazG72HSArk0nEu1aeN9A.png\"},className:\"framer-7at7k6\",\"data-framer-name\":\"Frame 1321317776\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/PkI9AhqnfOMf3rqjKdEBVvWvaVI.png\"},className:\"framer-cjjzm3\",\"data-framer-name\":\"Frame 1321317777\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/KBaU5aB9nnKNJKXsrOA6FDZweY.png\"},className:\"framer-gc0fvm\",\"data-framer-name\":\"Frame 1321317778\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/w9wCXPzVeMmBq8y7ZHpMtY2U.png\"},className:\"framer-1uohjr4\",\"data-framer-name\":\"Frame 1321317779\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/mZzoE4GSMvvxNY5myrsbcrhL2s8.png\"},className:\"framer-hnjf2k\",\"data-framer-name\":\"Frame 1321317780\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/Nn1F9zova6SIzGIhx65vbg0BCc.png\"},className:\"framer-1hlja1l\",\"data-framer-name\":\"Frame 1321317781\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/c0TVpstraMrxKF2DmX6wbRRhdwk.png\"},className:\"framer-1kyehdh\",\"data-framer-name\":\"Frame 1321317764\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.33333333333334,intrinsicWidth:333.3333333333333,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/Ft2cJymOSWV6mTytqoYM7H9Si8.png\"},className:\"framer-155zi12\",\"data-framer-name\":\"Frame 1321317768\"})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-113y3c1\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vk0239\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fbunpp\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k37ku2\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xose9g\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g5h0xw-container\",nodeId:\"PA3SH0BFM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TagPrimaryTag,{height:\"100%\",id:\"PA3SH0BFM\",KS7KLFqN8:\"Benefits of Working With Us\",layoutId:\"PA3SH0BFM\",rQKAY6456:\"Benefits of Working With Us\",variant:\"axDSKQZXP\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ps4ie4\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:\"Make Amazon your hero\"})}),className:\"framer-1tdbutf\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"not your headache!\"})}),className:\"framer-vakywd\",\"data-framer-name\":\"Text 2\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lu96ts\",\"data-framer-name\":\"Middle\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Advance Solution Simplifies The Process.\"})}),className:\"framer-1a9y2vn\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5swblh\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined},{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined},{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined},{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 124px) / 2, 50px)`},QvtLBAi1h:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:293,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 152px) / 4, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iasw4f-container\",nodeId:\"SmYVOcC1P\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{oLF3cLudd:resolvedLinks1[1]},nWzKj3W9V:{oLF3cLudd:resolvedLinks1[2]},QvtLBAi1h:{oLF3cLudd:resolvedLinks1[3],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardFeatureCard,{bLduUHqqh:addImageAlt({pixelHeight:44,pixelWidth:44,src:\"https://framerusercontent.com/images/AJiedqWbxVBOUN9xB5kV5MNLyw.svg\"},\"Icon\"),bs5bMeolT:\"\",height:\"100%\",i54V6EF7r:\"Manage Amazon seller accounts for optimal performance, overseeing sales, listings, inventory level, and customer feedbacks.\",id:\"SmYVOcC1P\",l9LjRaJjB:false,layoutId:\"SmYVOcC1P\",mClhBAXgo:\"\",oLF3cLudd:resolvedLinks1[0],pguFft3lg:false,style:{height:\"100%\",width:\"100%\"},T9gmcBtzV:\"Boost Your Revenue\",tsPHjksUZ:\"Accountt\",variant:\"VfQDbV06R\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined},{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined},{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined},{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 124px) / 2, 50px)`},QvtLBAi1h:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:293,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 152px) / 4, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yhpn0f-container\",nodeId:\"lm08OGqEw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{oLF3cLudd:resolvedLinks2[1],variant:\"VfQDbV06R\"},nWzKj3W9V:{oLF3cLudd:resolvedLinks2[2],variant:\"VfQDbV06R\"},QvtLBAi1h:{oLF3cLudd:resolvedLinks2[3],style:{width:\"100%\"},variant:\"VfQDbV06R\"}},children:/*#__PURE__*/_jsx(CardFeatureCard,{bLduUHqqh:addImageAlt({pixelHeight:44,pixelWidth:44,src:\"https://framerusercontent.com/images/c7ewovWjVsAf198pTS4MtYSO8k.svg\"},\"Icon\"),bs5bMeolT:\"\",height:\"100%\",i54V6EF7r:\"Strategically plan and execute Amazon Advertising campaigns for maximum ROI and sales impact.\",id:\"lm08OGqEw\",l9LjRaJjB:false,layoutId:\"lm08OGqEw\",mClhBAXgo:\"\",oLF3cLudd:resolvedLinks2[0],pguFft3lg:false,style:{height:\"100%\",width:\"100%\"},T9gmcBtzV:\"Ads Management \",tsPHjksUZ:\"campaign\",variant:\"er8fPsUbM\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined},{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined},{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined},{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 124px) / 2, 50px)`},QvtLBAi1h:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:293,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 152px) / 4, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p2nk6x-container\",nodeId:\"LNYMlSo7q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{oLF3cLudd:resolvedLinks3[1],variant:\"VfQDbV06R\"},nWzKj3W9V:{oLF3cLudd:resolvedLinks3[2],variant:\"VfQDbV06R\"},QvtLBAi1h:{oLF3cLudd:resolvedLinks3[3],style:{width:\"100%\"},variant:\"VfQDbV06R\"}},children:/*#__PURE__*/_jsx(CardFeatureCard,{bLduUHqqh:addImageAlt({pixelHeight:44,pixelWidth:44,src:\"https://framerusercontent.com/images/sgcwYsOD6V0LWJJRJQ99llynBI.svg\"},\"Icon\"),bs5bMeolT:\"\",height:\"100%\",i54V6EF7r:\"Optimize product listings with targeted keywords to improve search visibility and ranking on Amazon.\",id:\"LNYMlSo7q\",l9LjRaJjB:false,layoutId:\"LNYMlSo7q\",mClhBAXgo:\"\",oLF3cLudd:resolvedLinks3[0],pguFft3lg:false,style:{height:\"100%\",width:\"100%\"},T9gmcBtzV:\"Listing SEO \",tsPHjksUZ:\"list\",variant:\"er8fPsUbM\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined},{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined},{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined},{href:{webPageId:\"iEYhqIzLi\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 124px) / 2, 50px)`},QvtLBAi1h:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:293,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 152px) / 4, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ivg8n0-container\",nodeId:\"uP09aAGWq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{oLF3cLudd:resolvedLinks4[1],variant:\"VfQDbV06R\"},nWzKj3W9V:{oLF3cLudd:resolvedLinks4[2],variant:\"VfQDbV06R\"},QvtLBAi1h:{oLF3cLudd:resolvedLinks4[3],style:{width:\"100%\"},variant:\"VfQDbV06R\"}},children:/*#__PURE__*/_jsx(CardFeatureCard,{bLduUHqqh:addImageAlt({pixelHeight:44,pixelWidth:44,src:\"https://framerusercontent.com/images/qCPT61H8KatnJwS4aqpuVjWWdM.svg\"},\"Icon\"),bs5bMeolT:\"\",height:\"100%\",i54V6EF7r:\"Produce compelling visuals and content to enhance product presentation and brand identity on Amazon.\",id:\"uP09aAGWq\",l9LjRaJjB:false,layoutId:\"uP09aAGWq\",mClhBAXgo:\"\",oLF3cLudd:resolvedLinks4[0],pguFft3lg:false,style:{height:\"100%\",width:\"100%\"},T9gmcBtzV:\"Creative Services\",tsPHjksUZ:\"support\",variant:\"er8fPsUbM\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1z0c3fk\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-2agp9e\",\"data-framer-name\":\"Stats\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15v0mys\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jhpyxp\",\"data-framer-name\":\"Top\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-meh9eu hidden-1dp0tct\",\"data-framer-name\":\"Left Detail\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9nbnqj\",\"data-framer-name\":\"Detail Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 567 237\"><g><defs><linearGradient id=\"idss9438097951_1g-1488260091\" x1=\"0.6173285660945764\" x2=\"0.3826714339054236\" y1=\"5.551115123125783e-17\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgba(230, 131, 18, 0.2)\" stop-opacity=\"0.2\"></stop><stop offset=\"1\" stop-color=\"rgba(0,0,0,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 0 0 L 368.268 0 C 379.681 0 390.549 4.875 398.139 13.397 L 567 203 L 0 203 Z\" fill=\"url(#idss9438097951_1g-1488260091)\"></path></g><path d=\"M 0.5 0.5 L 368.268 0.5 C 379.538 0.5 390.271 5.314 397.766 13.729 L 565.885 202.5 L 0.5 202.5 Z\" fill=\"transparent\" stroke=\"rgba(NaN,NaN,NaN,0.1)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 0 237 L 0 202 L 567 202 L 567 237 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:9438097951,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h727ng\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fni9rz\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mgvc7r\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"It's all about \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"results\"})]})}),className:\"framer-4xt880\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d4o8eo\",\"data-framer-name\":\"Middle\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our success is directly tied to the growth and expansion of our amazing clients.\"})}),className:\"framer-2d1q5m\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-x8549r hidden-1dp0tct\",\"data-framer-name\":\"Right Detail\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-164qg71\",\"data-framer-name\":\"Detail Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 567 237\"><g><defs><linearGradient id=\"idss11829125237_1g-1488259998\" x1=\"0.37755458904639955\" x2=\"0.6224454109536004\" y1=\"5.551115123125783e-17\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgba(230, 131, 18, 0.2)\" stop-opacity=\"0.2\"></stop><stop offset=\"1\" stop-color=\"rgba(0,0,0,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 567 0 L 198.732 0 C 187.319 0 176.451 4.875 168.861 13.397 L 0 203 L 567 203 Z\" fill=\"url(#idss11829125237_1g-1488259998)\"></path></g><path d=\"M 566.5 0.5 L 198.732 0.5 C 187.462 0.5 176.729 5.314 169.234 13.729 L 1.115 202.5 L 566.5 202.5 Z\" fill=\"transparent\" stroke=\"rgba(NaN,NaN,NaN,0.1)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 0 237 L 0 202 L 567 202 L 567 237 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:11829125237,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x9y70b\",\"data-framer-name\":\"Stat Widget Stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cuhzti\",\"data-framer-name\":\"Stat Widget\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-208ma4\",\"data-framer-name\":\"Stat Body\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-46nqga\",\"data-framer-name\":\"Count Component\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tyuzd5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GozA9wxQ9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NumberCounter,{decimalSeparator:\"comma\",endNumber:400,font:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontColor:\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",fontSize:64,height:\"100%\",id:\"GozA9wxQ9\",layoutId:\"GozA9wxQ9\",loop:false,prefix:\"\",speed:20,startNumber:250,suffix:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.9px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\"},children:\"+\"})}),className:\"framer-i7cery\",\"data-framer-name\":\"Number\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-twuvmk\",\"data-styles-preset\":\"W_ZWObZHr\",style:{\"--framer-text-alignment\":\"center\"},children:\"Brands currently managed\"})}),className:\"framer-12cwqs0\",\"data-framer-name\":\"In 90+ Countries, We work as one global team to help clients\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13goxiy\",\"data-framer-name\":\"Stat Widget\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5zo3pv\",\"data-framer-name\":\"Stat Body\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lunh2f\",\"data-framer-name\":\"Count Component\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\"},children:\"$\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.9px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\"},children:\"$\"})}),className:\"framer-sbh82r\",\"data-framer-name\":\"Number\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vqc5p5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HsEcWjQGm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NumberCounter,{decimalSeparator:\"period\",endNumber:874,font:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontColor:\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",fontSize:64,height:\"100%\",id:\"HsEcWjQGm\",layoutId:\"HsEcWjQGm\",loop:false,prefix:\"\",speed:20,startNumber:0,suffix:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.9px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\"},children:\"+ Million\"})}),className:\"framer-1voqsmc\",\"data-framer-name\":\"Number\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-twuvmk\",\"data-styles-preset\":\"W_ZWObZHr\",style:{\"--framer-text-alignment\":\"center\"},children:\"Revenue Generated on Amazon Annually\"})}),className:\"framer-10zpmyr\",\"data-framer-name\":\"In 90+ Countries, We work as one global team to help clients\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1im8r2i\",\"data-framer-name\":\"Stat Widget\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p7crjz\",\"data-framer-name\":\"Stat Body\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ps41my\",\"data-framer-name\":\"Count Component\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hss36t-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NdXQQMLiH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NumberCounter,{decimalSeparator:\"comma\",endNumber:200,font:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontColor:\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",fontSize:64,height:\"100%\",id:\"NdXQQMLiH\",layoutId:\"NdXQQMLiH\",loop:false,prefix:\"\",speed:20,startNumber:0,suffix:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.9px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\"},children:\"+\"})}),className:\"framer-1f2q0hd\",\"data-framer-name\":\"Number\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-twuvmk\",\"data-styles-preset\":\"W_ZWObZHr\",style:{\"--framer-text-alignment\":\"center\"},children:\"Employees\"})}),className:\"framer-11i4ouh\",\"data-framer-name\":\"In 90+ Countries, We work as one global team to help clients\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r0eytk\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-eu8ig\",\"data-framer-name\":\"About\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a25acp\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9d8uac\",\"data-framer-name\":\"Card/About Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12hxh7c\",\"data-border\":true,\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wky1pf\",\"data-border\":true,\"data-framer-name\":\"Border\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{background:{alt:\"BG\",fit:\"fit\",pixelHeight:720,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:`calc(max(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 224px) / 2, 1px) - 20px, 1px) - 2px)`,src:\"https://framerusercontent.com/images/P8iYlZgLCwF3UkwsGKHf9mmtU04.png\",srcSet:\"https://framerusercontent.com/images/P8iYlZgLCwF3UkwsGKHf9mmtU04.png?scale-down-to=512 512w,https://framerusercontent.com/images/P8iYlZgLCwF3UkwsGKHf9mmtU04.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P8iYlZgLCwF3UkwsGKHf9mmtU04.png 1280w\"}},nWzKj3W9V:{background:{alt:\"BG\",fit:\"fit\",pixelHeight:720,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:`calc(max(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 100px, 1px) - 20px, 1px) - 2px)`,src:\"https://framerusercontent.com/images/P8iYlZgLCwF3UkwsGKHf9mmtU04.png\",srcSet:\"https://framerusercontent.com/images/P8iYlZgLCwF3UkwsGKHf9mmtU04.png?scale-down-to=512 512w,https://framerusercontent.com/images/P8iYlZgLCwF3UkwsGKHf9mmtU04.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P8iYlZgLCwF3UkwsGKHf9mmtU04.png 1280w\"}},QvtLBAi1h:{background:{alt:\"BG\",fit:\"fit\",pixelHeight:720,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:`calc(max(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 60px, 1px) - 20px, 1px) - 2px)`,src:\"https://framerusercontent.com/images/P8iYlZgLCwF3UkwsGKHf9mmtU04.png\",srcSet:\"https://framerusercontent.com/images/P8iYlZgLCwF3UkwsGKHf9mmtU04.png?scale-down-to=512 512w,https://framerusercontent.com/images/P8iYlZgLCwF3UkwsGKHf9mmtU04.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P8iYlZgLCwF3UkwsGKHf9mmtU04.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"BG\",fit:\"fit\",pixelHeight:720,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:`calc(max(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 164px) / 2, 1px) - 20px, 1px) - 2px)`,src:\"https://framerusercontent.com/images/P8iYlZgLCwF3UkwsGKHf9mmtU04.png\",srcSet:\"https://framerusercontent.com/images/P8iYlZgLCwF3UkwsGKHf9mmtU04.png?scale-down-to=512 512w,https://framerusercontent.com/images/P8iYlZgLCwF3UkwsGKHf9mmtU04.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P8iYlZgLCwF3UkwsGKHf9mmtU04.png 1280w\"},className:\"framer-1pdn0d7\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aqatbm\",\"data-framer-name\":\"Blue Line\"})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wsa37q\",\"data-framer-name\":\"Glow\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p2k6uz\",\"data-framer-name\":\"Right\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10uve6y\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jygk3h-container\",nodeId:\"T1Nujt11D\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TagPrimaryTag,{height:\"100%\",id:\"T1Nujt11D\",KS7KLFqN8:\"Reviews of Advance Amazon\",layoutId:\"T1Nujt11D\",rQKAY6456:\"NEW\",variant:\"axDSKQZXP\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mkynu0\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",children:\"Client testimonials\"})}),className:\"framer-1kjuqnv\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"and reviews\"})}),className:\"framer-tlxas\",\"data-framer-name\":\"Text 2\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cq9i1m\",\"data-framer-name\":\"Middle\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"See how we\u2019ve helped clients reach their full potential and solved their Amazon problems.\"})}),className:\"framer-2vizef\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ap0sj7\",\"data-framer-name\":\"Bottom\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c41714\",\"data-framer-name\":\"Bottom\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2lovxa-container\",nodeId:\"rDAzoIktJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks5[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks5[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks5[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"Contact us for help on Amazon\",GT109pdEG:resolvedLinks5[0],height:\"100%\",id:\"rDAzoIktJ\",layoutId:\"rDAzoIktJ\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pp0g3v\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11btonb\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18gk628\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y1v8za\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:76,intrinsicWidth:256.6666666666667,pixelHeight:114,pixelWidth:97,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/bWWm1tLsEpxkoASd2raHevawiA.png\"},className:\"framer-8k7x2n\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:76,intrinsicWidth:256.6666666666667,pixelHeight:114,pixelWidth:283,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/76LeZs2JnAtwHYQE2wSn06lIRM.png\"},className:\"framer-10qja9k\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fs0h5z\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.666666666666664,intrinsicWidth:176,pixelHeight:49,pixelWidth:264,src:\"https://framerusercontent.com/images/QYIjhfMniXoGKTkOXbjTe8w8.png\"},className:\"framer-j2gsr6\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"4.6 Stars\"}),\" \u2022 293 Reviews\"]})}),className:\"framer-40b74m\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-486fiq\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:76,intrinsicWidth:256.6666666666667,pixelHeight:114,pixelWidth:385,src:\"https://framerusercontent.com/images/tIcDzIpaxRp8Q0iEXZJWLdG7ZE.png\"},className:\"framer-efovof\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16hcu9g\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.666666666666664,intrinsicWidth:176,pixelHeight:49,pixelWidth:264,src:\"https://framerusercontent.com/images/QYIjhfMniXoGKTkOXbjTe8w8.png\"},className:\"framer-1b5lfqd\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"4.6 Stars\"}),\" \u2022 293 Reviews\"]})}),className:\"framer-1w2531k\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-ouhq3j\",\"data-framer-name\":\"Testimonial\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jyzkl7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bot2as\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11wt7pu\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l5dmz0\",\"data-framer-name\":\"Tag/Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wpb5c2-container\",nodeId:\"DPDSjBFDq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TagPrimaryTag,{height:\"100%\",id:\"DPDSjBFDq\",KS7KLFqN8:\"Testimonial\",layoutId:\"DPDSjBFDq\",rQKAY6456:\"NEW\",variant:\"axDSKQZXP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11aygnu\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"What our \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"clients say\"})]})}),className:\"framer-17vvw5c\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s58b2f\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lo0o6n-container\",isModuleExternal:true,nodeId:\"xPM8suGlB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,height:\"100%\",id:\"xPM8suGlB\",isMixedBorderRadius:false,isRed:true,layoutId:\"xPM8suGlB\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:14,topRightRadius:14,url:\"https://www.youtube.com/watch?v=35Kl7BOSKOM&feature=youtu.be\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-krmmsi-container\",isModuleExternal:true,nodeId:\"lR4zq09ro\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,height:\"100%\",id:\"lR4zq09ro\",isMixedBorderRadius:false,isRed:true,layoutId:\"lR4zq09ro\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:14,topRightRadius:14,url:\"https://www.youtube.com/watch?v=40zZEypglSc\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ygmt3f-container\",isModuleExternal:true,nodeId:\"CqwLYwdhf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,height:\"100%\",id:\"CqwLYwdhf\",isMixedBorderRadius:false,isRed:true,layoutId:\"CqwLYwdhf\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:14,topRightRadius:14,url:\"https://www.youtube.com/watch?v=PuU8_AVohAI&feature=youtu.be\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tzks8h-container\",isModuleExternal:true,nodeId:\"nHacSyJTX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,height:\"100%\",id:\"nHacSyJTX\",isMixedBorderRadius:false,isRed:true,layoutId:\"nHacSyJTX\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:14,topRightRadius:14,url:\"https://youtu.be/KiBkc21Hx9o\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g1fmey-container\",isModuleExternal:true,nodeId:\"jPLHxlL9C\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,height:\"100%\",id:\"jPLHxlL9C\",isMixedBorderRadius:false,isRed:true,layoutId:\"jPLHxlL9C\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:14,topRightRadius:14,url:\"https://youtu.be/HJyt8rz_F5Q\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ce0o1h-container\",isModuleExternal:true,nodeId:\"u3q6r3kyG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,height:\"100%\",id:\"u3q6r3kyG\",isMixedBorderRadius:false,isRed:true,layoutId:\"u3q6r3kyG\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:14,topRightRadius:14,url:\"https://youtu.be/iOzF043RPSk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4r3gnr-container\",isModuleExternal:true,nodeId:\"bCmU1PkSO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,height:\"100%\",id:\"bCmU1PkSO\",isMixedBorderRadius:false,isRed:true,layoutId:\"bCmU1PkSO\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:14,topRightRadius:14,url:\"https://youtu.be/hQmveYvfaaU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h9xabr-container\",isModuleExternal:true,nodeId:\"ucml98JAl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,height:\"100%\",id:\"ucml98JAl\",isMixedBorderRadius:false,isRed:true,layoutId:\"ucml98JAl\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:14,topRightRadius:14,url:\"https://www.youtube.com/watch?v=l6X5B9icHlM&feature=youtu.be\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1yk5pn0\",\"data-framer-name\":\"Process\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uulf7u\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-162dm7o\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q49dtq\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eav9w2\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x3xxdo-container\",nodeId:\"qjiWDPNy0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TagPrimaryTag,{height:\"100%\",id:\"qjiWDPNy0\",KS7KLFqN8:\"WHY US\",layoutId:\"qjiWDPNy0\",rQKAY6456:\"NEW\",variant:\"axDSKQZXP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2sfjbq\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Running Amazon Brand is Tough \u2014 \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"We Make it Effortless.\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",children:[\"Running Amazon Brand is Tough \u2014 \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"We Make it Effortless.\"})]})}),className:\"framer-17aus1q\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r8qtub\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 224px) / 2, 1px), 700px)`},nWzKj3W9V:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 100px)`},QvtLBAi1h:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:285,width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 164px) / 2, 1px), 700px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-12a5cn0-container\",nodeId:\"AgReXPpc2\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{gYnJmHWHb:\"30px\"}},children:/*#__PURE__*/_jsx(CardProcessCard,{AHckVUVc2:\"Hand your Amazon brand to our expert team and reclaim hours of your day. You just focus on what matters the most: growing your business.\",gYnJmHWHb:\"40px\",height:\"100%\",id:\"AgReXPpc2\",layoutId:\"AgReXPpc2\",MDnAmdwHw:\"Rocket\",qXT0C0aT_:\"Save Time. Focus on Growth.\",style:{width:\"100%\"},variant:\"yLhTPJOM4\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 224px) / 2, 1px), 700px)`},nWzKj3W9V:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 100px)`},QvtLBAi1h:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:285,width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 164px) / 2, 1px), 700px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rykz0d-container\",nodeId:\"Up7pSOGaI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{gYnJmHWHb:\"30px\"}},children:/*#__PURE__*/_jsx(CardProcessCard,{AHckVUVc2:\"Boost traffic, skyrocket conversions, and drive surging sales. We\u2019ll scale your brand and elevate your seller rank to new heights. Seriously. Are you ready?\",gYnJmHWHb:\"40px\",height:\"100%\",id:\"Up7pSOGaI\",layoutId:\"Up7pSOGaI\",MDnAmdwHw:\"Atom\",qXT0C0aT_:\"Scalability Unlocked\",style:{width:\"100%\"},variant:\"yLhTPJOM4\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 224px) / 2, 1px), 700px)`},nWzKj3W9V:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 100px)`},QvtLBAi1h:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:285,width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 164px) / 2, 1px), 700px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-r7fhpr-container\",nodeId:\"rtgBRgNeh\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{variant:\"SfWBpAMP1\"},nWzKj3W9V:{variant:\"SfWBpAMP1\"},QvtLBAi1h:{gYnJmHWHb:\"30px\",variant:\"SfWBpAMP1\"}},children:/*#__PURE__*/_jsx(CardProcessCard,{AHckVUVc2:\"Our expert team, armed with proven strategies, will guide you to explosive sales growth. We know what we\u2019re doing, we\u2019ve done it before, and now we\u2019ll do it for you.\",gYnJmHWHb:\"40px\",height:\"100%\",id:\"rtgBRgNeh\",layoutId:\"rtgBRgNeh\",MDnAmdwHw:\"Exclude\",qXT0C0aT_:\"Expertise That Drives Growth\",style:{width:\"100%\"},variant:\"yLhTPJOM4\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 224px) / 2, 1px), 528px)`},nWzKj3W9V:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 100px)`},QvtLBAi1h:{height:239,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 164px) / 2, 1px), 528px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-coxtid-container\",nodeId:\"yseQyCvZN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{style:{height:\"100%\",width:\"100%\"}},QvtLBAi1h:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardAboutCard,{height:\"100%\",id:\"yseQyCvZN\",layoutId:\"yseQyCvZN\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\",zZ2E9SV12:addImageAlt({pixelHeight:570,pixelWidth:800,src:\"https://framerusercontent.com/images/ChZBmysY80XKM54nuhD8JRUvHk.png\",srcSet:\"https://framerusercontent.com/images/ChZBmysY80XKM54nuhD8JRUvHk.png?scale-down-to=512 512w,https://framerusercontent.com/images/ChZBmysY80XKM54nuhD8JRUvHk.png 800w\"},\"Man Using Laptop\")})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f0ml05\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-xdnwkp\",\"data-framer-name\":\"Why Choose Porto\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kdk7en\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13oyhdf\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-17s9fd3\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1751ajw\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kz9gu2-container\",nodeId:\"N0oLGF6nU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TagPrimaryTag,{height:\"100%\",id:\"N0oLGF6nU\",KS7KLFqN8:\"Real Case Studies\",layoutId:\"N0oLGF6nU\",rQKAY6456:\"NEW\",variant:\"axDSKQZXP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-698xn5\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"300+ Brands Trust Us \u2014 Because \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"We Deliver.\"})]})}),className:\"framer-vsb8ec\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-blc6bl\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yd1ong\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"q4_WTQmAI\",data:CaseStudies,type:\"Collection\"},limit:{type:\"LiteralValue\",value:8},orderBy:[{collection:\"q4_WTQmAI\",direction:\"desc\",name:\"h7LVTCEem\",type:\"Identifier\"}],select:[{collection:\"q4_WTQmAI\",name:\"dFDcF1wOr\",type:\"Identifier\"},{collection:\"q4_WTQmAI\",name:\"xLZiRq4JM\",type:\"Identifier\"},{collection:\"q4_WTQmAI\",name:\"FWAhBi6Vj\",type:\"Identifier\"},{collection:\"q4_WTQmAI\",name:\"hVHwPyywI\",type:\"Identifier\"},{collection:\"q4_WTQmAI\",name:\"ci15sXoHa\",type:\"Identifier\"},{collection:\"q4_WTQmAI\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({ci15sXoHa:ci15sXoHaq4_WTQmAI,dFDcF1wOr:dFDcF1wOrq4_WTQmAI,FWAhBi6Vj:FWAhBi6Vjq4_WTQmAI,hVHwPyywI:hVHwPyywIq4_WTQmAI,id:idq4_WTQmAI,xLZiRq4JM:xLZiRq4JMq4_WTQmAI},index)=>{dFDcF1wOrq4_WTQmAI??=\"\";hVHwPyywIq4_WTQmAI??=\"\";ci15sXoHaq4_WTQmAI??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`q4_WTQmAI-${idq4_WTQmAI}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{dFDcF1wOr:dFDcF1wOrq4_WTQmAI},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{dFDcF1wOr:dFDcF1wOrq4_WTQmAI},webPageId:\"M_l_BNXz0\"},motionChild:true,nodeId:\"qEQbNJ6H7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-i4s91h framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{width:`max(max((max(min(${componentViewport?.width||\"100vw\"}, 1410px), 1px) - 40px) / 3, 50px), 1px)`},nWzKj3W9V:{width:`max(max((max(min(${componentViewport?.width||\"100vw\"}, 1410px), 1px) - 20px) / 2, 50px), 1px)`},QvtLBAi1h:{width:`max(max(max(min(${componentViewport?.width||\"100vw\"}, 1410px), 1px), 50px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:476,width:`max(max((max(min(${componentViewport?.width||\"100vw\"}, 1410px), 1px) - 60px) / 4, 50px), 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fykvuz-container\",id:`${dFDcF1wOrq4_WTQmAI}-fykvuz`,nodeId:\"gRuemdAe4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardConsultationCard,{fRIbntgRe:ci15sXoHaq4_WTQmAI,height:\"100%\",id:\"gRuemdAe4\",If6UZHgBW:toResponsiveImage(xLZiRq4JMq4_WTQmAI),layoutId:\"gRuemdAe4\",ryerV11KR:toResponsiveImage(FWAhBi6Vjq4_WTQmAI),style:{height:\"100%\",width:\"100%\"},variant:\"tztMbtSty\",width:\"100%\",z27LqGa7Y:hVHwPyywIq4_WTQmAI})})})})})})})},idq4_WTQmAI);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-iwqckl\",\"data-framer-name\":\"Bottom\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"G7ogcGAfs\"},implicitPathVariables:undefined},{href:{webPageId:\"G7ogcGAfs\"},implicitPathVariables:undefined},{href:{webPageId:\"G7ogcGAfs\"},implicitPathVariables:undefined},{href:{webPageId:\"G7ogcGAfs\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d1gar7-container\",nodeId:\"LJOoL_CjY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks6[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks6[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks6[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"All Case Studies\",GT109pdEG:resolvedLinks6[0],height:\"100%\",id:\"LJOoL_CjY\",layoutId:\"LJOoL_CjY\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-zyzh85\",\"data-framer-name\":\"Client logo\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9p0ife\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-i4ue09\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c9dp52-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fzLyIqsy6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:60,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"fzLyIqsy6\",layoutId:\"fzLyIqsy6\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ui0a36\",\"data-framer-name\":\"White logos\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,pixelHeight:900,pixelWidth:900,sizes:\"271.26px\",src:\"https://framerusercontent.com/images/XWvtk8XEnPBiMarApX6IaoO3If4.png\",srcSet:\"https://framerusercontent.com/images/XWvtk8XEnPBiMarApX6IaoO3If4.png?scale-down-to=512 512w,https://framerusercontent.com/images/XWvtk8XEnPBiMarApX6IaoO3If4.png 900w\"},className:\"framer-3h9443\",\"data-framer-name\":\"Artboard 4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,pixelHeight:900,pixelWidth:900,sizes:\"271.26px\",src:\"https://framerusercontent.com/images/YOk1ym5H5EeNn024UVcSl9pQNhU.png\",srcSet:\"https://framerusercontent.com/images/YOk1ym5H5EeNn024UVcSl9pQNhU.png?scale-down-to=512 512w,https://framerusercontent.com/images/YOk1ym5H5EeNn024UVcSl9pQNhU.png 900w\"},className:\"framer-1t7xs88\",\"data-framer-name\":\"Artboard 5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,pixelHeight:900,pixelWidth:900,sizes:\"230.57px\",src:\"https://framerusercontent.com/images/CRAfpXmuKq1dLVC4Pd8BqQYjho.png\",srcSet:\"https://framerusercontent.com/images/CRAfpXmuKq1dLVC4Pd8BqQYjho.png?scale-down-to=512 512w,https://framerusercontent.com/images/CRAfpXmuKq1dLVC4Pd8BqQYjho.png 900w\"},className:\"framer-8w1ol\",\"data-framer-name\":\"Artboard 6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,pixelHeight:900,pixelWidth:900,sizes:\"203px\",src:\"https://framerusercontent.com/images/RWC6G5c2mSMnOR7o2LsNuP7E.png\",srcSet:\"https://framerusercontent.com/images/RWC6G5c2mSMnOR7o2LsNuP7E.png?scale-down-to=512 512w,https://framerusercontent.com/images/RWC6G5c2mSMnOR7o2LsNuP7E.png 900w\"},className:\"framer-1yefw21\",\"data-framer-name\":\"Artboard 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,pixelHeight:900,pixelWidth:900,sizes:\"271.26px\",src:\"https://framerusercontent.com/images/eQ5gImYivw2Zi1ZpfyznPRs0tA.png\",srcSet:\"https://framerusercontent.com/images/eQ5gImYivw2Zi1ZpfyznPRs0tA.png?scale-down-to=512 512w,https://framerusercontent.com/images/eQ5gImYivw2Zi1ZpfyznPRs0tA.png 900w\"},className:\"framer-tzcg7i\",\"data-framer-name\":\"Artboard 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,pixelHeight:900,pixelWidth:900,sizes:\"205.71px\",src:\"https://framerusercontent.com/images/GbQ03UGFE2l90nFndRJBbJhPrjs.png\",srcSet:\"https://framerusercontent.com/images/GbQ03UGFE2l90nFndRJBbJhPrjs.png?scale-down-to=512 512w,https://framerusercontent.com/images/GbQ03UGFE2l90nFndRJBbJhPrjs.png 900w\"},className:\"framer-1h8geak\",\"data-framer-name\":\"Artboard 3\"})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{\"data-framer-name\":\"Tablet\"},QvtLBAi1h:{\"data-framer-name\":\"Phone\"}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oowj7i\",\"data-framer-name\":\"Stats 03\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18jogmz\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pushw8\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mxpk9v\",\"data-framer-name\":\"Count Component\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mceeru-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"d1XistUXw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NumberCounter,{decimalSeparator:\"comma\",endNumber:65111019,font:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontColor:\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",fontSize:64,height:\"100%\",id:\"d1XistUXw\",layoutId:\"d1XistUXw\",loop:false,prefix:\"\",speed:1e3,startNumber:6511850,suffix:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\"},children:\"+\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.9px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\"},children:\"+\"})}),className:\"framer-3kirrb\",\"data-framer-name\":\"Number\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Generated on Amazon\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Generated on Amazon\"})}),className:\"framer-17rrrgg\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3hw35w\",\"data-framer-name\":\"Light\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ix9djg\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cxbpgu\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nv0tmm\",\"data-framer-name\":\"Count Component\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cl2h4w-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DoT4xOKdJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NumberCounter,{decimalSeparator:\"comma\",endNumber:88,font:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontColor:\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",fontSize:64,height:\"100%\",id:\"DoT4xOKdJ\",layoutId:\"DoT4xOKdJ\",loop:false,prefix:\"\",speed:20,startNumber:0,suffix:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\"},children:\"%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.9px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\"},children:\"%\"})}),className:\"framer-q3pu6e\",\"data-framer-name\":\"Number\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Client retention at 9 months\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Client retention at 9 months\"})}),className:\"framer-ad9fzz\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iacvju\",\"data-framer-name\":\"Light\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qbj3s8\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rlyaq5\",\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kbrc12\",\"data-framer-name\":\"Count Component\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zytdfu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fDUuksqB_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NumberCounter,{decimalSeparator:\"comma\",endNumber:5862541,font:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontColor:\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\",fontSize:64,height:\"100%\",id:\"fDUuksqB_\",layoutId:\"fDUuksqB_\",loop:false,prefix:\"\",speed:20,startNumber:5862400,suffix:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\"},children:\"+\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.9px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\"},children:\"+\"})}),className:\"framer-rbvn17\",\"data-framer-name\":\"Number\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Managed in adspend\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Managed in adspend\"})}),className:\"framer-p6fbvf\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sryzmn\",\"data-framer-name\":\"Light\"})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1umd8fk\",\"data-framer-name\":\"Client logo\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s1s5v5\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wrmeea\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-153q9ah-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PbEKAP9Z3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:60,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"PbEKAP9Z3\",layoutId:\"PbEKAP9Z3\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13p1mm0\",\"data-framer-name\":\"WH logo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:126,intrinsicWidth:260.6666666666667,pixelHeight:189,pixelWidth:391,src:\"https://framerusercontent.com/images/MNJaH9KKbyyc4uULozLVMbYjgk.png\"},className:\"framer-1a0sthw\",\"data-framer-name\":\"Layer 10\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103.33333333333333,intrinsicWidth:289.3333333333333,pixelHeight:155,pixelWidth:434,src:\"https://framerusercontent.com/images/LadJG69Vy7E7oPajZo7dWLfl4gU.png\"},className:\"framer-cgesx6\",\"data-framer-name\":\"Layer 3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:98,intrinsicWidth:316,pixelHeight:147,pixelWidth:474,src:\"https://framerusercontent.com/images/PNRCIBHJDhzmCK5tQ8QTuNuBEg.png\"},className:\"framer-hare4e\",\"data-framer-name\":\"Layer 9\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:96.66666666666667,intrinsicWidth:281.3333333333333,pixelHeight:145,pixelWidth:422,src:\"https://framerusercontent.com/images/DYAHGKGYwpLnmleDyAiF1CoNq0.png\"},className:\"framer-luegdd\",\"data-framer-name\":\"Layer 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:94,intrinsicWidth:245.33333333333334,pixelHeight:141,pixelWidth:368,src:\"https://framerusercontent.com/images/LfaK8UFRhT3F2C45ri3WvFDFLCk.png\"},className:\"framer-5zakh\",\"data-framer-name\":\"Layer 4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:86,intrinsicWidth:303.3333333333333,pixelHeight:129,pixelWidth:455,src:\"https://framerusercontent.com/images/zFf6RsNnAgAORd5JGxDlJ1MW3c.png\"},className:\"framer-hva4pl\",\"data-framer-name\":\"Layer 15\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:82.66666666666667,intrinsicWidth:229.33333333333334,pixelHeight:124,pixelWidth:344,src:\"https://framerusercontent.com/images/aUerRw1EiLBj7Qb5vlOgwMPG6o8.png\"},className:\"framer-48fwe2\",\"data-framer-name\":\"Layer 11\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:72,intrinsicWidth:278.6666666666667,pixelHeight:108,pixelWidth:418,src:\"https://framerusercontent.com/images/kIwG9E8hBYjalApqjGFmcLhEM.png\"},className:\"framer-uzutfz\",\"data-framer-name\":\"Layer 13\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:61.333333333333336,intrinsicWidth:226,pixelHeight:92,pixelWidth:339,src:\"https://framerusercontent.com/images/GSiJcgYTV1o9Mtvh5A88SlP50.png\"},className:\"framer-va2dmm\",\"data-framer-name\":\"Layer 6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:61.333333333333336,intrinsicWidth:202.66666666666666,pixelHeight:92,pixelWidth:304,src:\"https://framerusercontent.com/images/oefBgK567UY6zPimRZBsSbO3Pik.png\"},className:\"framer-tiasae\",\"data-framer-name\":\"Layer 8\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:275.3333333333333,pixelHeight:72,pixelWidth:413,src:\"https://framerusercontent.com/images/lALMbQSIDXiqyRQyREprtmxmQ.png\"},className:\"framer-u81bpe\",\"data-framer-name\":\"Layer 5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:255.33333333333334,pixelHeight:63,pixelWidth:383,src:\"https://framerusercontent.com/images/S34WQ21lit9y0trWVPh6vb7mPSc.png\"},className:\"framer-qcpef0\",\"data-framer-name\":\"Layer 14\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.333333333333336,intrinsicWidth:259.3333333333333,pixelHeight:53,pixelWidth:389,src:\"https://framerusercontent.com/images/KGrw3forGma1QD3YxeZL1Gbkn50.png\"},className:\"framer-1329u8b\",\"data-framer-name\":\"Layer 7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30.666666666666668,intrinsicWidth:224,pixelHeight:46,pixelWidth:336,src:\"https://framerusercontent.com/images/dNpJhCgBiOSDJIL8pMrO4xqjQ.png\"},className:\"framer-17zgpqz\",\"data-framer-name\":\"Layer 12\"})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cnizgz\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-21hjnr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DFnb2nvdd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:60,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"DFnb2nvdd\",layoutId:\"DFnb2nvdd\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-az8v9l\",\"data-framer-name\":\"WH logo 2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:61.333333333333336,intrinsicWidth:226,pixelHeight:92,pixelWidth:339,src:\"https://framerusercontent.com/images/GSiJcgYTV1o9Mtvh5A88SlP50.png\"},className:\"framer-1koz4g5\",\"data-framer-name\":\"Layer 6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:61.333333333333336,intrinsicWidth:202.66666666666666,pixelHeight:92,pixelWidth:304,src:\"https://framerusercontent.com/images/oefBgK567UY6zPimRZBsSbO3Pik.png\"},className:\"framer-1qb2hom\",\"data-framer-name\":\"Layer 8\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:275.3333333333333,pixelHeight:72,pixelWidth:413,src:\"https://framerusercontent.com/images/lALMbQSIDXiqyRQyREprtmxmQ.png\"},className:\"framer-7sbwg1\",\"data-framer-name\":\"Layer 5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:255.33333333333334,pixelHeight:63,pixelWidth:383,src:\"https://framerusercontent.com/images/S34WQ21lit9y0trWVPh6vb7mPSc.png\"},className:\"framer-aptyoq\",\"data-framer-name\":\"Layer 14\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.333333333333336,intrinsicWidth:259.3333333333333,pixelHeight:53,pixelWidth:389,src:\"https://framerusercontent.com/images/KGrw3forGma1QD3YxeZL1Gbkn50.png\"},className:\"framer-1up34op\",\"data-framer-name\":\"Layer 7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30.666666666666668,intrinsicWidth:224,pixelHeight:46,pixelWidth:336,src:\"https://framerusercontent.com/images/dNpJhCgBiOSDJIL8pMrO4xqjQ.png\"},className:\"framer-6451wn\",\"data-framer-name\":\"Layer 12\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:126,intrinsicWidth:260.6666666666667,pixelHeight:189,pixelWidth:391,src:\"https://framerusercontent.com/images/MNJaH9KKbyyc4uULozLVMbYjgk.png\"},className:\"framer-d9zjss\",\"data-framer-name\":\"Layer 10\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103.33333333333333,intrinsicWidth:289.3333333333333,pixelHeight:155,pixelWidth:434,src:\"https://framerusercontent.com/images/LadJG69Vy7E7oPajZo7dWLfl4gU.png\"},className:\"framer-1dy9jb7\",\"data-framer-name\":\"Layer 3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:98,intrinsicWidth:316,pixelHeight:147,pixelWidth:474,src:\"https://framerusercontent.com/images/PNRCIBHJDhzmCK5tQ8QTuNuBEg.png\"},className:\"framer-zjqqo0\",\"data-framer-name\":\"Layer 9\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:96.66666666666667,intrinsicWidth:281.3333333333333,pixelHeight:145,pixelWidth:422,src:\"https://framerusercontent.com/images/DYAHGKGYwpLnmleDyAiF1CoNq0.png\"},className:\"framer-kof6r1\",\"data-framer-name\":\"Layer 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:94,intrinsicWidth:245.33333333333334,pixelHeight:141,pixelWidth:368,src:\"https://framerusercontent.com/images/LfaK8UFRhT3F2C45ri3WvFDFLCk.png\"},className:\"framer-1lrixuq\",\"data-framer-name\":\"Layer 4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:86,intrinsicWidth:303.3333333333333,pixelHeight:129,pixelWidth:455,src:\"https://framerusercontent.com/images/zFf6RsNnAgAORd5JGxDlJ1MW3c.png\"},className:\"framer-1x3ofwt\",\"data-framer-name\":\"Layer 15\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:82.66666666666667,intrinsicWidth:229.33333333333334,pixelHeight:124,pixelWidth:344,src:\"https://framerusercontent.com/images/aUerRw1EiLBj7Qb5vlOgwMPG6o8.png\"},className:\"framer-184urn9\",\"data-framer-name\":\"Layer 11\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:72,intrinsicWidth:278.6666666666667,pixelHeight:108,pixelWidth:418,src:\"https://framerusercontent.com/images/kIwG9E8hBYjalApqjGFmcLhEM.png\"},className:\"framer-29qq1c\",\"data-framer-name\":\"Layer 13\"})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9sq1uy\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-iirfjn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CbQZR4GOZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:60,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"CbQZR4GOZ\",layoutId:\"CbQZR4GOZ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12iqtbc\",\"data-framer-name\":\"WH logo 3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:86,intrinsicWidth:303.3333333333333,pixelHeight:129,pixelWidth:455,src:\"https://framerusercontent.com/images/zFf6RsNnAgAORd5JGxDlJ1MW3c.png\"},className:\"framer-c9bjrg\",\"data-framer-name\":\"Layer 15\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:82.66666666666667,intrinsicWidth:229.33333333333334,pixelHeight:124,pixelWidth:344,src:\"https://framerusercontent.com/images/aUerRw1EiLBj7Qb5vlOgwMPG6o8.png\"},className:\"framer-1duzr9y\",\"data-framer-name\":\"Layer 11\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:72,intrinsicWidth:278.6666666666667,pixelHeight:108,pixelWidth:418,src:\"https://framerusercontent.com/images/kIwG9E8hBYjalApqjGFmcLhEM.png\"},className:\"framer-123hfh6\",\"data-framer-name\":\"Layer 13\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:61.333333333333336,intrinsicWidth:226,pixelHeight:92,pixelWidth:339,src:\"https://framerusercontent.com/images/GSiJcgYTV1o9Mtvh5A88SlP50.png\"},className:\"framer-1hovzvd\",\"data-framer-name\":\"Layer 6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:61.333333333333336,intrinsicWidth:202.66666666666666,pixelHeight:92,pixelWidth:304,src:\"https://framerusercontent.com/images/oefBgK567UY6zPimRZBsSbO3Pik.png\"},className:\"framer-1pv83yq\",\"data-framer-name\":\"Layer 8\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:275.3333333333333,pixelHeight:72,pixelWidth:413,src:\"https://framerusercontent.com/images/lALMbQSIDXiqyRQyREprtmxmQ.png\"},className:\"framer-1i0egoq\",\"data-framer-name\":\"Layer 5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:255.33333333333334,pixelHeight:63,pixelWidth:383,src:\"https://framerusercontent.com/images/S34WQ21lit9y0trWVPh6vb7mPSc.png\"},className:\"framer-xwy6go\",\"data-framer-name\":\"Layer 14\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:126,intrinsicWidth:260.6666666666667,pixelHeight:189,pixelWidth:391,src:\"https://framerusercontent.com/images/MNJaH9KKbyyc4uULozLVMbYjgk.png\"},className:\"framer-1bhqirc\",\"data-framer-name\":\"Layer 10\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103.33333333333333,intrinsicWidth:289.3333333333333,pixelHeight:155,pixelWidth:434,src:\"https://framerusercontent.com/images/LadJG69Vy7E7oPajZo7dWLfl4gU.png\"},className:\"framer-p9cqze\",\"data-framer-name\":\"Layer 3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:98,intrinsicWidth:316,pixelHeight:147,pixelWidth:474,src:\"https://framerusercontent.com/images/PNRCIBHJDhzmCK5tQ8QTuNuBEg.png\"},className:\"framer-phegy6\",\"data-framer-name\":\"Layer 9\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:96.66666666666667,intrinsicWidth:281.3333333333333,pixelHeight:145,pixelWidth:422,src:\"https://framerusercontent.com/images/DYAHGKGYwpLnmleDyAiF1CoNq0.png\"},className:\"framer-1izywxe\",\"data-framer-name\":\"Layer 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:94,intrinsicWidth:245.33333333333334,pixelHeight:141,pixelWidth:368,src:\"https://framerusercontent.com/images/LfaK8UFRhT3F2C45ri3WvFDFLCk.png\"},className:\"framer-hoeino\",\"data-framer-name\":\"Layer 4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.333333333333336,intrinsicWidth:259.3333333333333,pixelHeight:53,pixelWidth:389,src:\"https://framerusercontent.com/images/KGrw3forGma1QD3YxeZL1Gbkn50.png\"},className:\"framer-zpqqeb\",\"data-framer-name\":\"Layer 7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30.666666666666668,intrinsicWidth:224,pixelHeight:46,pixelWidth:336,src:\"https://framerusercontent.com/images/dNpJhCgBiOSDJIL8pMrO4xqjQ.png\"},className:\"framer-1j5n74t\",\"data-framer-name\":\"Layer 12\"})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1prd7b3\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rh9zqn\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13rw4ng\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-p964qs-container\",nodeId:\"a0vAg0x6e\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"a0vAg0x6e\",layoutId:\"a0vAg0x6e\",lPPOOL5ct:\"https://youtu.be/0u8z9gYd_vk\",ryerV11KR:addImageAlt({pixelHeight:361,pixelWidth:921,src:\"https://framerusercontent.com/images/IR9Ukyrb7FYiBTaT50bYkqo7H8.png\",srcSet:\"https://framerusercontent.com/images/IR9Ukyrb7FYiBTaT50bYkqo7H8.png?scale-down-to=512 512w,https://framerusercontent.com/images/IR9Ukyrb7FYiBTaT50bYkqo7H8.png 921w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Peter Tsou, CEO & Founder Schatzii\",width:\"100%\",z27LqGa7Y:\"You Guys are the True Experts!\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a6nlfh-container\",nodeId:\"NzmYIq6U0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"NzmYIq6U0\",layoutId:\"NzmYIq6U0\",lPPOOL5ct:\"https://youtu.be/-cLZaDfu1Ss\",ryerV11KR:addImageAlt({pixelHeight:500,pixelWidth:1553,src:\"https://framerusercontent.com/images/DT9v7dCd6mmFUfzOmmqovLSuE.png\",srcSet:\"https://framerusercontent.com/images/DT9v7dCd6mmFUfzOmmqovLSuE.png?scale-down-to=512 512w,https://framerusercontent.com/images/DT9v7dCd6mmFUfzOmmqovLSuE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DT9v7dCd6mmFUfzOmmqovLSuE.png 1553w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Sammy Nasorallahi, Founder & Chairman \",width:\"100%\",z27LqGa7Y:\"Your Professionalism is Remarkable! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yu4mmz-container\",nodeId:\"Yejn3Vmjt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"Yejn3Vmjt\",layoutId:\"Yejn3Vmjt\",lPPOOL5ct:\"https://youtu.be/x9YWFnuy_HM\",ryerV11KR:addImageAlt({pixelHeight:558,pixelWidth:1280,src:\"https://framerusercontent.com/images/0qlhnHOAM6uHovm9xZRk4EC3M.png\",srcSet:\"https://framerusercontent.com/images/0qlhnHOAM6uHovm9xZRk4EC3M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0qlhnHOAM6uHovm9xZRk4EC3M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0qlhnHOAM6uHovm9xZRk4EC3M.png 1280w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Louise Knowler, CEO & Founder\",width:\"100%\",z27LqGa7Y:\"Best Agency I've ever came across! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ebex0h-container\",nodeId:\"PqKCgXVx9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"PqKCgXVx9\",layoutId:\"PqKCgXVx9\",lPPOOL5ct:\"https://youtu.be/HsqKt5xu-AU\",ryerV11KR:addImageAlt({pixelHeight:313,pixelWidth:1211,src:\"https://framerusercontent.com/images/TbnuJbZZHyiyD4iJpU7JTtrLnk.png\",srcSet:\"https://framerusercontent.com/images/TbnuJbZZHyiyD4iJpU7JTtrLnk.png?scale-down-to=512 512w,https://framerusercontent.com/images/TbnuJbZZHyiyD4iJpU7JTtrLnk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TbnuJbZZHyiyD4iJpU7JTtrLnk.png 1211w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Amanda Reynolds , Director Remodeez\",width:\"100%\",z27LqGa7Y:\"Couldn't have asked for better Results!\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3zq4xe-container\",nodeId:\"Ir51U31zv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"Ir51U31zv\",layoutId:\"Ir51U31zv\",lPPOOL5ct:\"https://youtu.be/u07D2ub6plc\",ryerV11KR:addImageAlt({pixelHeight:41,pixelWidth:199,src:\"https://framerusercontent.com/images/vAyiRlXzAw0mkOD3GB8bTjlFIaw.png\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Janavi Dhawan, Founder Golden Tiger\",width:\"100%\",z27LqGa7Y:\"You've Got the Best Team on the Planet!\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11jcf22-container\",nodeId:\"e1zgRSNbF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"e1zgRSNbF\",layoutId:\"e1zgRSNbF\",lPPOOL5ct:\"https://youtu.be/Q7EKz1d07L0\",ryerV11KR:addImageAlt({pixelHeight:243,pixelWidth:1280,src:\"https://framerusercontent.com/images/g5zV2tyXZ1lsITPS7H7gwFv1Yw.png\",srcSet:\"https://framerusercontent.com/images/g5zV2tyXZ1lsITPS7H7gwFv1Yw.png?scale-down-to=512 512w,https://framerusercontent.com/images/g5zV2tyXZ1lsITPS7H7gwFv1Yw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g5zV2tyXZ1lsITPS7H7gwFv1Yw.png 1280w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Ryan Mckone, Brand Director \",width:\"100%\",z27LqGa7Y:\"Working with you has been a Pleasure\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-180jw7-container\",nodeId:\"N4gxIlHe1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"N4gxIlHe1\",layoutId:\"N4gxIlHe1\",lPPOOL5ct:\"https://youtu.be/KLEPraQrh-U\",ryerV11KR:addImageAlt({pixelHeight:618,pixelWidth:1280,src:\"https://framerusercontent.com/images/pv0aVO4CH9DDGoTRlqlGWx6Cvs.png\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Jonathan Martin, CEO Acqua Garden UK\",width:\"100%\",z27LqGa7Y:\"You are the Best in the Industry! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jkwcxe-container\",nodeId:\"gTMY4fuhR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"gTMY4fuhR\",layoutId:\"gTMY4fuhR\",lPPOOL5ct:\"https://youtu.be/8fMMbgrJJNs\",ryerV11KR:addImageAlt({pixelHeight:452,pixelWidth:1280,src:\"https://framerusercontent.com/images/8iPj64k2kykZDonMRboBh5tVS8.png\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Holly Michniak, Founder, Boobdyada\",width:\"100%\",z27LqGa7Y:\"Most Thorough Team EVER! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-145j0vm-container\",nodeId:\"onvsePa9j\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"onvsePa9j\",layoutId:\"onvsePa9j\",lPPOOL5ct:\"https://youtu.be/ffI4yCwwXBo\",ryerV11KR:addImageAlt({pixelHeight:298,pixelWidth:1280,src:\"https://framerusercontent.com/images/N7DB1rHkSVUXliNVCX4XExGycgk.png\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Drawlon Tsang, CEO, PowerNet Inc\",width:\"100%\",z27LqGa7Y:\"We were not expecting this! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vcf44r-container\",nodeId:\"AtnENjv7k\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"AtnENjv7k\",layoutId:\"AtnENjv7k\",lPPOOL5ct:\"https://youtu.be/uDnJVGhrzjs\",ryerV11KR:addImageAlt({pixelHeight:508,pixelWidth:1280,src:\"https://framerusercontent.com/images/fuYoe21sLM2CMc4oqjku00NIocI.png\",srcSet:\"https://framerusercontent.com/images/fuYoe21sLM2CMc4oqjku00NIocI.png?scale-down-to=512 512w,https://framerusercontent.com/images/fuYoe21sLM2CMc4oqjku00NIocI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fuYoe21sLM2CMc4oqjku00NIocI.png 1280w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Sue Devitt, CEO, Artisan L'uxe Beauty\",width:\"100%\",z27LqGa7Y:\"I Love you Guys! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1etxpqn-container\",nodeId:\"M4vjOFOxP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"M4vjOFOxP\",layoutId:\"M4vjOFOxP\",lPPOOL5ct:\"https://youtu.be/D8aiQEAz0D4\",ryerV11KR:addImageAlt({pixelHeight:327,pixelWidth:1280,src:\"https://framerusercontent.com/images/FIk2ukO6nO68rY5VoHMoN02Tc.png\",srcSet:\"https://framerusercontent.com/images/FIk2ukO6nO68rY5VoHMoN02Tc.png?scale-down-to=512 512w,https://framerusercontent.com/images/FIk2ukO6nO68rY5VoHMoN02Tc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FIk2ukO6nO68rY5VoHMoN02Tc.png 1280w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Marat Dosov, Founder, Dosovan Warehouse \",width:\"100%\",z27LqGa7Y:\"You guys know what you're doing! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qq87jb-container\",nodeId:\"g61R5JrIQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"g61R5JrIQ\",layoutId:\"g61R5JrIQ\",lPPOOL5ct:\"https://youtu.be/7T73NmojKkQ\",ryerV11KR:addImageAlt({pixelHeight:495,pixelWidth:1280,src:\"https://framerusercontent.com/images/xvcPoyX1XN8GLIhx5EB48tdOe84.png\",srcSet:\"https://framerusercontent.com/images/xvcPoyX1XN8GLIhx5EB48tdOe84.png?scale-down-to=512 512w,https://framerusercontent.com/images/xvcPoyX1XN8GLIhx5EB48tdOe84.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xvcPoyX1XN8GLIhx5EB48tdOe84.png 1280w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Atif Munir, CEO, Best Buy Items UK\",width:\"100%\",z27LqGa7Y:\"Amazing & Outstanding Work! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-h0fkmn-container\",nodeId:\"RbBYUTgia\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"RbBYUTgia\",layoutId:\"RbBYUTgia\",lPPOOL5ct:\"https://youtu.be/0FMVX6m8rko\",ryerV11KR:addImageAlt({pixelHeight:522,pixelWidth:1280,src:\"https://framerusercontent.com/images/SnKDgpdltEh9Qn4qGdvhPIiYvhs.png\",srcSet:\"https://framerusercontent.com/images/SnKDgpdltEh9Qn4qGdvhPIiYvhs.png?scale-down-to=512 512w,https://framerusercontent.com/images/SnKDgpdltEh9Qn4qGdvhPIiYvhs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SnKDgpdltEh9Qn4qGdvhPIiYvhs.png 1280w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Jason Lawner, Manager Spring Footwear\",width:\"100%\",z27LqGa7Y:\"We can Improve because of you! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jfmbwa-container\",nodeId:\"mkHq8mXi8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"mkHq8mXi8\",layoutId:\"mkHq8mXi8\",lPPOOL5ct:\"https://youtu.be/c-LV3cC4zJM\",ryerV11KR:addImageAlt({pixelHeight:568,pixelWidth:1280,src:\"https://framerusercontent.com/images/4f0sr6owpkyvOOTH29Ra3zfs5w.png\",srcSet:\"https://framerusercontent.com/images/4f0sr6owpkyvOOTH29Ra3zfs5w.png?scale-down-to=512 512w,https://framerusercontent.com/images/4f0sr6owpkyvOOTH29Ra3zfs5w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4f0sr6owpkyvOOTH29Ra3zfs5w.png 1280w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Jos Williams, Founder Ubeequee \",width:\"100%\",z27LqGa7Y:\"Best Agency I've Ever worked with! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oj7b7r-container\",nodeId:\"kB3GnuN0P\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"kB3GnuN0P\",layoutId:\"kB3GnuN0P\",lPPOOL5ct:\"https://youtu.be/S6ME9-s92CI\",ryerV11KR:addImageAlt({pixelHeight:279,pixelWidth:1280,src:\"https://framerusercontent.com/images/NdpIE9IImeUACadYiPd1OzVH8k.png\",srcSet:\"https://framerusercontent.com/images/NdpIE9IImeUACadYiPd1OzVH8k.png?scale-down-to=512 512w,https://framerusercontent.com/images/NdpIE9IImeUACadYiPd1OzVH8k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NdpIE9IImeUACadYiPd1OzVH8k.png 1280w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Roy Lewis, Founder Hebridean Liqueur\",width:\"100%\",z27LqGa7Y:\"Advance Amazon is Far too Professional\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-r7dydm-container\",nodeId:\"RSC9TdX6n\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"RSC9TdX6n\",layoutId:\"RSC9TdX6n\",lPPOOL5ct:\"https://youtu.be/jd5LUCHElcY\",ryerV11KR:addImageAlt({pixelHeight:2830,pixelWidth:8251,src:\"https://framerusercontent.com/images/WidcGUB7yKbJGP6u753Vt4zY.png\",srcSet:\"https://framerusercontent.com/images/WidcGUB7yKbJGP6u753Vt4zY.png?scale-down-to=512 512w,https://framerusercontent.com/images/WidcGUB7yKbJGP6u753Vt4zY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WidcGUB7yKbJGP6u753Vt4zY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WidcGUB7yKbJGP6u753Vt4zY.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/WidcGUB7yKbJGP6u753Vt4zY.png 8251w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Ricardo Rodriguez, Director, Mobili Fiver\",width:\"100%\",z27LqGa7Y:\"Great Job Guys! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w5qeyz-container\",nodeId:\"gpDGFJcG6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"gpDGFJcG6\",layoutId:\"gpDGFJcG6\",lPPOOL5ct:\"https://youtu.be/bNSl5eSPBXc\",ryerV11KR:addImageAlt({pixelHeight:396,pixelWidth:1280,src:\"https://framerusercontent.com/images/kgr8fQ7gF7C6ZGGfB504FTNKc.png\",srcSet:\"https://framerusercontent.com/images/kgr8fQ7gF7C6ZGGfB504FTNKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/kgr8fQ7gF7C6ZGGfB504FTNKc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kgr8fQ7gF7C6ZGGfB504FTNKc.png 1280w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Michael Dubson, CEO, New Trend Beauty\",width:\"100%\",z27LqGa7Y:\"We needed your help!\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3lsr02-container\",nodeId:\"tFFzNFYNa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"tFFzNFYNa\",layoutId:\"tFFzNFYNa\",lPPOOL5ct:\"https://youtu.be/IeH3QAyFkU8\",ryerV11KR:addImageAlt({pixelHeight:527,pixelWidth:1280,src:\"https://framerusercontent.com/images/BJSOvqLFXAvdetw9OuX7p3YJJLg.png\",srcSet:\"https://framerusercontent.com/images/BJSOvqLFXAvdetw9OuX7p3YJJLg.png?scale-down-to=512 512w,https://framerusercontent.com/images/BJSOvqLFXAvdetw9OuX7p3YJJLg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BJSOvqLFXAvdetw9OuX7p3YJJLg.png 1280w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Berk Inam, Director, Godiva Chocolates\",width:\"100%\",z27LqGa7Y:\"I  Learned a lot from you guys! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-r1hq8c-container\",nodeId:\"d_6kYJx14\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"d_6kYJx14\",layoutId:\"d_6kYJx14\",lPPOOL5ct:\"https://youtu.be/SeKxXZ-mPFE\",ryerV11KR:addImageAlt({pixelHeight:304,pixelWidth:1280,src:\"https://framerusercontent.com/images/6Cyk2itMfQiKBRjOjHCfqavxM.png\",srcSet:\"https://framerusercontent.com/images/6Cyk2itMfQiKBRjOjHCfqavxM.png?scale-down-to=512 512w,https://framerusercontent.com/images/6Cyk2itMfQiKBRjOjHCfqavxM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6Cyk2itMfQiKBRjOjHCfqavxM.png 1280w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Paul MacWhirter, CEO, Collectables UK\",width:\"100%\",z27LqGa7Y:\"We Couldn't have done it without you! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-142ttzn-container\",nodeId:\"KsoFtuB5u\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"KsoFtuB5u\",layoutId:\"KsoFtuB5u\",lPPOOL5ct:\"https://youtu.be/8e7D5RqdFeE\",ryerV11KR:addImageAlt({pixelHeight:59,pixelWidth:203,src:\"https://framerusercontent.com/images/UevD7C74U7FeWpGaq5b7z6uOMA.png\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Mark Gregory, CEO, Founder EZ2C\",width:\"100%\",z27LqGa7Y:\"Fascinating Work, I am Really Impressed\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10zwcxn-container\",nodeId:\"GTFLvX_XH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"GTFLvX_XH\",layoutId:\"GTFLvX_XH\",lPPOOL5ct:\"https://youtu.be/tsm1zCL_BC8\",ryerV11KR:addImageAlt({pixelHeight:312,pixelWidth:600,src:\"https://framerusercontent.com/images/52N7Bgl3tj5Z0acpIjwMJMMKc.png\",srcSet:\"https://framerusercontent.com/images/52N7Bgl3tj5Z0acpIjwMJMMKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/52N7Bgl3tj5Z0acpIjwMJMMKc.png 600w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Esben, Media Manager, BabyDan\",width:\"100%\",z27LqGa7Y:\"Glad We're on the Same Page! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5ka544-container\",nodeId:\"DncIqkF6p\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"DncIqkF6p\",layoutId:\"DncIqkF6p\",lPPOOL5ct:\"https://youtu.be/oMLy8j5L1QU\",ryerV11KR:addImageAlt({pixelHeight:231,pixelWidth:1280,src:\"https://framerusercontent.com/images/2DcPb7UhVNal3643gnLAwcx6Scw.png\",srcSet:\"https://framerusercontent.com/images/2DcPb7UhVNal3643gnLAwcx6Scw.png?scale-down-to=512 512w,https://framerusercontent.com/images/2DcPb7UhVNal3643gnLAwcx6Scw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2DcPb7UhVNal3643gnLAwcx6Scw.png 1280w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Eric Shupack, President Furnitech\",width:\"100%\",z27LqGa7Y:\"I will fly you out to Milan! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f5vw6y-container\",nodeId:\"vFOpxVUkU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"vFOpxVUkU\",layoutId:\"vFOpxVUkU\",lPPOOL5ct:\"https://youtu.be/NFS7-dLXXBU\",ryerV11KR:addImageAlt({pixelHeight:314,pixelWidth:941,src:\"https://framerusercontent.com/images/JtEDrMKwkJBpPEBdYeaXhnQKNy0.png\",srcSet:\"https://framerusercontent.com/images/JtEDrMKwkJBpPEBdYeaXhnQKNy0.png?scale-down-to=512 512w,https://framerusercontent.com/images/JtEDrMKwkJBpPEBdYeaXhnQKNy0.png 941w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Matt Kapulsky, Founder Ikonic\",width:\"100%\",z27LqGa7Y:\"I am Thoroughly Impressed! Good Work!\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tvwfiw-container\",nodeId:\"li7pEcZDQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"li7pEcZDQ\",layoutId:\"li7pEcZDQ\",lPPOOL5ct:\"https://youtu.be/xMuRiTgNMUw\",ryerV11KR:addImageAlt({pixelHeight:614,pixelWidth:1155,src:\"https://framerusercontent.com/images/IVTNiUN5q2vI7YXBukRSsnn2hgo.png\",srcSet:\"https://framerusercontent.com/images/IVTNiUN5q2vI7YXBukRSsnn2hgo.png?scale-down-to=512 512w,https://framerusercontent.com/images/IVTNiUN5q2vI7YXBukRSsnn2hgo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IVTNiUN5q2vI7YXBukRSsnn2hgo.png 1155w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Tony Waiy, Founder Livi Store\",width:\"100%\",z27LqGa7Y:\"You Guys have done a really great Job! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-343bk7-container\",nodeId:\"ZoWPx_6Mt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"ZoWPx_6Mt\",layoutId:\"ZoWPx_6Mt\",lPPOOL5ct:\"https://youtu.be/R0PssR2nqZI\",ryerV11KR:addImageAlt({pixelHeight:390,pixelWidth:1123,src:\"https://framerusercontent.com/images/ZFWgMUEjO8iufAXewwfBN0cg.png\",srcSet:\"https://framerusercontent.com/images/ZFWgMUEjO8iufAXewwfBN0cg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZFWgMUEjO8iufAXewwfBN0cg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZFWgMUEjO8iufAXewwfBN0cg.png 1123w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Yona Kim, Director Sinjimoru\",width:\"100%\",z27LqGa7Y:\"I am Blown Away! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9gwf41-container\",nodeId:\"qNayLkRXV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"qNayLkRXV\",layoutId:\"qNayLkRXV\",lPPOOL5ct:\"https://youtu.be/KrV9Gj2nkf0\",ryerV11KR:addImageAlt({pixelHeight:535,pixelWidth:779,src:\"https://framerusercontent.com/images/9Gy22NoGzNq3MVcSYIzjh4ZWOI.png\",srcSet:\"https://framerusercontent.com/images/9Gy22NoGzNq3MVcSYIzjh4ZWOI.png?scale-down-to=512 512w,https://framerusercontent.com/images/9Gy22NoGzNq3MVcSYIzjh4ZWOI.png 779w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Anthony Founder & CEO Illosketch Book\",width:\"100%\",z27LqGa7Y:\"You guys do Great Work! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f7bad7-container\",nodeId:\"HzdGWcMXZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"HzdGWcMXZ\",layoutId:\"HzdGWcMXZ\",lPPOOL5ct:\"https://youtu.be/DPHmjfc_3p0\",ryerV11KR:addImageAlt({pixelHeight:479,pixelWidth:788,src:\"https://framerusercontent.com/images/pWQdNvTVAMshKnkiX6lWlWVXDrg.png\",srcSet:\"https://framerusercontent.com/images/pWQdNvTVAMshKnkiX6lWlWVXDrg.png?scale-down-to=512 512w,https://framerusercontent.com/images/pWQdNvTVAMshKnkiX6lWlWVXDrg.png 788w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Dan from the Spice Lab\",width:\"100%\",z27LqGa7Y:\"Extremely Professional & Informative\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ahhmgn-container\",nodeId:\"xAxmMlX43\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"xAxmMlX43\",layoutId:\"xAxmMlX43\",lPPOOL5ct:\"https://youtu.be/dqaMQiJV458\",ryerV11KR:addImageAlt({pixelHeight:552,pixelWidth:685,src:\"https://framerusercontent.com/images/vcJMgF6tYuE7MbklUxba1nXdcGw.png\",srcSet:\"https://framerusercontent.com/images/vcJMgF6tYuE7MbklUxba1nXdcGw.png?scale-down-to=512 512w,https://framerusercontent.com/images/vcJMgF6tYuE7MbklUxba1nXdcGw.png 685w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Daryl, Managing Partner Pukka Pads\",width:\"100%\",z27LqGa7Y:\"Great Job Guys!\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-15xnk82-container\",nodeId:\"IJTKVyOOi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"IJTKVyOOi\",layoutId:\"IJTKVyOOi\",lPPOOL5ct:\"https://www.youtube.com/watch?v=A_H8JLuvtQ8\",ryerV11KR:addImageAlt({pixelHeight:500,pixelWidth:1134,src:\"https://framerusercontent.com/images/RsJvkTAhCTXtyQ1CJNkIa5XOR8w.png\",srcSet:\"https://framerusercontent.com/images/RsJvkTAhCTXtyQ1CJNkIa5XOR8w.png?scale-down-to=512 512w,https://framerusercontent.com/images/RsJvkTAhCTXtyQ1CJNkIa5XOR8w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RsJvkTAhCTXtyQ1CJNkIa5XOR8w.png 1134w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Simon Honeyborne, CEO Sacred Essence\",width:\"100%\",z27LqGa7Y:\"This is a Valuable Partnership\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y4k04a-container\",nodeId:\"ft5Ec0Jsf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"ft5Ec0Jsf\",layoutId:\"ft5Ec0Jsf\",lPPOOL5ct:\"https://youtu.be/DSFET_YGAkY\",ryerV11KR:addImageAlt({pixelHeight:100,pixelWidth:87,src:\"https://framerusercontent.com/images/tvF8HNKyBzGMFkkque4UJXKunE.jpg\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Mac McNally, Owner Sci Sports UK\",width:\"100%\",z27LqGa7Y:\"I cannot believe what I've seen! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-lxieww-container\",nodeId:\"t0Q6CORmm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"t0Q6CORmm\",layoutId:\"t0Q6CORmm\",lPPOOL5ct:\"https://youtu.be/jUqmksc71ts\",ryerV11KR:addImageAlt({pixelHeight:423,pixelWidth:807,src:\"https://framerusercontent.com/images/7ajrvOpj4ijgTrPkFURDVTYB6dk.png\",srcSet:\"https://framerusercontent.com/images/7ajrvOpj4ijgTrPkFURDVTYB6dk.png?scale-down-to=512 512w,https://framerusercontent.com/images/7ajrvOpj4ijgTrPkFURDVTYB6dk.png 807w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Ashok R, CEO Sujash UK\",width:\"100%\",z27LqGa7Y:\"Great Deal of Potential here!\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18tsem9-container\",nodeId:\"eiiBG9rj2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"eiiBG9rj2\",layoutId:\"eiiBG9rj2\",lPPOOL5ct:\"https://youtu.be/9EweEAQWDaw\",ryerV11KR:addImageAlt({pixelHeight:427,pixelWidth:1236,src:\"https://framerusercontent.com/images/JGC2Zdd0NF1KTJ8Gqg7e2LAR4Cg.png\",srcSet:\"https://framerusercontent.com/images/JGC2Zdd0NF1KTJ8Gqg7e2LAR4Cg.png?scale-down-to=512 512w,https://framerusercontent.com/images/JGC2Zdd0NF1KTJ8Gqg7e2LAR4Cg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JGC2Zdd0NF1KTJ8Gqg7e2LAR4Cg.png 1236w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Kanat Ilter, Founder Mount it\",width:\"100%\",z27LqGa7Y:\"I appreciate your effort!\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-31xgte-container\",nodeId:\"QgM4mNMnS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"QgM4mNMnS\",layoutId:\"QgM4mNMnS\",lPPOOL5ct:\"https://youtu.be/0xSHA6zCCAI\",ryerV11KR:addImageAlt({pixelHeight:549,pixelWidth:568,src:\"https://framerusercontent.com/images/YLcYQBln8VtJNx6UThsnoMGl1eo.png\",srcSet:\"https://framerusercontent.com/images/YLcYQBln8VtJNx6UThsnoMGl1eo.png?scale-down-to=512 512w,https://framerusercontent.com/images/YLcYQBln8VtJNx6UThsnoMGl1eo.png 568w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Raj Chauhdary, Manager Woodword Tooling\",width:\"100%\",z27LqGa7Y:\"Amazing work as always! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pm7zfl-container\",nodeId:\"mqHuLuoAg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"mqHuLuoAg\",layoutId:\"mqHuLuoAg\",lPPOOL5ct:\"https://youtu.be/Usa_blbq3kU\",ryerV11KR:addImageAlt({pixelHeight:345,pixelWidth:1201,src:\"https://framerusercontent.com/images/ZTfesaXi1FqtQlAPOMpchj2hUFI.png\",srcSet:\"https://framerusercontent.com/images/ZTfesaXi1FqtQlAPOMpchj2hUFI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZTfesaXi1FqtQlAPOMpchj2hUFI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZTfesaXi1FqtQlAPOMpchj2hUFI.png 1201w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Joseph Bean, Owner Baggalini\",width:\"100%\",z27LqGa7Y:\"You are the Vendor Experts! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-wlqtg7-container\",nodeId:\"KMipijf_A\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"KMipijf_A\",layoutId:\"KMipijf_A\",lPPOOL5ct:\"https://youtu.be/9ASDsLgUu0k\",ryerV11KR:addImageAlt({pixelHeight:169,pixelWidth:240,src:\"https://framerusercontent.com/images/eqnXcifQ2OLrHpGo6NCNZP76YX8.png\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"June Rust, CEO Postum\",width:\"100%\",z27LqGa7Y:\"I cannot believe what you have shown me! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ptdlb8-container\",nodeId:\"u632x6v0e\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"u632x6v0e\",layoutId:\"u632x6v0e\",lPPOOL5ct:\"https://youtu.be/3SkAUvYmWuY\",ryerV11KR:addImageAlt({pixelHeight:428,pixelWidth:1032,src:\"https://framerusercontent.com/images/eGbGS5RRh7qidEyZlwJysgYU3Y.png\",srcSet:\"https://framerusercontent.com/images/eGbGS5RRh7qidEyZlwJysgYU3Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/eGbGS5RRh7qidEyZlwJysgYU3Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eGbGS5RRh7qidEyZlwJysgYU3Y.png 1032w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Inga, Director Lauma Medical\",width:\"100%\",z27LqGa7Y:\"Our sales have Tripled! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a3k0lm-container\",nodeId:\"znBJUQuSX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"znBJUQuSX\",layoutId:\"znBJUQuSX\",lPPOOL5ct:\"https://youtu.be/QvJ5zwBxOoE\",ryerV11KR:addImageAlt({pixelHeight:354,pixelWidth:1257,src:\"https://framerusercontent.com/images/1ezzBdCA8A3JuzhLVpd0Y99OMQ.png\",srcSet:\"https://framerusercontent.com/images/1ezzBdCA8A3JuzhLVpd0Y99OMQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/1ezzBdCA8A3JuzhLVpd0Y99OMQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1ezzBdCA8A3JuzhLVpd0Y99OMQ.png 1257w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Kenneth Kwiatkowski, Founder, Grasshole\",width:\"100%\",z27LqGa7Y:\"Amazing Results!\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-40kjj8-container\",nodeId:\"QWbCWoksw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"QWbCWoksw\",layoutId:\"QWbCWoksw\",lPPOOL5ct:\"https://youtu.be/vbyxJOg2sxA\",ryerV11KR:addImageAlt({pixelHeight:448,pixelWidth:997,src:\"https://framerusercontent.com/images/2k2mAH0OZWjnT9pbW0oMhjWDs.png\",srcSet:\"https://framerusercontent.com/images/2k2mAH0OZWjnT9pbW0oMhjWDs.png?scale-down-to=512 512w,https://framerusercontent.com/images/2k2mAH0OZWjnT9pbW0oMhjWDs.png 997w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Joe Bean, Founder Dearfoams\",width:\"100%\",z27LqGa7Y:\"Never met amazon experts like you! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e9ktpa-container\",nodeId:\"XcTDNs38C\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"XcTDNs38C\",layoutId:\"XcTDNs38C\",lPPOOL5ct:\"https://youtu.be/t-EjmZqym1I\",ryerV11KR:addImageAlt({pixelHeight:215,pixelWidth:1204,src:\"https://framerusercontent.com/images/GCZSsNmE6luNjj0cnwFA9JczYZA.png\",srcSet:\"https://framerusercontent.com/images/GCZSsNmE6luNjj0cnwFA9JczYZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/GCZSsNmE6luNjj0cnwFA9JczYZA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GCZSsNmE6luNjj0cnwFA9JczYZA.png 1204w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Roy Huang, Director Spectre\",width:\"100%\",z27LqGa7Y:\"It is Great! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pit25t-container\",nodeId:\"JwkFFhpxD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"JwkFFhpxD\",layoutId:\"JwkFFhpxD\",lPPOOL5ct:\"https://youtu.be/257pZ_vh_0o\",ryerV11KR:addImageAlt({pixelHeight:498,pixelWidth:599,src:\"https://framerusercontent.com/images/qHtNfiT91aVHsgMG6GQzB6nqg.png\",srcSet:\"https://framerusercontent.com/images/qHtNfiT91aVHsgMG6GQzB6nqg.png?scale-down-to=512 512w,https://framerusercontent.com/images/qHtNfiT91aVHsgMG6GQzB6nqg.png 599w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Richard Brown, Founder XYZ Pro\",width:\"100%\",z27LqGa7Y:\"Appreciate the Effort!\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-eii6vh-container\",nodeId:\"lsO8RuU57\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"lsO8RuU57\",layoutId:\"lsO8RuU57\",lPPOOL5ct:\"https://youtu.be/JEVSPQQrMSc\",ryerV11KR:addImageAlt({pixelHeight:271,pixelWidth:1002,src:\"https://framerusercontent.com/images/R5uKin6vY4mnBuwp1xB5Ff02Nk.png\",srcSet:\"https://framerusercontent.com/images/R5uKin6vY4mnBuwp1xB5Ff02Nk.png?scale-down-to=512 512w,https://framerusercontent.com/images/R5uKin6vY4mnBuwp1xB5Ff02Nk.png 1002w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Adam Tate CEO Party Machines\",width:\"100%\",z27LqGa7Y:\"Better than all other Agencied! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j8d9u3-container\",nodeId:\"NUpRJhfWA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"NUpRJhfWA\",layoutId:\"NUpRJhfWA\",lPPOOL5ct:\"https://youtu.be/euWvzoYCKnc\",ryerV11KR:addImageAlt({pixelHeight:300,pixelWidth:970,src:\"https://framerusercontent.com/images/fTVGaHd8Ucxl0735zaRvKiU9uWc.jpg\",srcSet:\"https://framerusercontent.com/images/fTVGaHd8Ucxl0735zaRvKiU9uWc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fTVGaHd8Ucxl0735zaRvKiU9uWc.jpg 970w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Rajiv Chandra, CEO Mum & You UK\",width:\"100%\",z27LqGa7Y:\"We are more than Impressed! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17pxtuy-container\",nodeId:\"Ak43gmMKC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"Ak43gmMKC\",layoutId:\"Ak43gmMKC\",lPPOOL5ct:\"https://youtu.be/9kDu6TBcZEE\",ryerV11KR:addImageAlt({pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/tWumsm6uf5Qh5jShInnNj1QM5q8.png\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Rock Liu, Founder Innovv\",width:\"100%\",z27LqGa7Y:\"Best Agency EVER! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1224xrk-container\",nodeId:\"ld5Ds55JD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"ld5Ds55JD\",layoutId:\"ld5Ds55JD\",lPPOOL5ct:\"https://youtu.be/qmAH1G5nRTE\",ryerV11KR:addImageAlt({pixelHeight:531,pixelWidth:641,src:\"https://framerusercontent.com/images/RIox8o8i20z3RZ85CylzQYuFDm4.png\",srcSet:\"https://framerusercontent.com/images/RIox8o8i20z3RZ85CylzQYuFDm4.png?scale-down-to=512 512w,https://framerusercontent.com/images/RIox8o8i20z3RZ85CylzQYuFDm4.png 641w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Altan Alansu, CEO Cerezpazari\",width:\"100%\",z27LqGa7Y:\"Our sales have doubled! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-nibbup-container\",nodeId:\"PfERtRK3z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"PfERtRK3z\",layoutId:\"PfERtRK3z\",lPPOOL5ct:\"https://youtu.be/x5mb9SBjCf8\",ryerV11KR:addImageAlt({pixelHeight:378,pixelWidth:1115,src:\"https://framerusercontent.com/images/aBHwUUWzAOh5M1ZXaN1pmQcmsNg.png\",srcSet:\"https://framerusercontent.com/images/aBHwUUWzAOh5M1ZXaN1pmQcmsNg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aBHwUUWzAOh5M1ZXaN1pmQcmsNg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aBHwUUWzAOh5M1ZXaN1pmQcmsNg.png 1115w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Caroline Ciesla, Brand Manager DLC\",width:\"100%\",z27LqGa7Y:\"I was not expecting this at all! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jocrb5-container\",nodeId:\"DjT7SOPn5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"DjT7SOPn5\",layoutId:\"DjT7SOPn5\",lPPOOL5ct:\"https://youtu.be/CTNIh_ZUNRM\",ryerV11KR:addImageAlt({pixelHeight:148,pixelWidth:948,src:\"https://framerusercontent.com/images/b8jxjoLp4nMUTUEba2n59gzlN8.png\",srcSet:\"https://framerusercontent.com/images/b8jxjoLp4nMUTUEba2n59gzlN8.png?scale-down-to=512 512w,https://framerusercontent.com/images/b8jxjoLp4nMUTUEba2n59gzlN8.png 948w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Kev Owner at Camille UK\",width:\"100%\",z27LqGa7Y:\"Incredible delivery as always! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vfbo56-container\",nodeId:\"oWg5TX3Qs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"oWg5TX3Qs\",layoutId:\"oWg5TX3Qs\",lPPOOL5ct:\"https://youtu.be/JHBmus2LkNI\",ryerV11KR:addImageAlt({pixelHeight:455,pixelWidth:1175,src:\"https://framerusercontent.com/images/cs3z0JskzsRBZiVIkG3Fts41Ck.png\",srcSet:\"https://framerusercontent.com/images/cs3z0JskzsRBZiVIkG3Fts41Ck.png?scale-down-to=512 512w,https://framerusercontent.com/images/cs3z0JskzsRBZiVIkG3Fts41Ck.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cs3z0JskzsRBZiVIkG3Fts41Ck.png 1175w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Rich Mason, Founder Froglog\",width:\"100%\",z27LqGa7Y:\"This has been extremely helpful\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12re7ce-container\",nodeId:\"BxtaQ__iV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"BxtaQ__iV\",layoutId:\"BxtaQ__iV\",lPPOOL5ct:\"https://youtu.be/nV0DyRVIFM0\",ryerV11KR:addImageAlt({pixelHeight:296,pixelWidth:1590,src:\"https://framerusercontent.com/images/TU0M0Gt1nqHBtDkbB3HXLjI7Rk.png\",srcSet:\"https://framerusercontent.com/images/TU0M0Gt1nqHBtDkbB3HXLjI7Rk.png?scale-down-to=512 512w,https://framerusercontent.com/images/TU0M0Gt1nqHBtDkbB3HXLjI7Rk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TU0M0Gt1nqHBtDkbB3HXLjI7Rk.png 1590w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Claudiu Secara, CEO Algora\",width:\"100%\",z27LqGa7Y:\"Your intituation is amazing! \"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oql7a9-container\",nodeId:\"A9Z10yes7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"A9Z10yes7\",layoutId:\"A9Z10yes7\",lPPOOL5ct:\"https://youtu.be/p0gWoIUfrYo\",ryerV11KR:addImageAlt({pixelHeight:576,pixelWidth:569,src:\"https://framerusercontent.com/images/FQ7ZNlnecaCEjiCjYbcrfUgOQQ.png\",srcSet:\"https://framerusercontent.com/images/FQ7ZNlnecaCEjiCjYbcrfUgOQQ.png 569w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Jessee Lovaas Direcotor, Just Toys LLC\",width:\"100%\",z27LqGa7Y:\"Excited to revamp our Listings!\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"710px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ynvrtq-container\",nodeId:\"x7oodYl5c\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"YD1D8FiPK\"}},children:/*#__PURE__*/_jsx(YoutubeCard2,{height:\"100%\",id:\"x7oodYl5c\",layoutId:\"x7oodYl5c\",lPPOOL5ct:\"https://youtu.be/AN7tiyLME4M\",ryerV11KR:addImageAlt({pixelHeight:255,pixelWidth:1155,src:\"https://framerusercontent.com/images/kmWpnsZRfx0WBwLP58RRAfMiiRA.png\",srcSet:\"https://framerusercontent.com/images/kmWpnsZRfx0WBwLP58RRAfMiiRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/kmWpnsZRfx0WBwLP58RRAfMiiRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kmWpnsZRfx0WBwLP58RRAfMiiRA.png 1155w\"},\"\"),style:{width:\"100%\"},variant:\"TqkC4IMVi\",w9GS3W6Sr:\"Kyle McCauley Lipper International\",width:\"100%\",z27LqGa7Y:\"Incredible Team! \"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14j7s0i\",\"data-framer-name\":\"Bottom\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-a6se8n-container\",nodeId:\"qdM0RYU1c\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks7[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks7[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks7[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"Book A Call\",GT109pdEG:resolvedLinks7[0],height:\"100%\",id:\"qdM0RYU1c\",layoutId:\"qdM0RYU1c\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{\"data-framer-name\":\"Tablet\"},QvtLBAi1h:{\"data-framer-name\":\"Phone\"}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14ziy9f\",\"data-framer-name\":\"Work 11\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k3ep9y\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-27pm4x\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lbmhp5\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rdwn2n-container\",nodeId:\"UifCzCr3u\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TagPrimaryTag,{height:\"100%\",id:\"UifCzCr3u\",KS7KLFqN8:\"Our process \u2013 Your success\",layoutId:\"UifCzCr3u\",rQKAY6456:\"NEW\",variant:\"axDSKQZXP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ch7wkt\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Efficient \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"5\u2013Step process\"})]})}),className:\"framer-1hkvfb2\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y9q3m0\",\"data-framer-name\":\"Middle\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\"},children:\"increase revenue and save dozens of hours a week with our 5-step process.\"})}),className:\"framer-4xkjzd\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u5u1k\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1mvx4iq\",\"data-framer-appear-id\":\"1mvx4iq\",\"data-framer-name\":\"Step 1\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gyb8i3\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wc119p\",\"data-framer-name\":\"Number\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"1\"})}),className:\"framer-1szzf97\",\"data-framer-name\":\"1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ytw51y\",\"data-framer-name\":\"Title & Paragraph\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2mfvz6\",\"data-styles-preset\":\"VqRaec8fA\",children:\"Audit\"})}),className:\"framer-k21zpd\",\"data-framer-name\":\"How to start\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i73iva\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"we kick off with a 360\\xb0 business analysis to uncover the hidden growth opportunities, optimize your strategy, and set the stage for scalable success.\"})}),className:\"framer-1gcd7s5\",\"data-framer-name\":\"Start by sharing your real estate goals with us. Whether you're buying, selling, or renting, we\u2019ll gather all the necessary details to tailor our services to your needs. Simply fill out our contact form or give us a call.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{background:{alt:\"How It Work Image\",fit:\"fill\",pixelHeight:1080,pixelWidth:1080,sizes:`calc((min(${componentViewport?.width||\"100vw\"} - 60px, 946px) - 60px) * 0.8)`,src:\"https://framerusercontent.com/images/vE8wPrV74a25bs4Fkliv6zAyq3s.png\",srcSet:\"https://framerusercontent.com/images/vE8wPrV74a25bs4Fkliv6zAyq3s.png?scale-down-to=512 512w,https://framerusercontent.com/images/vE8wPrV74a25bs4Fkliv6zAyq3s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vE8wPrV74a25bs4Fkliv6zAyq3s.png 1080w\"}},QvtLBAi1h:{background:{alt:\"How It Work Image\",fit:\"fill\",pixelHeight:1080,pixelWidth:1080,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 946px) - 40px)`,src:\"https://framerusercontent.com/images/vE8wPrV74a25bs4Fkliv6zAyq3s.png\",srcSet:\"https://framerusercontent.com/images/vE8wPrV74a25bs4Fkliv6zAyq3s.png?scale-down-to=512 512w,https://framerusercontent.com/images/vE8wPrV74a25bs4Fkliv6zAyq3s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vE8wPrV74a25bs4Fkliv6zAyq3s.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"How It Work Image\",fit:\"fill\",pixelHeight:1080,pixelWidth:1080,sizes:`calc((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px) * 0.7883, 946px) - 60px) * 0.4088)`,src:\"https://framerusercontent.com/images/vE8wPrV74a25bs4Fkliv6zAyq3s.png\",srcSet:\"https://framerusercontent.com/images/vE8wPrV74a25bs4Fkliv6zAyq3s.png?scale-down-to=512 512w,https://framerusercontent.com/images/vE8wPrV74a25bs4Fkliv6zAyq3s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vE8wPrV74a25bs4Fkliv6zAyq3s.png 1080w\"},className:\"framer-5w9o1k\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ydc5l0\",\"data-framer-name\":\"Light\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xc0ayu\",\"data-framer-name\":\"Step 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cc8jae\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11e90h\",\"data-framer-name\":\"Number\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"2\"})}),className:\"framer-1tldhwh\",\"data-framer-name\":\"1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wnk5m8\",\"data-framer-name\":\"Title & Paragraph\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2mfvz6\",\"data-styles-preset\":\"VqRaec8fA\",children:\"Onboarding\"})}),className:\"framer-umxprj\",\"data-framer-name\":\"How to start\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ebldx6\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--token-73df4b97-bd12-4034-b6b1-3f5fa0e66399, rgb(82, 82, 90))\"},children:\"Our expert team will search for the perfect properties or buyers that match your criteria. We\u2019ll arrange property viewings, market your listing, or connect you with tenants, handling all the details.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"we are plugging in and ready to scale. our team integrates seamlessly into your amazon account to hit the ground running.\"})}),className:\"framer-loqvdv\",\"data-framer-name\":\"Start by sharing your real estate goals with us. Whether you're buying, selling, or renting, we\u2019ll gather all the necessary details to tailor our services to your needs. Simply fill out our contact form or give us a call.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{background:{alt:\"How It Work Image\",fit:\"fill\",pixelHeight:1024,pixelWidth:1536,sizes:`calc((min(${componentViewport?.width||\"100vw\"} - 60px, 946px) - 60px) * 0.8)`,src:\"https://framerusercontent.com/images/puvf3hNdOVKvNWXxSzBM3zOKTg4.png\",srcSet:\"https://framerusercontent.com/images/puvf3hNdOVKvNWXxSzBM3zOKTg4.png?scale-down-to=512 512w,https://framerusercontent.com/images/puvf3hNdOVKvNWXxSzBM3zOKTg4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/puvf3hNdOVKvNWXxSzBM3zOKTg4.png 1536w\"}},QvtLBAi1h:{background:{alt:\"How It Work Image\",fit:\"fill\",pixelHeight:1024,pixelWidth:1536,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 946px) - 40px)`,src:\"https://framerusercontent.com/images/puvf3hNdOVKvNWXxSzBM3zOKTg4.png\",srcSet:\"https://framerusercontent.com/images/puvf3hNdOVKvNWXxSzBM3zOKTg4.png?scale-down-to=512 512w,https://framerusercontent.com/images/puvf3hNdOVKvNWXxSzBM3zOKTg4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/puvf3hNdOVKvNWXxSzBM3zOKTg4.png 1536w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"How It Work Image\",fit:\"fill\",pixelHeight:1024,pixelWidth:1536,sizes:`calc((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px), 946px) - 60px) * 0.4088)`,src:\"https://framerusercontent.com/images/puvf3hNdOVKvNWXxSzBM3zOKTg4.png\",srcSet:\"https://framerusercontent.com/images/puvf3hNdOVKvNWXxSzBM3zOKTg4.png?scale-down-to=512 512w,https://framerusercontent.com/images/puvf3hNdOVKvNWXxSzBM3zOKTg4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/puvf3hNdOVKvNWXxSzBM3zOKTg4.png 1536w\"},className:\"framer-1c4pn2v\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qq3hvf\",\"data-framer-name\":\"Light\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lhwez7\",\"data-framer-name\":\"Step 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e19twj\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vz93uv\",\"data-framer-name\":\"Number\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"3\"})}),className:\"framer-lsgh2v\",\"data-framer-name\":\"1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q0usft\",\"data-framer-name\":\"Title & Paragraph\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2mfvz6\",\"data-styles-preset\":\"VqRaec8fA\",children:\"Strategic planning\"})}),className:\"framer-1hs7zff\",\"data-framer-name\":\"How to start\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xly1tg\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Our experts align with your goals, prioritizing the key actions needed to scale your brand.\"})}),className:\"framer-1o928re\",\"data-framer-name\":\"Start by sharing your real estate goals with us. Whether you're buying, selling, or renting, we\u2019ll gather all the necessary details to tailor our services to your needs. Simply fill out our contact form or give us a call.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{background:{alt:\"How It Work Image\",fit:\"fill\",pixelHeight:1080,pixelWidth:1080,sizes:`calc((min(${componentViewport?.width||\"100vw\"} - 60px, 946px) - 60px) * 0.8)`,src:\"https://framerusercontent.com/images/T8JeGkrfAbDjanKIntuqWM2omk.png\",srcSet:\"https://framerusercontent.com/images/T8JeGkrfAbDjanKIntuqWM2omk.png?scale-down-to=512 512w,https://framerusercontent.com/images/T8JeGkrfAbDjanKIntuqWM2omk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/T8JeGkrfAbDjanKIntuqWM2omk.png 1080w\"}},QvtLBAi1h:{background:{alt:\"How It Work Image\",fit:\"fill\",pixelHeight:1080,pixelWidth:1080,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 946px) - 40px)`,src:\"https://framerusercontent.com/images/T8JeGkrfAbDjanKIntuqWM2omk.png\",srcSet:\"https://framerusercontent.com/images/T8JeGkrfAbDjanKIntuqWM2omk.png?scale-down-to=512 512w,https://framerusercontent.com/images/T8JeGkrfAbDjanKIntuqWM2omk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/T8JeGkrfAbDjanKIntuqWM2omk.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"How It Work Image\",fit:\"fill\",pixelHeight:1080,pixelWidth:1080,sizes:`calc((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px) * 0.7883, 946px) - 60px) * 0.4088)`,src:\"https://framerusercontent.com/images/T8JeGkrfAbDjanKIntuqWM2omk.png\",srcSet:\"https://framerusercontent.com/images/T8JeGkrfAbDjanKIntuqWM2omk.png?scale-down-to=512 512w,https://framerusercontent.com/images/T8JeGkrfAbDjanKIntuqWM2omk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/T8JeGkrfAbDjanKIntuqWM2omk.png 1080w\"},className:\"framer-4ugidm\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19foij8\",\"data-framer-name\":\"Light\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fgu2ly\",\"data-framer-name\":\"Step 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1697cr6\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5zd2ds\",\"data-framer-name\":\"Number\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"4\"})}),className:\"framer-yp26bm\",\"data-framer-name\":\"1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mnmix8\",\"data-framer-name\":\"Title & Paragraph\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2mfvz6\",\"data-styles-preset\":\"VqRaec8fA\",children:\"Launch\"})}),className:\"framer-1xwwy\",\"data-framer-name\":\"How to start\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1inpb45\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"ahhh\u2026 put your feet up, the results start rolling in! monitor essential metrics like cvr, tacos, acos, and profit as we implement your strategy.\"})}),className:\"framer-1a5z4n\",\"data-framer-name\":\"Start by sharing your real estate goals with us. Whether you're buying, selling, or renting, we\u2019ll gather all the necessary details to tailor our services to your needs. Simply fill out our contact form or give us a call.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{background:{alt:\"How It Work Image\",fit:\"fill\",pixelHeight:1024,pixelWidth:1536,sizes:`calc((min(${componentViewport?.width||\"100vw\"} - 60px, 946px) - 60px) * 0.8)`,src:\"https://framerusercontent.com/images/vZqzdxDnIRLda1UAYPRChm0h58U.png\",srcSet:\"https://framerusercontent.com/images/vZqzdxDnIRLda1UAYPRChm0h58U.png?scale-down-to=512 512w,https://framerusercontent.com/images/vZqzdxDnIRLda1UAYPRChm0h58U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vZqzdxDnIRLda1UAYPRChm0h58U.png 1536w\"}},QvtLBAi1h:{background:{alt:\"How It Work Image\",fit:\"fill\",pixelHeight:1024,pixelWidth:1536,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 946px) - 40px)`,src:\"https://framerusercontent.com/images/vZqzdxDnIRLda1UAYPRChm0h58U.png\",srcSet:\"https://framerusercontent.com/images/vZqzdxDnIRLda1UAYPRChm0h58U.png?scale-down-to=512 512w,https://framerusercontent.com/images/vZqzdxDnIRLda1UAYPRChm0h58U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vZqzdxDnIRLda1UAYPRChm0h58U.png 1536w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"How It Work Image\",fit:\"fill\",pixelHeight:1024,pixelWidth:1536,sizes:`calc((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px) * 0.7883, 946px) - 60px) * 0.4088)`,src:\"https://framerusercontent.com/images/vZqzdxDnIRLda1UAYPRChm0h58U.png\",srcSet:\"https://framerusercontent.com/images/vZqzdxDnIRLda1UAYPRChm0h58U.png?scale-down-to=512 512w,https://framerusercontent.com/images/vZqzdxDnIRLda1UAYPRChm0h58U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vZqzdxDnIRLda1UAYPRChm0h58U.png 1536w\"},className:\"framer-w8ybsg\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-spq6l9\",\"data-framer-name\":\"Light\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-62po9f\",\"data-framer-name\":\"Step 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hlpozd\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uycva8\",\"data-framer-name\":\"Number\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"5\"})}),className:\"framer-1ltyygk\",\"data-framer-name\":\"1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tmi1dj\",\"data-framer-name\":\"Title & Paragraph\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2mfvz6\",\"data-styles-preset\":\"VqRaec8fA\",children:\"Continuous optimization\"})}),className:\"framer-ldj41k\",\"data-framer-name\":\"How to start\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13hsu6v\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Your success is our focus\u2014we fine-tune strategies and won\u2019t bill for services until your first ad goes live (creative work excluded).\"})}),className:\"framer-hyyi1w\",\"data-framer-name\":\"Start by sharing your real estate goals with us. Whether you're buying, selling, or renting, we\u2019ll gather all the necessary details to tailor our services to your needs. Simply fill out our contact form or give us a call.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{background:{alt:\"How It Work Image\",fit:\"fill\",pixelHeight:836,pixelWidth:896,sizes:`calc((min(${componentViewport?.width||\"100vw\"} - 60px, 946px) - 60px) * 0.8)`,src:\"https://framerusercontent.com/images/M75omxCXCTS43dhJHbscu4IZOI4.png\",srcSet:\"https://framerusercontent.com/images/M75omxCXCTS43dhJHbscu4IZOI4.png?scale-down-to=512 512w,https://framerusercontent.com/images/M75omxCXCTS43dhJHbscu4IZOI4.png 896w\"}},QvtLBAi1h:{background:{alt:\"How It Work Image\",fit:\"fill\",pixelHeight:836,pixelWidth:896,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 946px) - 40px)`,src:\"https://framerusercontent.com/images/M75omxCXCTS43dhJHbscu4IZOI4.png\",srcSet:\"https://framerusercontent.com/images/M75omxCXCTS43dhJHbscu4IZOI4.png?scale-down-to=512 512w,https://framerusercontent.com/images/M75omxCXCTS43dhJHbscu4IZOI4.png 896w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"How It Work Image\",fit:\"fill\",pixelHeight:836,pixelWidth:896,sizes:`calc((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px) * 0.7883, 946px) - 60px) * 0.4088)`,src:\"https://framerusercontent.com/images/M75omxCXCTS43dhJHbscu4IZOI4.png\",srcSet:\"https://framerusercontent.com/images/M75omxCXCTS43dhJHbscu4IZOI4.png?scale-down-to=512 512w,https://framerusercontent.com/images/M75omxCXCTS43dhJHbscu4IZOI4.png 896w\"},className:\"framer-rcefgx\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xg02w\",\"data-framer-name\":\"Light\"})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1etfvy\",\"data-framer-name\":\"Blog\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ib2y4y\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-95j806\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-emr6ip\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-bydoqs\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"WHAT SETS \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"US APART?\"})]})}),className:\"framer-ox28iu\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g1af8i\",\"data-framer-name\":\"Middle\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\"},children:\" Advance Solution For Every Brand\"})}),className:\"framer-zrelw5\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sf9gi4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b05cir\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-33bayu\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1usc0go\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",children:\"Goals & Expectations \"})}),className:\"framer-1crw5fm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"We begin by defining clear and achievable objectives for your Amazon brand, such as increasing sales, expanding market reach, or improving brand visibility.\"})}),className:\"framer-19yitsf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"button\",{className:\"framer-rg87xh\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i7t6dv-container\",isModuleExternal:true,nodeId:\"cY7cCX478\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"arrow up\",iconSelection:\"House\",id:\"cY7cCX478\",layoutId:\"cY7cCX478\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17cu4n9\",\"data-framer-name\":\"Light\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gj3st6\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u19t89\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ny3oy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",children:\"Conduct Market Research\"})}),className:\"framer-1ljxspt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Dive deep into market trends, competitor analysis, and customer behavior to identify opportunities and challenges within your niche.\"})}),className:\"framer-1wjmk50\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"button\",{className:\"framer-1s9iqkz\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n7ieha-container\",isModuleExternal:true,nodeId:\"BS5R9ilD2\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"arrow up\",iconSelection:\"House\",id:\"BS5R9ilD2\",layoutId:\"BS5R9ilD2\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uta87s\",\"data-framer-name\":\"Light\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jncjy8\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-25ogkk\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v5b67w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",children:\"Optimize Listings\"})}),className:\"framer-f3tjct\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Fine-tune your product listings by optimizing titles, descriptions, bullet points, and backend keywords to improve search visibility and conversion rates.\"})}),className:\"framer-p2sm4f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"button\",{className:\"framer-1j5zwcm\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l8ffed-container\",isModuleExternal:true,nodeId:\"ZUnSpyXT6\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"arrow up\",iconSelection:\"House\",id:\"ZUnSpyXT6\",layoutId:\"ZUnSpyXT6\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h9dc9y\",\"data-framer-name\":\"Light\"})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uo3wjx\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-38dbs5\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fgb4qw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-163dk05\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",children:\"Strategy & Implementation\"})}),className:\"framer-q0290h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Develop a comprehensive growth strategy tailored to your brand's goals and market insights, and then execute it effectively across all channels.\"})}),className:\"framer-poaokm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"button\",{className:\"framer-1iy6qqo\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ai1zlf-container\",isModuleExternal:true,nodeId:\"DPzpnulTE\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"arrow up\",iconSelection:\"House\",id:\"DPzpnulTE\",layoutId:\"DPzpnulTE\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v84kkd\",\"data-framer-name\":\"Light\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c4u6sd\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3ophwh\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-de49s7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",children:\"Monitor Performance\"})}),className:\"framer-w3yy7d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Continuously track key performance metrics such as sales, conversion rates, CTR, CVR, ACOS and keyword rankings to gauge the effectiveness of our strategies.\"})}),className:\"framer-js1nxc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"button\",{className:\"framer-15p8d3j\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-22btml-container\",isModuleExternal:true,nodeId:\"XLEBgqILz\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"arrow up\",iconSelection:\"House\",id:\"XLEBgqILz\",layoutId:\"XLEBgqILz\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pg8zbo\",\"data-framer-name\":\"Light\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zx77u7\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yu7ia\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n13p31\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",children:\"Progress Reports & Updates\"})}),className:\"framer-apucii\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Provide regular progress reports and updates to clients, highlighting key achievements, areas for improvement, and adjustments made to the strategy based on performance data.\"})}),className:\"framer-nbvl7u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"button\",{className:\"framer-1bda5ta\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ewfmhk-container\",isModuleExternal:true,nodeId:\"hEqBhr2XV\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"arrow up\",iconSelection:\"House\",id:\"hEqBhr2XV\",layoutId:\"hEqBhr2XV\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yjso8\",\"data-framer-name\":\"Light\"})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-grml13\",\"data-framer-name\":\"2 Columns Text Image\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19p65fw\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cw8l03\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-o0t00w\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-b5kr2w\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"WHAT OUR \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"CLIENTS SAYING\"})]})}),className:\"framer-1usxla9\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dx0a9w\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lxhl2z\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hquiur\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tnai6t-container\",isModuleExternal:true,nodeId:\"eisOIf2it\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{direction:\"right\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"eisOIf2it\",layoutId:\"eisOIf2it\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i2qjpe\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zfi9j1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1muc1do-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"IWHA4HoY7\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"IWHA4HoY7\",layoutId:\"IWHA4HoY7\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pxiu0i-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"GEY_5TBfu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"GEY_5TBfu\",layoutId:\"GEY_5TBfu\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q444ia-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"mfT2UP9Eh\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"mfT2UP9Eh\",layoutId:\"mfT2UP9Eh\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xnhoh7-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"fLa9oxbKy\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"fLa9oxbKy\",layoutId:\"fLa9oxbKy\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y5l3qn-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"hIfIrZeAg\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(254, 190, 54)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"hIfIrZeAg\",layoutId:\"hIfIrZeAg\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14u3el8\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fbbkoi\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Jessica Martinez\"})}),className:\"framer-1yflzci\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:'\"Incredible experience working with Advance Amazon. They helped my business thrive on Amazon!\"'})}),className:\"framer-8w6jj4\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oixpra\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r0gvvt\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v6ief2-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"kN8im22xn\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"kN8im22xn\",layoutId:\"kN8im22xn\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rn7h10-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"YM1v4VZ_n\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"YM1v4VZ_n\",layoutId:\"YM1v4VZ_n\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wnkbps-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"ZIBfHZIP_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"ZIBfHZIP_\",layoutId:\"ZIBfHZIP_\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1udjnhc-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"tOgLTcWqD\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"tOgLTcWqD\",layoutId:\"tOgLTcWqD\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10k6bka-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"siPg7XfA5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"siPg7XfA5\",layoutId:\"siPg7XfA5\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pzycqb\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9uwt61\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"David Brown\"})}),className:\"framer-u2kwgx\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:'\"Top notch service from start to finish. Advance Amazon delivered beyond my expectations. A+\"'})}),className:\"framer-bumm0l\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bjb4ex\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d57fn5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xwg0s6-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"S8qGzyqVk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"S8qGzyqVk\",layoutId:\"S8qGzyqVk\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vbeme4-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"IRSPARauZ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"IRSPARauZ\",layoutId:\"IRSPARauZ\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11e4aud-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"JVvPg6dDO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"JVvPg6dDO\",layoutId:\"JVvPg6dDO\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u7guoy-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"xzPbfPhpe\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"xzPbfPhpe\",layoutId:\"xzPbfPhpe\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vvlsdn-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"SgqfXS1TI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"SgqfXS1TI\",layoutId:\"SgqfXS1TI\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l45nd4\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ajjka9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Sarah Thompson\"})}),className:\"framer-u1rds7\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:'\"Impressed with the level of professionalism and dedication. Advance Amazon helped skyrocket my sales!\"'})}),className:\"framer-2lv39t\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-abw3k4\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qvow44\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wrsu3t-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"CCGP_Xcnm\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"CCGP_Xcnm\",layoutId:\"CCGP_Xcnm\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-momc8h-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"BFv4ZQTzu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"BFv4ZQTzu\",layoutId:\"BFv4ZQTzu\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7b525g-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"aqsr1gT5Y\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"aqsr1gT5Y\",layoutId:\"aqsr1gT5Y\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ea1a0q-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"hN2QjUTkU\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"hN2QjUTkU\",layoutId:\"hN2QjUTkU\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h0y820-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"JtwQLveLv\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"JtwQLveLv\",layoutId:\"JtwQLveLv\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13trha6\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f6f9b0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ryan Wilson\"})}),className:\"framer-1fo3e08\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:'\"Absolutely blown away by the results! The team at Advance Amazon truly knows their stuff. Highly recommend!\"'})}),className:\"framer-12zkvwd\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13xomyz\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xc8xpc-container\",isModuleExternal:true,nodeId:\"hfNJQSAah\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{direction:\"right\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"hfNJQSAah\",layoutId:\"hfNJQSAah\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i2qjpe\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zfi9j1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1muc1do-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"IWHA4HoY7\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"IWHA4HoY7\",layoutId:\"IWHA4HoY7\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pxiu0i-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"GEY_5TBfu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"GEY_5TBfu\",layoutId:\"GEY_5TBfu\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q444ia-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"mfT2UP9Eh\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"mfT2UP9Eh\",layoutId:\"mfT2UP9Eh\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xnhoh7-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"fLa9oxbKy\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"fLa9oxbKy\",layoutId:\"fLa9oxbKy\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y5l3qn-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"hIfIrZeAg\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(254, 190, 54)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"hIfIrZeAg\",layoutId:\"hIfIrZeAg\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14u3el8\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fbbkoi\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Jessica Martinez\"})}),className:\"framer-1yflzci\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:'\"Incredible experience working with Advance Amazon. They helped my business thrive on Amazon!\"'})}),className:\"framer-8w6jj4\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oixpra\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r0gvvt\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v6ief2-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"kN8im22xn\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"kN8im22xn\",layoutId:\"kN8im22xn\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rn7h10-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"YM1v4VZ_n\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"YM1v4VZ_n\",layoutId:\"YM1v4VZ_n\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wnkbps-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"ZIBfHZIP_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"ZIBfHZIP_\",layoutId:\"ZIBfHZIP_\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1udjnhc-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"tOgLTcWqD\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"tOgLTcWqD\",layoutId:\"tOgLTcWqD\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10k6bka-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"siPg7XfA5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"siPg7XfA5\",layoutId:\"siPg7XfA5\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pzycqb\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9uwt61\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"David Brown\"})}),className:\"framer-u2kwgx\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:'\"Top notch service from start to finish. Advance Amazon delivered beyond my expectations. A+\"'})}),className:\"framer-bumm0l\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bjb4ex\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d57fn5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xwg0s6-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"S8qGzyqVk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"S8qGzyqVk\",layoutId:\"S8qGzyqVk\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vbeme4-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"IRSPARauZ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"IRSPARauZ\",layoutId:\"IRSPARauZ\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11e4aud-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"JVvPg6dDO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"JVvPg6dDO\",layoutId:\"JVvPg6dDO\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u7guoy-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"xzPbfPhpe\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"xzPbfPhpe\",layoutId:\"xzPbfPhpe\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vvlsdn-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"SgqfXS1TI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"SgqfXS1TI\",layoutId:\"SgqfXS1TI\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l45nd4\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ajjka9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Sarah Thompson\"})}),className:\"framer-u1rds7\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:'\"Impressed with the level of professionalism and dedication. Advance Amazon helped skyrocket my sales!\"'})}),className:\"framer-2lv39t\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ku1ez\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rc2c7k-container\",isModuleExternal:true,nodeId:\"kGc9TtzZF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{direction:\"right\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"kGc9TtzZF\",layoutId:\"kGc9TtzZF\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-abw3k4\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qvow44\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wrsu3t-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"CCGP_Xcnm\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"CCGP_Xcnm\",layoutId:\"CCGP_Xcnm\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-momc8h-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"BFv4ZQTzu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"BFv4ZQTzu\",layoutId:\"BFv4ZQTzu\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7b525g-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"aqsr1gT5Y\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"aqsr1gT5Y\",layoutId:\"aqsr1gT5Y\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ea1a0q-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"hN2QjUTkU\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"hN2QjUTkU\",layoutId:\"hN2QjUTkU\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h0y820-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"JtwQLveLv\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"JtwQLveLv\",layoutId:\"JtwQLveLv\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13trha6\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f6f9b0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ryan Wilson\"})}),className:\"framer-1fo3e08\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:'\"Absolutely blown away by the results! The team at Advance Amazon truly knows their stuff. Highly recommend!\"'})}),className:\"framer-12zkvwd\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bjb4ex\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d57fn5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xwg0s6-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"S8qGzyqVk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"S8qGzyqVk\",layoutId:\"S8qGzyqVk\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vbeme4-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"IRSPARauZ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"IRSPARauZ\",layoutId:\"IRSPARauZ\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11e4aud-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"JVvPg6dDO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"JVvPg6dDO\",layoutId:\"JVvPg6dDO\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u7guoy-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"xzPbfPhpe\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"xzPbfPhpe\",layoutId:\"xzPbfPhpe\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vvlsdn-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"SgqfXS1TI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"SgqfXS1TI\",layoutId:\"SgqfXS1TI\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l45nd4\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ajjka9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Sarah Thompson\"})}),className:\"framer-u1rds7\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:'\"Impressed with the level of professionalism and dedication. Advance Amazon helped skyrocket my sales!\"'})}),className:\"framer-2lv39t\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oixpra\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r0gvvt\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v6ief2-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"kN8im22xn\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"kN8im22xn\",layoutId:\"kN8im22xn\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rn7h10-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"YM1v4VZ_n\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"YM1v4VZ_n\",layoutId:\"YM1v4VZ_n\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wnkbps-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"ZIBfHZIP_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"ZIBfHZIP_\",layoutId:\"ZIBfHZIP_\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1udjnhc-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"tOgLTcWqD\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"tOgLTcWqD\",layoutId:\"tOgLTcWqD\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10k6bka-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"siPg7XfA5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(237, 150, 0)\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"siPg7XfA5\",layoutId:\"siPg7XfA5\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pzycqb\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9uwt61\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"David Brown\"})}),className:\"framer-u2kwgx\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:'\"Top notch service from start to finish. Advance Amazon delivered beyond my expectations. A+\"'})}),className:\"framer-bumm0l\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-lfxvl7\",\"data-framer-name\":\"Client logo\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lmwc1v\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-g5hg3r\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x26x3h-container\",isModuleExternal:true,nodeId:\"FFW3w62sB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"FFW3w62sB\",layoutId:\"FFW3w62sB\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9bw3i0\",\"data-framer-name\":\"color full\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,pixelHeight:900,pixelWidth:900,sizes:\"300px\",src:\"https://framerusercontent.com/images/vfkFaElmTmqte16LDPiJDbsk9s.png\",srcSet:\"https://framerusercontent.com/images/vfkFaElmTmqte16LDPiJDbsk9s.png?scale-down-to=512 512w,https://framerusercontent.com/images/vfkFaElmTmqte16LDPiJDbsk9s.png 900w\"},className:\"framer-6epqpc\",\"data-framer-name\":\"2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,pixelHeight:900,pixelWidth:900,sizes:\"250px\",src:\"https://framerusercontent.com/images/cC7ZGoKzU3ColaFjaXkpSgk44.png\",srcSet:\"https://framerusercontent.com/images/cC7ZGoKzU3ColaFjaXkpSgk44.png?scale-down-to=512 512w,https://framerusercontent.com/images/cC7ZGoKzU3ColaFjaXkpSgk44.png 900w\"},className:\"framer-1qa01zy\",\"data-framer-name\":\"3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,pixelHeight:900,pixelWidth:900,sizes:\"300px\",src:\"https://framerusercontent.com/images/ZTMou8ZdlUYRUjcq7TAgudts54U.png\",srcSet:\"https://framerusercontent.com/images/ZTMou8ZdlUYRUjcq7TAgudts54U.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZTMou8ZdlUYRUjcq7TAgudts54U.png 900w\"},className:\"framer-uqgewc\",\"data-framer-name\":\"4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,pixelHeight:900,pixelWidth:900,sizes:\"300px\",src:\"https://framerusercontent.com/images/3tv3TuFWaOJmHIFMyfmsVYQFc8s.png\",srcSet:\"https://framerusercontent.com/images/3tv3TuFWaOJmHIFMyfmsVYQFc8s.png?scale-down-to=512 512w,https://framerusercontent.com/images/3tv3TuFWaOJmHIFMyfmsVYQFc8s.png 900w\"},className:\"framer-hfkm5r\",\"data-framer-name\":\"5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,pixelHeight:900,pixelWidth:900,sizes:\"260px\",src:\"https://framerusercontent.com/images/tUCBnVpcCoq5Xa4tVaxQ38cm5HI.png\",srcSet:\"https://framerusercontent.com/images/tUCBnVpcCoq5Xa4tVaxQ38cm5HI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tUCBnVpcCoq5Xa4tVaxQ38cm5HI.png 900w\"},className:\"framer-1wuzkqt\",\"data-framer-name\":\"6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,pixelHeight:900,pixelWidth:900,sizes:\"200px\",src:\"https://framerusercontent.com/images/MDpDExmIq216lWZrSM4AaE4au90.png\",srcSet:\"https://framerusercontent.com/images/MDpDExmIq216lWZrSM4AaE4au90.png?scale-down-to=512 512w,https://framerusercontent.com/images/MDpDExmIq216lWZrSM4AaE4au90.png 900w\"},className:\"framer-jwt9mc\",\"data-framer-name\":\"1\"})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q8zssb\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mmd3fm\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14srzjp\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bdkhbg\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zpo3d6-container\",nodeId:\"F99Z6Iuv0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TagPrimaryTag,{height:\"100%\",id:\"F99Z6Iuv0\",KS7KLFqN8:\"Why Us?\",layoutId:\"F99Z6Iuv0\",rQKAY6456:\"NEW\",variant:\"axDSKQZXP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1330hxh\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"What makes Advance Amazon \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"Betterthan others? \"})]})}),className:\"framer-4s00vo\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7z8hbu\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c241xk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",children:\"Other Agencies\"})}),className:\"framer-8arebz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ro9nlg\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tkj37b\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w5495g\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-q281d\",\"data-framer-name\":\"X\",fill:\"rgb(194, 0, 0)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M18 6 6 18M6 6l12 12\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m6m3zm\",\"data-styles-preset\":\"qScbNYtt3\",children:\"Conventional Amazon Solutuions\"})}),className:\"framer-1tbwxlf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jay1rd\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-mbm2qy\",\"data-framer-name\":\"X\",fill:\"rgb(194, 0, 0)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M18 6 6 18M6 6l12 12\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m6m3zm\",\"data-styles-preset\":\"qScbNYtt3\",children:\"Traditional Industry Standard\"})}),className:\"framer-1u1u1ks\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rbz5pl\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ebogxu\",\"data-framer-name\":\"X\",fill:\"rgb(194, 0, 0)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M18 6 6 18M6 6l12 12\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m6m3zm\",\"data-styles-preset\":\"qScbNYtt3\",children:\"Data Prioritization Lacking\"})}),className:\"framer-192hktm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lfp2f6\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-56xvfr\",\"data-framer-name\":\"X\",fill:\"rgb(194, 0, 0)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M18 6 6 18M6 6l12 12\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m6m3zm\",\"data-styles-preset\":\"qScbNYtt3\",children:\"Short-lived Partnerships\"})}),className:\"framer-y3wr7a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uviiij\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-l8m9pt\",\"data-framer-name\":\"X\",fill:\"rgb(194, 0, 0)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M18 6 6 18M6 6l12 12\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m6m3zm\",\"data-styles-preset\":\"qScbNYtt3\",children:\"Inconsistent Performance\"})}),className:\"framer-mybhiq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d8tqr0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",children:\"Advance Amazon\"})}),className:\"framer-wze8me\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xds0pz\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i4szxe\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b8iu2t\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-3kwltx\",fill:'var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18)) /* {\"name\":\"Blue\"} */',intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m6m3zm\",\"data-styles-preset\":\"qScbNYtt3\",children:\"Leverage e-commerce and billion-dollar expertise in crafting your Strategy\"})}),className:\"framer-iewmsy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q78clx\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1h33ia2\",fill:'var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18)) /* {\"name\":\"Blue\"} */',intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m6m3zm\",\"data-styles-preset\":\"qScbNYtt3\",children:\"Prioritise a client-centric Philosophy to guarantee high succcess levels\"})}),className:\"framer-wedpdm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d52yfk\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-y7hqri\",fill:'var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18)) /* {\"name\":\"Blue\"} */',intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m6m3zm\",\"data-styles-preset\":\"qScbNYtt3\",children:\"Specialize in evolving Amazon Brands into self-sustainning models\"})}),className:\"framer-ez5gxs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1koe4yx\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ha3r4a\",fill:'var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18)) /* {\"name\":\"Blue\"} */',intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m6m3zm\",\"data-styles-preset\":\"qScbNYtt3\",children:\"Personal and long-lasting client relationship akin to friendships\"})}),className:\"framer-1fdb4vs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tfh6ju\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1gaz95b\",fill:'var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18)) /* {\"name\":\"Blue\"} */',intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m6m3zm\",\"data-styles-preset\":\"qScbNYtt3\",children:\"Emphasize trust and exceptional Performance\"})}),className:\"framer-k1xz1q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v8w66c\",\"data-framer-name\":\"Light\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xl2jsa\",\"data-framer-name\":\"Light\"})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{\"data-framer-name\":\"Tablet\"},QvtLBAi1h:{\"data-framer-name\":\"Phone\"}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1loj3ow\",\"data-framer-name\":\"Feature 389\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wi4u3c\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iz8gqt\",\"data-framer-name\":\"Banner Content Stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rfahfa\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y207gv\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-llf00w\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-edckfl-container\",nodeId:\"LPBPrmV_q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TagPrimaryTag,{height:\"100%\",id:\"LPBPrmV_q\",KS7KLFqN8:\"Voices of Trust\",layoutId:\"LPBPrmV_q\",rQKAY6456:\"NEW\",variant:\"axDSKQZXP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10lq6gg\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"left\"},children:[\"How our Amazon agency experts help \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"grow your brand\"})]})}),className:\"framer-8jero7\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15xuegc\",\"data-framer-name\":\"Middle\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\"},children:\"We have a holistic approach to drive traffic to your listing and boost your conversions.\"})}),className:\"framer-1x8t81n\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-90vvu5-container\",nodeId:\"g0i9Wgo_Y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks8[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks8[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks8[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"I Want These Results too!\",GT109pdEG:resolvedLinks8[0],height:\"100%\",id:\"g0i9Wgo_Y\",layoutId:\"g0i9Wgo_Y\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12p2mvk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{width:`max((max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), ${componentViewport?.width||\"100vw\"} - 60px) - 120px) / 2, 1px) - 32px) / 2, 50px)`},QvtLBAi1h:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), ${componentViewport?.width||\"100vw\"} - 40px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:198,width:`max((max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1356px) - 140px) / 2, 1px) - 24px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qvbcp7-container\",nodeId:\"LrQ0pdxTj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{variant:\"FDCmoGw1j\"},QvtLBAi1h:{variant:\"FDCmoGw1j\"}},children:/*#__PURE__*/_jsx(FeatureWidget,{eRXpdnZKZ:addImageAlt({pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/ABwvFfLhyJdgOsFLxcNDnMDcg.png\"},\"\"),height:\"100%\",id:\"LrQ0pdxTj\",layoutId:\"LrQ0pdxTj\",rywAnDLkY:\"The key to driving traffic to your listings lies in Amazon PPC. Higher revenue, lower ACOS, and transparent ad management.\",style:{width:\"100%\"},variant:\"NsDxD6sbJ\",VWcrWhUyS:\"Amazon PPC\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{width:`max((max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), ${componentViewport?.width||\"100vw\"} - 60px) - 120px) / 2, 1px) - 32px) / 2, 50px)`},QvtLBAi1h:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), ${componentViewport?.width||\"100vw\"} - 40px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:198,width:`max((max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1356px) - 140px) / 2, 1px) - 24px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qp6ymg-container\",nodeId:\"byTb7nL1r\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"FDCmoGw1j\"}},children:/*#__PURE__*/_jsx(FeatureWidget,{eRXpdnZKZ:addImageAlt({pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/qLQKCe8iWdlxFSPfYtBaNrlq8.png\"},\"\"),height:\"100%\",id:\"byTb7nL1r\",layoutId:\"byTb7nL1r\",rywAnDLkY:\"Our 4-phase Amazon SEO plan is best-in-class and can show dramatic results in search rankings in 90 days.\",style:{width:\"100%\"},variant:\"NsDxD6sbJ\",VWcrWhUyS:\"SEO\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{width:`max((max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), ${componentViewport?.width||\"100vw\"} - 60px) - 120px) / 2, 1px) - 32px) / 2, 50px)`},QvtLBAi1h:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), ${componentViewport?.width||\"100vw\"} - 40px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:198,width:`max((max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1356px) - 140px) / 2, 1px) - 24px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-37kzla-container\",nodeId:\"ubeDO0kxE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"FDCmoGw1j\"}},children:/*#__PURE__*/_jsx(FeatureWidget,{eRXpdnZKZ:addImageAlt({pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/8O6JUwqKejpxVPZpnt2l3A91to.png\"},\"\"),height:\"100%\",id:\"ubeDO0kxE\",layoutId:\"ubeDO0kxE\",rywAnDLkY:\"Stand out from the competition and showcase your brand with top-tier A+ content, Brand Stores, and graphics that convert. Our Amazon agency can get it done.\",style:{width:\"100%\"},variant:\"NsDxD6sbJ\",VWcrWhUyS:\"Design\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{width:`max((max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), ${componentViewport?.width||\"100vw\"} - 60px) - 120px) / 2, 1px) - 32px) / 2, 50px)`},QvtLBAi1h:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), ${componentViewport?.width||\"100vw\"} - 40px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:198,width:`max((max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1356px) - 140px) / 2, 1px) - 24px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qihf3r-container\",nodeId:\"krXwq7k3k\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"FDCmoGw1j\"}},children:/*#__PURE__*/_jsx(FeatureWidget,{eRXpdnZKZ:addImageAlt({pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/3NQw4CZZd9vG27YksG3X7gUWnyg.png\"},\"\"),height:\"100%\",id:\"krXwq7k3k\",layoutId:\"krXwq7k3k\",rywAnDLkY:\"You\u2019ll always have competition on Amazon, so we optimize your Amazon brand continually to maintain the gains we achieve, and build more moving forward.\",style:{width:\"100%\"},variant:\"NsDxD6sbJ\",VWcrWhUyS:\"Platform Management\",width:\"100%\"})})})})})]})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wxy2tw\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u8c9m6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bmay0o\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wasxgr\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qf0opf\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",style:{\"--framer-text-alignment\":\"center\"},children:\"BIOptimizers Case Study\"})}),className:\"framer-1o7fsci\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:\"178% increase in sales\"})}),className:\"framer-g3wz1q\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\"},children:\"We helped a new brand prepare to launch on Amazon, carve its own space, and thrive with the right strategy.\"})}),className:\"framer-eusez2\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{dFDcF1wOr:\"bioptimizers\"},unresolvedPathSlugs:{dFDcF1wOr:{collectionId:\"yoco0NHMS\",collectionItemId:\"ZIir4Kkmg\"}},webPageId:\"M_l_BNXz0\"},implicitPathVariables:undefined},{href:{pathVariables:{dFDcF1wOr:\"bioptimizers\"},unresolvedPathSlugs:{dFDcF1wOr:{collectionId:\"yoco0NHMS\",collectionItemId:\"ZIir4Kkmg\"}},webPageId:\"M_l_BNXz0\"},implicitPathVariables:undefined},{href:{pathVariables:{dFDcF1wOr:\"bioptimizers\"},unresolvedPathSlugs:{dFDcF1wOr:{collectionId:\"yoco0NHMS\",collectionItemId:\"ZIir4Kkmg\"}},webPageId:\"M_l_BNXz0\"},implicitPathVariables:undefined},{href:{pathVariables:{dFDcF1wOr:\"bioptimizers\"},unresolvedPathSlugs:{dFDcF1wOr:{collectionId:\"yoco0NHMS\",collectionItemId:\"ZIir4Kkmg\"}},webPageId:\"M_l_BNXz0\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b7uxyc-container\",nodeId:\"uWJj3pver\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks9[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks9[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks9[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"Read case study\",GT109pdEG:resolvedLinks9[0],height:\"100%\",id:\"uWJj3pver\",layoutId:\"uWJj3pver\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ay78u3\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{background:{alt:\"\",fit:\"fit\",pixelHeight:421,pixelWidth:877,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 860px)`,src:\"https://framerusercontent.com/images/wTY3jLOn9EZkwCX5U5Ld4c4axhY.png\",srcSet:\"https://framerusercontent.com/images/wTY3jLOn9EZkwCX5U5Ld4c4axhY.png?scale-down-to=512 512w,https://framerusercontent.com/images/wTY3jLOn9EZkwCX5U5Ld4c4axhY.png 877w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:421,pixelWidth:877,positionX:\"center\",positionY:\"center\",sizes:\"830px\",src:\"https://framerusercontent.com/images/wTY3jLOn9EZkwCX5U5Ld4c4axhY.png\",srcSet:\"https://framerusercontent.com/images/wTY3jLOn9EZkwCX5U5Ld4c4axhY.png?scale-down-to=512 512w,https://framerusercontent.com/images/wTY3jLOn9EZkwCX5U5Ld4c4axhY.png 877w\"},className:\"framer-1po4doe\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3yov4u\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{dFDcF1wOr:\"pedal-commander\"},unresolvedPathSlugs:{dFDcF1wOr:{collectionId:\"yoco0NHMS\",collectionItemId:\"GVIrg9hg7\"}},webPageId:\"M_l_BNXz0\"},motionChild:true,nodeId:\"OPFDzSaQP\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-170u6un framer-lux5qc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2mumrl\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:194,pixelWidth:194,src:\"https://framerusercontent.com/images/FEHh8Rr9Knsv1NbGolvIme8lig.png\"},className:\"framer-6j17ga\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b6ajrm\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",style:{\"--framer-text-alignment\":\"left\"},children:\"Pedal Commander\"})}),className:\"framer-c81rit\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\"},children:\"293% higher monthly revenue\"})}),className:\"framer-rwk38s\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\"},children:\"A huge jump in sales coming from a revamp of various creative assets and improved PPC ads.\"})}),className:\"framer-1i90bal\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{dFDcF1wOr:\"love-wellness\"},unresolvedPathSlugs:{dFDcF1wOr:{collectionId:\"yoco0NHMS\",collectionItemId:\"Da7heh20y\"}},webPageId:\"M_l_BNXz0\"},motionChild:true,nodeId:\"mhUAVEIr0\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-of5exq framer-lux5qc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19hocmi\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:194,pixelWidth:194,src:\"https://framerusercontent.com/images/oabmnJQRKmT7hXSku05J9GOo0YM.png\"},className:\"framer-1b15f1o\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-66z24l\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",style:{\"--framer-text-alignment\":\"left\"},children:\"Love Wellness\"})}),className:\"framer-yu0nd3\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, rgb(255, 255, 255))\"},children:\"519% growth to date\"})}),className:\"framer-v8io3u\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\"},children:\"We were able to produce more success for a well-known brand, in a loaded market.\"})}),className:\"framer-1lsop5a\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xn1juo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Amazon agency has helped bring growth to hundreds of businesses, and we want you to be our next success story.\"})}),className:\"framer-1utmozw\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})}),fonts:[\"GF;DM Sans-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"G7ogcGAfs\"},motionChild:true,nodeId:\"dKksKB8W2\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1hxjtx2\",\"data-styles-preset\":\"Me1Owk5Wc\",children:\"More case studies\"})})})}),className:\"framer-lzsapi\",\"data-framer-name\":\"Body Text\",fonts:[\"GF;DM Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jj185y\",\"data-framer-name\":\"Light\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q07fwy\",\"data-framer-name\":\"2 Columns Text Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q9a1g4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cm0aui\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{background:{alt:\"\",fit:\"fill\",pixelHeight:683,pixelWidth:639,sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1249px), 546.4px)`,src:\"https://framerusercontent.com/images/nkTH6V4ndSAOqZAj66imYO2poo.png\",srcSet:\"https://framerusercontent.com/images/nkTH6V4ndSAOqZAj66imYO2poo.png 639w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:683,pixelWidth:639,sizes:\"546.4px\",src:\"https://framerusercontent.com/images/nkTH6V4ndSAOqZAj66imYO2poo.png\",srcSet:\"https://framerusercontent.com/images/nkTH6V4ndSAOqZAj66imYO2poo.png 639w\"},className:\"framer-16mxa55\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b5legt\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qs0ijz\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hvz8wx\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Maximizing Impact with Targeted\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"Maximizing Impact with Targeted\"})}),className:\"framer-azwvc0\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"PPC \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"Management\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",children:[\"PPC \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"Management\"})]})}),className:\"framer-7pvw3j\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Nail your brand's presence with our expert PPC management. We\",/*#__PURE__*/_jsx(\"br\",{}),\"craft campaigns that don't just reach \u2014 they resonate. Through\",/*#__PURE__*/_jsx(\"br\",{}),\"precise data analysis and strategic optimization, we turn your ad\",/*#__PURE__*/_jsx(\"br\",{}),\"budget into an investment with tangible returns.\"]})}),className:\"framer-1ibh9ut\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f9ohxg\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s2nyl1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-n7gk07\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xy6oz8\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v4ii4h\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Inventory \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"Management\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",children:[\"Inventory \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"Management\"})]})}),className:\"framer-2bzhvm\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",style:{\"--framer-text-alignment\":\"center\"},children:\"The Power of a Diversified Tech Stack\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"The Power of a Diversified Tech Stack\"})}),className:\"framer-13dwbuj\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\"},children:\"In the vast universe of Amazon tools, one size doesn\u2019t fit all. Our multi-faceted approach ensures that your listing is optimized using a blend of the best technologies available.\"})}),className:\"framer-8w71k0\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g5vbx8-container\",nodeId:\"wEvP77C8Y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks10[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks10[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks10[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"Schedule A FREE Call\",GT109pdEG:resolvedLinks10[0],height:\"100%\",id:\"wEvP77C8Y\",layoutId:\"wEvP77C8Y\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r7g7wm\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6h1tps\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fyj8y7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"Expert Forecasting\"})}),className:\"framer-1fuqws0\",\"data-framer-name\":\"Text 1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\"},children:\"Employ predictive analytics to gauge future demands, ensuring you're always stocked up.\"})}),className:\"framer-1dt7ekz\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy05MDA=\",\"--framer-font-family\":'\"DM Sans\", sans-serif',\"--framer-font-size\":\"114px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(230, 131, 18, 0) 20%, var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18)) 100%)\"},children:\"1\"})})}),className:\"framer-ok05po\",\"data-framer-name\":\"Text 1\",fonts:[\"GF;DM Sans-900\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13i57ct\",\"data-framer-name\":\"Light\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-muyc97\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oxjrxk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"Never Run Out\"})}),className:\"framer-rf4d9q\",\"data-framer-name\":\"Text 1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\"},children:\"Amazon rewards consistency. With our meticulous planning, weensure you avoid stockouts, maintain your visibility, and keep the salesflowing.\"})}),className:\"framer-8yus5e\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy05MDA=\",\"--framer-font-family\":'\"DM Sans\", sans-serif',\"--framer-font-size\":\"114px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(230, 131, 18, 0) 20%, var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18)) 100%)\"},children:\"2\"})})}),className:\"framer-lkrhbr\",\"data-framer-name\":\"Text 1\",fonts:[\"GF;DM Sans-900\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xld4s7\",\"data-framer-name\":\"Light\"})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12y6sej\",\"data-framer-name\":\"Light\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{\"data-framer-name\":\"Tablet\"},QvtLBAi1h:{\"data-framer-name\":\"Phone\"}},children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-101b8t4\",\"data-framer-name\":\"Blog 30\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-gn70ax\",\"data-framer-appear-id\":\"gn70ax\",\"data-framer-name\":\"Container\",initial:animation8,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15q2bon\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k1gpgz\",\"data-framer-name\":\"Title Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hrcg60\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Latest articles & \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"industry insights\"})]})}),className:\"framer-1i79mo9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jqoreq-container\",isModuleExternal:true,nodeId:\"I1XNS5HWu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"I1XNS5HWu\",layoutId:\"I1XNS5HWu\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kqe18o\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Yhn6xP9ti\",data:Blog,type:\"Collection\"},select:[{collection:\"Yhn6xP9ti\",name:\"zucQ2lYw5\",type:\"Identifier\"},{collection:\"Yhn6xP9ti\",name:\"iwOaZHlgx\",type:\"Identifier\"},{collection:\"Yhn6xP9ti\",name:\"T52KCtq91\",type:\"Identifier\"},{collection:\"Yhn6xP9ti\",name:\"gOvUDDoCh\",type:\"Identifier\"},{collection:\"Yhn6xP9ti\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({gOvUDDoCh:gOvUDDoChYhn6xP9ti,id:idYhn6xP9ti,iwOaZHlgx:iwOaZHlgxYhn6xP9ti,T52KCtq91:T52KCtq91Yhn6xP9ti,zucQ2lYw5:zucQ2lYw5Yhn6xP9ti},index1)=>{zucQ2lYw5Yhn6xP9ti??=\"\";gOvUDDoChYhn6xP9ti??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Yhn6xP9ti-${idYhn6xP9ti}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{zucQ2lYw5:zucQ2lYw5Yhn6xP9ti},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{zucQ2lYw5:zucQ2lYw5Yhn6xP9ti},webPageId:\"esAUt1CIc\"},motionChild:true,nodeId:\"GM5u9vaeO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ra3xhl framer-lux5qc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:445,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15d30rj-container\",inComponentSlot:true,nodeId:\"CGE748EQi\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BlogBlogSingleCard,{bopBG8BLX:\"Key Features\",bYOwA5ysw:\"Explore the innovative features of FinFlow, a cutting-edge SaaS platform designed to automate\",height:\"100%\",HujrVC6ki:gOvUDDoChYhn6xP9ti,id:\"CGE748EQi\",Jk8Dq4Y6i:toDateString(iwOaZHlgxYhn6xP9ti,activeLocaleCode),layoutId:\"CGE748EQi\",TVkxbk_nF:toResponsiveImage(T52KCtq91Yhn6xP9ti),variant:\"Y6F4YJIY1\",width:\"100%\"})})})})})})},idYhn6xP9ti);})})})})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"raEB8BnJ9\"},implicitPathVariables:undefined},{href:{webPageId:\"raEB8BnJ9\"},implicitPathVariables:undefined},{href:{webPageId:\"raEB8BnJ9\"},implicitPathVariables:undefined},{href:{webPageId:\"raEB8BnJ9\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g43j0t-container\",nodeId:\"uZBGW7XgS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks11[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks11[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks11[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"View All Blog\",GT109pdEG:resolvedLinks11[0],height:\"100%\",id:\"uZBGW7XgS\",layoutId:\"uZBGW7XgS\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ls9eb\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9zsu94\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eugzl9\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,sizes:\"197px\",src:\"https://framerusercontent.com/images/lXkyybTi5oDOOH4SbZENUbGfV00.png\",srcSet:\"https://framerusercontent.com/images/lXkyybTi5oDOOH4SbZENUbGfV00.png?scale-down-to=512 512w,https://framerusercontent.com/images/lXkyybTi5oDOOH4SbZENUbGfV00.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lXkyybTi5oDOOH4SbZENUbGfV00.png 1280w\"},className:\"framer-10iixwl\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,sizes:\"150px\",src:\"https://framerusercontent.com/images/4ze8B3ARMCD0vC5G4BSAknb0b8.png\",srcSet:\"https://framerusercontent.com/images/4ze8B3ARMCD0vC5G4BSAknb0b8.png?scale-down-to=512 512w,https://framerusercontent.com/images/4ze8B3ARMCD0vC5G4BSAknb0b8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4ze8B3ARMCD0vC5G4BSAknb0b8.png 1280w\"},className:\"framer-1ao55bl\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,sizes:\"150px\",src:\"https://framerusercontent.com/images/J1vA5OJZBYP7kz4UkH8SRLjms.png\",srcSet:\"https://framerusercontent.com/images/J1vA5OJZBYP7kz4UkH8SRLjms.png?scale-down-to=512 512w,https://framerusercontent.com/images/J1vA5OJZBYP7kz4UkH8SRLjms.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/J1vA5OJZBYP7kz4UkH8SRLjms.png 1280w\"},className:\"framer-ui72hh\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,sizes:\"150px\",src:\"https://framerusercontent.com/images/wG68cGkg3Y2LRkDoqQnzVlYNm0.png\",srcSet:\"https://framerusercontent.com/images/wG68cGkg3Y2LRkDoqQnzVlYNm0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wG68cGkg3Y2LRkDoqQnzVlYNm0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wG68cGkg3Y2LRkDoqQnzVlYNm0.png 1280w\"},className:\"framer-jkmyal\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,sizes:\"150px\",src:\"https://framerusercontent.com/images/lBv1yekbxweOdZMAEaTzH2mBA.png\",srcSet:\"https://framerusercontent.com/images/lBv1yekbxweOdZMAEaTzH2mBA.png?scale-down-to=512 512w,https://framerusercontent.com/images/lBv1yekbxweOdZMAEaTzH2mBA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lBv1yekbxweOdZMAEaTzH2mBA.png 1280w\"},className:\"framer-j8zt8j\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2r8ydc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dwr11e\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:\"YOUR NEXT STEPS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",children:\"YOUR NEXT STEPS\"})}),className:\"framer-1vjuypu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x2s7p2-container\",nodeId:\"n3_cpAR6U\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks12[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks12[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks12[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"Get Started\",GT109pdEG:resolvedLinks12[0],height:\"100%\",id:\"n3_cpAR6U\",layoutId:\"n3_cpAR6U\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})]})})]})}),/*#__PURE__*/_jsxs(MotionHeaderWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nmomjh\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2l04mb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Accelerate your amazon advertising with a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"better partner\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",children:[\"Accelerate your amazon advertising with a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"better partner\"})]})}),className:\"framer-1wyelxb\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m6m3zm\",\"data-styles-preset\":\"qScbNYtt3\",children:\"Get your hands on a free Amazon audit, so you can make data-driven decisions and masterize your ROI.\"})}),className:\"framer-esvka7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hwgcnq-container\",nodeId:\"erdF8aJXD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks13[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks13[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks13[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"Get a free audit today\",GT109pdEG:resolvedLinks13[0],height:\"100%\",id:\"erdF8aJXD\",layoutId:\"erdF8aJXD\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 100px)`,src:\"https://framerusercontent.com/images/ciOqYtHvzmzcDf7EeNhI8r5CzQ.png\",srcSet:\"https://framerusercontent.com/images/ciOqYtHvzmzcDf7EeNhI8r5CzQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/ciOqYtHvzmzcDf7EeNhI8r5CzQ.png 1024w\"}},QvtLBAi1h:{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"350px\",src:\"https://framerusercontent.com/images/ciOqYtHvzmzcDf7EeNhI8r5CzQ.png\",srcSet:\"https://framerusercontent.com/images/ciOqYtHvzmzcDf7EeNhI8r5CzQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/ciOqYtHvzmzcDf7EeNhI8r5CzQ.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"531px\",src:\"https://framerusercontent.com/images/ciOqYtHvzmzcDf7EeNhI8r5CzQ.png\",srcSet:\"https://framerusercontent.com/images/ciOqYtHvzmzcDf7EeNhI8r5CzQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/ciOqYtHvzmzcDf7EeNhI8r5CzQ.png 1024w\"},className:\"framer-1qowd4i\",\"data-border\":true})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1ok8n0y\",\"data-framer-name\":\"GET STARTED\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-83sw3j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",children:\"LET'S GET STARTED\"})}),className:\"framer-1utrwwc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Fill the form and get your free amazon account created for you\"})}),className:\"framer-sc0gmn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/a9da3e12-aa54-4c72-8a51-05bd6363a456/submit\",className:\"framer-154e216\",nodeId:\"FvJNbkvtv\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mw6xhh\",\"data-framer-name\":\"First Name + Last Name\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-rwgax\",\"data-framer-name\":\"First Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gjbdzu\",\"data-styles-preset\":\"JQSP3EtUD\",children:\"First name*\"})}),className:\"framer-1vkgbz4\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-97zji0\",inputName:\"Name\",placeholder:\"Jane\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1xrljza\",\"data-framer-name\":\"Last Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gjbdzu\",\"data-styles-preset\":\"JQSP3EtUD\",children:\"Last Name*\"})}),className:\"framer-15vfq0s\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-nbrzdt\",inputName:\"Name\",placeholder:\"Smith\",required:true,type:\"text\"})]})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1v26s0f\",\"data-framer-name\":\"Email\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gjbdzu\",\"data-styles-preset\":\"JQSP3EtUD\",children:\"How can we reach you?*\"})}),className:\"framer-1784yjj\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-r4pjou\",inputName:\"Email\",placeholder:\"jane@framer.com\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-us04xq\",\"data-framer-name\":\"Location + Category\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-pdizsc\",\"data-framer-name\":\"Location\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gjbdzu\",\"data-styles-preset\":\"JQSP3EtUD\",children:\"How did you hear about Advance Amazon? *\"})}),className:\"framer-1h3esvs\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-1n8uwof\",defaultValue:\"\",inputName:\"Location\",required:true,selectOptions:[{disabled:true,title:\"Select\",type:\"option\",value:\"\"},{title:\"Ads\",type:\"option\",value:\"Ads\"},{title:\"Youtube\",type:\"option\",value:\"Youtube\"}]})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-hgedbv\",\"data-framer-name\":\"Category\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gjbdzu\",\"data-styles-preset\":\"JQSP3EtUD\",children:\"Annual Revenue *\"})}),className:\"framer-1ef2a12\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-1i84oas\",defaultValue:\"\",inputName:\"Location\",required:true,selectOptions:[{disabled:true,title:\"What is your total annual revenue on and off Amazon\",type:\"option\",value:\"\"},{title:\"$0 - $60k\",type:\"option\",value:\"$0 - $60k\"},{title:\"$0 - $60k\",type:\"option\",value:\"$0 - $60k\"},{title:\"$0 - $60k\",type:\"option\",value:\"$0 - $60k\"},{title:\"$0 - $60k\",type:\"option\",value:\"$0 - $60k\"},{title:\"Other\",type:\"option\",value:\"Other\"}]})]})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-v54qz0\",\"data-framer-name\":\"Message\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gjbdzu\",\"data-styles-preset\":\"JQSP3EtUD\",children:\"Message*\"})}),className:\"framer-yetjjd\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-12t8qvf\",inputName:\"Name\",placeholder:\"Type your message...\",required:true,type:\"textarea\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 130px)`},QvtLBAi1h:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 90px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"481px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vgcshr-container\",nodeId:\"pSO0uTfzd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonContactButton,{height:\"100%\",HMdja7XRJ:\"Submit Now\",id:\"pSO0uTfzd\",layoutId:\"pSO0uTfzd\",style:{width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"pVumzGZCv\",success:\"QHCIz2XOl\"},\"OnYleudVI\"),width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-guz6wm\",\"data-framer-name\":\"Light\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qd5cv2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Claim your free amazon account audit \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"& brand growth blueprint\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",children:[\"Claim your free amazon account audit \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"& brand growth blueprint\"})]})}),className:\"framer-1yt3ymu\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"YES IT'S 100% FREE!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"YES IT'S 100% FREE!\"})}),className:\"framer-49pp8r\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m6m3zm\",\"data-styles-preset\":\"qScbNYtt3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Let's streamline your path to profitability. Our comprehensive analysis and built-for-you brand roadmap will provide the actionable insights and clear guidance you need to become the next big brand on the platform that never sleeps.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m6m3zm\",\"data-styles-preset\":\"qScbNYtt3\",children:\"Let's streamline your path to profitability. Our comprehensive analysis and built-for-you brand roadmap will provide the actionable insights and clear guidance you need to become the next big brand on the platform that never sleeps.\"})}),className:\"framer-pcmbt9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s9lz0a\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ok2lkh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tlmy67\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o3hzh1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"38.4px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our 3-part process\"})}),className:\"framer-18ytzpl\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Amazon agency works hard to get a full understanding of your business. After identifying\\xa0 your needs and goals, we begin our work on Amazon.\"})}),className:\"framer-1ldr6mn\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e69x33\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-unyb4y\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1206fqr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-167nfty\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eh5pw3\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"23.4px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1: Onboarding\"})}),className:\"framer-4x676s\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Amazon agency process - Step 1: Onboarding\",fit:\"fill\",intrinsicHeight:44,intrinsicWidth:44.5,pixelHeight:88,pixelWidth:89,src:\"https://framerusercontent.com/images/YLDroueBD6Aj9h5sKA8C8MxaY.gif\"},className:\"framer-1ctnjsb\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uneid2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Setting expectations and goals\"})}),className:\"framer-mv74sc\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jxgkfw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tnp50c\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17ce69h\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m9.55 18-5.7-5.7 1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Onboarding Survey\"})}),className:\"framer-171xzvl\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vs9hit\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1fp6tgi\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m9.55 18-5.7-5.7 1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Kick Off\"})}),className:\"framer-nzci6d\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t6b3eo\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-3kzs8o\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m9.55 18-5.7-5.7 1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Competitor\"})}),className:\"framer-q5eart\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jycm7u\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xomhut\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m9.55 18-5.7-5.7 1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Account Audit\"})}),className:\"framer-14adv8u\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13th8jq\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ub07n9\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dehql\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b7ky3d\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19n9dom\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"23.4px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2: Optimization\"})}),className:\"framer-ib3435\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Amazon agency process - Step 2: Optimization\",fit:\"fill\",intrinsicHeight:44,intrinsicWidth:44,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/eC4bvu1k4wZ1pM8agdO84f2cNW8.gif\"},className:\"framer-13o2yu0\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-km17vk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Never-ending cycle of work\"})}),className:\"framer-1djkr5x\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gocb84\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6fg5ji\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wppx25\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m9.55 18-5.7-5.7 1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Catalog\"})}),className:\"framer-7etsmi\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pz25by\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14r6nap\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m9.55 18-5.7-5.7 1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PPC\"})}),className:\"framer-1dlcu49\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13nt5ck\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1874lpk\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m9.55 18-5.7-5.7 1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SEO\"})}),className:\"framer-bbstiv\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oh22ul\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1gc66vo\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m9.55 18-5.7-5.7 1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Design\"})}),className:\"framer-5v5ty4\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t49unw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xiz9d1\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vbbt7i\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uovql5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qtbhnw\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"23.4px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2: Results\"})}),className:\"framer-1m90sit\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Amazon agency process - Step 3: Results\",fit:\"fill\",intrinsicHeight:44,intrinsicWidth:44,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/DcaCDtqEDZyOqQMGwKMkv08tn0.gif\"},className:\"framer-a2538r\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12rg0b9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Watch growth\"})}),className:\"framer-a05p2n\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wdnvcw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p4ojh2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1yb6n21\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m9.55 18-5.7-5.7 1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Traffic\"})}),className:\"framer-5b2go0\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1khukh1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-let2oe\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m9.55 18-5.7-5.7 1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Conversion\"})}),className:\"framer-e046g1\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i0sf36\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nw8qku\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m9.55 18-5.7-5.7 1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Sales\"})}),className:\"framer-1imwhxb\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{background:{alt:\"\",fit:\"fill\",pixelHeight:2500,pixelWidth:1250,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 1300px) - 40px)`,src:\"https://framerusercontent.com/images/VtjO4vuOfMatpww2MT3aiulcc.png\",srcSet:\"https://framerusercontent.com/images/VtjO4vuOfMatpww2MT3aiulcc.png?scale-down-to=1024 512w,https://framerusercontent.com/images/VtjO4vuOfMatpww2MT3aiulcc.png?scale-down-to=2048 1024w,https://framerusercontent.com/images/VtjO4vuOfMatpww2MT3aiulcc.png 1250w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2500,pixelWidth:1250,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 130px) / 2, 1px)`,src:\"https://framerusercontent.com/images/VtjO4vuOfMatpww2MT3aiulcc.png\",srcSet:\"https://framerusercontent.com/images/VtjO4vuOfMatpww2MT3aiulcc.png?scale-down-to=1024 512w,https://framerusercontent.com/images/VtjO4vuOfMatpww2MT3aiulcc.png?scale-down-to=2048 1024w,https://framerusercontent.com/images/VtjO4vuOfMatpww2MT3aiulcc.png 1250w\"},className:\"framer-1fjasti\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ie895q\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hyewrq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11qcbu0\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-81z7yn-container\",nodeId:\"dPYcYJ5gy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TagPrimaryTag,{height:\"100%\",id:\"dPYcYJ5gy\",KS7KLFqN8:\"Who We Have Worked With\",layoutId:\"dPYcYJ5gy\",rQKAY6456:\"NEW\",variant:\"axDSKQZXP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"We've Worked With 50+ 7-8 Figures Multi-\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"Million Brands To Acheive Results Like These\u2026\"})]})}),className:\"framer-uf3din\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6pd7ed\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n4p03d\",id:\"1n4p03d\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ks07ga\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1clp326\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:720,pixelWidth:1280,sizes:\"704px\",src:\"https://framerusercontent.com/images/q0Az4aT6G1te2GXudFK9w5zeKcM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/q0Az4aT6G1te2GXudFK9w5zeKcM.png?scale-down-to=512 512w,https://framerusercontent.com/images/q0Az4aT6G1te2GXudFK9w5zeKcM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q0Az4aT6G1te2GXudFK9w5zeKcM.png 1280w\"}},QvtLBAi1h:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:720,pixelWidth:1280,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 20px, 1400px), 1px) - 40px)`,src:\"https://framerusercontent.com/images/q0Az4aT6G1te2GXudFK9w5zeKcM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/q0Az4aT6G1te2GXudFK9w5zeKcM.png?scale-down-to=512 512w,https://framerusercontent.com/images/q0Az4aT6G1te2GXudFK9w5zeKcM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q0Az4aT6G1te2GXudFK9w5zeKcM.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:720,pixelWidth:1280,sizes:\"756px\",src:\"https://framerusercontent.com/images/q0Az4aT6G1te2GXudFK9w5zeKcM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/q0Az4aT6G1te2GXudFK9w5zeKcM.png?scale-down-to=512 512w,https://framerusercontent.com/images/q0Az4aT6G1te2GXudFK9w5zeKcM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q0Az4aT6G1te2GXudFK9w5zeKcM.png 1280w\"},className:\"framer-28bjku\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xzrlae\",\"data-framer-name\":\"Light\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p0s9w8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"208px\",src:\"https://framerusercontent.com/images/FRlmR4p2vvz9pv0gxbXRIJeMs.png\",srcSet:\"https://framerusercontent.com/images/FRlmR4p2vvz9pv0gxbXRIJeMs.png?scale-down-to=512 512w,https://framerusercontent.com/images/FRlmR4p2vvz9pv0gxbXRIJeMs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FRlmR4p2vvz9pv0gxbXRIJeMs.png 1920w\"},className:\"framer-gn3uko\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",children:[\"$270,548 added in profitable monthly \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"revenue for Sodapup\"})]})}),className:\"framer-12cpp5z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Before ADVANCE AMAZON:  \"}),\"Before partnering with us, Sodapup had a CVR of 8.97%, CTR stood at 0.46%, while CPC averaged $2.57. Total TACOS amounted to 27.5%.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"After ADVANCE AMAZON: \"}),\"After 14 weeks of working with us on ppc, CVR surged to 18.7%, CTR increased to 0.59%, CPC reduced to $1.63 and TACOS dropped to 19.2%. Notably, we added $270,000 in monthly sales, resulting in a bottom-line profit increase of $140,000 as they moved into peak season.\"]})]}),className:\"framer-1l7g3up\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"The Results:\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Conversion rate: Increased from 8.97% to 18.7%\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Sales: Increased from $3,831,341 to $4,209,302\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Sales From Search: Increased from $2,794,290 to $3,162,460\"})]}),className:\"framer-4a7sw5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gvqifi-container\",nodeId:\"ygDLkxKz2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks14[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks14[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks14[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"Give me Same Results\",GT109pdEG:resolvedLinks14[0],height:\"100%\",id:\"ygDLkxKz2\",layoutId:\"ygDLkxKz2\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jf4cpx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cnawz9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"199px\",src:\"https://framerusercontent.com/images/0ZR2EWXh0MIyW23uAVPpR6thDkg.png\",srcSet:\"https://framerusercontent.com/images/0ZR2EWXh0MIyW23uAVPpR6thDkg.png?scale-down-to=512 512w,https://framerusercontent.com/images/0ZR2EWXh0MIyW23uAVPpR6thDkg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ZR2EWXh0MIyW23uAVPpR6thDkg.png 1920w\"},className:\"framer-16044cv\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",children:[\"32.7% increase in conversion via CRO leading to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"$71,850 added in profitable revenue\"})]})}),className:\"framer-j831p4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Before ADVANCE AMAZON:  \"}),\"Before partnering with us, Karma Water had a CVR of 13.93%, CTR stood at 0.37%, while CPC averaged $1.97. Total TACOS amounted to 22.5%.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"After ADVANCE AMAZON: \"}),\"After 8 weeks of working with us on ppc, CVR surged to 21.7%, CTR increased to 0.64%, CPC reduced to $1.35 and TACOS dropped to 18.5%. Notably, we added $45,672 in monthly sales, resulting in a bottom-line profit increase of $37,382.\"]})]}),className:\"framer-1e7qq9q\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"The Results:\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Conversion rate: Increased from 13.93% to 21.7%\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Sales: Increased from $41,880 to $71,340\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Sales From Search: Increased from $42,750 to $51,906\"})]}),className:\"framer-1xcyo81\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vdopv8-container\",nodeId:\"z4mO5RPy4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks15[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks15[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks15[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"Get Started Now\",GT109pdEG:resolvedLinks15[0],height:\"100%\",id:\"z4mO5RPy4\",layoutId:\"z4mO5RPy4\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1iupt52\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8vauqf\",\"data-framer-name\":\"Light\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:568,pixelWidth:897,sizes:\"704px\",src:\"https://framerusercontent.com/images/TirknnlrrNzXXwtfWXCQ9Xlbw.webp\",srcSet:\"https://framerusercontent.com/images/TirknnlrrNzXXwtfWXCQ9Xlbw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/TirknnlrrNzXXwtfWXCQ9Xlbw.webp 897w\"}},QvtLBAi1h:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:568,pixelWidth:897,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 20px, 1400px) - 40px)`,src:\"https://framerusercontent.com/images/TirknnlrrNzXXwtfWXCQ9Xlbw.webp\",srcSet:\"https://framerusercontent.com/images/TirknnlrrNzXXwtfWXCQ9Xlbw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/TirknnlrrNzXXwtfWXCQ9Xlbw.webp 897w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:568,pixelWidth:897,sizes:\"834px\",src:\"https://framerusercontent.com/images/TirknnlrrNzXXwtfWXCQ9Xlbw.webp\",srcSet:\"https://framerusercontent.com/images/TirknnlrrNzXXwtfWXCQ9Xlbw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/TirknnlrrNzXXwtfWXCQ9Xlbw.webp 897w\"},className:\"framer-f8szoj\",\"data-border\":true,\"data-framer-name\":\"Image\",id:\"f8szoj\"})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x6a6x9\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jpqbyc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-odzpu7\",\"data-framer-name\":\"Light\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:658,pixelWidth:1238,positionX:\"center\",positionY:\"center\",sizes:\"704px\",src:\"https://framerusercontent.com/images/uac0Ugzoh20rpFs0HwqHE9Fd1CA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uac0Ugzoh20rpFs0HwqHE9Fd1CA.png?scale-down-to=512 512w,https://framerusercontent.com/images/uac0Ugzoh20rpFs0HwqHE9Fd1CA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uac0Ugzoh20rpFs0HwqHE9Fd1CA.png 1238w\"}},QvtLBAi1h:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:658,pixelWidth:1238,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 20px, 1400px) - 40px)`,src:\"https://framerusercontent.com/images/uac0Ugzoh20rpFs0HwqHE9Fd1CA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uac0Ugzoh20rpFs0HwqHE9Fd1CA.png?scale-down-to=512 512w,https://framerusercontent.com/images/uac0Ugzoh20rpFs0HwqHE9Fd1CA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uac0Ugzoh20rpFs0HwqHE9Fd1CA.png 1238w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:658,pixelWidth:1238,positionX:\"center\",positionY:\"center\",sizes:\"847px\",src:\"https://framerusercontent.com/images/uac0Ugzoh20rpFs0HwqHE9Fd1CA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uac0Ugzoh20rpFs0HwqHE9Fd1CA.png?scale-down-to=512 512w,https://framerusercontent.com/images/uac0Ugzoh20rpFs0HwqHE9Fd1CA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uac0Ugzoh20rpFs0HwqHE9Fd1CA.png 1238w\"},className:\"framer-wwlbr7\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dit992\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"193px\",src:\"https://framerusercontent.com/images/oCOAKQNsj66vyeOwQYRkHvn8XHE.png\",srcSet:\"https://framerusercontent.com/images/oCOAKQNsj66vyeOwQYRkHvn8XHE.png?scale-down-to=512 512w,https://framerusercontent.com/images/oCOAKQNsj66vyeOwQYRkHvn8XHE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oCOAKQNsj66vyeOwQYRkHvn8XHE.png 1920w\"},className:\"framer-1dgt8j2\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",children:[\"Change in CVR increased Sales 26.4% \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"giving a lift to $171,465  to monthly sales\"})]})}),className:\"framer-4e9xsf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Before ADVANCE AMAZON:  \"}),\"Before partnering with us, Love Wellness had a CVR of 9.24%, CTR stood at 0.22%, while CPC averaged $1.27. Total TACOS amounted to 19.6%.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"After ADVANCE AMAZON: \"}),\"After 12 weeks of working with us on Listing optimization, CVR surged to 17.7%, CTR increased to 0.51%, CPC reduced to $1.1 and TACOS dropped to 14.5%. Notably, we added $171,000 in monthly sales, resulting in a bottom-line profit increase of $135,000 as they moved into peak season.\"]})]}),className:\"framer-jcm561\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"The Results:\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Conversion rate: Increased from 9.24% to 17.7%\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Sales: Increased from $122,341 to $242,264\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"Sales From Search: Increased from $129,820 to $196,460\"})]}),className:\"framer-1mra84u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tw2z8f-container\",nodeId:\"lzCQnEEAH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks16[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks16[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks16[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"Give me Same Results\",GT109pdEG:resolvedLinks16[0],height:\"100%\",id:\"lzCQnEEAH\",layoutId:\"lzCQnEEAH\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j7jvvr\",\"data-framer-name\":\"2 Columns Text Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kff5cb\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9opx0v\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-exrmwg\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ed155y\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",children:[\"Results That Set Your Brand \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"Apart From The Rest!\"})]})}),className:\"framer-og2jtz\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our Results Donot Stop There, Here is a Never Ending Streak of Real & Organic Achievements that do the talking for us!\"})}),className:\"framer-1om5ku1\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-184s071-container\",nodeId:\"SOWuo4JQU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks17[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks17[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks17[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"I Want These Results too!\",GT109pdEG:resolvedLinks17[0],height:\"100%\",id:\"SOWuo4JQU\",layoutId:\"SOWuo4JQU\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9gmb03\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fk2krn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-d9qesg-container\",isModuleExternal:true,nodeId:\"MrZX0MzNG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:30,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"MrZX0MzNG\",layoutId:\"MrZX0MzNG\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pce75o\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-yapk0f\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,sizes:\"320px\",src:\"https://framerusercontent.com/images/WNxscQgHFEDs8aJEvGaWQvbDvR0.png\",srcSet:\"https://framerusercontent.com/images/WNxscQgHFEDs8aJEvGaWQvbDvR0.png?scale-down-to=512 512w,https://framerusercontent.com/images/WNxscQgHFEDs8aJEvGaWQvbDvR0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WNxscQgHFEDs8aJEvGaWQvbDvR0.png 1280w\"},className:\"framer-k1japz\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hcq6c9\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(102, 102, 102, 0)\"},children:\"Learn about hosting built for scale and reliability.\"})}),className:\"framer-eefbei\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ciasww\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,sizes:\"320px\",src:\"https://framerusercontent.com/images/VnSPPpUOPs7mGcRtwW1p8iI95I.png\",srcSet:\"https://framerusercontent.com/images/VnSPPpUOPs7mGcRtwW1p8iI95I.png?scale-down-to=512 512w,https://framerusercontent.com/images/VnSPPpUOPs7mGcRtwW1p8iI95I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VnSPPpUOPs7mGcRtwW1p8iI95I.png 1280w\"},className:\"framer-1p6o391\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d2md2\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(102, 102, 102, 0)\"},children:\"Learn about hosting built for scale and reliability.\"})}),className:\"framer-1u29rjl\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kxeg64\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,sizes:\"320px\",src:\"https://framerusercontent.com/images/8tGTzSu5gMBU6YJ5TAWQtA0UF0.png\",srcSet:\"https://framerusercontent.com/images/8tGTzSu5gMBU6YJ5TAWQtA0UF0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8tGTzSu5gMBU6YJ5TAWQtA0UF0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8tGTzSu5gMBU6YJ5TAWQtA0UF0.png 1280w\"},className:\"framer-1wa4txe\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ueoplw\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(102, 102, 102, 0)\"},children:\"Learn about hosting built for scale and reliability.\"})}),className:\"framer-jh8288\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sm88v8\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,sizes:\"320px\",src:\"https://framerusercontent.com/images/zaiQ2aENO8px1V4JxEZHt19IQ.png\",srcSet:\"https://framerusercontent.com/images/zaiQ2aENO8px1V4JxEZHt19IQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/zaiQ2aENO8px1V4JxEZHt19IQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zaiQ2aENO8px1V4JxEZHt19IQ.png 1280w\"},className:\"framer-5rra2\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-130f4my\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 252, 252)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 17, 33, 0) 0%, rgba(0, 0, 0, 0) 100%)\"},children:\"Learn about hosting built for scale and reliability.\"})})}),className:\"framer-1t8vxgf\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})],speed:90,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-oz8ysa-container\",isModuleExternal:true,nodeId:\"h6ZH4rkcB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:30,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"h6ZH4rkcB\",layoutId:\"h6ZH4rkcB\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pce75o\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-yapk0f\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,sizes:\"320px\",src:\"https://framerusercontent.com/images/WNxscQgHFEDs8aJEvGaWQvbDvR0.png\",srcSet:\"https://framerusercontent.com/images/WNxscQgHFEDs8aJEvGaWQvbDvR0.png?scale-down-to=512 512w,https://framerusercontent.com/images/WNxscQgHFEDs8aJEvGaWQvbDvR0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WNxscQgHFEDs8aJEvGaWQvbDvR0.png 1280w\"},className:\"framer-k1japz\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hcq6c9\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(102, 102, 102, 0)\"},children:\"Learn about hosting built for scale and reliability.\"})}),className:\"framer-eefbei\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ciasww\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,sizes:\"320px\",src:\"https://framerusercontent.com/images/VnSPPpUOPs7mGcRtwW1p8iI95I.png\",srcSet:\"https://framerusercontent.com/images/VnSPPpUOPs7mGcRtwW1p8iI95I.png?scale-down-to=512 512w,https://framerusercontent.com/images/VnSPPpUOPs7mGcRtwW1p8iI95I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VnSPPpUOPs7mGcRtwW1p8iI95I.png 1280w\"},className:\"framer-1p6o391\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d2md2\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(102, 102, 102, 0)\"},children:\"Learn about hosting built for scale and reliability.\"})}),className:\"framer-1u29rjl\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kxeg64\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,sizes:\"320px\",src:\"https://framerusercontent.com/images/8tGTzSu5gMBU6YJ5TAWQtA0UF0.png\",srcSet:\"https://framerusercontent.com/images/8tGTzSu5gMBU6YJ5TAWQtA0UF0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8tGTzSu5gMBU6YJ5TAWQtA0UF0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8tGTzSu5gMBU6YJ5TAWQtA0UF0.png 1280w\"},className:\"framer-1wa4txe\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ueoplw\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(102, 102, 102, 0)\"},children:\"Learn about hosting built for scale and reliability.\"})}),className:\"framer-jh8288\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sm88v8\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,sizes:\"320px\",src:\"https://framerusercontent.com/images/zaiQ2aENO8px1V4JxEZHt19IQ.png\",srcSet:\"https://framerusercontent.com/images/zaiQ2aENO8px1V4JxEZHt19IQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/zaiQ2aENO8px1V4JxEZHt19IQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zaiQ2aENO8px1V4JxEZHt19IQ.png 1280w\"},className:\"framer-5rra2\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-130f4my\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 252, 252)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 17, 33, 0) 0%, rgba(0, 0, 0, 0) 100%)\"},children:\"Learn about hosting built for scale and reliability.\"})})}),className:\"framer-1t8vxgf\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-201sog\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ijb8j7\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,sizes:\"301px\",src:\"https://framerusercontent.com/images/OFiTiQ83NeCU1xdES7CIEY226ms.png\",srcSet:\"https://framerusercontent.com/images/OFiTiQ83NeCU1xdES7CIEY226ms.png?scale-down-to=512 512w,https://framerusercontent.com/images/OFiTiQ83NeCU1xdES7CIEY226ms.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OFiTiQ83NeCU1xdES7CIEY226ms.png 1280w\"},className:\"framer-11ly3z8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(102, 102, 102, 0)\"},children:\"Learn about hosting built for scale and reliability.\"})}),className:\"framer-y1rch5\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.button,{className:\"framer-1u4qhq4\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\"})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tkvhrh\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,sizes:\"320px\",src:\"https://framerusercontent.com/images/zxwVQHtmYhLWQaWeGIs9pWpo.png\",srcSet:\"https://framerusercontent.com/images/zxwVQHtmYhLWQaWeGIs9pWpo.png?scale-down-to=512 512w,https://framerusercontent.com/images/zxwVQHtmYhLWQaWeGIs9pWpo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zxwVQHtmYhLWQaWeGIs9pWpo.png 1280w\"},className:\"framer-1oaag4q\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(0, 17, 33, 0)\"},children:\"Optimize for SEO\"})}),className:\"framer-502rpd\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.button,{className:\"framer-19cs5ol\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\"})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v5fj2f\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:720,pixelWidth:1280,sizes:\"320px\",src:\"https://framerusercontent.com/images/rrLb30YXPaf89638b4eXqQmuWhg.png\",srcSet:\"https://framerusercontent.com/images/rrLb30YXPaf89638b4eXqQmuWhg.png?scale-down-to=512 512w,https://framerusercontent.com/images/rrLb30YXPaf89638b4eXqQmuWhg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rrLb30YXPaf89638b4eXqQmuWhg.png 1280w\"},className:\"framer-1wtxmyk\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(102, 102, 102, 0)\"},children:\"Get inspired by blogs, job openings, events and more.\"})}),className:\"framer-22j7oc\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.button,{className:\"framer-e1umtk\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\"})]})})]})],speed:90,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dsyrsf\",\"data-framer-name\":\"2 Columns Text Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ciarrr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jh28sb\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jpvr34\",\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f07s9c\",\"data-framer-name\":\"Background+Border\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bfoki1\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:184,pixelWidth:616,positionX:\"center\",positionY:\"center\",sizes:\"153.27px\",src:\"https://framerusercontent.com/images/rvrUaJh8O4jPbsSGckgvljSFI.png\",srcSet:\"https://framerusercontent.com/images/rvrUaJh8O4jPbsSGckgvljSFI.png?scale-down-to=512 512w,https://framerusercontent.com/images/rvrUaJh8O4jPbsSGckgvljSFI.png 616w\"},className:\"framer-1un8i3n\",\"data-framer-name\":\"Trustpilot My Amazon Guy reviews\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Posted April 23, 2025\"})}),className:\"framer-1b3w3je\",\"data-framer-name\":\"Posted April 24, 2024\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ijxjbc\",\"data-framer-name\":\"Frame 8133\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rbxlk2\",\"data-framer-name\":\"Frame 8130\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kpn3tj\",\"data-framer-name\":\"Frame 8129\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1200,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"65px\",src:\"https://framerusercontent.com/images/oB0u6Bu6ButAb6fBtIePGrPlNU.png\",srcSet:\"https://framerusercontent.com/images/oB0u6Bu6ButAb6fBtIePGrPlNU.png?scale-down-to=512 512w,https://framerusercontent.com/images/oB0u6Bu6ButAb6fBtIePGrPlNU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oB0u6Bu6ButAb6fBtIePGrPlNU.png 1200w\"},className:\"framer-u2d0nx\",\"data-framer-name\":\"Background\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ykxiq5\",\"data-framer-name\":\"Frame 8128\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"Olivia\"})}),className:\"framer-10d0nhr\",\"data-framer-name\":\"Paul Samuel\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q3mw9\",\"data-border\":true,\"data-framer-name\":\"Horizontal Divider\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.666666666666664,intrinsicWidth:176,pixelHeight:49,pixelWidth:264,src:\"https://framerusercontent.com/images/QYIjhfMniXoGKTkOXbjTe8w8.png\"},className:\"framer-13buzw2\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eefnlv\",\"data-framer-name\":\"Frame 8132\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j03ygp\",\"data-framer-name\":\"Frame 8131\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-twuvmk\",\"data-styles-preset\":\"W_ZWObZHr\",children:\"Exceptional Partnership\"})}),className:\"framer-1cfjtqg\",\"data-framer-name\":\"Heading 4 \u2192 No.1 Choice for all matters Amazon\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-428m00\",\"data-styles-preset\":\"Q9pwvaSty\",children:\"Advance Amazon has been a game-changer for our business. Their team's in-depth understanding of our objectives and tailored strategy have yielded impressive results. From product listing optimization to targeted advertising, their expertise has been invaluable. We're thrilled with the growth and success they've helped us achieve, and we're excited to continue our partnership.\"})}),className:\"framer-1uwpp14\",\"data-framer-name\":\"This company is the real deal and we have used them for trouble shooting and fixing issues on amazon plus also excellent in fixing our listings and content.\\xa0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1unvkif\",\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-68p2nu\",\"data-framer-name\":\"Background+Border\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1us4tvu\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:184,pixelWidth:616,positionX:\"center\",positionY:\"center\",sizes:\"153.27px\",src:\"https://framerusercontent.com/images/rvrUaJh8O4jPbsSGckgvljSFI.png\",srcSet:\"https://framerusercontent.com/images/rvrUaJh8O4jPbsSGckgvljSFI.png?scale-down-to=512 512w,https://framerusercontent.com/images/rvrUaJh8O4jPbsSGckgvljSFI.png 616w\"},className:\"framer-1twf5v7\",\"data-framer-name\":\"Trustpilot My Amazon Guy reviews\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Posted March 17, 2025\"})}),className:\"framer-q7m1w1\",\"data-framer-name\":\"Posted April 24, 2024\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tbidpx\",\"data-framer-name\":\"Frame 8133\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gohul6\",\"data-framer-name\":\"Frame 8130\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rrf2ia\",\"data-framer-name\":\"Frame 8129\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1200,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"65px\",src:\"https://framerusercontent.com/images/w6wodGz0WhLjwvoDR2w6ov7p0.png\",srcSet:\"https://framerusercontent.com/images/w6wodGz0WhLjwvoDR2w6ov7p0.png?scale-down-to=512 512w,https://framerusercontent.com/images/w6wodGz0WhLjwvoDR2w6ov7p0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/w6wodGz0WhLjwvoDR2w6ov7p0.png 1200w\"},className:\"framer-1iqgyq9\",\"data-framer-name\":\"Background\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s3uas3\",\"data-framer-name\":\"Frame 8128\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"Andrew Roberts\"})}),className:\"framer-vi8yqk\",\"data-framer-name\":\"Paul Samuel\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15yqe50\",\"data-border\":true,\"data-framer-name\":\"Horizontal Divider\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.666666666666664,intrinsicWidth:176,pixelHeight:49,pixelWidth:264,src:\"https://framerusercontent.com/images/QYIjhfMniXoGKTkOXbjTe8w8.png\"},className:\"framer-136tzzz\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mh0tlh\",\"data-framer-name\":\"Frame 8132\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7murnm\",\"data-framer-name\":\"Frame 8131\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-twuvmk\",\"data-styles-preset\":\"W_ZWObZHr\",children:\"Swift Resolution and Outstanding Support from Advance Amazon...\"})}),className:\"framer-1t1u9l7\",\"data-framer-name\":\"Heading 4 \u2192 No.1 Choice for all matters Amazon\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-428m00\",\"data-styles-preset\":\"Q9pwvaSty\",children:\"After facing numerous hurdles listing my initial Amazon product, I sought Advance Amazon's guidance. They swiftly pinpointed and rectified the problem via a streamlined diagnostic process, enabling a smooth product launch. Furthermore, they proactively offered ongoing support for future Amazon-related questions. Their team is responsive, courteous, and truly dedicated to client success. I wholeheartedly endorse Advance Amazon and would happily collaborate again.\"})}),className:\"framer-1nioco6\",\"data-framer-name\":\"This company is the real deal and we have used them for trouble shooting and fixing issues on amazon plus also excellent in fixing our listings and content.\\xa0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dedbk3\",\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m2df48\",\"data-framer-name\":\"Background+Border\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f0jufg\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:184,pixelWidth:616,positionX:\"center\",positionY:\"center\",sizes:\"153.27px\",src:\"https://framerusercontent.com/images/rvrUaJh8O4jPbsSGckgvljSFI.png\",srcSet:\"https://framerusercontent.com/images/rvrUaJh8O4jPbsSGckgvljSFI.png?scale-down-to=512 512w,https://framerusercontent.com/images/rvrUaJh8O4jPbsSGckgvljSFI.png 616w\"},className:\"framer-licdv8\",\"data-framer-name\":\"Trustpilot My Amazon Guy reviews\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Posted April 03, 2025\"})}),className:\"framer-46qr9u\",\"data-framer-name\":\"Posted April 24, 2024\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5jovud\",\"data-framer-name\":\"Frame 8133\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1devkxu\",\"data-framer-name\":\"Frame 8130\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fmlpnk\",\"data-framer-name\":\"Frame 8129\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1200,pixelWidth:797,positionX:\"center\",positionY:\"center\",sizes:\"65px\",src:\"https://framerusercontent.com/images/fGKVEXiSk7ktgyjOSUnIfMamGEg.jpg\",srcSet:\"https://framerusercontent.com/images/fGKVEXiSk7ktgyjOSUnIfMamGEg.jpg?scale-down-to=1024 680w,https://framerusercontent.com/images/fGKVEXiSk7ktgyjOSUnIfMamGEg.jpg 797w\"},className:\"framer-wekq6y\",\"data-framer-name\":\"Background\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9zy2w1\",\"data-framer-name\":\"Frame 8128\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\" Fynlor Brighton\"})}),className:\"framer-1g03kj1\",\"data-framer-name\":\"Paul Samuel\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sl6af8\",\"data-border\":true,\"data-framer-name\":\"Horizontal Divider\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.666666666666664,intrinsicWidth:176,pixelHeight:49,pixelWidth:264,src:\"https://framerusercontent.com/images/QYIjhfMniXoGKTkOXbjTe8w8.png\"},className:\"framer-9e3392\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zkd6z0\",\"data-framer-name\":\"Frame 8132\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n4juvf\",\"data-framer-name\":\"Frame 8131\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-twuvmk\",\"data-styles-preset\":\"W_ZWObZHr\",children:\"Advance Amazon: Saving My Amazon Listing (and My Business!)\"})}),className:\"framer-xdtxo2\",\"data-framer-name\":\"Heading 4 \u2192 No.1 Choice for all matters Amazon\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-428m00\",\"data-styles-preset\":\"Q9pwvaSty\",children:\"I recently hired Advance Amazon to help restore my Amazon product page after fruitless attempts for weeks. Despite numerous attempts to contact Amazon directly, I made no headway and felt disheartened. After contacting Advance Amazon, I immediately observed their clear, professional communication and proactive strategy. Crucially, they successfully reinstated my listing\u2014an outcome I likely couldn't have achieved independently. Collaborating with them was undeniably beneficial, and I'm deeply thankful for their expertise. Many thanks to AA\u2014you truly saved my business.\"})}),className:\"framer-66sqqf\",\"data-framer-name\":\"This company is the real deal and we have used them for trouble shooting and fixing issues on amazon plus also excellent in fixing our listings and content.\\xa0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ixsjja\",\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1satgss\",\"data-framer-name\":\"Background+Border\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1idect6\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:184,pixelWidth:616,positionX:\"center\",positionY:\"center\",sizes:\"153.27px\",src:\"https://framerusercontent.com/images/rvrUaJh8O4jPbsSGckgvljSFI.png\",srcSet:\"https://framerusercontent.com/images/rvrUaJh8O4jPbsSGckgvljSFI.png?scale-down-to=512 512w,https://framerusercontent.com/images/rvrUaJh8O4jPbsSGckgvljSFI.png 616w\"},className:\"framer-1qo7lob\",\"data-framer-name\":\"Trustpilot My Amazon Guy reviews\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Posted April 08, 2025\"})}),className:\"framer-1f58jw6\",\"data-framer-name\":\"Posted April 24, 2024\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lmlsxb\",\"data-framer-name\":\"Frame 8133\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sfnud1\",\"data-framer-name\":\"Frame 8130\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yrvspe\",\"data-framer-name\":\"Frame 8129\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1200,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"65px\",src:\"https://framerusercontent.com/images/G3urRosBtdRMxdTvFgqVHn2bVSQ.jpg\",srcSet:\"https://framerusercontent.com/images/G3urRosBtdRMxdTvFgqVHn2bVSQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/G3urRosBtdRMxdTvFgqVHn2bVSQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/G3urRosBtdRMxdTvFgqVHn2bVSQ.jpg 1200w\"},className:\"framer-1ecttx3\",\"data-framer-name\":\"Background\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l6xpga\",\"data-framer-name\":\"Frame 8128\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"Edward Leon\"})}),className:\"framer-1pr5a8p\",\"data-framer-name\":\"Paul Samuel\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m67fhn\",\"data-border\":true,\"data-framer-name\":\"Horizontal Divider\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.666666666666664,intrinsicWidth:176,pixelHeight:49,pixelWidth:264,src:\"https://framerusercontent.com/images/QYIjhfMniXoGKTkOXbjTe8w8.png\"},className:\"framer-dfzxcx\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rno5hx\",\"data-framer-name\":\"Frame 8132\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kh2obh\",\"data-framer-name\":\"Frame 8131\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-twuvmk\",\"data-styles-preset\":\"W_ZWObZHr\",children:\"Partnering with Advance Amazon has been\u2026\"})}),className:\"framer-1n8639\",\"data-framer-name\":\"Heading 4 \u2192 No.1 Choice for all matters Amazon\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-428m00\",\"data-styles-preset\":\"Q9pwvaSty\",children:\"Partnering with Advance Amazon has been one of the best decisions we\u2019ve made for our small business. As a manufacturer, managing our Amazon store was becoming more complex by the day. But since bringing AA on board over a year ago, we\u2019ve seen over 100% growth in sales and that\u2019s just the start. Their team has tackled every challenge thrown our way, from backend issues to platform changes, all while keeping our brand moving forward. What\u2019s made the biggest difference is how their support has allowed our in-house team to focus on expanding other sales channels, knowing that the Amazon side is being handled with care and expertise. We\u2019re genuinely thankful for everything the Advance Amazon team has done and are excited to continue building on this momentum\"})}),className:\"framer-1x5qapz\",\"data-framer-name\":\"This company is the real deal and we have used them for trouble shooting and fixing issues on amazon plus also excellent in fixing our listings and content.\\xa0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-ugas46\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fdup7y\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cjiajm\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ptnv5h\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p52ab8\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"ADVANCE \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"TRANSFORMATIONS\"})]})}),className:\"framer-e8rr0p\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r0upao\",\"data-framer-name\":\"Middle\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\"},children:\"Optimizing main images on Amazon unlocks a powerful sales engine. Your products stand out, drawing more clicks and conversions. Enhanced visibility means your brand captures attention and loyalty. This initiative emphasizes the transformation process of our team\u2019s work through visually compelling \u201Cbefore and after\u201D presentations.\"})}),className:\"framer-cco2lm\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-czchc3\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",style:{\"--framer-text-alignment\":\"center\"},children:\"MAIN IMAGE OPTIMZATION\"})}),className:\"framer-xt5iww\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ptms2u\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ggmt3k\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j33pl5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Rb8xxkeMW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(109, 121, 189)\",customHandle:false,customLabel:true,handle:[],height:\"100%\",id:\"Rb8xxkeMW\",label:{after:\"After\",before:\"Before\",position:\"top\",x:26,y:24},layoutId:\"Rb8xxkeMW\",left:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/RfAHE7jXCm3hprHhTRDqB2ooAc.png\",srcSet:\"https://framerusercontent.com/images/RfAHE7jXCm3hprHhTRDqB2ooAc.png?scale-down-to=512 512w,https://framerusercontent.com/images/RfAHE7jXCm3hprHhTRDqB2ooAc.png 800w\"},\"\"),leftLabel:[],line:{color:\"rgb(0, 0, 0)\",width:8},position:69,radius:24,right:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/Q9c9J43DGZcF1ePhYef1rfgNfFs.png\",srcSet:\"https://framerusercontent.com/images/Q9c9J43DGZcF1ePhYef1rfgNfFs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Q9c9J43DGZcF1ePhYef1rfgNfFs.png 800w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1wech1k\",\"data-framer-name\":\"Benefits\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xfqqiz\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zoxce\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ux0nkq\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19datg8\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ozthkn\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Drive More Traffic \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"with Optimized Images\"})]})}),className:\"framer-1gp3eek\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\"},children:\"Optimizing images provides significant advantages for Amazon sellers, serving as a crucial factor in the success of their product listings. Here are some key benefits\"})}),className:\"framer-113alh8\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m4pii4\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11xchv\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t37yzt\",\"data-border\":true,\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{background:{alt:\"Blue 3D Abstract\",fit:\"fill\",pixelHeight:537,pixelWidth:1022,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 164px) / 2, 1px) - 40px)`,src:\"https://framerusercontent.com/images/uvCIQuJK7NNKLsxM7BlC93zmQs.png\",srcSet:\"https://framerusercontent.com/images/uvCIQuJK7NNKLsxM7BlC93zmQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/uvCIQuJK7NNKLsxM7BlC93zmQs.png 1022w\"}},nWzKj3W9V:{background:{alt:\"Blue 3D Abstract\",fit:\"fill\",pixelHeight:537,pixelWidth:1022,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 140px)`,src:\"https://framerusercontent.com/images/uvCIQuJK7NNKLsxM7BlC93zmQs.png\",srcSet:\"https://framerusercontent.com/images/uvCIQuJK7NNKLsxM7BlC93zmQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/uvCIQuJK7NNKLsxM7BlC93zmQs.png 1022w\"}},QvtLBAi1h:{background:{alt:\"Blue 3D Abstract\",fit:\"fill\",pixelHeight:537,pixelWidth:1022,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px)`,src:\"https://framerusercontent.com/images/uvCIQuJK7NNKLsxM7BlC93zmQs.png\",srcSet:\"https://framerusercontent.com/images/uvCIQuJK7NNKLsxM7BlC93zmQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/uvCIQuJK7NNKLsxM7BlC93zmQs.png 1022w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Blue 3D Abstract\",fit:\"fill\",pixelHeight:537,pixelWidth:1022,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 264px) / 2, 1px) - 40px)`,src:\"https://framerusercontent.com/images/uvCIQuJK7NNKLsxM7BlC93zmQs.png\",srcSet:\"https://framerusercontent.com/images/uvCIQuJK7NNKLsxM7BlC93zmQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/uvCIQuJK7NNKLsxM7BlC93zmQs.png 1022w\"},className:\"framer-1nlv7n6\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17z9l8u\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-se5pqx\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ppy1fz\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"Trigger buy button of your customers\"})}),className:\"framer-r6lj8n\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kocp7g\",\"data-framer-name\":\"Seperator\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m8ufpr\",\"data-framer-name\":\"Body Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d2ee1de5-88f8-41d7-8642-338767096a94, rgba(255, 255, 255, 0.5))\"},children:\"With advanced optimization techniques, your products stand out, triggering the customer's buy button by addressing pain points directly.\"})}),className:\"framer-1b0zjyl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wj4ldd\",\"data-framer-name\":\"Glow\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mcdtz9\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f2z3in\",\"data-border\":true,\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{background:{alt:\"Stats\",fit:\"fill\",pixelHeight:296,pixelWidth:650,sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 164px) / 2, 1px) - 24px) / 2, 1px) - 40px)`,src:\"https://framerusercontent.com/images/f2xqZl8CeLFx8aJj05oz2mEewPw.png\",srcSet:\"https://framerusercontent.com/images/f2xqZl8CeLFx8aJj05oz2mEewPw.png?scale-down-to=512 512w,https://framerusercontent.com/images/f2xqZl8CeLFx8aJj05oz2mEewPw.png 650w\"}},nWzKj3W9V:{background:{alt:\"Stats\",fit:\"fill\",pixelHeight:296,pixelWidth:650,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 124px) / 2, 1px) - 40px)`,src:\"https://framerusercontent.com/images/f2xqZl8CeLFx8aJj05oz2mEewPw.png\",srcSet:\"https://framerusercontent.com/images/f2xqZl8CeLFx8aJj05oz2mEewPw.png?scale-down-to=512 512w,https://framerusercontent.com/images/f2xqZl8CeLFx8aJj05oz2mEewPw.png 650w\"}},QvtLBAi1h:{background:{alt:\"Stats\",fit:\"fill\",pixelHeight:296,pixelWidth:650,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px)`,src:\"https://framerusercontent.com/images/f2xqZl8CeLFx8aJj05oz2mEewPw.png\",srcSet:\"https://framerusercontent.com/images/f2xqZl8CeLFx8aJj05oz2mEewPw.png?scale-down-to=512 512w,https://framerusercontent.com/images/f2xqZl8CeLFx8aJj05oz2mEewPw.png 650w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Stats\",fit:\"fill\",pixelHeight:296,pixelWidth:650,sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 264px) / 2, 1px) - 24px) / 2, 1px) - 40px)`,src:\"https://framerusercontent.com/images/f2xqZl8CeLFx8aJj05oz2mEewPw.png\",srcSet:\"https://framerusercontent.com/images/f2xqZl8CeLFx8aJj05oz2mEewPw.png?scale-down-to=512 512w,https://framerusercontent.com/images/f2xqZl8CeLFx8aJj05oz2mEewPw.png 650w\"},className:\"framer-ufwvey\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lsv2zn\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q4dyoc\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-c719g7\",\"data-framer-name\":\"Title/Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"Improved Conversion Rates\"})}),className:\"framer-lwxp9f\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wt7stj\",\"data-framer-name\":\"Seperator\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sc2lzd\",\"data-framer-name\":\"Body Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d2ee1de5-88f8-41d7-8642-338767096a94, rgba(255, 255, 255, 0.5))\"},children:\"Compelling main images that effectively showcase product features and benefits can lead to increased conversions as shoppers are more likely to make a purchase.\"})}),className:\"framer-v8iava\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13mb9ju\",\"data-framer-name\":\"Glow\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6zn5li\",\"data-border\":true,\"data-framer-name\":\"Right\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"UI\",fit:\"fill\",pixelHeight:109,pixelWidth:293,src:\"https://framerusercontent.com/images/k1PtGRt1aiFfe2G36aBdMW7aa8.png\"},className:\"framer-1ysh6if\",\"data-border\":true,\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c39xnc\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5dmsi8\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k1cu7m\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"Better Product Understanding\"})}),className:\"framer-5658pa\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13ayu2s\",\"data-framer-name\":\"Seperator\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g1c3m9\",\"data-framer-name\":\"Body Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d2ee1de5-88f8-41d7-8642-338767096a94, rgba(255, 255, 255, 0.5))\"},children:\"Clear and informative main images help shoppers understand your product better, reducing ambiguity and increasing confidence in their purchasing decision.\"})}),className:\"framer-86bf1z\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ud8f7\",\"data-framer-name\":\"Glow\"})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hkh8sx\",\"data-framer-name\":\"Right\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iry7zu\",\"data-border\":true,\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{background:{alt:\"Mobile View\",fit:\"fill\",pixelHeight:531,pixelWidth:1029,sizes:`calc(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 164px) / 2, 1px), 406px) - 40px)`,src:\"https://framerusercontent.com/images/U8Rzi686Nr7yiAu8w1SfVAEBo.png\",srcSet:\"https://framerusercontent.com/images/U8Rzi686Nr7yiAu8w1SfVAEBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/U8Rzi686Nr7yiAu8w1SfVAEBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/U8Rzi686Nr7yiAu8w1SfVAEBo.png 1029w\"}},nWzKj3W9V:{background:{alt:\"Mobile View\",fit:\"fill\",pixelHeight:531,pixelWidth:1029,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 140px)`,src:\"https://framerusercontent.com/images/U8Rzi686Nr7yiAu8w1SfVAEBo.png\",srcSet:\"https://framerusercontent.com/images/U8Rzi686Nr7yiAu8w1SfVAEBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/U8Rzi686Nr7yiAu8w1SfVAEBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/U8Rzi686Nr7yiAu8w1SfVAEBo.png 1029w\"}},QvtLBAi1h:{background:{alt:\"Mobile View\",fit:\"fill\",pixelHeight:531,pixelWidth:1029,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px)`,src:\"https://framerusercontent.com/images/U8Rzi686Nr7yiAu8w1SfVAEBo.png\",srcSet:\"https://framerusercontent.com/images/U8Rzi686Nr7yiAu8w1SfVAEBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/U8Rzi686Nr7yiAu8w1SfVAEBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/U8Rzi686Nr7yiAu8w1SfVAEBo.png 1029w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Mobile View\",fit:\"fill\",pixelHeight:531,pixelWidth:1029,sizes:`calc(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 264px) / 2, 1px), 486px) - 40px)`,src:\"https://framerusercontent.com/images/U8Rzi686Nr7yiAu8w1SfVAEBo.png\",srcSet:\"https://framerusercontent.com/images/U8Rzi686Nr7yiAu8w1SfVAEBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/U8Rzi686Nr7yiAu8w1SfVAEBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/U8Rzi686Nr7yiAu8w1SfVAEBo.png 1029w\"},className:\"framer-1amaqtq\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15maqfr\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qzeg02\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-l31i64\",\"data-framer-name\":\"Title/Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"Increased Click-Through Rate (CTR)\"})}),className:\"framer-1qwej80\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qvdn83\",\"data-framer-name\":\"Seperator\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6ze4do\",\"data-framer-name\":\"Body Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d2ee1de5-88f8-41d7-8642-338767096a94, rgba(255, 255, 255, 0.5))\"},children:\"Optimized main images grab the attention of shoppers, leading to higher CTRs as they browse through search results.\"})}),className:\"framer-1q2esu0\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4f14sg\",\"data-framer-name\":\"Glow\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qg98n9\",\"data-border\":true,\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{background:{alt:\"3D Abstracts\",fit:\"fill\",pixelHeight:522,pixelWidth:1045,sizes:`calc(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 164px) / 2, 1px), 406px) - 40px)`,src:\"https://framerusercontent.com/images/tpxB8WZbLtydCPegEc94pCOFE.png\",srcSet:\"https://framerusercontent.com/images/tpxB8WZbLtydCPegEc94pCOFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tpxB8WZbLtydCPegEc94pCOFE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tpxB8WZbLtydCPegEc94pCOFE.png 1045w\"}},nWzKj3W9V:{background:{alt:\"3D Abstracts\",fit:\"fill\",pixelHeight:522,pixelWidth:1045,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 140px)`,src:\"https://framerusercontent.com/images/tpxB8WZbLtydCPegEc94pCOFE.png\",srcSet:\"https://framerusercontent.com/images/tpxB8WZbLtydCPegEc94pCOFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tpxB8WZbLtydCPegEc94pCOFE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tpxB8WZbLtydCPegEc94pCOFE.png 1045w\"}},QvtLBAi1h:{background:{alt:\"3D Abstracts\",fit:\"fill\",pixelHeight:522,pixelWidth:1045,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px)`,src:\"https://framerusercontent.com/images/tpxB8WZbLtydCPegEc94pCOFE.png\",srcSet:\"https://framerusercontent.com/images/tpxB8WZbLtydCPegEc94pCOFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tpxB8WZbLtydCPegEc94pCOFE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tpxB8WZbLtydCPegEc94pCOFE.png 1045w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"3D Abstracts\",fit:\"fill\",pixelHeight:522,pixelWidth:1045,sizes:`calc(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 264px) / 2, 1px), 486px) - 40px)`,src:\"https://framerusercontent.com/images/tpxB8WZbLtydCPegEc94pCOFE.png\",srcSet:\"https://framerusercontent.com/images/tpxB8WZbLtydCPegEc94pCOFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tpxB8WZbLtydCPegEc94pCOFE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tpxB8WZbLtydCPegEc94pCOFE.png 1045w\"},className:\"framer-ia26o1\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1954yc0\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-63xlfw\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bk5bmh\",\"data-framer-name\":\"Title/Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"Competitive Advantage\"})}),className:\"framer-13enf02\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rnmi38\",\"data-framer-name\":\"Seperator\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nb9220\",\"data-framer-name\":\"Body Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d2ee1de5-88f8-41d7-8642-338767096a94, rgba(255, 255, 255, 0.5))\"},children:\"By investing in advanced optimization techniques for main images, you gain a competitive edge over other sellers, attracting more traffic and sales to your listings.\"})}),className:\"framer-k9cdsr\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19o332w\",\"data-framer-name\":\"Glow\"})]})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-pjlup hidden-1hn01op hidden-1dp0tct\",\"data-framer-name\":\"Detail\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wauvb0\",\"data-framer-name\":\"Detail Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:237,intrinsicWidth:1409,svg:'<svg width=\"1409\" height=\"237\" viewBox=\"0 0 1409 237\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1002.17 0H1409V203C1409 219.016 1396.02 232 1380 232H19C10.9918 232 4.5 225.508 4.5 217.5C4.5 209.492 10.9918 203 19 203H770.158C780.928 203 791.243 198.657 798.77 190.953L973.56 12.0468C981.086 4.34311 991.401 0 1002.17 0Z\" fill=\"url(#paint0_linear_654_13449)\"/>\\n<path d=\"M1408.5 0.5H1002.17C991.536 0.5 981.349 4.78882 973.917 12.3962L799.127 191.303C791.507 199.103 781.063 203.5 770.158 203.5H19C11.2679 203.5 5 209.768 5 217.5C5 225.232 11.2679 231.5 19 231.5H1380C1395.74 231.5 1408.5 218.74 1408.5 203V0.5Z\" stroke=\"url(#paint1_linear_654_13449)\" stroke-opacity=\"0.1\"/>\\n<rect y=\"205\" width=\"1359\" height=\"32\" fill=\"black\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_654_13449\" x1=\"593.105\" y1=\"-1.38996\" x2=\"605.803\" y2=\"165.181\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#101010\" stop-opacity=\"0.7\"/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_654_13449\" x1=\"1287\" y1=\"116\" x2=\"-43.1148\" y2=\"326.194\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#999999\" stop-opacity=\"0.7\"/>\\n<stop offset=\"0.272409\" stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"#999999\" stop-opacity=\"0.4\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hpti9a\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1320px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1371,width:`min(${componentViewport?.width||\"100vw\"}, 1320px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17y70q2-container\",nodeId:\"sncGTcTTN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{variant:\"HINCsxHT3\"}},children:/*#__PURE__*/_jsx(BeforeAfter1,{height:\"100%\",id:\"sncGTcTTN\",layoutId:\"sncGTcTTN\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"aG_3htl7U\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x3nwyg\",\"data-framer-name\":\"2 Columns Image Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kw55ui\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1elv0pb hidden-1dp0tct\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-36fvj6\",\"data-framer-name\":\"Content\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mdjxbp\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-of3azk\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rxg7qf\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-533jop-container\",nodeId:\"Z8FsSSWfp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TagPrimaryTag,{height:\"100%\",id:\"Z8FsSSWfp\",KS7KLFqN8:\"ADVANCED PPC MANAGMENT\",layoutId:\"Z8FsSSWfp\",rQKAY6456:\"NEW\",variant:\"axDSKQZXP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-50t1pf\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"ADVANCE \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"TRANSFORMATIONS\"})]})}),className:\"framer-15kzwjs\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b1whbg\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:383,pixelWidth:680,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NFvNwA9tAgSTOlteGdsjvf3NEDo.webp\"},className:\"framer-9o0z3l\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ldf7rs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yenlsq\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"CAMPAIGN STRATEGIES\"})}),className:\"framer-1gcg758\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",children:\"Unlock effortless success\"})}),className:\"framer-1dxdm8f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-428m00\",\"data-styles-preset\":\"Q9pwvaSty\",children:\"Running successful campaigns should repel you instead of blog you down. We'll give you peace of mind by seamlessly handling every aspect of your campaigns, allowing you to concentrate on what you do best- growing your business.\"})}),className:\"framer-1t03frj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks18=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5nfxxa-container\",nodeId:\"C5jU7Za_m\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks18[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks18[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks18[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"I Want These Results too!\",GT109pdEG:resolvedLinks18[0],height:\"100%\",id:\"C5jU7Za_m\",layoutId:\"C5jU7Za_m\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6gwzaq\",\"data-framer-name\":\"2 Columns Image Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t509e9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mwzavv\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1730w37\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oz7j4h\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f7gxda\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"We\u2019ll manage and optimize your PPC campaigns so you can \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"focus on scaling your business\"})]})}),className:\"framer-1xy44di\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1va6v74\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:457,pixelWidth:598,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OciLJ4VZwUQaz3YoxzwPlS1crg.png\"},className:\"framer-1m8sldg\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u28o2r\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x0zfks\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"CAMPAIGN MANAGEMENT\"})}),className:\"framer-1e4ygio\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",children:\"Unparalleled Campaign Results\"})}),className:\"framer-n6kzkv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-428m00\",\"data-styles-preset\":\"Q9pwvaSty\",children:\"Understanding pay-per-click advertising can be a daunting task, especially if you want to keep up with growing competition. Lean on our team of experts to boost organic traffic to your listings from audiences most likely to love your products.\"})}),className:\"framer-1p05m12\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks19=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kjxqxe-container\",nodeId:\"vFsE5dsF6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks19[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks19[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks19[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"I Want These Results too!\",GT109pdEG:resolvedLinks19[0],height:\"100%\",id:\"vFsE5dsF6\",layoutId:\"vFsE5dsF6\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u3ouk2\",\"data-framer-name\":\"2 Columns Image Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h2j255\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-v4jksm\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-oy2toh\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-nprpkj\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-r5yhah\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"ADVANCE AMAZON'S ADVANCED SOLUTIONS FOR \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"ADVANCED BRANDS\"})]})}),className:\"framer-slhlsl\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ghph4b\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dtv5vs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-58x9rt\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"ADVANCED REPORTING\"})}),className:\"framer-1q7pjmd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",children:\"Bid, optimize, measure, repeat\"})}),className:\"framer-183dhd1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-428m00\",\"data-styles-preset\":\"Q9pwvaSty\",children:\"Understanding pay-per-click advertising can be a daunting task, especially if you want to keep up with growing competition. Lean on our team of experts to boost organic traffic to your listings from audiences most likely to love your products.\"})}),className:\"framer-lbzzi5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":q5ElvtMno\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks20=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8ifwxy-container\",nodeId:\"BzNlvYASW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks20[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks20[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks20[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"I Want These Results too!\",GT109pdEG:resolvedLinks20[0],height:\"100%\",id:\"BzNlvYASW\",layoutId:\"BzNlvYASW\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1024,pixelWidth:1536,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/T7Ak1uncqPcaHVeqRIxl3mJgQ.png\"},className:\"framer-qya42h\",\"data-framer-name\":\"Image\"})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x4r2jj\",\"data-framer-name\":\"2 Columns Image Text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1klob5b\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uxxlpx\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1024,pixelWidth:1536,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/szQQfVZh3G5iQ0M55mtwX5avy8.png\"},className:\"framer-2vgy4r\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10w7466\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10qc7qh\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"ADVANCED PPC ADVERTISING PARTNER\"})}),className:\"framer-mbla2z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-pyuk04\",\"data-styles-preset\":\"Q9YGoPiQM\",children:\"Enhance your freedom to grow\"})}),className:\"framer-12li2q4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-428m00\",\"data-styles-preset\":\"Q9pwvaSty\",children:\"It\u2019s tough to scale your business when you focus too much on the necessary minutia of campaign optimizations. No one has time to optimize and adjust bids on the go, so we extend the reach of your team by handling the optimizations for you.  Lean on our experts and technology to propel you forward with fewer growing pains.\"})}),className:\"framer-1sfrw8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":o0iN1zqMr\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks21=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17vn2yn-container\",nodeId:\"fLR0z2WgA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks21[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks21[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks21[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"LET\u2019S TALK STRATEGY\",GT109pdEG:resolvedLinks21[0],height:\"100%\",id:\"fLR0z2WgA\",layoutId:\"fLR0z2WgA\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ro9f7j\",\"data-framer-name\":\"2 Columns Image Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ro397f\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1va5l0d\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-q7esjw\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-128gm8a\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rij6kz-container\",nodeId:\"LWBUDq0iy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TagPrimaryTagLive,{height:\"100%\",id:\"LWBUDq0iy\",layoutId:\"LWBUDq0iy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y1cusq\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:\"Tune in Each Week\"})}),className:\"framer-iwhfp4\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gwttey\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1024,pixelWidth:1536,src:\"https://framerusercontent.com/images/NOXlbuSHjKWUrVT7nRbZNdOe0VE.png\"},className:\"framer-sr0obc\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hl6yx1\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-428m00\",\"data-styles-preset\":\"Q9pwvaSty\",children:\"Welcome to The Amazon Playbook, the ultimate podcast for uncovering the hidden hacks of the Amazon FBA algorithm.  Hosted by an Amazon marketing expert, we dive into the tips, tricks, and advanced strategies that make the biggest brands\u2014like Ray-Ban, Gucci, and Oakley\u2014dominate Amazon.  Learn from top Amazon sellers as they reveal their secrets to success, including product listing optimization, keyword ranking, PPC strategies, and e-commerce growth tactics.  Whether you're an Amazon seller looking to scale or a brand new to Amazon, this podcast is your guide to maximizing sales and winning on Amazon.\"})}),className:\"framer-1br0so5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{\"data-framer-name\":\"Tablet\"},QvtLBAi1h:{\"data-framer-name\":\"Phone\"}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16lm216\",\"data-framer-name\":\"Feature 389\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yn60r6\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6dvk03\",\"data-framer-name\":\"Banner Content Stack\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bleazt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19wjupt\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ctxcbv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dMr_PX0Zz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Simplecast,{embedId:\"11be0640-7cc7-4f00-8b7d-50ddcd7f20c5\",height:\"100%\",id:\"dMr_PX0Zz\",layoutId:\"dMr_PX0Zz\",showShare:true,style:{width:\"100%\"},theme:\"dark\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{PYS1iKP8k:\"amazon-fba-secrets-that-will-double-your-revenue-in-2024\"},unresolvedPathSlugs:{PYS1iKP8k:{collectionId:\"xmA0a4sXI\",collectionItemId:\"advCVhRk5\"}},webPageId:\"XFOoYcKlv\"},motionChild:true,nodeId:\"dvb3ToI2W\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-l4ptzn framer-lux5qc\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wd7fog\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yisl5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SUd5UJCl9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Simplecast,{embedId:\"6bebf939-8419-4c08-b51f-f1f44bfdd83b\",height:\"100%\",id:\"SUd5UJCl9\",layoutId:\"SUd5UJCl9\",showShare:true,style:{width:\"100%\"},theme:\"dark\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{PYS1iKP8k:\"amazon-fba-secrets-that-will-double-your-revenue-in-2024\"},unresolvedPathSlugs:{PYS1iKP8k:{collectionId:\"xmA0a4sXI\",collectionItemId:\"advCVhRk5\"}},webPageId:\"XFOoYcKlv\"},motionChild:true,nodeId:\"L7aHQpOQZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-d5a48y framer-lux5qc\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-166a495\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g3qxhw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jxcK4BEsu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Simplecast,{embedId:\"4455cd9b-ce5b-428a-9c1a-64838f5c6058\",height:\"100%\",id:\"jxcK4BEsu\",layoutId:\"jxcK4BEsu\",showShare:true,style:{width:\"100%\"},theme:\"dark\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{PYS1iKP8k:\"amazon-fba-secrets-that-will-double-your-revenue-in-2024\"},unresolvedPathSlugs:{PYS1iKP8k:{collectionId:\"xmA0a4sXI\",collectionItemId:\"advCVhRk5\"}},webPageId:\"XFOoYcKlv\"},motionChild:true,nodeId:\"MWY0lPkht\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-5ru06e framer-lux5qc\"})})]})]})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YoJE0Jvfz\"},implicitPathVariables:undefined},{href:{webPageId:\"YoJE0Jvfz\"},implicitPathVariables:undefined},{href:{webPageId:\"YoJE0Jvfz\"},implicitPathVariables:undefined},{href:{webPageId:\"YoJE0Jvfz\"},implicitPathVariables:undefined}],children:resolvedLinks22=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x2eh81-container\",nodeId:\"G0MA5xM7p\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{GT109pdEG:resolvedLinks22[1]},nWzKj3W9V:{GT109pdEG:resolvedLinks22[2]},QvtLBAi1h:{GT109pdEG:resolvedLinks22[3]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"All Podcasts\",GT109pdEG:resolvedLinks22[0],height:\"100%\",id:\"G0MA5xM7p\",layoutId:\"G0MA5xM7p\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{\"data-framer-name\":\"Tablet\"},QvtLBAi1h:{\"data-framer-name\":\"Phone\"}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-j532a6\",\"data-framer-name\":\"About 05\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nsl8cj\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-244bvm\",\"data-framer-name\":\"About Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pt4il1\",\"data-framer-name\":\"Images\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{background:{alt:\"\",fit:\"fill\",pixelHeight:2e3,pixelWidth:2e3,sizes:`max(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1224px), 1px) * 0.4338, 1px)`,src:\"https://framerusercontent.com/images/awKuapQPORaMm1CAeGSyWObGig.png\",srcSet:\"https://framerusercontent.com/images/awKuapQPORaMm1CAeGSyWObGig.png?scale-down-to=512 512w,https://framerusercontent.com/images/awKuapQPORaMm1CAeGSyWObGig.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/awKuapQPORaMm1CAeGSyWObGig.png 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/CwuvKm8B12doJRdsIqwYW1Rf7OQ.png\"},className:\"framer-1e4c873\",\"data-framer-name\":\"Image 3\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a6grtx\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1449ff7\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"OUR  MOST REQUESTED AMAZON \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"SUCCESS GUIDE IS FINALLY HERE!\"})]})})},QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:[\"OUR  MOST REQUESTED AMAZON \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"SUCCESS GUIDE IS FINALLY HERE!\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",children:[\"OUR  MOST REQUESTED AMAZON \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, rgb(230, 131, 18))\"},children:\"SUCCESS GUIDE IS FINALLY HERE!\"})]})}),className:\"framer-1icu49n\",\"data-framer-name\":\"Behind the CleanMaster Company\u2019s Stories\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\"},children:\"It\u2019s tough to scale your business when you focus too much on the necessary minutia of campaign optimizations. No one has time to optimize and adjust bids on the go, so we extend the reach of your team by handling the optimizations for you.Lean on our experts and technology to propel you forward with fewer growing pains.\"})})},QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\"},children:\"It\u2019s tough to scale your business when you focus too much on the necessary minutia of campaign optimizations. No one has time to optimize and adjust bids on the go, so we extend the reach of your team by handling the optimizations for you.Lean on our experts and technology to propel you forward with fewer growing pains.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"It\u2019s tough to scale your business when you focus too much on the necessary minutia of campaign optimizations. No one has time to optimize and adjust bids on the go, so we extend the reach of your team by handling the optimizations for you.Lean on our experts and technology to propel you forward with fewer growing pains.\"})}),className:\"framer-5k3bpc\",\"data-framer-name\":\"Explore the core mission and vision that drives us every day. At Behind the Stories Company, we're not just about cleaning homes; we're about making a difference in the lives of our clients and our community.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r1i6xz-container\",nodeId:\"xFxaS2_69\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{AL_NU982V:false,dlVBgpKLv:\"Download\",GT109pdEG:\"https://drive.google.com/uc?export=download&id=1dpUQsGYn1br5s_CmeSyeIeWdrbOAKWZh\",height:\"100%\",id:\"xFxaS2_69\",layoutId:\"xFxaS2_69\",SD1BGlGhK:false,variant:\"vf6JWDf13\",width:\"100%\",YVFZiszrG:{borderColor:\"var(--token-a58752c8-168c-47db-857e-906f22f33790, rgba(255, 255, 255, 0.15))\",borderStyle:\"solid\",borderWidth:3}})})})]})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{\"data-framer-name\":\"Tablet\"},QvtLBAi1h:{\"data-framer-name\":\"Phone\"}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tul3da\",\"data-framer-name\":\"About 42\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1deaa6a\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yjrj0u\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12t3csl\",\"data-framer-name\":\"Left Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yrxhx1\",\"data-framer-name\":\"Content 01\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",children:\"We're not your typical Amazon Marketing Agency!\"})}),className:\"framer-1fpi36v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mdej2p\",\"data-framer-name\":\"Paragraph\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:\"We're a dedicated full-service growth partner Firm specializing in turning clicks into conversions in a competitive marketplace. As an extension of your marketing team, we simplify your path to profitability on Amazon, so you can focus on growing & Scaling your business.\"})}),className:\"framer-1us95c4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ing3ma\",\"data-styles-preset\":\"VnmEZ_3BZ\",children:\"AMAZON GROWTH IT\u2019S WHAT WE DO. IT\u2019S ALL WE DO. YOUR FULL-SERVICE AMAZON FIRM\"})}),className:\"framer-8kgdcr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1308,intrinsicWidth:1100,pixelHeight:2040,pixelWidth:1718,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1440px) - 240px) * 0.8)`,src:\"https://framerusercontent.com/images/0NX16H47ORAbRF85XM8z9KYWdW0.png\",srcSet:\"https://framerusercontent.com/images/0NX16H47ORAbRF85XM8z9KYWdW0.png?scale-down-to=1024 862w,https://framerusercontent.com/images/0NX16H47ORAbRF85XM8z9KYWdW0.png 1718w\"}},QvtLBAi1h:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1308,intrinsicWidth:1100,pixelHeight:2040,pixelWidth:1718,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`,src:\"https://framerusercontent.com/images/0NX16H47ORAbRF85XM8z9KYWdW0.png\",srcSet:\"https://framerusercontent.com/images/0NX16H47ORAbRF85XM8z9KYWdW0.png?scale-down-to=1024 862w,https://framerusercontent.com/images/0NX16H47ORAbRF85XM8z9KYWdW0.png 1718w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1308,intrinsicWidth:1100,pixelHeight:2040,pixelWidth:1718,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 240px, 1320px) * 0.4825)`,src:\"https://framerusercontent.com/images/0NX16H47ORAbRF85XM8z9KYWdW0.png\",srcSet:\"https://framerusercontent.com/images/0NX16H47ORAbRF85XM8z9KYWdW0.png?scale-down-to=1024 862w,https://framerusercontent.com/images/0NX16H47ORAbRF85XM8z9KYWdW0.png 1718w\"},className:\"framer-2n7v5z\",\"data-framer-name\":\"Image\"})})]})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1dr13n1\",\"data-framer-name\":\"Calendly\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(Link,{href:\"y\",motionChild:true,nodeId:\"MVbVBbtjD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-19m3cx4 framer-lux5qc\",\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q04lsv\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10mhoms\",\"data-framer-name\":\"Right\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f059yh\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4xxwjs-container\",nodeId:\"n6FLZVW2_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TagPrimaryTag,{height:\"100%\",id:\"n6FLZVW2_\",KS7KLFqN8:\"Connect with us!\",layoutId:\"n6FLZVW2_\",rQKAY6456:\"NEW\",variant:\"axDSKQZXP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17h38kk\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-alignment\":\"center\"},children:\"Building Stronger Brands\"})}),className:\"framer-ni6mr7\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-127yagi\",\"data-framer-name\":\"Middle\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Delivering high-quality, on-demand designs with precision. \",/*#__PURE__*/_jsx(\"br\",{}),\"Elevate your brand effortlessly, one snap at a time.\"]})}),className:\"framer-1bs42js\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jc4u5q\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7aty4c-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WBVrRaU7d\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"WBVrRaU7d\",layoutId:\"WBVrRaU7d\",radius:\"0px\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},type:\"url\",url:\"https://calendly.com/advanceamazon/45-min-discovery-call\",width:\"100%\",zoom:1})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation11,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition8,__perspectiveFX:false,__targetOpacity:.2,className:\"framer-11t6kgv\",\"data-border\":true,\"data-framer-name\":\"Ellipse 798\",transformTemplate:transformTemplate2})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oan9mt\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-5w8zlr\",\"data-framer-name\":\"Testimonial\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-x8hwew\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-lpatr9\",\"data-framer-name\":\"Bottom\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11qchih-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"h5SWamesZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:60,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"h5SWamesZ\",layoutId:\"h5SWamesZ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lcr045-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"ayZOPVZ_Q\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,height:\"100%\",id:\"ayZOPVZ_Q\",isMixedBorderRadius:false,isRed:true,layoutId:\"ayZOPVZ_Q\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:14,topRightRadius:14,url:\"https://www.youtube.com/watch?v=3YjEdaU1xTc\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jfwkiu-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"Mvflltik9\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,height:\"100%\",id:\"Mvflltik9\",isMixedBorderRadius:false,isRed:true,layoutId:\"Mvflltik9\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:14,topRightRadius:14,url:\"https://www.youtube.com/watch?v=t5Z-Q1bg1tU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ijlerq-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"EWNGdIFgD\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,height:\"100%\",id:\"EWNGdIFgD\",isMixedBorderRadius:false,isRed:true,layoutId:\"EWNGdIFgD\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:14,topRightRadius:14,url:\"https://www.youtube.com/watch?v=1NTKwpAVcHg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t6p4ov-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"KYhlImadI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,height:\"100%\",id:\"KYhlImadI\",isMixedBorderRadius:false,isRed:true,layoutId:\"KYhlImadI\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:14,topRightRadius:14,url:\"https://youtu.be/e42DK3fNsJ0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e3qaze-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"GO_oQHo5p\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,height:\"100%\",id:\"GO_oQHo5p\",isMixedBorderRadius:false,isRed:true,layoutId:\"GO_oQHo5p\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:14,topRightRadius:14,url:\"https://youtu.be/_p7OeV8ifsY\",width:\"100%\"})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1pepbmc\",\"data-framer-name\":\"FAQ\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zbytr4\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r6sj4t\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sdblef\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oupus\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n0dhi4-container\",nodeId:\"C7GrmzUVE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TagPrimaryTag,{height:\"100%\",id:\"C7GrmzUVE\",KS7KLFqN8:\"FAQ\",layoutId:\"C7GrmzUVE\",rQKAY6456:\"NEW\",variant:\"axDSKQZXP\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rs78dl\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",children:\"Frequently\"})}),className:\"framer-1glvl7s\",\"data-framer-name\":\"Text 1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-190xti5\",\"data-styles-preset\":\"QuTNz53Yy\",style:{\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Asked Questions\"})}),className:\"framer-14w2ax9\",\"data-framer-name\":\"Text 2\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1modrcz\",\"data-framer-name\":\"Bottom\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",style:{\"--framer-text-color\":\"var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75, rgba(255, 255, 255, 0.6))\"},children:\"Effortlessly connect with your favorite tools. Whether it's your CRM, email marketing platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-x0s9r5\",\"data-styles-preset\":\"QhK6qqT5U\",children:[\"Have questions? Our FAQ section has you covered with \",/*#__PURE__*/_jsx(\"br\",{}),\"quick answers to the most common inquiries.\"]})}),className:\"framer-1h2rlgm\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{euNp7MUYv:{width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 200px) / 2, 1px), 700px)`},nWzKj3W9V:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 100px)`},QvtLBAi1h:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:641,width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 300px) / 2, 1px), 700px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hb3fx3-container\",nodeId:\"AZrTW61h4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nWzKj3W9V:{style:{width:\"100%\"}},QvtLBAi1h:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(FAQFAQ,{height:\"100%\",id:\"AZrTW61h4\",layoutId:\"AZrTW61h4\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{width:\"89.7436vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,y:250,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation12,className:\"framer-1oo7hwi-container\",\"data-framer-appear-id\":\"1oo7hwi\",initial:animation1,layoutScroll:true,nodeId:\"z8NZr2V2d\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvtLBAi1h:{style:{width:\"100%\"},variant:\"yD1iAK3eE\"}},children:/*#__PURE__*/_jsx(Newsletter,{height:\"100%\",id:\"z8NZr2V2d\",layoutId:\"z8NZr2V2d\",variant:\"fFQQgeTCN\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:344,y:964,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rucnm8-container\",layoutScroll:true,nodeId:\"H2KZOg8jx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FixedReview,{height:\"100%\",id:\"H2KZOg8jx\",layoutId:\"H2KZOg8jx\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7Ppsp.framer-lux5qc, .framer-7Ppsp .framer-lux5qc { display: block; }\",\".framer-7Ppsp.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-8e9f7de0-9fd7-44d3-bc3e-2dea20c4e4bd, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-7Ppsp .framer-12paqds, .framer-7Ppsp .framer-1lmwc1v, .framer-7Ppsp .framer-hyewrq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-7s15yl { 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: 118px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-kzv5dq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1507px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-7Ppsp .framer-15hvyux { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 700px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1wugoqy { align-content: center; align-items: center; aspect-ratio: 6.868421052631579 / 1; background-color: rgba(242, 247, 245, 0.15); border-bottom-left-radius: 54px; border-bottom-right-radius: 54px; border-top-left-radius: 54px; border-top-right-radius: 54px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 53px); justify-content: center; overflow: hidden; padding: 6px 14px 6px 10px; position: relative; width: 359px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-2xa5z4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 28px; }\",\".framer-7Ppsp .framer-1tzep1a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; aspect-ratio: 8.153846153846153 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; white-space: pre-wrap; width: 277px; word-break: break-word; word-wrap: break-word; }\",\".framer-7Ppsp .framer-1lpqnhr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --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-7Ppsp .framer-h8iahz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7Ppsp .framer-1uz8yuj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px 0px 25px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-re4uxh-container, .framer-7Ppsp .framer-g5h0xw-container, .framer-7Ppsp .framer-1tyuzd5-container, .framer-7Ppsp .framer-vqc5p5-container, .framer-7Ppsp .framer-1hss36t-container, .framer-7Ppsp .framer-jygk3h-container, .framer-7Ppsp .framer-2lovxa-container, .framer-7Ppsp .framer-wpb5c2-container, .framer-7Ppsp .framer-1x3xxdo-container, .framer-7Ppsp .framer-1kz9gu2-container, .framer-7Ppsp .framer-d1gar7-container, .framer-7Ppsp .framer-1mceeru-container, .framer-7Ppsp .framer-1cl2h4w-container, .framer-7Ppsp .framer-zytdfu-container, .framer-7Ppsp .framer-a6se8n-container, .framer-7Ppsp .framer-1rdwn2n-container, .framer-7Ppsp .framer-zpo3d6-container, .framer-7Ppsp .framer-edckfl-container, .framer-7Ppsp .framer-90vvu5-container, .framer-7Ppsp .framer-b7uxyc-container, .framer-7Ppsp .framer-1g5vbx8-container, .framer-7Ppsp .framer-15d30rj-container, .framer-7Ppsp .framer-g43j0t-container, .framer-7Ppsp .framer-x2s7p2-container, .framer-7Ppsp .framer-hwgcnq-container, .framer-7Ppsp .framer-81z7yn-container, .framer-7Ppsp .framer-gvqifi-container, .framer-7Ppsp .framer-1vdopv8-container, .framer-7Ppsp .framer-1tw2z8f-container, .framer-7Ppsp .framer-184s071-container, .framer-7Ppsp .framer-533jop-container, .framer-7Ppsp .framer-5nfxxa-container, .framer-7Ppsp .framer-kjxqxe-container, .framer-7Ppsp .framer-8ifwxy-container, .framer-7Ppsp .framer-17vn2yn-container, .framer-7Ppsp .framer-rij6kz-container, .framer-7Ppsp .framer-1x2eh81-container, .framer-7Ppsp .framer-1r1i6xz-container, .framer-7Ppsp .framer-4xxwjs-container, .framer-7Ppsp .framer-1n0dhi4-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-7Ppsp .framer-1jq7msv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 400px; overflow: hidden; padding: 0px; position: relative; width: 400px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-7Ppsp .framer-1itu3fc { background: linear-gradient(270deg, var(--token-4ba9d2af-bbc9-422d-912b-c0d857289d96, rgba(255, 255, 255, 0)) 0%, var(--token-4ef09f89-9c35-4972-a9c1-8efc95820553, rgba(255, 255, 255, 0.2)) 50%, var(--token-4ba9d2af-bbc9-422d-912b-c0d857289d96, rgba(255, 255, 255, 0)) 100%); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-10z3q8z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-gtrbpj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 27%; }\",\".framer-7Ppsp .framer-5xw8wq { --border-bottom-width: 3.2518913745880127px; --border-color: #ffffff; --border-left-width: 3.2518913745880127px; --border-right-width: 3.2518913745880127px; --border-style: solid; --border-top-width: 3.2518913745880127px; aspect-ratio: 1 / 1; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 50px; }\",\".framer-7Ppsp .framer-jlu060 { --border-bottom-width: 3.2518913745880127px; --border-color: #ffffff; --border-left-width: 3.2518913745880127px; --border-right-width: 3.2518913745880127px; --border-style: solid; --border-top-width: 3.2518913745880127px; aspect-ratio: 1 / 1; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; bottom: 0px; flex: none; left: 35px; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 50px); z-index: 1; }\",\".framer-7Ppsp .framer-1opvmwi { --border-bottom-width: 3.2518913745880127px; --border-color: #ffffff; --border-left-width: 3.2518913745880127px; --border-right-width: 3.2518913745880127px; --border-style: solid; --border-top-width: 3.2518913745880127px; aspect-ratio: 1 / 1; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; bottom: 0px; flex: none; left: 70px; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 50px); z-index: 1; }\",\".framer-7Ppsp .framer-6r5p0b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1neopxp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-uwzd8b-container, .framer-7Ppsp .framer-1acqpqr-container, .framer-7Ppsp .framer-4hpv4f-container, .framer-7Ppsp .framer-10w6s08-container, .framer-7Ppsp .framer-oky38y-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-7Ppsp .framer-pip7po { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-7Ppsp .framer-15q34un { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.3888888888888888 / 1; 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: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 612px); justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 850px; z-index: 1; }\",\".framer-7Ppsp .framer-9vszyv { flex: none; height: 561px; overflow: visible; position: absolute; right: 0px; top: -110px; width: 583px; z-index: 1; }\",\".framer-7Ppsp .framer-1sns1hi { -webkit-filter: blur(102px); background-color: var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, #e68312); border-bottom-left-radius: 2478px; border-bottom-right-radius: 2478px; border-top-left-radius: 2478px; border-top-right-radius: 2478px; filter: blur(102px); flex: none; height: 311px; overflow: hidden; position: absolute; right: -152px; top: calc(49.55436720142605% - 311px / 2); width: 315px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-nc8rxr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-101muxf { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-7Ppsp .framer-iymd8p-container { flex: none; height: 184px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1yp4yvp { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 133px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-1he4cjs, .framer-7Ppsp .framer-1wib8zo, .framer-7Ppsp .framer-1h5hmdr, .framer-7Ppsp .framer-jnmi4w, .framer-7Ppsp .framer-1flitvv, .framer-7Ppsp .framer-1g2nvvd, .framer-7Ppsp .framer-1lowrxw, .framer-7Ppsp .framer-nzjib9, .framer-7Ppsp .framer-1hvv1ze, .framer-7Ppsp .framer-opx4pk, .framer-7Ppsp .framer-7at7k6, .framer-7Ppsp .framer-cjjzm3, .framer-7Ppsp .framer-gc0fvm, .framer-7Ppsp .framer-1uohjr4, .framer-7Ppsp .framer-hnjf2k, .framer-7Ppsp .framer-1hlja1l, .framer-7Ppsp .framer-1kyehdh, .framer-7Ppsp .framer-155zi12 { aspect-ratio: 2.4999999999999996 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 133px); overflow: visible; position: relative; width: 333px; }\",\".framer-7Ppsp .framer-113y3c1, .framer-7Ppsp .framer-2agp9e, .framer-7Ppsp .framer-1wech1k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1vk0239, .framer-7Ppsp .framer-15v0mys, .framer-7Ppsp .framer-9p0ife, .framer-7Ppsp .framer-x8hwew { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1fbunpp { 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 40px 0px 40px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-k37ku2, .framer-7Ppsp .framer-h727ng, .framer-7Ppsp .framer-11wt7pu, .framer-7Ppsp .framer-17s9fd3, .framer-7Ppsp .framer-95j806, .framer-7Ppsp .framer-1cw8l03, .framer-7Ppsp .framer-of3azk, .framer-7Ppsp .framer-1730w37, .framer-7Ppsp .framer-oy2toh, .framer-7Ppsp .framer-q7esjw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 630px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1xose9g, .framer-7Ppsp .framer-fni9rz, .framer-7Ppsp .framer-1l5dmz0, .framer-7Ppsp .framer-1751ajw, .framer-7Ppsp .framer-1lbmhp5, .framer-7Ppsp .framer-emr6ip, .framer-7Ppsp .framer-o0t00w, .framer-7Ppsp .framer-1bdkhbg, .framer-7Ppsp .framer-wasxgr, .framer-7Ppsp .framer-1ptnv5h, .framer-7Ppsp .framer-1rxg7qf, .framer-7Ppsp .framer-1oz7j4h, .framer-7Ppsp .framer-nprpkj, .framer-7Ppsp .framer-128gm8a, .framer-7Ppsp .framer-f059yh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-ps4ie4, .framer-7Ppsp .framer-1mgvc7r, .framer-7Ppsp .framer-11aygnu, .framer-7Ppsp .framer-698xn5, .framer-7Ppsp .framer-1ch7wkt, .framer-7Ppsp .framer-bydoqs, .framer-7Ppsp .framer-b5kr2w, .framer-7Ppsp .framer-1330hxh, .framer-7Ppsp .framer-10lq6gg, .framer-7Ppsp .framer-1p52ab8, .framer-7Ppsp .framer-50t1pf, .framer-7Ppsp .framer-1f7gxda, .framer-7Ppsp .framer-r5yhah, .framer-7Ppsp .framer-y1cusq { 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-7Ppsp .framer-1tdbutf, .framer-7Ppsp .framer-vakywd, .framer-7Ppsp .framer-4xt880, .framer-7Ppsp .framer-1kjuqnv, .framer-7Ppsp .framer-tlxas, .framer-7Ppsp .framer-17vvw5c, .framer-7Ppsp .framer-17aus1q, .framer-7Ppsp .framer-vsb8ec, .framer-7Ppsp .framer-1hkvfb2, .framer-7Ppsp .framer-k21zpd, .framer-7Ppsp .framer-umxprj, .framer-7Ppsp .framer-1hs7zff, .framer-7Ppsp .framer-1xwwy, .framer-7Ppsp .framer-ldj41k, .framer-7Ppsp .framer-ox28iu, .framer-7Ppsp .framer-1usxla9, .framer-7Ppsp .framer-4s00vo, .framer-7Ppsp .framer-8jero7, .framer-7Ppsp .framer-1o7fsci, .framer-7Ppsp .framer-g3wz1q, .framer-7Ppsp .framer-c81rit, .framer-7Ppsp .framer-rwk38s, .framer-7Ppsp .framer-yu0nd3, .framer-7Ppsp .framer-v8io3u, .framer-7Ppsp .framer-azwvc0, .framer-7Ppsp .framer-7pvw3j, .framer-7Ppsp .framer-2bzhvm, .framer-7Ppsp .framer-13dwbuj, .framer-7Ppsp .framer-1wyelxb, .framer-7Ppsp .framer-1yt3ymu, .framer-7Ppsp .framer-og2jtz, .framer-7Ppsp .framer-10d0nhr, .framer-7Ppsp .framer-1cfjtqg, .framer-7Ppsp .framer-1uwpp14, .framer-7Ppsp .framer-vi8yqk, .framer-7Ppsp .framer-1t1u9l7, .framer-7Ppsp .framer-1nioco6, .framer-7Ppsp .framer-1g03kj1, .framer-7Ppsp .framer-xdtxo2, .framer-7Ppsp .framer-66sqqf, .framer-7Ppsp .framer-1pr5a8p, .framer-7Ppsp .framer-1n8639, .framer-7Ppsp .framer-1x5qapz, .framer-7Ppsp .framer-e8rr0p, .framer-7Ppsp .framer-1gp3eek, .framer-7Ppsp .framer-15kzwjs, .framer-7Ppsp .framer-1xy44di, .framer-7Ppsp .framer-slhlsl, .framer-7Ppsp .framer-iwhfp4, .framer-7Ppsp .framer-1icu49n, .framer-7Ppsp .framer-5k3bpc, .framer-7Ppsp .framer-ni6mr7, .framer-7Ppsp .framer-1glvl7s, .framer-7Ppsp .framer-14w2ax9 { --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-7Ppsp .framer-lu96ts, .framer-7Ppsp .framer-d4o8eo, .framer-7Ppsp .framer-1cq9i1m, .framer-7Ppsp .framer-1g1af8i, .framer-7Ppsp .framer-15xuegc, .framer-7Ppsp .framer-127yagi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 520px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1a9y2vn, .framer-7Ppsp .framer-2d1q5m, .framer-7Ppsp .framer-2vizef, .framer-7Ppsp .framer-4xkjzd, .framer-7Ppsp .framer-zrelw5, .framer-7Ppsp .framer-1x8t81n, .framer-7Ppsp .framer-cco2lm, .framer-7Ppsp .framer-1bs42js, .framer-7Ppsp .framer-1h2rlgm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-7Ppsp .framer-5swblh { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: start; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; z-index: 3; }\",\".framer-7Ppsp .framer-1iasw4f-container, .framer-7Ppsp .framer-1yhpn0f-container, .framer-7Ppsp .framer-1p2nk6x-container, .framer-7Ppsp .framer-1ivg8n0-container, .framer-7Ppsp .framer-1qvbcp7-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1z0c3fk, .framer-7Ppsp .framer-1r0eytk, .framer-7Ppsp .framer-1pp0g3v, .framer-7Ppsp .framer-1f0ml05, .framer-7Ppsp .framer-hpti9a, .framer-7Ppsp .framer-oan9mt { background: linear-gradient(90.00000000000075deg, var(--token-73242b55-57d1-4320-8897-28085a430c83, rgba(255, 255, 255, 0.02)) 0%, var(--token-d86f1591-0c16-44cd-be10-19334dfa9293, rgba(255, 255, 255, 0.1)) 50%, var(--token-73242b55-57d1-4320-8897-28085a430c83, rgba(255, 255, 255, 0.02)) 100%); flex: none; height: 1px; max-width: 1300px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-jhpyxp, .framer-7Ppsp .framer-bot2as, .framer-7Ppsp .framer-i4ue09, .framer-7Ppsp .framer-1wrmeea, .framer-7Ppsp .framer-1cnizgz, .framer-7Ppsp .framer-9sq1uy, .framer-7Ppsp .framer-ib2y4y, .framer-7Ppsp .framer-19p65fw, .framer-7Ppsp .framer-g5hg3r, .framer-7Ppsp .framer-mmd3fm, .framer-7Ppsp .framer-1fdup7y, .framer-7Ppsp .framer-mdjxbp, .framer-7Ppsp .framer-mwzavv, .framer-7Ppsp .framer-v4jksm, .framer-7Ppsp .framer-1va5l0d { 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 120px 0px 120px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-meh9eu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: -83px; overflow: hidden; padding: 0px; position: absolute; top: 146px; width: min-content; z-index: 1; }\",\".framer-7Ppsp .framer-9nbnqj, .framer-7Ppsp .framer-164qg71 { flex: none; height: 237px; position: relative; width: 567px; }\",\".framer-7Ppsp .framer-x8549r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: -83px; top: 146px; width: min-content; z-index: 1; }\",\".framer-7Ppsp .framer-x9y70b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1cuhzti, .framer-7Ppsp .framer-13goxiy, .framer-7Ppsp .framer-1im8r2i { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-208ma4, .framer-7Ppsp .framer-5zo3pv, .framer-7Ppsp .framer-p7crjz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-46nqga, .framer-7Ppsp .framer-1lunh2f, .framer-7Ppsp .framer-ps41my { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-i7cery, .framer-7Ppsp .framer-sbh82r, .framer-7Ppsp .framer-1voqsmc, .framer-7Ppsp .framer-1f2q0hd, .framer-7Ppsp .framer-3kirrb, .framer-7Ppsp .framer-17rrrgg, .framer-7Ppsp .framer-q3pu6e, .framer-7Ppsp .framer-ad9fzz, .framer-7Ppsp .framer-rbvn17, .framer-7Ppsp .framer-p6fbvf, .framer-7Ppsp .framer-1szzf97, .framer-7Ppsp .framer-1tldhwh, .framer-7Ppsp .framer-lsgh2v, .framer-7Ppsp .framer-yp26bm, .framer-7Ppsp .framer-1ltyygk, .framer-7Ppsp .framer-1b3w3je, .framer-7Ppsp .framer-q7m1w1, .framer-7Ppsp .framer-46qr9u, .framer-7Ppsp .framer-1f58jw6, .framer-7Ppsp .framer-lwxp9f, .framer-7Ppsp .framer-1qwej80, .framer-7Ppsp .framer-13enf02 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7Ppsp .framer-12cwqs0, .framer-7Ppsp .framer-10zpmyr, .framer-7Ppsp .framer-11i4ouh { flex: none; height: auto; max-width: 295px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7Ppsp .framer-eu8ig, .framer-7Ppsp .framer-1dr13n1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 120px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1a25acp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 84px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-9d8uac { align-content: center; align-items: center; aspect-ratio: 1.8722222222222222 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 341px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-12hxh7c { --border-bottom-width: 1px; --border-color: var(--token-30ee69d1-cae6-4a5c-9af2-db5c94a12e77, rgba(255, 255, 255, 0.05)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(2px); align-content: center; align-items: center; backdrop-filter: blur(2px); 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: 10px; height: 100%; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 1px; z-index: 2; }\",\".framer-7Ppsp .framer-wky1pf { --border-bottom-width: 1px; --border-color: var(--token-d86f1591-0c16-44cd-be10-19334dfa9293, rgba(255, 255, 255, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 1px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-1pdn0d7 { border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; flex: 1 0 0px; gap: 10px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-1aqatbm { background: linear-gradient(90.00000000000155deg, rgba(0, 85, 255, 0) 0%, rgb(230, 131, 18) 50%, rgba(0, 85, 255, 0) 100%); bottom: 0px; flex: none; height: 1px; left: calc(50.00000000000002% - 31.496062992125985% / 2); position: absolute; width: 31%; z-index: 1; }\",\".framer-7Ppsp .framer-wsa37q { -webkit-filter: blur(40px); background-color: var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, #0055ff); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 8px; filter: blur(40px); flex: none; height: 53px; left: calc(50.00000000000002% - 285px / 2); position: absolute; width: 285px; z-index: 1; }\",\".framer-7Ppsp .framer-p2k6uz, .framer-7Ppsp .framer-1y207gv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 700px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-10uve6y, .framer-7Ppsp .framer-1eav9w2, .framer-7Ppsp .framer-llf00w, .framer-7Ppsp .framer-1qs0ijz, .framer-7Ppsp .framer-xy6oz8, .framer-7Ppsp .framer-exrmwg, .framer-7Ppsp .framer-19datg8, .framer-7Ppsp .framer-oupus { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-mkynu0, .framer-7Ppsp .framer-2sfjbq, .framer-7Ppsp .framer-1ozthkn, .framer-7Ppsp .framer-17h38kk, .framer-7Ppsp .framer-1rs78dl { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1ap0sj7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1c41714, .framer-7Ppsp .framer-1kpn3tj, .framer-7Ppsp .framer-rrf2ia, .framer-7Ppsp .framer-fmlpnk, .framer-7Ppsp .framer-1yrvspe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-11btonb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-18gk628, .framer-7Ppsp .framer-y1v8za, .framer-7Ppsp .framer-486fiq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-8k7x2n { aspect-ratio: 0.9210526315789473 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 76px); overflow: visible; position: relative; width: 70px; }\",\".framer-7Ppsp .framer-10qja9k { -webkit-filter: invert(1); aspect-ratio: 2.5789473684210527 / 1; filter: invert(1); flex: none; height: var(--framer-aspect-ratio-supported, 76px); overflow: visible; position: relative; width: 196px; }\",\".framer-7Ppsp .framer-fs0h5z, .framer-7Ppsp .framer-16hcu9g { 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: min-content; }\",\".framer-7Ppsp .framer-j2gsr6, .framer-7Ppsp .framer-1b5lfqd { aspect-ratio: 5.387755102040817 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 176px; }\",\".framer-7Ppsp .framer-40b74m, .framer-7Ppsp .framer-1w2531k { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7Ppsp .framer-efovof { aspect-ratio: 3.3771929824561404 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 76px); overflow: visible; position: relative; width: 257px; }\",\".framer-7Ppsp .framer-ouhq3j, .framer-7Ppsp .framer-5w8zlr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1jyzkl7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 86px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1s58b2f { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: start; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-7Ppsp .framer-lo0o6n-container, .framer-7Ppsp .framer-krmmsi-container, .framer-7Ppsp .framer-ygmt3f-container, .framer-7Ppsp .framer-tzks8h-container, .framer-7Ppsp .framer-g1fmey-container, .framer-7Ppsp .framer-1ce0o1h-container, .framer-7Ppsp .framer-4r3gnr-container, .framer-7Ppsp .framer-h9xabr-container { align-self: start; aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 376px); justify-self: start; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1yk5pn0, .framer-7Ppsp .framer-1pepbmc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-uulf7u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 84px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-162dm7o { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 700px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-q49dtq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-r8qtub, .framer-7Ppsp .framer-us04xq, .framer-7Ppsp .framer-1bleazt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-12a5cn0-container, .framer-7Ppsp .framer-1rykz0d-container, .framer-7Ppsp .framer-r7fhpr-container, .framer-7Ppsp .framer-vgcshr-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-coxtid-container { flex: 1 0 0px; height: 363px; max-width: 528px; position: sticky; top: 100px; width: 1px; z-index: 1; }\",\".framer-7Ppsp .framer-xdnwkp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: center; max-width: 1410px; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-kdk7en { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-13oyhdf { 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 120px 20px 120px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-blc6bl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1yd1ong { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-i4s91h { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-7Ppsp .framer-fykvuz-container { flex: 1 0 0px; height: 476px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-iwqckl, .framer-7Ppsp .framer-14j7s0i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 500px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-zyzh85 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 84px 0px 84px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-c9dp52-container { flex: 1 0 0px; height: 102px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1ui0a36 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 39.79px; height: 271px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-3h9443, .framer-7Ppsp .framer-1t7xs88, .framer-7Ppsp .framer-tzcg7i { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 271px); overflow: visible; position: relative; width: 271px; }\",\".framer-7Ppsp .framer-8w1ol { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 231px); overflow: visible; position: relative; width: 231px; }\",\".framer-7Ppsp .framer-1yefw21 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 203px); overflow: visible; position: relative; width: 203px; }\",\".framer-7Ppsp .framer-1h8geak { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 206px); overflow: visible; position: relative; width: 206px; }\",\".framer-7Ppsp .framer-oowj7i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 65px 30px 65px 30px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-18jogmz, .framer-7Ppsp .framer-ix9djg, .framer-7Ppsp .framer-qbj3s8 { --border-bottom-width: 1px; --border-color: var(--token-5970a3c6-0f13-482e-8fb6-b8cb7d627b04, rgba(216, 231, 242, 0.07)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2); cursor: default; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; max-width: 700px; overflow: visible; padding: 32px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1pushw8, .framer-7Ppsp .framer-cxbpgu, .framer-7Ppsp .framer-rlyaq5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-mxpk9v, .framer-7Ppsp .framer-1nv0tmm, .framer-7Ppsp .framer-1kbrc12 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 402px; }\",\".framer-7Ppsp .framer-3hw35w { -webkit-user-select: none; background: radial-gradient(50% 50% at 93.7% 8.1%, var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, #e68312) 0%, rgba(4, 7, 13, 0) 100%); flex: none; height: 306px; opacity: 0.1; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; width: 437px; z-index: 1; }\",\".framer-7Ppsp .framer-1iacvju, .framer-7Ppsp .framer-sryzmn, .framer-7Ppsp .framer-13i57ct, .framer-7Ppsp .framer-xld4s7, .framer-7Ppsp .framer-guz6wm, .framer-7Ppsp .framer-1xzrlae, .framer-7Ppsp .framer-8vauqf, .framer-7Ppsp .framer-odzpu7 { -webkit-user-select: none; background: radial-gradient(50% 50% at 93.7% 8.1%, var(--token-08c4a6f9-af82-471d-b559-befcf7c9487d, #febe36) 0%, rgba(4, 7, 13, 0) 100%); flex: none; height: 306px; opacity: 0.1; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; width: 437px; z-index: 1; }\",\".framer-7Ppsp .framer-1umd8fk, .framer-7Ppsp .framer-lfxvl7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 76px 0px 76px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-s1s5v5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-153q9ah-container, .framer-7Ppsp .framer-21hjnr-container, .framer-7Ppsp .framer-iirfjn-container { flex: 1 0 0px; height: 81px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-13p1mm0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 67px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-1a0sthw, .framer-7Ppsp .framer-d9zjss, .framer-7Ppsp .framer-1bhqirc { aspect-ratio: 2.068783068783069 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); overflow: visible; position: relative; width: 131px; }\",\".framer-7Ppsp .framer-cgesx6, .framer-7Ppsp .framer-1dy9jb7, .framer-7Ppsp .framer-p9cqze { aspect-ratio: 2.8 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); overflow: visible; position: relative; width: 145px; }\",\".framer-7Ppsp .framer-hare4e, .framer-7Ppsp .framer-zjqqo0, .framer-7Ppsp .framer-phegy6 { aspect-ratio: 3.2244897959183674 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 49px); overflow: visible; position: relative; width: 158px; }\",\".framer-7Ppsp .framer-luegdd, .framer-7Ppsp .framer-kof6r1, .framer-7Ppsp .framer-1izywxe { aspect-ratio: 2.9103448275862065 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 49px); overflow: visible; position: relative; width: 141px; }\",\".framer-7Ppsp .framer-5zakh, .framer-7Ppsp .framer-1lrixuq, .framer-7Ppsp .framer-hoeino { aspect-ratio: 2.6099290780141846 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); overflow: visible; position: relative; width: 123px; }\",\".framer-7Ppsp .framer-hva4pl, .framer-7Ppsp .framer-1x3ofwt, .framer-7Ppsp .framer-c9bjrg { aspect-ratio: 3.527131782945736 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); overflow: visible; position: relative; width: 152px; }\",\".framer-7Ppsp .framer-48fwe2, .framer-7Ppsp .framer-184urn9, .framer-7Ppsp .framer-1duzr9y { aspect-ratio: 2.7741935483870965 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 115px; }\",\".framer-7Ppsp .framer-uzutfz, .framer-7Ppsp .framer-29qq1c, .framer-7Ppsp .framer-123hfh6 { aspect-ratio: 3.8703703703703707 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); overflow: visible; position: relative; width: 140px; }\",\".framer-7Ppsp .framer-va2dmm, .framer-7Ppsp .framer-1koz4g5, .framer-7Ppsp .framer-1hovzvd { aspect-ratio: 3.684782608695652 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); overflow: visible; position: relative; width: 113px; }\",\".framer-7Ppsp .framer-tiasae, .framer-7Ppsp .framer-1qb2hom, .framer-7Ppsp .framer-1pv83yq { aspect-ratio: 3.304347826086956 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); overflow: visible; position: relative; width: 102px; }\",\".framer-7Ppsp .framer-u81bpe, .framer-7Ppsp .framer-7sbwg1, .framer-7Ppsp .framer-1i0egoq { aspect-ratio: 5.736111111111111 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 138px; }\",\".framer-7Ppsp .framer-qcpef0, .framer-7Ppsp .framer-aptyoq, .framer-7Ppsp .framer-xwy6go { aspect-ratio: 6.07936507936508 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); overflow: visible; position: relative; width: 128px; }\",\".framer-7Ppsp .framer-1329u8b, .framer-7Ppsp .framer-1up34op, .framer-7Ppsp .framer-zpqqeb { aspect-ratio: 7.3396226415094326 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 130px; }\",\".framer-7Ppsp .framer-17zgpqz, .framer-7Ppsp .framer-6451wn, .framer-7Ppsp .framer-1j5n74t { aspect-ratio: 7.304347826086956 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); overflow: visible; position: relative; width: 112px; }\",\".framer-7Ppsp .framer-az8v9l, .framer-7Ppsp .framer-12iqtbc { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 66px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-1prd7b3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1rh9zqn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-13rw4ng { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-p964qs-container, .framer-7Ppsp .framer-1a6nlfh-container, .framer-7Ppsp .framer-1yu4mmz-container, .framer-7Ppsp .framer-ebex0h-container, .framer-7Ppsp .framer-3zq4xe-container, .framer-7Ppsp .framer-11jcf22-container, .framer-7Ppsp .framer-180jw7-container, .framer-7Ppsp .framer-1jkwcxe-container, .framer-7Ppsp .framer-145j0vm-container, .framer-7Ppsp .framer-1vcf44r-container, .framer-7Ppsp .framer-1etxpqn-container, .framer-7Ppsp .framer-qq87jb-container, .framer-7Ppsp .framer-h0fkmn-container, .framer-7Ppsp .framer-1jfmbwa-container, .framer-7Ppsp .framer-1oj7b7r-container, .framer-7Ppsp .framer-r7dydm-container, .framer-7Ppsp .framer-1w5qeyz-container, .framer-7Ppsp .framer-3lsr02-container, .framer-7Ppsp .framer-r1hq8c-container, .framer-7Ppsp .framer-142ttzn-container, .framer-7Ppsp .framer-10zwcxn-container, .framer-7Ppsp .framer-5ka544-container, .framer-7Ppsp .framer-1f5vw6y-container, .framer-7Ppsp .framer-tvwfiw-container, .framer-7Ppsp .framer-343bk7-container, .framer-7Ppsp .framer-9gwf41-container, .framer-7Ppsp .framer-1f7bad7-container, .framer-7Ppsp .framer-ahhmgn-container, .framer-7Ppsp .framer-15xnk82-container, .framer-7Ppsp .framer-1y4k04a-container, .framer-7Ppsp .framer-lxieww-container, .framer-7Ppsp .framer-18tsem9-container, .framer-7Ppsp .framer-31xgte-container, .framer-7Ppsp .framer-1pm7zfl-container, .framer-7Ppsp .framer-wlqtg7-container, .framer-7Ppsp .framer-ptdlb8-container, .framer-7Ppsp .framer-1a3k0lm-container, .framer-7Ppsp .framer-40kjj8-container, .framer-7Ppsp .framer-1e9ktpa-container, .framer-7Ppsp .framer-1pit25t-container, .framer-7Ppsp .framer-eii6vh-container, .framer-7Ppsp .framer-1j8d9u3-container, .framer-7Ppsp .framer-17pxtuy-container, .framer-7Ppsp .framer-1224xrk-container, .framer-7Ppsp .framer-nibbup-container, .framer-7Ppsp .framer-1jocrb5-container, .framer-7Ppsp .framer-vfbo56-container, .framer-7Ppsp .framer-12re7ce-container, .framer-7Ppsp .framer-1oql7a9-container, .framer-7Ppsp .framer-1ynvrtq-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 710px; }\",\".framer-7Ppsp .framer-14ziy9f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: visible; padding: 120px 30px 120px 30px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-k3ep9y { 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 120px 0px 120px; position: sticky; top: 100px; width: 100%; z-index: 1; }\",\".framer-7Ppsp .framer-27pm4x { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 730px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-y9q3m0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 560px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1u5u1k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-7Ppsp .framer-1mvx4iq { align-content: center; align-items: center; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 946px; overflow: hidden; padding: 20px 20px 20px 40px; position: sticky; top: 300px; width: 79%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-7Ppsp .framer-gyb8i3, .framer-7Ppsp .framer-e19twj, .framer-7Ppsp .framer-1697cr6, .framer-7Ppsp .framer-1hlpozd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 416px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1wc119p, .framer-7Ppsp .framer-11e90h, .framer-7Ppsp .framer-vz93uv, .framer-7Ppsp .framer-5zd2ds, .framer-7Ppsp .framer-uycva8 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, #e68312); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: var(--framer-aspect-ratio-supported, 52px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 52px; }\",\".framer-7Ppsp .framer-1ytw51y, .framer-7Ppsp .framer-1wnk5m8, .framer-7Ppsp .framer-q0usft, .framer-7Ppsp .framer-mnmix8, .framer-7Ppsp .framer-tmi1dj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1i73iva, .framer-7Ppsp .framer-ebldx6, .framer-7Ppsp .framer-xly1tg, .framer-7Ppsp .framer-1inpb45, .framer-7Ppsp .framer-13hsu6v { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1gcd7s5, .framer-7Ppsp .framer-loqvdv, .framer-7Ppsp .framer-1o928re, .framer-7Ppsp .framer-1a5z4n, .framer-7Ppsp .framer-hyyi1w { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7Ppsp .framer-5w9o1k, .framer-7Ppsp .framer-1c4pn2v, .framer-7Ppsp .framer-4ugidm, .framer-7Ppsp .framer-w8ybsg, .framer-7Ppsp .framer-rcefgx { aspect-ratio: 1.4333333333333333 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 253px); position: relative; width: 41%; }\",\".framer-7Ppsp .framer-ydc5l0, .framer-7Ppsp .framer-1qq3hvf, .framer-7Ppsp .framer-19foij8, .framer-7Ppsp .framer-spq6l9, .framer-7Ppsp .framer-1xg02w, .framer-7Ppsp .framer-17cu4n9, .framer-7Ppsp .framer-1uta87s, .framer-7Ppsp .framer-h9dc9y, .framer-7Ppsp .framer-v84kkd, .framer-7Ppsp .framer-1pg8zbo, .framer-7Ppsp .framer-1yjso8 { -webkit-user-select: none; background: radial-gradient(50% 50% at 6.4% 6.1%, var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, #e68312) 0%, rgba(4, 7, 13, 0) 100%); flex: none; height: 306px; left: 0px; opacity: 0.1; overflow: hidden; pointer-events: none; position: absolute; top: 0px; user-select: none; width: 437px; z-index: 1; }\",\".framer-7Ppsp .framer-xc0ayu { align-content: center; align-items: center; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 946px; overflow: hidden; padding: 20px 20px 20px 40px; position: sticky; top: 300px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-7Ppsp .framer-cc8jae { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 416px; overflow: hidden; padding: 0px; position: relative; width: 51%; }\",\".framer-7Ppsp .framer-1lhwez7, .framer-7Ppsp .framer-1fgu2ly, .framer-7Ppsp .framer-62po9f { align-content: center; align-items: center; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 946px; overflow: hidden; padding: 20px 20px 20px 40px; position: sticky; top: 300px; width: 79%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-7Ppsp .framer-1etfvy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1sf9gi4, .framer-7Ppsp .framer-1uo3wjx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1b05cir { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 369px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-7Ppsp .framer-33bayu, .framer-7Ppsp .framer-1u19t89, .framer-7Ppsp .framer-25ogkk, .framer-7Ppsp .framer-fgb4qw, .framer-7Ppsp .framer-yu7ia { align-content: flex-start; align-items: flex-start; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 383px; justify-content: space-between; overflow: hidden; padding: 30px 20px 30px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-1usc0go { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-7Ppsp .framer-1crw5fm, .framer-7Ppsp .framer-1ljxspt, .framer-7Ppsp .framer-f3tjct, .framer-7Ppsp .framer-q0290h, .framer-7Ppsp .framer-w3yy7d, .framer-7Ppsp .framer-apucii, .framer-7Ppsp .framer-502rpd, .framer-7Ppsp .framer-1gcg758, .framer-7Ppsp .framer-1dxdm8f, .framer-7Ppsp .framer-1e4ygio, .framer-7Ppsp .framer-n6kzkv, .framer-7Ppsp .framer-1q7pjmd, .framer-7Ppsp .framer-183dhd1, .framer-7Ppsp .framer-mbla2z, .framer-7Ppsp .framer-12li2q4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7Ppsp .framer-19yitsf, .framer-7Ppsp .framer-1wjmk50, .framer-7Ppsp .framer-p2sm4f, .framer-7Ppsp .framer-poaokm, .framer-7Ppsp .framer-js1nxc, .framer-7Ppsp .framer-nbvl7u, .framer-7Ppsp .framer-8w6jj4, .framer-7Ppsp .framer-bumm0l, .framer-7Ppsp .framer-2lv39t, .framer-7Ppsp .framer-12zkvwd, .framer-7Ppsp .framer-eefbei, .framer-7Ppsp .framer-1u29rjl, .framer-7Ppsp .framer-jh8288, .framer-7Ppsp .framer-1t8vxgf, .framer-7Ppsp .framer-y1rch5, .framer-7Ppsp .framer-22j7oc, .framer-7Ppsp .framer-1t03frj, .framer-7Ppsp .framer-1p05m12, .framer-7Ppsp .framer-lbzzi5, .framer-7Ppsp .framer-1sfrw8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7Ppsp .framer-rg87xh { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 52px; border-bottom-right-radius: 52px; border-top-left-radius: 52px; border-top-right-radius: 52px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: 40px; z-index: 1; }\",\".framer-7Ppsp .framer-i7t6dv-container, .framer-7Ppsp .framer-1n7ieha-container, .framer-7Ppsp .framer-l8ffed-container, .framer-7Ppsp .framer-1ai1zlf-container, .framer-7Ppsp .framer-22btml-container, .framer-7Ppsp .framer-ewfmhk-container { flex: none; height: 23px; position: relative; width: 25px; }\",\".framer-7Ppsp .framer-1gj3st6 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 371px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-7Ppsp .framer-ny3oy, .framer-7Ppsp .framer-v5b67w, .framer-7Ppsp .framer-163dk05, .framer-7Ppsp .framer-de49s7, .framer-7Ppsp .framer-1n13p31 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1s9iqkz, .framer-7Ppsp .framer-1j5zwcm, .framer-7Ppsp .framer-1iy6qqo, .framer-7Ppsp .framer-15p8d3j, .framer-7Ppsp .framer-1bda5ta { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 52px; border-bottom-right-radius: 52px; border-top-left-radius: 52px; border-top-right-radius: 52px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: 40px; }\",\".framer-7Ppsp .framer-1jncjy8 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 379px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-7Ppsp .framer-38dbs5 { align-content: center; align-items: center; border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 370px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-1c4u6sd, .framer-7Ppsp .framer-zx77u7 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 370px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-3ophwh { align-content: flex-start; align-items: flex-start; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 383px; justify-content: space-between; overflow: hidden; padding: 30px 20px 30px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-grml13 { 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; scroll-margin-top: 120px; width: 1400px; }\",\".framer-7Ppsp .framer-1dx0a9w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 42px 50px 20px 50px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1lxhl2z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 34px; height: 671px; justify-content: center; overflow: hidden; padding: 35px 0px 35px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1hquiur { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 614px; justify-content: center; padding: 0px; position: relative; width: 340px; }\",\".framer-7Ppsp .framer-tnai6t-container { flex: 1 0 0px; height: 1px; position: relative; width: 433px; }\",\".framer-7Ppsp .framer-1i2qjpe, .framer-7Ppsp .framer-oixpra, .framer-7Ppsp .framer-bjb4ex, .framer-7Ppsp .framer-abw3k4 { align-content: center; align-items: center; background-color: var(--token-30ee69d1-cae6-4a5c-9af2-db5c94a12e77, rgba(255, 255, 255, 0.05)); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 320px; }\",\".framer-7Ppsp .framer-zfi9j1, .framer-7Ppsp .framer-1r0gvvt, .framer-7Ppsp .framer-d57fn5, .framer-7Ppsp .framer-qvow44 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1muc1do-container, .framer-7Ppsp .framer-1pxiu0i-container, .framer-7Ppsp .framer-1q444ia-container, .framer-7Ppsp .framer-xnhoh7-container, .framer-7Ppsp .framer-y5l3qn-container, .framer-7Ppsp .framer-v6ief2-container, .framer-7Ppsp .framer-1rn7h10-container, .framer-7Ppsp .framer-1wnkbps-container, .framer-7Ppsp .framer-1udjnhc-container, .framer-7Ppsp .framer-10k6bka-container, .framer-7Ppsp .framer-xwg0s6-container, .framer-7Ppsp .framer-vbeme4-container, .framer-7Ppsp .framer-11e4aud-container, .framer-7Ppsp .framer-u7guoy-container, .framer-7Ppsp .framer-1vvlsdn-container, .framer-7Ppsp .framer-wrsu3t-container, .framer-7Ppsp .framer-momc8h-container, .framer-7Ppsp .framer-7b525g-container, .framer-7Ppsp .framer-1ea1a0q-container, .framer-7Ppsp .framer-1h0y820-container { flex: none; height: 18px; position: relative; width: 25px; }\",\".framer-7Ppsp .framer-14u3el8, .framer-7Ppsp .framer-1pzycqb, .framer-7Ppsp .framer-l45nd4, .framer-7Ppsp .framer-13trha6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1fbbkoi, .framer-7Ppsp .framer-9uwt61, .framer-7Ppsp .framer-1ajjka9, .framer-7Ppsp .framer-1f6f9b0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1yflzci, .framer-7Ppsp .framer-u2kwgx, .framer-7Ppsp .framer-u1rds7, .framer-7Ppsp .framer-1fo3e08 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-7Ppsp .framer-13xomyz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 614px; justify-content: center; padding: 0px; position: relative; width: 324px; }\",\".framer-7Ppsp .framer-1xc8xpc-container, .framer-7Ppsp .framer-1rc2c7k-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-8ku1ez { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 614px; justify-content: center; padding: 0px; position: relative; width: 330px; }\",\".framer-7Ppsp .framer-1x26x3h-container { flex: 1 0 0px; height: 125px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-9bw3i0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: 300px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-6epqpc, .framer-7Ppsp .framer-hfkm5r { -webkit-filter: invert(1); aspect-ratio: 1 / 1; filter: invert(1); flex: none; height: var(--framer-aspect-ratio-supported, 300px); overflow: visible; position: relative; width: 300px; }\",\".framer-7Ppsp .framer-1qa01zy { -webkit-filter: invert(1); aspect-ratio: 1 / 1; filter: invert(1); flex: none; height: var(--framer-aspect-ratio-supported, 260px); overflow: visible; position: relative; width: 250px; }\",\".framer-7Ppsp .framer-uqgewc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 300px); overflow: visible; position: relative; width: 300px; }\",\".framer-7Ppsp .framer-1wuzkqt { -webkit-filter: invert(1); aspect-ratio: 1 / 1; filter: invert(1); flex: none; height: var(--framer-aspect-ratio-supported, 270px); overflow: visible; position: relative; width: 260px; }\",\".framer-7Ppsp .framer-jwt9mc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 210px); overflow: visible; position: relative; width: 200px; }\",\".framer-7Ppsp .framer-q8zssb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-14srzjp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 640px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-7z8hbu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 55px; height: 522px; justify-content: center; max-width: 1301px; overflow: visible; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1c241xk { align-content: flex-start; align-items: flex-start; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 448px; justify-content: flex-start; overflow: hidden; padding: 20px 20px 20px 40px; position: relative; width: 564px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-8arebz, .framer-7Ppsp .framer-wze8me { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 502px; word-break: break-word; word-wrap: break-word; }\",\".framer-7Ppsp .framer-ro9nlg, .framer-7Ppsp .framer-xds0pz { background-color: var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, #ffffff); flex: none; height: 2px; opacity: 0.2; overflow: hidden; position: relative; width: 497px; }\",\".framer-7Ppsp .framer-1tkj37b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 490px; }\",\".framer-7Ppsp .framer-w5495g, .framer-7Ppsp .framer-1jay1rd, .framer-7Ppsp .framer-1rbz5pl, .framer-7Ppsp .framer-1lfp2f6, .framer-7Ppsp .framer-uviiij, .framer-7Ppsp .framer-1koe4yx, .framer-7Ppsp .framer-tfh6ju, .framer-7Ppsp .framer-ptms2u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-q281d, .framer-7Ppsp .framer-mbm2qy, .framer-7Ppsp .framer-ebogxu, .framer-7Ppsp .framer-56xvfr, .framer-7Ppsp .framer-l8m9pt, .framer-7Ppsp .framer-3kwltx, .framer-7Ppsp .framer-1h33ia2, .framer-7Ppsp .framer-y7hqri, .framer-7Ppsp .framer-1ha3r4a, .framer-7Ppsp .framer-1gaz95b, .framer-7Ppsp .framer-17ce69h, .framer-7Ppsp .framer-1fp6tgi, .framer-7Ppsp .framer-3kzs8o, .framer-7Ppsp .framer-1xomhut, .framer-7Ppsp .framer-wppx25, .framer-7Ppsp .framer-14r6nap, .framer-7Ppsp .framer-1874lpk, .framer-7Ppsp .framer-1gc66vo, .framer-7Ppsp .framer-1yb6n21, .framer-7Ppsp .framer-let2oe, .framer-7Ppsp .framer-1nw8qku { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-7Ppsp .framer-1tbwxlf, .framer-7Ppsp .framer-1u1u1ks, .framer-7Ppsp .framer-192hktm, .framer-7Ppsp .framer-y3wr7a, .framer-7Ppsp .framer-mybhiq, .framer-7Ppsp .framer-iewmsy, .framer-7Ppsp .framer-wedpdm, .framer-7Ppsp .framer-ez5gxs, .framer-7Ppsp .framer-1fdb4vs, .framer-7Ppsp .framer-k1xz1q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-7Ppsp .framer-d8tqr0 { align-content: flex-start; align-items: flex-start; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 448px; justify-content: flex-start; overflow: hidden; padding: 20px 20px 20px 40px; position: relative; width: 564px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-i4szxe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 490px; }\",\".framer-7Ppsp .framer-1b8iu2t, .framer-7Ppsp .framer-q78clx, .framer-7Ppsp .framer-d52yfk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-v8w66c { -webkit-user-select: none; background: radial-gradient(50% 50% at 6.4% 6.1%, var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, #e68312) 0%, rgba(4, 7, 13, 0) 100%); flex: none; height: 306px; left: 0px; opacity: 0.2; overflow: hidden; pointer-events: none; position: absolute; top: 0px; user-select: none; width: 437px; z-index: 1; }\",\".framer-7Ppsp .framer-xl2jsa { -webkit-user-select: none; background: radial-gradient(50% 50% at 97.7% 94%, var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, #e68312) 0%, rgba(4, 7, 13, 0) 100%); bottom: 0px; flex: none; height: 306px; opacity: 0.2; overflow: hidden; pointer-events: none; position: absolute; right: 0px; user-select: none; width: 437px; z-index: 1; }\",\".framer-7Ppsp .framer-1loj3ow { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 30px 100px 30px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1wi4u3c { align-content: flex-start; align-items: flex-start; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1356px; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-iz8gqt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-rfahfa { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 472.4px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-12p2mvk { display: grid; flex: 1 0 0px; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-qp6ymg-container, .framer-7Ppsp .framer-37kzla-container, .framer-7Ppsp .framer-qihf3r-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1wxy2tw { align-content: center; align-items: center; background-color: rgba(255, 174, 0, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 72px 40px; position: relative; width: 1440px; }\",\".framer-7Ppsp .framer-1u8c9m6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 860px; overflow: hidden; padding: 12px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1bmay0o { 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: 22px 0px 22px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-qf0opf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-eusez2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 516px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-7Ppsp .framer-1ay78u3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 830px; }\",\".framer-7Ppsp .framer-1po4doe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: 427px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-3yov4u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-7Ppsp .framer-170u6un { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: flex-start; max-width: 1249px; overflow: hidden; padding: 20px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-2mumrl, .framer-7Ppsp .framer-19hocmi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-6j17ga, .framer-7Ppsp .framer-1b15f1o { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: 194px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 194px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-b6ajrm, .framer-7Ppsp .framer-66z24l { align-content: center; align-items: center; 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-7Ppsp .framer-1i90bal, .framer-7Ppsp .framer-1lsop5a, .framer-7Ppsp .framer-1ibh9ut, .framer-7Ppsp .framer-8w71k0, .framer-7Ppsp .framer-1dt7ekz, .framer-7Ppsp .framer-8yus5e, .framer-7Ppsp .framer-1om5ku1, .framer-7Ppsp .framer-113alh8, .framer-7Ppsp .framer-1b0zjyl, .framer-7Ppsp .framer-v8iava, .framer-7Ppsp .framer-86bf1z, .framer-7Ppsp .framer-1q2esu0, .framer-7Ppsp .framer-k9cdsr { --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; z-index: 1; }\",\".framer-7Ppsp .framer-of5exq { align-content: flex-start; align-items: flex-start; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1249px; overflow: hidden; padding: 30px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-1xn1juo, .framer-7Ppsp .framer-1mdej2p { 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-7Ppsp .framer-1utmozw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 40%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-7Ppsp .framer-lzsapi { flex: none; height: auto; max-width: 40%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-7Ppsp .framer-1jj185y, .framer-7Ppsp .framer-12y6sej { -webkit-user-select: none; background: radial-gradient(56.99999999999999% 115.99999999999999% at 52.1% 119%, var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, #e68312) 0%, rgba(4, 7, 13, 0) 100%); bottom: 0px; flex: none; height: 306px; left: calc(50.00000000000002% - 100% / 2); opacity: 0.2; overflow: hidden; pointer-events: none; position: absolute; user-select: none; width: 100%; z-index: 1; }\",\".framer-7Ppsp .framer-q07fwy, .framer-7Ppsp .framer-f9ohxg, .framer-7Ppsp .framer-1j7jvvr { align-content: center; align-items: center; background-color: rgba(255, 174, 0, 0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 72px 40px 72px 40px; position: relative; width: 1400px; }\",\".framer-7Ppsp .framer-1q9a1g4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 78px; height: min-content; justify-content: center; max-width: 1249px; overflow: hidden; padding: 12px 0px 12px 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1cm0aui { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 546px; }\",\".framer-7Ppsp .framer-16mxa55 { align-content: center; align-items: center; aspect-ratio: 1.0683333333333334 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: var(--framer-aspect-ratio-supported, 512px); justify-content: center; max-width: 546.4px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1b5legt, .framer-7Ppsp .framer-n7gk07, .framer-7Ppsp .framer-9opx0v { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 22px 0px 22px 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1hvz8wx, .framer-7Ppsp .framer-1v4ii4h, .framer-7Ppsp .framer-ed155y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-s2nyl1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; max-width: 1249px; overflow: hidden; padding: 12px 0px 12px 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-7Ppsp .framer-r7g7wm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 549px; }\",\".framer-7Ppsp .framer-6h1tps, .framer-7Ppsp .framer-muyc97 { align-content: flex-start; align-items: flex-start; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 20px 30px 120px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-fyj8y7, .framer-7Ppsp .framer-oxjrxk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1fuqws0, .framer-7Ppsp .framer-rf4d9q, .framer-7Ppsp .framer-r6lj8n, .framer-7Ppsp .framer-5658pa { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-7Ppsp .framer-ok05po { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 38px; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-7Ppsp .framer-lkrhbr { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 32px; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-7Ppsp .framer-101b8t4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 120px 20px 120px 20px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-gn70ax { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-7Ppsp .framer-15q2bon { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-k1gpgz { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1249px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-hrcg60 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1i79mo9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 430px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7Ppsp .framer-jqoreq-container { flex: none; height: 511px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1kqe18o { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-1ra3xhl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-7Ppsp .framer-12ls9eb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-9zsu94 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 79px; height: min-content; justify-content: center; max-width: 1249px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-eugzl9 { align-content: center; align-items: center; aspect-ratio: 7.56 / 1; background-color: var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, #e68312); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: var(--framer-aspect-ratio-supported, 165px); justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-10iixwl { aspect-ratio: 2.0833333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 95px); overflow: hidden; position: relative; width: 197px; }\",\".framer-7Ppsp .framer-1ao55bl, .framer-7Ppsp .framer-ui72hh, .framer-7Ppsp .framer-jkmyal, .framer-7Ppsp .framer-j8zt8j { flex: none; height: 72px; overflow: hidden; position: relative; width: 150px; }\",\".framer-7Ppsp .framer-2r8ydc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1dwr11e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 172px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1vjuypu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-7Ppsp .framer-1nmomjh { align-content: center; align-items: center; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1300px; overflow: hidden; padding: 30px 20px 30px 80px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-2l04mb, .framer-7Ppsp .framer-qd5cv2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 485px; }\",\".framer-7Ppsp .framer-esvka7, .framer-7Ppsp .framer-1utrwwc, .framer-7Ppsp .framer-sc0gmn, .framer-7Ppsp .framer-49pp8r, .framer-7Ppsp .framer-pcmbt9, .framer-7Ppsp .framer-xt5iww { --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-7Ppsp .framer-1qowd4i { --border-bottom-width: 1px; --border-color: #696969; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; 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: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; min-height: 538px; overflow: hidden; padding: 30px; position: relative; width: 531px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-1ok8n0y { 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: 1300px; overflow: hidden; padding: 120px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-83sw3j { align-content: flex-start; align-items: flex-start; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 20px 30px 30px; position: relative; width: 531px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-154e216 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1mw6xhh, .framer-7Ppsp .framer-mcdtz9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-rwgax, .framer-7Ppsp .framer-1xrljza { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1vkgbz4, .framer-7Ppsp .framer-15vfq0s, .framer-7Ppsp .framer-1784yjj, .framer-7Ppsp .framer-1h3esvs, .framer-7Ppsp .framer-1ef2a12, .framer-7Ppsp .framer-yetjjd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",'.framer-7Ppsp .framer-97zji0, .framer-7Ppsp .framer-nbrzdt, .framer-7Ppsp .framer-r4pjou { --framer-input-background: var(--token-cd35caec-4f2a-4f7e-8c70-9992720e55b3, rgba(51, 51, 51, 0.2)); --framer-input-border-bottom-width: 1px; --framer-input-border-color: var(--token-30ee69d1-cae6-4a5c-9af2-db5c94a12e77, rgba(255, 255, 255, 0.05)); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 5px; --framer-input-border-radius-bottom-right: 5px; --framer-input-border-radius-top-left: 5px; --framer-input-border-radius-top-right: 5px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, #ffffff); --framer-input-font-family: \"DM Sans\"; --framer-input-font-letter-spacing: -0.5px; --framer-input-font-line-height: 16px; --framer-input-font-size: 14px; --framer-input-font-weight: 500; --framer-input-icon-color: #999999; --framer-input-padding: 18px; --framer-input-placeholder-color: var(--token-3f9a2c63-f1d1-4706-bf6c-31956c981af9, #999999); --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }',\".framer-7Ppsp .framer-1v26s0f, .framer-7Ppsp .framer-pdizsc, .framer-7Ppsp .framer-hgedbv, .framer-7Ppsp .framer-v54qz0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-7Ppsp .framer-1n8uwof, .framer-7Ppsp .framer-1i84oas { --framer-input-background: var(--token-cd35caec-4f2a-4f7e-8c70-9992720e55b3, rgba(51, 51, 51, 0.2)); --framer-input-border-bottom-width: 1px; --framer-input-border-color: var(--token-30ee69d1-cae6-4a5c-9af2-db5c94a12e77, rgba(255, 255, 255, 0.05)); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 5px; --framer-input-border-radius-bottom-right: 5px; --framer-input-border-radius-top-left: 5px; --framer-input-border-radius-top-right: 5px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, #ffffff); --framer-input-font-family: \"DM Sans\"; --framer-input-font-letter-spacing: -0.5px; --framer-input-font-line-height: 16px; --framer-input-font-size: 14px; --framer-input-font-weight: 500; --framer-input-icon-color: #999999; --framer-input-invalid-text-color: var(--token-3f9a2c63-f1d1-4706-bf6c-31956c981af9, #999999); --framer-input-padding: 18px; --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }','.framer-7Ppsp .framer-12t8qvf { --framer-input-background: var(--token-cd35caec-4f2a-4f7e-8c70-9992720e55b3, rgba(51, 51, 51, 0.2)); --framer-input-border-bottom-width: 1px; --framer-input-border-color: var(--token-30ee69d1-cae6-4a5c-9af2-db5c94a12e77, rgba(255, 255, 255, 0.05)); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 5px; --framer-input-border-radius-bottom-right: 5px; --framer-input-border-radius-top-left: 5px; --framer-input-border-radius-top-right: 5px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382, #ffffff); --framer-input-font-family: \"DM Sans\"; --framer-input-font-letter-spacing: -0.5px; --framer-input-font-line-height: 16px; --framer-input-font-size: 14px; --framer-input-font-weight: 500; --framer-input-icon-color: #999999; --framer-input-padding: 18px; --framer-input-placeholder-color: var(--token-3f9a2c63-f1d1-4706-bf6c-31956c981af9, #999999); --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-7Ppsp .framer-1s9lz0a, .framer-7Ppsp .framer-19wjupt, .framer-7Ppsp .framer-wd7fog, .framer-7Ppsp .framer-166a495 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1ok2lkh { align-content: flex-start; align-items: flex-start; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1300px; overflow: hidden; padding: 50px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-1tlmy67 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1o3hzh1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-18ytzpl, .framer-7Ppsp .framer-4x676s, .framer-7Ppsp .framer-mv74sc, .framer-7Ppsp .framer-171xzvl, .framer-7Ppsp .framer-nzci6d, .framer-7Ppsp .framer-q5eart, .framer-7Ppsp .framer-14adv8u, .framer-7Ppsp .framer-ib3435, .framer-7Ppsp .framer-1djkr5x, .framer-7Ppsp .framer-7etsmi, .framer-7Ppsp .framer-1dlcu49, .framer-7Ppsp .framer-bbstiv, .framer-7Ppsp .framer-5v5ty4, .framer-7Ppsp .framer-1m90sit, .framer-7Ppsp .framer-a05p2n, .framer-7Ppsp .framer-5b2go0, .framer-7Ppsp .framer-e046g1, .framer-7Ppsp .framer-1imwhxb { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-7Ppsp .framer-1ldr6mn { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 540px; word-break: break-word; word-wrap: break-word; }\",\".framer-7Ppsp .framer-1e69x33 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-unyb4y { 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: 571px; }\",\".framer-7Ppsp .framer-1206fqr, .framer-7Ppsp .framer-dehql, .framer-7Ppsp .framer-vbbt7i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-167nfty, .framer-7Ppsp .framer-b7ky3d, .framer-7Ppsp .framer-1uovql5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-eh5pw3, .framer-7Ppsp .framer-19n9dom, .framer-7Ppsp .framer-1qtbhnw { --border-bottom-width: 0px; --border-color: #737373; --border-left-width: 0px; --border-right-width: 0.67px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: center; overflow: visible; padding: 0px 50px 0px 0px; position: relative; width: 190px; }\",\".framer-7Ppsp .framer-1ctnjsb, .framer-7Ppsp .framer-13o2yu0, .framer-7Ppsp .framer-a2538r { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); position: relative; width: 72px; }\",\".framer-7Ppsp .framer-uneid2, .framer-7Ppsp .framer-km17vk, .framer-7Ppsp .framer-12rg0b9 { 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: min-content; }\",\".framer-7Ppsp .framer-jxgkfw, .framer-7Ppsp .framer-gocb84, .framer-7Ppsp .framer-1wdnvcw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-tnp50c, .framer-7Ppsp .framer-vs9hit, .framer-7Ppsp .framer-1t6b3eo, .framer-7Ppsp .framer-1jycm7u, .framer-7Ppsp .framer-6fg5ji, .framer-7Ppsp .framer-pz25by, .framer-7Ppsp .framer-13nt5ck, .framer-7Ppsp .framer-oh22ul, .framer-7Ppsp .framer-1p4ojh2, .framer-7Ppsp .framer-1khukh1, .framer-7Ppsp .framer-1i0sf36 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-7Ppsp .framer-13th8jq, .framer-7Ppsp .framer-t49unw { 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: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-7Ppsp .framer-ub07n9, .framer-7Ppsp .framer-xiz9d1 { --border-bottom-width: 0px; --border-color: #737373; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0.67px; flex: none; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1fjasti { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: center; min-height: 906px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1ie895q { 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 0px 17px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-11qcbu0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: hidden; padding: 132px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-uf3din { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 854px; word-break: break-word; word-wrap: break-word; }\",\".framer-7Ppsp .framer-6pd7ed { align-content: center; align-items: center; background-color: rgba(255, 174, 0, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 176px; height: min-content; justify-content: center; overflow: visible; padding: 36px 50px 36px 50px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1n4p03d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 68px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-ks07ga { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-1clp326, .framer-7Ppsp .framer-1iupt52, .framer-7Ppsp .framer-jpqbyc { align-content: flex-start; align-items: flex-start; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-28bjku { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0); --border-left-width: 5px; --border-right-width: 0px; --border-style: solid; --border-top-width: 5px; align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.6021873017743928px 2.52918666745245px -1px rgba(0, 0, 0, 0.41), 0px 2.288533303243457px 9.61183987362252px -2px rgba(0, 0, 0, 0.39), 0px 10px 42px -3px rgba(0, 0, 0, 0.28); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 452px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 756px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-7Ppsp .framer-p0s9w8 { 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; padding: 0px; position: relative; width: 484px; z-index: 1; }\",\".framer-7Ppsp .framer-gn3uko { flex: none; height: 117px; overflow: hidden; position: relative; width: 208px; z-index: 1; }\",\".framer-7Ppsp .framer-12cpp5z, .framer-7Ppsp .framer-j831p4, .framer-7Ppsp .framer-4e9xsf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-7Ppsp .framer-1l7g3up, .framer-7Ppsp .framer-4a7sw5, .framer-7Ppsp .framer-1xcyo81, .framer-7Ppsp .framer-jcm561, .framer-7Ppsp .framer-1mra84u { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-7Ppsp .framer-jf4cpx { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-cnawz9 { 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; padding: 0px; position: relative; width: 503px; z-index: 1; }\",\".framer-7Ppsp .framer-16044cv { flex: none; height: 106px; overflow: hidden; position: relative; width: 199px; z-index: 1; }\",\".framer-7Ppsp .framer-1e7qq9q { --framer-paragraph-spacing: 0px; flex: none; height: 196px; overflow: visible; position: relative; white-space: pre-wrap; width: 503px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-7Ppsp .framer-f8szoj { --border-bottom-width: 5px; --border-color: rgba(0, 0, 0, 0); --border-left-width: 0px; --border-right-width: 5px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0.5175247177903657px 0.43790553043800173px 2.304972036059627px -0.9375px rgba(0, 0, 0, 0.73), 1.5694289930179366px 1.3279783787074848px 6.9899848589510345px -1.875px rgba(0, 0, 0, 0.69), 4.1487247889649px 3.5104594368164537px 18.477754385723934px -2.8125px rgba(0, 0, 0, 0.59), 13px 11px 57.89991364414976px -3.75px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 505px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 834px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-7Ppsp .framer-x6a6x9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 1400px; }\",\".framer-7Ppsp .framer-wwlbr7 { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0.39809593676181976px 0.39809593676181976px 1.6889780186825625px -0.9375px rgba(0, 0, 0, 0.56), 1.207253071552259px 1.207253071552259px 5.121941001017343px -1.875px rgba(0, 0, 0, 0.53), 3.1913267607422307px 3.1913267607422307px 13.539652761017582px -2.8125px rgba(0, 0, 0, 0.45), 10px 10px 42.42640687119285px -3.75px rgba(0, 0, 0, 0.19); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 452px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 847px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-7Ppsp .framer-1dit992 { 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; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-7Ppsp .framer-1dgt8j2 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 106px; overflow: hidden; position: relative; width: 193px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-7Ppsp .framer-1kff5cb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1249px; overflow: hidden; padding: 12px 0px 12px 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-9gmb03 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 683px; }\",\".framer-7Ppsp .framer-fk2krn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: 804px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-d9qesg-container { flex: none; height: 100%; position: relative; width: 343px; }\",\".framer-7Ppsp .framer-1pce75o { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-yapk0f { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 180px; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-k1japz, .framer-7Ppsp .framer-1p6o391, .framer-7Ppsp .framer-1wa4txe, .framer-7Ppsp .framer-5rra2, .framer-7Ppsp .framer-1oaag4q, .framer-7Ppsp .framer-1wtxmyk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-hcq6c9, .framer-7Ppsp .framer-130f4my { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 49px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1ciasww, .framer-7Ppsp .framer-kxeg64, .framer-7Ppsp .framer-1sm88v8, .framer-7Ppsp .framer-ijb8j7 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-1d2md2, .framer-7Ppsp .framer-1ueoplw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 52px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-oz8ysa-container { flex: none; height: 100%; position: relative; width: 339px; }\",\".framer-7Ppsp .framer-201sog { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-11ly3z8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 301px; }\",\".framer-7Ppsp .framer-1u4qhq4 { align-content: center; align-items: center; background-color: rgba(33, 33, 33, 0); border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 46px; justify-content: center; min-width: 103px; overflow: hidden; padding: 15px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-tkvhrh, .framer-7Ppsp .framer-v5fj2f { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-19cs5ol { align-content: center; align-items: center; background-color: rgba(33, 33, 33, 0); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 75px; justify-content: center; min-width: 103px; overflow: visible; padding: 15px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-e1umtk { align-content: center; align-items: center; background-color: rgba(33, 33, 33, 0); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 47px; justify-content: center; min-width: 103px; overflow: visible; padding: 15px; position: relative; width: min-content; }\",\".framer-7Ppsp .framer-1dsyrsf { align-content: center; align-items: center; background-color: rgba(255, 174, 0, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 72px 40px 72px 40px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-ciarrr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1249px; overflow: hidden; padding: 12px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-jh28sb { display: grid; flex: none; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1jpvr34, .framer-7Ppsp .framer-1unvkif, .framer-7Ppsp .framer-1dedbk3, .framer-7Ppsp .framer-ixsjja { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, #04070d); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 670px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-1f07s9c, .framer-7Ppsp .framer-68p2nu, .framer-7Ppsp .framer-m2df48, .framer-7Ppsp .framer-1satgss { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.05); border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 10px 13px 10px 13px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1bfoki1, .framer-7Ppsp .framer-1us4tvu, .framer-7Ppsp .framer-1f0jufg, .framer-7Ppsp .framer-1idect6 { flex: none; gap: 0px; height: 45px; overflow: visible; position: relative; width: 153px; }\",\".framer-7Ppsp .framer-1un8i3n, .framer-7Ppsp .framer-1twf5v7, .framer-7Ppsp .framer-licdv8, .framer-7Ppsp .framer-1qo7lob { flex: none; gap: 0px; height: 45px; left: calc(50% - 153.27000427246094px / 2); overflow: hidden; position: absolute; top: 0px; width: 153px; }\",\".framer-7Ppsp .framer-ijxjbc, .framer-7Ppsp .framer-tbidpx, .framer-7Ppsp .framer-5jovud, .framer-7Ppsp .framer-1lmlsxb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 50.08001708984375px 50px 50.08001708984375px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-rbxlk2, .framer-7Ppsp .framer-1gohul6, .framer-7Ppsp .framer-1devkxu, .framer-7Ppsp .framer-1sfnud1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 9.91998291015625px 0px 9.91998291015625px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-u2d0nx, .framer-7Ppsp .framer-1iqgyq9, .framer-7Ppsp .framer-wekq6y, .framer-7Ppsp .framer-1ecttx3 { border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; gap: 0px; height: 64px; overflow: visible; position: relative; width: 65px; }\",\".framer-7Ppsp .framer-ykxiq5, .framer-7Ppsp .framer-1s3uas3, .framer-7Ppsp .framer-9zy2w1, .framer-7Ppsp .framer-l6xpga { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1q3mw9, .framer-7Ppsp .framer-15yqe50, .framer-7Ppsp .framer-1sl6af8, .framer-7Ppsp .framer-m67fhn { --border-bottom-width: 0px; --border-color: #d4d4d4; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; flex: none; height: 1px; opacity: 0.2; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-13buzw2, .framer-7Ppsp .framer-136tzzz, .framer-7Ppsp .framer-9e3392, .framer-7Ppsp .framer-dfzxcx { aspect-ratio: 5.387755102040817 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); overflow: visible; position: relative; width: 102px; }\",\".framer-7Ppsp .framer-1eefnlv, .framer-7Ppsp .framer-mh0tlh, .framer-7Ppsp .framer-zkd6z0, .framer-7Ppsp .framer-1rno5hx { 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: flex-start; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-j03ygp, .framer-7Ppsp .framer-7murnm, .framer-7Ppsp .framer-n4juvf, .framer-7Ppsp .framer-kh2obh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-ugas46 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-cjiajm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 780px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1r0upao, .framer-7Ppsp .framer-ppy1fz, .framer-7Ppsp .framer-k1cu7m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-czchc3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-ggmt3k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 415px; justify-content: center; overflow: hidden; padding: 10px 20px 10px 0px; position: relative; width: 418px; }\",\".framer-7Ppsp .framer-1j33pl5-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1xfqqiz { 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: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-7Ppsp .framer-zoxce { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-ux0nkq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 860px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1m4pii4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-11xchv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-t37yzt { --border-bottom-width: 1px; --border-color: var(--token-a9883d9b-c1bd-4bd9-be15-284cd72e1b1f, rgba(255, 255, 255, 0.07)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(4px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(4px); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 20px 40px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-1nlv7n6 { --border-bottom-width: 1px; --border-color: var(--token-a9883d9b-c1bd-4bd9-be15-284cd72e1b1f, rgba(255, 255, 255, 0.07)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; gap: 22px; height: 296px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-17z9l8u, .framer-7Ppsp .framer-lsv2zn, .framer-7Ppsp .framer-c39xnc, .framer-7Ppsp .framer-15maqfr, .framer-7Ppsp .framer-1954yc0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px 12px 0px 12px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-se5pqx, .framer-7Ppsp .framer-1q4dyoc, .framer-7Ppsp .framer-5dmsi8, .framer-7Ppsp .framer-qzeg02, .framer-7Ppsp .framer-63xlfw { align-content: flex-start; align-items: flex-start; 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: 100%; }\",\".framer-7Ppsp .framer-1kocp7g, .framer-7Ppsp .framer-wt7stj, .framer-7Ppsp .framer-13ayu2s, .framer-7Ppsp .framer-1qvdn83, .framer-7Ppsp .framer-rnmi38 { background: linear-gradient(90.00000000000075deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%); flex: none; height: 1px; position: relative; width: 230px; }\",\".framer-7Ppsp .framer-m8ufpr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; max-width: 580px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1wj4ldd { -webkit-filter: blur(322px); aspect-ratio: 1 / 1; background-color: var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, #0055ff); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -255px; filter: blur(322px); flex: none; height: var(--framer-aspect-ratio-supported, 407px); left: -74px; position: absolute; width: 407px; z-index: -1; }\",\".framer-7Ppsp .framer-1f2z3in, .framer-7Ppsp .framer-6zn5li { --border-bottom-width: 1px; --border-color: var(--token-a9883d9b-c1bd-4bd9-be15-284cd72e1b1f, rgba(255, 255, 255, 0.07)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(4px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(4px); 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: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 20px 40px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-ufwvey, .framer-7Ppsp .framer-1ysh6if { --border-bottom-width: 1px; --border-color: var(--token-a9883d9b-c1bd-4bd9-be15-284cd72e1b1f, rgba(255, 255, 255, 0.07)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; gap: 22px; height: 109px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-c719g7, .framer-7Ppsp .framer-l31i64, .framer-7Ppsp .framer-bk5bmh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1sc2lzd, .framer-7Ppsp .framer-1g1c3m9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-13mb9ju, .framer-7Ppsp .framer-8ud8f7 { -webkit-filter: blur(327px); aspect-ratio: 1 / 1; background-color: var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, #0055ff); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -314px; filter: blur(327px); flex: none; height: var(--framer-aspect-ratio-supported, 397px); left: -260px; position: absolute; width: 397px; z-index: -1; }\",\".framer-7Ppsp .framer-hkh8sx { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: center; max-width: 486px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1iry7zu { --border-bottom-width: 1px; --border-color: var(--token-a9883d9b-c1bd-4bd9-be15-284cd72e1b1f, rgba(255, 255, 255, 0.07)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(4px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(4px); 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: column; flex-wrap: nowrap; gap: 22px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 20px 20px 45px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-1amaqtq, .framer-7Ppsp .framer-ia26o1 { --border-bottom-width: 1px; --border-color: var(--token-a9883d9b-c1bd-4bd9-be15-284cd72e1b1f, rgba(255, 255, 255, 0.07)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; gap: 22px; height: 213px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-6ze4do, .framer-7Ppsp .framer-nb9220 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; max-width: 420px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-4f14sg { -webkit-filter: blur(302px); aspect-ratio: 1 / 1; background-color: var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, #0055ff); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -99px; filter: blur(302px); flex: none; height: var(--framer-aspect-ratio-supported, 234px); left: -16px; position: absolute; width: 234px; z-index: -1; }\",\".framer-7Ppsp .framer-1qg98n9 { --border-bottom-width: 1px; --border-color: var(--token-a9883d9b-c1bd-4bd9-be15-284cd72e1b1f, rgba(255, 255, 255, 0.07)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(4px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(4px); 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: column; flex-wrap: nowrap; gap: 22px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 20px 20px 44px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-19o332w { -webkit-filter: blur(322px); aspect-ratio: 1 / 1; background-color: var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1, #0055ff); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -284px; filter: blur(322px); flex: none; height: var(--framer-aspect-ratio-supported, 407px); left: -73px; position: absolute; width: 407px; z-index: -1; }\",\".framer-7Ppsp .framer-pjlup { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: -183px; top: 239px; width: min-content; z-index: 0; }\",\".framer-7Ppsp .framer-1wauvb0 { flex: none; height: 237px; position: relative; width: 1409px; }\",\".framer-7Ppsp .framer-17y70q2-container { flex: none; height: auto; max-width: 1320px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-x3nwyg, .framer-7Ppsp .framer-1u3ouk2, .framer-7Ppsp .framer-x4r2jj { align-content: center; align-items: center; background-color: rgba(255, 174, 0, 0.02); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 51px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-kw55ui, .framer-7Ppsp .framer-1t509e9, .framer-7Ppsp .framer-1h2j255, .framer-7Ppsp .framer-1klob5b, .framer-7Ppsp .framer-ro397f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1230px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1elv0pb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-36fvj6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 2018px; min-height: 135px; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1b1whbg, .framer-7Ppsp .framer-1va6v74, .framer-7Ppsp .framer-1ghph4b, .framer-7Ppsp .framer-1uxxlpx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 74px; height: min-content; justify-content: center; overflow: hidden; padding: 81px 0px 81px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-9o0z3l, .framer-7Ppsp .framer-qya42h, .framer-7Ppsp .framer-2vgy4r { align-content: center; align-items: center; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 460px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-ldf7rs, .framer-7Ppsp .framer-u28o2r, .framer-7Ppsp .framer-1dtv5vs, .framer-7Ppsp .framer-10w7466 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1yenlsq, .framer-7Ppsp .framer-1x0zfks, .framer-7Ppsp .framer-58x9rt, .framer-7Ppsp .framer-10qc7qh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-6gwzaq { align-content: center; align-items: center; background-color: rgba(255, 38, 0, 0.02); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 51px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1m8sldg { align-content: center; align-items: center; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 490px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-ro9f7j { align-content: center; align-items: center; background-color: rgba(255, 174, 0, 0.02); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-gwttey { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 74px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-sr0obc { align-content: center; align-items: center; aspect-ratio: 1.5170603674540681 / 1; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 479px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-1hl6yx1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; max-width: 35%; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1br0so5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 80%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7Ppsp .framer-16lm216 { 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: hidden; padding: 0px 30px 100px 30px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-yn60r6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1356px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-7Ppsp .framer-6dvk03 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-ctxcbv-container, .framer-7Ppsp .framer-1yisl5-container, .framer-7Ppsp .framer-1g3qxhw-container { flex: none; height: auto; position: relative; width: 1356px; }\",\".framer-7Ppsp .framer-l4ptzn, .framer-7Ppsp .framer-d5a48y, .framer-7Ppsp .framer-5ru06e { background-color: rgba(255, 255, 255, 0); flex: none; height: 95px; left: 0px; overflow: hidden; position: absolute; text-decoration: none; top: 1px; width: 100%; z-index: 1; }\",\".framer-7Ppsp .framer-j532a6 { 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: 120px 30px 120px 30px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1nsl8cj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1224px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-244bvm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 93px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1pt4il1 { align-content: center; align-items: center; aspect-ratio: 1.2764423076923077 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 531px); justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 43%; }\",\".framer-7Ppsp .framer-1e4c873 { aspect-ratio: 1 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 531px); position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1a6grtx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 47px; height: min-content; justify-content: flex-start; max-width: 562px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1449ff7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1tul3da { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 120px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1deaa6a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 130px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1yjrj0u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-12t3csl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 674px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-1yrxhx1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1fpi36v, .framer-7Ppsp .framer-1us95c4, .framer-7Ppsp .framer-8kgdcr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7Ppsp .framer-2n7v5z { align-content: center; align-items: center; aspect-ratio: 0.8409785932721713 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 689px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 48%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-19m3cx4 { background: linear-gradient(90.00000000000075deg, var(--token-73242b55-57d1-4320-8897-28085a430c83, rgba(255, 255, 255, 0.02)) 0%, var(--token-d86f1591-0c16-44cd-be10-19334dfa9293, rgba(255, 255, 255, 0.1)) 50%, var(--token-73242b55-57d1-4320-8897-28085a430c83, rgba(255, 255, 255, 0.02)) 100%); flex: none; height: 1px; max-width: 1300px; position: relative; text-decoration: none; width: 100%; }\",\".framer-7Ppsp .framer-1q04lsv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 84px; height: min-content; justify-content: center; overflow: visible; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-10mhoms { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 700px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1jc4u5q { 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: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-7Ppsp .framer-7aty4c-container { flex: none; height: 1053px; max-width: 528px; position: relative; width: 528px; }\",\".framer-7Ppsp .framer-11t6kgv { --border-bottom-width: 5px; --border-color: #ffffff; --border-left-width: 5px; --border-right-width: 5px; --border-style: dashed; --border-top-width: 5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; gap: 49px; height: var(--framer-aspect-ratio-supported, 786px); left: 50%; opacity: 0.2; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 786px; z-index: 1; }\",\".framer-7Ppsp .framer-lpatr9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 120px 0px 120px; position: relative; width: 100%; z-index: 2; }\",\".framer-7Ppsp .framer-11qchih-container { flex: none; height: 346px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1lcr045-container, .framer-7Ppsp .framer-1jfwkiu-container, .framer-7Ppsp .framer-1ijlerq-container, .framer-7Ppsp .framer-t6p4ov-container, .framer-7Ppsp .framer-1e3qaze-container { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 235px); position: relative; width: 418px; }\",\".framer-7Ppsp .framer-zbytr4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-r6sj4t { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 450px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7Ppsp .framer-sdblef { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1modrcz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 450px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7Ppsp .framer-1hb3fx3-container { flex: 1 0 0px; height: auto; max-width: 700px; position: relative; width: 1px; z-index: 1; }\",\".framer-7Ppsp .framer-1oo7hwi-container { flex: none; height: auto; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-7Ppsp .framer-1rucnm8-container { bottom: -308px; flex: none; height: auto; left: 295px; position: fixed; width: auto; z-index: 10; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,'.framer-7Ppsp[data-border=\"true\"]::after, .framer-7Ppsp [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-7Ppsp.framer-72rtr7 { width: 1200px; } .framer-7Ppsp .framer-1fbunpp, .framer-7Ppsp .framer-jhpyxp, .framer-7Ppsp .framer-1a25acp, .framer-7Ppsp .framer-bot2as, .framer-7Ppsp .framer-1s58b2f, .framer-7Ppsp .framer-uulf7u, .framer-7Ppsp .framer-i4ue09, .framer-7Ppsp .framer-1wrmeea, .framer-7Ppsp .framer-1cnizgz, .framer-7Ppsp .framer-9sq1uy, .framer-7Ppsp .framer-k3ep9y, .framer-7Ppsp .framer-ib2y4y, .framer-7Ppsp .framer-19p65fw, .framer-7Ppsp .framer-g5hg3r, .framer-7Ppsp .framer-mmd3fm, .framer-7Ppsp .framer-1fdup7y, .framer-7Ppsp .framer-zoxce, .framer-7Ppsp .framer-1m4pii4, .framer-7Ppsp .framer-mdjxbp, .framer-7Ppsp .framer-mwzavv, .framer-7Ppsp .framer-v4jksm, .framer-7Ppsp .framer-1va5l0d, .framer-7Ppsp .framer-1q04lsv, .framer-7Ppsp .framer-lpatr9, .framer-7Ppsp .framer-zbytr4 { padding: 0px 70px 0px 70px; } .framer-7Ppsp .framer-meh9eu { left: -203px; } .framer-7Ppsp .framer-x8549r { right: -203px; } .framer-7Ppsp .framer-9d8uac { height: var(--framer-aspect-ratio-supported, 261px); } .framer-7Ppsp .framer-lo0o6n-container, .framer-7Ppsp .framer-krmmsi-container, .framer-7Ppsp .framer-ygmt3f-container, .framer-7Ppsp .framer-tzks8h-container, .framer-7Ppsp .framer-4r3gnr-container, .framer-7Ppsp .framer-h9xabr-container { height: var(--framer-aspect-ratio-supported, 292px); } .framer-7Ppsp .framer-g1fmey-container, .framer-7Ppsp .framer-1ce0o1h-container { height: var(--framer-aspect-ratio-supported, 291px); } .framer-7Ppsp .framer-13oyhdf { padding: 0px 70px 20px 70px; } .framer-7Ppsp .framer-1yd1ong { grid-template-columns: repeat(3, minmax(50px, 1fr)); } .framer-7Ppsp .framer-5w9o1k, .framer-7Ppsp .framer-w8ybsg, .framer-7Ppsp .framer-rcefgx { height: var(--framer-aspect-ratio-supported, 239px); } .framer-7Ppsp .framer-4ugidm { height: var(--framer-aspect-ratio-supported, 240px); } .framer-7Ppsp .framer-16mxa55 { height: var(--framer-aspect-ratio-supported, 511px); } .framer-7Ppsp .framer-eugzl9 { height: var(--framer-aspect-ratio-supported, 159px); } .framer-7Ppsp .framer-hkh8sx { max-width: 406px; } .framer-7Ppsp .framer-sr0obc { height: var(--framer-aspect-ratio-supported, 465px); } .framer-7Ppsp .framer-1pt4il1, .framer-7Ppsp .framer-1e4c873 { height: var(--framer-aspect-ratio-supported, 495px); } .framer-7Ppsp .framer-2n7v5z { height: var(--framer-aspect-ratio-supported, 551px); }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-7Ppsp.framer-72rtr7 { width: 810px; } .framer-7Ppsp .framer-7s15yl { padding: 120px 30px 0px 30px; } .framer-7Ppsp .framer-kzv5dq { flex-direction: column; gap: 50px; max-width: 100%; } .framer-7Ppsp .framer-15hvyux, .framer-7Ppsp .framer-b6ajrm, .framer-7Ppsp .framer-66z24l, .framer-7Ppsp .framer-1b5legt, .framer-7Ppsp .framer-n7gk07, .framer-7Ppsp .framer-1dit992, .framer-7Ppsp .framer-9opx0v, .framer-7Ppsp .framer-11xchv { flex: none; width: 100%; } .framer-7Ppsp .framer-1uz8yuj { padding: 15px 0px 10px 0px; } .framer-7Ppsp .framer-pip7po, .framer-7Ppsp .framer-2l04mb, .framer-7Ppsp .framer-1qowd4i, .framer-7Ppsp .framer-83sw3j, .framer-7Ppsp .framer-qd5cv2, .framer-7Ppsp .framer-uf3din, .framer-7Ppsp .framer-p0s9w8 { width: 100%; } .framer-7Ppsp .framer-15q34un { overflow: hidden; will-change: var(--framer-will-change-override, transform); } .framer-7Ppsp .framer-1fbunpp, .framer-7Ppsp .framer-jhpyxp, .framer-7Ppsp .framer-bot2as, .framer-7Ppsp .framer-1s58b2f, .framer-7Ppsp .framer-i4ue09, .framer-7Ppsp .framer-1wrmeea, .framer-7Ppsp .framer-1cnizgz, .framer-7Ppsp .framer-9sq1uy, .framer-7Ppsp .framer-k3ep9y, .framer-7Ppsp .framer-ib2y4y, .framer-7Ppsp .framer-19p65fw, .framer-7Ppsp .framer-g5hg3r, .framer-7Ppsp .framer-mmd3fm, .framer-7Ppsp .framer-1fdup7y, .framer-7Ppsp .framer-zoxce, .framer-7Ppsp .framer-mdjxbp, .framer-7Ppsp .framer-mwzavv, .framer-7Ppsp .framer-v4jksm, .framer-7Ppsp .framer-1va5l0d, .framer-7Ppsp .framer-lpatr9 { padding: 0px 50px 0px 50px; } .framer-7Ppsp .framer-5swblh { grid-template-columns: repeat(2, minmax(50px, 1fr)); padding: 0px 50px 0px 50px; } .framer-7Ppsp .framer-meh9eu { left: -160px; } .framer-7Ppsp .framer-x8549r { right: -160px; } .framer-7Ppsp .framer-x9y70b { flex-direction: column; flex-wrap: wrap; gap: 32px; } .framer-7Ppsp .framer-1cuhzti, .framer-7Ppsp .framer-13goxiy { flex: none; gap: 40px; width: 50%; } .framer-7Ppsp .framer-208ma4, .framer-7Ppsp .framer-5zo3pv { gap: 30px; } .framer-7Ppsp .framer-1im8r2i { flex: none; gap: 30px; justify-content: flex-start; width: 50%; } .framer-7Ppsp .framer-1a25acp { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 0px 50px 0px 50px; } .framer-7Ppsp .framer-9d8uac { flex: none; height: var(--framer-aspect-ratio-supported, 379px); order: 0; width: 100%; } .framer-7Ppsp .framer-p2k6uz { flex: none; order: 1; width: 100%; } .framer-7Ppsp .framer-lo0o6n-container, .framer-7Ppsp .framer-krmmsi-container, .framer-7Ppsp .framer-ygmt3f-container, .framer-7Ppsp .framer-tzks8h-container, .framer-7Ppsp .framer-g1fmey-container, .framer-7Ppsp .framer-1ce0o1h-container, .framer-7Ppsp .framer-4r3gnr-container, .framer-7Ppsp .framer-h9xabr-container { height: var(--framer-aspect-ratio-supported, 193px); } .framer-7Ppsp .framer-uulf7u, .framer-7Ppsp .framer-1m4pii4, .framer-7Ppsp .framer-zbytr4 { flex-direction: column; padding: 0px 50px 0px 50px; } .framer-7Ppsp .framer-162dm7o { flex: none; max-width: unset; order: 0; width: 100%; } .framer-7Ppsp .framer-coxtid-container, .framer-7Ppsp .framer-1hb3fx3-container { flex: none; max-width: unset; order: 1; width: 100%; } .framer-7Ppsp .framer-13oyhdf { padding: 0px 50px 20px 50px; } .framer-7Ppsp .framer-1yd1ong { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-7Ppsp .framer-oowj7i { flex-direction: column; gap: 0px; padding: 80px 30px 80px 30px; } .framer-7Ppsp .framer-18jogmz, .framer-7Ppsp .framer-ix9djg, .framer-7Ppsp .framer-qbj3s8 { flex: none; flex-wrap: wrap; gap: 42px; max-width: 100%; padding: 32px 0px 32px 0px; width: 100%; } .framer-7Ppsp .framer-1pushw8, .framer-7Ppsp .framer-cxbpgu, .framer-7Ppsp .framer-rlyaq5 { flex-direction: row; width: 45%; } .framer-7Ppsp .framer-14ziy9f { gap: 56px; padding: 80px 30px 80px 30px; } .framer-7Ppsp .framer-1u5u1k { gap: 60px; max-width: 100%; } .framer-7Ppsp .framer-1mvx4iq, .framer-7Ppsp .framer-1lhwez7, .framer-7Ppsp .framer-1fgu2ly, .framer-7Ppsp .framer-62po9f { flex-direction: column; gap: 60px; justify-content: center; width: 100%; } .framer-7Ppsp .framer-gyb8i3, .framer-7Ppsp .framer-e19twj, .framer-7Ppsp .framer-1697cr6, .framer-7Ppsp .framer-1hlpozd { flex: none; max-width: 600px; width: 100%; } .framer-7Ppsp .framer-5w9o1k, .framer-7Ppsp .framer-1c4pn2v { height: var(--framer-aspect-ratio-supported, 386px); width: 80%; } .framer-7Ppsp .framer-xc0ayu { flex-direction: column; gap: 60px; justify-content: center; } .framer-7Ppsp .framer-cc8jae { max-width: 600px; width: 100%; } .framer-7Ppsp .framer-4ugidm, .framer-7Ppsp .framer-w8ybsg, .framer-7Ppsp .framer-rcefgx { height: var(--framer-aspect-ratio-supported, 385px); width: 80%; } .framer-7Ppsp .framer-1sf9gi4 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-7Ppsp .framer-1b05cir, .framer-7Ppsp .framer-1gj3st6, .framer-7Ppsp .framer-1jncjy8 { align-self: start; justify-self: start; width: 100%; } .framer-7Ppsp .framer-1lxhl2z { flex-direction: column; height: min-content; } .framer-7Ppsp .framer-1hquiur, .framer-7Ppsp .framer-13xomyz { height: min-content; width: 100%; } .framer-7Ppsp .framer-tnai6t-container { flex: none; height: 269px; width: 100%; } .framer-7Ppsp .framer-1xc8xpc-container { flex: none; height: 269px; } .framer-7Ppsp .framer-8ku1ez { height: 315px; width: 100%; } .framer-7Ppsp .framer-7z8hbu { height: min-content; } .framer-7Ppsp .framer-1loj3ow, .framer-7Ppsp .framer-16lm216, .framer-7Ppsp .framer-j532a6 { padding: 80px 30px 80px 30px; } .framer-7Ppsp .framer-1wi4u3c { gap: 0px; max-width: 100%; } .framer-7Ppsp .framer-iz8gqt, .framer-7Ppsp .framer-6dvk03 { gap: 40px; } .framer-7Ppsp .framer-12p2mvk, .framer-7Ppsp .framer-1bleazt { gap: 32px; } .framer-7Ppsp .framer-1u8c9m6, .framer-7Ppsp .framer-ciarrr { gap: 58px; } .framer-7Ppsp .framer-170u6un, .framer-7Ppsp .framer-of5exq { flex-direction: column; gap: 58px; } .framer-7Ppsp .framer-q07fwy, .framer-7Ppsp .framer-f9ohxg, .framer-7Ppsp .framer-1nmomjh, .framer-7Ppsp .framer-1ok8n0y, .framer-7Ppsp .framer-1j7jvvr, .framer-7Ppsp .framer-gwttey { flex-direction: column; } .framer-7Ppsp .framer-1q9a1g4, .framer-7Ppsp .framer-s2nyl1, .framer-7Ppsp .framer-1kff5cb { flex: none; flex-direction: column; gap: 58px; width: 100%; } .framer-7Ppsp .framer-101b8t4 { padding: 80px 20px 80px 20px; } .framer-7Ppsp .framer-gn70ax, .framer-7Ppsp .framer-1deaa6a { gap: 50px; max-width: 100%; } .framer-7Ppsp .framer-15q2bon { align-content: flex-start; align-items: flex-start; gap: 50px; justify-content: flex-start; } .framer-7Ppsp .framer-12ls9eb { padding: 0px 30px 80px 30px; } .framer-7Ppsp .framer-eugzl9 { height: var(--framer-aspect-ratio-supported, 100px); } .framer-7Ppsp .framer-11qcbu0 { padding: 24px 0px 0px 0px; } .framer-7Ppsp .framer-1n4p03d { flex-direction: column; justify-content: flex-start; width: 100%; } .framer-7Ppsp .framer-28bjku, .framer-7Ppsp .framer-f8szoj, .framer-7Ppsp .framer-wwlbr7 { width: 704px; } .framer-7Ppsp .framer-jf4cpx { align-content: flex-start; align-items: flex-start; flex-direction: column; justify-content: flex-start; width: 100%; } .framer-7Ppsp .framer-cnawz9 { order: 0; padding: 104px 0px 104px 0px; width: 100%; } .framer-7Ppsp .framer-1e7qq9q { height: auto; width: 100%; } .framer-7Ppsp .framer-1iupt52, .framer-7Ppsp .framer-1jc4u5q { order: 1; } .framer-7Ppsp .framer-x6a6x9 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 47px; width: 100%; } .framer-7Ppsp .framer-m8ufpr, .framer-7Ppsp .framer-6ze4do, .framer-7Ppsp .framer-nb9220 { max-width: 600px; } .framer-7Ppsp .framer-hkh8sx { align-self: unset; flex: none; height: min-content; max-width: unset; width: 100%; } .framer-7Ppsp .framer-1iry7zu, .framer-7Ppsp .framer-1qg98n9 { flex: none; height: min-content; } .framer-7Ppsp .framer-sr0obc { flex: none; height: var(--framer-aspect-ratio-supported, 534px); width: 100%; } .framer-7Ppsp .framer-1hl6yx1 { flex: none; max-width: unset; width: 100%; } .framer-7Ppsp .framer-1br0so5 { max-width: unset; } .framer-7Ppsp .framer-yn60r6, .framer-7Ppsp .framer-1nsl8cj { max-width: 100%; } .framer-7Ppsp .framer-244bvm { flex-direction: column; gap: 50px; justify-content: center; } .framer-7Ppsp .framer-1pt4il1 { height: var(--framer-aspect-ratio-supported, 562px); justify-content: center; width: 75%; } .framer-7Ppsp .framer-1e4c873 { height: var(--framer-aspect-ratio-supported, 562px); } .framer-7Ppsp .framer-1a6grtx { align-content: center; align-items: center; flex: none; justify-content: center; width: 100%; } .framer-7Ppsp .framer-1449ff7 { align-content: center; align-items: center; justify-content: center; } .framer-7Ppsp .framer-1tul3da { padding: 70px 120px 70px 120px; } .framer-7Ppsp .framer-1yjrj0u { flex-direction: column; gap: 50px; } .framer-7Ppsp .framer-12t3csl { align-content: flex-start; align-items: flex-start; flex: none; gap: 24px; justify-content: flex-start; max-width: 600px; overflow: visible; width: 100%; } .framer-7Ppsp .framer-1yrxhx1 { gap: 20px; justify-content: flex-start; } .framer-7Ppsp .framer-1mdej2p { gap: 15px; } .framer-7Ppsp .framer-2n7v5z { height: var(--framer-aspect-ratio-supported, 542px); width: 80%; } .framer-7Ppsp .framer-1q04lsv { align-content: flex-start; align-items: flex-start; padding: 0px 50px 0px 50px; } .framer-7Ppsp .framer-10mhoms { order: 0; } .framer-7Ppsp .framer-11t6kgv { order: 2; } .framer-7Ppsp .framer-r6sj4t { flex: none; order: 0; width: 100%; }}\",\"@media (max-width: 809px) { .framer-7Ppsp.framer-72rtr7 { width: 390px; } .framer-7Ppsp .framer-7s15yl { padding: 100px 20px 0px 20px; } .framer-7Ppsp .framer-kzv5dq { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; max-width: 100%; } .framer-7Ppsp .framer-15hvyux, .framer-7Ppsp .framer-6r5p0b { align-content: center; align-items: center; flex: none; width: 100%; } .framer-7Ppsp .framer-1wugoqy { aspect-ratio: unset; height: 52px; width: min-content; } .framer-7Ppsp .framer-1tzep1a { aspect-ratio: unset; height: auto; white-space: pre; width: auto; } .framer-7Ppsp .framer-1uz8yuj { flex-wrap: wrap; justify-content: center; } .framer-7Ppsp .framer-1jq7msv { align-content: center; align-items: center; width: 100%; } .framer-7Ppsp .framer-10z3q8z { align-content: center; align-items: center; flex-direction: column; } .framer-7Ppsp .framer-gtrbpj { width: 121px; } .framer-7Ppsp .framer-15q34un { overflow: hidden; will-change: var(--framer-will-change-override, transform); } .framer-7Ppsp .framer-113y3c1, .framer-7Ppsp .framer-2agp9e, .framer-7Ppsp .framer-1wech1k { gap: 70px; padding: 70px 0px 0px 0px; } .framer-7Ppsp .framer-1vk0239, .framer-7Ppsp .framer-1jyzkl7, .framer-7Ppsp .framer-kdk7en, .framer-7Ppsp .framer-9p0ife, .framer-7Ppsp .framer-s1s5v5, .framer-7Ppsp .framer-1lmwc1v, .framer-7Ppsp .framer-x8hwew { gap: 60px; } .framer-7Ppsp .framer-1fbunpp, .framer-7Ppsp .framer-q8zssb, .framer-7Ppsp .framer-1dsyrsf { padding: 0px 20px 0px 20px; } .framer-7Ppsp .framer-k37ku2, .framer-7Ppsp .framer-h727ng, .framer-7Ppsp .framer-11wt7pu, .framer-7Ppsp .framer-q49dtq, .framer-7Ppsp .framer-17s9fd3, .framer-7Ppsp .framer-27pm4x, .framer-7Ppsp .framer-95j806, .framer-7Ppsp .framer-1cw8l03, .framer-7Ppsp .framer-14srzjp, .framer-7Ppsp .framer-1y207gv, .framer-7Ppsp .framer-cjiajm, .framer-7Ppsp .framer-of3azk, .framer-7Ppsp .framer-oy2toh, .framer-7Ppsp .framer-q7esjw { max-width: 460px; } .framer-7Ppsp .framer-ps4ie4, .framer-7Ppsp .framer-1mgvc7r, .framer-7Ppsp .framer-mkynu0, .framer-7Ppsp .framer-11aygnu, .framer-7Ppsp .framer-2sfjbq, .framer-7Ppsp .framer-698xn5, .framer-7Ppsp .framer-1ch7wkt, .framer-7Ppsp .framer-bydoqs, .framer-7Ppsp .framer-b5kr2w, .framer-7Ppsp .framer-1330hxh, .framer-7Ppsp .framer-10lq6gg, .framer-7Ppsp .framer-1p52ab8, .framer-7Ppsp .framer-1ozthkn, .framer-7Ppsp .framer-50t1pf, .framer-7Ppsp .framer-1f7gxda, .framer-7Ppsp .framer-r5yhah, .framer-7Ppsp .framer-y1cusq, .framer-7Ppsp .framer-17h38kk, .framer-7Ppsp .framer-1rs78dl { gap: 3px; } .framer-7Ppsp .framer-5swblh, .framer-7Ppsp .framer-1s58b2f { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: center; padding: 0px 20px 0px 20px; } .framer-7Ppsp .framer-1iasw4f-container, .framer-7Ppsp .framer-1yhpn0f-container, .framer-7Ppsp .framer-1p2nk6x-container, .framer-7Ppsp .framer-1ivg8n0-container, .framer-7Ppsp .framer-1qvbcp7-container { align-self: unset; height: auto; } .framer-7Ppsp .framer-15v0mys, .framer-7Ppsp .framer-15q2bon, .framer-7Ppsp .framer-1xfqqiz { gap: 40px; } .framer-7Ppsp .framer-jhpyxp, .framer-7Ppsp .framer-bot2as, .framer-7Ppsp .framer-i4ue09, .framer-7Ppsp .framer-1wrmeea, .framer-7Ppsp .framer-1cnizgz, .framer-7Ppsp .framer-9sq1uy, .framer-7Ppsp .framer-k3ep9y, .framer-7Ppsp .framer-ib2y4y, .framer-7Ppsp .framer-19p65fw, .framer-7Ppsp .framer-g5hg3r, .framer-7Ppsp .framer-mmd3fm, .framer-7Ppsp .framer-1fdup7y, .framer-7Ppsp .framer-zoxce, .framer-7Ppsp .framer-1va5l0d, .framer-7Ppsp .framer-lpatr9 { padding: 0px 30px 0px 30px; } .framer-7Ppsp .framer-x9y70b { flex-direction: column; gap: 43px; } .framer-7Ppsp .framer-1cuhzti, .framer-7Ppsp .framer-13goxiy, .framer-7Ppsp .framer-1im8r2i { flex: none; gap: 32px; width: 100%; } .framer-7Ppsp .framer-208ma4 { gap: 12px; } .framer-7Ppsp .framer-eu8ig, .framer-7Ppsp .framer-1dr13n1 { gap: 70px; padding: 20px 0px 0px 0px; } .framer-7Ppsp .framer-1a25acp { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 70px; padding: 0px 30px 0px 30px; } .framer-7Ppsp .framer-9d8uac { flex: none; height: var(--framer-aspect-ratio-supported, 107px); order: 0; width: 100%; } .framer-7Ppsp .framer-p2k6uz { flex: none; max-width: 460px; order: 1; width: 100%; } .framer-7Ppsp .framer-1c41714 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 30px; } .framer-7Ppsp .framer-2lovxa-container, .framer-7Ppsp .framer-81z7yn-container { order: 0; } .framer-7Ppsp .framer-11btonb { gap: 40px 20px; } .framer-7Ppsp .framer-18gk628, .framer-7Ppsp .framer-486fiq, .framer-7Ppsp .framer-3yov4u, .framer-7Ppsp .framer-12ls9eb, .framer-7Ppsp .framer-1uovql5, .framer-7Ppsp .framer-mcdtz9 { flex-direction: column; } .framer-7Ppsp .framer-ouhq3j, .framer-7Ppsp .framer-5w8zlr { padding: 70px 0px 100px 0px; } .framer-7Ppsp .framer-lo0o6n-container, .framer-7Ppsp .framer-krmmsi-container, .framer-7Ppsp .framer-ygmt3f-container, .framer-7Ppsp .framer-tzks8h-container, .framer-7Ppsp .framer-g1fmey-container, .framer-7Ppsp .framer-1ce0o1h-container, .framer-7Ppsp .framer-4r3gnr-container, .framer-7Ppsp .framer-h9xabr-container { align-self: unset; height: var(--framer-aspect-ratio-supported, 113px); } .framer-7Ppsp .framer-1yk5pn0, .framer-7Ppsp .framer-1pepbmc { gap: 70px; } .framer-7Ppsp .framer-uulf7u { flex-direction: column; gap: 70px; padding: 0px 30px 0px 30px; } .framer-7Ppsp .framer-162dm7o { flex: none; gap: 40px; max-width: unset; order: 0; width: 100%; } .framer-7Ppsp .framer-1eav9w2 { align-content: center; align-items: center; } .framer-7Ppsp .framer-coxtid-container { flex: none; height: 239px; max-width: unset; order: 1; width: 100%; } .framer-7Ppsp .framer-xdnwkp, .framer-7Ppsp .framer-1prd7b3 { gap: 100px; padding: 70px 0px 0px 0px; } .framer-7Ppsp .framer-13oyhdf { padding: 0px 30px 20px 30px; } .framer-7Ppsp .framer-1yd1ong { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-7Ppsp .framer-zyzh85 { padding: 70px 0px 84px 0px; } .framer-7Ppsp .framer-oowj7i { flex-direction: column; padding: 30px 20px 30px 20px; } .framer-7Ppsp .framer-18jogmz, .framer-7Ppsp .framer-ix9djg, .framer-7Ppsp .framer-qbj3s8 { align-content: flex-start; align-items: flex-start; flex: none; gap: 24px; max-width: 100%; padding: 32px 0px 32px 0px; width: 100%; } .framer-7Ppsp .framer-1pushw8, .framer-7Ppsp .framer-cxbpgu, .framer-7Ppsp .framer-rlyaq5 { gap: 15px; justify-content: center; } .framer-7Ppsp .framer-1umd8fk, .framer-7Ppsp .framer-lfxvl7 { padding: 70px 0px 76px 0px; } .framer-7Ppsp .framer-13rw4ng { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; } .framer-7Ppsp .framer-p964qs-container, .framer-7Ppsp .framer-1a6nlfh-container, .framer-7Ppsp .framer-1yu4mmz-container, .framer-7Ppsp .framer-ebex0h-container, .framer-7Ppsp .framer-3zq4xe-container, .framer-7Ppsp .framer-11jcf22-container, .framer-7Ppsp .framer-180jw7-container, .framer-7Ppsp .framer-1jkwcxe-container, .framer-7Ppsp .framer-145j0vm-container, .framer-7Ppsp .framer-1vcf44r-container, .framer-7Ppsp .framer-1etxpqn-container, .framer-7Ppsp .framer-qq87jb-container, .framer-7Ppsp .framer-h0fkmn-container, .framer-7Ppsp .framer-1jfmbwa-container, .framer-7Ppsp .framer-1oj7b7r-container, .framer-7Ppsp .framer-r7dydm-container, .framer-7Ppsp .framer-1w5qeyz-container, .framer-7Ppsp .framer-3lsr02-container, .framer-7Ppsp .framer-r1hq8c-container, .framer-7Ppsp .framer-142ttzn-container, .framer-7Ppsp .framer-10zwcxn-container, .framer-7Ppsp .framer-5ka544-container, .framer-7Ppsp .framer-1f5vw6y-container, .framer-7Ppsp .framer-tvwfiw-container, .framer-7Ppsp .framer-343bk7-container, .framer-7Ppsp .framer-9gwf41-container, .framer-7Ppsp .framer-1f7bad7-container, .framer-7Ppsp .framer-ahhmgn-container, .framer-7Ppsp .framer-15xnk82-container, .framer-7Ppsp .framer-1y4k04a-container, .framer-7Ppsp .framer-lxieww-container, .framer-7Ppsp .framer-18tsem9-container, .framer-7Ppsp .framer-31xgte-container, .framer-7Ppsp .framer-1pm7zfl-container, .framer-7Ppsp .framer-wlqtg7-container, .framer-7Ppsp .framer-ptdlb8-container, .framer-7Ppsp .framer-1a3k0lm-container, .framer-7Ppsp .framer-40kjj8-container, .framer-7Ppsp .framer-1e9ktpa-container, .framer-7Ppsp .framer-1pit25t-container, .framer-7Ppsp .framer-eii6vh-container, .framer-7Ppsp .framer-1j8d9u3-container, .framer-7Ppsp .framer-17pxtuy-container, .framer-7Ppsp .framer-1224xrk-container, .framer-7Ppsp .framer-nibbup-container, .framer-7Ppsp .framer-1jocrb5-container, .framer-7Ppsp .framer-vfbo56-container, .framer-7Ppsp .framer-12re7ce-container, .framer-7Ppsp .framer-1oql7a9-container, .framer-7Ppsp .framer-1ynvrtq-container, .framer-7Ppsp .framer-13th8jq, .framer-7Ppsp .framer-t49unw { align-self: unset; width: 100%; } .framer-7Ppsp .framer-14ziy9f { gap: 40px; padding: 30px 20px 30px 20px; } .framer-7Ppsp .framer-1u5u1k, .framer-7Ppsp .framer-gn70ax, .framer-7Ppsp .framer-1deaa6a { gap: 40px; max-width: 100%; } .framer-7Ppsp .framer-1mvx4iq, .framer-7Ppsp .framer-1lhwez7, .framer-7Ppsp .framer-1fgu2ly, .framer-7Ppsp .framer-62po9f { flex-direction: column; gap: 30px; justify-content: center; padding: 20px; width: 100%; } .framer-7Ppsp .framer-gyb8i3, .framer-7Ppsp .framer-e19twj, .framer-7Ppsp .framer-1697cr6, .framer-7Ppsp .framer-1hlpozd { flex: none; flex-direction: column; gap: 30px; width: 100%; } .framer-7Ppsp .framer-1ytw51y, .framer-7Ppsp .framer-1wnk5m8, .framer-7Ppsp .framer-q0usft, .framer-7Ppsp .framer-mnmix8, .framer-7Ppsp .framer-tmi1dj, .framer-7Ppsp .framer-rfahfa, .framer-7Ppsp .framer-1b5legt, .framer-7Ppsp .framer-n7gk07, .framer-7Ppsp .framer-hrcg60, .framer-7Ppsp .framer-1vjuypu, .framer-7Ppsp .framer-1tlmy67, .framer-7Ppsp .framer-1dit992, .framer-7Ppsp .framer-9opx0v, .framer-7Ppsp .framer-11xchv, .framer-7Ppsp .framer-1f2z3in, .framer-7Ppsp .framer-6zn5li, .framer-7Ppsp .framer-ldf7rs, .framer-7Ppsp .framer-u28o2r { flex: none; width: 100%; } .framer-7Ppsp .framer-5w9o1k, .framer-7Ppsp .framer-1c4pn2v, .framer-7Ppsp .framer-4ugidm, .framer-7Ppsp .framer-w8ybsg, .framer-7Ppsp .framer-rcefgx { height: var(--framer-aspect-ratio-supported, 140px); width: 100%; } .framer-7Ppsp .framer-xc0ayu { flex-direction: column; gap: 30px; justify-content: center; padding: 20px; } .framer-7Ppsp .framer-cc8jae { flex-direction: column; gap: 30px; width: 100%; } .framer-7Ppsp .framer-1etfvy { gap: 27px; padding: 100px 20px 100px 20px; } .framer-7Ppsp .framer-grml13, .framer-7Ppsp .framer-8arebz, .framer-7Ppsp .framer-1tkj37b, .framer-7Ppsp .framer-wze8me, .framer-7Ppsp .framer-i4szxe, .framer-7Ppsp .framer-1ay78u3, .framer-7Ppsp .framer-2mumrl, .framer-7Ppsp .framer-19hocmi, .framer-7Ppsp .framer-1cm0aui, .framer-7Ppsp .framer-r7g7wm, .framer-7Ppsp .framer-2l04mb, .framer-7Ppsp .framer-83sw3j, .framer-7Ppsp .framer-qd5cv2, .framer-7Ppsp .framer-1e69x33, .framer-7Ppsp .framer-unyb4y, .framer-7Ppsp .framer-ks07ga, .framer-7Ppsp .framer-p0s9w8, .framer-7Ppsp .framer-jpqbyc { width: 100%; } .framer-7Ppsp .framer-7z8hbu { flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; padding: 57px 0px 57px 0px; } .framer-7Ppsp .framer-1c241xk, .framer-7Ppsp .framer-d8tqr0 { height: min-content; padding: 20px; width: 100%; } .framer-7Ppsp .framer-1loj3ow, .framer-7Ppsp .framer-16lm216, .framer-7Ppsp .framer-j532a6, .framer-7Ppsp .framer-1tul3da { padding: 30px 20px 30px 20px; } .framer-7Ppsp .framer-1wi4u3c { gap: 0px; justify-content: center; max-width: 100%; padding: 20px; } .framer-7Ppsp .framer-iz8gqt { flex-direction: column; gap: 30px; justify-content: center; } .framer-7Ppsp .framer-12p2mvk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; width: 100%; } .framer-7Ppsp .framer-qp6ymg-container, .framer-7Ppsp .framer-37kzla-container, .framer-7Ppsp .framer-qihf3r-container { align-self: unset; } .framer-7Ppsp .framer-1wxy2tw { padding: 0px 20px 0px 20px; width: 100%; } .framer-7Ppsp .framer-1u8c9m6, .framer-7Ppsp .framer-ciarrr { gap: 94px; } .framer-7Ppsp .framer-qf0opf { gap: 13px; } .framer-7Ppsp .framer-1po4doe { flex-direction: column; height: 205px; } .framer-7Ppsp .framer-170u6un { align-self: unset; flex: none; flex-direction: column; gap: 48px; height: min-content; width: 100%; } .framer-7Ppsp .framer-6j17ga, .framer-7Ppsp .framer-1b15f1o { flex-direction: column; width: 100%; } .framer-7Ppsp .framer-b6ajrm, .framer-7Ppsp .framer-66z24l { flex: none; gap: 3px; width: 100%; } .framer-7Ppsp .framer-of5exq { flex: none; flex-direction: column; gap: 42px; width: 100%; } .framer-7Ppsp .framer-1utmozw, .framer-7Ppsp .framer-1730w37 { max-width: unset; } .framer-7Ppsp .framer-lzsapi, .framer-7Ppsp .framer-yn60r6, .framer-7Ppsp .framer-1nsl8cj { max-width: 100%; } .framer-7Ppsp .framer-q07fwy { flex-direction: column; padding: 10px 20px 0px 20px; width: 100%; } .framer-7Ppsp .framer-1q9a1g4 { flex: none; flex-direction: column; gap: 46px; width: 100%; } .framer-7Ppsp .framer-16mxa55 { flex-direction: column; height: var(--framer-aspect-ratio-supported, 187px); } .framer-7Ppsp .framer-1hvz8wx { gap: 21px; } .framer-7Ppsp .framer-f9ohxg, .framer-7Ppsp .framer-1j7jvvr { flex-direction: column; padding: 0px 20px 0px 20px; width: 100%; } .framer-7Ppsp .framer-s2nyl1 { flex: none; flex-direction: column; gap: 57px; width: 100%; } .framer-7Ppsp .framer-1v4ii4h { align-content: center; align-items: center; gap: 32px; } .framer-7Ppsp .framer-101b8t4 { padding: 30px 20px 60px 20px; } .framer-7Ppsp .framer-k1gpgz { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: center; } .framer-7Ppsp .framer-9zsu94 { flex: none; padding: 0px 20px 0px 20px; width: 100%; } .framer-7Ppsp .framer-eugzl9 { aspect-ratio: unset; flex-direction: column; gap: 12px; height: min-content; } .framer-7Ppsp .framer-1dwr11e { flex-direction: column; gap: 12px; } .framer-7Ppsp .framer-1nmomjh { flex-direction: column; gap: 30px; justify-content: flex-start; padding: 20px; } .framer-7Ppsp .framer-esvka7 { width: 347px; } .framer-7Ppsp .framer-1qowd4i { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 350px); min-height: unset; width: 350px; } .framer-7Ppsp .framer-1ok8n0y { flex-direction: column; padding: 20px; } .framer-7Ppsp .framer-1ok2lkh { flex: none; flex-direction: column; padding: 20px; width: 90%; } .framer-7Ppsp .framer-167nfty, .framer-7Ppsp .framer-b7ky3d { flex: 1 0 0px; flex-direction: column; width: 1px; } .framer-7Ppsp .framer-eh5pw3, .framer-7Ppsp .framer-19n9dom, .framer-7Ppsp .framer-1qtbhnw { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; } .framer-7Ppsp .framer-1fjasti { flex: none; height: 274px; min-height: unset; width: 100%; } .framer-7Ppsp .framer-11qcbu0 { gap: 67px; padding: 132px 0px 31px 0px; } .framer-7Ppsp .framer-uf3din, .framer-7Ppsp .framer-1jc4u5q { order: 1; width: 100%; } .framer-7Ppsp .framer-6pd7ed { gap: 68px; justify-content: flex-start; padding: 36px 10px 36px 10px; } .framer-7Ppsp .framer-1n4p03d { flex-direction: column; gap: 44px; justify-content: flex-start; width: 100%; } .framer-7Ppsp .framer-1clp326, .framer-7Ppsp .framer-ctxcbv-container, .framer-7Ppsp .framer-1yisl5-container, .framer-7Ppsp .framer-1g3qxhw-container, .framer-7Ppsp .framer-7aty4c-container { flex: 1 0 0px; width: 1px; } .framer-7Ppsp .framer-28bjku, .framer-7Ppsp .framer-f8szoj, .framer-7Ppsp .framer-wwlbr7 { height: 202px; width: 100%; } .framer-7Ppsp .framer-jf4cpx { flex-direction: column; justify-content: flex-start; width: 100%; } .framer-7Ppsp .framer-cnawz9 { order: 1; padding: 84px 0px 84px 0px; width: 100%; } .framer-7Ppsp .framer-1e7qq9q { height: auto; width: 100%; } .framer-7Ppsp .framer-1iupt52 { order: 0; width: 100%; } .framer-7Ppsp .framer-x6a6x9 { flex-direction: column; gap: 36px; width: 100%; } .framer-7Ppsp .framer-1kff5cb { flex: none; flex-direction: column; gap: 62px; width: 100%; } .framer-7Ppsp .framer-ed155y { gap: 20px; } .framer-7Ppsp .framer-fk2krn { aspect-ratio: 1.0683333333333334 / 1; flex-direction: column; height: var(--framer-aspect-ratio-supported, 187px); width: 100%; } .framer-7Ppsp .framer-d9qesg-container, .framer-7Ppsp .framer-oz8ysa-container { flex: 1 0 0px; height: 1px; } .framer-7Ppsp .framer-jh28sb { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-7Ppsp .framer-1jpvr34, .framer-7Ppsp .framer-1unvkif, .framer-7Ppsp .framer-1dedbk3, .framer-7Ppsp .framer-ixsjja { align-self: unset; height: min-content; } .framer-7Ppsp .framer-ijxjbc, .framer-7Ppsp .framer-tbidpx, .framer-7Ppsp .framer-5jovud, .framer-7Ppsp .framer-1lmlsxb { padding: 0px 20px 50px 20px; } .framer-7Ppsp .framer-ugas46 { padding: 96px 20px 0px 20px; } .framer-7Ppsp .framer-czchc3, .framer-7Ppsp .framer-x3nwyg, .framer-7Ppsp .framer-6gwzaq, .framer-7Ppsp .framer-1u3ouk2, .framer-7Ppsp .framer-x4r2jj, .framer-7Ppsp .framer-ro9f7j { padding: 20px; } .framer-7Ppsp .framer-ggmt3k { flex: 1 0 0px; height: 331px; width: 1px; } .framer-7Ppsp .framer-1j33pl5-container { aspect-ratio: 1.0032786885245901 / 1; height: var(--framer-aspect-ratio-supported, 199px); } .framer-7Ppsp .framer-1m4pii4 { flex-direction: column; padding: 0px 20px 0px 20px; } .framer-7Ppsp .framer-17z9l8u, .framer-7Ppsp .framer-lsv2zn, .framer-7Ppsp .framer-c39xnc, .framer-7Ppsp .framer-15maqfr, .framer-7Ppsp .framer-1954yc0 { max-width: 500px; } .framer-7Ppsp .framer-hkh8sx { align-self: unset; flex: none; height: min-content; max-width: unset; width: 100%; } .framer-7Ppsp .framer-1iry7zu, .framer-7Ppsp .framer-1qg98n9 { flex: none; height: min-content; } .framer-7Ppsp .framer-17y70q2-container, .framer-7Ppsp .framer-1oo7hwi-container { width: 90%; } .framer-7Ppsp .framer-mdjxbp, .framer-7Ppsp .framer-mwzavv, .framer-7Ppsp .framer-v4jksm { padding: 0px; } .framer-7Ppsp .framer-1b1whbg { flex-direction: column; padding: 30px 0px 81px 0px; } .framer-7Ppsp .framer-9o0z3l { flex: none; height: 359px; width: 100%; } .framer-7Ppsp .framer-1va6v74 { flex-direction: column; gap: 12px; padding: 10px 0px 81px 0px; } .framer-7Ppsp .framer-1m8sldg { flex: none; height: 282px; width: 100%; } .framer-7Ppsp .framer-1ghph4b { flex-direction: column; padding: 71px 0px 81px 0px; } .framer-7Ppsp .framer-1dtv5vs, .framer-7Ppsp .framer-10w7466 { flex: none; order: 1; width: 100%; } .framer-7Ppsp .framer-qya42h { flex: none; height: 281px; order: 0; width: 100%; } .framer-7Ppsp .framer-1uxxlpx { flex-direction: column; gap: 57px; } .framer-7Ppsp .framer-2vgy4r { flex: none; height: 279px; order: 0; width: 100%; } .framer-7Ppsp .framer-10qc7qh { gap: 16px; } .framer-7Ppsp .framer-gwttey { flex-direction: column; gap: 51px; } .framer-7Ppsp .framer-sr0obc { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 132px); width: 100%; } .framer-7Ppsp .framer-1hl6yx1 { flex: none; max-width: unset; width: 100%; } .framer-7Ppsp .framer-6dvk03 { gap: 30px; justify-content: center; } .framer-7Ppsp .framer-244bvm { flex-direction: column; gap: 40px; justify-content: center; } .framer-7Ppsp .framer-1pt4il1 { height: var(--framer-aspect-ratio-supported, 157px); justify-content: center; width: 100%; } .framer-7Ppsp .framer-1e4c873 { height: var(--framer-aspect-ratio-supported, 200px); } .framer-7Ppsp .framer-1a6grtx { align-content: center; align-items: center; flex: none; gap: 30px; justify-content: center; width: 100%; } .framer-7Ppsp .framer-1449ff7 { align-content: center; align-items: center; justify-content: center; } .framer-7Ppsp .framer-1yjrj0u { flex-direction: column; gap: 40px; } .framer-7Ppsp .framer-12t3csl { flex: none; gap: 20px; width: 100%; } .framer-7Ppsp .framer-1yrxhx1 { gap: 15px; } .framer-7Ppsp .framer-1mdej2p { gap: 10px; } .framer-7Ppsp .framer-2n7v5z { height: var(--framer-aspect-ratio-supported, 238px); width: 100%; } .framer-7Ppsp .framer-1q04lsv { align-content: flex-start; align-items: flex-start; gap: 70px; padding: 0px 20px 0px 20px; } .framer-7Ppsp .framer-10mhoms { max-width: 460px; order: 0; } .framer-7Ppsp .framer-11t6kgv { order: 2; } .framer-7Ppsp .framer-zbytr4 { flex-direction: column; gap: 40px; padding: 0px 30px 0px 30px; } .framer-7Ppsp .framer-r6sj4t { flex: none; max-width: 460px; order: 0; width: 100%; } .framer-7Ppsp .framer-1hb3fx3-container { flex: none; max-width: unset; order: 1; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48967.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"euNp7MUYv\":{\"layout\":[\"fixed\",\"auto\"]},\"nWzKj3W9V\":{\"layout\":[\"fixed\",\"auto\"]},\"QvtLBAi1h\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"AEgEFBaeQ\":{\"pattern\":\":AEgEFBaeQ\",\"name\":\"testimonials\"},\"o0iN1zqMr\":{\"pattern\":\":o0iN1zqMr\",\"name\":\"get-started\"},\"goOlR_7hX\":{\"pattern\":\":goOlR_7hX\",\"name\":\"case\"},\"q5ElvtMno\":{\"pattern\":\":q5ElvtMno\",\"name\":\"calendly\"},\"tIMLpB5Xx\":{\"pattern\":\":tIMLpB5Xx\",\"name\":\"faq\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-7Ppsp\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:48967.5,width:1440};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:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v8/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v14/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAC5thS2f3ZGMZpg.woff2\",weight:\"900\"},{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v19/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v19/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_A87jxeN7B.woff2\",weight:\"400\"}]},...ButtonPrimaryButtonFonts,...PhosphorFonts,...TickerFonts,...TagPrimaryTagFonts,...CardFeatureCardFonts,...NumberCounterFonts,...YouTubeFonts,...CardProcessCardFonts,...CardAboutCardFonts,...CardConsultationCardFonts,...Ticker1Fonts,...YoutubeCard2Fonts,...Phosphor1Fonts,...FeatureWidgetFonts,...BlogBlogSingleCardFonts,...ButtonContactButtonFonts,...BeforeAfterFonts,...BeforeAfter1Fonts,...TagPrimaryTagLiveFonts,...SimplecastFonts,...EmbedFonts,...FAQFAQFonts,...NewsletterFonts,...FixedReviewFonts,...InteractiveComponentsCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"AEgEFBaeQ\\\":{\\\"pattern\\\":\\\":AEgEFBaeQ\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"o0iN1zqMr\\\":{\\\"pattern\\\":\\\":o0iN1zqMr\\\",\\\"name\\\":\\\"get-started\\\"},\\\"goOlR_7hX\\\":{\\\"pattern\\\":\\\":goOlR_7hX\\\",\\\"name\\\":\\\"case\\\"},\\\"q5ElvtMno\\\":{\\\"pattern\\\":\\\":q5ElvtMno\\\",\\\"name\\\":\\\"calendly\\\"},\\\"tIMLpB5Xx\\\":{\\\"pattern\\\":\\\":tIMLpB5Xx\\\",\\\"name\\\":\\\"faq\\\"}}\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"euNp7MUYv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nWzKj3W9V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QvtLBAi1h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"48967.5\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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AK,QAC3B,CAAC,EAAmBa,GAAGb,EAAGW,CAAC,CAAC,CAC9B,CAAC,EACD,OAAOhB,EAAE,YAAcX,IAAM,OAASA,EAAI,WAAa,OAAOP,GAAK,SAAWA,EAAIA,EAAE,aAAeA,EAAE,MAAQ,aAAe,IAAKkB,EAAE,aAAeZ,EAAE,aAAcY,EAAE,eAAiBA,EAAGA,EAAE,eAAiBlB,EAAGkB,EAAE,iBAAmBH,EAAGG,EAAE,sBAAwBT,EAAG,OAAO,eAAeS,EAAG,WAAY,CACtS,MAAO,UAAW,CAChB,MAAyF,IAAMV,CACjG,CACF,CAAC,EAAGU,EAAE,cAAgB,SAASE,EAAGC,EAAG,CACnC,OAAOhB,EAAEe,EAAGiB,GAAG,CAAC,EAAGvC,EAAGuB,EAAG,CACvB,kBAAmBX,GAAGQ,EAAGG,EAAG,EAAE,CAChC,CAAC,CAAC,EAAE,MAAM,OAAQN,CAAC,CACrB,EAAGG,CACL,CACF,EAAGoB,GAAK,CACN,IACA,OACA,UACA,OACA,UACA,QACA,QACA,IACA,OACA,MACA,MACA,MACA,aACA,OACA,KACA,SACA,SACA,UACA,OACA,OACA,MACA,WACA,OACA,WACA,KACA,MACA,UACA,MACA,SACA,MACA,KACA,KACA,KACA,QACA,WACA,aACA,SACA,SACA,OACA,KACA,KACA,KACA,KACA,KACA,KACA,OACA,SACA,SACA,KACA,OACA,IACA,SACA,MACA,QACA,MACA,MACA,SACA,QACA,SACA,KACA,OACA,OACA,MACA,OACA,UACA,OACA,WACA,OACA,QACA,MACA,WACA,SACA,KACA,WACA,SACA,SACA,IACA,QACA,UACA,MACA,WACA,IACA,KACA,KACA,OACA,IACA,OACA,SACA,UACA,SACA,QACA,SACA,OACA,SACA,QACA,MACA,UACA,MACA,QACA,QACA,KACA,WACA,QACA,KACA,QACA,OACA,QACA,KACA,QACA,IACA,KACA,MACA,QACA,MAEA,SACA,WACA,OACA,UACA,gBACA,IACA,QACA,OACA,iBACA,OACA,OACA,UACA,UACA,WACA,iBACA,OACA,OACA,MACA,OACA,OACF,EAAG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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "Re", "jt", "e", "le", "Rr", "Lt", "r", "n", "a", "i", "s", "l", "u", "d", "g", "f", "v", "C", "T", "e", "Lt", "jt", "L", "Re", "Br", "ze", "r", "n", "a", "Hr", "Ft", "Mt", "Wt", "zt", "Yt", "i", "s", "l", "j", "Oe", "_", "He", "Ge", "Je", "Ut", "Gr", "qt", "Ce", "Bt", "Ht", "$", "Jr", "Gt", "S", "Ye", "de", "B", "Xe", "xe", "Jt", "Te", "ie", "Xr", "M", "I", "oe", "Pe", "fe", "Xt", "Kt", "W", "H", "we", "me", "pe", "Kr", "Zr", "_e", "Ue", "Zt", "Qt", "en", "rn", "tn", "Se", "u", "d", "g", "f", "v", "C", "T", "x", "h", "O", "E", "p", "P", "q", "D", "V", "R", "nn", "Cr", "kr", "ae", "an", "on", "sn", "cn", "ln", "un", "Tr", "fn", "dn", "et", "e", "r", "Ht", "_", "Oe", "j", "S", "B", "$", "Ye", "bn", "n", "a", "i", "Je", "Gr", "ae", "fe", "Ge", "Jt", "s", "Gt", "yn", "En", "h", "O", "l", "u", "E", "d", "g", "fn", "dn", "f", "v", "an", "sn", "C", "on", "T", "tn", "p", "P", "x", "Yt", "xn", "rt", "Ke", "tt", "wn", "_n", "Rn", "nt", "Ze", "Ar", "Me", "Hr", "e", "ke", "n", "a", "i", "s", "U", "_n", "he", "e", "r", "n", "U", "a", "i", "Nn", "s", "l", "u", "d", "g", "Ar", "Me", "ke", "$r", "U", "qe", "n", "a", "i", "s", "l", "he", "u", "d", "$r", "g", "f", "v", "wn", "An", "In", "ie", "ot", "$n", "Qe", "z", "En", "st", "Y", "re", "er", "Ln", "Mt", "Vn", "Lr", "Vr", "n", "a", "i", "s", "l", "Fn", "n", "a", "i", "Ke", "ot", "tt", "Mn", "e", "r", "s", "l", "u", "Vr", "d", "Lr", "g", "f", "v", "C", "T", "x", "st", "h", "O", "E", "p", "P", "q", "D", "V", "re", "er", "rt", "R", "qe", "Ne", "K", "Q", "B", "ze", "Wn", "z", "zn", "Br", "Yn", "L", "Un", "qn", "Bn", "Hn", "Gn", "pe", "ue", "Jn", "Wr", "zr", "Xn", "Mr", "Zn", "Kn", "Qn", "ea", "ye", "X", "ta", "na", "addPropertyControls", "BeforeAfter", "ta", "props", "p", "na", "Component", "House_default", "React", "weights", "House", "props", "ref", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "ButtonPrimaryButtonFonts", "GNvaONxX6_default", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "icon", "id", "padding", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "MDnAmdwHw", "qXT0C0aT_", "AHckVUVc2", "gYnJmHWHb", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "ResolveLinks", "resolvedLinks", "css", "Framerb8qvm_XpH", "withCSS", "b8qvm_XpH_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "r", "s", "o", "n", "t", "e", "i", "l", "iconKeys", "moduleBaseUrl", "uppercaseIconKeys", "name", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "s", "npm_react_18_2_exports", "importModule", "active", "module", "e", "ue", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "FeatherFonts", "getFonts", "Icon", "FeatherControls", "getPropertyControls", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "radiusForCorner", "cornerIndex", "segments", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "background", "border", "borderHover", "click", "color", "color1", "gapBetween", "height", "hover", "hoverBG", "hoverText", "icon", "icon1", "id", "leftIcon", "onHover", "onHover1", "padding", "radius", "rightIcon", "text", "text1", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Pn3hutrG4", "yPtz4F1S4", "WSrj4xXMs", "CtQpOUQ1_", "iV0HO3a2q", "vunRB1fnm", "IkzY64T_e", "ey9xsi0og", "GBMDuPoJG", "LFzMfF88n", "NSKJbcdIB", "C0r82MLJr", "pUO0U4n2S", "THhOdmXed", "iIzfEdxZY", "wr7wfl6G2", "mJhvMHYEF", "zhtCNCTQz", "EGLpWafNn", "nxtJ82G9s", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ng7a27", "args", "onMouseEntert2gvso", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "css", "FramerxqxwjckIG", "withCSS", "xqxwjckIG_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "ComponentButtonFonts", "getFonts", "xqxwjckIG_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "link", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "eRXpdnZKZ", "VWcrWhUyS", "wl8EAW9iO", "rywAnDLkY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerEB78TtOt_", "withCSS", "EB78TtOt_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "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", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear147zwbn", "args", "onAppear19s9xfh", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "css", "FramerzvKbYC0Od", "withCSS", "zvKbYC0Od_default", "addPropertyControls", "ControlType", "addFonts", "BulletPointFonts", "getFonts", "zvKbYC0Od_default", "MotionDivWithFX", "withFX", "motion", "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", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "zvKbYC0Od_default", "RichText", "MotionDivWithFX", "css", "Framerm4VVEPNmb", "withCSS", "m4VVEPNmb_default", "addFonts", "BulletPointFonts", "getFontsFromSharedStyle", "fonts", "ButtonPrimaryButtonFonts", "getFonts", "GNvaONxX6_default", "BeforeAfterFonts", "BeforeAfter", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "animation", "transition2", "animation1", "transition3", "textEffect", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "Ni9YzzpUb1eecerp", "args", "Ni9YzzpUb1ndgxja", "Ni9YzzpUb2bj7qc", "Ni9YzzpUbjn3uq8", "Ni9YzzpUbz6jnyk", "Ni9YzzpUbxuuzxq", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerokWhwsiak", "withCSS", "okWhwsiak_default", "addPropertyControls", "ControlType", "addFonts", "YouTubeFonts", "getFonts", "Youtube", "ImageWithFX", "withFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "animation", "transition2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "logoImage", "subTitle", "title", "video", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ryerV11KR", "z27LqGa7Y", "w9GS3W6Sr", "lPPOOL5ct", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLoadingLazyAtYPosition", "SVG", "RichText", "css", "FramerUqb4T5RRv", "withCSS", "Uqb4T5RRv_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonContactButtonFonts", "getFonts", "ROAZLEJAK_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "formVariants", "form", "currentVariant", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "ltC_t6Nme8xis0e", "args", "onTap1ce8u43", "sharedStyleClassNames", "isDisplayed", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "RichText", "FormContainer", "formState", "l", "FormPlainTextInput2", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "css", "FramervpXpYM35p", "withCSS", "vpXpYM35p_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "YouTubeFonts", "getFonts", "Youtube", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "name1", "review", "videoLink", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "tdW60sEoV", "acQko3Vb3", "T8l6ikqIq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "MotionDivWithFXWithOptimizedAppearEffect", "ComponentViewportProvider", "SmartComponentScopedContainer", "Youtube", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramermkuzLWTgX", "withCSS", "mkuzLWTgX_default", "addPropertyControls", "ControlType", "addFonts", "YouTubeFonts", "HeroReviewCardFonts", "getFonts", "mkuzLWTgX_default", "SlideshowFonts", "Slideshow", "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", "ComponentViewportProvider", "SmartComponentScopedContainer", "Slideshow", "mkuzLWTgX_default", "css", "FramerZOHrKWkPd", "withCSS", "ZOHrKWkPd_default", "addFonts", "HeroReviewCardFonts", "SlideshowFonts", "fontStore", "fonts", "css", "className", "ButtonPrimaryButtonFonts", "getFonts", "GNvaONxX6_default", "PhosphorFonts", "Icon", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "TickerFonts", "Ticker", "TagPrimaryTagFonts", "IHYC0Q7Lw_default", "CardFeatureCardFonts", "aVNCbnCZn_default", "NumberCounterFonts", "NumberCounter", "MotionDivWithFX", "withFX", "YouTubeFonts", "Youtube", "CardProcessCardFonts", "b8qvm_XpH_default", "ContainerWithFX", "Container", "CardAboutCardFonts", "ms2G8Wp92_default", "CardConsultationCardFonts", "DzWG2ePx4_default", "Ticker1Fonts", "YoutubeCard2Fonts", "Uqb4T5RRv_default", "Phosphor1Fonts", "FeatureWidgetFonts", "EB78TtOt_default", "MotionAWithFX", "BlogBlogSingleCardFonts", "KtVf94LV_default", "MotionHeaderWithFX", "ButtonContactButtonFonts", "ROAZLEJAK_default", "BeforeAfterFonts", "BeforeAfter", "BeforeAfter1Fonts", "okWhwsiak_default", "TagPrimaryTagLiveFonts", "m4VVEPNmb_default", "SimplecastFonts", "Simplecast", "EmbedFonts", "Embed", "FAQFAQFonts", "tAU8hAZZK_default", "NewsletterFonts", "vpXpYM35p_default", "ContainerWithOptimizedAppearEffect", "FixedReviewFonts", "ZOHrKWkPd_default", "InteractiveComponentsCursorFonts", "RMpAvj7R1_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "textEffect", "textEffect1", "addImageAlt", "image", "alt", "animation3", "transition3", "transition4", "animation4", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation5", "transition5", "animation6", "transition6", "transformTemplate1", "_", "t", "animation7", "animation8", "sharedDateFormatter", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "formVariants", "form", "variants", "currentVariant", "animation9", "transition7", "animation10", "transition8", "animation11", "transformTemplate2", "transition9", "animation12", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "dFDcF1wOrq4_WTQmAI", "xLZiRq4JMq4_WTQmAI", "FWAhBi6Vjq4_WTQmAI", "hVHwPyywIq4_WTQmAI", "ci15sXoHaq4_WTQmAI", "idq4_WTQmAI", "zucQ2lYw5Yhn6xP9ti", "iwOaZHlgxYhn6xP9ti", "T52KCtq91Yhn6xP9ti", "gOvUDDoChYhn6xP9ti", "idYhn6xP9ti", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "elementId", "useRouteElementId", "ref1", "activeLocaleCode", "useLocaleCode", "elementId1", "ref2", "elementId2", "ref3", "isDisplayed1", "elementId3", "ref4", "elementId4", "ref5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "SVG", "x", "RichText", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Image2", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "ChildrenCanSuspend", "yoco0NHMS_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "BUGTPjXwz_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "FormContainer", "formState", "FormPlainTextInput2", "FormSelect", "resolvedLinks14", "resolvedLinks15", "resolvedLinks16", "resolvedLinks17", "resolvedLinks18", "resolvedLinks19", "resolvedLinks20", "resolvedLinks21", "resolvedLinks22", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
