{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/16XzYD3gUDLQcTIHPEe8/o47W0NXLuJcigvaM6ALo/Counter1.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.18.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/o7nGOgZUy139vOQgAWnr/yQIwg0dcHGB9UFCPgaEP/nAlVyBz5_.js", "ssg:https://framerusercontent.com/modules/nVsmY0c5yjD4oFRUWtPw/5qu4LEhAi5yheYBpIpcQ/XtMMPCQNR.js", "ssg:https://framerusercontent.com/modules/gh0SZltySv5GkbGNiHk1/EZ3Zy5iVVs5E5NCMT1Kg/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const CounterStyles={container:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"}};export function Counter(props){const{start,end,speed,gapSize,prefixText,suffixText,prefixFont,suffixFont,prefixColor,suffixColor,loop,decimalSeparatorType,textSize,selectedFont,textColor,startOnViewport,restartOnViewport,incrementType}=props;const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);useEffect(()=>{const updateCount=()=>{const increment=incrementType===\"integer\"?1:.1;setCount(prevCount=>{const nextCount=parseFloat((prevCount+increment).toFixed(2));return nextCount>=end?end:nextCount;});};if(isVisible||!startOnViewport&&start!==end){const intervalId=setInterval(updateCount,speed);return()=>{clearInterval(intervalId);};}else if(startOnViewport&&isVisible){setCount(start);}},[count,start,end,loop,isVisible,speed,startOnViewport,incrementType]);useEffect(()=>{if(restartOnViewport&&isVisible){setCount(start)// Restart the animation when re-entering the viewport\n;}},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparatorType===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(incrementType===\"integer\"?0:1);}};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...CounterStyles.container,gap:`${gapSize}px`,flexDirection:\"row\",alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor},children:[/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont.fontFamily,fontWeight:prefixFont.fontWeight,color:prefixColor},children:prefixText}),/*#__PURE__*/_jsx(\"span\",{children:formatNumber(count)}),/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont.fontFamily,fontWeight:suffixFont.fontWeight,color:suffixColor},children:suffixText})]});}Counter.defaultProps={start:0,end:100,speed:100,prefixText:\"\",suffixText:\"\",loop:false,decimalSeparatorType:\"comma\",textSize:36,selectedFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor:\"#D3D3D3\",startOnViewport:false,incrementType:\"integer\"};addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},selectedFont:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},textSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:240,step:1},textColor:{type:ControlType.Color,title:\"Font Color\"},start:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Decimal (1.000)\",\"None\"]},incrementType:{type:ControlType.Enum,title:\"Increment Type\",defaultValue:\"integer\",options:[\"integer\",\"decimal\"],optionTitles:[\"Integer\",\"Decimal\"]},prefixText:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},prefixFont:{title:\"Prefix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},prefixColor:{type:ControlType.Color,title:\"Prefix Color\"},suffixText:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},suffixFont:{title:\"Suffix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},suffixColor:{type:ControlType.Color,title:\"Suffix Color\"},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100,step:4},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3,step:10},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",description:\"[Built by Asif Kabir](https://www.youtube.com/channel/UCujbStV-Rp-QGfiHOKA9AvA)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"Counter\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter1.map", "function addUniqueItem(t,e){t.indexOf(e)===-1&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>typeof t===\"number\";const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>typeof t===\"object\"&&Boolean(t.createAnimation);const isFunction=t=>typeof t===\"function\";const isString=t=>typeof t===\"string\";const e={ms:t=>t*1e3,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n//# sourceMappingURL=index.es.js.map\n", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "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", "// Generated by Framer (03f754e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={vbf7XIxIw:{hover:true}};const serializationHash=\"framer-A300W\";const variantClassNames={vbf7XIxIw:\"framer-v-1xsagad\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,hover,id,link,width,...props})=>{return{...props,hq_LiJhy_:link!==null&&link!==void 0?link:props.hq_LiJhy_,YcCi4qMpZ:hover!==null&&hover!==void 0?hover:props.YcCi4qMpZ};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,YcCi4qMpZ,hq_LiJhy_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"vbf7XIxIw\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1mixrna=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(YcCi4qMpZ){const res=await YcCi4qMpZ(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:hq_LiJhy_,nodeId:\"vbf7XIxIw\",openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1xsagad\",className,classNames)} framer-1f8zoom`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vbf7XIxIw\",onTap:onTap1mixrna,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(250, 196, 20)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 0px 37.68000030517578px 0px rgba(250, 197, 21, 0.6000000238418579)\",...style},variants:{\"vbf7XIxIw-hover\":{backgroundColor:\"rgb(251, 211, 80)\"}},...addPropertyOverrides({\"vbf7XIxIw-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1154n65\",\"data-framer-name\":\"Text padding\",layoutDependency:layoutDependency,layoutId:\"I18039:14092;1624:262069;6153:27135\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(52, 64, 83))\"},children:\"Book a Call\"})}),className:\"framer-jg415x\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],layoutDependency:layoutDependency,layoutId:\"I18039:14092;1624:262069;3287:432941\",style:{\"--extracted-r6o4lv\":\"rgb(52, 64, 83)\",\"--framer-paragraph-spacing\":\"14px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11waqiq\",\"data-framer-name\":\"phone\",layoutDependency:layoutDependency,layoutId:\"I18039:14092;1624:262069;3466:422626\",style:{rotate:0},variants:{\"vbf7XIxIw-hover\":{rotate:-4}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nxbsy4\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I18039:14092;1624:262069;3466:422626;3463:406309\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"-1 -1 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.98356 5.37767C5.56356 6.58569 6.35422 7.71789 7.35553 8.7192C8.35685 9.72052 9.48905 10.5112 10.6971 11.0912C10.801 11.1411 10.8529 11.166 10.9187 11.1852C11.1523 11.2533 11.4392 11.2044 11.637 11.0627C11.6927 11.0228 11.7403 10.9752 11.8356 10.8799C12.1269 10.5886 12.2726 10.4429 12.4191 10.3477C12.9715 9.98852 13.6837 9.98852 14.2361 10.3477C14.3825 10.4429 14.5282 10.5886 14.8196 10.8799L14.9819 11.0423C15.4248 11.4852 15.6462 11.7066 15.7665 11.9444C16.0058 12.4174 16.0058 12.976 15.7665 13.4489C15.6462 13.6867 15.4248 13.9082 14.9819 14.351L14.8506 14.4824C14.4092 14.9238 14.1886 15.1444 13.8885 15.313C13.5556 15.5 13.0385 15.6345 12.6567 15.6333C12.3126 15.6323 12.0774 15.5655 11.607 15.432C9.07917 14.7146 6.69387 13.3608 4.70388 11.3709C2.7139 9.38087 1.36017 6.99557 0.642696 4.46774C0.50919 3.99737 0.442437 3.76218 0.441413 3.41806C0.440277 3.03621 0.574745 2.51913 0.761762 2.18621C0.930302 1.88618 1.15098 1.66551 1.59233 1.22416L1.72369 1.09279C2.16656 0.649925 2.388 0.42849 2.62581 0.308203C3.09878 0.0689779 3.65734 0.0689779 4.1303 0.308203C4.36812 0.42849 4.58955 0.649924 5.03242 1.09279L5.19481 1.25518C5.48615 1.54652 5.63182 1.69219 5.72706 1.83867C6.08622 2.39108 6.08622 3.10323 5.72706 3.65564C5.63182 3.80212 5.48615 3.94779 5.19481 4.23913C5.09955 4.33439 5.05192 4.38202 5.01206 4.4377C4.87038 4.63556 4.82146 4.92244 4.88957 5.15607C4.90873 5.22181 4.93367 5.27376 4.98356 5.37767Z\" stroke=\"#344054\" stroke-width=\"1.66667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-A300W.framer-1f8zoom, .framer-A300W .framer-1f8zoom { display: block; }\",\".framer-A300W.framer-1xsagad { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 12px 14px 12px 14px; position: relative; text-decoration: none; width: min-content; }\",\".framer-A300W .framer-1154n65 { 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: visible; padding: 0px 2px 0px 2px; position: relative; width: min-content; }\",\".framer-A300W .framer-jg415x { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-A300W .framer-11waqiq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-A300W .framer-1nxbsy4 { bottom: 4px; flex: none; left: 1px; position: absolute; right: 3px; top: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-A300W.framer-1xsagad, .framer-A300W .framer-1154n65 { gap: 0px; } .framer-A300W.framer-1xsagad > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-A300W.framer-1xsagad > :first-child, .framer-A300W .framer-1154n65 > :first-child { margin-left: 0px; } .framer-A300W.framer-1xsagad > :last-child, .framer-A300W .framer-1154n65 > :last-child { margin-right: 0px; } .framer-A300W .framer-1154n65 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 136\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"G8DJk52q1\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"YcCi4qMpZ\":\"hover\",\"hq_LiJhy_\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernAlVyBz5_=withCSS(Component,css,\"framer-A300W\");export default FramernAlVyBz5_;FramernAlVyBz5_.displayName=\"Button Hero / Primary\";FramernAlVyBz5_.defaultProps={height:44,width:136};addPropertyControls(FramernAlVyBz5_,{YcCi4qMpZ:{title:\"Hover\",type:ControlType.EventHandler},hq_LiJhy_:{title:\"Link\",type:ControlType.Link}});addFonts(FramernAlVyBz5_,[{explicitInter:true,fonts:[{family:\"Syne\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6hR47NCV5Z.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernAlVyBz5_\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"44\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"G8DJk52q1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"YcCi4qMpZ\\\":\\\"hover\\\",\\\"hq_LiJhy_\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"136\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nAlVyBz5_.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={YjXBYFMvx:{hover:true}};const serializationHash=\"framer-PYSfn\";const variantClassNames={YjXBYFMvx:\"framer-v-5abcvx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const 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{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"YjXBYFMvx\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cVpZjJogm\"},nodeId:\"YjXBYFMvx\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-5abcvx\",className,classNames)} framer-9ghmt6`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"YjXBYFMvx\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(59, 59, 59)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 1px 2px 0px rgba(16, 24, 40, 0.05000000074505806)\",...style},variants:{\"YjXBYFMvx-hover\":{backgroundColor:\"rgb(48, 48, 48)\"}},...addPropertyOverrides({\"YjXBYFMvx-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wugfe3\",\"data-framer-name\":\"Text padding\",layoutDependency:layoutDependency,layoutId:\"mbBP6F0HD\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 196, 20))\"},children:\"View All Projects\"})}),className:\"framer-1d03lvd\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],layoutDependency:layoutDependency,layoutId:\"aAqL1eufi\",style:{\"--extracted-r6o4lv\":\"rgb(250, 196, 20)\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PYSfn.framer-9ghmt6, .framer-PYSfn .framer-9ghmt6 { display: block; }\",\".framer-PYSfn.framer-5abcvx { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 14px 16px 14px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-PYSfn .framer-1wugfe3 { 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: visible; padding: 0px 2px 0px 2px; position: relative; width: min-content; }\",\".framer-PYSfn .framer-1d03lvd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PYSfn.framer-5abcvx, .framer-PYSfn .framer-1wugfe3 { gap: 0px; } .framer-PYSfn.framer-5abcvx > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-PYSfn.framer-5abcvx > :first-child, .framer-PYSfn .framer-1wugfe3 > :first-child { margin-left: 0px; } .framer-PYSfn.framer-5abcvx > :last-child, .framer-PYSfn .framer-1wugfe3 > :last-child { margin-right: 0px; } .framer-PYSfn .framer-1wugfe3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",'.framer-PYSfn[data-border=\"true\"]::after, .framer-PYSfn [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 170\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"1300px\",null,null]},\"j09P2oGD2\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"1300px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXtMMPCQNR=withCSS(Component,css,\"framer-PYSfn\");export default FramerXtMMPCQNR;FramerXtMMPCQNR.displayName=\"Button/View all projects\";FramerXtMMPCQNR.defaultProps={height:52,width:170};addFonts(FramerXtMMPCQNR,[{explicitInter:true,fonts:[{family:\"Syne\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6hR47NCV5Z.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXtMMPCQNR\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"52\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1300px\\\",null,null]},\\\"j09P2oGD2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1300px\\\",null,null]}}}\",\"framerIntrinsicWidth\":\"170\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XtMMPCQNR.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Counter}from\"https://framerusercontent.com/modules/16XzYD3gUDLQcTIHPEe8/o47W0NXLuJcigvaM6ALo/Counter1.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import ButtonHeroPrimary from\"#framer/local/canvasComponent/nAlVyBz5_/nAlVyBz5_.js\";import ButtonHeroViewProjects from\"#framer/local/canvasComponent/pYfITgJrj/pYfITgJrj.js\";import NavBar from\"#framer/local/canvasComponent/qgaen2ZWh/qgaen2ZWh.js\";import ProjectCardButton from\"#framer/local/canvasComponent/SZmppmkyM/SZmppmkyM.js\";import ButtonViewAllProjects from\"#framer/local/canvasComponent/XtMMPCQNR/XtMMPCQNR.js\";import Projects from\"#framer/local/collection/RxQBQSaAj/RxQBQSaAj.js\";import*as sharedStyle4 from\"#framer/local/css/AZPIgHbo9/AZPIgHbo9.js\";import*as sharedStyle3 from\"#framer/local/css/ENoYLcjcu/ENoYLcjcu.js\";import*as sharedStyle from\"#framer/local/css/G0fq1QuG6/G0fq1QuG6.js\";import*as sharedStyle2 from\"#framer/local/css/iNavG21NM/iNavG21NM.js\";import*as sharedStyle5 from\"#framer/local/css/QV5aTcRWE/QV5aTcRWE.js\";import*as sharedStyle6 from\"#framer/local/css/X8yLCcHqP/X8yLCcHqP.js\";import*as sharedStyle7 from\"#framer/local/css/yU1S0fSQk/yU1S0fSQk.js\";import*as sharedStyle1 from\"#framer/local/css/zqAShzvtq/zqAShzvtq.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavBarFonts=getFonts(NavBar);const NavBarWithVariantAppearEffect=withVariantAppearEffect(NavBar);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const ButtonHeroViewProjectsFonts=getFonts(ButtonHeroViewProjects);const ButtonHeroPrimaryFonts=getFonts(ButtonHeroPrimary);const RichTextWithFX=withFX(RichText);const TickerFonts=getFonts(Ticker);const ProjectCardButtonFonts=getFonts(ProjectCardButton);const ButtonViewAllProjectsFonts=getFonts(ButtonViewAllProjects);const CounterFonts=getFonts(Counter);const breakpoints={qLnD6Bhgn:\"(max-width: 809px)\",Wkn4_KGI2:\"(min-width: 810px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-SXqwT\";const variantClassNames={qLnD6Bhgn:\"framer-v-1j4blxu\",Wkn4_KGI2:\"framer-v-1opd900\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const transition1={damping:80,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:80};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition1,x:0,y:50};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation6={boxShadow:\"0px 0px 38px 0px rgba(250, 197, 21, 0.55)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition3};const animation7={opacity:1,rotate:-4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:-15};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:100};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:110};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:110};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,y:-10};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:30,y:100};const transition4={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:30,y:100};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:30,y:100};const transition5={damping:80,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:30,y:100};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:150};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:120};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:120};const animation22={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,y:-7};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{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"Bj0Q_ngqf\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation23={boxShadow:\"0px 0px 14px 0px rgba(250, 197, 21, 0.25)\",opacity:1,rotate:-4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3};const animation24={backgroundColor:\"rgb(251, 211, 80)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3};const animation25={opacity:1,rotate:-4,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const animation26={backgroundColor:\"rgb(214, 165, 5)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"qLnD6Bhgn\",Tablet:\"Wkn4_KGI2\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,n2uE904pfBj0Q_ngqf,Ouvj8rwHGBj0Q_ngqf,K8EZH7g1EBj0Q_ngqf,r1t_f54kCBj0Q_ngqf,lwrCYcVZpBj0Q_ngqf,idBj0Q_ngqf,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const ref1=React.useRef(null);const elementId=useRouteElementId(\"I17927:107294;17922:24328\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"qLnD6Bhgn\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"qLnD6Bhgn\")return true;return false;};const elementId1=useRouteElementId(\"uAW0DtC4j\");const ref2=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"Wkn4_KGI2\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"Wkn4_KGI2\")return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"Wkn4_KGI2\",\"qLnD6Bhgn\"].includes(baseVariant))return false;return true;};const elementId2=useRouteElementId(\"OJ1pVrqFa\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"DqzSnJZEo\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"qiXvhcMDy\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"lyjipYUw7\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"uMptkc89c\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"u6vcKxpWd\");const ref8=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":OJ1pVrqFa\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":uAW0DtC4j\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":DqzSnJZEo\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":qiXvhcMDy\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":lyjipYUw7\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":OJ1pVrqFa\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":uAW0DtC4j\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":DqzSnJZEo\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":qiXvhcMDy\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":lyjipYUw7\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":OJ1pVrqFa\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":uAW0DtC4j\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":DqzSnJZEo\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":qiXvhcMDy\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":lyjipYUw7\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{layoutScroll:true}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-qye2y3-container\",nodeId:\"GKcO_wbO5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{__framer__targets:[{offset:20,ref:ref1,target:\"OfFZr665p\"}],BdptzJ6Hd:resolvedLinks[12],QX7fCh063:resolvedLinks[11],variant:\"inzAAG8Wr\",wunsoRT7n:resolvedLinks[13],xPe6MKt6b:resolvedLinks[14],YdGasDlq9:resolvedLinks[10]},Wkn4_KGI2:{BdptzJ6Hd:resolvedLinks[7],QX7fCh063:resolvedLinks[6],wunsoRT7n:resolvedLinks[8],xPe6MKt6b:resolvedLinks[9],YdGasDlq9:resolvedLinks[5]}},children:/*#__PURE__*/_jsx(NavBarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:20,ref:ref1,target:\"wDfhAtvJb\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,BdptzJ6Hd:resolvedLinks[2],D3I5EV5_J:true,height:\"100%\",id:\"GKcO_wbO5\",layoutId:\"GKcO_wbO5\",nqlDYERLw:true,QX7fCh063:resolvedLinks[1],style:{width:\"100%\"},variant:\"xLY13mufz\",width:\"100%\",wunsoRT7n:resolvedLinks[3],xPe6MKt6b:resolvedLinks[4],YdGasDlq9:resolvedLinks[0]})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yoc70c\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14llrot\",\"data-framer-name\":\"Hero Header Section\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:.72,className:\"framer-knuas5\",\"data-framer-name\":\"Shapes\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cdfjeq\",\"data-framer-name\":\"Shapes Group\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ylbavb\",\"data-border\":true,\"data-framer-name\":\"Rectangle 171\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xfhwjo\",\"data-border\":true,\"data-framer-name\":\"Rectangle 172\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p46b2w\",\"data-border\":true,\"data-framer-name\":\"Rectangle 173\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pr10lx\",\"data-border\":true,\"data-framer-name\":\"Rectangle 174\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bio9zy\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k6ulu6\",\"data-framer-name\":\"Effect\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-buite1\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17wo2k4\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fxo5jf\",\"data-framer-name\":\"Heading, Pic, Supporting text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1urhq33\",\"data-framer-name\":\"Rating and About Button\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-156mnvb\",\"data-border\":true,\"data-framer-name\":\"Rating\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-179brwp\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w9i3b\",\"data-framer-name\":\"Star icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-c8l2cm\",\"data-framer-name\":\"Star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17979_835)\">\\n<path d=\"M7.63067 1.28787C7.76731 0.959358 8.23269 0.959357 8.36933 1.28787L10.0222 5.26186C10.0798 5.40035 10.21 5.49498 10.3596 5.50697L14.6498 5.85091C15.0045 5.87935 15.1483 6.32195 14.8781 6.55342L11.6094 9.35342C11.4954 9.451 11.4457 9.60411 11.4805 9.75001L12.4791 13.9366C12.5617 14.2827 12.1852 14.5562 11.8816 14.3707L8.2085 12.1273C8.0805 12.0491 7.9195 12.0491 7.7915 12.1273L4.11845 14.3707C3.81481 14.5562 3.43831 14.2827 3.52086 13.9366L4.51951 9.75001C4.55431 9.60411 4.50456 9.451 4.39065 9.35342L1.12193 6.55342C0.851716 6.32195 0.995526 5.87935 1.35019 5.85091L5.64044 5.50697C5.78995 5.49498 5.9202 5.40035 5.9778 5.26186L7.63067 1.28787Z\" fill=\"#EAAA08\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17979_835\">\\n<rect width=\"16\" height=\"16\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vel000\",\"data-framer-name\":\"Star icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-60dbwd\",\"data-framer-name\":\"Star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17979_829)\">\\n<path d=\"M7.83087 1.28787C7.9675 0.959358 8.43289 0.959357 8.56952 1.28787L10.2224 5.26186C10.28 5.40035 10.4102 5.49498 10.5598 5.50697L14.85 5.85091C15.2047 5.87935 15.3485 6.32195 15.0783 6.55342L11.8095 9.35342C11.6956 9.451 11.6459 9.60411 11.6807 9.75001L12.6793 13.9366C12.7619 14.2827 12.3854 14.5562 12.0817 14.3707L8.4087 12.1273C8.28069 12.0491 8.1197 12.0491 7.99169 12.1273L4.31864 14.3707C4.015 14.5562 3.6385 14.2827 3.72106 13.9366L4.7197 9.75001C4.75451 9.60411 4.70476 9.451 4.59084 9.35342L1.32213 6.55342C1.05191 6.32195 1.19572 5.87935 1.55038 5.85091L5.84063 5.50697C5.99015 5.49498 6.12039 5.40035 6.17799 5.26186L7.83087 1.28787Z\" fill=\"#EAAA08\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17979_829\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0.200195)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zrx5gl\",\"data-framer-name\":\"Star icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1msbnrq\",\"data-framer-name\":\"Star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17979_832)\">\\n<path d=\"M8.03106 1.28787C8.1677 0.959358 8.63308 0.959357 8.76972 1.28787L10.4226 5.26186C10.4802 5.40035 10.6104 5.49498 10.76 5.50697L15.0502 5.85091C15.4049 5.87935 15.5487 6.32195 15.2785 6.55342L12.0097 9.35342C11.8958 9.451 11.8461 9.60411 11.8809 9.75001L12.8795 13.9366C12.9621 14.2827 12.5856 14.5562 12.2819 14.3707L8.60889 12.1273C8.48089 12.0491 8.3199 12.0491 8.19189 12.1273L4.51884 14.3707C4.2152 14.5562 3.8387 14.2827 3.92125 13.9366L4.9199 9.75001C4.9547 9.60411 4.90495 9.451 4.79104 9.35342L1.52232 6.55342C1.25211 6.32195 1.39592 5.87935 1.75058 5.85091L6.04083 5.50697C6.19034 5.49498 6.32059 5.40035 6.37819 5.26186L8.03106 1.28787Z\" fill=\"#EAAA08\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17979_832\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0.400391)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l189oy\",\"data-framer-name\":\"Star icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15et33x\",\"data-framer-name\":\"Star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17979_826)\">\\n<path d=\"M8.23028 1.28787C8.36692 0.959358 8.8323 0.959357 8.96894 1.28787L10.6218 5.26186C10.6794 5.40035 10.8097 5.49498 10.9592 5.50697L15.2494 5.85091C15.6041 5.87935 15.7479 6.32195 15.4777 6.55342L12.209 9.35342C12.095 9.451 12.0453 9.60411 12.0801 9.75001L13.0787 13.9366C13.1613 14.2827 12.7848 14.5562 12.4812 14.3707L8.80811 12.1273C8.6801 12.0491 8.51911 12.0491 8.39111 12.1273L4.71806 14.3707C4.41442 14.5562 4.03792 14.2827 4.12047 13.9366L5.11912 9.75001C5.15392 9.60411 5.10417 9.451 4.99026 9.35342L1.72154 6.55342C1.45133 6.32195 1.59514 5.87935 1.9498 5.85091L6.24004 5.50697C6.38956 5.49498 6.51981 5.40035 6.57741 5.26186L8.23028 1.28787Z\" fill=\"#EAAA08\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17979_826\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0.599609)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d025n6\",\"data-framer-name\":\"Star icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xbayet\",\"data-framer-name\":\"Star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17979_823)\">\\n<path d=\"M8.43048 1.28787C8.56711 0.959358 9.03249 0.959357 9.16913 1.28787L10.822 5.26186C10.8796 5.40035 11.0099 5.49498 11.1594 5.50697L15.4496 5.85091C15.8043 5.87935 15.9481 6.32195 15.6779 6.55342L12.4092 9.35342C12.2952 9.451 12.2455 9.60411 12.2803 9.75001L13.2789 13.9366C13.3615 14.2827 12.985 14.5562 12.6814 14.3707L9.00831 12.1273C8.8803 12.0491 8.71931 12.0491 8.5913 12.1273L4.91825 14.3707C4.61461 14.5562 4.23811 14.2827 4.32067 13.9366L5.31931 9.75001C5.35412 9.60411 5.30437 9.451 5.19045 9.35342L1.92174 6.55342C1.65152 6.32195 1.79533 5.87935 2.14999 5.85091L6.44024 5.50697C6.58976 5.49498 6.72 5.40035 6.7776 5.26186L8.43048 1.28787Z\" fill=\"#EAAA08\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17979_823\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0.799805)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-weight\":\"600\"},children:\"4.9 Rated\"}),\" by \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-weight\":\"600\"},children:\"40+\"}),\" Satisfied Clients\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-weight\":\"600\"},children:\"4.9 Rated\"}),\" by \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-weight\":\"600\"},children:\"40+\"}),\" Satisfied Clients\"]})}),className:\"framer-4wr1ek\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Syne-regular\",\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-f22g92\",\"data-framer-name\":\"Heading and Supporting text\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":DqzSnJZEo\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"I1Eg0b1_N\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,as:\"a\",background:{alt:\"ahmedjamalux\",fit:\"fill\",src:\"https://framerusercontent.com/images/8WpfqDRmnOTSBpUEJoNdZH1RRA.png\"},className:\"framer-1xgces1 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Profile Pic\",whileHover:animation6})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vqzbrb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Helping \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"Businesses Succeed \"}),\"Through Great Design\"]})})},Wkn4_KGI2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"42px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Helping \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"Businesses Succeed \"}),\"Through Great Design\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Helping \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"Businesses Succeed \"}),\"Through Great Design\"]})}),className:\"framer-5yey0b\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Syne-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:[\"A UI/UX & \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"Web Designer\"}),\" creating user-centered, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"high-converting websites\"}),\" and apps to help \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"businesses grow\"}),\" and succeed.\"]})})},Wkn4_KGI2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:[\"A UI/UX & \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"Web Designer\"}),\" creating user-centered, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"high-converting websites\"}),\" and apps to help \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"businesses grow\"}),\" and succeed.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:[\"A UI/UX & \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"Web Designer\"}),\" creating user-centered, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"high-converting websites\"}),\" and apps to help \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"businesses grow\"}),\" and succeed.\"]})}),className:\"framer-nhg947\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1d09smo hidden-1j4blxu\",\"data-framer-name\":\"Shape\",whileHover:animation7})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bn70ps\",\"data-framer-name\":\"Navigation actions\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1swtckn-container\",nodeId:\"nORp4u9_x\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonHeroViewProjects,{height:\"100%\",id:\"nORp4u9_x\",layoutId:\"nORp4u9_x\",variant:\"MTKRNbOZ8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":I17927:107294;17929:15851\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":I17927:107294;17929:15851\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":I17927:107294;17929:15851\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s25m8l-container\",nodeId:\"EJpHrr1vj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{hq_LiJhy_:resolvedLinks1[2]},Wkn4_KGI2:{hq_LiJhy_:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonHeroPrimary,{height:\"100%\",hq_LiJhy_:resolvedLinks1[0],id:\"EJpHrr1vj\",layoutId:\"EJpHrr1vj\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i0i660\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yi8ckh\",\"data-framer-name\":\"Social proof section\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Proud to Have Worked With Trusted Brands and Renowned Agencies\"})}),className:\"framer-t2ncav\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kix80y\",\"data-framer-name\":\"Logos\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gi6vpv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ORR5QdV79\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:21,overflow:false},gap:36}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"ORR5QdV79\",layoutId:\"ORR5QdV79\",padding:10,paddingBottom:10,paddingLeft:64,paddingPerSide:true,paddingRight:64,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13rqb51\",\"data-framer-name\":\"Frame 299\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-890eay\",\"data-framer-name\":\"d73eb1165180731.6402eeb44bc48 1_layerstyle\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:37,svg:'<svg width=\"37\" height=\"36\" viewBox=\"0 0 37 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.5643 0.125C18.6375 0.125 19.0949 1.05761 19.6072 2.19137C20.1195 3.30684 21.016 4.97091 21.6015 5.88523C22.1869 6.79955 23.0103 7.9516 23.4128 8.44533C23.8153 8.95735 24.8215 10.0545 25.6266 10.8957C26.4499 11.7369 27.9319 13.0352 28.9381 13.785C29.9444 14.5347 31.7191 15.6319 32.8718 16.1988C34.0244 16.784 35.36 17.3691 35.854 17.5154C36.3297 17.6617 36.7139 17.808 36.7139 17.8629C36.7139 17.9177 36.2931 18.1006 35.7625 18.2652C35.2319 18.448 34.0061 18.96 33.0547 19.4355C32.1033 19.8926 30.6579 20.7155 29.8529 21.2458C29.0479 21.7944 27.7672 22.7819 27.0171 23.4402C26.2669 24.1168 25.1326 25.2506 24.4922 25.982C23.8519 26.6952 22.7541 28.1398 22.0406 29.2004C21.327 30.2611 20.3939 31.8337 19.9548 32.7114C19.5157 33.6075 19.1498 34.4304 19.1498 34.5401C19.1498 34.6681 18.9851 35.0155 18.4546 35.875L17.9423 34.5035C17.6678 33.7538 17.0641 32.4737 16.625 31.6691C16.1676 30.8645 15.3077 29.4747 14.6856 28.5604C14.0818 27.6644 12.8194 26.1466 11.9229 25.1957C11.0081 24.2631 9.61763 22.9648 8.81261 22.343C8.00759 21.7213 6.65369 20.807 5.79378 20.3132C4.95217 19.8195 3.37872 19.0698 0.396484 17.8811L1.2198 17.5337C1.6772 17.3325 2.24437 17.1131 2.50052 17.04C2.75666 16.9668 3.52509 16.6194 4.23863 16.2719C4.93387 15.9245 6.34266 15.0833 7.34894 14.425C8.50158 13.657 9.92866 12.4501 11.2094 11.1883C12.3071 10.0911 13.7342 8.48191 14.3746 7.62244C14.9966 6.76298 15.9663 5.28178 16.4969 4.33088C17.0458 3.37999 17.7044 2.04508 17.9606 1.35019C18.235 0.673593 18.5095 0.125 18.5643 0.125V0.125ZM12.8926 11.81C11.9595 12.7609 10.4044 14.1141 9.43467 14.8273C8.48328 15.5405 7.01961 16.4914 6.19629 16.9485C5.37298 17.4057 4.69603 17.808 4.69603 17.8629C4.69603 17.9177 5.33638 18.2834 6.12311 18.6857C6.89154 19.088 8.19055 19.8926 8.99557 20.4961C9.80059 21.0813 11.5936 22.7088 12.9658 24.0985L15.4906 26.6403C17.7593 23.3854 18.4729 22.4345 18.546 22.4345C18.6375 22.4162 18.9303 22.7636 19.223 23.2025C19.5157 23.6414 20.1927 24.574 20.7233 25.2689L21.6929 26.5489C26.5597 21.7579 27.8221 20.6973 29.304 19.7281C30.4018 18.9966 31.591 18.3017 31.9204 18.1737C32.2497 18.0457 32.5058 17.9177 32.5058 17.8629C32.5058 17.808 31.9021 17.4605 31.1702 17.0765C30.4567 16.6925 29.0662 15.8331 28.1148 15.1565C27.1817 14.4799 25.5534 13.1084 24.5471 12.1026C23.5225 11.0969 22.2052 9.61567 21.6015 8.82935L20.522 7.36643C20.4488 9.59738 20.5037 10.018 20.7416 10.402C20.9245 10.658 21.6198 11.4809 22.2784 12.2306C22.9371 12.9621 24.2544 14.2238 25.2058 15.0102C26.1572 15.8148 27.3647 16.7474 27.8953 17.1131C28.4258 17.4788 28.8649 17.808 28.8467 17.8629C28.8467 17.9177 28.0965 18.4846 27.1634 19.1429C26.2303 19.8012 24.6752 21.0996 23.6872 22.0139L21.8942 23.7145C20.8147 22.2333 20.2659 21.4653 19.9914 21.063C19.6072 20.4961 19.5157 20.2218 19.6255 19.8744C19.6987 19.6184 19.9548 19.216 20.1561 18.96C20.3756 18.704 20.8147 18.3749 21.1441 18.2286C21.4551 18.0823 21.7295 17.9177 21.7295 17.8629C21.7295 17.808 21.4551 17.6434 21.1258 17.4788C20.7964 17.3143 20.2659 16.9851 19.9731 16.7291C19.6621 16.4731 19.2596 15.9245 19.0583 15.5039C18.8571 15.1016 18.6375 14.7542 18.546 14.7542C18.4729 14.7542 18.235 15.1382 17.9972 15.6136C17.7776 16.0891 17.2836 16.6742 16.8628 16.9851C16.4603 17.2777 15.948 17.552 15.7102 17.5886C15.4906 17.6434 15.3077 17.7531 15.3077 17.8629C15.3077 17.9543 15.4906 18.0823 15.7102 18.1189C15.948 18.1737 16.3322 18.3566 16.5884 18.5577C16.8445 18.7406 17.1921 19.1978 17.3568 19.5635L17.6861 20.2401L15.3077 23.7145C13.1122 21.6664 12.1059 20.7704 11.6485 20.4047C11.1911 20.0207 10.2214 19.3075 9.48956 18.7955L8.17225 17.8629C9.23342 17.0948 10.1116 16.4548 10.8252 15.9245C11.5204 15.3942 12.7279 14.3519 13.4781 13.6204C14.2282 12.8889 15.2711 11.7918 15.7651 11.1883C16.6799 10.1094 16.6982 10.0728 16.7347 8.7562C16.753 8.04303 16.7165 7.43958 16.6433 7.43958C16.5518 7.45786 16.0761 8.04303 15.5455 8.77449C15.0149 9.50595 13.8257 10.8591 12.8926 11.81V11.81Z\" fill=\"#B0B0B0\" fill-opacity=\"0.9\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"16.5px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20.02px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(176, 176, 176)\"},children:\"Start Eyes Glow\"})}),className:\"framer-eguhsg\",\"data-framer-name\":\"Start Eyes Glow\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lnwwgf\",\"data-framer-name\":\"Frame 300\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ggqv9o\",\"data-framer-name\":\"Shape-291\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:27,svg:'<svg width=\"27\" height=\"28\" viewBox=\"0 0 27 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.918 13.305L26.0806 10.3149V24.7599L20.4993 26.2549L20.4993 14.7004L17.7086 15.4479L17.7086 27.0024L14.918 27.7499L14.918 13.305Z\" fill=\"#B0B0B0\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.33594 3.24732L20.4986 0.250122V14.7021L14.9173 16.1972L14.9173 4.63556L12.1266 5.38308L12.1266 16.9447L9.33594 17.6922L9.33594 3.24732Z\" fill=\"#B0B0B0\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.964844 13.305L12.1275 10.3149L12.1275 24.7599L6.54617 26.2549L6.54617 14.7004L3.7555 15.4479L3.7555 27.0024L0.964844 27.7499L0.964844 13.305Z\" fill=\"#B0B0B0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"16.5px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"14.78px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(176, 176, 176)\"},children:\"PropFirmMasters\"})}),className:\"framer-1b4f0si\",\"data-framer-name\":\"PropFirmMasters\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kqe3d2\",\"data-framer-name\":\"Frame 297\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-x5ayti\",\"data-framer-name\":\"Logo 04 1_layerstyle\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:31,svg:'<svg width=\"31\" height=\"32\" viewBox=\"0 0 31 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.589 0.603395C22.6105 0.601863 23.7547 1.7158 26.2575 4.1735C28.2579 6.13935 30.0791 7.92747 30.7148 8.55415L28.7465 14.5559L24.205 15.6867L25.9312 17.4013C26.8824 18.3436 27.6606 19.1235 27.6636 19.1327C27.6667 19.1419 27.2056 20.812 26.6404 22.8422C26.0737 24.874 25.6111 26.5349 25.6096 26.5364C25.608 26.538 21.7634 27.6289 17.0672 28.9635C12.3709 30.2981 8.51405 31.3921 8.4972 31.3967C8.4727 31.4013 7.59655 30.5386 4.46878 27.4313C2.27076 25.2463 0.467926 23.4505 0.464862 23.4413C0.461799 23.4321 0.83707 21.8524 1.29812 19.931C1.7607 18.0096 2.1421 16.4314 2.14669 16.4252C2.15129 16.4191 3.41496 16.1525 4.95433 15.8353C6.49218 15.5181 7.75585 15.2546 7.76045 15.25C7.76504 15.2454 6.90421 14.3506 5.84733 13.2612C4.79044 12.1733 3.92502 11.2723 3.92655 11.2631C3.92655 11.2524 4.22064 9.81671 5.23464 4.90131L13.8965 2.75312C18.6602 1.57023 22.5722 0.603395 22.589 0.603395V0.603395ZM9.55409 9.45357C8.20618 13.9277 7.81712 15.2301 7.81865 15.2347C7.82171 15.2393 9.25387 14.9482 11.0016 14.5881C12.7493 14.2265 14.1891 13.9354 14.1998 13.9399C14.209 13.9445 14.2136 13.9553 14.2075 13.966C14.1998 13.9767 12.5088 15.5457 10.4456 17.4518L6.69743 20.9193C6.66373 21.0802 6.35892 22.4638 6.0005 24.0987C5.64208 25.7335 5.35105 27.0727 5.35258 27.0742C5.35565 27.0758 9.14053 26.1212 13.7663 24.9521C18.3906 23.7845 22.177 22.8284 22.1785 22.8284C22.1801 22.8269 22.6289 21.2242 23.1772 19.2645C23.7256 17.3047 24.1728 15.7005 24.1698 15.699C24.1682 15.6974 22.7529 16.0468 21.0267 16.4758C19.2989 16.9048 17.7641 17.2879 17.614 17.3262C17.4654 17.3645 17.3398 17.3905 17.3352 17.3829C17.3322 17.3767 19.1044 15.7464 21.2763 13.7591L25.2236 10.1477C25.9787 6.22362 26.1978 5.07905 26.1962 5.07139C26.1962 5.06526 26.1916 5.06066 26.184 5.06219C26.1778 5.06219 22.4343 6.05201 17.8637 7.25788L9.55409 9.45357Z\" fill=\"#B0B0B0\" stroke=\"#B0B0B0\" stroke-width=\"0.0153172\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"16.5px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(176, 176, 176)\"},children:\"Zexware\"})}),className:\"framer-5ljhxx\",\"data-framer-name\":\"Zexware\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j8wmhq\",\"data-framer-name\":\"Frame 296\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xwwk15\",\"data-framer-name\":\"image 21_layerstyle\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50063 4.93178C5.46397 2.89167 3.8721 1.1564 3.96574 1.0626C4.05938 0.945349 8.46043 0.875 23.3725 0.875L31.2148 8.73062L31.0978 23.5039L23.7237 23.6211L23.6066 31.0078L8.6243 31.125L1.0161 23.5039L0.96928 13.7488C0.94587 8.07403 1.0161 3.92345 1.15656 3.82965C1.27361 3.73585 3.02935 5.33043 8.74135 11.0756V23.6211H23.4896V8.61337H11.1994L7.50063 4.93178Z\" fill=\"#B0B0B0\" stroke=\"#B0B0B0\" stroke-width=\"0.234099\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"16.5px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(176, 176, 176)\"},children:\"INSYNC\"})}),className:\"framer-1jr3o3k\",\"data-framer-name\":\"INSYNC\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c0wcct\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2jlebi\",\"data-framer-name\":\"file 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:144,svg:'<svg width=\"144\" height=\"44\" viewBox=\"0 0 144 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18039_15992)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.69298 14.8384C7.4649 14.8769 8.33332 15.1085 8.97017 15.398C9.60701 15.7068 10.1474 16.1313 10.4561 16.6138C10.707 16.9998 10.9965 17.6173 11.2281 18.5822H10.0123C8.91227 18.5822 8.79648 18.5436 8.6228 18.0998C8.52631 17.8296 8.14034 17.4436 7.79297 17.2313C7.42631 16.9998 6.82806 16.8454 6.34561 16.8454C5.90175 16.8454 5.22631 16.9805 4.85964 17.1348C4.49298 17.2892 4.08772 17.598 3.99122 17.8103C3.87544 18.0226 3.79824 18.4085 3.79824 18.6787C3.79824 18.9875 4.01052 19.3348 4.37719 19.6436C4.68596 19.9138 5.45789 20.2612 6.07543 20.4348C6.67368 20.5892 7.59999 20.8594 8.14034 21.0138C8.66139 21.1875 9.43332 21.5541 9.83859 21.8243C10.2438 22.1138 10.7456 22.6927 10.9579 23.1173C11.1509 23.5419 11.3245 24.2366 11.3245 24.6612C11.3245 25.0857 11.1702 25.7805 10.9772 26.205C10.7842 26.6296 10.321 27.2085 9.95438 27.498C9.58771 27.7875 8.85438 28.1734 8.33332 28.3278C7.79297 28.4822 6.84736 28.6173 6.21052 28.6173C5.57368 28.6173 4.60877 28.4822 4.08772 28.3278C3.54737 28.1734 2.83333 27.8261 2.48596 27.5559C2.15789 27.2857 1.69474 26.7454 1.50175 26.3594C1.30877 25.9541 1.11579 25.3752 1 24.4682L3.2193 24.3717L3.54737 25.105C3.75965 25.5489 4.14561 25.9541 4.57017 26.1471C4.93684 26.3401 5.65087 26.4945 6.17192 26.4945C6.67368 26.4945 7.29122 26.4173 7.5614 26.3015C7.83157 26.1857 8.21754 25.9155 8.42982 25.684C8.66139 25.4331 8.81578 24.9699 8.81578 24.6226C8.81578 24.2752 8.66139 23.8506 8.46841 23.6769C8.29473 23.5033 8.00525 23.291 7.85087 23.2138C7.69648 23.1366 6.82806 22.8664 5.92105 22.6348C5.01403 22.384 3.89473 21.998 3.41228 21.7664C2.92982 21.5348 2.31228 21.0717 2.00351 20.7243C1.69474 20.3769 1.44386 19.798 1.36667 19.3155C1.28947 18.8138 1.34737 18.1769 1.50175 17.7138C1.63684 17.2892 2.02281 16.6524 2.33158 16.2857C2.65965 15.9384 3.1614 15.5138 3.45087 15.3787C3.75965 15.2243 4.31929 15.0313 4.70526 14.9155C5.11052 14.8191 5.99824 14.7805 6.69298 14.8384ZM133.328 18.3699L135.856 18.4857L136.937 22.0173C137.535 23.9664 138.095 25.5682 138.191 25.5875C138.268 25.6068 138.847 24.0243 140.545 18.4857L143.131 18.3892L142.572 19.8945C142.282 20.705 141.298 23.4261 140.41 25.9155C139.426 28.6752 138.596 30.6629 138.307 31.0103C138.037 31.3191 137.554 31.705 137.245 31.8594C136.879 32.0524 136.203 32.1489 135.412 32.1296C134.717 32.1296 134.138 32.091 134.1 32.0524C134.081 32.0138 134.158 31.5892 134.293 31.0875C134.544 30.1805 134.563 30.1612 135.238 30.2191C135.624 30.2384 136.049 30.1612 136.203 30.0454C136.358 29.9296 136.589 29.5822 136.724 29.2734C136.956 28.7524 136.859 28.3857 135.354 24.0822C134.447 21.5348 133.617 19.1998 133.521 18.9103L133.328 18.3699ZM74.9701 2.00502C76.9964 1.98572 78.8104 2.02432 78.9648 2.08221C79.2157 2.15941 79.2543 3.70327 79.2543 26.398L77.5946 29.2927C76.6683 30.8752 75.7806 32.4384 75.5876 32.7664C75.4139 33.0752 74.3332 34.9471 73.1947 36.9155C72.0754 38.884 70.8789 40.7173 70.5701 41.0068C70.2034 41.3541 69.7789 41.5471 69.4122 41.5471C69.1034 41.5471 68.6403 41.4506 68.4087 41.3155C68.1578 41.1998 67.8683 41.0068 67.7719 40.891C67.6561 40.7752 67.1736 40.0033 66.7104 39.1541C66.228 38.3243 65.649 37.3208 65.4368 36.9348C65.2052 36.5489 63.9122 34.3296 62.5613 31.9945C61.2105 29.6594 59.9368 27.4594 59.7438 27.112C59.3964 26.5331 59.3771 26.012 59.3771 13.5647L64.8771 13.4682L65.0701 7.87169L70.7631 7.7752L70.7245 4.99625C70.6859 2.71906 70.7438 2.198 70.9754 2.12081C71.1297 2.06291 72.9245 2.00502 74.9701 2.00502ZM73.6578 24.9506H76.3596V4.88046H73.6578V24.9506ZM67.8683 24.9506H70.7631V10.6699H67.8683V24.9506ZM62.0403 20.7436L62.0789 24.9506H64.9736V16.2664C62.928 16.2664 62.2719 16.3243 62.1754 16.4015C62.0789 16.4594 62.021 18.4278 62.0403 20.7436ZM65.5526 31.512C66.614 33.3647 67.5982 34.9471 67.7333 35.0243C67.8683 35.1015 68.5824 35.1787 69.3157 35.1787C70.0683 35.1787 70.7631 35.1015 70.8789 35.0243C70.9947 34.9471 71.4771 34.2331 71.9596 33.4419C72.4227 32.6506 73.3104 31.1068 73.9087 30.0068C74.5262 28.9261 75.0087 27.9998 75.0087 27.9419C75.0087 27.884 72.442 27.8454 69.3157 27.8454C66.1894 27.8454 63.6227 27.9033 63.6227 27.9805C63.6227 28.0769 64.4912 29.6594 65.5526 31.512ZM38.535 14.9155H40.8508V28.4243H39.6929C38.5543 28.4243 38.535 28.405 38.535 27.884C38.535 27.5945 38.4771 27.305 38.4 27.2278C38.3228 27.1506 37.9368 27.3629 37.5701 27.7103C37.2035 28.0769 36.5859 28.4243 36.2193 28.5015C35.8526 28.598 35.1965 28.598 34.7719 28.5401C34.3473 28.4822 33.6333 28.1734 33.1894 27.8454C32.6105 27.4401 32.2052 26.9191 31.8386 26.1471C31.414 25.2208 31.3368 24.7962 31.3368 23.4068C31.3368 22.1524 31.4333 21.5348 31.7614 20.8015C31.9929 20.2612 32.3789 19.6243 32.6105 19.3734C32.8421 19.1226 33.3824 18.7559 33.807 18.5629C34.2315 18.3699 34.9456 18.1962 35.4087 18.1962C35.8526 18.1962 36.5473 18.3506 36.9333 18.5243C37.3193 18.7173 37.7438 19.0647 37.8982 19.2962C38.0333 19.5471 38.2456 19.7401 38.3421 19.7401C38.4579 19.7401 38.535 18.8138 38.535 17.3278V14.9155ZM33.9614 21.805C33.7491 22.4419 33.6719 23.0787 33.7491 23.7927C33.807 24.3717 34.0193 25.1436 34.2122 25.491C34.4052 25.8384 34.8877 26.2436 35.2543 26.4173C35.6789 26.6103 36.1614 26.6875 36.5666 26.6103C36.914 26.5524 37.3964 26.2436 37.6666 25.9155C37.9368 25.5875 38.2456 24.9699 38.3614 24.5068C38.4771 24.0629 38.5157 23.2717 38.4386 22.7313C38.3807 22.191 38.1491 21.4962 37.9561 21.1875C37.7631 20.8594 37.3772 20.4927 37.107 20.3576C36.8368 20.2419 36.3736 20.1261 36.0842 20.1261C35.7754 20.1261 35.2543 20.2998 34.9263 20.512C34.4824 20.7822 34.1929 21.1875 33.9614 21.805ZM87.3981 14.8769L90.8139 14.9541C93.863 15.012 94.2876 15.0699 95.0402 15.4559C95.4841 15.6875 96.0244 16.112 96.256 16.4015C96.4683 16.7103 96.7385 17.2699 96.8543 17.6752C96.9701 18.0998 97.0087 18.698 96.9122 19.0261C96.835 19.3734 96.5648 19.9331 96.3139 20.2612C96.063 20.6085 95.6385 20.9366 95.3683 20.9945C95.0981 21.0524 94.8859 21.1489 94.8859 21.2261C94.8859 21.3226 95.2525 21.5541 95.7157 21.7664C96.2367 22.0366 96.6806 22.4419 96.9508 22.9243C97.2595 23.4647 97.3946 24.0243 97.3946 24.7577C97.3946 25.5103 97.2788 26.012 96.9701 26.4945C96.7578 26.8612 96.3718 27.3243 96.1595 27.498C95.928 27.691 95.3297 27.9805 94.7894 28.1348C94.0946 28.3471 92.9367 28.4243 87.3595 28.4243L87.3981 14.8769ZM89.8683 20.705C93.3227 20.6085 93.3806 20.5892 93.9402 19.9717C94.249 19.6436 94.4999 19.1419 94.4999 18.8717C94.4999 18.6015 94.4227 18.1962 94.3069 17.9454C94.1911 17.7138 93.9016 17.405 93.6315 17.2699C93.3613 17.1348 92.435 17.0384 91.5087 17.0384H89.8683V20.705ZM89.8683 26.3015C92.956 26.3015 93.728 26.205 94.1139 26.012C94.442 25.8384 94.7701 25.4717 94.8859 25.1436C95.0016 24.8155 95.0209 24.4103 94.963 24.2173C94.9052 24.0436 94.7508 23.6962 94.635 23.4454C94.4999 23.1945 94.1139 22.8857 93.7859 22.7313C93.3806 22.5384 92.5315 22.4419 91.5087 22.4419H89.8683V26.3015ZM117.465 14.9155H119.974V28.4243H117.658V27.7489C117.658 27.3822 117.6 27.0734 117.523 27.0734C117.426 27.0541 117.156 27.2857 116.886 27.5752C116.616 27.8647 116.114 28.212 115.786 28.3471C115.438 28.5015 114.917 28.6173 114.628 28.6173C114.319 28.6173 113.76 28.5208 113.374 28.4243C112.968 28.3085 112.37 27.9998 112.042 27.691C111.695 27.4015 111.212 26.7261 110.942 26.205C110.517 25.3752 110.44 24.9699 110.421 23.5033C110.421 22.4612 110.537 21.4577 110.71 20.9945C110.845 20.5699 111.251 19.9331 111.579 19.5664C111.888 19.1998 112.505 18.7366 112.93 18.5436C113.354 18.3699 114.068 18.1962 114.531 18.1962C114.975 18.1962 115.574 18.312 115.882 18.4664C116.172 18.6015 116.635 18.9875 117.465 19.9331V14.9155ZM113.335 21.1489C113.045 21.5541 112.91 22.0559 112.852 23.0787C112.795 24.1401 112.872 24.6419 113.142 25.2208C113.354 25.6454 113.779 26.1471 114.088 26.3401C114.416 26.5331 114.879 26.6875 115.149 26.6875C115.419 26.6875 115.921 26.5138 116.268 26.3015C116.596 26.0892 117.021 25.5875 117.195 25.1822C117.368 24.7962 117.503 23.9471 117.503 23.3103C117.503 22.6348 117.388 21.8822 117.195 21.5155C117.021 21.1875 116.654 20.7243 116.365 20.512C116.056 20.2805 115.574 20.1068 115.245 20.1261C114.937 20.1261 114.454 20.2419 114.203 20.3769C113.952 20.4927 113.567 20.8594 113.335 21.1489ZM129.237 14.9155H131.552V28.4243H129.237V27.8454C129.237 27.5173 129.159 27.2278 129.044 27.1699C128.947 27.112 128.774 27.2471 128.658 27.4594C128.561 27.6717 128.098 28.0191 127.654 28.2313C127.191 28.4436 126.574 28.598 126.245 28.6173C125.937 28.6173 125.319 28.5015 124.914 28.3664C124.509 28.2313 123.814 27.7875 123.409 27.3629C122.965 26.8998 122.54 26.205 122.347 25.6261C122.135 24.9313 122.077 24.1594 122.116 22.9243C122.193 21.4769 122.289 21.0331 122.733 20.2612C123.042 19.7401 123.602 19.1226 124.084 18.8331C124.547 18.5243 125.261 18.2734 125.763 18.2155C126.245 18.1769 126.959 18.2348 127.365 18.3699C127.751 18.4857 128.272 18.8331 128.523 19.1612C128.754 19.4699 129.005 19.6822 129.102 19.6436C129.179 19.5857 129.237 18.505 129.237 17.2313V14.9155ZM124.914 21.2261C124.779 21.5348 124.586 22.0752 124.509 22.4419C124.431 22.8085 124.431 23.5998 124.509 24.1787C124.624 24.9892 124.798 25.3945 125.3 25.9155C125.84 26.4945 126.052 26.591 126.805 26.591C127.5 26.591 127.789 26.4752 128.272 26.012C128.6 25.684 128.967 25.0857 129.082 24.6612C129.179 24.2366 129.237 23.4454 129.179 22.9243C129.14 22.384 128.947 21.6699 128.774 21.3226C128.6 20.9945 128.214 20.5699 127.886 20.4155C127.577 20.2612 127.075 20.1261 126.786 20.1261C126.477 20.1454 126.014 20.2612 125.724 20.4155C125.416 20.5699 125.068 20.9366 124.914 21.2261ZM14.0263 15.8805H16.3807L16.4386 18.2927L18.4649 18.3892V20.1261L16.4386 20.2226L16.4 22.8278C16.3614 24.6419 16.4193 25.5682 16.593 25.9155C16.7666 26.2629 17.0175 26.4173 17.5 26.4559C18.1368 26.4945 18.1947 26.5524 18.3684 27.3822C18.5228 28.1155 18.5035 28.2892 18.2719 28.3857C18.1175 28.4629 17.5579 28.5208 17.0175 28.5208C16.4193 28.5015 15.8017 28.3664 15.3772 28.1155C15.0105 27.9033 14.5474 27.4401 14.3737 27.0734C14.0842 26.5138 14.0263 25.8577 14.0263 20.1261H13.3509C12.6754 20.1261 12.6754 20.1261 12.6754 19.2577C12.6754 18.3892 12.6754 18.3892 14.0263 18.3892V15.8805ZM20.3754 18.3892H22.7105L22.807 25.3752L23.4824 25.9541C24.0807 26.4752 24.2544 26.5331 24.9298 26.4173C25.3544 26.3594 25.8754 26.1471 26.0684 25.9734C26.2614 25.7805 26.5508 25.3366 26.6859 24.9892C26.8789 24.5647 26.9561 23.4647 26.9561 18.3892H29.2719V28.4243H26.9561V27.7489C26.9561 27.3822 26.8982 27.0734 26.821 27.0734C26.7245 27.0927 26.3772 27.3436 26.0491 27.6524C25.7017 27.9805 25.0649 28.3085 24.6403 28.4243C24.2158 28.5208 23.5403 28.5594 23.1544 28.4822C22.7491 28.405 22.1702 28.1734 21.8421 27.9419C21.5333 27.7296 21.0894 27.2085 20.8772 26.784C20.5298 26.1085 20.4912 25.5489 20.4333 22.191L20.3754 18.3892ZM42.607 18.3892H45.0964L45.8684 20.8594C46.2736 22.2103 46.7754 23.8699 46.9684 24.5261C47.1613 25.1822 47.3929 25.7226 47.4701 25.7226C47.5473 25.7226 47.914 24.7577 48.2806 23.5612C48.628 22.3647 49.1298 20.705 49.8245 18.3892H51.0403C51.7157 18.3892 52.2368 18.4857 52.2368 18.5822C52.2368 18.698 51.3491 21.284 50.2491 24.3331C49.1684 27.3822 48.107 30.1805 47.8947 30.5278C47.6824 30.8945 47.2964 31.3576 47.0263 31.5506C46.7561 31.7629 46.1964 31.9945 45.7719 32.1103C45.3473 32.2068 44.6333 32.2454 44.1894 32.1875C43.7263 32.1489 43.3596 32.0524 43.3596 31.9945C43.3596 31.9559 43.4754 31.512 43.6105 31.0103C43.8228 30.2191 43.8999 30.1419 44.3245 30.2191C44.5947 30.2769 44.9999 30.2191 45.2508 30.1033C45.5017 29.9875 45.8105 29.6208 45.9649 29.2927C46.235 28.7524 46.1964 28.5594 45.3666 26.205C44.8842 24.8348 44.0543 22.5191 43.5526 21.0524L42.607 18.3892ZM99.5174 18.3892H101.833L101.93 25.3752L102.547 25.9348C102.895 26.2436 103.396 26.4945 103.667 26.4945C103.917 26.4945 104.4 26.3594 104.728 26.205C105.037 26.0506 105.442 25.7226 105.596 25.4717C105.828 25.1436 105.886 24.3717 105.886 18.3892H108.395V28.4243H106.079V27.7875C106.079 27.4594 106.04 27.1313 105.982 27.0734C105.924 27.0155 105.596 27.2471 105.249 27.5752C104.902 27.9033 104.226 28.2892 103.763 28.405C103.126 28.5787 102.663 28.598 102.026 28.4436C101.544 28.3278 100.926 27.9998 100.637 27.691C100.347 27.4015 99.9806 26.8419 99.8069 26.4366C99.5753 25.8769 99.5174 24.9313 99.5174 22.0559V18.3892Z\" fill=\"#B0B0B0\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18039_15992\">\\n<rect width=\"143.965\" height=\"43.5471\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oaqq5h\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-lap8y\",\"data-framer-name\":\"Frame 287\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:106,svg:'<svg width=\"106\" height=\"28\" viewBox=\"0 0 106 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_i_18039_16014)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.3076 13.2675V24.3364H3.63768V3.66356H12.5783L14.7944 0.25H3.63768H0.222656V3.66356V24.3364V27.75H3.63768H24.3076H27.7226V24.3364V10.3183L24.3076 13.2675Z\" fill=\"#B0B0B0\"/>\\n<path d=\"M7.8457 20.4909V9.32245L27.7234 2.15283L7.8457 20.4909Z\" fill=\"#B0B0B0\"/>\\n<path d=\"M72.9082 11.3884V8.32512L78.2486 6.35864L72.9082 11.3884Z\" fill=\"#B0B0B0\"/>\\n<path d=\"M43.2645 14.7422C43.0375 13.0212 41.6756 11.957 39.3581 11.957C37.0106 11.957 35.4635 13.0638 35.4695 14.8638C35.4635 16.2625 36.3296 17.1686 38.1216 17.5335L39.7105 17.8558C40.5109 18.02 40.8752 18.3179 40.8872 18.7862C40.8752 19.3396 40.2839 19.7348 39.3939 19.7348C38.486 19.7348 37.8827 19.3396 37.7274 18.5794L35.2246 18.7132C35.4635 20.5011 36.9568 21.6018 39.3879 21.6018C41.7652 21.6018 43.4676 20.3673 43.4736 18.5247C43.4676 17.1747 42.6015 16.3659 40.8215 15.9949L39.1609 15.6544C38.3068 15.4659 37.9902 15.1679 37.9962 14.7179C37.9902 14.1584 38.6114 13.7935 39.3999 13.7935C40.2839 13.7935 40.8095 14.2861 40.935 14.8882L43.2645 14.7422Z\" fill=\"#B0B0B0\"/>\\n<path d=\"M48.0972 9.97607V12.2139H49.8234V13.8891H48.0972V18.5489C48.0972 18.928 48.1904 19.2006 48.381 19.3746C48.569 19.5462 48.8246 19.5965 49.0912 19.5965C49.2771 19.5965 49.4789 19.5622 49.6205 19.5347L49.9686 21.2114C49.7056 21.2914 49.2926 21.3911 48.7399 21.4116L48.7391 21.4116C47.8371 21.4503 47.106 21.2473 46.6041 20.8297C46.1057 20.4149 45.8146 19.773 45.8204 18.8903V13.8891L45.8204 12.2139L45.8204 9.97607H48.0972Z\" fill=\"#B0B0B0\"/>\\n<path d=\"M72.8125 21.4594H75.3571V12.1187H72.8125V21.4594Z\" fill=\"#B0B0B0\"/>\\n<path d=\"M81.5408 21.6418C83.9838 21.6418 85.5189 20.1823 85.6384 18.0357H83.2372C83.0879 19.033 82.4428 19.5925 81.5707 19.5925C80.382 19.5925 79.6115 18.5769 79.6115 16.789C79.6115 15.0255 80.388 14.016 81.5707 14.016C82.5025 14.016 83.0998 14.6424 83.2372 15.5728H85.6384C85.5309 13.414 83.9241 11.9971 81.5289 11.9971C78.7454 11.9971 77.0251 13.9613 77.0251 16.8255C77.0251 19.6654 78.7155 21.6418 81.5408 21.6418Z\" fill=\"#B0B0B0\"/>\\n<path d=\"M91.413 21.6418C94.1965 21.6418 95.9287 19.7019 95.9287 16.8255C95.9287 13.9309 94.1965 11.9971 91.413 11.9971C88.6295 11.9971 86.8973 13.9309 86.8973 16.8255C86.8973 19.7019 88.6295 21.6418 91.413 21.6418ZM91.4249 19.635C90.1407 19.635 89.4836 18.437 89.4836 16.8073C89.4836 15.1775 90.1407 13.9735 91.4249 13.9735C92.6853 13.9735 93.3423 15.1775 93.3423 16.8073C93.3423 18.437 92.6853 19.635 91.4249 19.635Z\" fill=\"#B0B0B0\"/>\\n<path d=\"M103.634 16.0311L103.634 16.0304C103.631 15.4129 103.452 14.9069 103.129 14.5506C102.805 14.1936 102.349 13.9997 101.819 13.9868L101.816 13.9868L101.813 13.9868C101.282 13.9997 100.826 14.1936 100.503 14.5506C100.18 14.9069 100.001 15.4129 99.9975 16.0304V21.2957H97.7207V15.4837C97.7207 14.4212 98.0265 13.5779 98.5514 13.0016C99.0752 12.4265 99.8291 12.1042 100.753 12.1042H102.879C103.802 12.1042 104.556 12.4265 105.08 13.0016C105.605 13.5779 105.911 14.4212 105.911 15.4837L105.911 21.2957H103.634L103.634 16.0311Z\" fill=\"#B0B0B0\"/>\\n<path d=\"M57.7221 17.5623L57.722 17.5629C57.719 18.1804 57.5395 18.6865 57.2168 19.0427C56.8933 19.3997 56.4374 19.5936 55.9069 19.6065L55.9037 19.6066L55.9005 19.6065C55.37 19.5936 54.9141 19.3997 54.5907 19.0427C54.268 18.6865 54.0884 18.1804 54.0854 17.5629V12.2976H51.8086V18.1096C51.8086 19.1721 52.1144 20.0154 52.6393 20.5917C53.1631 21.1668 53.917 21.4891 54.8405 21.4891H56.9669C57.8904 21.4891 58.6443 21.1668 59.1681 20.5917C59.693 20.0154 59.9988 19.1721 59.9988 18.1096L59.9988 12.2976H57.7221L57.7221 17.5623Z\" fill=\"#B0B0B0\"/>\\n<path d=\"M66.214 21.6414C67.1098 21.6414 67.8831 21.4435 68.5337 21.0475C69.1949 20.6516 69.7069 20.0926 70.0695 19.3706C70.4321 18.6369 70.6135 17.7752 70.6135 16.7853V8.68018H68.1337V13.4489H68.0857C67.8404 13.0763 67.5098 12.7852 67.0939 12.5755C66.6886 12.3659 66.2406 12.2611 65.75 12.2611C64.9821 12.2611 64.2995 12.4533 63.7022 12.8376C63.1156 13.2219 62.6517 13.7575 62.3104 14.4446C61.9798 15.1201 61.8145 15.9061 61.8145 16.8028C61.8145 17.7344 61.9904 18.5671 62.3424 19.3007C62.6944 20.0344 63.1956 20.6108 63.8462 21.0301C64.5075 21.4377 65.2967 21.6414 66.214 21.6414ZM66.214 19.3007C65.6487 19.3007 65.1954 19.0795 64.8541 18.6369C64.5128 18.1828 64.3422 17.6238 64.3422 16.96C64.3422 16.3079 64.5128 15.7605 64.8541 15.318C65.1954 14.8639 65.6487 14.6368 66.214 14.6368C66.7899 14.6368 67.2432 14.8639 67.5738 15.318C67.9151 15.7605 68.0857 16.3079 68.0857 16.96C68.0857 17.6238 67.9151 18.1828 67.5738 18.6369C67.2432 19.0795 66.7899 19.3007 66.214 19.3007Z\" fill=\"#B0B0B0\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_i_18039_16014\" x=\"0.222656\" y=\"0.25\" width=\"105.688\" height=\"28.7501\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1.2501\"/>\\n<feGaussianBlur stdDeviation=\"3.75031\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.2 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_18039_16014\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15bj8nl\",\"data-framer-name\":\"Projects Carousel\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yb011i-container hidden-72rtr7 hidden-1opd900\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YzSM_BWdj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"YzSM_BWdj\",layoutId:\"YzSM_BWdj\",padding:10,paddingBottom:32,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:20,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2160,pixelWidth:2880,src:\"https://framerusercontent.com/images/CsWQbq8sYf5aXmunssaHwIzSw.png?scale-down-to=1024\"},className:\"framer-sq5txl\",\"data-border\":true,\"data-framer-name\":\"Mobile - Mockup 11\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2160,pixelWidth:2880,src:\"https://framerusercontent.com/images/RKGKoKQ2Kl2izgoPsQtzaKqkvQ.png?scale-down-to=1024\"},className:\"framer-1y0ya9z\",\"data-border\":true,\"data-framer-name\":\"Mobile - Mockup 12\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2160,pixelWidth:2880,src:\"https://framerusercontent.com/images/zMoikKiyLnMWM0uyfsNbC7n74.jpg?scale-down-to=1024\"},className:\"framer-1xwz0kj\",\"data-border\":true,\"data-framer-name\":\"Mobile - Mockup 13\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2160,pixelWidth:2880,src:\"https://framerusercontent.com/images/6SR235WiFJXZagKkntK8dYMWT8.png?scale-down-to=1024\"},className:\"framer-ih7ggh\",\"data-border\":true,\"data-framer-name\":\"Mobile - Mockup 1\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1600,src:\"https://framerusercontent.com/images/nM3y9dDWAA1DOK6FvojTpkbd8.webp?scale-down-to=1024\"},className:\"framer-5a19oo\",\"data-border\":true,\"data-framer-name\":\"Mobile - Mockup 2\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/C500LTlX4hDlPwly75YGI61VU.png?scale-down-to=1024\"},className:\"framer-11ziwvb\",\"data-border\":true,\"data-framer-name\":\"Mobile - Mockup 3\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/x7HWVKUDYgzS866CYnqmoieD5Ts.png\"},className:\"framer-s83l9f\",\"data-border\":true,\"data-framer-name\":\"Mobile - Mockup 4\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/TZCJ8q3KUPnF2JbA2GjhHILizxI.png?scale-down-to=1024\"},className:\"framer-1k4zqfx\",\"data-border\":true,\"data-framer-name\":\"Mobile - Mockup 5\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1600,src:\"https://framerusercontent.com/images/GDujFR3FmyH2faC0Jibp7UsuDTg.webp?scale-down-to=1024\"},className:\"framer-1lm38qm\",\"data-border\":true,\"data-framer-name\":\"Mobile - Mockup 6\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/hlakPT63tiVAZYhBKoNABpJW74Y.png?scale-down-to=1024\"},className:\"framer-3sy9q8\",\"data-border\":true,\"data-framer-name\":\"Mobile - Mockup 7\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/3Z5ymuayhz2EKgU8JPgvMhbtBHk.png?scale-down-to=1024\"},className:\"framer-dakecg\",\"data-border\":true,\"data-framer-name\":\"Mobile - Mockup 8\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1600,src:\"https://framerusercontent.com/images/f2xQORfnet3sL4C9DKr4BvqOiQ.webp?scale-down-to=1024\"},className:\"framer-1ieukyj\",\"data-border\":true,\"data-framer-name\":\"Mobile - Mockup 9\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1600,src:\"https://framerusercontent.com/images/aUBjWa6oJv2mbLbj1TJgjOKfAeQ.webp?scale-down-to=1024\"},className:\"framer-1r9cykc\",\"data-border\":true,\"data-framer-name\":\"Mobile - Mockup 10\",whileHover:animation8})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ybmml5-container hidden-1j4blxu\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Gg9UizzpJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:.2,id:\"Gg9UizzpJ\",layoutId:\"Gg9UizzpJ\",padding:10,paddingBottom:32,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:80,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2160,pixelWidth:2880,src:\"https://framerusercontent.com/images/CsWQbq8sYf5aXmunssaHwIzSw.png?scale-down-to=1024\"},className:\"framer-15sl5pt\",\"data-border\":true,\"data-framer-name\":\"Mockup 11\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2160,pixelWidth:2880,src:\"https://framerusercontent.com/images/RKGKoKQ2Kl2izgoPsQtzaKqkvQ.png?scale-down-to=1024\"},className:\"framer-17oquci\",\"data-border\":true,\"data-framer-name\":\"Mockup 12\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2160,pixelWidth:2880,src:\"https://framerusercontent.com/images/zMoikKiyLnMWM0uyfsNbC7n74.jpg?scale-down-to=1024\"},className:\"framer-lffa0q\",\"data-border\":true,\"data-framer-name\":\"Mockup 13\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2160,pixelWidth:2880,src:\"https://framerusercontent.com/images/6SR235WiFJXZagKkntK8dYMWT8.png?scale-down-to=1024\"},className:\"framer-1g9je48\",\"data-border\":true,\"data-framer-name\":\"Mockup 1\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1600,src:\"https://framerusercontent.com/images/nM3y9dDWAA1DOK6FvojTpkbd8.webp?scale-down-to=1024\"},className:\"framer-miki2g\",\"data-border\":true,\"data-framer-name\":\"Mockup 2\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/C500LTlX4hDlPwly75YGI61VU.png?scale-down-to=1024\"},className:\"framer-uyyva6\",\"data-border\":true,\"data-framer-name\":\"Mockup 3\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/x7HWVKUDYgzS866CYnqmoieD5Ts.png\"},className:\"framer-uik5qi\",\"data-border\":true,\"data-framer-name\":\"Mockup 4\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/TZCJ8q3KUPnF2JbA2GjhHILizxI.png?scale-down-to=1024\"},className:\"framer-1wqwjuj\",\"data-border\":true,\"data-framer-name\":\"Mockup 5\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1600,src:\"https://framerusercontent.com/images/GDujFR3FmyH2faC0Jibp7UsuDTg.webp?scale-down-to=1024\"},className:\"framer-1nc15up\",\"data-border\":true,\"data-framer-name\":\"Mockup 6\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/hlakPT63tiVAZYhBKoNABpJW74Y.png?scale-down-to=1024\"},className:\"framer-c0ss6y\",\"data-border\":true,\"data-framer-name\":\"Mockup 7\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/3Z5ymuayhz2EKgU8JPgvMhbtBHk.png?scale-down-to=1024\"},className:\"framer-12orp28\",\"data-border\":true,\"data-framer-name\":\"Mockup 8\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1600,src:\"https://framerusercontent.com/images/f2xQORfnet3sL4C9DKr4BvqOiQ.webp?scale-down-to=1024\"},className:\"framer-wv4xkr\",\"data-border\":true,\"data-framer-name\":\"Mockup 9\",whileHover:animation8}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1600,src:\"https://framerusercontent.com/images/aUBjWa6oJv2mbLbj1TJgjOKfAeQ.webp?scale-down-to=1024\"},className:\"framer-1rq53na\",\"data-border\":true,\"data-framer-name\":\"Mockup 10\",whileHover:animation8})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-113e9ip\",\"data-framer-name\":\"Services Section\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-171jsnd\",\"data-framer-name\":\"Services & Features\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d3i1q8\",\"data-framer-name\":\"Effect\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hvptrr\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12586h6\",\"data-framer-name\":\"Background pattern\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1473,intrinsicWidth:2552,svg:'<svg width=\"2552\" height=\"1473\" viewBox=\"0 0 2552 1473\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_18005_10391\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"183\" y=\"105\" width=\"2187\" height=\"1263\">\\n<rect width=\"1262.4\" height=\"1262.4\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 183.099 736.399)\" fill=\"url(#paint0_radial_18005_10391)\"/>\\n</mask>\\n<g mask=\"url(#mask0_18005_10391)\">\\n<g clip-path=\"url(#clip0_18005_10391)\">\\n<g clip-path=\"url(#clip1_18005_10391)\">\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 61.624 806.532)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 122.361 771.466)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 183.098 736.399)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 243.835 701.332)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 304.572 666.266)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 365.31 631.199)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 426.047 596.132)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 486.784 561.066)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 547.521 525.999)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 608.258 490.933)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 668.995 455.866)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 729.732 420.799)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 790.469 385.733)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 851.206 350.666)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 911.943 315.6)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 972.681 280.533)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1033.42 245.466)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1094.15 210.4)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1154.89 175.333)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1215.63 140.267)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1276.37 105.2)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1337.1 70.1335)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1397.84 35.0668)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n</g>\\n<g clip-path=\"url(#clip2_18005_10391)\">\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 61.624 876.665)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 122.361 911.732)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 183.098 946.798)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 243.835 981.865)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 304.572 1016.93)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 365.31 1052)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 426.047 1087.06)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 486.784 1122.13)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 547.521 1157.2)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 608.258 1192.26)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 668.995 1227.33)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 729.732 1262.4)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 790.47 1297.46)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 851.206 1332.53)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 911.943 1367.6)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 972.681 1402.66)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 1033.42 1437.73)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<radialGradient id=\"paint0_radial_18005_10391\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(631.199 631.199) rotate(90) scale(631.199 631.199)\">\\n<stop/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<clipPath id=\"clip0_18005_10391\">\\n<rect width=\"1683.2\" height=\"1262.4\" fill=\"white\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 0.886719 841.599)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18005_10391\">\\n<rect width=\"1683.2\" height=\"1262.4\" fill=\"white\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 0.886719 841.599)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_18005_10391\">\\n<rect width=\"1683.2\" height=\"1262.4\" fill=\"white\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 0.886719 841.599)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rezq98\",\"data-framer-name\":\"Heading Sub Heading\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d55t3u\",\"data-framer-name\":\"Sub Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(250, 196, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"Services\"})}),className:\"framer-1vs8u8c\",\"data-framer-name\":\"Services & Features\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7fndm7\",\"data-framer-name\":\"Heading and supporting text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Crafting intuitive experiences tailored to\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"your needs\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Crafting intuitive experiences tailored to\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"your needs\"})]})}),className:\"framer-uxpa05\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Syne-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-199rpj6\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2jc3r0\",\"data-framer-name\":\"Container 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u4aq67\",\"data-border\":true,\"data-framer-name\":\"Card 02\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bi276z\",\"data-framer-name\":\"Container 01\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2qzhs7\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wxwnm8 hidden-72rtr7 hidden-1j4blxu\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xk4rb\",\"data-border\":true,\"data-framer-name\":\"Frame\",whileHover:animation13,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gg916p\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p79tbv\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16rc6bb\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15pe6vh\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ybadr6\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w3wkmw\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z03aoz\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hud1ys\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xmqcbz\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1upkkzz\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qadyja\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sq3ied\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vhvku6\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nhv7co\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p2gnup\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u868iv\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xkwivr\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-we6ooe\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10aj6d9\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ljmv6g\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c1cnhb\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-atfey4\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13p34nl\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6i0et\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gjwq2v\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-154hb6a\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2dei7g\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8bncog\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-unhy68\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ltjer8\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-edv01w\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hlys3w\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h32pu4\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s0mua7\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rpyjnp\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o5s6ty\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wolfdn\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yn9qf6\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b1q8aw\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8at7xr\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mecpge\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i84jtv\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-44gkqw\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f0akab\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11n8lj2\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-snllmk\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a28gbg\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bb8h7\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n746uv\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y74ein\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x4vqqr\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x5r7qz\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qocibf\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x77qlc\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t3gnv2\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5k3wee\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yfhwa8\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n2fzh5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vdk4fk\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bvzwxl\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b8yvin\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-90iozf\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14hdv6l\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ld568g\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hm16uu\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1scro8q\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n2c6vj\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tr02u1\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h3sa7a\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j8ifnw\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-my9xqi\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kkz6pt\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lr028l\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dvr1qg\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tvwhlt\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ru7zdv\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d5oo9i\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13cufoe\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17qpyot\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1imk6c3\",\"data-framer-name\":\"Rectangle\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t56oj5\",\"data-border\":true,\"data-framer-name\":\"Frame\",whileHover:animation13,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13bvyux\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sefjr6\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vwytbb\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-egdxbf\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-emav2q\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-158ix8j\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r986le\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7bm7yo\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f6kg4g\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uz853n\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-izcud3\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vs4jjm\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kfrpoh\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7x5eq9\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7o1xos\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17h3ha1\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ovh202\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l22snd\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pmpcy\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sj9i4b\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fqmkzm\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ei882k\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sd6zkx\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-98dwub\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-182j8im\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7vv9y\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xmemrf\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-reckgb\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lcaa9c\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y7rbqi\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ljhqjp\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12waj95\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zz7w1g\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-159lced\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19wgs7k\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gn764p\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-snw2yu\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17fzdab\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a864vr\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b2qfe2\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-141ntgx\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19ke9y1\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v8pm1a\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hf67xg\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g47nq8\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mdi2ki\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z5yliu\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-164ykss\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-euoh8c\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ja23dz\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-171q526\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l50dj5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-198q41\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jxm51m\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-73s39w\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dwilkx\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1knxrtn\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ooinx9\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-geh3nk\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j2agn8\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fgzv88\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wxfqeo\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e9yq45\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eyi5s5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n8ssgm\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ef2sr\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-869rbf\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yylsyn\",\"data-framer-name\":\"Rectangle\"})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7497yh hidden-1opd900\",\"data-framer-name\":\"Mockups\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17sce5h hidden-1j4blxu\",\"data-border\":true,\"data-framer-name\":\"Mockup 2\",whileHover:animation13,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-c7rj1g\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v621lc\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ar80ka\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ba5wo5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1az8mh8\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rbyfz5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u7zwta\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zc2qzn\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gf6ogz\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10mnptn\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19s65p3\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-le0ptt\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x6yuaz\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-84ztg3\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i512os\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wvdnig\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-113653h\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-stdhyu\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9mllx1\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bhfqlt\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4b650l\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kswhxp\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rn3jlw\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1quvwa1\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tkvb7w\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-151gqki\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j1gz3g\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lpez3v\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p0vdiu\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ht2dw4\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-scsmhe\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hwacdr\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pfrioa\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dnjnns\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kdz1d3\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18l2jzi\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-76eypj\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qkqrid\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jxcryq\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13wr9fi\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u925ma\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y7hghz\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7bbe0l\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m71tfl\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-59uvlr\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h2vbxv\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17g5r7p\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oyj4dm\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b7282n\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xmrza3\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v9hgau\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gi0zsg\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11f7o6z\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ykezbk\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c6cuee\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j42ghy\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1we2r78\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10wlvdd\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1krc9im\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11m84e5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o19bye\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-alrm69\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gxhpc1\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hoxb22\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1llgth4\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zpwnjd\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-erwrj\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11s6u4b\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b17ns8\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-inhryv\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dscc64\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m7faiz\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nue3i5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lh3078\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14qdffe\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1th3rzk\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wkfbsr\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1zxws5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jib3d7\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-140s1cj\",\"data-framer-name\":\"Rectangle\"})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10aqqim hidden-1j4blxu\",\"data-border\":true,\"data-framer-name\":\"Mockup 1\",whileHover:animation13,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l1fn2k\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yzryi1\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m66lac\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lglj9t\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t78y8s\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15ubtyg\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dc0udv\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-clg5k4\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bnenuq\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uspoh5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jvi7up\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hsc574\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4z4mzc\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hnky8i\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wfhlvb\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-199b751\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s4j80f\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ov5rit\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h81sk8\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jldeii\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pemi4b\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pntw8i\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qwmrrh\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2yvyrm\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gx1s2r\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nc0dkc\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k3mt8k\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n0k1vi\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b0m885\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14wousx\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zki2rp\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nxe6s9\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14xutp9\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k77x5i\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dfnzf9\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rqlm7n\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cllw1g\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-199p25z\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n35g2t\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7qrj4j\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hmki9u\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2n9sw5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u98fdx\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i5ywvj\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cf93s5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-174m0u7\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y7syz6\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-odffjz\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vhji1y\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i8yxcu\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bpg1y3\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13jfcqu\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fm9xx9\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ynpjqt\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jlyfqj\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-koqpeq\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-67r9tu\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x848b8\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bqdl40\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-24qj4u\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f3julj\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qrx4il\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18mkh3m\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-abgw9l\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q9sowy\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8hycpj\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1txcqax\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1euwgxa\",\"data-framer-name\":\"Rectangle\"})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-950lu1 hidden-72rtr7 hidden-1opd900\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1m88a4k hidden-72rtr7\",\"data-border\":true,\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qubq7d\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aeigda\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-858zbo\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x4zg9x\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11f8ufb\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y7nl2h\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fucgdk\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4rzni7\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k16mwh\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f62wwj\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d3jth1\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fpawjb\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19u2i9u\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oe315t\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zu199b\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t9y98g\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-138ypl0\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mf6ow5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bfe6z3\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19bdtgd\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pc2di0\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dy4bfj\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wpcf4v\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xp3ulp\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16rxd5d\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tgn3k4\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zz75mx\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ji2xo1\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nh057n\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oxb3b4\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13nf7uw\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7qm0ne\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-85ivw5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gixv5a\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xj2hnp\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zgaxg2\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14gli47\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qyfzjj\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qon2p6\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3yn6hp\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uqd1dz\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12wrrnz\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bvs3f6\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jasn3j\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5fkwp3\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1okl4q5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-166pcxq\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v784co\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sjm2o1\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r7grqu\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bx3zq1\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ac52ot\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13exg8u\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xkehcj\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v6d2iq\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-32em9v\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gom5j1\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kw69v3\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17oqt6k\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j8hqd9\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e16q5u\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-301nwu\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tuvy2d\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zq9kc1\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oxezmh\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yd0rj\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aal942\",\"data-framer-name\":\"Ellipse\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iyzyfo\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18ic917\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bu4yuw\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15zryxc\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3qe99p\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9olqhy\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ftcze8\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x67zk0\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12xjkcp\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tf6wpu\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kuh7z5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o4zg8k\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ur1dt5\",\"data-framer-name\":\"Rectangle\"})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-f4xx9y hidden-72rtr7\",\"data-border\":true,\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vn6gdm\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6znp3e\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-30u5mv\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sfkmel\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i2avc3\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ztg0d5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f1rvob\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-reg39h\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hkdbd8\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-38qh3l\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14xr4pk\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-133pzqg\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jzhzeh\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m80l3i\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14brktr\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tm27ke\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ppu4pf\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1huxpxk\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11s5zkh\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h66jv6\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kk0auu\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h4kdij\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1czfe7f\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j78pe0\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pnw141\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f0uit\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-agu18k\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l8he6l\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zd4doc\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18v1eir\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fgeeql\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-occzyc\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ddnoeb\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ao1yub\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e2cmrw\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vuviec\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fukma9\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fp40w0\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mo24o4\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k6eri6\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hqpk3f\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17bcq43\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vdz2wv\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d2amnj\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w4atpr\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d80oas\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xzkbtd\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b8c6nd\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t3phr7\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jtltry\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1arns82\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vxyso9\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x8fx5\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fwiyek\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19nb3az\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-en6l52\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15zb2f9\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-akgwqq\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yunu7u\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-igbtr2\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-je0o6w\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ij6un\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dz1oln\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cs4967\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-holu82\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zy3dus\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pbqosv\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-128x4ly\",\"data-framer-name\":\"Rectangle\"})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hl5vpb\",\"data-framer-name\":\"Effect\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b03fyw\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Mobile App Designs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Mobile App Designs\"})}),className:\"framer-16yh7bz\",\"data-framer-name\":\"Website & Dashboard Designs\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"I provide custom mobile app design services focused on user experience and intuitive interfaces, creating visually stunning and engaging apps.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"I provide custom mobile app design services focused on user experience and intuitive interfaces, creating visually stunning and engaging apps.\"})}),className:\"framer-1wfwdiu\",\"data-framer-name\":\"As a UI/UX designer, I create user-friendly websites & Dashboard Designs by understanding clients' brand, user problems and goals to drive impactful design.\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-24jha6\",\"data-border\":true,\"data-framer-name\":\"Card 02\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wfo7x6\",\"data-framer-name\":\"Container 01\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11itc2r\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mj0o7q hidden-1j4blxu\",\"data-framer-name\":\"Mockups\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4r8kt\",\"data-framer-name\":\"Mockup 2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xzp735\",\"data-framer-name\":\"Hero Sections\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:591,intrinsicWidth:883,svg:'<svg width=\"883\" height=\"591\" viewBox=\"0 0 883 591\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18005_10619)\">\\n<rect width=\"469.358\" height=\"593\" rx=\"10.1814\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 0 260.353)\" fill=\"#878787\" fill-opacity=\"0.07\"/>\\n<rect width=\"469.358\" height=\"26.0755\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 0.000976562 260.353)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect width=\"2.78486\" height=\"2.62284\" rx=\"1.31142\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 61.2754 229.642)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.30155\" height=\"5.02939\" rx=\"2.15078\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 47.3477 242.17)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"2.16319\" height=\"5.96566\" rx=\"1.08159\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 51.0869 238.53)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"12.0543\" height=\"5.02939\" rx=\"2.5147\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 63.6738 231.31)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.2709\" height=\"4.79303\" rx=\"2.13545\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 74.5264 224.137)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.27093\" height=\"4.79303\" rx=\"2.13546\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 54.6914 237.472)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.58837\" height=\"6.75885\" rx=\"2.29419\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 57.4658 233.527)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"6.10987\" height=\"6.10987\" rx=\"3.05494\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 39.4512 246.221)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.41637\" height=\"4.07429\" rx=\"2.03715\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 41.2119 245.517)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<g clip-path=\"url(#clip1_18005_10619)\">\\n<rect width=\"7.1965\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 144.523 173.92)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip2_18005_10619)\">\\n<rect width=\"3.25943\" height=\"1.62972\" rx=\"0.814858\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 191.12 146.521)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"20.0474\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 165.608 159.864)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip3_18005_10619)\">\\n<rect width=\"21.5895\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 201.124 136.188)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip4_18005_10619)\">\\n<rect width=\"10.2807\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 232.045 115.573)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip5_18005_10619)\">\\n<rect width=\"8.22458\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 320.991 56.2742)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip6_18005_10619)\">\\n<rect width=\"13.3649\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 346.84 39.042)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip7_18005_10619)\">\\n<mask id=\"path-21-inside-1_18005_10619\" fill=\"white\">\\n<path d=\"M482.674 531.577C354.171 500.458 287.551 405.559 333.875 319.615C380.198 233.671 521.922 189.227 650.425 220.346C778.928 251.465 845.548 346.364 799.225 432.308C752.902 518.252 611.177 562.696 482.674 531.577Z\"/>\\n</mask>\\n<path d=\"M482.674 531.577C354.171 500.458 287.551 405.559 333.875 319.615C380.198 233.671 521.922 189.227 650.425 220.346C778.928 251.465 845.548 346.364 799.225 432.308C752.902 518.252 611.177 562.696 482.674 531.577Z\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<path d=\"M798.881 432.225C752.626 518.042 611.111 562.421 482.798 531.347L482.55 531.807C611.243 562.972 753.177 518.462 799.568 432.391L798.881 432.225ZM650.301 220.576C778.615 251.649 845.136 346.408 798.881 432.225L799.568 432.391C845.96 346.32 779.242 251.281 650.549 220.116L650.301 220.576ZM334.218 319.698C380.473 233.881 521.988 189.503 650.301 220.576L650.549 220.116C521.857 188.951 379.923 233.461 333.531 319.532L334.218 319.698ZM333.531 319.532C287.139 405.603 353.858 500.642 482.55 531.807L482.798 531.347C354.485 500.274 287.963 405.516 334.218 319.698L333.531 319.532Z\" fill=\"#4C4C4C\" fill-opacity=\"0.2\" mask=\"url(#path-21-inside-1_18005_10619)\"/>\\n<rect width=\"329.497\" height=\"20.5344\" rx=\"10.2672\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 92.6074 281.9)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.427213\" y=\"0.000734048\" width=\"328.983\" height=\"20.0204\" rx=\"10.0102\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 92.6786 282.138)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.514036\"/>\\n<rect width=\"362.395\" height=\"20.5344\" rx=\"10.2672\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 116.959 298.256)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.427213\" y=\"0.000734048\" width=\"361.881\" height=\"20.0204\" rx=\"10.0102\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 117.03 298.494)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.514036\"/>\\n<rect width=\"247.251\" height=\"5.70401\" rx=\"2.852\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 208.923 278.722)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.427213\" y=\"0.000734048\" width=\"246.737\" height=\"5.18997\" rx=\"2.59498\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 208.994 278.959)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.514036\"/>\\n<rect width=\"160.379\" height=\"5.70401\" rx=\"2.852\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 215.688 283.266)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.427213\" y=\"0.000734048\" width=\"159.865\" height=\"5.18997\" rx=\"2.59498\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 215.759 283.503)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.514036\"/>\\n<g clip-path=\"url(#clip8_18005_10619)\">\\n<rect width=\"41.8237\" height=\"16.0472\" rx=\"2.60755\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 302.528 255.974)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect width=\"25.7018\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 311.196 254.54)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip9_18005_10619)\">\\n<rect width=\"26.7299\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 349.251 229.169)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.427213\" y=\"0.000734048\" width=\"26.2158\" height=\"4.04917\" rx=\"2.02458\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 349.322 229.407)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.514036\"/>\\n<g clip-path=\"url(#clip10_18005_10619)\">\\n<rect width=\"3.80267\" height=\"3.80267\" rx=\"1.90134\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 378.768 211.949)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.427213\" y=\"0.000734048\" width=\"3.28863\" height=\"3.28863\" rx=\"1.64432\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 378.839 212.186)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.514036\"/>\\n</g>\\n</g>\\n<mask id=\"path-38-inside-2_18005_10619\" fill=\"white\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M495.281 331.595C502.805 326.579 502.819 318.426 495.313 313.384C487.806 308.342 475.622 308.321 468.098 313.337C460.574 318.353 460.56 326.506 468.066 331.548C475.573 336.59 487.758 336.611 495.281 331.595ZM477.869 318.191C475.283 319.915 475.278 322.718 477.858 324.451L478.708 325.022C481.288 326.755 485.477 326.762 488.063 325.038C490.649 323.314 490.654 320.511 488.074 318.778L487.224 318.207C484.644 316.474 480.455 316.467 477.869 318.191Z\"/>\\n</mask>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M495.281 331.595C502.805 326.579 502.819 318.426 495.313 313.384C487.806 308.342 475.622 308.321 468.098 313.337C460.574 318.353 460.56 326.506 468.066 331.548C475.573 336.59 487.758 336.611 495.281 331.595ZM477.869 318.191C475.283 319.915 475.278 322.718 477.858 324.451L478.708 325.022C481.288 326.755 485.477 326.762 488.063 325.038C490.649 323.314 490.654 320.511 488.074 318.778L487.224 318.207C484.644 316.474 480.455 316.467 477.869 318.191Z\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<path d=\"M488.074 318.778L487.648 319.062L488.074 318.778ZM487.224 318.207L487.65 317.923L487.224 318.207ZM494.887 313.668C502.159 318.552 502.145 326.45 494.857 331.31L495.706 331.88C503.465 326.707 503.48 318.299 495.738 313.1L494.887 313.668ZM468.522 313.622C475.811 308.763 487.615 308.784 494.887 313.668L495.738 313.1C487.997 307.901 475.432 307.879 467.673 313.052L468.522 313.622ZM468.492 331.264C461.22 326.38 461.234 318.482 468.522 313.622L467.673 313.052C459.914 318.224 459.9 326.633 467.641 331.832L468.492 331.264ZM494.857 331.31C487.568 336.169 475.764 336.148 468.492 331.264L467.641 331.832C475.382 337.031 487.947 337.053 495.706 331.88L494.857 331.31ZM478.284 324.167C475.938 322.592 475.943 320.044 478.294 318.477L477.444 317.906C474.623 319.787 474.618 322.844 477.433 324.735L478.284 324.167ZM479.134 324.738L478.284 324.167L477.433 324.735L478.282 325.306L479.134 324.738ZM487.638 324.753C485.287 326.32 481.479 326.314 479.134 324.738L478.282 325.306C481.097 327.196 485.666 327.204 488.488 325.323L487.638 324.753ZM487.648 319.062C489.994 320.637 489.989 323.185 487.638 324.753L488.488 325.323C491.309 323.442 491.314 320.385 488.5 318.494L487.648 319.062ZM486.799 318.491L487.648 319.062L488.5 318.494L487.65 317.923L486.799 318.491ZM478.294 318.477C480.645 316.909 484.453 316.916 486.799 318.491L487.65 317.923C484.835 316.033 480.266 316.025 477.444 317.906L478.294 318.477Z\" fill=\"#4C4C4C\" fill-opacity=\"0.2\" mask=\"url(#path-38-inside-2_18005_10619)\"/>\\n<rect width=\"43.0658\" height=\"43.0658\" rx=\"21.5329\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 174.982 353.189)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<g clip-path=\"url(#clip11_18005_10619)\">\\n<rect width=\"3.58882\" height=\"3.58882\" rx=\"1.79441\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 200.692 354.1)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"5.98435\" height=\"3.58882\" rx=\"1.79441\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 203.555 357.384)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"3.58882\" height=\"3.58882\" rx=\"1.79441\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 211.065 345.205)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"5.98435\" height=\"3.58882\" rx=\"1.79441\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 214.79 347.75)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"5.38322\" height=\"5.38322\" rx=\"2.69161\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 203.983 349.556)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"9.86925\" height=\"4.48602\" rx=\"2.24301\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 208.6 354.205)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n</g>\\n<rect width=\"469.358\" height=\"96.8811\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 411.85 536.966)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.27089\" y=\"0.000465449\" width=\"469.032\" height=\"96.5552\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 411.895 537.117)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.325943\"/>\\n<rect width=\"14.3415\" height=\"14.3415\" rx=\"7.17075\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 486.395 543.482)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"37.1192\" height=\"7.1186\" rx=\"3.5593\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 504.253 535.375)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"12.3858\" height=\"13.4456\" rx=\"6.19292\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 539.383 508.654)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"37.8218\" height=\"9.4693\" rx=\"4.73465\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 555.535 501.112)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"9.24168\" height=\"1.89013\" rx=\"0.945065\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 593.894 473.059)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"8.64998\" height=\"1.89013\" rx=\"0.945064\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 597.289 473.363)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"8.25552\" height=\"1.90153\" rx=\"0.950767\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 600.589 473.666)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"9.24168\" height=\"1.89012\" rx=\"0.945062\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 602.28 478.817)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"8.64998\" height=\"1.89013\" rx=\"0.945066\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 599.378 478.185)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"8.25552\" height=\"1.89013\" rx=\"0.945066\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 596.405 477.632)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"46.9085\" height=\"6.6349\" rx=\"3.31745\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 608.685 466.304)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<circle cx=\"7.17075\" cy=\"7.17075\" r=\"7.17075\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 651.085 433.78)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<circle cx=\"7.17075\" cy=\"7.17075\" r=\"6.68184\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 651.085 433.78)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.3\" stroke-width=\"0.977829\"/>\\n<ellipse cx=\"663.003\" cy=\"433.801\" rx=\"4.98025\" ry=\"5.63969\" transform=\"matrix(0.999999 0.00256776 -0.00114975 0.999999 0.499741 -1.70179)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<path d=\"M667.408 433.809C667.406 435.309 666.865 436.648 666.023 437.599C665.173 438.557 664.083 439.058 662.994 439.056C661.904 439.054 660.816 438.55 659.969 437.588C659.131 436.635 658.595 435.294 658.597 433.794C658.6 432.293 659.14 430.954 659.982 430.004C660.832 429.045 661.922 428.544 663.012 428.546C664.102 428.548 665.19 429.052 666.036 430.014C666.875 430.967 667.411 432.308 667.408 433.809Z\" stroke=\"#4C4C4C\" stroke-opacity=\"0.3\" stroke-width=\"0.977829\"/>\\n<ellipse cx=\"663.003\" cy=\"433.801\" rx=\"3.33254\" ry=\"8.42812\" transform=\"matrix(0.00171822 -0.66915 1.49443 0.00171822 13.5803 876.704)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<path d=\"M663.008 430.853C665.251 430.856 667.253 431.22 668.674 431.785C670.108 432.355 670.858 433.085 670.857 433.814C670.855 434.543 670.103 435.271 668.667 435.836C667.244 436.396 665.241 436.752 662.998 436.749C660.755 436.745 658.754 436.381 657.332 435.816C655.898 435.246 655.148 434.516 655.15 433.787C655.151 433.058 655.903 432.33 657.339 431.765C658.763 431.206 660.766 430.849 663.008 430.853Z\" stroke=\"#4C4C4C\" stroke-opacity=\"0.3\" stroke-width=\"0.977829\"/>\\n<rect width=\"36.1491\" height=\"9.06448\" rx=\"4.53224\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 668.646 425.715)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"14.3415\" height=\"14.3415\" rx=\"7.17075\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 702.543 399.383)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"46.7904\" height=\"7.14793\" rx=\"3.57397\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 719.713 391.67)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<g clip-path=\"url(#clip12_18005_10619)\">\\n<rect width=\"13.9442\" height=\"13.9917\" rx=\"6.97209\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 762.84 359.544)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n</g>\\n<rect width=\"41.1849\" height=\"6.90356\" rx=\"3.45178\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 780.312 351.488)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"209.727\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 468.2 534.163)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"54.7585\" height=\"54.7585\" rx=\"27.3792\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 680.391 287.233)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<g clip-path=\"url(#clip13_18005_10619)\">\\n<rect width=\"22.2444\" height=\"10.8373\" rx=\"5.41865\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 706.205 284.798)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"27.3792\" height=\"26.2384\" rx=\"13.1192\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 704.03 285.934)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n</g>\\n</g>\\n</g>\\n<rect x=\"3.32438\" y=\"0.00571203\" width=\"465.358\" height=\"589\" rx=\"8.18138\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 0.553587 262.2)\" stroke=\"#FAC515\" stroke-opacity=\"0.5\" stroke-width=\"4\"/>\\n<defs>\\n<clipPath id=\"clip0_18005_10619\">\\n<rect width=\"469.358\" height=\"593\" rx=\"10.1814\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 0 260.353)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18005_10619\">\\n<rect width=\"14.907\" height=\"8.22458\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 144.524 173.92)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_18005_10619\">\\n<rect width=\"32.258\" height=\"8.22458\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 165.607 159.865)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_18005_10619\">\\n<rect width=\"26.7299\" height=\"8.22458\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 201.125 136.187)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_18005_10619\">\\n<rect width=\"17.9913\" height=\"8.22458\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 232.045 115.573)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_18005_10619\">\\n<rect width=\"27.155\" height=\"14.7434\" rx=\"2.60755\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 313.405 57.7114)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip6_18005_10619\">\\n<rect width=\"30.7533\" height=\"14.7434\" rx=\"2.60755\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 339.253 40.479)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip7_18005_10619\">\\n<rect width=\"469.358\" height=\"566.924\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 21.6475 274.891)\"/>\\n</clipPath>\\n<clipPath id=\"clip8_18005_10619\">\\n<rect width=\"41.8237\" height=\"16.0472\" rx=\"2.60755\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 302.528 255.974)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip9_18005_10619\">\\n<rect width=\"50.8123\" height=\"16.0472\" rx=\"2.60755\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 340.582 230.604)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip10_18005_10619\">\\n<rect width=\"6.51886\" height=\"6.51886\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 376.509 211.946)\"/>\\n</clipPath>\\n<clipPath id=\"clip11_18005_10619\">\\n<rect width=\"21.5329\" height=\"21.5329\" fill=\"white\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 192.742 351.734)\"/>\\n</clipPath>\\n<clipPath id=\"clip12_18005_10619\">\\n<rect width=\"14.3415\" height=\"14.3415\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 762.479 359.426)\"/>\\n</clipPath>\\n<clipPath id=\"clip13_18005_10619\">\\n<rect width=\"27.3792\" height=\"27.3792\" fill=\"white\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 702.972 285.383)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dv6ibb\",\"data-framer-name\":\"Mockup 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-v9av23\",\"data-framer-name\":\"Hero Sections\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:591,intrinsicWidth:883,svg:'<svg width=\"883\" height=\"591\" viewBox=\"0 0 883 591\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18005_10733)\">\\n<rect width=\"469.358\" height=\"593\" rx=\"10.1814\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 0 260.353)\" fill=\"#242424\"/>\\n<rect width=\"469.358\" height=\"26.0755\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 0.000976562 260.353)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect width=\"2.78486\" height=\"2.62284\" rx=\"1.31142\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 61.2754 229.642)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.30155\" height=\"5.02939\" rx=\"2.15078\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 47.3477 242.17)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"2.16319\" height=\"5.96566\" rx=\"1.08159\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 51.0869 238.53)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"12.0543\" height=\"5.02939\" rx=\"2.5147\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 63.6738 231.31)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.2709\" height=\"4.79303\" rx=\"2.13545\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 74.5264 224.137)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.27093\" height=\"4.79303\" rx=\"2.13546\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 54.6914 237.472)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.58837\" height=\"6.75885\" rx=\"2.29419\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 57.4658 233.527)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"6.10987\" height=\"6.10987\" rx=\"3.05494\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 39.4512 246.221)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.41637\" height=\"4.07429\" rx=\"2.03715\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 41.2119 245.517)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<g clip-path=\"url(#clip1_18005_10733)\">\\n<rect width=\"7.1965\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 144.523 173.92)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip2_18005_10733)\">\\n<rect width=\"3.25943\" height=\"1.62972\" rx=\"0.814858\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 191.12 146.521)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"20.0474\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 165.608 159.864)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip3_18005_10733)\">\\n<rect width=\"21.5895\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 201.124 136.188)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip4_18005_10733)\">\\n<rect width=\"10.2807\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 232.045 115.573)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip5_18005_10733)\">\\n<rect width=\"8.22458\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 320.991 56.2742)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip6_18005_10733)\">\\n<rect width=\"13.3649\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 346.84 39.0419)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip7_18005_10733)\">\\n<mask id=\"path-21-inside-1_18005_10733\" fill=\"white\">\\n<path d=\"M482.674 531.577C354.171 500.458 287.551 405.559 333.875 319.615C380.198 233.671 521.922 189.227 650.425 220.346C778.928 251.465 845.548 346.364 799.225 432.308C752.902 518.252 611.177 562.696 482.674 531.577Z\"/>\\n</mask>\\n<path d=\"M482.674 531.577C354.171 500.458 287.551 405.559 333.875 319.615C380.198 233.671 521.922 189.227 650.425 220.346C778.928 251.465 845.548 346.364 799.225 432.308C752.902 518.252 611.177 562.696 482.674 531.577Z\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<path d=\"M798.881 432.225C752.626 518.042 611.111 562.421 482.798 531.347L482.55 531.807C611.243 562.972 753.177 518.462 799.568 432.391L798.881 432.225ZM650.301 220.576C778.615 251.649 845.136 346.408 798.881 432.225L799.568 432.391C845.96 346.32 779.242 251.281 650.549 220.116L650.301 220.576ZM334.218 319.698C380.473 233.881 521.988 189.503 650.301 220.576L650.549 220.116C521.857 188.951 379.923 233.461 333.531 319.532L334.218 319.698ZM333.531 319.532C287.139 405.603 353.858 500.642 482.55 531.807L482.798 531.347C354.485 500.274 287.963 405.516 334.218 319.698L333.531 319.532Z\" fill=\"#4C4C4C\" fill-opacity=\"0.2\" mask=\"url(#path-21-inside-1_18005_10733)\"/>\\n<rect width=\"329.497\" height=\"20.5344\" rx=\"10.2672\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 92.6074 281.9)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.427213\" y=\"0.000734048\" width=\"328.983\" height=\"20.0204\" rx=\"10.0102\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 92.6786 282.138)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.514036\"/>\\n<rect width=\"362.395\" height=\"20.5344\" rx=\"10.2672\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 116.959 298.256)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.427213\" y=\"0.000734048\" width=\"361.881\" height=\"20.0204\" rx=\"10.0102\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 117.03 298.494)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.514036\"/>\\n<rect width=\"247.251\" height=\"5.70401\" rx=\"2.852\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 208.923 278.722)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.427213\" y=\"0.000734048\" width=\"246.737\" height=\"5.18997\" rx=\"2.59498\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 208.994 278.959)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.514036\"/>\\n<rect width=\"160.379\" height=\"5.70401\" rx=\"2.852\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 215.688 283.266)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.427213\" y=\"0.000734048\" width=\"159.865\" height=\"5.18997\" rx=\"2.59498\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 215.759 283.503)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.514036\"/>\\n<g clip-path=\"url(#clip8_18005_10733)\">\\n<rect width=\"41.8237\" height=\"16.0472\" rx=\"2.60755\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 302.528 255.974)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect width=\"25.7018\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 311.196 254.54)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip9_18005_10733)\">\\n<rect width=\"26.7299\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 349.251 229.169)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.427213\" y=\"0.000734048\" width=\"26.2158\" height=\"4.04917\" rx=\"2.02458\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 349.322 229.407)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.514036\"/>\\n<g clip-path=\"url(#clip10_18005_10733)\">\\n<rect width=\"3.80267\" height=\"3.80267\" rx=\"1.90134\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 378.768 211.949)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.427213\" y=\"0.000734048\" width=\"3.28863\" height=\"3.28863\" rx=\"1.64432\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 378.839 212.186)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.514036\"/>\\n</g>\\n</g>\\n<mask id=\"path-38-inside-2_18005_10733\" fill=\"white\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M495.281 331.595C502.805 326.579 502.819 318.426 495.313 313.384C487.806 308.342 475.622 308.321 468.098 313.337C460.574 318.353 460.56 326.506 468.066 331.548C475.573 336.59 487.758 336.611 495.281 331.595ZM477.869 318.191C475.283 319.915 475.278 322.718 477.858 324.451L478.708 325.022C481.288 326.755 485.477 326.762 488.063 325.038C490.649 323.314 490.654 320.511 488.074 318.778L487.224 318.207C484.644 316.474 480.455 316.467 477.869 318.191Z\"/>\\n</mask>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M495.281 331.595C502.805 326.579 502.819 318.426 495.313 313.384C487.806 308.342 475.622 308.321 468.098 313.337C460.574 318.353 460.56 326.506 468.066 331.548C475.573 336.59 487.758 336.611 495.281 331.595ZM477.869 318.191C475.283 319.915 475.278 322.718 477.858 324.451L478.708 325.022C481.288 326.755 485.477 326.762 488.063 325.038C490.649 323.314 490.654 320.511 488.074 318.778L487.224 318.207C484.644 316.474 480.455 316.467 477.869 318.191Z\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<path d=\"M477.858 324.451L478.284 324.167L477.858 324.451ZM478.708 325.022L478.282 325.306L478.708 325.022ZM488.074 318.778L488.5 318.494L488.074 318.778ZM487.224 318.207L486.799 318.491L487.224 318.207ZM494.887 313.668C502.159 318.552 502.145 326.45 494.857 331.31L495.706 331.88C503.465 326.707 503.48 318.299 495.738 313.1L494.887 313.668ZM468.522 313.622C475.811 308.763 487.615 308.784 494.887 313.668L495.738 313.1C487.997 307.901 475.432 307.879 467.673 313.052L468.522 313.622ZM468.492 331.264C461.22 326.38 461.234 318.482 468.522 313.622L467.673 313.052C459.914 318.224 459.9 326.633 467.641 331.832L468.492 331.264ZM494.857 331.31C487.568 336.169 475.764 336.148 468.492 331.264L467.641 331.832C475.382 337.031 487.947 337.053 495.706 331.88L494.857 331.31ZM478.284 324.167C475.938 322.592 475.943 320.044 478.294 318.477L477.444 317.906C474.623 319.787 474.618 322.844 477.433 324.735L478.284 324.167ZM479.134 324.738L478.284 324.167L477.433 324.735L478.282 325.306L479.134 324.738ZM487.638 324.753C485.287 326.32 481.479 326.314 479.134 324.738L478.282 325.306C481.097 327.196 485.666 327.204 488.488 325.323L487.638 324.753ZM487.648 319.062C489.994 320.637 489.989 323.185 487.638 324.753L488.488 325.323C491.309 323.442 491.314 320.385 488.5 318.494L487.648 319.062ZM486.799 318.491L487.648 319.062L488.5 318.494L487.65 317.923L486.799 318.491ZM478.294 318.477C480.645 316.909 484.453 316.916 486.799 318.491L487.65 317.923C484.835 316.033 480.266 316.025 477.444 317.906L478.294 318.477Z\" fill=\"#4C4C4C\" fill-opacity=\"0.2\" mask=\"url(#path-38-inside-2_18005_10733)\"/>\\n<rect width=\"43.0658\" height=\"43.0658\" rx=\"21.5329\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 174.982 353.189)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<g clip-path=\"url(#clip11_18005_10733)\">\\n<rect width=\"3.58882\" height=\"3.58882\" rx=\"1.79441\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 200.692 354.1)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"5.98435\" height=\"3.58882\" rx=\"1.79441\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 203.555 357.384)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"3.58882\" height=\"3.58882\" rx=\"1.79441\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 211.065 345.205)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"5.98435\" height=\"3.58882\" rx=\"1.79441\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 214.79 347.75)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"5.38322\" height=\"5.38322\" rx=\"2.69161\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 203.983 349.556)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"9.86925\" height=\"4.48602\" rx=\"2.24301\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 208.6 354.205)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n</g>\\n<rect width=\"469.358\" height=\"96.8811\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 411.85 536.966)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.27089\" y=\"0.000465449\" width=\"469.032\" height=\"96.5552\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 411.895 537.117)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.325943\"/>\\n<rect width=\"14.3415\" height=\"14.3415\" rx=\"7.17075\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 486.395 543.482)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"37.1192\" height=\"7.1186\" rx=\"3.5593\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 504.253 535.375)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"12.3858\" height=\"13.4456\" rx=\"6.19292\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 539.383 508.654)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"37.8218\" height=\"9.4693\" rx=\"4.73465\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 555.535 501.112)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"9.24168\" height=\"1.89013\" rx=\"0.945065\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 593.894 473.059)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"8.64998\" height=\"1.89013\" rx=\"0.945064\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 597.289 473.363)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"8.25552\" height=\"1.90153\" rx=\"0.950767\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 600.589 473.666)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"9.24168\" height=\"1.89012\" rx=\"0.945062\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 602.28 478.817)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"8.64998\" height=\"1.89013\" rx=\"0.945066\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 599.378 478.185)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"8.25552\" height=\"1.89013\" rx=\"0.945066\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 596.405 477.632)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"46.9085\" height=\"6.6349\" rx=\"3.31745\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 608.685 466.304)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<circle cx=\"7.17075\" cy=\"7.17075\" r=\"7.17075\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 651.085 433.78)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<circle cx=\"7.17075\" cy=\"7.17075\" r=\"6.68184\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 651.085 433.78)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.3\" stroke-width=\"0.977829\"/>\\n<ellipse cx=\"663.003\" cy=\"433.801\" rx=\"4.98025\" ry=\"5.63969\" transform=\"matrix(0.999999 0.00256776 -0.00114975 0.999999 0.499741 -1.70179)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<path d=\"M667.408 433.809C667.406 435.309 666.865 436.648 666.023 437.599C665.173 438.557 664.083 439.058 662.994 439.056C661.904 439.054 660.816 438.55 659.969 437.588C659.131 436.635 658.595 435.294 658.597 433.794C658.6 432.293 659.14 430.954 659.982 430.004C660.832 429.045 661.922 428.544 663.012 428.546C664.102 428.548 665.19 429.052 666.036 430.014C666.875 430.967 667.411 432.308 667.408 433.809Z\" stroke=\"#4C4C4C\" stroke-opacity=\"0.3\" stroke-width=\"0.977829\"/>\\n<ellipse cx=\"663.003\" cy=\"433.801\" rx=\"3.33254\" ry=\"8.42812\" transform=\"matrix(0.00171822 -0.66915 1.49443 0.00171822 13.5803 876.704)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<path d=\"M663.008 430.853C665.251 430.856 667.253 431.22 668.674 431.785C670.108 432.355 670.858 433.085 670.857 433.814C670.855 434.543 670.103 435.271 668.667 435.836C667.244 436.396 665.241 436.752 662.998 436.749C660.755 436.745 658.754 436.381 657.332 435.816C655.898 435.246 655.148 434.516 655.15 433.787C655.151 433.058 655.903 432.33 657.339 431.765C658.763 431.206 660.766 430.849 663.008 430.853Z\" stroke=\"#4C4C4C\" stroke-opacity=\"0.3\" stroke-width=\"0.977829\"/>\\n<rect width=\"36.1491\" height=\"9.06448\" rx=\"4.53224\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 668.646 425.715)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"14.3415\" height=\"14.3415\" rx=\"7.17075\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 702.543 399.383)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"46.7904\" height=\"7.14793\" rx=\"3.57397\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 719.713 391.67)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<g clip-path=\"url(#clip12_18005_10733)\">\\n<rect width=\"13.9442\" height=\"13.9917\" rx=\"6.97209\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 762.84 359.544)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n</g>\\n<rect width=\"41.1849\" height=\"6.90356\" rx=\"3.45178\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 780.312 351.488)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"209.727\" height=\"4.5632\" rx=\"2.2816\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 468.2 534.163)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"54.7585\" height=\"54.7585\" rx=\"27.3792\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 680.391 287.233)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<g clip-path=\"url(#clip13_18005_10733)\">\\n<rect width=\"22.2444\" height=\"10.8373\" rx=\"5.41865\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 706.205 284.798)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"27.3792\" height=\"26.2384\" rx=\"13.1192\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 704.03 285.934)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n</g>\\n</g>\\n</g>\\n<rect x=\"3.32438\" y=\"0.00571203\" width=\"465.358\" height=\"589\" rx=\"8.18138\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 0.553587 262.2)\" stroke=\"#FAC515\" stroke-opacity=\"0.5\" stroke-width=\"4\"/>\\n<defs>\\n<clipPath id=\"clip0_18005_10733\">\\n<rect width=\"469.358\" height=\"593\" rx=\"10.1814\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 0 260.353)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18005_10733\">\\n<rect width=\"14.907\" height=\"8.22458\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 144.524 173.92)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_18005_10733\">\\n<rect width=\"32.258\" height=\"8.22458\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 165.607 159.865)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_18005_10733\">\\n<rect width=\"26.7299\" height=\"8.22458\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 201.125 136.187)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_18005_10733\">\\n<rect width=\"17.9913\" height=\"8.22458\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 232.045 115.573)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_18005_10733\">\\n<rect width=\"27.155\" height=\"14.7434\" rx=\"2.60755\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 313.405 57.7113)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip6_18005_10733\">\\n<rect width=\"30.7533\" height=\"14.7434\" rx=\"2.60755\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 339.253 40.4789)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip7_18005_10733\">\\n<rect width=\"469.358\" height=\"566.924\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 21.6475 274.891)\"/>\\n</clipPath>\\n<clipPath id=\"clip8_18005_10733\">\\n<rect width=\"41.8237\" height=\"16.0472\" rx=\"2.60755\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 302.528 255.974)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip9_18005_10733\">\\n<rect width=\"50.8123\" height=\"16.0472\" rx=\"2.60755\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 340.582 230.604)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip10_18005_10733\">\\n<rect width=\"6.51886\" height=\"6.51886\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 376.509 211.946)\"/>\\n</clipPath>\\n<clipPath id=\"clip11_18005_10733\">\\n<rect width=\"21.5329\" height=\"21.5329\" fill=\"white\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 192.742 351.734)\"/>\\n</clipPath>\\n<clipPath id=\"clip12_18005_10733\">\\n<rect width=\"14.3415\" height=\"14.3415\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 762.479 359.426)\"/>\\n</clipPath>\\n<clipPath id=\"clip13_18005_10733\">\\n<rect width=\"27.3792\" height=\"27.3792\" fill=\"white\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 702.972 285.383)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rgzruc\",\"data-framer-name\":\"Effect\"}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-165dd2b hidden-72rtr7 hidden-1opd900\",\"data-framer-name\":\"Mockups\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mti7ux hidden-72rtr7\",children:isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1cf0wii hidden-72rtr7\",\"data-framer-name\":\"Hero Sections\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:326,intrinsicWidth:487,svg:'<svg width=\"487\" height=\"326\" viewBox=\"0 0 487 326\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18122_13511)\">\\n<rect width=\"258.441\" height=\"326.522\" rx=\"5.60615\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 0 143.946)\" fill=\"#878787\" fill-opacity=\"0.07\"/>\\n<rect width=\"258.441\" height=\"14.3579\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 0 143.946)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect width=\"1.53342\" height=\"1.44421\" rx=\"0.722103\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 33.7383 127.036)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"2.36855\" height=\"2.76932\" rx=\"1.18428\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 26.0684 133.934)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"1.19111\" height=\"3.28485\" rx=\"0.595555\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 28.127 131.929)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"6.63743\" height=\"2.76932\" rx=\"1.38466\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 35.0586 127.954)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"2.35167\" height=\"2.63917\" rx=\"1.17584\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 41.0352 124.004)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"2.35169\" height=\"2.63917\" rx=\"1.17584\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 30.1113 131.347)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"2.52648\" height=\"3.72161\" rx=\"1.26324\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 31.6406 129.175)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"3.36426\" height=\"3.36426\" rx=\"1.68213\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 21.7188 136.165)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"2.43178\" height=\"2.24342\" rx=\"1.12171\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 22.6914 135.776)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<g clip-path=\"url(#clip1_18122_13511)\">\\n<rect width=\"3.96259\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 79.5781 96.353)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip2_18122_13511)\">\\n<rect width=\"1.79473\" height=\"0.897366\" rx=\"0.448683\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 105.234 81.2666)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"11.0386\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 91.1875 88.6138)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip3_18122_13511)\">\\n<rect width=\"11.8878\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 110.744 75.5767)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip4_18122_13511)\">\\n<rect width=\"5.66085\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 127.77 64.2256)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip5_18122_13511)\">\\n<rect width=\"4.52868\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 176.744 31.5742)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip6_18122_13511)\">\\n<rect width=\"7.3591\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 190.979 22.0854)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip7_18122_13511)\">\\n<mask id=\"path-21-inside-1_18122_13511\" fill=\"white\">\\n<path d=\"M265.774 293.289C195.016 276.154 158.334 223.9 183.84 176.577V176.577C209.347 129.254 287.385 104.782 358.142 121.917V121.917C428.899 139.052 465.582 191.306 440.075 238.629V238.629C414.568 285.952 336.531 310.424 265.774 293.289V293.289Z\"/>\\n</mask>\\n<path d=\"M265.774 293.289C195.016 276.154 158.334 223.9 183.84 176.577V176.577C209.347 129.254 287.385 104.782 358.142 121.917V121.917C428.899 139.052 465.582 191.306 440.075 238.629V238.629C414.568 285.952 336.531 310.424 265.774 293.289V293.289Z\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<path d=\"M439.886 238.583C414.417 285.836 336.494 310.272 265.842 293.162L265.705 293.416C336.567 310.576 414.72 286.068 440.264 238.675L439.886 238.583ZM358.074 122.043C428.726 139.153 465.355 191.33 439.886 238.583L440.264 238.675C465.809 191.281 429.072 138.951 358.21 121.79L358.074 122.043ZM184.03 176.623C209.499 129.37 287.421 104.933 358.074 122.043L358.21 121.79C287.348 104.63 209.196 129.138 183.651 176.531L184.03 176.623ZM183.651 176.531C158.107 223.924 194.844 276.255 265.705 293.416L265.842 293.162C195.189 276.053 158.56 223.876 184.03 176.623L183.651 176.531Z\" fill=\"#4C4C4C\" fill-opacity=\"0.2\" mask=\"url(#path-21-inside-1_18122_13511)\"/>\\n<rect width=\"181.43\" height=\"11.3068\" rx=\"5.65341\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 50.9922 155.811)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.235235\" y=\"0.000404187\" width=\"181.147\" height=\"11.0238\" rx=\"5.51189\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 51.0314 155.941)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.283042\"/>\\n<rect width=\"199.545\" height=\"11.3068\" rx=\"5.65341\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 64.4004 164.816)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.235235\" y=\"0.000404187\" width=\"199.262\" height=\"11.0238\" rx=\"5.51189\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 64.4396 164.947)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.283042\"/>\\n<rect width=\"136.143\" height=\"3.14078\" rx=\"1.57039\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 115.039 154.061)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.235235\" y=\"0.000404187\" width=\"135.86\" height=\"2.85774\" rx=\"1.42887\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 115.078 154.191)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.283042\"/>\\n<rect width=\"88.3092\" height=\"3.14078\" rx=\"1.57039\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 118.764 156.562)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.235235\" y=\"0.000404187\" width=\"88.0261\" height=\"2.85774\" rx=\"1.42887\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 118.803 156.693)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.283042\"/>\\n<g clip-path=\"url(#clip8_18122_13511)\">\\n<rect width=\"23.0293\" height=\"8.83603\" rx=\"1.43579\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 166.58 141.535)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect width=\"14.1521\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 171.354 140.745)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip9_18122_13511)\">\\n<rect width=\"14.7182\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 192.307 126.775)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.235235\" y=\"0.000404187\" width=\"14.4352\" height=\"2.22958\" rx=\"1.11479\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 192.346 126.906)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.283042\"/>\\n<g clip-path=\"url(#clip10_18122_13511)\">\\n<rect width=\"2.09385\" height=\"2.09385\" rx=\"1.04693\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 208.561 117.293)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.235235\" y=\"0.000404187\" width=\"1.81081\" height=\"1.81081\" rx=\"0.905406\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 208.6 117.424)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.283042\"/>\\n</g>\\n</g>\\n<mask id=\"path-38-inside-2_18122_13511\" fill=\"white\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M272.713 183.173C276.856 180.412 276.864 175.922 272.731 173.146C268.597 170.37 261.888 170.358 257.745 173.12C253.603 175.882 253.595 180.372 257.728 183.148C261.861 185.924 268.571 185.935 272.713 183.173ZM263.125 175.793C261.701 176.743 261.698 178.286 263.119 179.24L263.587 179.554C265.007 180.509 267.314 180.513 268.738 179.563C270.162 178.614 270.164 177.07 268.744 176.116L268.276 175.802C266.855 174.848 264.549 174.844 263.125 175.793Z\"/>\\n</mask>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M272.713 183.173C276.856 180.412 276.864 175.922 272.731 173.146C268.597 170.37 261.888 170.358 257.745 173.12C253.603 175.882 253.595 180.372 257.728 183.148C261.861 185.924 268.571 185.935 272.713 183.173ZM263.125 175.793C261.701 176.743 261.698 178.286 263.119 179.24L263.587 179.554C265.007 180.509 267.314 180.513 268.738 179.563C270.162 178.614 270.164 177.07 268.744 176.116L268.276 175.802C266.855 174.848 264.549 174.844 263.125 175.793Z\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<path d=\"M272.496 173.302C276.5 175.992 276.493 180.341 272.48 183.016L272.947 183.331C277.22 180.482 277.228 175.853 272.965 172.99L272.496 173.302ZM257.979 173.277C261.993 170.602 268.492 170.613 272.496 173.302L272.965 172.99C268.703 170.127 261.784 170.115 257.512 172.963L257.979 173.277ZM257.963 182.991C253.958 180.302 253.966 175.953 257.979 173.277L257.512 172.963C253.239 175.811 253.231 180.441 257.494 183.304L257.963 182.991ZM272.48 183.016C268.466 185.692 261.967 185.681 257.963 182.991L257.494 183.304C261.756 186.167 268.675 186.179 272.947 183.331L272.48 183.016ZM263.353 179.084C262.062 178.216 262.064 176.813 263.359 175.95L262.891 175.636C261.337 176.672 261.334 178.355 262.884 179.396L263.353 179.084ZM263.821 179.398L263.353 179.084L262.884 179.396L263.352 179.711L263.821 179.398ZM268.504 179.406C267.209 180.269 265.113 180.266 263.821 179.398L263.352 179.711C264.902 180.752 267.418 180.756 268.972 179.72L268.504 179.406ZM268.509 176.272C269.801 177.14 269.799 178.543 268.504 179.406L268.972 179.72C270.525 178.685 270.528 177.001 268.978 175.96L268.509 176.272ZM268.042 175.958L268.509 176.272L268.978 175.96L268.51 175.646L268.042 175.958ZM263.359 175.95C264.653 175.087 266.75 175.091 268.042 175.958L268.51 175.646C266.96 174.605 264.444 174.6 262.891 175.636L263.359 175.95Z\" fill=\"#4C4C4C\" fill-opacity=\"0.2\" mask=\"url(#path-38-inside-2_18122_13511)\"/>\\n<rect width=\"23.7132\" height=\"23.7132\" rx=\"11.8566\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 96.3477 195.064)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<g clip-path=\"url(#clip11_18122_13511)\">\\n<rect width=\"1.9761\" height=\"1.9761\" rx=\"0.98805\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 110.506 195.565)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"3.29515\" height=\"1.9761\" rx=\"0.98805\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 112.08 197.374)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"1.9761\" height=\"1.9761\" rx=\"0.98805\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 116.215 190.667)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"3.29515\" height=\"1.9761\" rx=\"0.98805\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 118.268 192.069)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"2.96415\" height=\"2.96415\" rx=\"1.48208\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 112.318 193.063)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"5.43428\" height=\"2.47013\" rx=\"1.23506\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 114.859 195.624)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n</g>\\n<rect width=\"258.441\" height=\"53.3454\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 226.775 296.256)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.149159\" y=\"0.000256289\" width=\"258.262\" height=\"53.1659\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 226.8 296.339)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.179473\"/>\\n<rect width=\"7.89682\" height=\"7.89682\" rx=\"3.94841\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 267.82 299.845)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"20.4388\" height=\"3.9197\" rx=\"1.95985\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 277.654 295.381)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"6.81998\" height=\"7.40353\" rx=\"3.40999\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 296.998 280.667)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"20.8257\" height=\"5.21406\" rx=\"2.60703\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 305.893 276.515)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"5.08872\" height=\"1.04076\" rx=\"0.520379\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 327.014 261.067)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.76292\" height=\"1.04076\" rx=\"0.520378\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 328.883 261.234)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.54571\" height=\"1.04704\" rx=\"0.523518\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 330.699 261.401)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"5.08872\" height=\"1.04075\" rx=\"0.520377\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 331.631 264.238)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.76292\" height=\"1.04076\" rx=\"0.520379\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 330.033 263.89)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.54571\" height=\"1.04076\" rx=\"0.520379\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 328.396 263.585)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"25.8291\" height=\"3.65336\" rx=\"1.82668\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 335.158 257.348)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<circle cx=\"3.94841\" cy=\"3.94841\" r=\"3.94841\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 358.504 239.439)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<circle cx=\"3.94841\" cy=\"3.94841\" r=\"3.6792\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 358.504 239.439)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.3\" stroke-width=\"0.53842\"/>\\n<ellipse cx=\"365.067\" cy=\"239.451\" rx=\"2.74226\" ry=\"3.10537\" transform=\"matrix(0.999999 0.00256776 -0.00114975 0.999999 0.275848 -0.937052)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<path d=\"M367.493 239.456C367.491 240.282 367.194 241.019 366.73 241.542C366.262 242.07 365.662 242.346 365.062 242.345C364.462 242.344 363.863 242.066 363.397 241.537C362.935 241.012 362.64 240.274 362.641 239.447C362.643 238.621 362.94 237.884 363.404 237.36C363.872 236.832 364.472 236.557 365.072 236.558C365.672 236.559 366.271 236.837 366.737 237.366C367.199 237.891 367.494 238.629 367.493 239.456Z\" stroke=\"#4C4C4C\" stroke-opacity=\"0.3\" stroke-width=\"0.53842\"/>\\n<ellipse cx=\"365.066\" cy=\"239.451\" rx=\"1.83499\" ry=\"4.64075\" transform=\"matrix(0.00171822 -0.66915 1.49443 0.00171822 6.59653 483.323)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<path d=\"M365.069 237.828C366.303 237.83 367.406 238.03 368.188 238.341C368.978 238.655 369.391 239.057 369.39 239.458C369.389 239.86 368.975 240.26 368.184 240.571C367.401 240.88 366.298 241.076 365.063 241.074C363.828 241.072 362.726 240.872 361.943 240.561C361.154 240.247 360.741 239.845 360.741 239.443C360.742 239.042 361.156 238.641 361.947 238.33C362.731 238.022 363.834 237.825 365.069 237.828Z\" stroke=\"#4C4C4C\" stroke-opacity=\"0.3\" stroke-width=\"0.53842\"/>\\n<rect width=\"19.9047\" height=\"4.99115\" rx=\"2.49557\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 368.174 234.999)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"7.89682\" height=\"7.89682\" rx=\"3.94841\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 386.84 220.5)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"25.7641\" height=\"3.93585\" rx=\"1.96792\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 396.293 216.252)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<g clip-path=\"url(#clip12_18122_13511)\">\\n<rect width=\"7.67804\" height=\"7.7042\" rx=\"3.83902\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 420.039 198.563)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n</g>\\n<rect width=\"22.6775\" height=\"3.80129\" rx=\"1.90065\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 429.662 194.127)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"115.481\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 257.803 294.713)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"30.1515\" height=\"30.1515\" rx=\"15.0757\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 374.641 158.747)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<g clip-path=\"url(#clip13_18122_13511)\">\\n<rect width=\"12.2484\" height=\"5.96732\" rx=\"2.98366\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 388.855 157.405)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"15.0757\" height=\"14.4476\" rx=\"7.2238\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 387.658 158.031)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n</g>\\n</g>\\n</g>\\n<rect x=\"1.83049\" y=\"0.0031452\" width=\"256.239\" height=\"324.319\" rx=\"4.50489\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 0.30482 144.963)\" stroke=\"#FAC515\" stroke-opacity=\"0.5\" stroke-width=\"2.20251\"/>\\n<defs>\\n<clipPath id=\"clip0_18122_13511\">\\n<rect width=\"258.441\" height=\"326.522\" rx=\"5.60615\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 0 143.946)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18122_13511\">\\n<rect width=\"8.20823\" height=\"4.52868\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 79.5781 96.353)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_18122_13511\">\\n<rect width=\"17.7622\" height=\"4.52868\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 91.1855 88.6138)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_18122_13511\">\\n<rect width=\"14.7182\" height=\"4.52868\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 110.744 75.5762)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_18122_13511\">\\n<rect width=\"9.90648\" height=\"4.52868\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 127.77 64.2256)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_18122_13511\">\\n<rect width=\"14.9523\" height=\"8.11814\" rx=\"1.43579\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 172.568 32.3652)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip6_18122_13511\">\\n<rect width=\"16.9336\" height=\"8.11814\" rx=\"1.43579\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 186.799 22.877)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip7_18122_13511\">\\n<rect width=\"258.441\" height=\"312.164\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 11.918 151.951)\"/>\\n</clipPath>\\n<clipPath id=\"clip8_18122_13511\">\\n<rect width=\"23.0293\" height=\"8.83603\" rx=\"1.43579\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 166.58 141.535)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip9_18122_13511\">\\n<rect width=\"27.9786\" height=\"8.83603\" rx=\"1.43579\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 187.533 127.565)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip10_18122_13511\">\\n<rect width=\"3.58946\" height=\"3.58946\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 207.318 117.292)\"/>\\n</clipPath>\\n<clipPath id=\"clip11_18122_13511\">\\n<rect width=\"11.8566\" height=\"11.8566\" fill=\"white\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 106.127 194.262)\"/>\\n</clipPath>\\n<clipPath id=\"clip12_18122_13511\">\\n<rect width=\"7.89682\" height=\"7.89682\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 419.84 198.498)\"/>\\n</clipPath>\\n<clipPath id=\"clip13_18122_13511\">\\n<rect width=\"15.0757\" height=\"15.0757\" fill=\"white\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 387.076 157.728)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wkst6m hidden-72rtr7\",children:isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ds0e1b hidden-72rtr7\",\"data-framer-name\":\"Hero Sections\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:326,intrinsicWidth:487,svg:'<svg width=\"487\" height=\"326\" viewBox=\"0 0 487 326\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18122_13625)\">\\n<rect width=\"258.441\" height=\"326.522\" rx=\"5.60615\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 0.304688 143.357)\" fill=\"#242424\"/>\\n<rect width=\"258.441\" height=\"14.3579\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 0.304688 143.357)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect width=\"1.53342\" height=\"1.44421\" rx=\"0.722103\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 34.043 126.447)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"2.36855\" height=\"2.76932\" rx=\"1.18428\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 26.373 133.345)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"1.19111\" height=\"3.28485\" rx=\"0.595555\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 28.4316 131.341)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"6.63743\" height=\"2.76932\" rx=\"1.38466\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 35.3613 127.366)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"2.35167\" height=\"2.63917\" rx=\"1.17584\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 41.3379 123.416)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"2.35169\" height=\"2.63917\" rx=\"1.17584\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 30.416 130.759)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"2.52648\" height=\"3.72161\" rx=\"1.26324\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 31.9453 128.586)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"3.36426\" height=\"3.36426\" rx=\"1.68213\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 22.0234 135.576)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<rect width=\"2.43178\" height=\"2.24342\" rx=\"1.12171\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 22.9961 135.188)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<g clip-path=\"url(#clip1_18122_13625)\">\\n<rect width=\"3.96259\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 79.8809 95.7651)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip2_18122_13625)\">\\n<g clip-path=\"url(#clip3_18122_13625)\">\\n<rect width=\"1.79473\" height=\"0.897366\" rx=\"0.448683\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 105.539 80.6782)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<rect width=\"11.0386\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 91.4922 88.0254)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip4_18122_13625)\">\\n<rect width=\"11.8878\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 111.049 74.9883)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip5_18122_13625)\">\\n<rect width=\"5.66085\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 128.072 63.6377)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip6_18122_13625)\">\\n<rect width=\"4.52868\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 177.047 30.9858)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip7_18122_13625)\">\\n<rect width=\"7.3591\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 191.281 21.4976)\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip8_18122_13625)\">\\n<mask id=\"path-21-inside-1_18122_13625\" fill=\"white\">\\n<path d=\"M266.076 292.701C195.319 275.566 158.636 223.312 184.143 175.989V175.989C209.65 128.665 287.687 104.193 358.445 121.328V121.328C429.202 138.463 465.885 190.717 440.378 238.04V238.04C414.871 285.363 336.833 309.836 266.076 292.701V292.701Z\"/>\\n</mask>\\n<path d=\"M266.076 292.701C195.319 275.566 158.636 223.312 184.143 175.989V175.989C209.65 128.665 287.687 104.193 358.445 121.328V121.328C429.202 138.463 465.885 190.717 440.378 238.04V238.04C414.871 285.363 336.833 309.836 266.076 292.701V292.701Z\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<path d=\"M440.189 237.995C414.719 285.248 336.797 309.684 266.144 292.574L266.008 292.827C336.87 309.988 415.022 285.479 440.567 238.086L440.189 237.995ZM358.376 121.455C429.029 138.565 465.658 190.741 440.189 237.995L440.567 238.086C466.111 190.693 429.375 138.362 358.513 121.202L358.376 121.455ZM184.332 176.034C209.802 128.781 287.724 104.345 358.376 121.455L358.513 121.202C287.651 104.041 209.498 128.55 183.954 175.943L184.332 176.034ZM183.954 175.943C158.41 223.336 195.146 275.667 266.008 292.827L266.144 292.574C195.492 275.464 158.863 223.288 184.332 176.034L183.954 175.943Z\" fill=\"#4C4C4C\" fill-opacity=\"0.2\" mask=\"url(#path-21-inside-1_18122_13625)\"/>\\n<rect width=\"181.43\" height=\"11.3068\" rx=\"5.65341\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 51.2969 155.223)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.235235\" y=\"0.000404187\" width=\"181.147\" height=\"11.0238\" rx=\"5.51189\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 51.336 155.353)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.283042\"/>\\n<rect width=\"199.545\" height=\"11.3068\" rx=\"5.65341\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 64.7051 164.228)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.235235\" y=\"0.000404187\" width=\"199.262\" height=\"11.0238\" rx=\"5.51189\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 64.7443 164.359)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.283042\"/>\\n<rect width=\"136.143\" height=\"3.14078\" rx=\"1.57039\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 115.342 153.472)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.235235\" y=\"0.000404187\" width=\"135.86\" height=\"2.85774\" rx=\"1.42887\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 115.381 153.602)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.283042\"/>\\n<rect width=\"88.3092\" height=\"3.14078\" rx=\"1.57039\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 119.066 155.974)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.235235\" y=\"0.000404187\" width=\"88.0261\" height=\"2.85774\" rx=\"1.42887\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 119.106 156.105)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.283042\"/>\\n<g clip-path=\"url(#clip9_18122_13625)\">\\n<rect width=\"23.0293\" height=\"8.83603\" rx=\"1.43579\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 166.883 140.946)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect width=\"14.1521\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 171.656 140.156)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n</g>\\n<g clip-path=\"url(#clip10_18122_13625)\">\\n<rect width=\"14.7182\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 192.611 126.187)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.235235\" y=\"0.000404187\" width=\"14.4352\" height=\"2.22958\" rx=\"1.11479\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 192.651 126.318)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.283042\"/>\\n<g clip-path=\"url(#clip11_18122_13625)\">\\n<rect width=\"2.09385\" height=\"2.09385\" rx=\"1.04693\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 208.863 116.705)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.235235\" y=\"0.000404187\" width=\"1.81081\" height=\"1.81081\" rx=\"0.905406\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 208.902 116.835)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.283042\"/>\\n</g>\\n</g>\\n<mask id=\"path-38-inside-2_18122_13625\" fill=\"white\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M273.018 182.585C277.161 179.823 277.169 175.334 273.035 172.558C268.902 169.782 262.193 169.77 258.05 172.532C253.907 175.294 253.9 179.783 258.033 182.559C262.166 185.335 268.875 185.347 273.018 182.585ZM263.429 175.205C262.005 176.154 262.003 177.697 263.423 178.652L263.891 178.966C265.312 179.92 267.618 179.924 269.042 178.975C270.467 178.025 270.469 176.482 269.048 175.528L268.581 175.214C267.16 174.259 264.854 174.255 263.429 175.205Z\"/>\\n</mask>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M273.018 182.585C277.161 179.823 277.169 175.334 273.035 172.558C268.902 169.782 262.193 169.77 258.05 172.532C253.907 175.294 253.9 179.783 258.033 182.559C262.166 185.335 268.875 185.347 273.018 182.585ZM263.429 175.205C262.005 176.154 262.003 177.697 263.423 178.652L263.891 178.966C265.312 179.92 267.618 179.924 269.042 178.975C270.467 178.025 270.469 176.482 269.048 175.528L268.581 175.214C267.16 174.259 264.854 174.255 263.429 175.205Z\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<path d=\"M263.423 178.652L263.658 178.495L263.423 178.652ZM263.891 178.966L263.657 179.122L263.891 178.966ZM272.801 172.714C276.805 175.403 276.798 179.752 272.784 182.428L273.252 182.742C277.524 179.894 277.532 175.264 273.27 172.401L272.801 172.714ZM258.284 172.689C262.297 170.013 268.797 170.025 272.801 172.714L273.27 172.401C269.007 169.538 262.089 169.527 257.816 172.375L258.284 172.689ZM258.267 182.403C254.263 179.714 254.271 175.365 258.284 172.689L257.816 172.375C253.544 175.223 253.536 179.853 257.798 182.716L258.267 182.403ZM272.784 182.428C268.771 185.104 262.271 185.092 258.267 182.403L257.798 182.716C262.061 185.578 268.98 185.59 273.252 182.742L272.784 182.428ZM263.658 178.495C262.366 177.628 262.369 176.225 263.663 175.362L263.196 175.048C261.642 176.083 261.639 177.767 263.189 178.808L263.658 178.495ZM264.126 178.81L263.658 178.495L263.189 178.808L263.657 179.122L264.126 178.81ZM268.809 178.818C267.514 179.681 265.417 179.677 264.126 178.81L263.657 179.122C265.207 180.163 267.723 180.168 269.276 179.132L268.809 178.818ZM268.814 175.684C270.106 176.552 270.103 177.955 268.809 178.818L269.276 179.132C270.83 178.096 270.833 176.413 269.283 175.372L268.814 175.684ZM268.346 175.37L268.814 175.684L269.283 175.372L268.815 175.057L268.346 175.37ZM263.663 175.362C264.958 174.499 267.055 174.502 268.346 175.37L268.815 175.057C267.265 174.016 264.749 174.012 263.196 175.048L263.663 175.362Z\" fill=\"#4C4C4C\" fill-opacity=\"0.2\" mask=\"url(#path-38-inside-2_18122_13625)\"/>\\n<rect width=\"23.7132\" height=\"23.7132\" rx=\"11.8566\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 96.6523 194.476)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<g clip-path=\"url(#clip12_18122_13625)\">\\n<rect width=\"1.9761\" height=\"1.9761\" rx=\"0.98805\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 110.809 194.977)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"3.29515\" height=\"1.9761\" rx=\"0.98805\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 112.385 196.786)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"1.9761\" height=\"1.9761\" rx=\"0.98805\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 116.52 190.079)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"3.29515\" height=\"1.9761\" rx=\"0.98805\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 118.57 191.481)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"2.96415\" height=\"2.96415\" rx=\"1.48208\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 112.623 192.476)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"5.43428\" height=\"2.47013\" rx=\"1.23506\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 115.164 195.035)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n</g>\\n<rect width=\"258.441\" height=\"53.3454\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 227.08 295.668)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<rect x=\"0.149159\" y=\"0.000256289\" width=\"258.262\" height=\"53.1659\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 227.105 295.751)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.2\" stroke-width=\"0.179473\"/>\\n<rect width=\"7.89682\" height=\"7.89682\" rx=\"3.94841\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 268.125 299.256)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"20.4388\" height=\"3.9197\" rx=\"1.95985\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 277.959 294.792)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"6.81998\" height=\"7.40353\" rx=\"3.40999\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 297.303 280.079)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"20.8257\" height=\"5.21406\" rx=\"2.60703\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 306.197 275.926)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"5.08872\" height=\"1.04076\" rx=\"0.520379\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 327.316 260.479)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.76292\" height=\"1.04076\" rx=\"0.520378\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 329.188 260.646)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.54571\" height=\"1.04704\" rx=\"0.523518\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 331.002 260.813)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"5.08872\" height=\"1.04075\" rx=\"0.520377\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 331.936 263.65)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.76292\" height=\"1.04076\" rx=\"0.520379\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 330.336 263.302)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"4.54571\" height=\"1.04076\" rx=\"0.520379\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 328.701 262.997)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"25.8291\" height=\"3.65336\" rx=\"1.82668\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 335.463 256.76)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<circle cx=\"3.94841\" cy=\"3.94841\" r=\"3.94841\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 358.807 238.851)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<circle cx=\"3.94841\" cy=\"3.94841\" r=\"3.6792\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 358.807 238.851)\" stroke=\"#4C4C4C\" stroke-opacity=\"0.3\" stroke-width=\"0.53842\"/>\\n<ellipse cx=\"365.37\" cy=\"238.863\" rx=\"2.74226\" ry=\"3.10537\" transform=\"matrix(0.999999 0.00256776 -0.00114975 0.999999 0.275171 -0.937831)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<path d=\"M367.796 238.867C367.794 239.693 367.496 240.43 367.033 240.953C366.565 241.481 365.965 241.757 365.365 241.756C364.765 241.755 364.166 241.477 363.699 240.948C363.238 240.423 362.942 239.685 362.944 238.858C362.945 238.032 363.243 237.295 363.707 236.772C364.175 236.244 364.775 235.968 365.375 235.969C365.975 235.97 366.574 236.248 367.04 236.777C367.502 237.302 367.797 238.04 367.796 238.867Z\" stroke=\"#4C4C4C\" stroke-opacity=\"0.3\" stroke-width=\"0.53842\"/>\\n<ellipse cx=\"365.37\" cy=\"238.862\" rx=\"1.83499\" ry=\"4.64075\" transform=\"matrix(0.00171822 -0.66915 1.49443 0.00171822 7.77998 482.94)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<path d=\"M365.373 237.239C366.608 237.241 367.71 237.442 368.493 237.753C369.283 238.066 369.695 238.468 369.695 238.87C369.694 239.271 369.28 239.672 368.489 239.983C367.705 240.291 366.603 240.488 365.368 240.486C364.133 240.484 363.031 240.283 362.248 239.972C361.458 239.659 361.045 239.257 361.046 238.855C361.047 238.453 361.461 238.053 362.252 237.742C363.036 237.434 364.138 237.237 365.373 237.239Z\" stroke=\"#4C4C4C\" stroke-opacity=\"0.3\" stroke-width=\"0.53842\"/>\\n<rect width=\"19.9047\" height=\"4.99115\" rx=\"2.49557\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 368.479 234.411)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"7.89682\" height=\"7.89682\" rx=\"3.94841\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 387.143 219.911)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"25.7641\" height=\"3.93585\" rx=\"1.96792\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 396.596 215.665)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<g clip-path=\"url(#clip13_18122_13625)\">\\n<rect width=\"7.67804\" height=\"7.7042\" rx=\"3.83902\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 420.342 197.975)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n</g>\\n<rect width=\"22.6775\" height=\"3.80129\" rx=\"1.90065\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 429.965 193.539)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"115.481\" height=\"2.51262\" rx=\"1.25631\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 258.105 294.125)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"30.1515\" height=\"30.1515\" rx=\"15.0757\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 374.945 158.158)\" fill=\"#4C4C4C\" fill-opacity=\"0.2\"/>\\n<g clip-path=\"url(#clip14_18122_13625)\">\\n<rect width=\"12.2484\" height=\"5.96732\" rx=\"2.98366\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 389.16 156.817)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n<rect width=\"15.0757\" height=\"14.4476\" rx=\"7.2238\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 387.963 157.443)\" fill=\"#4C4C4C\" fill-opacity=\"0.3\"/>\\n</g>\\n</g>\\n</g>\\n<rect x=\"1.83049\" y=\"0.0031452\" width=\"256.239\" height=\"324.319\" rx=\"4.50489\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 0.609507 144.374)\" stroke=\"#FAC515\" stroke-opacity=\"0.5\" stroke-width=\"2.20251\"/>\\n<defs>\\n<clipPath id=\"clip0_18122_13625\">\\n<rect width=\"258.441\" height=\"326.522\" rx=\"5.60615\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 0.304688 143.357)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18122_13625\">\\n<rect width=\"8.20823\" height=\"4.52868\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 79.8809 95.7651)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_18122_13625\">\\n<rect width=\"17.7622\" height=\"4.52868\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 91.4902 88.0259)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_18122_13625\">\\n<rect width=\"3.58946\" height=\"3.58946\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 103.674 80.4253)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_18122_13625\">\\n<rect width=\"14.7182\" height=\"4.52868\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 111.049 74.9883)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_18122_13625\">\\n<rect width=\"9.90648\" height=\"4.52868\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 128.072 63.6377)\"/>\\n</clipPath>\\n<clipPath id=\"clip6_18122_13625\">\\n<rect width=\"14.9523\" height=\"8.11814\" rx=\"1.43579\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 172.871 31.7773)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip7_18122_13625\">\\n<rect width=\"16.9336\" height=\"8.11814\" rx=\"1.43579\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 187.104 22.2886)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip8_18122_13625\">\\n<rect width=\"258.441\" height=\"312.164\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 12.2227 151.363)\"/>\\n</clipPath>\\n<clipPath id=\"clip9_18122_13625\">\\n<rect width=\"23.0293\" height=\"8.83603\" rx=\"1.43579\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 166.883 140.946)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip10_18122_13625\">\\n<rect width=\"27.9786\" height=\"8.83603\" rx=\"1.43579\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 187.836 126.978)\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip11_18122_13625\">\\n<rect width=\"3.58946\" height=\"3.58946\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 207.619 116.703)\"/>\\n</clipPath>\\n<clipPath id=\"clip12_18122_13625\">\\n<rect width=\"11.8566\" height=\"11.8566\" fill=\"white\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 106.432 193.674)\"/>\\n</clipPath>\\n<clipPath id=\"clip13_18122_13625\">\\n<rect width=\"7.89682\" height=\"7.89682\" fill=\"white\" transform=\"matrix(0.83205 -0.5547 0.830139 0.557556 420.145 197.91)\"/>\\n</clipPath>\\n<clipPath id=\"clip14_18122_13625\">\\n<rect width=\"15.0757\" height=\"15.0757\" fill=\"white\" transform=\"matrix(0.722616 -0.619595 0.926965 0.48442 387.379 157.139)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cwkj96\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Website & Dashboard Designs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Website & Dashboard Designs\"})}),className:\"framer-19rfaab\",\"data-framer-name\":\"Website & Dashboard Designs\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"As a UI/UX designer, I create user-friendly websites & Dashboard Designs by understanding clients' brand, user problems and goals to drive impactful design.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"As a UI/UX designer, I create user-friendly websites & Dashboard Designs by understanding clients' brand, user problems and goals to drive impactful design.\"})}),className:\"framer-9ma87n\",\"data-framer-name\":\"As a UI/UX designer, I create user-friendly websites & Dashboard Designs by understanding clients' brand, user problems and goals to drive impactful design.\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1s8zfhb\",\"data-border\":true,\"data-framer-name\":\"Container 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hz0b56\",\"data-framer-name\":\"Container 01\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fpwz38\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vlioaj\",\"data-framer-name\":\"Mask group\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15vpwta\",\"data-framer-name\":\"Shapes\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lr0908\",\"data-border\":true,\"data-framer-name\":\"Rectangle 171\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bfiw8\",\"data-border\":true,\"data-framer-name\":\"Rectangle 172\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yf6f5n\",\"data-border\":true,\"data-framer-name\":\"Rectangle 173\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mwiq14\",\"data-border\":true,\"data-framer-name\":\"Rectangle 174\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9c8wx0\",\"data-framer-name\":\"Effect\"}),isDisplayed4()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-33gvxb hidden-1opd900 hidden-1j4blxu\",\"data-framer-name\":\"Design Process\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15iqxj7\",\"data-framer-name\":\"Heading 02\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1obn0my\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14.96px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"23.27px\",\"--framer-text-color\":\"rgb(76, 76, 76)\"},children:\"Design Thinking Process\"})}),className:\"framer-13i1t6o\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1abg7kh\",\"data-framer-name\":\"Heading 01\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13w0lfj\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14.96px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"23.27px\",\"--framer-text-color\":\"rgb(76, 76, 76)\"},children:\"Lean UX Research\"})}),className:\"framer-1g8dpo3\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m65ia5\",\"data-framer-name\":\"Process Steps\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1s9guzf\",\"data-framer-name\":\"Down Connectors 01\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:10,svg:'<svg width=\"10\" height=\"31\" viewBox=\"-1 -1 10 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.643791 25.3813C0.643791 27.2176 2.13243 28.7062 3.96875 28.7062C5.80507 28.7062 7.29371 27.2176 7.29371 25.3813C7.29371 23.545 5.80507 22.0563 3.96875 22.0563C2.13243 22.0563 0.643791 23.545 0.643791 25.3813ZM3.34532 0.444092V3.56124H4.59218V0.444092H3.34532ZM3.34532 9.79554V16.0298H4.59218V9.79554H3.34532ZM3.34532 22.2641V25.3813H4.59218V22.2641H3.34532Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ez0s1m\",\"data-framer-name\":\"Step 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lb5pj0\",\"data-framer-name\":\"Discovery & Exploration\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19tv0rp\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-15nuqn3\",\"data-framer-name\":\"search-normal 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10ewm5n\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.71971 14.186C9.50862 14.186 11.2243 13.4754 12.4892 12.2104C13.7542 10.9455 14.4648 9.22982 14.4648 7.4409C14.4648 5.65199 13.7542 3.93635 12.4892 2.6714C11.2243 1.40644 9.50862 0.695801 7.71971 0.695801C5.9308 0.695801 4.21516 1.40644 2.9502 2.6714C1.68525 3.93635 0.974609 5.65199 0.974609 7.4409C0.974609 9.22982 1.68525 10.9455 2.9502 12.2104C4.21516 13.4754 5.9308 14.186 7.71971 14.186Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M15.9397 13.385C15.6926 12.9284 15.1686 12.6738 14.4649 12.6738C13.9334 12.6738 13.4767 12.8909 13.2072 13.2652C12.9377 13.6396 12.8778 14.1411 13.0425 14.6427C13.3644 15.6159 13.9259 15.833 14.2328 15.8705C14.2777 15.8779 14.3227 15.8779 14.3751 15.8779C14.7045 15.8779 15.2135 15.7357 15.7076 14.9946C16.1044 14.4181 16.1792 13.8417 15.9397 13.385Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oh5jpr\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14.96px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"23.27px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Discovery & Exploration\"})}),className:\"framer-1qo7t1w\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k878s4\",\"data-framer-name\":\"Define Problem\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-navcnu\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-g5o91h\",\"data-framer-name\":\"puzzle 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pmt6qe\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.53534 2.94184C4.53538 2.565 4.61128 2.19203 4.75853 1.84515C4.90578 1.49827 5.12136 1.18458 5.39242 0.922791C5.66348 0.660999 5.98447 0.45646 6.33627 0.321365C6.68806 0.18627 7.06345 0.123384 7.44006 0.136455C7.81668 0.149527 8.1868 0.238288 8.52838 0.39745C8.86996 0.556611 9.176 0.782913 9.42826 1.06287C9.68052 1.34282 9.87383 1.6707 9.99667 2.02695C10.1195 2.38321 10.1694 2.76055 10.1433 3.13649C10.695 3.14847 11.1741 3.17616 11.5836 3.24728C12.1698 3.34984 12.6676 3.54748 13.0712 3.95099C13.4747 4.35525 13.6723 4.85233 13.7749 5.43851C13.846 5.84875 13.8737 6.32712 13.8849 6.87886C14.269 6.8522 14.6545 6.90484 15.0174 7.03351C15.3803 7.16218 15.7129 7.36413 15.9944 7.6268C16.276 7.88947 16.5004 8.20724 16.6539 8.56037C16.8074 8.9135 16.8866 9.29442 16.8866 9.67946C16.8866 10.0645 16.8074 10.4454 16.6539 10.7986C16.5004 11.1517 16.276 11.4695 15.9944 11.7321C15.7129 11.9948 15.3803 12.1967 15.0174 12.3254C14.6545 12.4541 14.269 12.5067 13.8849 12.4801C13.8737 13.0325 13.846 13.5109 13.7749 13.9204C13.6723 14.5066 13.4747 15.0044 13.0712 15.4079C12.6669 15.8107 12.1698 16.0091 11.5836 16.1116C11.0147 16.2105 10.311 16.2262 9.46279 16.2292C9.37278 16.2295 9.28401 16.2082 9.20396 16.1671C9.1239 16.1259 9.05492 16.0661 9.00281 15.9928C8.9507 15.9194 8.917 15.8345 8.90455 15.7454C8.8921 15.6562 8.90126 15.5654 8.93126 15.4805C9.02061 15.2266 9.04777 14.9549 9.01047 14.6882C8.97316 14.4215 8.87248 14.1677 8.71685 13.948C8.56123 13.7283 8.3552 13.5491 8.11604 13.4254C7.87688 13.3017 7.61156 13.2372 7.34231 13.2372C7.07306 13.2372 6.80774 13.3017 6.56858 13.4254C6.32942 13.5491 6.12339 13.7283 5.96777 13.948C5.81214 14.1677 5.71146 14.4215 5.67415 14.6882C5.63685 14.9549 5.66401 15.2266 5.75336 15.4805C5.78336 15.5654 5.79252 15.6562 5.78007 15.7454C5.76762 15.8345 5.73392 15.9194 5.68181 15.9928C5.6297 16.0661 5.56072 16.1259 5.48066 16.1671C5.40061 16.2082 5.31184 16.2295 5.22183 16.2292C4.37364 16.2262 3.67143 16.2105 3.10173 16.1116C2.51556 16.0091 2.01772 15.8114 1.61421 15.4079C1.21145 15.0037 1.01307 14.5066 0.910507 13.9204C0.811688 13.3507 0.795967 12.6478 0.792973 11.7996C0.792625 11.7096 0.813922 11.6208 0.855067 11.5407C0.896212 11.4607 0.956 11.3917 1.02939 11.3396C1.10278 11.2875 1.18762 11.2538 1.27677 11.2413C1.36591 11.2289 1.45674 11.238 1.5416 11.268C1.79559 11.3574 2.0673 11.3846 2.33395 11.3472C2.6006 11.3099 2.85442 11.2093 3.07414 11.0536C3.29385 10.898 3.47306 10.692 3.59674 10.4528C3.72042 10.2137 3.78496 9.94833 3.78496 9.67909C3.78496 9.40984 3.72042 9.14451 3.59674 8.90535C3.47306 8.66619 3.29385 8.46017 3.07414 8.30454C2.85442 8.14892 2.6006 8.04824 2.33395 8.01093C2.0673 7.97362 1.79559 8.00078 1.5416 8.09013C1.45674 8.12014 1.36591 8.1293 1.27677 8.11685C1.18762 8.1044 1.10278 8.0707 1.02939 8.01859C0.956 7.96648 0.896212 7.89749 0.855067 7.81744C0.813922 7.73739 0.792625 7.64862 0.792973 7.55861C0.795967 6.71042 0.811689 6.00821 0.911256 5.43851C1.01307 4.85233 1.21071 4.3545 1.61496 3.95099C2.01772 3.54748 2.51556 3.34984 3.10173 3.24728C3.51198 3.17616 3.99035 3.14847 4.54208 3.13724C4.53759 3.0722 4.53535 3.00703 4.53534 2.94184Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5kbld7\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14.96px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"23.27px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Define Problem\"})}),className:\"framer-3rp40r\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w3ztik\",\"data-framer-name\":\"Ideation & Wireframing\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16vtbct\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13v3jjg\",\"data-framer-name\":\"ruler&pen 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xis0se\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"16\" viewBox=\"0 0 15 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.5353 0.695801H9.54079C8.42385 0.695801 7.50004 1.65853 7.32487 2.75601C7.29268 2.96039 7.46336 3.12883 7.66923 3.12883H11.038C11.345 3.12883 11.5995 3.38336 11.5995 3.6903C11.5995 3.99723 11.345 4.25176 11.038 4.25176H7.66923C7.56996 4.25176 7.47475 4.2912 7.40456 4.3614C7.33436 4.4316 7.29492 4.5268 7.29492 4.62608V5.74901C7.29492 5.84829 7.33436 5.94349 7.40456 6.01369C7.47475 6.08389 7.56996 6.12332 7.66923 6.12332H9.39855C9.70549 6.12332 9.96002 6.37786 9.96002 6.68479C9.96002 6.99173 9.70549 7.24626 9.39855 7.24626H7.66923C7.56996 7.24626 7.47475 7.2857 7.40456 7.35589C7.33436 7.42609 7.29492 7.5213 7.29492 7.62057V8.70982C7.29492 8.80858 7.33394 8.90334 7.40349 8.97345C7.47304 9.04356 7.56748 9.08334 7.66624 9.08413L11.0388 9.11782C11.3532 9.11782 11.6003 9.37235 11.6003 9.68678C11.5928 9.99371 11.3457 10.2408 11.0388 10.2408H11.0313L7.67373 10.2071C7.62426 10.2066 7.57518 10.2159 7.52933 10.2345C7.48349 10.2531 7.44178 10.2806 7.40662 10.3154C7.37147 10.3502 7.34356 10.3916 7.32452 10.4373C7.30547 10.4829 7.29567 10.5319 7.29567 10.5814V11.738C7.29567 11.8373 7.33511 11.9325 7.4053 12.0027C7.4755 12.0729 7.57071 12.1123 7.66998 12.1123H10.2153C10.3642 12.1123 10.507 12.1715 10.6123 12.2768C10.7176 12.3821 10.7768 12.5249 10.7768 12.6738C10.7768 12.8227 10.7176 12.9655 10.6123 13.0708C10.507 13.1761 10.3642 13.2353 10.2153 13.2353H7.66998C7.46336 13.2353 7.29268 13.4037 7.32562 13.6081C7.50004 14.7056 8.42385 15.6683 9.54154 15.6683H12.536C13.7713 15.6683 14.7819 14.6651 14.7819 13.4224V2.94167C14.7819 1.69896 13.7713 0.695801 12.536 0.695801H12.5353Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M5.02788 2.90424V3.50314C5.02788 3.60241 4.98845 3.69762 4.91825 3.76782C4.84805 3.83802 4.75285 3.87745 4.65357 3.87745H0.977828C0.878554 3.87745 0.783346 3.83802 0.713149 3.76782C0.642952 3.69762 0.603516 3.60241 0.603516 3.50314V2.90424C0.603516 1.69147 1.59919 0.695801 2.81944 0.695801C4.03221 0.695801 5.02788 1.69147 5.02788 2.90424Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M0.603516 12.6065C0.603516 12.9434 0.745754 13.4599 0.925424 13.7444L1.53181 14.7625C2.243 15.9454 3.39588 15.9454 4.09959 14.7625L4.71346 13.7444C4.88565 13.4599 5.02788 12.9434 5.02788 12.6065V5.3748C5.02788 5.27553 4.98845 5.18032 4.91825 5.11012C4.84805 5.03992 4.75285 5.00049 4.65357 5.00049H0.977828C0.878554 5.00049 0.783346 5.03992 0.713149 5.11012C0.642952 5.18032 0.603516 5.27553 0.603516 5.3748V12.6065Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-193fsj2\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14.96px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"23.27px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Ideation & Wireframing\"})}),className:\"framer-1wzs80r\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oa0r8u\",\"data-framer-name\":\"Vector 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"10\" viewBox=\"-1 -1 22 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.612 4.18286C12.612 6.01919 14.1006 7.50782 15.9369 7.50782C17.7733 7.50782 19.2619 6.01919 19.2619 4.18286C19.2619 2.34654 17.7733 0.857904 15.9369 0.857904C14.1006 0.857904 12.612 2.34654 12.612 4.18286ZM0.974609 4.80629L2.8449 4.80629L2.8449 3.55943L0.974609 3.55943L0.974609 4.80629ZM6.58548 4.80629L10.3261 4.80629L10.3261 3.55943L6.58548 3.55943L6.58548 4.80629ZM14.0666 4.80629L15.9369 4.80629L15.9369 3.55943L14.0666 3.55943L14.0666 4.80629Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-d4qgsl\",\"data-framer-name\":\"Vector 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:21,svg:'<svg width=\"21\" height=\"10\" viewBox=\"-1 -1 21 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.9186 4.18262C11.9186 6.01894 13.4072 7.50758 15.2436 7.50758C17.0799 7.50758 18.5685 6.01894 18.5685 4.18262C18.5685 2.34629 17.0799 0.85766 15.2436 0.85766C13.4072 0.85766 11.9186 2.34629 11.9186 4.18262ZM0.28125 4.80605L2.15154 4.80605L2.15154 3.55919L0.28125 3.55919L0.28125 4.80605ZM5.89212 4.80605L9.6327 4.80605L9.6327 3.55919L5.89212 3.55919L5.89212 4.80605ZM13.3733 4.80605L15.2436 4.80605L15.2436 3.55919L13.3733 3.55919L13.3733 4.80605Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nwybzl\",\"data-framer-name\":\"Step 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16y84ba\",\"data-framer-name\":\"Design Iteration\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-et4qwi\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ybihz6\",\"data-framer-name\":\"refresh-2 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-n8yvul\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"16\" viewBox=\"0 0 15 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.6503 0.220215H4.37685C1.65186 0.220215 0.0273438 1.84473 0.0273438 4.56972V10.8357C0.0273438 13.5682 1.65186 15.1927 4.37685 15.1927H10.6428C13.3678 15.1927 14.9923 13.5682 14.9923 10.8432V4.56972C14.9998 1.84473 13.3753 0.220215 10.6503 0.220215ZM7.51358 12.3854C6.17355 12.3854 5.12547 11.7191 4.41428 11.0603V11.5918C4.41428 11.8988 4.15975 12.1533 3.85281 12.1533C3.54588 12.1533 3.29134 11.8988 3.29134 11.5918V9.5331C3.29134 9.22616 3.54588 8.97163 3.85281 8.97163H5.7094C6.01634 8.97163 6.27087 9.22616 6.27087 9.5331C6.27087 9.84003 6.01634 10.0946 5.7094 10.0946H5.03564C5.58962 10.6485 6.45054 11.2624 7.51358 11.2624C9.47498 11.2624 11.0695 9.66785 11.0695 7.70646C11.0695 7.39952 11.3241 7.14499 11.631 7.14499C11.938 7.14499 12.1925 7.39952 12.1925 7.70646C12.1925 10.2892 10.0963 12.3854 7.51358 12.3854ZM12.1925 5.86484V5.92473C12.1859 6.0042 12.1625 6.08135 12.1237 6.15105C12.085 6.22076 12.0319 6.28142 11.9679 6.32899C11.9155 6.36642 11.8556 6.39636 11.7882 6.41882C11.7358 6.43379 11.6834 6.44128 11.631 6.44128H9.81186C9.50492 6.44128 9.25039 6.18675 9.25039 5.87981C9.25039 5.57288 9.50492 5.31834 9.81186 5.31834H10.4332C9.83432 4.76436 8.86859 4.15049 7.52856 4.15049C5.56716 4.15049 3.97259 5.74506 3.97259 7.70646C3.97259 8.01339 3.71806 8.26792 3.41112 8.26792C3.10419 8.26792 2.83468 8.01339 2.83468 7.70646C2.83468 5.1237 4.93083 3.02755 7.51358 3.02755C9.12313 3.02755 10.306 3.72378 11.0695 4.39005V3.8211C11.0695 3.51416 11.3241 3.25963 11.631 3.25963C11.938 3.25963 12.1925 3.51416 12.1925 3.8211V5.86484Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yqd69p\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14.96px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"23.27px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Design Iteration\"})}),className:\"framer-2g96pm\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2p7yfz\",\"data-framer-name\":\"Prototyping\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-h6wopd\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-g40nhd\",\"data-framer-name\":\"mobile 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-z6fhvh\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"16\" viewBox=\"0 0 13 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.5362 0.220215H3.18787C1.12167 0.220215 0.373047 0.968839 0.373047 3.07247V12.3404C0.373047 14.4441 1.12167 15.1927 3.18787 15.1927H9.52872C11.6024 15.1927 12.351 14.4441 12.351 12.3404V3.07247C12.351 0.968839 11.6024 0.220215 9.5362 0.220215ZM6.36204 13.1714C5.64336 13.1714 5.05195 12.58 5.05195 11.8613C5.05195 11.1426 5.64336 10.5512 6.36204 10.5512C7.08072 10.5512 7.67213 11.1426 7.67213 11.8613C7.67213 12.58 7.08072 13.1714 6.36204 13.1714ZM7.85929 3.40187H4.86479C4.55786 3.40187 4.30332 3.14733 4.30332 2.8404C4.30332 2.53346 4.55786 2.27893 4.86479 2.27893H7.85929C8.16622 2.27893 8.42076 2.53346 8.42076 2.8404C8.42076 3.14733 8.16622 3.40187 7.85929 3.40187Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kaukm1\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14.96px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"23.27px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Prototyping\"})}),className:\"framer-1yn4s9u\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wa3lus\",\"data-framer-name\":\"Usability Testing\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rjbrmo\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9qkcfa\",\"data-framer-name\":\"cursor-edit-02 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1oxxsjb\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.92622 0.658936H10.7265C10.88 0.658936 11.0454 0.658936 11.1862 0.677651C11.3501 0.70011 11.5605 0.756257 11.7364 0.932932C11.9131 1.10961 11.9692 1.31922 11.9917 1.48317C12.0104 1.62391 12.0104 1.79011 12.0104 1.94357V2.7431C12.0104 2.89732 12.0104 3.06277 11.9917 3.20351C11.9692 3.36746 11.9131 3.57782 11.7364 3.75375C11.5868 3.8981 11.393 3.98801 11.1862 4.00903C11.0454 4.02774 10.8792 4.02774 10.7265 4.02774H9.92547C9.77275 4.02774 9.60656 4.02774 9.46581 4.00903C9.30187 3.98657 9.0915 3.93042 8.91558 3.75375C8.77122 3.60413 8.68132 3.41035 8.66029 3.20351C8.6443 3.05059 8.63805 2.89681 8.64158 2.7431V1.94357C8.64158 1.78936 8.64158 1.62391 8.66029 1.48317C8.68275 1.31922 8.7389 1.10886 8.91558 0.932932C9.09225 0.756257 9.30187 0.699361 9.46581 0.677651C9.60656 0.658936 9.77275 0.658936 9.92622 0.658936Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M16.2864 8.47008C16.386 8.60109 16.5035 8.80247 16.502 9.05401C16.4983 9.66414 16.0813 10.0819 15.6778 10.3461C15.2623 10.6171 14.7293 10.8178 14.2105 10.972C13.6857 11.1292 13.1339 11.2505 12.6638 11.3478C12.3359 11.4144 11.7542 11.5335 11.5873 11.5799C11.3118 11.6577 11.2564 11.7071 11.2377 11.7266C11.2175 11.7491 11.1688 11.8164 11.1044 12.1084L11.1022 12.1204C10.7997 13.4934 10.5632 14.5721 10.3086 15.3073C10.1821 15.6741 10.0354 16.0065 9.84223 16.2573C9.63861 16.5215 9.34814 16.7364 8.95886 16.7536C8.70208 16.7648 8.49621 16.6481 8.36595 16.5515C8.22448 16.4416 8.09746 16.3144 7.98789 16.1727C7.76106 15.8882 7.52674 15.5012 7.29616 15.0617C6.83277 14.1761 6.34391 12.9925 5.93142 11.7775C5.51893 10.5632 5.17307 9.29357 5.00687 8.23427C4.92377 7.70574 4.8811 7.20865 4.90506 6.78793C4.92677 6.3949 5.01061 5.94423 5.29809 5.63504C5.59379 5.31613 6.04521 5.20833 6.44049 5.1694C6.86196 5.12898 7.3598 5.15667 7.88907 5.22555C8.95062 5.36479 10.227 5.68595 11.4503 6.07973C12.6743 6.47425 13.8698 6.94813 14.7682 7.40479C15.2151 7.63237 15.6081 7.8652 15.8986 8.09278C16.0431 8.20507 16.1801 8.33159 16.2864 8.47008Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M1.69089 0.658936H2.49042C2.64464 0.658936 2.81008 0.658936 2.95082 0.677651C3.11477 0.70011 3.32513 0.756257 3.50106 0.932932C3.67774 1.10961 3.73463 1.31922 3.75634 1.48317C3.77506 1.62391 3.77506 1.79011 3.77506 1.94357V2.7431C3.77506 2.89732 3.77506 3.06277 3.75634 3.20351C3.73388 3.36746 3.67774 3.57782 3.50106 3.75375C3.35144 3.8981 3.15766 3.98801 2.95082 4.00903C2.81008 4.02774 2.64389 4.02774 2.49042 4.02774H1.69089C1.53667 4.02774 1.37123 4.02774 1.23049 4.00903C1.06654 3.98657 0.856173 3.93042 0.680246 3.75375C0.535891 3.60413 0.445988 3.41035 0.424966 3.20351C0.40625 3.06277 0.40625 2.89657 0.40625 2.7431V1.94357C0.40625 1.78936 0.40625 1.62391 0.424966 1.48317C0.447424 1.31922 0.503571 1.10886 0.680246 0.932932C0.856922 0.756257 1.06654 0.699361 1.23049 0.677651C1.37123 0.658936 1.53742 0.658936 1.69089 0.658936Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M1.69089 8.8938H2.49042C2.64464 8.8938 2.81008 8.8938 2.95082 8.91251C3.11477 8.93497 3.32513 8.99112 3.50106 9.1678C3.67774 9.34447 3.73463 9.55409 3.75634 9.71803C3.77506 9.85878 3.77506 10.025 3.77506 10.1784V10.9787C3.77506 11.1322 3.77506 11.2976 3.75634 11.4384C3.73388 11.6023 3.67774 11.8127 3.50106 11.9886C3.35144 12.133 3.15766 12.2229 2.95082 12.2439C2.79791 12.2599 2.64413 12.2661 2.49042 12.2626H1.69089C1.53667 12.2626 1.37123 12.2626 1.23049 12.2439C1.06654 12.2214 0.856173 12.1653 0.680246 11.9886C0.535891 11.839 0.445988 11.6452 0.424966 11.4384C0.40625 11.2976 0.40625 11.1314 0.40625 10.9787V10.1777C0.40625 10.025 0.40625 9.85878 0.424966 9.71803C0.447424 9.55409 0.503571 9.34372 0.680246 9.1678C0.856922 8.99112 1.06654 8.93497 1.23049 8.91251C1.37123 8.8938 1.53742 8.8938 1.69089 8.8938Z\" fill=\"#FCFCFD\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.95097 2.34335C9.95097 2.1448 9.8721 1.95439 9.73171 1.81399C9.59131 1.6736 9.4009 1.59473 9.20235 1.59473H3.21336C3.01481 1.59473 2.82439 1.6736 2.684 1.81399C2.54361 1.95439 2.46473 2.1448 2.46473 2.34335C2.46473 2.5419 2.54361 2.73231 2.684 2.87271C2.82439 3.0131 3.01481 3.09197 3.21336 3.09197H9.20235C9.4009 3.09197 9.59131 3.0131 9.73171 2.87271C9.8721 2.73231 9.95097 2.5419 9.95097 2.34335ZM2.09042 2.71766C1.89187 2.71766 1.70146 2.79654 1.56106 2.93693C1.42067 3.07732 1.3418 3.26774 1.3418 3.46629V9.45528C1.3418 9.65383 1.42067 9.84424 1.56106 9.98464C1.70146 10.125 1.89187 10.2039 2.09042 10.2039C2.28897 10.2039 2.47938 10.125 2.61978 9.98464C2.76017 9.84424 2.83904 9.65383 2.83904 9.45528V3.46629C2.83904 3.26774 2.76017 3.07732 2.61978 2.93693C2.47938 2.79654 2.28897 2.71766 2.09042 2.71766Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sk5nul\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14.96px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"23.27px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Usability Testing\"})}),className:\"framer-14mrslu\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xu4j7e\",\"data-framer-name\":\"Design Implementation\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-32e8tj\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wxc9m2\",\"data-framer-name\":\"pen-tool-2 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kr8i6x\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.3635 7.73329C15.2826 6.31245 14.7227 4.96093 13.7751 3.89913C12.8275 2.83734 11.5481 2.12791 10.1456 1.88653C10.1007 1.31009 9.62154 0.845947 9.03013 0.845947H8.28151C7.69009 0.845947 7.21846 1.30261 7.16606 1.87905C4.2614 2.35817 2.0829 4.79868 1.9182 7.73329C1.38668 7.82312 0.982422 8.27978 0.982422 8.83377V9.58239C0.982422 10.2037 1.484 10.7053 2.10536 10.7053H2.85398C3.47534 10.7053 3.97692 10.2037 3.97692 9.58239V8.83377C3.97692 8.27978 3.57266 7.82312 3.04114 7.73329C3.11856 6.59765 3.56839 5.51926 4.32091 4.66523C5.07343 3.8112 6.08663 3.22922 7.20349 3.00947C7.33075 3.48859 7.76496 3.84044 8.28151 3.84044H9.03013C9.54668 3.84044 9.9734 3.48859 10.1081 3.01696C12.384 3.47362 14.0833 5.41255 14.2406 7.73329C13.709 7.82312 13.3048 8.27978 13.3048 8.83377V9.58239C13.3048 10.2037 13.8064 10.7053 14.4277 10.7053H15.1763C15.7977 10.7053 16.2993 10.2037 16.2993 9.58239V8.83377C16.2993 8.27978 15.895 7.81564 15.3635 7.73329Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M11.4638 12.1126L10.2361 13.1981H7.05442L5.82668 12.1126C5.11549 11.5287 5.11549 11.0795 5.6545 10.3908L7.81802 7.65084C7.96774 7.46368 8.13993 7.33641 8.33457 7.26904C8.5367 7.20166 8.7538 7.20166 8.96341 7.26904C9.15057 7.33641 9.32275 7.46368 9.47996 7.65084L11.636 10.3833C12.1825 11.072 12.1526 11.4988 11.4638 12.1126Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M9.6286 16.1927H7.68966C7.00093 16.1927 6.48438 15.6312 6.61913 15.0323L6.8512 13.9918C6.87347 13.8914 6.92946 13.8018 7.00984 13.7377C7.09022 13.6737 7.19013 13.6392 7.29289 13.6399H10.0254C10.235 13.6399 10.4147 13.7821 10.4671 13.9918L10.6991 15.0323C10.8414 15.6687 10.3622 16.1927 9.6286 16.1927Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m88fwv\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14.96px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"23.27px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Design Implementation\"})}),className:\"framer-1k39clv\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1p2ya46\",\"data-framer-name\":\"Vector 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"10\" viewBox=\"-1 -1 24 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.3158 3.93335C15.3158 5.76967 16.8045 7.25831 18.6408 7.25831C20.4771 7.25831 21.9657 5.76967 21.9657 3.93335C21.9657 2.09702 20.4771 0.608389 18.6408 0.608389C16.8045 0.608389 15.3158 2.09702 15.3158 3.93335ZM0.353516 4.55678L2.63943 4.55678L2.63942 3.30992L0.353516 3.30992L0.353516 4.55678ZM7.21124 4.55678L11.7831 4.55678L11.7831 3.30992L7.21124 3.30992L7.21124 4.55678ZM16.3549 4.55678L18.6408 4.55678L18.6408 3.30992L16.3549 3.30992L16.3549 4.55678Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ke69aj\",\"data-framer-name\":\"Vector 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"10\" viewBox=\"-1 -1 25 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.8666 3.93335C15.8666 5.76967 17.3552 7.25831 19.1916 7.25831C21.0279 7.25831 22.5165 5.76967 22.5165 3.93335C22.5165 2.09702 21.0279 0.608389 19.1916 0.608389C17.3552 0.608389 15.8666 2.09702 15.8666 3.93335ZM0.904297 4.55678L3.19021 4.55678L3.19021 3.30992L0.904297 3.30992L0.904297 4.55678ZM7.76203 4.55678L12.3338 4.55678L12.3338 3.30992L7.76203 3.30992L7.76203 4.55678ZM16.9057 4.55678L19.1916 4.55678L19.1916 3.30992L16.9057 3.30992L16.9057 4.55678Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-715g97\",\"data-framer-name\":\"Vector 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:26,svg:'<svg width=\"26\" height=\"10\" viewBox=\"-1 -1 26 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.6627 3.93335C16.6627 5.76967 18.1513 7.25831 19.9877 7.25831C21.824 7.25831 23.3126 5.76967 23.3126 3.93335C23.3126 2.09703 21.824 0.608391 19.9877 0.608391C18.1513 0.608391 16.6627 2.09703 16.6627 3.93335ZM0.869141 4.55678H3.25896V3.30992H0.869141V4.55678ZM8.03859 4.55678H12.8182V3.30992H8.03859V4.55678ZM17.5978 4.55678H19.9877V3.30992H17.5978V4.55678Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k5cu5u\",\"data-framer-name\":\"Down Connectors 02\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:10,svg:'<svg width=\"10\" height=\"31\" viewBox=\"-1 -1 10 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.637932 25.5505C0.637932 27.3868 2.12657 28.8754 3.96289 28.8754C5.79921 28.8754 7.28785 27.3868 7.28785 25.5505C7.28785 23.7141 5.79921 22.2255 3.96289 22.2255C2.12657 22.2255 0.637932 23.7141 0.637932 25.5505ZM3.33946 0.613281V3.73043H4.58632V0.613281H3.33946ZM3.33946 9.96473V16.199H4.58632V9.96473H3.33946ZM3.33946 22.4333V25.5505H4.58632V22.4333H3.33946Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lt8gda\",\"data-framer-name\":\"Connectors 03\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:9,svg:'<svg width=\"9\" height=\"56\" viewBox=\"-1 -1 9 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.358637 49.9201C0.358637 51.7564 1.84727 53.2451 3.6836 53.2451C5.51992 53.2451 7.00855 51.7564 7.00855 49.9201C7.00855 48.0838 5.51992 46.5951 3.6836 46.5951C1.84727 46.5951 0.358637 48.0838 0.358637 49.9201ZM3.06016 0.876953L3.06016 3.32911L4.30702 3.32911L4.30702 0.876953L3.06016 0.876953ZM3.06016 8.23343L3.06016 13.1377L4.30702 13.1377L4.30702 8.23342L3.06016 8.23343ZM3.06016 18.0421L3.06016 22.9464L4.30702 22.9464L4.30702 18.0421L3.06016 18.0421ZM3.06017 27.8507L3.06017 32.755L4.30702 32.755L4.30702 27.8507L3.06017 27.8507ZM3.06017 37.6593L3.06017 42.5636L4.30703 42.5636L4.30703 37.6593L3.06017 37.6593ZM3.06017 47.4679L3.06017 49.9201L4.30703 49.9201L4.30703 47.4679L3.06017 47.4679Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r8gdas\",\"data-framer-name\":\"Connectors 02\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:57,intrinsicWidth:10,svg:'<svg width=\"10\" height=\"57\" viewBox=\"-1 -1 10 57\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.487541 50.7511C0.487541 52.5874 1.97618 54.076 3.8125 54.076C5.64882 54.076 7.13746 52.5874 7.13746 50.7511C7.13746 48.9148 5.64882 47.4261 3.8125 47.4261C1.97618 47.4261 0.487541 48.9148 0.487541 50.7511ZM3.18907 0.876709V3.37043H4.43593V0.876709H3.18907ZM3.18907 8.35787V13.3453H4.43593V8.35787H3.18907ZM3.18907 18.3327V23.3202H4.43593V18.3327H3.18907ZM3.18907 28.3076V33.2951H4.43593V28.3076H3.18907ZM3.18907 38.2825V43.2699H4.43593V38.2825H3.18907ZM3.18907 48.2574V50.7511H4.43593V48.2574H3.18907Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eh7fit\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fwvx1s\",\"data-framer-name\":\"Connectors 01\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:57,svg:'<svg width=\"57\" height=\"10\" viewBox=\"-1 -1 57 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.69789 3.19603L0.486671 0.172217L0.431298 7.37075L6.6883 4.44285L6.69789 3.19603ZM48.2507 4.76256L54.4619 7.78637L54.5173 0.587837L48.2603 3.51574L48.2507 4.76256ZM8.55878 4.45724L13.9618 4.4988L13.9714 3.25198L8.56837 3.21042L8.55878 4.45724ZM19.3649 4.54036L24.768 4.58192L24.7775 3.3351L19.3745 3.29354L19.3649 4.54036ZM30.171 4.62349L35.5741 4.66505L35.5837 3.41823L30.1806 3.37666L30.171 4.62349ZM40.9771 4.70661L46.3802 4.74817L46.3898 3.50135L40.9867 3.45979L40.9771 4.70661Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a7w77m hidden-72rtr7 hidden-1j4blxu\",\"data-framer-name\":\"Design Process\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wca51e\",\"data-framer-name\":\"Heading 02\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ks6q2a\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"11.52px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"17.91px\",\"--framer-text-color\":\"rgb(76, 76, 76)\"},children:\"Design Thinking Process\"})}),className:\"framer-1youhgi\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hyzvo6\",\"data-framer-name\":\"Heading 01\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11s30dj\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"11.52px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"17.91px\",\"--framer-text-color\":\"rgb(76, 76, 76)\"},children:\"Lean UX Research\"})}),className:\"framer-1861hk2\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9hd3pp\",\"data-framer-name\":\"Process Steps\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1whu72f\",\"data-framer-name\":\"Step 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c40kg3\",\"data-framer-name\":\"Discovery & Exploration\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-62ra0q\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i2h2mn\",\"data-framer-name\":\"search-normal 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15o9jap\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"12\" viewBox=\"0 0 13 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.12347 10.5138C7.50043 10.5138 8.821 9.9668 9.79465 8.99314C10.7683 8.01948 11.3153 6.69892 11.3153 5.32196C11.3153 3.945 10.7683 2.62444 9.79465 1.65078C8.821 0.677122 7.50043 0.130127 6.12347 0.130127C4.74651 0.130127 3.42595 0.677122 2.45229 1.65078C1.47864 2.62444 0.931641 3.945 0.931641 5.32196C0.931641 6.69892 1.47864 8.01948 2.45229 8.99314C3.42595 9.9668 4.74651 10.5138 6.12347 10.5138Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M12.4507 9.89727C12.2605 9.54577 11.8572 9.34985 11.3155 9.34985C10.9064 9.34985 10.5549 9.51696 10.3475 9.80508C10.14 10.0932 10.0939 10.4793 10.2207 10.8653C10.4685 11.6144 10.9006 11.7815 11.1369 11.8104C11.1715 11.8161 11.206 11.8161 11.2464 11.8161C11.4999 11.8161 11.8918 11.7066 12.2721 11.1362C12.5775 10.6925 12.6351 10.2488 12.4507 9.89727Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lmcw7f\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"11.52px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"17.91px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Discovery & Exploration\"})}),className:\"framer-ubs4u9\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ni1pq1\",\"data-framer-name\":\"Define Problem\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2p0bqk\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kp0cu\",\"data-framer-name\":\"puzzle 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16uognx\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"14\" viewBox=\"0 0 13 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.41183 2.8589C3.41185 2.56884 3.47028 2.28176 3.58362 2.01476C3.69696 1.74775 3.8629 1.50631 4.07154 1.3048C4.28018 1.10329 4.52725 0.945856 4.79803 0.841871C5.06881 0.737886 5.35776 0.689481 5.64764 0.699543C5.93753 0.709604 6.22242 0.777926 6.48534 0.900435C6.74826 1.02294 6.98383 1.19713 7.178 1.41262C7.37216 1.62811 7.52096 1.88048 7.61551 2.1547C7.71007 2.42891 7.74845 2.71936 7.72837 3.00872C8.15305 3.01794 8.52183 3.03926 8.83703 3.09401C9.28822 3.17295 9.67141 3.32507 9.982 3.63566C10.2926 3.94683 10.4447 4.32944 10.5237 4.78063C10.5784 5.0964 10.5997 5.46462 10.6084 5.8893C10.904 5.86878 11.2007 5.9093 11.4801 6.00834C11.7594 6.10737 12.0154 6.26282 12.2321 6.465C12.4488 6.66718 12.6216 6.91178 12.7397 7.18359C12.8579 7.4554 12.9188 7.7486 12.9188 8.04497C12.9188 8.34135 12.8579 8.63455 12.7397 8.90636C12.6216 9.17817 12.4488 9.42277 12.2321 9.62495C12.0154 9.82713 11.7594 9.98257 11.4801 10.0816C11.2007 10.1807 10.904 10.2212 10.6084 10.2006C10.5997 10.6259 10.5784 10.9941 10.5237 11.3093C10.4447 11.7605 10.2926 12.1437 9.982 12.4543C9.67084 12.7643 9.28822 12.917 8.83703 12.9959C8.3991 13.072 7.85744 13.0841 7.20457 13.0864C7.13529 13.0867 7.06696 13.0703 7.00535 13.0386C6.94373 13.0069 6.89063 12.9609 6.85052 12.9044C6.81041 12.8479 6.78447 12.7826 6.77489 12.714C6.7653 12.6454 6.77236 12.5755 6.79545 12.5102C6.86422 12.3147 6.88513 12.1055 6.85641 11.9003C6.8277 11.695 6.7502 11.4997 6.63041 11.3306C6.51063 11.1614 6.35204 11.0235 6.16796 10.9283C5.98387 10.8331 5.77965 10.7834 5.5724 10.7834C5.36516 10.7834 5.16093 10.8331 4.97685 10.9283C4.79276 11.0235 4.63418 11.1614 4.51439 11.3306C4.3946 11.4997 4.3171 11.695 4.28839 11.9003C4.25967 12.1055 4.28058 12.3147 4.34935 12.5102C4.37245 12.5755 4.3795 12.6454 4.36992 12.714C4.36033 12.7826 4.33439 12.8479 4.29428 12.9044C4.25418 12.9609 4.20108 13.0069 4.13946 13.0386C4.07784 13.0703 4.00951 13.0867 3.94023 13.0864C3.28736 13.0841 2.74686 13.072 2.30835 12.9959C1.85716 12.917 1.47397 12.7649 1.16338 12.4543C0.853366 12.1431 0.700665 11.7605 0.621721 11.3093C0.545659 10.8708 0.533558 10.3297 0.531253 9.67686C0.530986 9.60758 0.547378 9.53925 0.579048 9.47763C0.610718 9.41601 0.656738 9.36291 0.713228 9.3228C0.769719 9.28269 0.835023 9.25676 0.903638 9.24717C0.972252 9.23759 1.04217 9.24464 1.10748 9.26773C1.30298 9.33651 1.51212 9.35741 1.71737 9.3287C1.92261 9.29998 2.11799 9.22248 2.28711 9.1027C2.45623 8.98291 2.59417 8.82433 2.68937 8.64024C2.78456 8.45616 2.83425 8.25193 2.83425 8.04469C2.83425 7.83744 2.78456 7.63322 2.68937 7.44913C2.59417 7.26504 2.45623 7.10646 2.28711 6.98667C2.11799 6.86689 1.92261 6.78939 1.71737 6.76067C1.51212 6.73196 1.30298 6.75286 1.10748 6.82164C1.04217 6.84473 0.972252 6.85178 0.903638 6.8422C0.835023 6.83262 0.769719 6.80668 0.713228 6.76657C0.656738 6.72646 0.610718 6.67336 0.579048 6.61174C0.547378 6.55012 0.530986 6.48179 0.531253 6.41251C0.533558 5.75965 0.545659 5.21914 0.622298 4.78063C0.700665 4.32944 0.85279 3.94625 1.16395 3.63566C1.47397 3.32507 1.85716 3.17295 2.30835 3.09401C2.62412 3.03926 2.99233 3.01794 3.41701 3.0093C3.41356 2.95924 3.41183 2.90908 3.41183 2.8589Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cg0176\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"11.52px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"17.91px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Define Problem\"})}),className:\"framer-1gh2yba\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tifg8i\",\"data-framer-name\":\"Ideation & Wireframing\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9yh3q\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ee7srv\",\"data-framer-name\":\"ruler&pen 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1paqrvc\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.141 0.130371H7.83611C6.97638 0.130371 6.26531 0.871403 6.13047 1.71616C6.10569 1.87347 6.23707 2.00312 6.39554 2.00312H8.98857C9.22483 2.00312 9.42074 2.19904 9.42074 2.43529C9.42074 2.67155 9.22483 2.86746 8.98857 2.86746H6.39554C6.31912 2.86746 6.24584 2.89782 6.19181 2.95185C6.13778 3.00588 6.10742 3.07917 6.10742 3.15558V4.01992C6.10742 4.09634 6.13778 4.16962 6.19181 4.22365C6.24584 4.27768 6.31912 4.30804 6.39554 4.30804H7.72663C7.96288 4.30804 8.1588 4.50396 8.1588 4.74021C8.1588 4.97647 7.96288 5.17238 7.72663 5.17238H6.39554C6.31912 5.17238 6.24584 5.20274 6.19181 5.25677C6.13778 5.3108 6.10742 5.38409 6.10742 5.4605V6.29891C6.10742 6.37493 6.13746 6.44786 6.19099 6.50183C6.24453 6.5558 6.31722 6.58642 6.39323 6.58703L8.98915 6.61296C9.23116 6.61296 9.42132 6.80888 9.42132 7.05089C9.41556 7.28715 9.2254 7.4773 8.98915 7.4773H8.98339L6.39899 7.45137C6.36092 7.45099 6.32314 7.45816 6.28785 7.47247C6.25256 7.48678 6.22046 7.50794 6.1934 7.53473C6.16634 7.56153 6.14486 7.59342 6.1302 7.62856C6.11554 7.66371 6.108 7.70141 6.108 7.73949V8.62976C6.108 8.70618 6.13835 8.77946 6.19239 8.83349C6.24642 8.88752 6.3197 8.91788 6.39611 8.91788H8.3553C8.46991 8.91788 8.57984 8.96341 8.66089 9.04446C8.74194 9.12551 8.78747 9.23543 8.78747 9.35005C8.78747 9.46467 8.74194 9.5746 8.66089 9.65564C8.57984 9.73669 8.46991 9.78222 8.3553 9.78222H6.39611C6.23707 9.78222 6.10569 9.91187 6.13105 10.0692C6.26531 10.9139 6.97638 11.655 7.83669 11.655H10.1416C11.0924 11.655 11.8703 10.8828 11.8703 9.92628V1.85906C11.8703 0.902519 11.0924 0.130371 10.1416 0.130371H10.141Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M4.36255 1.83025V2.29123C4.36255 2.36765 4.3322 2.44093 4.27816 2.49496C4.22413 2.54899 4.15085 2.57935 4.07444 2.57935H1.24515C1.16873 2.57935 1.09545 2.54899 1.04142 2.49496C0.987386 2.44093 0.957031 2.36765 0.957031 2.29123V1.83025C0.957031 0.896757 1.72342 0.130371 2.66267 0.130371C3.59616 0.130371 4.36255 0.896757 4.36255 1.83025Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M0.957031 9.2981C0.957031 9.5574 1.06651 9.955 1.20481 10.174L1.67156 10.9576C2.21897 11.8681 3.10637 11.8681 3.64803 10.9576L4.12053 10.174C4.25307 9.955 4.36255 9.5574 4.36255 9.2981V3.73172C4.36255 3.65531 4.3322 3.58202 4.27816 3.52799C4.22413 3.47396 4.15085 3.4436 4.07444 3.4436H1.24515C1.16873 3.4436 1.09545 3.47396 1.04142 3.52799C0.987386 3.58202 0.957031 3.65531 0.957031 3.73172V9.2981Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8r1jru\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"11.52px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"17.91px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Ideation & Wireframing\"})}),className:\"framer-1ui8c33\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-h4imqr\",\"data-framer-name\":\"Vector 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"8\" viewBox=\"-1 -1 18 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.92038 2.89258C9.92038 4.30603 11.0662 5.45186 12.4797 5.45186C13.8931 5.45186 15.039 4.30603 15.039 2.89258C15.039 1.47913 13.8931 0.333295 12.4797 0.333295C11.0662 0.333295 9.92038 1.47913 9.92038 2.89258ZM0.962891 3.37244L2.40249 3.37244L2.40249 2.41271L0.962891 2.41271L0.962891 3.37244ZM5.28168 3.37244L8.16088 3.37244L8.16088 2.41271L5.28168 2.41271L5.28168 3.37244ZM11.0401 3.37244L12.4797 3.37244L12.4797 2.41271L11.0401 2.41271L11.0401 3.37244Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4w8dfs\",\"data-framer-name\":\"Vector 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"8\" viewBox=\"-1 -1 17 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.95554 2.89258C8.95554 4.30603 10.1014 5.45186 11.5148 5.45186C12.9283 5.45186 14.0741 4.30603 14.0741 2.89258C14.0741 1.47913 12.9283 0.333295 11.5148 0.333295C10.1014 0.333295 8.95554 1.47913 8.95554 2.89258ZM-0.00195317 3.37244L1.43764 3.37244L1.43764 2.41271L-0.00195308 2.41271L-0.00195317 3.37244ZM4.31684 3.37244L7.19603 3.37244L7.19603 2.41271L4.31684 2.41271L4.31684 3.37244ZM10.0752 3.37244L11.5148 3.37244L11.5148 2.41271L10.0752 2.41271L10.0752 3.37244Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hleccg\",\"data-framer-name\":\"Step 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jyg1\",\"data-framer-name\":\"Design Iteration\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jmnctw\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g8sg4a\",\"data-framer-name\":\"refresh-2 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1k2wakr\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.23725 0.637939H3.40844C1.31097 0.637939 0.0605469 1.88836 0.0605469 3.98584V8.80888C0.0605469 10.9121 1.31097 12.1625 3.40844 12.1625H8.23149C10.329 12.1625 11.5794 10.9121 11.5794 8.81464V3.98584C11.5851 1.88836 10.3347 0.637939 8.23725 0.637939ZM5.82285 10.0017C4.7914 10.0017 3.98467 9.48883 3.43725 8.98175V9.39087C3.43725 9.62713 3.24134 9.82305 3.00508 9.82305C2.76883 9.82305 2.57291 9.62713 2.57291 9.39087V7.80624C2.57291 7.56999 2.76883 7.37407 3.00508 7.37407H4.43413C4.67039 7.37407 4.86631 7.56999 4.86631 7.80624C4.86631 8.04249 4.67039 8.23841 4.43413 8.23841H3.91553C4.34194 8.66482 5.0046 9.13733 5.82285 9.13733C7.33257 9.13733 8.55994 7.90996 8.55994 6.40024C8.55994 6.16399 8.75586 5.96807 8.99211 5.96807C9.22837 5.96807 9.42428 6.16399 9.42428 6.40024C9.42428 8.38823 7.81084 10.0017 5.82285 10.0017ZM9.42428 4.98271V5.02881C9.41922 5.08998 9.40118 5.14937 9.37137 5.20302C9.34157 5.25667 9.30067 5.30336 9.25142 5.33998C9.21108 5.36879 9.16498 5.39184 9.11312 5.40912C9.07278 5.42065 9.03245 5.42641 8.99211 5.42641H7.59187C7.35562 5.42641 7.1597 5.23049 7.1597 4.99424C7.1597 4.75798 7.35562 4.56207 7.59187 4.56207H8.07014C7.60916 4.13566 6.86582 3.66315 5.83437 3.66315C4.32465 3.66315 3.09728 4.89052 3.09728 6.40024C3.09728 6.63649 2.90136 6.83241 2.66511 6.83241C2.42885 6.83241 2.22141 6.63649 2.22141 6.40024C2.22141 4.41225 3.83485 2.7988 5.82285 2.7988C7.06174 2.7988 7.97218 3.3347 8.55994 3.84754V3.40961C8.55994 3.17335 8.75586 2.97743 8.99211 2.97743C9.22837 2.97743 9.42428 3.17335 9.42428 3.40961V4.98271Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jhvsmk\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"11.52px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"17.91px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Design Iteration\"})}),className:\"framer-1wk8vj3\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mwyc1u\",\"data-framer-name\":\"Prototyping\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18lbi3s\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wxxpsc\",\"data-framer-name\":\"mobile 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-150u8lb\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:10,svg:'<svg width=\"10\" height=\"13\" viewBox=\"0 0 10 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.79329 0.637939H2.90686C1.31646 0.637939 0.740234 1.21417 0.740234 2.83338V9.9671C0.740234 11.5863 1.31646 12.1625 2.90686 12.1625H7.78753C9.38368 12.1625 9.95991 11.5863 9.95991 9.9671V2.83338C9.95991 1.21417 9.38368 0.637939 7.79329 0.637939ZM5.35007 10.6067C4.79689 10.6067 4.34167 10.1515 4.34167 9.59832C4.34167 9.04513 4.79689 8.58991 5.35007 8.58991C5.90326 8.58991 6.35848 9.04513 6.35848 9.59832C6.35848 10.1515 5.90326 10.6067 5.35007 10.6067ZM6.50253 3.08692H4.19761C3.96136 3.08692 3.76544 2.891 3.76544 2.65474C3.76544 2.41849 3.96136 2.22257 4.19761 2.22257H6.50253C6.73879 2.22257 6.93471 2.41849 6.93471 2.65474C6.93471 2.891 6.73879 3.08692 6.50253 3.08692Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-110v6zk\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"11.52px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"17.91px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Prototyping\"})}),className:\"framer-1vzjlc3\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-awhj9t\",\"data-framer-name\":\"Usability Testing\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5niycf\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1acpaal\",\"data-framer-name\":\"cursor-edit-02 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19ycb8z\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.33329 0.206055H7.94928C8.06741 0.206055 8.19476 0.206055 8.30309 0.22046C8.42928 0.237747 8.59121 0.280965 8.72662 0.416955C8.86261 0.552945 8.90583 0.71429 8.92311 0.840484C8.93752 0.948815 8.93752 1.07674 8.93752 1.19487V1.81028C8.93752 1.92898 8.93752 2.05633 8.92311 2.16466C8.90583 2.29085 8.86261 2.45278 8.72662 2.58819C8.61145 2.6993 8.4623 2.7685 8.30309 2.78468C8.19476 2.79909 8.06684 2.79909 7.94928 2.79909H7.33272C7.21517 2.79909 7.08724 2.79909 6.97891 2.78468C6.85272 2.7674 6.6908 2.72418 6.55538 2.58819C6.44427 2.47302 6.37507 2.32387 6.35889 2.16466C6.34658 2.04696 6.34177 1.92859 6.34448 1.81028V1.19487C6.34448 1.07616 6.34448 0.948815 6.35889 0.840484C6.37618 0.71429 6.41939 0.552369 6.55538 0.416955C6.69137 0.280965 6.85272 0.237171 6.97891 0.22046C7.08724 0.206055 7.21517 0.206055 7.33329 0.206055Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M12.2284 6.21837C12.3051 6.31921 12.3955 6.47422 12.3944 6.66783C12.3915 7.13746 12.0705 7.459 11.7599 7.6624C11.4401 7.871 11.0299 8.02543 10.6305 8.14413C10.2266 8.26514 9.80191 8.35849 9.44003 8.4334C9.18765 8.48469 8.73991 8.57631 8.61142 8.61203C8.39936 8.67196 8.35672 8.70999 8.34232 8.72497C8.32676 8.74226 8.2893 8.79412 8.23975 9.01885L8.23802 9.02807C8.00522 10.0849 7.82313 10.9152 7.62722 11.4811C7.52983 11.7634 7.41689 12.0193 7.26822 12.2123C7.11149 12.4157 6.88791 12.5811 6.58827 12.5944C6.39063 12.603 6.23216 12.5131 6.1319 12.4388C6.02301 12.3542 5.92524 12.2563 5.8409 12.1472C5.6663 11.9282 5.48594 11.6303 5.30847 11.2921C4.95178 10.6104 4.5755 9.69938 4.258 8.76416C3.9405 7.82951 3.67428 6.85223 3.54635 6.03686C3.48239 5.63004 3.44955 5.24743 3.46799 4.92358C3.4847 4.62106 3.54924 4.27417 3.77051 4.03619C3.99812 3.79072 4.34559 3.70774 4.64983 3.67777C4.97425 3.64666 5.35745 3.66798 5.76484 3.72099C6.58193 3.82817 7.56441 4.07537 8.50597 4.37847C9.4481 4.68214 10.3683 5.0469 11.0598 5.3984C11.4038 5.57357 11.7063 5.75278 11.9299 5.92795C12.0411 6.01439 12.1466 6.11177 12.2284 6.21837Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M0.99467 0.206055H1.61008C1.72879 0.206055 1.85613 0.206055 1.96447 0.22046C2.09066 0.237747 2.25258 0.280965 2.38799 0.416955C2.52398 0.552945 2.56778 0.71429 2.58449 0.840484C2.59889 0.948815 2.59889 1.07674 2.59889 1.19487V1.81028C2.59889 1.92898 2.59889 2.05633 2.58449 2.16466C2.5672 2.29085 2.52398 2.45278 2.38799 2.58819C2.27283 2.6993 2.12367 2.7685 1.96447 2.78468C1.85613 2.79909 1.72821 2.79909 1.61008 2.79909H0.99467C0.875967 2.79909 0.74862 2.79909 0.640289 2.78468C0.514094 2.7674 0.352174 2.72418 0.21676 2.58819C0.105646 2.47302 0.0364462 2.32387 0.0202651 2.16466C0.00585936 2.05633 0.00585938 1.92841 0.00585938 1.81028V1.19487C0.00585938 1.07616 0.00585936 0.948815 0.0202651 0.840484C0.037552 0.71429 0.0807693 0.552369 0.21676 0.416955C0.35275 0.280965 0.514094 0.237171 0.640289 0.22046C0.74862 0.206055 0.876543 0.206055 0.99467 0.206055Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M0.99467 6.54468H1.61008C1.72879 6.54468 1.85613 6.54468 1.96447 6.55908C2.09066 6.57637 2.25258 6.61959 2.38799 6.75558C2.52398 6.89157 2.56778 7.05291 2.58449 7.17911C2.59889 7.28744 2.59889 7.41536 2.59889 7.53349V8.14948C2.59889 8.26761 2.59889 8.39495 2.58449 8.50328C2.5672 8.62948 2.52398 8.7914 2.38799 8.92681C2.27283 9.03793 2.12367 9.10713 1.96447 9.12331C1.84676 9.13562 1.7284 9.14043 1.61008 9.13771H0.99467C0.875967 9.13771 0.74862 9.13771 0.640289 9.12331C0.514094 9.10602 0.352174 9.0628 0.21676 8.92681C0.105646 8.81165 0.0364462 8.66249 0.0202651 8.50328C0.00585936 8.39495 0.00585938 8.26703 0.00585938 8.14948V7.53291C0.00585938 7.41536 0.00585936 7.28744 0.0202651 7.17911C0.037552 7.05291 0.0807693 6.89099 0.21676 6.75558C0.35275 6.61959 0.514094 6.57637 0.640289 6.55908C0.74862 6.54468 0.876543 6.54468 0.99467 6.54468Z\" fill=\"#FCFCFD\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.35321 1.5025C7.35321 1.34967 7.2925 1.20311 7.18443 1.09504C7.07637 0.986979 6.9298 0.92627 6.77698 0.92627H2.16714C2.01431 0.92627 1.86775 0.986979 1.75968 1.09504C1.65162 1.20311 1.59091 1.34967 1.59091 1.5025C1.59091 1.65533 1.65162 1.80189 1.75968 1.90996C1.86775 2.01802 2.01431 2.07873 2.16714 2.07873H6.77698C6.9298 2.07873 7.07637 2.01802 7.18443 1.90996C7.2925 1.80189 7.35321 1.65533 7.35321 1.5025ZM1.30279 1.79061C1.14997 1.79061 1.0034 1.85132 0.895336 1.95939C0.787272 2.06745 0.726563 2.21402 0.726562 2.36684V6.97668C0.726563 7.12951 0.787272 7.27608 0.895336 7.38414C1.0034 7.4922 1.14997 7.55291 1.30279 7.55291C1.45562 7.55291 1.60218 7.4922 1.71025 7.38414C1.81831 7.27608 1.87902 7.12951 1.87902 6.97668V2.36684C1.87902 2.21402 1.81831 2.06745 1.71025 1.95939C1.60218 1.85132 1.45562 1.79061 1.30279 1.79061Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fms7br\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"11.52px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"17.91px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Usability Testing\"})}),className:\"framer-bqs3wy\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i4ghrk\",\"data-framer-name\":\"Design Implementation\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13w71qm\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-g1gbn5\",\"data-framer-name\":\"pen-tool-2 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gj78m3\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.46 5.65117C11.3977 4.55752 10.9668 3.51723 10.2374 2.69995C9.50799 1.88267 8.52323 1.3366 7.44368 1.15081C7.40911 0.707116 7.04032 0.349854 6.5851 0.349854H6.00887C5.55365 0.349854 5.19062 0.701354 5.15028 1.14505C2.91451 1.51384 1.23768 3.39235 1.11091 5.65117C0.701789 5.72032 0.390625 6.07182 0.390625 6.49823V7.07446C0.390625 7.55273 0.776699 7.9388 1.25497 7.9388H1.8312C2.30947 7.9388 2.69554 7.55273 2.69554 7.07446V6.49823C2.69554 6.07182 2.38438 5.72032 1.97526 5.65117C2.03485 4.77705 2.38109 3.94699 2.96032 3.28963C3.53955 2.63226 4.31943 2.1843 5.1791 2.01516C5.27706 2.38395 5.61127 2.65477 6.00887 2.65477H6.5851C6.9827 2.65477 7.31115 2.38395 7.41487 2.02092C9.16661 2.37242 10.4746 3.86486 10.5957 5.65117C10.1865 5.72032 9.87537 6.07182 9.87537 6.49823V7.07446C9.87537 7.55273 10.2614 7.9388 10.7397 7.9388H11.3159C11.7942 7.9388 12.1803 7.55273 12.1803 7.07446V6.49823C12.1803 6.07182 11.8691 5.71455 11.46 5.65117Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M8.45927 9.02223L7.51425 9.85776H5.06527L4.12025 9.02223C3.57283 8.57277 3.57284 8.22703 3.98772 7.6969L5.65302 5.5879C5.76827 5.44384 5.9008 5.34588 6.05062 5.29402C6.20621 5.24216 6.37331 5.24216 6.53466 5.29402C6.67871 5.34588 6.81125 5.44384 6.93226 5.5879L8.5918 7.69114C9.01245 8.22127 8.9894 8.54972 8.45927 9.02223Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M7.04586 12.1627H5.55343C5.0233 12.1627 4.6257 11.7305 4.72942 11.2696L4.90805 10.4686C4.92519 10.3914 4.96829 10.3224 5.03016 10.2731C5.09203 10.2238 5.16893 10.1972 5.24803 10.1978H7.35127C7.51261 10.1978 7.6509 10.3072 7.69124 10.4686L7.86987 11.2696C7.97936 11.7593 7.61057 12.1627 7.04586 12.1627Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-et0ckb\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"11.52px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"17.91px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Design Implementation\"})}),className:\"framer-118hkzm\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ig55x1\",\"data-framer-name\":\"Vector 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:19,svg:'<svg width=\"19\" height=\"8\" viewBox=\"-1 -1 19 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.6847 2.57495C11.6847 3.9884 12.8306 5.13423 14.244 5.13423C15.6575 5.13423 16.8033 3.9884 16.8033 2.57495C16.8033 1.1615 15.6575 0.0156659 14.244 0.015666C12.8306 0.0156662 11.6847 1.1615 11.6847 2.57495ZM0.167969 3.05482L1.92748 3.05482L1.92748 2.09509L0.167969 2.09509L0.167969 3.05482ZM5.44649 3.05482L8.96551 3.05482L8.96551 2.09508L5.44649 2.09508L5.44649 3.05482ZM12.4845 3.05482L14.244 3.05482L14.244 2.09508L12.4845 2.09508L12.4845 3.05482Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dfwh2l\",\"data-framer-name\":\"Vector 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:19,svg:'<svg width=\"19\" height=\"8\" viewBox=\"-1 -1 19 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.8879 2.57495C11.8879 3.9884 13.0337 5.13423 14.4472 5.13423C15.8606 5.13423 17.0064 3.9884 17.0064 2.57495C17.0064 1.1615 15.8606 0.0156659 14.4472 0.015666C13.0337 0.0156662 11.8879 1.1615 11.8879 2.57495ZM0.371094 3.05482L2.1306 3.05482L2.1306 2.09509L0.371094 2.09509L0.371094 3.05482ZM5.64962 3.05482L9.16863 3.05482L9.16863 2.09508L5.64962 2.09508L5.64962 3.05482ZM12.6876 3.05482L14.4472 3.05482L14.4472 2.09508L12.6876 2.09508L12.6876 3.05482Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14n3fnl\",\"data-framer-name\":\"Vector 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"8\" viewBox=\"-1 -1 20 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.682 2.57495C12.682 3.9884 13.8278 5.13424 15.2413 5.13424C16.6547 5.13424 17.8006 3.9884 17.8006 2.57495C17.8006 1.1615 16.6547 0.0156673 15.2413 0.0156673C13.8278 0.0156673 12.682 1.1615 12.682 2.57495ZM0.525391 3.05482H2.36488V2.09509H0.525391V3.05482ZM6.04385 3.05482H9.72282V2.09509H6.04385V3.05482ZM13.4018 3.05482H15.2413V2.09509H13.4018V3.05482Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10q6aga\",\"data-framer-name\":\"Down Connectors 01\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"25\" viewBox=\"-1 -1 8 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.161419 19.8411C0.161419 21.2546 1.30725 22.4004 2.7207 22.4004C4.13416 22.4004 5.27999 21.2546 5.27999 19.8411C5.27999 18.4277 4.13416 17.2818 2.7207 17.2818C1.30725 17.2818 0.161419 18.4277 0.161419 19.8411ZM2.24084 0.646484V2.24604H3.20057V0.646484H2.24084ZM2.24084 5.44514V8.64425H3.20057V5.44514H2.24084ZM2.24084 11.8434V15.0425H3.20057V11.8434H2.24084ZM2.24084 18.2416V19.8411H3.20057V18.2416H2.24084Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13t5j1r\",\"data-framer-name\":\"Down Connectors 02\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"24\" viewBox=\"-1 -1 8 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.647747 19.2012C0.647747 20.6147 1.79358 21.7605 3.20703 21.7605C4.62048 21.7605 5.76632 20.6147 5.76632 19.2012C5.76632 17.7878 4.62048 16.6419 3.20703 16.6419C1.79358 16.6419 0.647747 17.7878 0.647747 19.2012ZM2.72717 0.0065918V1.60614H3.6869V0.0065918H2.72717ZM2.72717 4.80525V8.00435H3.6869V4.80525H2.72717ZM2.72717 11.2035V14.4026H3.6869V11.2035H2.72717ZM2.72717 17.6017V19.2012H3.6869V17.6017H2.72717Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1j6x07e\",\"data-framer-name\":\"Connectors 03\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:43,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"43\" viewBox=\"-1 -1 8 43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.466108 38.1386C0.466108 39.5521 1.61194 40.6979 3.02539 40.6979C4.43885 40.6979 5.58468 39.5521 5.58468 38.1386C5.58468 36.7251 4.43885 35.5793 3.02539 35.5793C1.61194 35.5793 0.466108 36.7251 0.466108 38.1386ZM2.54552 0.38916L2.54552 2.27663L3.50526 2.27663L3.50526 0.38916L2.54552 0.38916ZM2.54553 6.05158L2.54553 9.82652L3.50526 9.82652L3.50526 6.05158L2.54553 6.05158ZM2.54553 13.6015L2.54553 17.3764L3.50526 17.3764L3.50526 13.6015L2.54553 13.6015ZM2.54553 21.1514L2.54553 24.9263L3.50526 24.9263L3.50526 21.1514L2.54553 21.1514ZM2.54553 28.7012L2.54553 32.4762L3.50526 32.4762L3.50526 28.7012L2.54553 28.7012ZM2.54553 36.2511L2.54553 38.1386L3.50526 38.1386L3.50526 36.2511L2.54553 36.2511Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-136glz\",\"data-framer-name\":\"Connectors 02\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"44\" viewBox=\"-1 -1 8 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.333294 38.7784C0.333294 40.1919 1.47912 41.3377 2.89258 41.3377C4.30603 41.3377 5.45186 40.1919 5.45186 38.7784C5.45186 37.365 4.30603 36.2191 2.89258 36.2191C1.47912 36.2191 0.333294 37.365 0.333294 38.7784ZM2.41271 0.38916V2.30862H3.37244V0.38916H2.41271ZM2.41271 6.14755V9.98648H3.37244V6.14755H2.41271ZM2.41271 13.8254V17.6643H3.37244V13.8254H2.41271ZM2.41271 21.5033V25.3422H3.37244V21.5033H2.41271ZM2.41271 29.1811V33.02H3.37244V29.1811H2.41271ZM2.41271 36.859V38.7784H3.37244V36.859H2.41271Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5aelr9\",\"data-framer-name\":\"Connectors 01\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:44,svg:'<svg width=\"44\" height=\"8\" viewBox=\"-1 -1 44 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.18697 2.39153L0.406077 0.0640485L0.363455 5.6049L5.17959 3.35124L5.18697 2.39153ZM37.1709 3.59732L41.9518 5.92481L41.9944 0.383959L37.1783 2.63762L37.1709 3.59732ZM6.61933 3.36231L10.7782 3.3943L10.7855 2.4346L6.62671 2.40261L6.61933 3.36231ZM14.937 3.42629L19.0958 3.45828L19.1032 2.49858L14.9444 2.46659L14.937 3.42629ZM23.2547 3.49027L27.4135 3.52227L27.4209 2.56256L23.2621 2.53057L23.2547 3.49027ZM31.5723 3.55426L35.7312 3.58625L35.7386 2.62654L31.5797 2.59455L31.5723 3.55426Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1szpclj hidden-72rtr7 hidden-1opd900\",\"data-framer-name\":\"Design Process\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-w2ckqc\",\"data-framer-name\":\"Heading 02\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kz88ph\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"7.84px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"12.2px\",\"--framer-text-color\":\"rgb(76, 76, 76)\"},children:\"Design Thinking Process\"})}),className:\"framer-1tzi8g3\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5qdxuk\",\"data-framer-name\":\"Heading 01\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nm33uy\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"7.84px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"12.2px\",\"--framer-text-color\":\"rgb(76, 76, 76)\"},children:\"Lean UX Research\"})}),className:\"framer-15pid1q\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n70diq\",\"data-framer-name\":\"Process Steps\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q7p9z3\",\"data-framer-name\":\"Step 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3x704b\",\"data-framer-name\":\"Discovery & Exploration\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kiyrt1\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7jlp0l\",\"data-framer-name\":\"search-normal 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-uen7tf\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.86753 7.00483C4.70056 7.00483 5.49948 6.67391 6.08853 6.08486C6.67757 5.49582 7.00849 4.6969 7.00849 3.86387C7.00849 3.03083 6.67757 2.23191 6.08853 1.64287C5.49948 1.05382 4.70056 0.7229 3.86753 0.7229C3.03449 0.7229 2.23558 1.05382 1.64653 1.64287C1.05748 2.23191 0.726563 3.03083 0.726562 3.86387C0.726563 4.6969 1.05748 5.49582 1.64653 6.08486C2.23558 6.67391 3.03449 7.00483 3.86753 7.00483Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M7.69438 6.63172C7.57934 6.41906 7.33532 6.30054 7.00762 6.30054C6.76011 6.30054 6.54746 6.40163 6.42196 6.57594C6.29646 6.75024 6.26857 6.98381 6.34527 7.21738C6.49517 7.67057 6.75662 7.77167 6.89955 7.7891C6.92047 7.79258 6.94139 7.79258 6.96579 7.79258C7.11918 7.79258 7.35623 7.72635 7.58631 7.38122C7.77108 7.1128 7.80594 6.84437 7.69438 6.63172Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hv8jwf\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"6.97px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"10.84px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Discovery & Exploration\"})}),className:\"framer-1bdend7\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w4ycw\",\"data-framer-name\":\"Define Problem\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lacccd\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-akrbyv\",\"data-framer-name\":\"puzzle 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fphoo7\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:9,svg:'<svg width=\"9\" height=\"8\" viewBox=\"0 0 9 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.51418 1.74295C2.5142 1.56747 2.54954 1.39379 2.61811 1.23226C2.68668 1.07073 2.78707 0.924655 2.91329 0.802748C3.03952 0.68084 3.18899 0.585593 3.35281 0.522684C3.51663 0.459775 3.69144 0.430491 3.86681 0.436578C4.04219 0.442665 4.21454 0.483998 4.3736 0.558114C4.53267 0.63223 4.67518 0.737611 4.79265 0.867977C4.91011 0.998342 5.00013 1.15102 5.05734 1.31692C5.11454 1.48282 5.13776 1.65853 5.12561 1.83359C5.38254 1.83917 5.60564 1.85207 5.79633 1.88518C6.06929 1.93294 6.30112 2.02498 6.48902 2.21288C6.67692 2.40113 6.76895 2.6326 6.81671 2.90556C6.84983 3.0966 6.86273 3.31936 6.86796 3.57629C7.04683 3.56387 7.22634 3.58838 7.39533 3.6483C7.56433 3.70822 7.71919 3.80226 7.85029 3.92458C7.98139 4.04689 8.08592 4.19487 8.1574 4.35931C8.22887 4.52375 8.26576 4.70113 8.26576 4.88043C8.26576 5.05973 8.22887 5.23712 8.1574 5.40156C8.08592 5.56599 7.98139 5.71397 7.85029 5.83629C7.71919 5.9586 7.56433 6.05264 7.39533 6.11256C7.22634 6.17248 7.04683 6.19699 6.86796 6.18458C6.86273 6.44185 6.84983 6.66461 6.81671 6.8553C6.76895 7.12826 6.67692 7.36009 6.48902 7.54799C6.30077 7.73554 6.06929 7.82792 5.79633 7.87568C5.53139 7.92169 5.2037 7.92902 4.80873 7.93041C4.76681 7.93057 4.72547 7.92066 4.6882 7.9015C4.65092 7.88234 4.61879 7.85449 4.59453 7.82032C4.57026 7.78614 4.55457 7.74663 4.54877 7.70512C4.54297 7.66361 4.54724 7.62132 4.56121 7.5818C4.60282 7.46353 4.61547 7.337 4.5981 7.21283C4.58072 7.08866 4.53384 6.97046 4.46137 6.86815C4.3889 6.76584 4.29296 6.68238 4.18159 6.62479C4.07022 6.5672 3.94667 6.53714 3.82129 6.53714C3.69591 6.53714 3.57236 6.5672 3.46099 6.62479C3.34962 6.68238 3.25368 6.76584 3.18121 6.86815C3.10874 6.97046 3.06186 7.08866 3.04449 7.21283C3.02711 7.337 3.03976 7.46353 3.08137 7.5818C3.09534 7.62132 3.09961 7.66361 3.09381 7.70512C3.08801 7.74663 3.07232 7.78614 3.04805 7.82032C3.02379 7.85449 2.99166 7.88234 2.95438 7.9015C2.91711 7.92066 2.87577 7.93057 2.83386 7.93041C2.43888 7.92902 2.11189 7.92169 1.8466 7.87568C1.57364 7.82792 1.34181 7.73589 1.15391 7.54799C0.966359 7.35974 0.873977 7.12826 0.826218 6.8553C0.780202 6.59001 0.772881 6.26267 0.771486 5.86769C0.771325 5.82578 0.781242 5.78444 0.800401 5.74716C0.819561 5.70989 0.847402 5.67776 0.881578 5.6535C0.915754 5.62923 0.955262 5.61354 0.996772 5.60774C1.03828 5.60194 1.08058 5.60621 1.1201 5.62018C1.23837 5.66179 1.3649 5.67443 1.48907 5.65706C1.61324 5.63969 1.73143 5.5928 1.83375 5.52034C1.93606 5.44787 2.01951 5.35193 2.07711 5.24056C2.1347 5.12919 2.16476 5.00564 2.16476 4.88026C2.16476 4.75488 2.1347 4.63133 2.07711 4.51996C2.01951 4.40859 1.93606 4.31265 1.83375 4.24018C1.73143 4.16771 1.61324 4.12083 1.48907 4.10345C1.3649 4.08608 1.23837 4.09873 1.1201 4.14034C1.08058 4.15431 1.03828 4.15857 0.996772 4.15278C0.955262 4.14698 0.915754 4.13128 0.881578 4.10702C0.847402 4.08276 0.819561 4.05063 0.800401 4.01335C0.781242 3.97607 0.771325 3.93474 0.771486 3.89282C0.772881 3.49785 0.780202 3.17085 0.826567 2.90556C0.873977 2.6326 0.96601 2.40078 1.15426 2.21288C1.34181 2.02498 1.57364 1.93294 1.8466 1.88518C2.03763 1.85207 2.26039 1.83917 2.51732 1.83394C2.51523 1.80366 2.51418 1.77331 2.51418 1.74295Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ju65k6\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"6.97px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"10.84px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Define Problem\"})}),className:\"framer-9ivp5p\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1li6hna\",\"data-framer-name\":\"Ideation & Wireframing\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8s804z\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xvndwv\",\"data-framer-name\":\"ruler&pen 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1u6flui\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:7,svg:'<svg width=\"7\" height=\"8\" viewBox=\"0 0 7 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.75471 0.697266H4.36028C3.84016 0.697266 3.40997 1.14558 3.3284 1.65664C3.31341 1.75181 3.39289 1.83024 3.48876 1.83024H5.0575C5.20043 1.83024 5.31895 1.94877 5.31895 2.0917C5.31895 2.23463 5.20043 2.35316 5.0575 2.35316H3.48876C3.44253 2.35316 3.39819 2.37152 3.36551 2.40421C3.33282 2.4369 3.31445 2.48123 3.31445 2.52746V3.05038C3.31445 3.0966 3.33282 3.14094 3.36551 3.17363C3.39819 3.20632 3.44253 3.22468 3.48876 3.22468H4.29404C4.43697 3.22468 4.5555 3.34321 4.5555 3.48614C4.5555 3.62907 4.43697 3.74759 4.29404 3.74759H3.48876C3.44253 3.74759 3.39819 3.76596 3.36551 3.79865C3.33282 3.83133 3.31445 3.87567 3.31445 3.9219V4.42912C3.31445 4.47511 3.33262 4.51924 3.36501 4.55188C3.3974 4.58453 3.44138 4.60306 3.48736 4.60343L5.05785 4.61911C5.20426 4.61911 5.3193 4.73764 5.3193 4.88406C5.31582 5.02699 5.20078 5.14203 5.05785 5.14203H5.05436L3.49085 5.12634C3.46781 5.12611 3.44496 5.13045 3.42361 5.13911C3.40226 5.14776 3.38284 5.16056 3.36647 5.17677C3.3501 5.19298 3.3371 5.21227 3.32823 5.23354C3.31937 5.2548 3.3148 5.27761 3.3148 5.30065V5.83925C3.3148 5.88547 3.33317 5.92981 3.36585 5.9625C3.39854 5.99519 3.44288 6.01355 3.48911 6.01355H4.67438C4.74372 6.01355 4.81022 6.0411 4.85925 6.09013C4.90829 6.13916 4.93583 6.20566 4.93583 6.27501C4.93583 6.34435 4.90829 6.41085 4.85925 6.45988C4.81022 6.50892 4.74372 6.53646 4.67438 6.53646H3.48911C3.39289 6.53646 3.31341 6.6149 3.32875 6.71007C3.40997 7.22113 3.84016 7.66944 4.36063 7.66944H5.75506C6.33027 7.66944 6.80089 7.20231 6.80089 6.62362V1.74309C6.80089 1.1644 6.33027 0.697266 5.75506 0.697266H5.75471Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M2.25754 1.72566V2.00455C2.25754 2.05078 2.23918 2.09511 2.20649 2.1278C2.1738 2.16049 2.12947 2.17885 2.08324 2.17885H0.37157C0.325342 2.17885 0.281007 2.16049 0.248318 2.1278C0.21563 2.09511 0.197266 2.05078 0.197266 2.00455V1.72566C0.197266 1.16092 0.660915 0.697266 1.22915 0.697266C1.79389 0.697266 2.25754 1.16092 2.25754 1.72566Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M0.197266 6.24353C0.197266 6.4004 0.263501 6.64094 0.347167 6.77341L0.629541 7.24752C0.960719 7.79832 1.49758 7.79832 1.82527 7.24752L2.11113 6.77341C2.19131 6.64094 2.25754 6.4004 2.25754 6.24353V2.87596C2.25754 2.82974 2.23918 2.7854 2.20649 2.75271C2.1738 2.72002 2.12947 2.70166 2.08324 2.70166H0.37157C0.325342 2.70166 0.281007 2.72002 0.248318 2.75271C0.21563 2.7854 0.197266 2.82974 0.197266 2.87596V6.24353Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n4q2g8\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"6.97px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"10.84px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Ideation & Wireframing\"})}),className:\"framer-hmtacx\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ww52i4\",\"data-framer-name\":\"Vector 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"6\" viewBox=\"-1 -1 12 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.20623 2.33691C6.20623 3.19203 6.89944 3.88523 7.75455 3.88523C8.60967 3.88524 9.30287 3.19203 9.30287 2.33691C9.30287 1.4818 8.60967 0.788594 7.75455 0.788594C6.89944 0.788594 6.20623 1.4818 6.20623 2.33691ZM0.787109 2.62722L1.65804 2.62722L1.65804 2.0466L0.787109 2.0466L0.787109 2.62722ZM3.3999 2.62722L5.14176 2.62722L5.14176 2.0466L3.3999 2.0466L3.3999 2.62722ZM6.88362 2.62722L7.75455 2.62722L7.75455 2.0466L6.88362 2.0466L6.88362 2.62722Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s15opq\",\"data-framer-name\":\"Vector 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:11,svg:'<svg width=\"11\" height=\"6\" viewBox=\"-1 -1 11 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.5324 1.82227C5.5324 2.67738 6.22561 3.37059 7.08072 3.37059C7.93584 3.37059 8.62904 2.67738 8.62904 1.82227C8.62904 0.967153 7.93584 0.273946 7.08072 0.273946C6.22561 0.273946 5.5324 0.967152 5.5324 1.82227ZM0.113281 2.11258L0.984212 2.11258L0.984212 1.53196L0.113281 1.53196L0.113281 2.11258ZM2.72607 2.11258L4.46793 2.11258L4.46793 1.53196L2.72607 1.53196L2.72607 2.11258ZM6.20979 2.11258L7.08072 2.11258L7.08072 1.53196L6.20979 1.53196L6.20979 2.11258Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bg5xi4\",\"data-framer-name\":\"Connectors 02\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"23\" viewBox=\"-1 -1 13 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.78632 19.5659C7.17208 20.4477 8.19959 20.8497 9.08132 20.464C9.96305 20.0782 10.3651 19.0507 9.97936 18.169C9.5936 17.2873 8.5661 16.8852 7.68436 17.2709C6.80263 17.6567 6.40057 18.6842 6.78632 19.5659ZM0.0111999 0.547468L0.515718 1.70065L1.11441 1.43872L0.609894 0.28554L0.0111999 0.547468ZM1.52476 4.00702L2.53379 6.31339L3.13249 6.05146L2.12345 3.74509L1.52476 4.00702ZM3.54283 8.61976L4.55187 10.9261L5.15056 10.6642L4.14152 8.35783L3.54283 8.61976ZM5.5609 13.2325L6.56994 15.5389L7.16863 15.2769L6.1596 12.9706L5.5609 13.2325ZM7.57898 17.8452L8.08349 18.9984L8.68219 18.7365L8.17767 17.5833L7.57898 17.8452Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s2t4bv\",\"data-framer-name\":\"Connectors 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"23\" viewBox=\"-1 -1 14 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.05756 18.1689C0.67179 19.0506 1.07385 20.0781 1.95557 20.4639C2.8373 20.8497 3.86481 20.4476 4.25058 19.5659C4.63634 18.6841 4.23429 17.6566 3.35256 17.2709C2.47083 16.8851 1.44333 17.2872 1.05756 18.1689ZM10.4272 0.285536L9.92269 1.43872L10.5214 1.70065L11.0259 0.547471L10.4272 0.285536ZM8.91362 3.74507L7.90456 6.05143L8.50325 6.31337L9.51232 4.00701L8.91362 3.74507ZM6.8955 8.35779L5.88644 10.6642L6.48513 10.9261L7.49419 8.61973L6.8955 8.35779ZM4.87738 12.9705L3.86831 15.2769L4.46701 15.5388L5.47607 13.2324L4.87738 12.9705ZM2.85925 17.5832L2.35472 18.7364L2.95341 18.9983L3.45794 17.8452L2.85925 17.5832Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rwarzq\",\"data-framer-name\":\"Step 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9s4yfs\",\"data-framer-name\":\"Design Iteration\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17s2xsl\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-25lq8h\",\"data-framer-name\":\"refresh-2 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17gigso\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"7\" viewBox=\"0 0 8 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.4116 0.0185547H2.49026C1.22132 0.0185547 0.464844 0.775036 0.464844 2.04397V4.96183C0.464844 6.23425 1.22132 6.99073 2.49026 6.99073H5.40812C6.67705 6.99073 7.43353 6.23425 7.43353 4.96531V2.04397C7.43702 0.775036 6.68054 0.0185547 5.4116 0.0185547ZM3.95093 5.68345C3.32692 5.68345 2.83887 5.37319 2.50769 5.06641V5.31392C2.50769 5.45685 2.38916 5.57538 2.24623 5.57538C2.10331 5.57538 1.98478 5.45685 1.98478 5.31392V4.35525C1.98478 4.21232 2.10331 4.09379 2.24623 4.09379H3.11078C3.25371 4.09379 3.37224 4.21232 3.37224 4.35525C3.37224 4.49818 3.25371 4.6167 3.11078 4.6167H2.79704C3.05501 4.87468 3.45591 5.16053 3.95093 5.16053C4.86429 5.16053 5.60682 4.418 5.60682 3.50464C5.60682 3.36171 5.72535 3.24319 5.86828 3.24319C6.01121 3.24319 6.12974 3.36171 6.12974 3.50464C6.12974 4.70734 5.15363 5.68345 3.95093 5.68345ZM6.12974 2.64707V2.67495C6.12667 2.71196 6.11576 2.74789 6.09773 2.78035C6.07969 2.8128 6.05495 2.84105 6.02515 2.8632C6.00075 2.88063 5.97286 2.89458 5.94149 2.90504C5.91709 2.91201 5.89268 2.91549 5.86828 2.91549H5.02116C4.87823 2.91549 4.7597 2.79697 4.7597 2.65404C4.7597 2.51111 4.87823 2.39258 5.02116 2.39258H5.31051C5.03162 2.13461 4.58191 1.84875 3.9579 1.84875C3.04455 1.84875 2.30201 2.59129 2.30201 3.50464C2.30201 3.64757 2.18349 3.7661 2.04056 3.7661C1.89763 3.7661 1.77213 3.64757 1.77213 3.50464C1.77213 2.30194 2.74823 1.32584 3.95093 1.32584C4.70044 1.32584 5.25124 1.65004 5.60682 1.96031V1.69536C5.60682 1.55243 5.72535 1.43391 5.86828 1.43391C6.01121 1.43391 6.12974 1.55243 6.12974 1.69536V2.64707Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ub2pbc\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"6.97px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"10.84px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Design Iteration\"})}),className:\"framer-mplzda\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iqsgbg\",\"data-framer-name\":\"Prototyping\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cc7vgt\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-nhsf4m\",\"data-framer-name\":\"mobile 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-165g845\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:7,svg:'<svg width=\"7\" height=\"7\" viewBox=\"0 0 7 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.14588 0.0185547H2.18968C1.22752 0.0185547 0.878906 0.367164 0.878906 1.34675V5.66253C0.878906 6.64212 1.22752 6.99073 2.18968 6.99073H5.14239C6.10804 6.99073 6.45665 6.64212 6.45665 5.66253V1.34675C6.45665 0.367164 6.10804 0.0185547 5.14588 0.0185547ZM3.66778 6.04949C3.33311 6.04949 3.05771 5.77409 3.05771 5.43942C3.05771 5.10476 3.33311 4.82936 3.66778 4.82936C4.00244 4.82936 4.27784 5.10476 4.27784 5.43942C4.27784 5.77409 4.00244 6.04949 3.66778 6.04949ZM4.36499 1.50014H2.97056C2.82763 1.50014 2.7091 1.38162 2.7091 1.23869C2.7091 1.09576 2.82763 0.977229 2.97056 0.977229H4.36499C4.50792 0.977229 4.62645 1.09576 4.62645 1.23869C4.62645 1.38162 4.50792 1.50014 4.36499 1.50014Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1edpxjo\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"6.97px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"10.84px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Prototyping\"})}),className:\"framer-njxgh4\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pvqp7i\",\"data-framer-name\":\"Usability Testing\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9j4nsz\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s3rt6e\",\"data-framer-name\":\"cursor-edit-02 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1g9odb3\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:9,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"9\" viewBox=\"0 0 8 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.751 0.75708H5.12366C5.19513 0.75708 5.27217 0.75708 5.33771 0.765795C5.41405 0.776254 5.51201 0.802399 5.59394 0.884671C5.67621 0.966943 5.70235 1.06455 5.71281 1.1409C5.72153 1.20644 5.72153 1.28383 5.72153 1.35529V1.72761C5.72153 1.79942 5.72153 1.87646 5.71281 1.942C5.70235 2.01835 5.67621 2.11631 5.59394 2.19823C5.52426 2.26545 5.43403 2.30732 5.33771 2.3171C5.27217 2.32582 5.19478 2.32582 5.12366 2.32582H4.75065C4.67954 2.32582 4.60214 2.32582 4.53661 2.3171C4.46026 2.30665 4.3623 2.2805 4.28038 2.19823C4.21316 2.12856 4.17129 2.03832 4.1615 1.942C4.15406 1.87079 4.15115 1.79918 4.15279 1.72761V1.35529C4.15279 1.28348 4.15279 1.20644 4.1615 1.1409C4.17196 1.06455 4.19811 0.966594 4.28038 0.884671C4.36265 0.802399 4.46026 0.775905 4.53661 0.765795C4.60214 0.75708 4.67954 0.75708 4.751 0.75708Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M7.71314 4.39439C7.7595 4.45539 7.81424 4.54917 7.81354 4.6663C7.8118 4.95042 7.61762 5.14494 7.42972 5.268C7.23624 5.3942 6.98803 5.48763 6.74645 5.55944C6.50207 5.63265 6.24515 5.68912 6.02622 5.73444C5.87353 5.76547 5.60266 5.8209 5.52492 5.84251C5.39663 5.87876 5.37084 5.90177 5.36212 5.91084C5.35271 5.92129 5.33005 5.95267 5.30007 6.08863L5.29902 6.0942C5.15819 6.73355 5.04803 7.2359 4.9295 7.57823C4.87058 7.74905 4.80226 7.90383 4.71231 8.02062C4.61749 8.14368 4.48223 8.24373 4.30096 8.25174C4.18138 8.25697 4.08552 8.20259 4.02486 8.15762C3.95898 8.10647 3.89983 8.0472 3.84881 7.98122C3.74318 7.84875 3.63407 7.66852 3.5267 7.46389C3.31091 7.05148 3.08327 6.50033 2.89118 5.93454C2.6991 5.3691 2.53804 4.77786 2.46065 4.28458C2.42195 4.03846 2.40208 3.80698 2.41324 3.61106C2.42335 3.42804 2.46239 3.21818 2.59626 3.07421C2.73396 2.9257 2.94417 2.8755 3.12824 2.85737C3.3245 2.83855 3.55633 2.85145 3.80279 2.88352C4.29712 2.94836 4.8915 3.09791 5.46113 3.28128C6.0311 3.465 6.58783 3.68567 7.00616 3.89832C7.21428 4.00429 7.3973 4.11271 7.53256 4.21869C7.59984 4.27098 7.66364 4.3299 7.71314 4.39439Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M0.916572 0.75708H1.28889C1.3607 0.75708 1.43774 0.75708 1.50328 0.765795C1.57963 0.776254 1.67759 0.802399 1.75951 0.884671C1.84178 0.966943 1.86827 1.06455 1.87838 1.1409C1.8871 1.20644 1.8871 1.28383 1.8871 1.35529V1.72761C1.8871 1.79942 1.8871 1.87646 1.87838 1.942C1.86793 2.01835 1.84178 2.11631 1.75951 2.19823C1.68984 2.26545 1.5996 2.30732 1.50328 2.3171C1.43774 2.32582 1.36035 2.32582 1.28889 2.32582H0.916572C0.844759 2.32582 0.767716 2.32582 0.702178 2.3171C0.625832 2.30665 0.527873 2.2805 0.44595 2.19823C0.378729 2.12856 0.336864 2.03832 0.327075 1.942C0.318359 1.87646 0.318359 1.79907 0.318359 1.72761V1.35529C0.318359 1.28348 0.318359 1.20644 0.327075 1.1409C0.337533 1.06455 0.363679 0.966594 0.44595 0.884671C0.528222 0.802399 0.625832 0.775905 0.702178 0.765795C0.767716 0.75708 0.845107 0.75708 0.916572 0.75708Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M0.916572 4.5918H1.28889C1.3607 4.5918 1.43774 4.5918 1.50328 4.60051C1.57963 4.61097 1.67759 4.63712 1.75951 4.71939C1.84178 4.80166 1.86827 4.89927 1.87838 4.97562C1.8871 5.04115 1.8871 5.11854 1.8871 5.19001V5.56267C1.8871 5.63414 1.8871 5.71118 1.87838 5.77672C1.86793 5.85306 1.84178 5.95102 1.75951 6.03295C1.68984 6.10017 1.5996 6.14203 1.50328 6.15182C1.43207 6.15927 1.36046 6.16218 1.28889 6.16054H0.916572C0.844759 6.16054 0.767716 6.16054 0.702178 6.15182C0.625832 6.14136 0.527873 6.11522 0.44595 6.03295C0.378729 5.96327 0.336864 5.87304 0.327075 5.77672C0.318359 5.71118 0.318359 5.63379 0.318359 5.56267V5.18966C0.318359 5.11854 0.318359 5.04115 0.327075 4.97562C0.337533 4.89927 0.363679 4.80131 0.44595 4.71939C0.528222 4.63712 0.625832 4.61097 0.702178 4.60051C0.767716 4.5918 0.845107 4.5918 0.916572 4.5918Z\" fill=\"#FCFCFD\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.76291 1.54148C4.76291 1.44902 4.72618 1.36035 4.6608 1.29498C4.59543 1.2296 4.50676 1.19287 4.4143 1.19287H1.62543C1.53297 1.19287 1.4443 1.2296 1.37892 1.29498C1.31355 1.36035 1.27682 1.44902 1.27682 1.54148C1.27682 1.63394 1.31355 1.72261 1.37892 1.78798C1.4443 1.85336 1.53297 1.89009 1.62543 1.89009H4.4143C4.50676 1.89009 4.59543 1.85336 4.6608 1.78798C4.72618 1.72261 4.76291 1.63394 4.76291 1.54148ZM1.10252 1.71578C1.01006 1.71578 0.921388 1.75251 0.856011 1.81789C0.790635 1.88327 0.753906 1.97194 0.753906 2.06439V4.85326C0.753906 4.94572 0.790635 5.03439 0.856011 5.09977C0.921388 5.16514 1.01006 5.20187 1.10252 5.20187C1.19497 5.20187 1.28364 5.16514 1.34902 5.09977C1.4144 5.03439 1.45112 4.94572 1.45112 4.85326V2.06439C1.45112 1.97194 1.4144 1.88327 1.34902 1.81789C1.28364 1.75251 1.19497 1.71578 1.10252 1.71578Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hg345r\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"6.97px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"10.84px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Usability Testing\"})}),className:\"framer-6ruxtp\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b72ly1\",\"data-framer-name\":\"Design Implementation\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-127x6ig\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-urwsoi\",\"data-framer-name\":\"pen-tool-2 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-l76yeq\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.68701 3.28581C6.64933 2.62418 6.3886 1.99482 5.94734 1.50038C5.50608 1.00594 4.91032 0.67558 4.25721 0.56318C4.23629 0.294751 4.01318 0.0786133 3.73778 0.0786133H3.38917C3.11377 0.0786133 2.89415 0.291265 2.86974 0.559694C1.51714 0.782803 0.502689 1.91927 0.425995 3.28581C0.178483 3.32765 -0.00976562 3.5403 -0.00976562 3.79827V4.14688C-0.00976562 4.43622 0.223802 4.66979 0.513148 4.66979H0.861756C1.1511 4.66979 1.38467 4.43622 1.38467 4.14688V3.79827C1.38467 3.5403 1.19642 3.32765 0.948909 3.28581C0.984962 2.75699 1.19443 2.25482 1.54486 1.85712C1.89528 1.45943 2.36709 1.18842 2.88717 1.08609C2.94644 1.3092 3.14863 1.47305 3.38917 1.47305H3.73778C3.97832 1.47305 4.17703 1.3092 4.23978 1.08958C5.29955 1.30223 6.09089 2.20513 6.1641 3.28581C5.91658 3.32765 5.72834 3.5403 5.72834 3.79827V4.14688C5.72834 4.43622 5.9619 4.66979 6.25125 4.66979H6.59986C6.8892 4.66979 7.12277 4.43622 7.12277 4.14688V3.79827C7.12277 3.5403 6.93452 3.32416 6.68701 3.28581Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M4.8708 5.32542L4.29908 5.8309H2.81749L2.24577 5.32542C1.91459 5.0535 1.91459 4.84434 2.16559 4.52362L3.17307 3.24771C3.24279 3.16056 3.32297 3.10129 3.41361 3.06992C3.50774 3.03854 3.60883 3.03854 3.70644 3.06992C3.7936 3.10129 3.87378 3.16056 3.94698 3.24771L4.95098 4.52013C5.20546 4.84085 5.19152 5.03956 4.8708 5.32542Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M4.01688 7.22489H3.11398C2.79326 7.22489 2.55272 6.96344 2.61547 6.68455L2.72354 6.19998C2.7339 6.15327 2.75998 6.11151 2.79741 6.0817C2.83484 6.05188 2.88136 6.0358 2.92922 6.03614H4.20164C4.29925 6.03614 4.38291 6.10237 4.40732 6.19998L4.51539 6.68455C4.58162 6.98087 4.35851 7.22489 4.01688 7.22489Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tu7e1r\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"6.97px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"10.84px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Design Implementation\"})}),className:\"framer-17ui2lo\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17sji7a\",\"data-framer-name\":\"Vector 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"6\" viewBox=\"-1 -1 13 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.74479 1.60986C7.74479 2.46498 8.43799 3.15818 9.29311 3.15818C10.1482 3.15818 10.8414 2.46498 10.8414 1.60986C10.8414 0.754749 10.1482 0.0615422 9.29311 0.0615422C8.43799 0.0615423 7.74479 0.754749 7.74479 1.60986ZM0.777344 1.90017L1.84181 1.90017L1.84181 1.31955L0.777344 1.31955L0.777344 1.90017ZM3.97075 1.90017L6.09969 1.90017L6.09969 1.31955L3.97075 1.31955L3.97075 1.90017ZM8.22864 1.90017L9.29311 1.90017L9.29311 1.31955L8.22864 1.31955L8.22864 1.90017Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ma40il\",\"data-framer-name\":\"Vector 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"6\" viewBox=\"-1 -1 13 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.35416 1.60986C7.35416 2.46498 8.04737 3.15818 8.90248 3.15818C9.75759 3.15818 10.4508 2.46498 10.4508 1.60986C10.4508 0.754749 9.75759 0.0615422 8.90248 0.0615422C8.04737 0.0615423 7.35416 0.754749 7.35416 1.60986ZM0.386719 1.90017L1.45119 1.90017L1.45119 1.31955L0.386719 1.31955L0.386719 1.90017ZM3.58013 1.90017L5.70907 1.90017L5.70907 1.31955L3.58013 1.31955L3.58013 1.90017ZM7.83801 1.90017L8.90248 1.90017L8.90248 1.31955L7.83801 1.31955L7.83801 1.90017Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oe91hc\",\"data-framer-name\":\"Down Connectors 01\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:6,svg:'<svg width=\"6\" height=\"16\" viewBox=\"-1 -1 6 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.018086 12.1563C0.018086 13.0115 0.711293 13.7047 1.56641 13.7047C2.42152 13.7047 3.11473 13.0115 3.11473 12.1563C3.11473 11.3012 2.42152 10.608 1.56641 10.608C0.711293 10.608 0.018086 11.3012 0.018086 12.1563ZM1.2761 0.543945V1.51165H1.85672V0.543945H1.2761ZM1.2761 3.44705V5.38245H1.85672V3.44705H1.2761ZM1.2761 7.31785V9.25325H1.85672V7.31785H1.2761ZM1.2761 11.1886V12.1563H1.85672V11.1886H1.2761Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16it6i1\",\"data-framer-name\":\"Down Connectors 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:6,svg:'<svg width=\"6\" height=\"16\" viewBox=\"-1 -1 6 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0786328 12.1771C0.0786328 13.0322 0.771839 13.7254 1.62695 13.7254C2.48207 13.7254 3.17527 13.0322 3.17527 12.1771C3.17527 11.322 2.48207 10.6288 1.62695 10.6288C0.771839 10.6288 0.0786328 11.322 0.0786328 12.1771ZM1.33664 0.564697V1.5324H1.91726V0.564697H1.33664ZM1.33664 3.4678V5.4032H1.91726V3.4678H1.33664ZM1.33664 7.3386V9.274H1.91726V7.3386H1.33664ZM1.33664 11.2094V12.1771H1.91726V11.2094H1.33664Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lrit4b\",\"data-framer-name\":\"Down Connectors 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:6,svg:'<svg width=\"6\" height=\"16\" viewBox=\"-1 -1 6 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0786328 12.1771C0.0786328 13.0322 0.771839 13.7254 1.62695 13.7254C2.48207 13.7254 3.17527 13.0322 3.17527 12.1771C3.17527 11.322 2.48207 10.6288 1.62695 10.6288C0.771839 10.6288 0.0786328 11.322 0.0786328 12.1771ZM1.33664 0.564697V1.5324H1.91726V0.564697H1.33664ZM1.33664 3.4678V5.4032H1.91726V3.4678H1.33664ZM1.33664 7.3386V9.274H1.91726V7.3386H1.33664ZM1.33664 11.2094V12.1771H1.91726V11.2094H1.33664Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-a0mei9\",\"data-framer-name\":\"Connectors 03\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"29\" viewBox=\"-1 -1 15 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.210273 24.2376C-0.151822 25.1293 0.277516 26.1457 1.16923 26.5078C2.06094 26.8699 3.07735 26.4406 3.43944 25.5489C3.80154 24.6572 3.3722 23.6408 2.48049 23.2787C1.58878 22.9166 0.572369 23.3459 0.210273 24.2376ZM11.5449 0.0877624L11.0438 1.32189L11.6493 1.56775L12.1504 0.333624L11.5449 0.0877624ZM10.0415 3.79014L9.03922 6.2584L9.64469 6.50426L10.647 4.03601L10.0415 3.79014ZM8.03694 8.72665L7.03466 11.1949L7.64013 11.4408L8.64241 8.97252L8.03694 8.72665ZM6.03238 13.6632L5.0301 16.1314L5.63557 16.3773L6.63785 13.909L6.03238 13.6632ZM4.02782 18.5997L3.02554 21.0679L3.63101 21.3138L4.63329 18.8455L4.02782 18.5997ZM2.02326 23.5362L1.52212 24.7703L2.12759 25.0162L2.62873 23.782L2.02326 23.5362Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-x9axhh\",\"data-framer-name\":\"Connectors 02\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"29\" viewBox=\"-1 -1 13 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.89956 25.4445C7.20391 26.3575 8.19079 26.8509 9.10383 26.5466C10.0169 26.2422 10.5103 25.2554 10.206 24.3423C9.90161 23.4293 8.91473 22.9359 8.0017 23.2402C7.08866 23.5445 6.59522 24.5314 6.89956 25.4445ZM0.170494 0.779839L0.574109 1.99068L1.19406 1.78403L0.790443 0.573189L0.170494 0.779839ZM1.38134 4.41237L2.18857 6.83406L2.80852 6.62741L2.00129 4.20572L1.38134 4.41237ZM2.9958 9.25575L3.80303 11.6774L4.42297 11.4708L3.61575 9.0491L2.9958 9.25575ZM4.61025 14.0991L5.41748 16.5208L6.03743 16.3142L5.2302 13.8925L4.61025 14.0991ZM6.22471 18.9425L7.03194 21.3642L7.65189 21.1575L6.84466 18.7358L6.22471 18.9425ZM7.83917 23.7859L8.24279 24.9967L8.86274 24.7901L8.45912 23.5792L7.83917 23.7859Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13kjq46\",\"data-framer-name\":\"Connectors 01\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:31,svg:'<svg width=\"31\" height=\"7\" viewBox=\"-1 -1 31 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.84015 2.48502L0.584823 0.900232L0.555802 4.67301L3.83512 3.13849L3.84015 2.48502ZM25.6181 3.30605L28.8734 4.89084L28.9025 1.11806L25.6231 2.65258L25.6181 3.30605ZM4.81545 3.14603L7.64721 3.16781L7.65224 2.51435L4.82047 2.49256L4.81545 3.14603ZM10.479 3.18959L13.3107 3.21138L13.3158 2.55791L10.484 2.53613L10.479 3.18959ZM16.1425 3.23316L18.9743 3.25494L18.9793 2.60148L16.1475 2.57969L16.1425 3.23316ZM21.806 3.27672L24.6378 3.29851L24.6428 2.64504L21.8111 2.62326L21.806 3.27672Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16a2sr0\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Design Process & UX Research\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Design Process & UX Research\"})}),className:\"framer-1n3wbgd\",\"data-framer-name\":\"Design Process & UX Research\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"I conduct thorough user research to uncover valuable insights that inform the design process and ensure optimal user experiences.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"I conduct thorough user research to uncover valuable insights that inform the design process and ensure optimal user experiences.\"})}),className:\"framer-9gaipz\",\"data-framer-name\":\"I conduct thorough user research to uncover valuable insights that inform the design process and ensure optimal user experiences.\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gjhotp\",\"data-framer-name\":\"Container 3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ma9x3\",\"data-border\":true,\"data-framer-name\":\"Card 01\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4kw7fe\",\"data-framer-name\":\"Container 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pbtcj4\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ffwwoa\",\"data-framer-name\":\"Effect\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b2jaux\",\"data-framer-name\":\"Background pattern decorative\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:883,intrinsicWidth:884,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) + 234px)`,src:\"https://framerusercontent.com/images/4e3ufZe4pxnrjiEPZGj1TRn9Sg.svg\",srcSet:\"https://framerusercontent.com/images/4e3ufZe4pxnrjiEPZGj1TRn9Sg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/4e3ufZe4pxnrjiEPZGj1TRn9Sg.svg 884w\"}},Wkn4_KGI2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:883,intrinsicWidth:884,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) + 226px)`,src:\"https://framerusercontent.com/images/4e3ufZe4pxnrjiEPZGj1TRn9Sg.svg\",srcSet:\"https://framerusercontent.com/images/4e3ufZe4pxnrjiEPZGj1TRn9Sg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/4e3ufZe4pxnrjiEPZGj1TRn9Sg.svg 884w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:883,intrinsicWidth:884,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 80px) / 2, 1px) + 274px)`,src:\"https://framerusercontent.com/images/4e3ufZe4pxnrjiEPZGj1TRn9Sg.svg\",srcSet:\"https://framerusercontent.com/images/4e3ufZe4pxnrjiEPZGj1TRn9Sg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/4e3ufZe4pxnrjiEPZGj1TRn9Sg.svg 884w\"},className:\"framer-1qwt2o1\",\"data-framer-name\":\"Content\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hj667v hidden-1j4blxu\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ut5q21\",\"data-framer-name\":\"Figma\",whileHover:animation7,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1lf9rla\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:97,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"97\" viewBox=\"0 0 98 97\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 19.393C0 8.68256 8.68255 0 19.393 0H77.6426C88.3531 0 97.0356 8.68255 97.0356 19.393V77.5016C97.0356 88.2121 88.353 96.8946 77.6426 96.8946H19.393C8.68254 96.8946 0 88.2121 0 77.5016V19.393Z\" fill=\"#FAC515\"/>\\n<g clip-path=\"url(#clip0_18104_13334)\">\\n<path d=\"M59.9226 42.3961C60.7881 41.6415 61.4819 40.7112 61.9575 39.6676C62.433 38.6239 62.6794 37.4909 62.68 36.3446C62.68 31.8957 59.0497 28.2759 54.5879 28.2759H42.4496C37.9878 28.2759 34.3574 31.8957 34.3574 36.3446C34.3581 37.4909 34.6044 38.6239 35.08 39.6676C35.5555 40.7112 36.2493 41.6415 37.1148 42.3961C35.4286 43.8757 34.3574 46.0371 34.3574 48.4476C34.3574 50.8581 35.4286 53.0195 37.1148 54.4991C36.2493 55.2536 35.5555 56.1839 35.08 57.2276C34.6044 58.2713 34.3581 59.4043 34.3574 60.5506C34.3574 64.9995 37.9878 68.6193 42.4496 68.6193C46.9114 68.6193 50.5418 64.9995 50.5418 60.5506V55.424C51.7695 56.1392 53.1659 56.5162 54.5879 56.5163C59.0497 56.5163 62.68 52.8965 62.68 48.4476C62.6794 47.3012 62.433 46.1683 61.9575 45.1246C61.4819 44.0809 60.7881 43.1506 59.9226 42.3961ZM58.6339 36.3446C58.6339 38.5695 56.8193 40.3789 54.5879 40.3789H50.5418V32.3102H54.5879C56.8193 32.3102 58.6339 34.1196 58.6339 36.3446ZM38.4035 36.3446C38.4035 34.1196 40.2182 32.3102 42.4496 32.3102H46.4957V40.3789H42.4496C40.2182 40.3789 38.4035 38.5695 38.4035 36.3446ZM38.4035 48.4476C38.4035 46.2226 40.2182 44.4132 42.4496 44.4132H46.4957V52.4819H42.4496C40.2182 52.4819 38.4035 50.6725 38.4035 48.4476ZM46.4957 60.5506C46.4957 62.7755 44.681 64.5849 42.4496 64.5849C40.2182 64.5849 38.4035 62.7755 38.4035 60.5506C38.4035 58.3257 40.2182 56.5163 42.4496 56.5163H46.4957V60.5506ZM54.5879 52.4819C52.3564 52.4819 50.5418 50.6725 50.5418 48.4476C50.5418 46.2226 52.3564 44.4132 54.5879 44.4132C56.8193 44.4132 58.6339 46.2226 58.6339 48.4476C58.6339 50.6725 56.8193 52.4819 54.5879 52.4819Z\" fill=\"#FCFCFD\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18104_13334\">\\n<rect width=\"48.5531\" height=\"48.4121\" fill=\"white\" transform=\"translate(24.2422 24.2412)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T25lc3QtNjAw\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"23.27px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"31.03px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Figma\"})}),className:\"framer-wgrh9p\",\"data-framer-name\":\"Figma\",fonts:[\"GF;Onest-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12v6vtr\",whileHover:animation7,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gpr8cc\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:42,svg:'<svg width=\"42\" height=\"49\" viewBox=\"0 0 42 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.335155 10.9943C0.335155 11.0943 0.235155 11.0943 0.235155 11.1943C0.135155 11.2943 0.135155 11.3943 0.135155 11.5943V11.6943C0.135155 11.8943 0.0351563 11.9943 0.0351563 12.1943C0.0351563 12.3943 0.0351547 12.5943 0.135155 12.6943V12.7943C0.135155 12.8943 0.235155 12.9943 0.235155 13.1943C0.235155 13.2943 0.335155 13.2943 0.335155 13.3943C0.435155 13.4943 0.435156 13.5943 0.535156 13.6943C0.535156 13.7943 0.635155 13.7943 0.635155 13.7943C0.735155 13.8943 0.735155 13.9943 0.835155 13.9943C0.835155 13.9943 0.835156 14.0943 0.935156 14.0943L12.8352 23.6943C13.3352 24.0943 13.8352 24.1943 14.3352 24.1943C15.0352 24.1943 15.7352 23.8943 16.2352 23.2943C17.0352 22.2943 16.9352 20.6943 15.8352 19.8943L9.33516 14.5943H39.1352C40.4352 14.5943 41.5352 13.4943 41.5352 12.1943C41.5352 10.8943 40.4352 9.79432 39.1352 9.79432H9.43516L15.9352 4.49432C16.9352 3.69432 17.1352 2.09432 16.3352 1.09432C15.5352 0.0943204 13.9352 -0.105681 12.9352 0.694319L1.03516 10.2943C1.03516 10.2943 1.03516 10.3943 0.935156 10.3943C0.835156 10.4943 0.735155 10.4943 0.735155 10.5943L0.635155 10.6943C0.435155 10.7943 0.435155 10.8943 0.335155 10.9943Z\" fill=\"white\"/>\\n<path d=\"M41.3348 37.8943C41.3348 37.7943 41.4348 37.7943 41.4348 37.6943C41.5348 37.5943 41.5348 37.4943 41.5348 37.2943V37.1943C41.5348 36.9943 41.6348 36.8943 41.6348 36.6943C41.6348 36.4943 41.6348 36.2943 41.5348 36.1943V36.0943C41.5348 35.9943 41.4348 35.8943 41.4348 35.6943C41.4348 35.5943 41.3348 35.5943 41.3348 35.4943C41.2348 35.3943 41.2348 35.2943 41.1348 35.1943C41.1348 35.0943 41.0348 35.0943 41.0348 35.0943C40.9348 34.9943 40.9348 34.8943 40.8348 34.8943C40.8348 34.8943 40.8348 34.7943 40.7348 34.7943L28.8348 25.1943C27.7348 24.3943 26.2348 24.4943 25.4348 25.5943C24.6348 26.5943 24.7348 28.1943 25.8348 28.9943L32.3348 34.2943H2.53477C1.23477 34.2943 0.134766 35.3943 0.134766 36.6943C0.134766 37.9943 1.23477 39.0943 2.53477 39.0943H32.3348L25.8348 44.3943C24.8348 45.1943 24.6348 46.7943 25.4348 47.7943C25.9348 48.3943 26.6348 48.6943 27.3348 48.6943C27.8348 48.6943 28.4348 48.4943 28.8348 48.1943L40.7348 38.5943C40.7348 38.5943 40.7348 38.4943 40.8348 38.4943C40.9348 38.3943 41.0348 38.3943 41.0348 38.2943L41.1348 38.1943C41.2348 38.0943 41.3348 37.9943 41.3348 37.8943Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-az8jhg\",\"data-framer-name\":\"Framer\",whileHover:animation7,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1mgobcs\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:97,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"97\" viewBox=\"0 0 98 97\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.634766 19.393C0.634766 8.68257 9.31731 0 20.0278 0L78.2773 0C88.9878 0 97.6703 8.68255 97.6703 19.393V77.5016C97.6703 88.212 88.9878 96.8946 78.2773 96.8946H20.0278C9.3173 96.8946 0.634766 88.2121 0.634766 77.5016L0.634766 19.393Z\" fill=\"#FAC515\"/>\\n<path d=\"M49.1535 55.5075V69.6277L34.9922 55.5075M34.9922 55.5075V41.3873H49.1535M34.9922 55.5075H63.3148L49.1535 41.3873M49.1535 41.3873H63.3148V27.2671H34.9922L49.1535 41.3873Z\" stroke=\"#FCFCFD\" stroke-width=\"4.04021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T25lc3QtNjAw\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"23.27px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"31.03px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Framer\"})}),className:\"framer-1stmyn3\",\"data-framer-name\":\"Framer\",fonts:[\"GF;Onest-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m5er2z hidden-72rtr7 hidden-1opd900\",\"data-framer-name\":\"Frame 301\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cqw8fr\",\"data-framer-name\":\"Figma\",whileHover:animation7,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-80epkh\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:54,intrinsicWidth:54,svg:'<svg width=\"54\" height=\"54\" viewBox=\"0 0 54 54\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0859375 10.9534C0.0859375 5.09223 4.83735 0.34082 10.6985 0.34082H42.5751C48.4362 0.34082 53.1876 5.09223 53.1876 10.9534V42.7524C53.1876 48.6136 48.4362 53.365 42.5751 53.365H10.6985C4.83735 53.365 0.0859375 48.6135 0.0859375 42.7524V10.9534Z\" fill=\"#FAC515\"/>\\n<g clip-path=\"url(#clip0_18125_14447)\">\\n<path d=\"M32.8712 23.5425C33.3448 23.1295 33.7245 22.6205 33.9848 22.0493C34.245 21.4782 34.3798 20.8582 34.3802 20.2309C34.3802 17.7963 32.3935 15.8154 29.9518 15.8154H23.3092C20.8675 15.8154 18.8809 17.7963 18.8809 20.2309C18.8812 20.8582 19.016 21.4782 19.2763 22.0493C19.5365 22.6205 19.9162 23.1295 20.3898 23.5425C19.4671 24.3521 18.8809 25.5349 18.8809 26.8541C18.8809 28.1732 19.4671 29.356 20.3898 30.1656C19.9162 30.5786 19.5365 31.0876 19.2763 31.6588C19.016 32.2299 18.8812 32.8499 18.8809 33.4772C18.8809 35.9118 20.8675 37.8927 23.3092 37.8927C25.7509 37.8927 27.7376 35.9118 27.7376 33.4772V30.6718C28.4095 31.0632 29.1736 31.2695 29.9518 31.2695C32.3935 31.2695 34.3802 29.2886 34.3802 26.8541C34.3798 26.2267 34.245 25.6067 33.9848 25.0356C33.7245 24.4645 33.3448 23.9554 32.8712 23.5425ZM32.166 20.2309C32.166 21.4484 31.1729 22.4386 29.9518 22.4386H27.7376V18.0232H29.9518C31.1729 18.0232 32.166 19.0133 32.166 20.2309ZM21.095 20.2309C21.095 19.0133 22.0881 18.0232 23.3092 18.0232H25.5234V22.4386H23.3092C22.0881 22.4386 21.095 21.4484 21.095 20.2309ZM21.095 26.8541C21.095 25.6365 22.0881 24.6463 23.3092 24.6463H25.5234V29.0618H23.3092C22.0881 29.0618 21.095 28.0716 21.095 26.8541ZM25.5234 33.4772C25.5234 34.6948 24.5304 35.6849 23.3092 35.6849C22.0881 35.6849 21.095 34.6948 21.095 33.4772C21.095 32.2597 22.0881 31.2695 23.3092 31.2695H25.5234V33.4772ZM29.9518 29.0618C28.7307 29.0618 27.7376 28.0716 27.7376 26.8541C27.7376 25.6365 28.7307 24.6463 29.9518 24.6463C31.1729 24.6463 32.166 25.6365 32.166 26.8541C32.166 28.0716 31.1729 29.0618 29.9518 29.0618Z\" fill=\"#FCFCFD\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18125_14447\">\\n<rect width=\"26.5703\" height=\"26.4927\" fill=\"white\" transform=\"translate(13.3516 13.6064)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T25lc3QtNjAw\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"12.74px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"16.98px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Figma\"})}),className:\"framer-143cefe\",\"data-framer-name\":\"Figma\",fonts:[\"GF;Onest-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16l5y1n\",whileHover:animation7,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19k0hny\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"27\" viewBox=\"0 0 24 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.61925 6.08583C0.61925 6.14056 0.564526 6.14056 0.564526 6.19528C0.509802 6.25 0.509801 6.30473 0.509801 6.41417V6.4689C0.509801 6.57834 0.455078 6.63307 0.455078 6.74251C0.455078 6.85196 0.455077 6.96141 0.509801 7.01613V7.07085C0.509801 7.12558 0.564526 7.1803 0.564526 7.28974C0.564526 7.34447 0.61925 7.34447 0.61925 7.39919C0.673974 7.45392 0.673975 7.50864 0.728699 7.56336C0.728699 7.61808 0.783422 7.61808 0.783422 7.61808C0.838147 7.67281 0.838147 7.72753 0.892871 7.72753C0.892871 7.72753 0.892871 7.78226 0.947595 7.78226L7.45977 13.0357C7.73339 13.2546 8.00701 13.3093 8.28063 13.3093C8.6637 13.3093 9.04677 13.1451 9.32039 12.8168C9.75819 12.2696 9.70346 11.394 9.1015 10.9562L5.54443 8.05587H21.8522C22.5636 8.05587 23.1656 7.45391 23.1656 6.74251C23.1656 6.03111 22.5636 5.42915 21.8522 5.42915H5.59915L9.15622 2.52882C9.70346 2.09103 9.81291 1.21546 9.37512 0.668227C8.93732 0.120994 8.06174 0.0115463 7.5145 0.449333L1.00232 5.70277C1.00232 5.70277 1.00232 5.75749 0.947595 5.75749C0.892871 5.81222 0.838147 5.81222 0.838147 5.86694L0.783422 5.92166C0.673974 5.97639 0.673974 6.03111 0.61925 6.08583Z\" fill=\"white\"/>\\n<path d=\"M23.0542 20.8059C23.0542 20.7512 23.1089 20.7512 23.1089 20.6965C23.1636 20.6418 23.1636 20.587 23.1636 20.4776V20.4229C23.1636 20.3134 23.2183 20.2587 23.2183 20.1492C23.2183 20.0398 23.2183 19.9304 23.1636 19.8756V19.8209C23.1636 19.7662 23.1089 19.7115 23.1089 19.602C23.1089 19.5473 23.0542 19.5473 23.0542 19.4926C22.9994 19.4378 22.9994 19.3831 22.9447 19.3284C22.9447 19.2737 22.89 19.2737 22.89 19.2737C22.8353 19.219 22.8353 19.1642 22.7806 19.1642C22.7806 19.1642 22.7806 19.1095 22.7258 19.1095L16.2137 13.8561C15.6117 13.4183 14.7908 13.473 14.353 14.075C13.9152 14.6222 13.97 15.4978 14.5719 15.9356L18.129 18.8359H1.82119C1.10978 18.8359 0.507812 19.4378 0.507812 20.1492C0.507812 20.8607 1.10978 21.4626 1.82119 21.4626H18.129L14.5719 24.3629C14.0247 24.8007 13.9152 25.6763 14.353 26.2235C14.6266 26.5519 15.0097 26.716 15.3928 26.716C15.6664 26.716 15.9948 26.6066 16.2137 26.4424L22.7258 21.189C22.7258 21.189 22.7258 21.1343 22.7806 21.1343C22.8353 21.0795 22.89 21.0795 22.89 21.0248L22.9447 20.9701C22.9994 20.9154 23.0542 20.8607 23.0542 20.8059Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-joo3s4\",\"data-framer-name\":\"Framer\",whileHover:animation7,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-hv6mm0\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:54,intrinsicWidth:54,svg:'<svg width=\"54\" height=\"54\" viewBox=\"0 0 54 54\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.484375 10.9534C0.484375 5.09223 5.23579 0.34082 11.097 0.34082L42.9735 0.34082C48.8347 0.34082 53.5861 5.09223 53.5861 10.9534V42.7524C53.5861 48.6136 48.8347 53.365 42.9735 53.365H11.097C5.23579 53.365 0.484375 48.6135 0.484375 42.7524L0.484375 10.9534Z\" fill=\"#FAC515\"/>\\n<path d=\"M27.0368 30.7158V38.4428L19.2871 30.7158M19.2871 30.7158V22.9888H27.0368M19.2871 30.7158H34.7864L27.0368 22.9888M27.0368 22.9888H34.7864V15.2617H19.2871L27.0368 22.9888Z\" stroke=\"#FCFCFD\" stroke-width=\"2.21095\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T25lc3QtNjAw\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"12.74px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"16.98px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Framer\"})}),className:\"framer-1ffzo8n\",\"data-framer-name\":\"Framer\",fonts:[\"GF;Onest-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-onpu5m\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Design tools I use\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Design tools I use\"})}),className:\"framer-16ldv3i\",\"data-framer-name\":\"Design tools I use\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"I use Figma and Framer to design visually stunning mobile apps and websites, focusing on user-centered design.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"I use Figma and Framer to design visually stunning mobile apps and websites, focusing on user-centered design.\"})}),className:\"framer-38fqj3\",\"data-framer-name\":\"I use Figma and Framer to design visually stunning mobile apps and websites, focusing on user-centered design.\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qghlkh\",\"data-border\":true,\"data-framer-name\":\"Card 02\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dvuizh\",\"data-framer-name\":\"Container 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-glgz3j\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-no38cp\",\"data-framer-name\":\"Mask group\",style:{rotate:-180},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k9lxq7\",\"data-framer-name\":\"Group 5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-159mlxu\",\"data-border\":true,\"data-framer-name\":\"Rectangle 171\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ff24bf\",\"data-border\":true,\"data-framer-name\":\"Rectangle 172\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13d6oqx\",\"data-border\":true,\"data-framer-name\":\"Rectangle 173\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1geo9jg\",\"data-border\":true,\"data-framer-name\":\"Rectangle 174\"})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gljy4l hidden-1j4blxu\",\"data-framer-name\":\"Card\",whileHover:animation13,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aqgov3\",\"data-border\":true,\"data-framer-name\":\"Container\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gvvehb\",\"data-framer-name\":\"Frame 54\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-103eowp\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ssz3qv\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d0syfy\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19ywvsw\",\"data-framer-name\":\"Rectangle\"})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fj2xln\",\"data-framer-name\":\"Chart Lines\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:165,intrinsicWidth:181,svg:'<svg width=\"181\" height=\"165\" viewBox=\"0 0 181 165\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"-0.457987\" y1=\"164.035\" x2=\"-0.45798\" y2=\"1.46648\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"1.22847\" stroke-linecap=\"round\" stroke-dasharray=\"3.28 5.73\"/>\\n<line x1=\"89.9561\" y1=\"164.035\" x2=\"89.9561\" y2=\"1.46648\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"1.22847\" stroke-linecap=\"round\" stroke-dasharray=\"3.28 5.73\"/>\\n<line x1=\"180.37\" y1=\"164.035\" x2=\"180.37\" y2=\"1.46648\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"1.22847\" stroke-linecap=\"round\" stroke-dasharray=\"3.28 5.73\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6jrj6o\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dh85rt\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x5cc4b\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ky4fx7\",\"data-framer-name\":\"Bars\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n83ik1\",\"data-framer-name\":\"Empty Bars\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12gbuwq\",\"data-border\":true,\"data-framer-name\":\"Empty Bar\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f5bzfv\",\"data-border\":true,\"data-framer-name\":\"Empty Bar\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-177ftkd\",\"data-border\":true,\"data-framer-name\":\"Empty Bar\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a101b7\",\"data-border\":true,\"data-framer-name\":\"Empty Bar\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tvh0wg\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b5eweg\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qoq13c\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hs2hb\",\"data-framer-name\":\"Card Info.\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"44px\",\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"$299\"})}),className:\"framer-1kfzzjm\",\"data-framer-name\":\"Card Title\",fonts:[\"GF;Syne-600\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(127, 127, 127)\"},children:\"Invoice\"})}),className:\"framer-w00scg\",\"data-framer-name\":\"Type Card\",fonts:[\"GF;Syne-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nfe1qj\",\"data-framer-name\":\"Effect\"}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tgvk9f hidden-72rtr7 hidden-1opd900\",\"data-framer-name\":\"Card\",transformTemplate:transformTemplate1,whileHover:animation13,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13kpuee\",\"data-border\":true,\"data-framer-name\":\"Container\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16c6uqc\",\"data-framer-name\":\"Frame 54\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cqhf3u\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7dr1oe\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pnvq82\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qgjffp\",\"data-framer-name\":\"Rectangle\"})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tqa2qr\",\"data-framer-name\":\"Chart Lines\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:100,intrinsicWidth:111,svg:'<svg width=\"111\" height=\"100\" viewBox=\"0 0 111 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.404289\" y1=\"98.9585\" x2=\"0.404293\" y2=\"0.740189\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.742203\" stroke-linecap=\"round\" stroke-dasharray=\"1.98 3.46\"/>\\n<line x1=\"55.0293\" y1=\"98.9585\" x2=\"55.0293\" y2=\"0.740189\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.742203\" stroke-linecap=\"round\" stroke-dasharray=\"1.98 3.46\"/>\\n<line x1=\"109.654\" y1=\"98.9585\" x2=\"109.654\" y2=\"0.740189\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.742203\" stroke-linecap=\"round\" stroke-dasharray=\"1.98 3.46\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cqkcne\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xv11bu\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kucqje\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nldj5i\",\"data-framer-name\":\"Bars\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1knp8mq\",\"data-framer-name\":\"Empty Bars\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p4u8pr\",\"data-border\":true,\"data-framer-name\":\"Empty Bar\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19fqaun\",\"data-border\":true,\"data-framer-name\":\"Empty Bar\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n8aich\",\"data-border\":true,\"data-framer-name\":\"Empty Bar\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qvlbiu\",\"data-border\":true,\"data-framer-name\":\"Empty Bar\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19f7t9j\",\"data-framer-name\":\"Bars\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vkyf2l\",\"data-border\":true,\"data-framer-name\":\"Bar 1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ldagqo\",\"data-border\":true,\"data-framer-name\":\"Bar 2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12dcxfw\",\"data-border\":true,\"data-framer-name\":\"Bar 4\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sbmo0f\",\"data-border\":true,\"data-framer-name\":\"Bar 3\"})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ejxdp7\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ywsfph\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-owmjb0\",\"data-framer-name\":\"Rectangle\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3i8m6f\",\"data-framer-name\":\"Card Info.\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"21.75px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"26.58px\",\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"$299\"})}),className:\"framer-pfahlp\",\"data-framer-name\":\"Card Title\",fonts:[\"GF;Syne-600\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"10.88px\",\"--framer-line-height\":\"16.92px\",\"--framer-text-color\":\"rgb(127, 127, 127)\"},children:\"Invoice\"})}),className:\"framer-2kwk92\",\"data-framer-name\":\"Type Card\",fonts:[\"GF;Syne-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gatpwa\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Transparent Pricing Plans\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Transparent Pricing Plans\"})}),className:\"framer-xw3nkr\",\"data-framer-name\":\"Transparent Pricing Plans\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Affordable design solutions that cater to every budget, ensuring quality without compromise\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Affordable design solutions that cater to every budget, ensuring quality without compromise\"})}),className:\"framer-7a1wpd\",\"data-framer-name\":\"Affordable design solutions that cater to every budget, ensuring quality without compromise\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rxjh76\",\"data-framer-name\":\"Project Section\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-byf90s\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tllz7v\",\"data-framer-name\":\"Effect\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-138kjah\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-33x8qw\",\"data-framer-name\":\"Background pattern\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1473,intrinsicWidth:2552,svg:'<svg width=\"2552\" height=\"1473\" viewBox=\"0 0 2552 1473\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_18005_10391\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"183\" y=\"105\" width=\"2187\" height=\"1263\">\\n<rect width=\"1262.4\" height=\"1262.4\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 183.099 736.399)\" fill=\"url(#paint0_radial_18005_10391)\"/>\\n</mask>\\n<g mask=\"url(#mask0_18005_10391)\">\\n<g clip-path=\"url(#clip0_18005_10391)\">\\n<g clip-path=\"url(#clip1_18005_10391)\">\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 61.624 806.532)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 122.361 771.466)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 183.098 736.399)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 243.835 701.332)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 304.572 666.266)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 365.31 631.199)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 426.047 596.132)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 486.784 561.066)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 547.521 525.999)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 608.258 490.933)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 668.995 455.866)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 729.732 420.799)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 790.469 385.733)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 851.206 350.666)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 911.943 315.6)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 972.681 280.533)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1033.42 245.466)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1094.15 210.4)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1154.89 175.333)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1215.63 140.267)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1276.37 105.2)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1337.1 70.1335)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1397.84 35.0668)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n</g>\\n<g clip-path=\"url(#clip2_18005_10391)\">\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 61.624 876.665)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 122.361 911.732)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 183.098 946.798)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 243.835 981.865)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 304.572 1016.93)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 365.31 1052)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 426.047 1087.06)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 486.784 1122.13)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 547.521 1157.2)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 608.258 1192.26)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 668.995 1227.33)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 729.732 1262.4)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 790.47 1297.46)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 851.206 1332.53)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 911.943 1367.6)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 972.681 1402.66)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 1033.42 1437.73)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<radialGradient id=\"paint0_radial_18005_10391\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(631.199 631.199) rotate(90) scale(631.199 631.199)\">\\n<stop/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<clipPath id=\"clip0_18005_10391\">\\n<rect width=\"1683.2\" height=\"1262.4\" fill=\"white\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 0.886719 841.599)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18005_10391\">\\n<rect width=\"1683.2\" height=\"1262.4\" fill=\"white\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 0.886719 841.599)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_18005_10391\">\\n<rect width=\"1683.2\" height=\"1262.4\" fill=\"white\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 0.886719 841.599)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ahuoc6\",\"data-framer-name\":\"Heading Sub Heading\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dy7ffc\",\"data-framer-name\":\"Sub Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(250, 196, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"Projects\"})}),className:\"framer-1qmsor0\",\"data-framer-name\":\"Projects\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1osufiu\",\"data-framer-name\":\"Heading and supporting text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Discover Amazing \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"Design Projects\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Discover Amazing \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"Design Projects\"})]})}),className:\"framer-fpfcdl\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Syne-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w2nb3z\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{pageSize:8,query:{from:{alias:\"Bj0Q_ngqf\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"Bj0Q_ngqf\",name:\"n2uE904pf\",type:\"Identifier\"},{collection:\"Bj0Q_ngqf\",name:\"Ouvj8rwHG\",type:\"Identifier\"},{collection:\"Bj0Q_ngqf\",name:\"K8EZH7g1E\",type:\"Identifier\"},{collection:\"Bj0Q_ngqf\",name:\"r1t_f54kC\",type:\"Identifier\"},{collection:\"Bj0Q_ngqf\",name:\"lwrCYcVZp\",type:\"Identifier\"},{collection:\"Bj0Q_ngqf\",name:\"id\",type:\"Identifier\"}]}},Wkn4_KGI2:{pageSize:8,query:{from:{alias:\"Bj0Q_ngqf\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"Bj0Q_ngqf\",name:\"n2uE904pf\",type:\"Identifier\"},{collection:\"Bj0Q_ngqf\",name:\"Ouvj8rwHG\",type:\"Identifier\"},{collection:\"Bj0Q_ngqf\",name:\"K8EZH7g1E\",type:\"Identifier\"},{collection:\"Bj0Q_ngqf\",name:\"r1t_f54kC\",type:\"Identifier\"},{collection:\"Bj0Q_ngqf\",name:\"lwrCYcVZp\",type:\"Identifier\"},{collection:\"Bj0Q_ngqf\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{pageSize:8,query:{from:{alias:\"Bj0Q_ngqf\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"Bj0Q_ngqf\",name:\"n2uE904pf\",type:\"Identifier\"},{collection:\"Bj0Q_ngqf\",name:\"Ouvj8rwHG\",type:\"Identifier\"},{collection:\"Bj0Q_ngqf\",name:\"K8EZH7g1E\",type:\"Identifier\"},{collection:\"Bj0Q_ngqf\",name:\"r1t_f54kC\",type:\"Identifier\"},{collection:\"Bj0Q_ngqf\",name:\"lwrCYcVZp\",type:\"Identifier\"},{collection:\"Bj0Q_ngqf\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idBj0Q_ngqf,K8EZH7g1E:K8EZH7g1EBj0Q_ngqf,lwrCYcVZp:lwrCYcVZpBj0Q_ngqf,n2uE904pf:n2uE904pfBj0Q_ngqf,Ouvj8rwHG:Ouvj8rwHGBj0Q_ngqf,r1t_f54kC:r1t_f54kCBj0Q_ngqf},index)=>{Ouvj8rwHGBj0Q_ngqf??=\"\";K8EZH7g1EBj0Q_ngqf??=\"\";r1t_f54kCBj0Q_ngqf??=\"\";lwrCYcVZpBj0Q_ngqf??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Bj0Q_ngqf-${idBj0Q_ngqf}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{lwrCYcVZp:lwrCYcVZpBj0Q_ngqf},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hms4v4\",whileHover:animation22,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kqlni3\",\"data-border\":true,\"data-framer-name\":\"Project Cards\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hq2g7h\",\"data-framer-name\":\"Container 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e1zlij\",\"data-border\":true,\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 48px, 50px) - 40px)`,...toResponsiveImage(n2uE904pfBj0Q_ngqf),...{positionX:\"center\",positionY:\"top\"}}},Wkn4_KGI2:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 48px, 50px) - 48px)`,...toResponsiveImage(n2uE904pfBj0Q_ngqf),...{positionX:\"center\",positionY:\"top\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 88px) / 2, 50px) - 48px)`,...toResponsiveImage(n2uE904pfBj0Q_ngqf),...{positionX:\"center\",positionY:\"top\"}},className:\"framer-qhmobq\",\"data-framer-name\":\"Image\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wdt3qb\",\"data-framer-name\":\"Container 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ox9pa5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7y5qbg\",\"data-framer-name\":\"Heading and subheading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"Web Design\"})}),className:\"framer-1knxiyd\",\"data-framer-name\":\"Subheading\",fonts:[\"GF;Syne-600\"],text:Ouvj8rwHGBj0Q_ngqf,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kx3cvr\",\"data-framer-name\":\"Heading and text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Aqua Plumbing Solutions - Web Design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Cashifysell - Digital Product Selling Platform\"})}),className:\"framer-1ru3zsw\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Syne-600\"],text:K8EZH7g1EBj0Q_ngqf,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{stylesPresetsClassNames:{a:\"framer-styles-preset-17xxi85\",h1:\"framer-styles-preset-p20rdl\",h2:\"framer-styles-preset-7kux9l\",h3:\"framer-styles-preset-ci2ngw\",h4:\"framer-styles-preset-1jn99g6\",h5:\"framer-styles-preset-w8vbqk\",h6:\"framer-styles-preset-s4yd4l\",p:\"framer-styles-preset-1i2tfzq\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:r1t_f54kCBj0Q_ngqf,className:\"framer-aqwn4j\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-17xxi85\",h1:\"framer-styles-preset-p20rdl\",h2:\"framer-styles-preset-7kux9l\",h3:\"framer-styles-preset-ci2ngw\",h4:\"framer-styles-preset-1jn99g6\",h5:\"framer-styles-preset-w8vbqk\",h6:\"framer-styles-preset-s4yd4l\",p:\"framer-styles-preset-n4dab9\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{lwrCYcVZp:lwrCYcVZpBj0Q_ngqf},webPageId:\"lHJss5trc\"},implicitPathVariables:undefined},{href:{pathVariables:{lwrCYcVZp:lwrCYcVZpBj0Q_ngqf},webPageId:\"lHJss5trc\"},implicitPathVariables:undefined},{href:{pathVariables:{lwrCYcVZp:lwrCYcVZpBj0Q_ngqf},webPageId:\"lHJss5trc\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yxku73-container\",nodeId:\"YzkjtgVom\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{Fnrj07nYn:resolvedLinks2[2],variant:\"MRMtyVLLu\"},Wkn4_KGI2:{Fnrj07nYn:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ProjectCardButton,{Fnrj07nYn:resolvedLinks2[0],height:\"100%\",id:\"YzkjtgVom\",layoutId:\"YzkjtgVom\",variant:\"QRK6NO1Ug\",width:\"100%\"})})})})})]})})]})})})},idBj0Q_ngqf);})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-67b03p-container\",nodeId:\"UQ4Aev7Ph\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonViewAllProjects,{height:\"100%\",id:\"UQ4Aev7Ph\",layoutId:\"UQ4Aev7Ph\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x3r16w\",\"data-framer-name\":\"About me Section\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-120ygr1\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vi30t8\",\"data-framer-name\":\"Effect\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-120n65s\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1j7qqlh\",\"data-framer-name\":\"Background pattern\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1473,intrinsicWidth:2552,svg:'<svg width=\"2552\" height=\"1473\" viewBox=\"0 0 2552 1473\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_18005_10391\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"183\" y=\"105\" width=\"2187\" height=\"1263\">\\n<rect width=\"1262.4\" height=\"1262.4\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 183.099 736.399)\" fill=\"url(#paint0_radial_18005_10391)\"/>\\n</mask>\\n<g mask=\"url(#mask0_18005_10391)\">\\n<g clip-path=\"url(#clip0_18005_10391)\">\\n<g clip-path=\"url(#clip1_18005_10391)\">\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 61.624 806.532)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 122.361 771.466)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 183.098 736.399)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 243.835 701.332)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 304.572 666.266)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 365.31 631.199)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 426.047 596.132)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 486.784 561.066)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 547.521 525.999)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 608.258 490.933)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 668.995 455.866)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 729.732 420.799)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 790.469 385.733)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 851.206 350.666)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 911.943 315.6)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 972.681 280.533)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1033.42 245.466)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1094.15 210.4)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1154.89 175.333)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1215.63 140.267)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1276.37 105.2)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1337.1 70.1335)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1397.84 35.0668)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n</g>\\n<g clip-path=\"url(#clip2_18005_10391)\">\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 61.624 876.665)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 122.361 911.732)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 183.098 946.798)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 243.835 981.865)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 304.572 1016.93)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 365.31 1052)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 426.047 1087.06)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 486.784 1122.13)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 547.521 1157.2)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 608.258 1192.26)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 668.995 1227.33)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 729.732 1262.4)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 790.47 1297.46)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 851.206 1332.53)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 911.943 1367.6)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 972.681 1402.66)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 1033.42 1437.73)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<radialGradient id=\"paint0_radial_18005_10391\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(631.199 631.199) rotate(90) scale(631.199 631.199)\">\\n<stop/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<clipPath id=\"clip0_18005_10391\">\\n<rect width=\"1683.2\" height=\"1262.4\" fill=\"white\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 0.886719 841.599)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18005_10391\">\\n<rect width=\"1683.2\" height=\"1262.4\" fill=\"white\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 0.886719 841.599)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_18005_10391\">\\n<rect width=\"1683.2\" height=\"1262.4\" fill=\"white\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 0.886719 841.599)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17eu15a\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1keknp6\",\"data-border\":true,\"data-framer-name\":\"About me Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-olnxgj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wl3u0u\",\"data-framer-name\":\"Image Frame\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 64px, 1px) + 848px)`,src:\"https://framerusercontent.com/images/KL8M6SOY74UVglIe0wu7ak7shA.png\",srcSet:\"https://framerusercontent.com/images/KL8M6SOY74UVglIe0wu7ak7shA.png?scale-down-to=512 512w,https://framerusercontent.com/images/KL8M6SOY74UVglIe0wu7ak7shA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KL8M6SOY74UVglIe0wu7ak7shA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KL8M6SOY74UVglIe0wu7ak7shA.png 2871w\"}},Wkn4_KGI2:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 72px, 1px) + 812px)`,src:\"https://framerusercontent.com/images/KL8M6SOY74UVglIe0wu7ak7shA.png\",srcSet:\"https://framerusercontent.com/images/KL8M6SOY74UVglIe0wu7ak7shA.png?scale-down-to=512 512w,https://framerusercontent.com/images/KL8M6SOY74UVglIe0wu7ak7shA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KL8M6SOY74UVglIe0wu7ak7shA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KL8M6SOY74UVglIe0wu7ak7shA.png 2871w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:`calc(max((max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px) - 72px, 1px) - 84px) / 2, 1px) + 864px)`,src:\"https://framerusercontent.com/images/KL8M6SOY74UVglIe0wu7ak7shA.png\",srcSet:\"https://framerusercontent.com/images/KL8M6SOY74UVglIe0wu7ak7shA.png?scale-down-to=512 512w,https://framerusercontent.com/images/KL8M6SOY74UVglIe0wu7ak7shA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KL8M6SOY74UVglIe0wu7ak7shA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KL8M6SOY74UVglIe0wu7ak7shA.png 2871w\"},className:\"framer-1eujf3o\",\"data-framer-name\":\"Mask group\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{background:{alt:\"\",fit:\"fill\",pixelHeight:775,pixelWidth:512,sizes:\"320px\",src:\"https://framerusercontent.com/images/7zv9HRd1EuPet05eDco76ydWYz8.png\",srcSet:\"https://framerusercontent.com/images/7zv9HRd1EuPet05eDco76ydWYz8.png 512w\"},transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:775,pixelWidth:512,sizes:\"624px\",src:\"https://framerusercontent.com/images/7zv9HRd1EuPet05eDco76ydWYz8.png\",srcSet:\"https://framerusercontent.com/images/7zv9HRd1EuPet05eDco76ydWYz8.png 512w\"},className:\"framer-pgorpx hidden-1opd900\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Wkn4_KGI2:{background:{alt:\"\",fit:\"fill\",pixelHeight:775,pixelWidth:512,sizes:\"667px\",src:\"https://framerusercontent.com/images/7zv9HRd1EuPet05eDco76ydWYz8.png\",srcSet:\"https://framerusercontent.com/images/7zv9HRd1EuPet05eDco76ydWYz8.png 512w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:775,pixelWidth:512,src:\"https://framerusercontent.com/images/7zv9HRd1EuPet05eDco76ydWYz8.png\",srcSet:\"https://framerusercontent.com/images/7zv9HRd1EuPet05eDco76ydWYz8.png 512w\"},className:\"framer-113ytii hidden-72rtr7 hidden-1j4blxu\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pibppa\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17x5xy\",\"data-framer-name\":\"Heading and subheading\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dttzo8\",\"data-framer-name\":\"Frame 72\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-2t2k08\",\"data-framer-name\":\"Line 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"8\" viewBox=\"-2 -2 40 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2 2H34\" stroke=\"#FAC515\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"44px\",\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"About me\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"44px\",\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"About me\"})}),className:\"framer-1c2vova\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Hello! I am Ahmed Jamal, UI/UX designer, I specialize in creating intuitive and visually appealing user experiences that drive engagement and conversions.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Hello! I am Ahmed Jamal, UI/UX designer, I specialize in creating intuitive and visually appealing user experiences that drive engagement and conversions.\"})}),className:\"framer-v0f3ry\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14gqqjn\",\"data-framer-name\":\"Metrics\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-adww04\",\"data-framer-name\":\"_Metric item\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-waxfs6\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18saxxk\",\"data-framer-name\":\"Number and text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rnq1xt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SCstb8RtQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:53,gapSize:4,height:\"100%\",id:\"SCstb8RtQ\",incrementType:\"integer\",layoutId:\"SCstb8RtQ\",loop:false,prefixColor:\"rgb(250, 196, 20)\",prefixFont:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Syne\", \"Syne Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},speed:50,start:0,startOnViewport:true,suffixColor:\"rgb(250, 196, 20)\",suffixFont:{},suffixText:\"+\",textColor:\"rgb(250, 196, 20)\",textSize:28,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(234, 236, 240)\"},children:\"Projects Completed\"})}),className:\"framer-175eiit\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16moxwy\",\"data-framer-name\":\"_Metric item\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lg9zq8\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zotdyh\",\"data-framer-name\":\"Number and text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l52zsv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IWEqjmaxB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:98,gapSize:4,height:\"100%\",id:\"IWEqjmaxB\",incrementType:\"integer\",layoutId:\"IWEqjmaxB\",loop:false,prefixColor:\"rgb(250, 196, 20)\",prefixFont:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Syne\", \"Syne Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},speed:20,start:0,startOnViewport:true,suffixColor:\"rgb(250, 196, 20)\",suffixFont:{},suffixText:\"%\",textColor:\"rgb(250, 196, 20)\",textSize:28,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(234, 236, 240)\"},children:\"Client Satisfaction\"})}),className:\"framer-1rea3j9\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12i207z\",\"data-framer-name\":\"_Metric item\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9tgwg1\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r0fbki\",\"data-framer-name\":\"Number and text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hmm6xl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FZtbGnrbb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:30,gapSize:4,height:\"100%\",id:\"FZtbGnrbb\",incrementType:\"integer\",layoutId:\"FZtbGnrbb\",loop:false,prefixColor:\"rgb(250, 196, 20)\",prefixFont:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Syne\", \"Syne Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},speed:50,start:0,startOnViewport:true,suffixColor:\"rgb(250, 196, 20)\",suffixFont:{},suffixText:\"%\",textColor:\"rgb(250, 196, 20)\",textSize:28,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(234, 236, 240)\"},children:\"Conversion Rate Boost\"})}),className:\"framer-svfea6\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dyjjl9\",\"data-framer-name\":\"_Metric item\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hpp8z1\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i8s4fa\",\"data-framer-name\":\"Number and text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m9dcjh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Q8BAOKdlP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:3.5,gapSize:4,height:\"100%\",id:\"Q8BAOKdlP\",incrementType:\"integer\",layoutId:\"Q8BAOKdlP\",loop:false,prefixColor:\"rgb(250, 196, 20)\",prefixFont:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Syne\", \"Syne Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},speed:200,start:0,startOnViewport:true,suffixColor:\"rgb(250, 196, 20)\",suffixFont:{},suffixText:\"+\",textColor:\"rgb(250, 196, 20)\",textSize:28,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(234, 236, 240)\"},children:\"years of Experience\"})}),className:\"framer-10pujwt\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-223dfl\",\"data-framer-name\":\"Social\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Wkn4_KGI2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Connect with me\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Connect with me\"})}),className:\"framer-ckdfn5\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lz662b\",\"data-framer-name\":\"Social Media Icons\",children:[/*#__PURE__*/_jsx(Link,{href:\"mailto:ahmedawan.ux@gmail.com\",motionChild:true,nodeId:\"GkY7rCQKX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-swhrf1 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Facebook \",whileHover:animation23,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sv0dvl\",\"data-framer-name\":\"fWX4VvY2j7qpouMCecOW 2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pvwmo5\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"17\" viewBox=\"0 0 20 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.6531 0.316151C10.9372 0.272221 9.23794 0.272221 7.52202 0.316151L7.47106 0.31703C6.13119 0.351295 5.05314 0.378532 4.18947 0.527895C3.2845 0.686045 2.54911 0.988286 1.92881 1.61122C1.31027 2.23239 1.00979 2.95724 0.85515 3.8464C0.707544 4.69425 0.685579 5.74594 0.657464 7.04892L0.656585 7.09988C0.637909 7.9737 0.637909 8.84782 0.656585 9.72164L0.657464 9.7726C0.685579 11.0756 0.707544 12.1273 0.85515 12.9751C1.00979 13.8643 1.31027 14.5891 1.92881 15.2103C2.54911 15.8341 3.2845 16.1355 4.18947 16.2927C5.05314 16.4439 6.13119 16.4711 7.47106 16.5036L7.52202 16.5054C9.23794 16.5493 10.9372 16.5493 12.6531 16.5054L12.704 16.5045C14.0439 16.4711 15.122 16.443 15.9856 16.2936C16.8906 16.1355 17.6251 15.8332 18.2463 15.2103C18.8648 14.5891 19.1653 13.8643 19.32 12.9751C19.4676 12.1273 19.4895 11.0756 19.5176 9.7726L19.5185 9.72164C19.537 8.84567 19.537 7.97585 19.5185 7.09988L19.5176 7.04892C19.4895 5.74594 19.4676 4.69425 19.32 3.8464C19.1653 2.95724 18.8648 2.23239 18.2463 1.61122C17.6251 0.987407 16.8906 0.686045 15.9856 0.528774C15.122 0.377653 14.0439 0.351295 12.704 0.317908L12.6531 0.316151ZM6.03015 4.76893C5.95564 4.7216 5.87239 4.68971 5.78532 4.67517C5.69825 4.66063 5.60916 4.66373 5.52331 4.68429C5.43747 4.70485 5.35663 4.74244 5.28559 4.79484C5.21456 4.84724 5.15478 4.91338 5.10979 4.98933C5.06481 5.06528 5.03555 5.1495 5.02374 5.23697C5.01193 5.32445 5.01782 5.41341 5.04105 5.49857C5.06429 5.58373 5.1044 5.66335 5.15899 5.73271C5.21359 5.80207 5.28157 5.85975 5.35889 5.90234L7.94376 7.43111C8.70902 7.8836 9.36973 8.19111 10.0876 8.19111C10.8063 8.19111 11.4661 7.8836 12.2314 7.43111L14.8162 5.90234C14.8935 5.85975 14.9615 5.80207 15.0161 5.73271C15.0707 5.66335 15.1108 5.58373 15.1341 5.49857C15.1573 5.41341 15.1632 5.32445 15.1514 5.23697C15.1396 5.1495 15.1103 5.06528 15.0653 4.98933C15.0203 4.91338 14.9606 4.84724 14.8895 4.79484C14.8185 4.74244 14.7376 4.70485 14.6518 4.68429C14.566 4.66373 14.4769 4.66063 14.3898 4.67517C14.3027 4.68971 14.2195 4.7216 14.145 4.76893L11.5601 6.29683C10.8186 6.73613 10.4241 6.8732 10.0876 6.8732C9.75105 6.8732 9.35656 6.73526 8.61501 6.29683L6.03015 4.76893Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/ahmedjamalux/\",motionChild:true,nodeId:\"IIGo4VIx_\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-195qdor framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Facebook \",whileHover:animation23,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-169zuk2\",\"data-framer-name\":\"Ts3-dgjqZWyiivFfrJ9e 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"26\" viewBox=\"0 0 28 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18116_13338)\">\\n<path d=\"M27.0754 26.1387L27.0821 26.1376V16.6392C27.0821 11.9925 26.046 8.41309 20.4197 8.41309C17.715 8.41309 15.8999 9.84616 15.1589 11.2048H15.0807V8.84689H9.74609V26.1376H15.3009V17.5759C15.3009 15.3216 15.7435 13.1418 18.6348 13.1418C21.4838 13.1418 21.5262 15.7144 21.5262 17.7205V26.1387H27.0754Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M1.33984 8.41309H6.90132V25.7038H1.33984V8.41309Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M3.62735 0.0883789C1.84915 0.0883789 0.40625 1.48152 0.40625 3.1984C0.40625 4.91528 1.84915 6.33756 3.62735 6.33756C5.40555 6.33756 6.84845 4.91528 6.84845 3.1984C6.84733 1.48152 5.40443 0.0883789 3.62735 0.0883789Z\" fill=\"#FCFCFD\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18116_13338\">\\n<rect width=\"26.8238\" height=\"25.8989\" fill=\"white\" transform=\"translate(0.587891 0.0507812)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/ahmedjamalux\",motionChild:true,nodeId:\"WbsCcIMF_\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-4mqkmx framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Facebook \",whileHover:animation23,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18suq76\",\"data-framer-name\":\"jE-dnZqe0ydfloHmVDNt 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"20\" viewBox=\"0 0 22 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18116_13343)\">\\n<path d=\"M10.8423 5.0293C7.90517 5.0293 5.52734 7.32763 5.52734 10.161C5.52734 12.9968 7.90776 15.2926 10.8423 15.2926C13.7794 15.2926 16.1572 12.9943 16.1572 10.161C16.1572 7.32513 13.7768 5.0293 10.8423 5.0293ZM10.8423 13.4918C8.93571 13.4918 7.39249 12.001 7.39249 10.161C7.39249 8.32096 8.93657 6.83013 10.8423 6.83013C12.748 6.83013 14.2921 8.32096 14.2921 10.161C14.2929 12.001 12.7489 13.4918 10.8423 13.4918Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M15.1045 0.0921191C13.1988 0.00628577 8.47852 0.0104524 6.57107 0.0921191C4.89494 0.167952 3.41646 0.558785 2.22453 1.70962C0.232503 3.63295 0.487116 6.22462 0.487116 10.0254C0.487116 13.9154 0.262711 16.4471 2.22453 18.3413C4.22432 20.2713 6.94738 20.0188 10.8374 20.0188C14.8283 20.0188 16.2058 20.0213 17.617 19.4938C19.5356 18.7746 20.9839 17.1188 21.1255 14.1446C21.2152 12.3038 21.21 7.74712 21.1255 5.90545C20.9546 2.39462 19.0031 0.265452 15.1045 0.0921191ZM18.121 17.0688C16.8152 18.3296 15.0035 18.2171 10.8123 18.2171C6.49685 18.2171 4.76634 18.2788 3.50363 17.0563C2.04932 15.6588 2.31256 13.4146 2.31256 10.0121C2.31256 5.40795 1.82319 2.09212 6.60905 1.85545C7.70863 1.81795 8.0323 1.80545 10.8002 1.80545L10.8391 1.83045C15.4385 1.83045 19.0471 1.36545 19.2638 5.98545C19.313 7.03962 19.3242 7.35628 19.3242 10.0246C19.3233 14.1429 19.4044 15.8238 18.121 17.0688Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M16.8689 5.99892C17.5549 5.99892 18.1109 5.46203 18.1109 4.79975C18.1109 4.13747 17.5549 3.60059 16.8689 3.60059C16.183 3.60059 15.627 4.13747 15.627 4.79975C15.627 5.46203 16.183 5.99892 16.8689 5.99892Z\" fill=\"#FCFCFD\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18116_13343\">\\n<rect width=\"20.7143\" height=\"20\" fill=\"white\" transform=\"translate(0.642578)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.behance.net/ahmedjamalux\",motionChild:true,nodeId:\"snSG_64OE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-dus3pu framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Behance\",whileHover:animation23,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1562nkf\",\"data-framer-name\":\"Ts3-dgjqZWyiivFfrJ9e 2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jowres\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"16\" viewBox=\"0 0 13 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.95583 0.614589C7.56922 0.603224 8.18174 0.665981 8.78003 0.801492C9.28376 0.911242 9.76202 1.11547 10.1894 1.40332C10.5841 1.68955 10.8964 2.07437 11.0949 2.51913C11.3231 3.06604 11.4332 3.65482 11.418 4.24705C11.4439 4.89732 11.2775 5.54084 10.9395 6.09738C10.5839 6.62303 10.0923 7.04283 9.51702 7.31225C10.2978 7.52231 10.9778 8.00346 11.4349 8.66917C11.8736 9.37454 12.0941 10.1934 12.0688 11.0232C12.0833 11.6848 11.9462 12.341 11.668 12.9418C11.4109 13.4658 11.0344 13.9225 10.5686 14.2753C10.0891 14.6242 9.54956 14.8824 8.97668 15.0369C8.3826 15.201 7.76888 15.2833 7.15248 15.2818H0.384766V0.614589H6.95583ZM6.56533 6.54689C7.04728 6.56671 7.52171 6.42273 7.91101 6.1385C8.09745 5.97287 8.24248 5.76601 8.33451 5.53446C8.42654 5.30291 8.46302 5.05308 8.44104 4.80495C8.45351 4.51514 8.39569 4.22661 8.27248 3.96389C8.16795 3.75471 8.00544 3.57988 7.80425 3.46018C7.60047 3.32843 7.37153 3.24029 7.13188 3.20132C6.87186 3.15106 6.60726 3.12819 6.34245 3.1331H3.4507V6.55997H6.56533V6.54689ZM6.73389 12.7913C7.02535 12.7952 7.31622 12.7639 7.6001 12.6979C7.85953 12.6407 8.10558 12.5344 8.32492 12.3848C8.53979 12.2353 8.7134 12.0341 8.82966 11.7998C8.96447 11.5011 9.02641 11.1747 9.0104 10.8475C9.03963 10.5493 9.00005 10.2484 8.8947 9.96786C8.78935 9.6873 8.62103 9.43454 8.40264 9.22894C7.93976 8.88871 7.37249 8.72017 6.7985 8.75234H3.4507V12.7913H6.73389Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ioet2n\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.43613 8.73732C4.67677 8.9599 4.96025 9.13135 5.26933 9.24123C5.57841 9.35112 5.90665 9.39715 6.23411 9.37653C6.75324 9.38962 7.26228 9.232 7.6828 8.92796C8.02491 8.70598 8.28398 8.37746 8.41978 7.99345H10.8649C10.6043 9.08667 9.96814 10.0542 9.06687 10.7278C8.20226 11.3005 7.18049 11.5906 6.14328 11.5577C5.403 11.5674 4.66833 11.4285 3.98289 11.1493C3.36285 10.8913 2.80676 10.5012 2.35347 10.0064C1.90189 9.48791 1.55497 8.88721 1.3318 8.23736C1.0813 7.51096 0.958687 6.74677 0.969395 5.97864C0.964831 5.22338 1.09157 4.47306 1.34398 3.76103C1.68308 2.75934 2.33144 1.8906 3.19603 1.27947C4.06061 0.66834 5.09697 0.346245 6.15639 0.359403C6.93855 0.343089 7.712 0.525759 8.40387 0.890206C9.02926 1.23243 9.56875 1.7117 9.98178 2.29198C10.4043 2.90087 10.7071 3.58425 10.8742 4.30586C11.0575 5.08072 11.1228 5.8787 11.0681 6.67298H3.7853C3.72629 7.41922 3.95959 8.15922 4.43613 8.73732ZM7.6313 3.15921C7.4275 2.95578 7.18238 2.79831 6.91245 2.6974C6.64252 2.59648 6.35406 2.55447 6.06649 2.5742C5.68498 2.55968 5.30622 2.64404 4.9671 2.81904C4.69825 2.96674 4.46094 3.16547 4.26851 3.40405C4.09798 3.62773 3.97093 3.88131 3.89393 4.15166C3.82455 4.37714 3.78119 4.60978 3.7647 4.84507H8.27557C8.23627 4.2317 8.01237 3.64445 7.63317 3.16014L7.6313 3.15921Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18e186p\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:6,svg:'<svg width=\"6\" height=\"3\" viewBox=\"0 0 6 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.83405 0.59375H0.181641V2.03571H5.83405V0.59375Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://dribbble.com/ahmedjamalux\",motionChild:true,nodeId:\"eY7rVNvgZ\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-93xu5y framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Facebook \",whileHover:animation23,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ha2btz\",\"data-framer-name\":\"cQN3QfbSecboBWOmtTbD 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"20\" viewBox=\"0 0 22 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18116_13350)\">\\n<path d=\"M10.6872 20.0293C16.3983 20.0293 21.0444 15.5426 21.0444 10.0293C21.0444 4.51596 16.3975 0.0292969 10.6872 0.0292969C4.97698 0.0292969 0.330078 4.51513 0.330078 10.0293C0.330078 15.5435 4.97612 20.0293 10.6872 20.0293ZM10.6872 1.2793C15.6828 1.2793 19.7497 5.2043 19.7497 10.0293C19.7497 14.8526 15.6828 18.7793 10.6872 18.7793C5.6899 18.7793 1.62472 14.8526 1.62472 10.0293C1.62472 5.2043 5.6899 1.2793 10.6872 1.2793Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M15.5314 3.89771C14.1867 2.81938 12.4597 2.17188 10.5755 2.17188C10.0318 2.17188 9.50096 2.22687 8.98828 2.32937C9.93078 3.61937 10.787 4.96187 11.5405 6.35354C12.9654 5.71187 14.3067 4.88438 15.5314 3.89771Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M13.5432 9.79846C15.2624 9.4568 17.0516 9.42513 18.8253 9.7093C18.7735 7.9218 18.077 6.2918 16.9481 5.0293C15.6154 6.11346 14.1499 7.0118 12.5938 7.7143C12.9338 8.3993 13.2497 9.09346 13.5432 9.79846Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M10.5339 7.00005C9.75538 5.57422 8.87416 4.19922 7.89023 2.88672C5.55815 3.78922 3.79053 5.74922 3.21484 8.15505C5.72904 8.25839 8.21734 7.85422 10.5339 7.00005Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M12.1945 10.5019C11.9243 9.85941 11.6317 9.22691 11.3193 8.60107C9.07699 9.44441 6.6819 9.90441 4.24624 9.90441C3.91136 9.90441 3.57475 9.88441 3.23815 9.86691C3.22952 10.0152 3.21484 10.1636 3.21484 10.3144C3.21484 12.1561 3.90532 13.8411 5.04547 15.1461C6.91062 12.9094 9.41877 11.3069 12.1945 10.5019Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M14.0352 10.9613C14.6523 12.6246 15.1365 14.3338 15.4921 16.0755C17.2424 14.9096 18.4646 13.068 18.771 10.9405C17.1837 10.6696 15.5792 10.6813 14.0352 10.9613Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M6.09961 15.828C7.45467 16.9372 9.2033 17.608 11.1185 17.608C12.2682 17.608 13.3565 17.3605 14.3379 16.9272C13.9823 15.0597 13.4644 13.2322 12.7955 11.458C10.1855 12.1938 7.82839 13.7063 6.09961 15.828Z\" fill=\"#FCFCFD\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18116_13350\">\\n<rect width=\"20.7143\" height=\"20\" fill=\"white\" transform=\"translate(0.521484)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})]})]})]})]})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r0v57e\",\"data-framer-name\":\"Testimonial\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12w3884\",\"data-framer-name\":\"content wrapper\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yo4pth\",\"data-framer-name\":\"Effect\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sw5sxx\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qh4n9c\",\"data-framer-name\":\"Background pattern\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1473,intrinsicWidth:2552,svg:'<svg width=\"2552\" height=\"1473\" viewBox=\"0 0 2552 1473\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_18005_10391\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"183\" y=\"105\" width=\"2187\" height=\"1263\">\\n<rect width=\"1262.4\" height=\"1262.4\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 183.099 736.399)\" fill=\"url(#paint0_radial_18005_10391)\"/>\\n</mask>\\n<g mask=\"url(#mask0_18005_10391)\">\\n<g clip-path=\"url(#clip0_18005_10391)\">\\n<g clip-path=\"url(#clip1_18005_10391)\">\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 61.624 806.532)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 122.361 771.466)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 183.098 736.399)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 243.835 701.332)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 304.572 666.266)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 365.31 631.199)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 426.047 596.132)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 486.784 561.066)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 547.521 525.999)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 608.258 490.933)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 668.995 455.866)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 729.732 420.799)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 790.469 385.733)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 851.206 350.666)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 911.943 315.6)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 972.681 280.533)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1033.42 245.466)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1094.15 210.4)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1154.89 175.333)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1215.63 140.267)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1276.37 105.2)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1337.1 70.1335)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1397.84 35.0668)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n</g>\\n<g clip-path=\"url(#clip2_18005_10391)\">\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 61.624 876.665)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 122.361 911.732)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 183.098 946.798)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 243.835 981.865)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 304.572 1016.93)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 365.31 1052)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 426.047 1087.06)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 486.784 1122.13)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 547.521 1157.2)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 608.258 1192.26)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 668.995 1227.33)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 729.732 1262.4)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 790.47 1297.46)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 851.206 1332.53)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 911.943 1367.6)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 972.681 1402.66)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 1033.42 1437.73)\" stroke=\"#475467\" stroke-width=\"0.876665\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<radialGradient id=\"paint0_radial_18005_10391\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(631.199 631.199) rotate(90) scale(631.199 631.199)\">\\n<stop/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<clipPath id=\"clip0_18005_10391\">\\n<rect width=\"1683.2\" height=\"1262.4\" fill=\"white\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 0.886719 841.599)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18005_10391\">\\n<rect width=\"1683.2\" height=\"1262.4\" fill=\"white\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 0.886719 841.599)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_18005_10391\">\\n<rect width=\"1683.2\" height=\"1262.4\" fill=\"white\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 0.886719 841.599)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gvq35n\",\"data-framer-name\":\"Heading Sub Heading\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rugr6c\",\"data-framer-name\":\"Sub Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(250, 196, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"Testimonials\"})}),className:\"framer-1j1dqc4\",\"data-framer-name\":\"Testimonials\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2hxrnu\",\"data-framer-name\":\"Heading and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Read what \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:\"my clients\"}),\" have to say about me\"]})}),className:\"framer-1o0pmqs\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Syne-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zomu22\",\"data-framer-name\":\"Container\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qe6n0t-container hidden-72rtr7 hidden-1opd900\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ps6CpNIvT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:.2,id:\"ps6CpNIvT\",layoutId:\"ps6CpNIvT\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:true,paddingRight:160,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-erejcd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nbcxx7\",\"data-border\":true,\"data-framer-name\":\"Testimonial card\",whileHover:animation8,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1z0gjxq\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2rfr5j\",\"data-framer-name\":\"Avatar, name\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"72px\",src:\"https://framerusercontent.com/images/lCT472ySQtFp5H813x78luB0.png\",srcSet:\"https://framerusercontent.com/images/lCT472ySQtFp5H813x78luB0.png?scale-down-to=512 512w,https://framerusercontent.com/images/lCT472ySQtFp5H813x78luB0.png 800w\"},className:\"framer-1g8pv3e\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mmujsf\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f5ubo4\",\"data-framer-name\":\"Frame 291\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Ance Basharat-Kalyar\"})}),className:\"framer-n22gdw\",\"data-framer-name\":\"Maximilian Herzer\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xwj3ft\",\"data-framer-name\":\"UK\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:26,svg:'<svg width=\"26\" height=\"26\" viewBox=\"0 0 26 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.2667 13C24.2667 19.382 19.0931 24.5556 12.7111 24.5556C6.32915 24.5556 1.15555 19.382 1.15555 13C1.15555 6.61806 6.32915 1.44446 12.7111 1.44446C19.0931 1.44446 24.2667 6.61806 24.2667 13Z\" fill=\"#0052B5\"/>\\n<path d=\"M9.82222 7.80001V1.80851C10.2928 1.6874 10.7749 1.59518 11.2667 1.53386C11.7399 1.47485 12.2219 1.44446 12.7111 1.44446C13.2003 1.44446 13.6824 1.47485 14.1555 1.53386C14.6473 1.59518 15.1294 1.6874 15.6 1.80851V9.3889L20.5111 4.47402C21.0405 4.95861 21.8127 5.92519 22.2444 6.50001L18.4889 10.1111H23.9026C24.0237 10.5817 24.1159 11.0638 24.1773 11.5556C24.2363 12.0288 24.2667 12.5108 24.2667 13C24.2667 13.4892 24.2363 13.9713 24.1773 14.4445C24.1159 14.9362 24.0237 15.4184 23.9026 15.8889H17.6222L21.9564 19.9333C21.3352 20.7603 20.6057 21.5012 19.7889 22.135L15.6 17.9111V24.1915C15.1294 24.3126 14.6473 24.4048 14.1555 24.4662C13.6824 24.5252 13.2003 24.5556 12.7111 24.5556C12.2219 24.5556 11.7398 24.5252 11.2667 24.4662C10.7749 24.4048 10.2928 24.3126 9.82221 24.1915L9.82222 16.7556L5.05555 21.656C4.4091 21.0839 3.82722 20.4404 3.32221 19.738L7.5111 15.8889H1.5196C1.39849 15.4184 1.30627 14.9362 1.24495 14.4445C1.18594 13.9713 1.15555 13.4892 1.15555 13C1.15555 12.5108 1.18594 12.0288 1.24495 11.5556C1.30627 11.0638 1.39849 10.5817 1.5196 10.1111H7.65555L3.46666 6.06555C4.10779 5.21221 4.86433 4.45052 5.7131 3.80365L9.82222 7.80001Z\" fill=\"white\"/>\\n<path d=\"M9.82222 10.1111L4.54853 4.82058C4.26966 5.09887 4.00495 5.39133 3.75555 5.69679L8.37777 10.1111H9.82222Z\" fill=\"#D90026\"/>\\n<path d=\"M15.6 10.1111L20.8737 4.82057C21.1525 5.09886 21.4173 5.39133 21.6667 5.69678L17.0444 10.1111H15.6Z\" fill=\"#D90026\"/>\\n<path d=\"M15.6 15.9881L20.8737 21.2786C21.1525 21.0003 21.4173 20.7079 21.6667 20.4024L17.0444 15.9881H15.6Z\" fill=\"#D90026\"/>\\n<path d=\"M9.82221 15.9881L4.54853 21.2786C4.26966 21.0003 4.00495 20.7079 3.75555 20.4024L8.37777 15.9881H9.82221Z\" fill=\"#D90026\"/>\\n<path d=\"M1.24495 11.5556C1.18594 12.0288 1.15555 12.5108 1.15555 13C1.15555 13.4892 1.18594 13.9713 1.24495 14.4445H11.2667V24.4662C11.7398 24.5252 12.2219 24.5556 12.7111 24.5556C13.2003 24.5556 13.6824 24.5252 14.1555 24.4662V14.4445H24.1773C24.2363 13.9713 24.2667 13.4892 24.2667 13C24.2667 12.5108 24.2363 12.0288 24.1773 11.5556H14.1555V1.53386C13.5901 1.44881 13.3002 1.44446 12.7111 1.44446C12.2219 1.44446 11.7399 1.47485 11.2667 1.53386V11.5556H1.24495Z\" fill=\"#D90026\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Founder of Cashify\"})}),className:\"framer-1ne171v\",\"data-framer-name\":\"Process manager at INSYNC\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Collaborating on my website and Cashifybot dashboard was smooth. The neat, user-friendly designs met every requirement. Highly recommended for anyone looking for skilled UI/UX work.\"})}),className:\"framer-yloq6w\",\"data-framer-name\":\"Ahmed is always doing a great job. We worked now on several projects with him and he doesn\\xb4t only work very efficient and diligent, but also he brings a lot of creativity and proactivity to the table. One of the best designers I worked with in the last time.\",fonts:[\"GF;Syne-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ke3u6z\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1q1xlso\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13327)\">\\n<g clip-path=\"url(#clip1_18085_13327)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2lawaf\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13328)\">\\n<g clip-path=\"url(#clip1_18085_13328)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-c3rtnv\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13329)\">\\n<g clip-path=\"url(#clip1_18085_13329)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xqwqy9\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13330)\">\\n<g clip-path=\"url(#clip1_18085_13330)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1b31ef7\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13331)\">\\n<g clip-path=\"url(#clip1_18085_13331)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10cuw1g\",\"data-framer-name\":\"Ellipse Effect\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aicpkd\",\"data-border\":true,\"data-framer-name\":\"Testimonial card\",whileHover:animation8,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lpe6gk\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vteic6\",\"data-framer-name\":\"Avatar, name\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"72px\",src:\"https://framerusercontent.com/images/saFPrjFFxHt0ykOUYTU4tgf7FYQ.jpg\",srcSet:\"https://framerusercontent.com/images/saFPrjFFxHt0ykOUYTU4tgf7FYQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/saFPrjFFxHt0ykOUYTU4tgf7FYQ.jpg 722w\"},className:\"framer-qgtj7w\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nzjiva\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yxc7vz\",\"data-framer-name\":\"Frame 291\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Devon Edwards\"})}),className:\"framer-wxtwd9\",\"data-framer-name\":\"Maximilian Herzer\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18zhnee\",\"data-framer-name\":\"CA\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1j5qy66\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 24.8242C18.6274 24.8242 24 19.4516 24 12.8242C24 6.1968 18.6274 0.824219 12 0.824219C5.37258 0.824219 0 6.1968 0 12.8242C0 19.4516 5.37258 24.8242 12 24.8242Z\" fill=\"#F0F0F0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-javr1k\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"22\" viewBox=\"0 0 24 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.0004 10.8249C24.0004 6.06737 21.2317 1.95662 17.2178 0.015625V21.6341C21.2317 19.6932 24.0004 15.5824 24.0004 10.8249Z\" fill=\"#D80027\"/>\\n<path d=\"M0 10.8239C0 15.5815 2.76867 19.6922 6.78262 21.6332V0.0146484C2.76867 1.95565 0 6.0664 0 10.8239Z\" fill=\"#D80027\"/>\\n<path d=\"M14.087 12.3893L16.174 11.3458L15.1305 10.824V9.78056L13.0435 10.824L14.087 8.73708H13.0435L12.0001 7.17188L10.9566 8.73708H9.91309L10.9566 10.824L8.86961 9.78056V10.824L7.82617 11.3458L9.91309 12.3893L9.39138 13.4327H11.4783V14.9979H12.5218V13.4327H14.6088L14.087 12.3893Z\" fill=\"#D80027\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Founder & CEO of PropFirmsMasters\"})}),className:\"framer-j1eyjo\",\"data-framer-name\":\"Process manager at INSYNC\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Jamal\u2019s designs are clean and elegant, reflecting deep UX knowledge. He simplifies ideas and delivers exceptional results with ease. A creative expert, his work showcases true design dedication.\"})}),className:\"framer-w3u0pf\",\"data-framer-name\":\"Ahmed is always doing a great job. We worked now on several projects with him and he doesn\\xb4t only work very efficient and diligent, but also he brings a lot of creativity and proactivity to the table. One of the best designers I worked with in the last time.\",fonts:[\"GF;Syne-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16hr4ea\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ydhp4a\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13327)\">\\n<g clip-path=\"url(#clip1_18085_13327)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n0ls5j\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13328)\">\\n<g clip-path=\"url(#clip1_18085_13328)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-72k3rl\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13329)\">\\n<g clip-path=\"url(#clip1_18085_13329)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8tpiha\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13330)\">\\n<g clip-path=\"url(#clip1_18085_13330)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1j6dwpd\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13331)\">\\n<g clip-path=\"url(#clip1_18085_13331)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-othb19\",\"data-framer-name\":\"Ellipse Effect\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cpcsqf\",\"data-border\":true,\"data-framer-name\":\"Testimonial card\",whileHover:animation8,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15nfk8d\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c0aqls\",\"data-framer-name\":\"Avatar, name\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xSCohv9DYI46OfEYsezOVDFtWw.png\"},className:\"framer-wossf9\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h8yecy\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-73nn4v\",\"data-framer-name\":\"Frame 291\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Abdul Sattar\"})}),className:\"framer-1won08m\",\"data-framer-name\":\"Maximilian Herzer\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z5wlht\",\"data-framer-name\":\"PK\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-al8p3h\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 24.8242C18.6274 24.8242 24 19.4516 24 12.8242C24 6.1968 18.6274 0.824219 12 0.824219C5.37258 0.824219 0 6.1968 0 12.8242C0 19.4516 5.37258 24.8242 12 24.8242Z\" fill=\"#F0F0F0\"/>\\n<path d=\"M0 12.8251C0 17.3736 2.53074 21.3308 6.26086 23.366V2.28418C2.53074 4.31945 0 8.27659 0 12.8251Z\" fill=\"#F0F0F0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cav8pj\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"25\" viewBox=\"0 0 18 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.99988 0.825195C3.92098 0.825195 1.96563 1.35409 0.260742 2.28427V23.3661C1.96563 24.2963 3.92098 24.8252 5.99988 24.8252C12.6273 24.8252 17.9999 19.4526 17.9999 12.8252C17.9999 6.19782 12.6273 0.825195 5.99988 0.825195Z\" fill=\"#496E2D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dv9qco\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:9,intrinsicWidth:11,svg:'<svg width=\"11\" height=\"9\" viewBox=\"0 0 11 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.1307 6.81064C6.61256 7.90757 4.49259 7.56613 3.39571 6.04803C2.29874 4.52984 2.64023 2.40992 4.15837 1.31304C4.63171 0.971041 5.16356 0.76887 5.70464 0.698604C4.66368 0.542932 3.56329 0.777495 2.64281 1.4426C0.774367 2.7927 0.354038 5.40181 1.70409 7.27035C3.05413 9.13874 5.66329 9.55911 7.53183 8.20892C8.4524 7.54381 9.02058 6.57289 9.19955 5.53559C8.96301 6.02712 8.60409 6.46859 8.1307 6.81064Z\" fill=\"#F0F0F0\"/>\\n<path d=\"M8.06688 0.651367L8.92207 1.57298L10.0628 1.0446L9.45049 2.1426L10.3056 3.0643L9.07207 2.82126L8.45979 3.91935L8.30974 2.67107L7.07617 2.42802L8.21697 1.89965L8.06688 0.651367Z\" fill=\"#F0F0F0\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Founder & CEO of Zexware (PVT LTD)\"})}),className:\"framer-fusklg\",\"data-framer-name\":\"Process manager at INSYNC\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"My experience was fantastic. Talented, hardworking, and exceeding expectations every time, he\u2019s the professional you need for UI/UX work. Excited for future collaborations!\"})}),className:\"framer-19p1c3s\",\"data-framer-name\":\"Ahmed is always doing a great job. We worked now on several projects with him and he doesn\\xb4t only work very efficient and diligent, but also he brings a lot of creativity and proactivity to the table. One of the best designers I worked with in the last time.\",fonts:[\"GF;Syne-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17yumog\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1pe85f2\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13327)\">\\n<g clip-path=\"url(#clip1_18085_13327)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5lfqxo\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13328)\">\\n<g clip-path=\"url(#clip1_18085_13328)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1g2tbvu\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13329)\">\\n<g clip-path=\"url(#clip1_18085_13329)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jwcsh7\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13330)\">\\n<g clip-path=\"url(#clip1_18085_13330)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pgrbm8\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13331)\">\\n<g clip-path=\"url(#clip1_18085_13331)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-187os0m\",\"data-framer-name\":\"Ellipse Effect\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fp1nqh\",\"data-border\":true,\"data-framer-name\":\"Testimonial card\",whileHover:animation8,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mvraok\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jc2uah\",\"data-framer-name\":\"Avatar, name\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/VLqPS1deGnQTfxvVFeCkGqt52E.png\"},className:\"framer-11leba0\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jx8r8r\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tflsmi\",\"data-framer-name\":\"Frame 291\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Maximilian Herzer\"})}),className:\"framer-1b9b5x\",\"data-framer-name\":\"Maximilian Herzer\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fysm7y\",\"data-framer-name\":\"DE\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1y2rqq9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"10\" viewBox=\"0 0 24 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.746094 1.99949C2.44161 6.56905 6.84012 9.82559 11.9997 9.82559C17.1593 9.82559 21.5578 6.56905 23.2533 1.99949L11.9997 0.956055L0.746094 1.99949Z\" fill=\"#FFDA44\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fpwujg\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"10\" viewBox=\"0 0 24 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.9997 0.825195C6.84012 0.825195 2.44161 4.0817 0.746094 8.6513L11.9997 9.69474L23.2533 8.65126C21.5578 4.0817 17.1593 0.825195 11.9997 0.825195Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-55w443\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:9,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"9\" viewBox=\"0 0 24 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.746391 0.650391C0.264047 1.95038 0 3.35644 0 4.82428C0 6.29213 0.264047 7.69819 0.746391 8.99817H23.2537C23.736 7.69819 24 6.29213 24 4.82428C24 3.35644 23.736 1.95038 23.2536 0.650391H0.746391Z\" fill=\"#D80027\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Process manager at INSYNC\"})}),className:\"framer-1la2vih\",\"data-framer-name\":\"Process manager at INSYNC\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Creativity and proactivity define his work. We\u2019ve worked on many projects together, and the efficiency and diligence he brings are unmatched. One of the best designers I\u2019ve worked with.\"})}),className:\"framer-dilfr9\",\"data-framer-name\":\"Ahmed is always doing a great job. We worked now on several projects with him and he doesn\\xb4t only work very efficient and diligent, but also he brings a lot of creativity and proactivity to the table. One of the best designers I worked with in the last time.\",fonts:[\"GF;Syne-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xvxlb1\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-i8y5vt\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13327)\">\\n<g clip-path=\"url(#clip1_18085_13327)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wath42\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13328)\">\\n<g clip-path=\"url(#clip1_18085_13328)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ux9yja\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13329)\">\\n<g clip-path=\"url(#clip1_18085_13329)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1t7rlse\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13330)\">\\n<g clip-path=\"url(#clip1_18085_13330)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7odc7j\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13331)\">\\n<g clip-path=\"url(#clip1_18085_13331)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11c7m2l\",\"data-framer-name\":\"Ellipse Effect\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xscuwi\",\"data-border\":true,\"data-framer-name\":\"Testimonial card\",whileHover:animation8,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1akg2f8\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11ilquq\",\"data-framer-name\":\"Avatar, name\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"72px\",src:\"https://framerusercontent.com/images/LlQC39gGdNoQGDPLgcwdsb4IQ.jpg\",srcSet:\"https://framerusercontent.com/images/LlQC39gGdNoQGDPLgcwdsb4IQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LlQC39gGdNoQGDPLgcwdsb4IQ.jpg 640w\"},className:\"framer-1nzpnrm\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z7edpv\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gytiqx\",\"data-framer-name\":\"Frame 291\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://contra.com/omar_ramzi\",motionChild:true,nodeId:\"gRddvnMF7\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Omar Ramzi\"})})})}),className:\"framer-1t2vew1\",\"data-framer-name\":\"Maximilian Herzer\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xsuwnf\",\"data-framer-name\":\"CA\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6sbnod\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 24.8242C18.6274 24.8242 24 19.4516 24 12.8242C24 6.1968 18.6274 0.824219 12 0.824219C5.37258 0.824219 0 6.1968 0 12.8242C0 19.4516 5.37258 24.8242 12 24.8242Z\" fill=\"#F0F0F0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-i8587d\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"22\" viewBox=\"0 0 24 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.0004 10.8249C24.0004 6.06737 21.2317 1.95662 17.2178 0.015625V21.6341C21.2317 19.6932 24.0004 15.5824 24.0004 10.8249Z\" fill=\"#D80027\"/>\\n<path d=\"M0 10.8239C0 15.5815 2.76867 19.6922 6.78262 21.6332V0.0146484C2.76867 1.95565 0 6.0664 0 10.8239Z\" fill=\"#D80027\"/>\\n<path d=\"M14.087 12.3893L16.174 11.3458L15.1305 10.824V9.78056L13.0435 10.824L14.087 8.73708H13.0435L12.0001 7.17188L10.9566 8.73708H9.91309L10.9566 10.824L8.86961 9.78056V10.824L7.82617 11.3458L9.91309 12.3893L9.39138 13.4327H11.4783V14.9979H12.5218V13.4327H14.6088L14.087 12.3893Z\" fill=\"#D80027\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"C0-Founder of PropFirmsMasters\"})}),className:\"framer-y1umm7\",\"data-framer-name\":\"Process manager at INSYNC\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Turning our ideas into beautiful, user-friendly designs was effortless. Communication was smooth, and the final product was beyond expectations. Highly recommended!\"})}),className:\"framer-rt8w8i\",\"data-framer-name\":\"Ahmed is always doing a great job. We worked now on several projects with him and he doesn\\xb4t only work very efficient and diligent, but also he brings a lot of creativity and proactivity to the table. One of the best designers I worked with in the last time.\",fonts:[\"GF;Syne-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-imw2vz\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1s5xlmd\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13327)\">\\n<g clip-path=\"url(#clip1_18085_13327)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11a0fju\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13328)\">\\n<g clip-path=\"url(#clip1_18085_13328)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-564ngy\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13329)\">\\n<g clip-path=\"url(#clip1_18085_13329)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cwgd20\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13330)\">\\n<g clip-path=\"url(#clip1_18085_13330)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13umya7\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13331)\">\\n<g clip-path=\"url(#clip1_18085_13331)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6zro46\",\"data-framer-name\":\"Ellipse Effect\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tobjwi\",\"data-border\":true,\"data-framer-name\":\"Testimonial card\",whileHover:animation8,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15fwgd1\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fpgmnm\",\"data-framer-name\":\"Avatar, name\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wmO6WOLq6j3TeKcpaECPUHTyE.png\"},className:\"framer-1bdvdf7\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sw51ma\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qych9k\",\"data-framer-name\":\"Frame 291\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Ali Hasnain\"})}),className:\"framer-6u48oh\",\"data-framer-name\":\"Maximilian Herzer\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zw6nfq\",\"data-framer-name\":\"IT\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10f4tdi\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z\" fill=\"#F0F0F0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s3ut72\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"24\" viewBox=\"0 0 8 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.99994 11.9992C7.99994 6.83958 4.74344 2.44106 0.173828 0.745544V23.2528C4.74344 21.5572 7.99994 17.1587 7.99994 11.9992Z\" fill=\"#D80027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jsefzl\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"24\" viewBox=\"0 0 8 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 11.9997C0 17.1593 3.2565 21.5578 7.82611 23.2533V0.746094C3.2565 2.44161 0 6.84013 0 11.9997Z\" fill=\"#6DA544\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Founder of Star Eyes Glow\"})}),className:\"framer-163yt8u\",\"data-framer-name\":\"Process manager at INSYNC\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Exceptional designs for our websites and dashboard! His modern and user-centric approach fit perfectly with our vision. Highly recommend for creative and professional results.\"})}),className:\"framer-197vjp0\",\"data-framer-name\":\"Ahmed is always doing a great job. We worked now on several projects with him and he doesn\\xb4t only work very efficient and diligent, but also he brings a lot of creativity and proactivity to the table. One of the best designers I worked with in the last time.\",fonts:[\"GF;Syne-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8aakrq\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-379ylj\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13327)\">\\n<g clip-path=\"url(#clip1_18085_13327)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tylv9q\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13328)\">\\n<g clip-path=\"url(#clip1_18085_13328)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k5nvlp\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13329)\">\\n<g clip-path=\"url(#clip1_18085_13329)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rzy8qo\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13330)\">\\n<g clip-path=\"url(#clip1_18085_13330)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kcxff0\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13331)\">\\n<g clip-path=\"url(#clip1_18085_13331)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bqw5jc\",\"data-framer-name\":\"Ellipse Effect\"})]})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tlagyn-container hidden-1j4blxu\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QxseV3bPs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:.2,id:\"QxseV3bPs\",layoutId:\"QxseV3bPs\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-946moj\",\"data-border\":true,\"data-framer-name\":\"Testimonial card\",whileHover:animation8,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1scjxsz\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wvtos3\",\"data-framer-name\":\"Avatar, name\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/VLqPS1deGnQTfxvVFeCkGqt52E.png\"},className:\"framer-1u49rma\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e6g33w\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7c5ise\",\"data-framer-name\":\"Frame 291\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Maximilian Herzer\"})}),className:\"framer-1jk2yvf\",\"data-framer-name\":\"Maximilian Herzer\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-po22v6\",\"data-framer-name\":\"DE\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-zuavq3\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"10\" viewBox=\"0 0 24 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.746094 1.99949C2.44161 6.56905 6.84012 9.82559 11.9997 9.82559C17.1593 9.82559 21.5578 6.56905 23.2533 1.99949L11.9997 0.956055L0.746094 1.99949Z\" fill=\"#FFDA44\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1amczto\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"10\" viewBox=\"0 0 24 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.9997 0.825195C6.84012 0.825195 2.44161 4.0817 0.746094 8.6513L11.9997 9.69474L23.2533 8.65126C21.5578 4.0817 17.1593 0.825195 11.9997 0.825195Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vmprn7\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:9,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"9\" viewBox=\"0 0 24 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.746391 0.650391C0.264047 1.95038 0 3.35644 0 4.82428C0 6.29213 0.264047 7.69819 0.746391 8.99817H23.2537C23.736 7.69819 24 6.29213 24 4.82428C24 3.35644 23.736 1.95038 23.2536 0.650391H0.746391Z\" fill=\"#D80027\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Process manager at INSYNC\"})}),className:\"framer-ickdhd\",\"data-framer-name\":\"Process manager at INSYNC\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xtbvk2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Consistently delivering amazing results, Ahmed always brings creativity and proactivity to every project. We\u2019ve worked on several designs, and his efficiency and diligence make him one of the best designers I\u2019ve recently collaborated with.\"})}),className:\"framer-445vz2\",\"data-framer-name\":\"Ahmed is always doing a great job. We worked now on several projects with him and he doesn\\xb4t only work very efficient and diligent, but also he brings a lot of creativity and proactivity to the table. One of the best designers I worked with in the last time.\",fonts:[\"GF;Syne-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nri3l4\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9vr0wi\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13327)\">\\n<g clip-path=\"url(#clip1_18085_13327)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13dhr9d\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13328)\">\\n<g clip-path=\"url(#clip1_18085_13328)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1u7u362\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13329)\">\\n<g clip-path=\"url(#clip1_18085_13329)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oo37ul\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13330)\">\\n<g clip-path=\"url(#clip1_18085_13330)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rtwr2j\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13331)\">\\n<g clip-path=\"url(#clip1_18085_13331)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ez1n3v\",\"data-framer-name\":\"Ellipse Effect\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sqg7wq\",\"data-border\":true,\"data-framer-name\":\"Testimonial card\",whileHover:animation8,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lyv7lo\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b0b2so\",\"data-framer-name\":\"Avatar, name\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xSCohv9DYI46OfEYsezOVDFtWw.png\"},className:\"framer-lt8905\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vbed2y\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-175vgbk\",\"data-framer-name\":\"Frame 291\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Abdul Sattar\"})}),className:\"framer-cnxaar\",\"data-framer-name\":\"Maximilian Herzer\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-67w620\",\"data-framer-name\":\"PK\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-znsgs2\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 24.8242C18.6274 24.8242 24 19.4516 24 12.8242C24 6.1968 18.6274 0.824219 12 0.824219C5.37258 0.824219 0 6.1968 0 12.8242C0 19.4516 5.37258 24.8242 12 24.8242Z\" fill=\"#F0F0F0\"/>\\n<path d=\"M0 12.8251C0 17.3736 2.53074 21.3308 6.26086 23.366V2.28418C2.53074 4.31945 0 8.27659 0 12.8251Z\" fill=\"#F0F0F0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18rayzq\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"25\" viewBox=\"0 0 18 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.99988 0.825195C3.92098 0.825195 1.96563 1.35409 0.260742 2.28427V23.3661C1.96563 24.2963 3.92098 24.8252 5.99988 24.8252C12.6273 24.8252 17.9999 19.4526 17.9999 12.8252C17.9999 6.19782 12.6273 0.825195 5.99988 0.825195Z\" fill=\"#496E2D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1u4gyxk\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:9,intrinsicWidth:11,svg:'<svg width=\"11\" height=\"9\" viewBox=\"0 0 11 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.1307 6.81064C6.61256 7.90757 4.49259 7.56613 3.39571 6.04803C2.29874 4.52984 2.64023 2.40992 4.15837 1.31304C4.63171 0.971041 5.16356 0.76887 5.70464 0.698604C4.66368 0.542932 3.56329 0.777495 2.64281 1.4426C0.774367 2.7927 0.354038 5.40181 1.70409 7.27035C3.05413 9.13874 5.66329 9.55911 7.53183 8.20892C8.4524 7.54381 9.02058 6.57289 9.19955 5.53559C8.96301 6.02712 8.60409 6.46859 8.1307 6.81064Z\" fill=\"#F0F0F0\"/>\\n<path d=\"M8.06688 0.651367L8.92207 1.57298L10.0628 1.0446L9.45049 2.1426L10.3056 3.0643L9.07207 2.82126L8.45979 3.91935L8.30974 2.67107L7.07617 2.42802L8.21697 1.89965L8.06688 0.651367Z\" fill=\"#F0F0F0\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Founder & CEO of Zexware (PVT LTD) \"})}),className:\"framer-1lmbtv0\",\"data-framer-name\":\"Process manager at INSYNC\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"My experience with Ahmed was outstanding. He\u2019s a talented and hardworking designer who exceeds expectations. If you need a professional UI/UX designer, look no further. I\u2019m excited to collaborate with him again in the future.\"})}),className:\"framer-3ljwer\",\"data-framer-name\":\"Ahmed is always doing a great job. We worked now on several projects with him and he doesn\\xb4t only work very efficient and diligent, but also he brings a lot of creativity and proactivity to the table. One of the best designers I worked with in the last time.\",fonts:[\"GF;Syne-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1figpnq\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tmo0z8\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13327)\">\\n<g clip-path=\"url(#clip1_18085_13327)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7rntxu\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13328)\">\\n<g clip-path=\"url(#clip1_18085_13328)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cqv5l2\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13329)\">\\n<g clip-path=\"url(#clip1_18085_13329)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hd4klk\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13330)\">\\n<g clip-path=\"url(#clip1_18085_13330)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r8gp6t\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13331)\">\\n<g clip-path=\"url(#clip1_18085_13331)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1udbj2\",\"data-framer-name\":\"Ellipse Effect\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kh722q\",\"data-border\":true,\"data-framer-name\":\"Testimonial card\",whileHover:animation8,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hhsxt5\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yyffcc\",\"data-framer-name\":\"Avatar, name\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"72px\",src:\"https://framerusercontent.com/images/LlQC39gGdNoQGDPLgcwdsb4IQ.jpg\",srcSet:\"https://framerusercontent.com/images/LlQC39gGdNoQGDPLgcwdsb4IQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LlQC39gGdNoQGDPLgcwdsb4IQ.jpg 640w\"},className:\"framer-z2f699\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dor8yh\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jr7kjh\",\"data-framer-name\":\"Frame 291\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Omar Ramzi\"})}),className:\"framer-j05vdk\",\"data-framer-name\":\"Maximilian Herzer\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6ccg6o\",\"data-framer-name\":\"CA\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vuz9f7\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 24.8242C18.6274 24.8242 24 19.4516 24 12.8242C24 6.1968 18.6274 0.824219 12 0.824219C5.37258 0.824219 0 6.1968 0 12.8242C0 19.4516 5.37258 24.8242 12 24.8242Z\" fill=\"#F0F0F0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13n4gv0\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"22\" viewBox=\"0 0 24 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.0004 10.8249C24.0004 6.06737 21.2317 1.95662 17.2178 0.015625V21.6341C21.2317 19.6932 24.0004 15.5824 24.0004 10.8249Z\" fill=\"#D80027\"/>\\n<path d=\"M0 10.8239C0 15.5815 2.76867 19.6922 6.78262 21.6332V0.0146484C2.76867 1.95565 0 6.0664 0 10.8239Z\" fill=\"#D80027\"/>\\n<path d=\"M14.087 12.3893L16.174 11.3458L15.1305 10.824V9.78056L13.0435 10.824L14.087 8.73708H13.0435L12.0001 7.17188L10.9566 8.73708H9.91309L10.9566 10.824L8.86961 9.78056V10.824L7.82617 11.3458L9.91309 12.3893L9.39138 13.4327H11.4783V14.9979H12.5218V13.4327H14.6088L14.087 12.3893Z\" fill=\"#D80027\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"C0-Founder of PropFirmsMasters\"})}),className:\"framer-9w8crv\",\"data-framer-name\":\"Process manager at INSYNC\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Working with Ahmed was a great experience. His creativity and attention to detail transformed our ideas into a user-friendly masterpiece. Communication was smooth, and the final product exceeded our expectations. Highly recommend him!\"})}),className:\"framer-kd0cxj\",\"data-framer-name\":\"Ahmed is always doing a great job. We worked now on several projects with him and he doesn\\xb4t only work very efficient and diligent, but also he brings a lot of creativity and proactivity to the table. One of the best designers I worked with in the last time.\",fonts:[\"GF;Syne-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a1fcto\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-414zq\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13327)\">\\n<g clip-path=\"url(#clip1_18085_13327)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bhqvj7\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13328)\">\\n<g clip-path=\"url(#clip1_18085_13328)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-134tf1q\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13329)\">\\n<g clip-path=\"url(#clip1_18085_13329)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10rotx6\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13330)\">\\n<g clip-path=\"url(#clip1_18085_13330)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-155ccg1\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13331)\">\\n<g clip-path=\"url(#clip1_18085_13331)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r8h4n7\",\"data-framer-name\":\"Ellipse Effect\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lqzwqe\",\"data-border\":true,\"data-framer-name\":\"Testimonial card\",whileHover:animation8,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1un7732\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c1bzcl\",\"data-framer-name\":\"Avatar, name\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wmO6WOLq6j3TeKcpaECPUHTyE.png\"},className:\"framer-9dt79h\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9zgl5k\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-282lvx\",\"data-framer-name\":\"Frame 291\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Ali Hasnain\"})}),className:\"framer-1dvrjux\",\"data-framer-name\":\"Maximilian Herzer\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wtfl6y\",\"data-framer-name\":\"IT\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1mueitl\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 24.8242C18.6274 24.8242 24 19.4516 24 12.8242C24 6.1968 18.6274 0.824219 12 0.824219C5.37258 0.824219 0 6.1968 0 12.8242C0 19.4516 5.37258 24.8242 12 24.8242Z\" fill=\"#F0F0F0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-98njc5\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"24\" viewBox=\"0 0 8 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.99994 11.8239C7.99994 6.66434 4.74344 2.26583 0.173828 0.570312V23.0776C4.74344 21.382 7.99994 16.9835 7.99994 11.8239Z\" fill=\"#D80027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r686id\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"24\" viewBox=\"0 0 8 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 11.8239C0 16.9835 3.2565 21.382 7.82611 23.0775V0.570312C3.2565 2.26583 0 6.66434 0 11.8239Z\" fill=\"#6DA544\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Founder of Star Eyes Glow\"})}),className:\"framer-lzpkns\",\"data-framer-name\":\"Process manager at INSYNC\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS01MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"The designs delivered were exceptional for two websites and a dashboard. With a modern, user-friendly approach, the work aligned perfectly with our requirements. His creativity and attention to detail are truly commendable.\"})}),className:\"framer-blww2i\",\"data-framer-name\":\"Ahmed is always doing a great job. We worked now on several projects with him and he doesn\\xb4t only work very efficient and diligent, but also he brings a lot of creativity and proactivity to the table. One of the best designers I worked with in the last time.\",fonts:[\"GF;Syne-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zlsjbl\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-s0r4il\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13327)\">\\n<g clip-path=\"url(#clip1_18085_13327)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13327\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sd3fg0\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13328)\">\\n<g clip-path=\"url(#clip1_18085_13328)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13328\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rbidk1\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13329)\">\\n<g clip-path=\"url(#clip1_18085_13329)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13329\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1x4vwrd\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13330)\">\\n<g clip-path=\"url(#clip1_18085_13330)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13330\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uwlr1n\",\"data-framer-name\":\"Star icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18085_13331)\">\\n<g clip-path=\"url(#clip1_18085_13331)\">\\n<path d=\"M9.07668 2.71993C9.41827 1.89864 10.5817 1.89864 10.9233 2.71993L12.4105 6.29546C12.5545 6.6417 12.8801 6.87827 13.2539 6.90823L17.114 7.2177C18.0006 7.28878 18.3601 8.39529 17.6846 8.97396L14.7436 11.4932C14.4588 11.7372 14.3345 12.1199 14.4215 12.4847L15.32 16.2515C15.5264 17.1167 14.5851 17.8006 13.826 17.3369L10.5213 15.3184C10.2012 15.1229 9.79876 15.1229 9.47875 15.3184L6.17397 17.3369C5.41487 17.8006 4.47362 17.1167 4.68001 16.2515L5.57852 12.4847C5.66553 12.1199 5.54116 11.7372 5.25637 11.4932L2.31539 8.97396C1.63985 8.39529 1.99938 7.28878 2.88603 7.2177L6.74612 6.90823C7.11991 6.87827 7.44552 6.6417 7.58953 6.29546L9.07668 2.71993Z\" fill=\"#FAC515\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18085_13331\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s1ohyw\",\"data-framer-name\":\"Ellipse Effect\"})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14mzcfs\",\"data-framer-name\":\"Frequently Asked Questions\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{style:{rotate:-37}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pg8gxe\",\"data-framer-name\":\"Effect\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"1144px\",src:\"https://framerusercontent.com/images/DzPRDa9uMsBSiLrZ7ABQItaIHFM.png\",srcSet:\"https://framerusercontent.com/images/DzPRDa9uMsBSiLrZ7ABQItaIHFM.png?scale-down-to=512 512w,https://framerusercontent.com/images/DzPRDa9uMsBSiLrZ7ABQItaIHFM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DzPRDa9uMsBSiLrZ7ABQItaIHFM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DzPRDa9uMsBSiLrZ7ABQItaIHFM.png 3431w\"},className:\"framer-1byjcap\",\"data-framer-name\":\"Effect\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ysln8h\",\"data-border\":true,\"data-framer-name\":\"FAQ section\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6o8fta\",\"data-framer-name\":\"Background pattern\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1473,intrinsicWidth:2552,svg:'<svg width=\"2552\" height=\"1473\" viewBox=\"0 0 2552 1473\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18039_14439)\">\\n<mask id=\"mask0_18039_14439\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"183\" y=\"105\" width=\"2187\" height=\"1263\">\\n<rect width=\"1262.4\" height=\"1262.4\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 183.098 736.218)\" fill=\"url(#paint0_radial_18039_14439)\"/>\\n</mask>\\n<g mask=\"url(#mask0_18039_14439)\">\\n<g clip-path=\"url(#clip1_18039_14439)\">\\n<g clip-path=\"url(#clip2_18039_14439)\">\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 61.623 806.352)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 122.361 771.285)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 183.098 736.218)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 243.836 701.151)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 304.572 666.085)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 365.309 631.019)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 426.047 595.952)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 486.783 560.885)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 547.521 525.818)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 608.258 490.752)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 668.996 455.686)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 729.732 420.619)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 790.469 385.552)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 851.207 350.485)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 911.943 315.419)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 972.682 280.353)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1033.42 245.286)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1094.15 210.219)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1154.89 175.152)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1215.63 140.086)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1276.37 105.02)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1337.1 69.9531)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1262.4\" y2=\"-0.438333\" transform=\"matrix(0.866025 0.5 -0.866025 0.5 1397.84 34.8867)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n</g>\\n<g clip-path=\"url(#clip3_18039_14439)\">\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 61.623 876.484)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 122.361 911.551)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 183.098 946.618)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 243.836 981.685)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 304.572 1016.75)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 365.309 1051.82)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 426.047 1086.88)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 486.783 1121.95)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 547.521 1157.02)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 608.258 1192.08)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 668.996 1227.15)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 729.732 1262.22)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 790.469 1297.28)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 851.207 1332.35)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 911.943 1367.42)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 972.682 1402.48)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n<line y1=\"-0.438333\" x2=\"1683.2\" y2=\"-0.438333\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 1033.42 1437.55)\" stroke=\"#344054\" stroke-width=\"0.876665\"/>\\n</g>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<radialGradient id=\"paint0_radial_18039_14439\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(631.199 631.199) rotate(90) scale(631.199 631.199)\">\\n<stop/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<clipPath id=\"clip0_18039_14439\">\\n<rect width=\"1683.2\" height=\"1262.4\" fill=\"white\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 0.539062 841.619)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_18039_14439\">\\n<rect width=\"1683.2\" height=\"1262.4\" fill=\"white\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 0.886719 841.418)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_18039_14439\">\\n<rect width=\"1683.2\" height=\"1262.4\" fill=\"white\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 0.886719 841.418)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_18039_14439\">\\n<rect width=\"1683.2\" height=\"1262.4\" fill=\"white\" transform=\"matrix(0.866025 -0.5 0.866025 0.5 0.886719 841.418)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6iglx6\",\"data-framer-name\":\"Ellipse Effect\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nk3idv\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-av3vpq\",\"data-framer-name\":\"Heading and supporting text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hr7eps\",\"data-framer-name\":\"Subheading\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-176g7nc\",\"data-framer-name\":\"Line 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:9,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"9\" viewBox=\"-2 -2 40 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2 2.82031H34\" stroke=\"#FAC515\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"37px\",\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Frequently\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),\"Asked Questions\"]})})},Wkn4_KGI2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Frequently\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),\"Asked Questions\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"rgb(250, 196, 20)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Frequently\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),\"Asked Questions\"]})}),className:\"framer-10bmuvk\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(234, 236, 240)\"},children:\"Find answers to common questions about the design process and working with me.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(234, 236, 240)\"},children:\"Find answers to common questions about the design process and working with me.\"})}),className:\"framer-1tkyh7j\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j35y2s\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-84tu9q\",\"data-framer-name\":\"Cards Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gkp1m9\",\"data-framer-name\":\"Card 01\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7hvndn\",\"data-framer-name\":\"Featured icon\",whileHover:animation7,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f7u8jd\",\"data-framer-name\":\"calendar-01 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-153yywn\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"26\" viewBox=\"0 0 24 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.9987 0.213867C5.30812 0.213867 5.60486 0.336783 5.82366 0.555576C6.04245 0.774368 6.16536 1.07111 6.16536 1.38053V3.71387C6.16536 4.02329 6.04245 4.32003 5.82366 4.53882C5.60486 4.75762 5.30812 4.88053 4.9987 4.88053C4.68928 4.88053 4.39253 4.75762 4.17374 4.53882C3.95495 4.32003 3.83203 4.02329 3.83203 3.71387V1.38053C3.83203 1.07111 3.95495 0.774368 4.17374 0.555576C4.39253 0.336783 4.68928 0.213867 4.9987 0.213867ZM18.9987 0.213867C19.3081 0.213867 19.6049 0.336783 19.8237 0.555576C20.0424 0.774368 20.1654 1.07111 20.1654 1.38053V3.71387C20.1654 4.02329 20.0424 4.32003 19.8237 4.53882C19.6049 4.75762 19.3081 4.88053 18.9987 4.88053C18.6893 4.88053 18.3925 4.75762 18.1737 4.53882C17.9549 4.32003 17.832 4.02329 17.832 3.71387V1.38053C17.832 1.07111 17.9549 0.774368 18.1737 0.555576C18.3925 0.336783 18.6893 0.213867 18.9987 0.213867Z\" fill=\"#FCFCFD\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.1777 1.67188C15.4702 1.67188 17.2844 1.67188 18.7065 1.87838C20.1742 2.09188 21.3479 2.54104 22.2649 3.53154C23.1714 4.51271 23.575 5.75287 23.7687 7.30687C23.9577 8.82821 23.9577 10.7789 23.9577 13.2685V13.9919C23.9577 16.4804 23.9577 18.4322 23.7687 19.9535C23.575 21.5075 23.1714 22.7477 22.2637 23.7289C21.3479 24.7194 20.1753 25.1685 18.7053 25.382C17.2855 25.5885 15.469 25.5885 13.1788 25.5885H10.8199C8.52968 25.5885 6.71318 25.5885 5.29218 25.382C3.82452 25.1685 2.65085 24.7194 1.73385 23.7289C0.827349 22.7477 0.423682 21.5075 0.230016 19.9547C0.0410156 18.4322 0.0410156 16.4815 0.0410156 13.9919V13.2685C0.0410156 10.78 0.0410156 8.82821 0.230016 7.30687C0.423682 5.75287 0.827349 4.51271 1.73502 3.53154C2.65085 2.54104 3.82335 2.09188 5.29335 1.87838C6.71318 1.67188 8.52968 1.67188 10.8199 1.67188H13.1777ZM9.19935 13.0469C9.41384 13.0469 9.62623 13.0891 9.8244 13.1712C10.0226 13.2533 10.2026 13.3736 10.3543 13.5253C10.506 13.6769 10.6263 13.857 10.7084 14.0552C10.7904 14.2533 10.8327 14.4657 10.8327 14.6802V18.8802C10.8327 19.1896 10.7098 19.4864 10.491 19.7052C10.2722 19.924 9.97544 20.0469 9.66602 20.0469C9.3566 20.0469 9.05985 19.924 8.84106 19.7052C8.62227 19.4864 8.49935 19.1896 8.49935 18.8802V15.3802C8.18993 15.3802 7.89318 15.2573 7.67439 15.0385C7.4556 14.8197 7.33268 14.523 7.33268 14.2135C7.33268 13.9041 7.4556 13.6074 7.67439 13.3886C7.89318 13.1698 8.18993 13.0469 8.49935 13.0469H9.19935ZM11.9993 14.2135C11.9993 13.9041 12.1223 13.6074 12.3411 13.3886C12.5599 13.1698 12.8566 13.0469 13.166 13.0469H15.1727C16.1037 13.0469 16.967 13.9685 16.575 15.0267L14.9942 19.285C14.8827 19.5697 14.6639 19.7992 14.3849 19.9242C14.1059 20.0492 13.789 20.0597 13.5024 19.9535C13.2157 19.8472 12.9823 19.6327 12.8521 19.3561C12.722 19.0794 12.7057 18.7628 12.8067 18.4742L13.9547 15.3802H13.166C12.8566 15.3802 12.5599 15.2573 12.3411 15.0385C12.1223 14.8197 11.9993 14.523 11.9993 14.2135ZM4.99935 7.21354C4.68993 7.21354 4.39318 7.33646 4.17439 7.55525C3.9556 7.77404 3.83268 8.07079 3.83268 8.38021C3.83268 8.68963 3.9556 8.98637 4.17439 9.20517C4.39318 9.42396 4.68993 9.54687 4.99935 9.54687H18.9994C19.3088 9.54687 19.6055 9.42396 19.8243 9.20517C20.0431 8.98637 20.166 8.68963 20.166 8.38021C20.166 8.07079 20.0431 7.77404 19.8243 7.55525C19.6055 7.33646 19.3088 7.21354 18.9994 7.21354H4.99935Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vo0dfv\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"How long is the design process?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"How long is the design process?\"})}),className:\"framer-1as0yim\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"The design process varies depending on the project scope and complexity. We will work together to establish a timeline and ensure timely delivery of your design.\"})}),className:\"framer-snfzw7\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ksonfo\",\"data-framer-name\":\"Card 02\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wpj2fh\",\"data-framer-name\":\"Featured icon\",whileHover:animation7,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-at2nie\",\"data-framer-name\":\"refresh-cw-03\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-syk4tf\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"26\" viewBox=\"-1 -1 24 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.3333 23.5677C13.3333 23.5677 14.3241 23.4262 18.4246 19.3257C22.5251 15.2252 22.5251 8.57693 18.4246 4.47642C16.9718 3.0236 15.1992 2.08552 13.3333 1.66217M13.3333 23.5677H20.3333M13.3333 23.5677L13.3333 16.5677M8.66667 0.234602C8.66667 0.234602 7.67588 0.376145 3.57538 4.47665C-0.525126 8.57715 -0.525126 15.2254 3.57538 19.3259C5.0282 20.7787 6.80084 21.7168 8.66667 22.1401M8.66667 0.234602L1.66667 0.234375M8.66667 0.234602L8.66667 7.23437\" stroke=\"#FCFCFD\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gti1ew\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Do you offer revisions?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Do you offer revisions?\"})}),className:\"framer-f67kvb\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Yes, I offer revisions to ensure your satisfaction with the final design. We will work together to make any necessary adjustments until you are happy with the result.\"})}),className:\"framer-1ou91iz\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1com3fw\",\"data-framer-name\":\"Card 03\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7r5a3v\",\"data-framer-name\":\"Featured icon\",whileHover:animation7,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x048mb\",\"data-framer-name\":\"money-bag-02 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19zlg79\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"26\" viewBox=\"0 0 24 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.9991 0.359375C11.2431 0.359375 10.7006 0.837708 10.4136 1.12471C10.2935 1.24604 10.1815 1.38721 10.0683 1.53071C9.85362 1.80137 9.63545 2.07788 9.34612 2.23071C9.03579 2.39404 8.64962 2.28438 8.31595 2.18871C8.25897 2.17248 8.2018 2.15693 8.14445 2.14204C7.79679 2.05104 7.26712 1.91337 6.70595 1.98804C6.46212 2.02071 6.14245 2.09888 5.89395 2.31938C5.77579 2.42003 5.68612 2.54995 5.63391 2.69613C5.58171 2.84231 5.56879 2.99964 5.59645 3.15237C5.64779 3.45104 5.83329 3.69721 6.01645 3.93054L7.05595 5.27104L7.10262 5.33171C7.35579 5.65837 7.61129 5.98854 7.94729 6.23471C8.21095 6.42954 8.54462 6.48437 8.87245 6.48437H15.1258C15.4525 6.48437 15.7873 6.42954 16.051 6.23471C16.387 5.98854 16.6413 5.65837 16.8945 5.33171L16.9411 5.27104L17.9818 3.93054C18.165 3.69721 18.3493 3.45221 18.4018 3.15237C18.4295 2.99964 18.4165 2.84231 18.3643 2.69613C18.3121 2.54995 18.2225 2.42003 18.1043 2.31938C17.8558 2.09771 17.5361 2.02071 17.2911 1.98804C16.7311 1.91337 16.2003 2.05104 15.8526 2.14087C15.7953 2.15615 15.7381 2.17209 15.6811 2.18871C15.3486 2.28438 14.9613 2.39521 14.651 2.23071C14.3628 2.07788 14.1435 1.80137 13.93 1.53071C13.8222 1.38898 13.7065 1.25344 13.5835 1.12471C13.2965 0.836542 12.7551 0.359375 11.9991 0.359375ZM23.0055 18.6119C22.3603 14.7467 20.4586 11.0939 17.6411 8.36621C17.5464 8.2692 17.4437 8.18023 17.3343 8.10021C17.0163 7.8859 16.6571 7.74046 16.2796 7.67321C16.1198 7.65104 16.0043 7.65104 15.7745 7.65104H8.22379C7.99395 7.65104 7.87845 7.65104 7.71862 7.67437C7.34123 7.74127 6.98199 7.88632 6.66395 8.10021C6.54486 8.19067 6.4322 8.28929 6.32679 8.39537C3.51502 11.1525 1.64789 14.7287 0.992787 18.6119C0.662621 20.5917 1.42562 22.3277 2.73929 23.541C4.03779 24.7427 5.88112 25.4427 7.80262 25.4427H16.1956C18.1171 25.4427 19.9593 24.7427 21.259 23.541C22.5726 22.3277 23.3356 20.5917 23.0055 18.6119ZM12.7726 12.6712C12.7726 12.5563 12.75 12.4425 12.706 12.3364C12.662 12.2302 12.5976 12.1337 12.5163 12.0525C12.4351 11.9712 12.3386 11.9068 12.2325 11.8628C12.1263 11.8188 12.0125 11.7962 11.8976 11.7962C11.7827 11.7962 11.6689 11.8188 11.5628 11.8628C11.4566 11.9068 11.3602 11.9712 11.2789 12.0525C11.1977 12.1337 11.1332 12.2302 11.0892 12.3364C11.0453 12.4425 11.0226 12.5563 11.0226 12.6712V12.803C10.57 12.9092 10.1511 13.097 9.79995 13.3572C9.23062 13.7772 8.79079 14.427 8.79079 15.225C8.79079 15.904 9.03579 16.562 9.68445 16.9984C10.2573 17.3834 11.0296 17.5117 11.8976 17.5117C12.6595 17.5117 13.0573 17.6284 13.2451 17.752C13.356 17.8232 13.4575 17.9282 13.4575 18.284C13.4575 18.543 13.3653 18.6807 13.1693 18.7974C12.9196 18.949 12.4903 19.0552 11.8976 19.0552C11.2758 19.0552 10.7916 18.851 10.5373 18.6235C10.4518 18.5462 10.3518 18.4864 10.2431 18.4478C10.1344 18.4092 10.0192 18.3925 9.90403 18.3985C9.78885 18.4046 9.67602 18.4334 9.57201 18.4833C9.468 18.5331 9.37488 18.603 9.29799 18.689C9.22109 18.7749 9.16196 18.8753 9.12397 18.9842C9.08599 19.0931 9.06991 19.2084 9.07666 19.3235C9.08341 19.4387 9.11286 19.5513 9.16331 19.655C9.21376 19.7588 9.28421 19.8515 9.37062 19.9279C9.80929 20.3199 10.388 20.5894 11.0226 20.7189V20.8379C11.0226 21.0699 11.1148 21.2925 11.2789 21.4566C11.443 21.6207 11.6656 21.7129 11.8976 21.7129C12.1297 21.7129 12.3522 21.6207 12.5163 21.4566C12.6804 21.2925 12.7726 21.0699 12.7726 20.8379V20.741C13.2346 20.6699 13.6826 20.531 14.07 20.2977C14.7548 19.887 15.2075 19.201 15.2075 18.284C15.2075 17.4627 14.9041 16.744 14.2018 16.2855C13.5788 15.8795 12.7586 15.7617 11.8976 15.7617C11.1428 15.7617 10.7986 15.638 10.661 15.5459C10.5991 15.5039 10.5408 15.456 10.5408 15.225C10.5408 15.1142 10.5991 14.9415 10.8395 14.7654C11.0775 14.5892 11.4485 14.4539 11.8976 14.4539C12.5218 14.4539 12.9663 14.7105 13.1495 14.9509C13.219 15.0423 13.3059 15.1192 13.4052 15.1771C13.5044 15.235 13.6141 15.2727 13.728 15.2882C13.8418 15.3037 13.9576 15.2966 14.0688 15.2674C14.1799 15.2381 14.2842 15.1873 14.3756 15.1177C14.4671 15.0482 14.544 14.9613 14.6018 14.862C14.6597 14.7627 14.6975 14.653 14.713 14.5392C14.7285 14.4253 14.7214 14.3095 14.6921 14.1984C14.6629 14.0873 14.612 13.983 14.5425 13.8915C14.126 13.3432 13.4878 12.9699 12.7726 12.8042V12.6712Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uldqhe\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"What is your pricing?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"What is your pricing?\"})}),className:\"framer-1bfu3ik\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Pricing is determined on a project-by-project basis. Please contact me for a personalized quote based on your specific design needs.\"})}),className:\"framer-h7gll5\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gcmv1x\",\"data-framer-name\":\"Card 04\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vffuah\",\"data-framer-name\":\"Featured icon\",whileHover:animation7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tbyifx\",\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ymd5p1\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"15\" viewBox=\"0 0 20 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.291 6.06771H2.70768C1.58185 6.06771 0.666016 5.15187 0.666016 4.02604V2.27604C0.666016 1.15021 1.58185 0.234375 2.70768 0.234375H17.291C18.4169 0.234375 19.3327 1.15021 19.3327 2.27604V4.02604C19.3327 5.15187 18.4169 6.06771 17.291 6.06771ZM17.8744 14.2344H16.1244C15.3205 14.2344 14.666 13.5799 14.666 12.776V9.85937C14.666 9.05554 15.3205 8.40104 16.1244 8.40104H17.8744C18.6782 8.40104 19.3327 9.05554 19.3327 9.85937V12.776C19.3327 13.5799 18.6782 14.2344 17.8744 14.2344ZM3.87435 14.2344H2.12435C1.32052 14.2344 0.666016 13.5799 0.666016 12.776V9.85937C0.666016 9.05554 1.32052 8.40104 2.12435 8.40104H3.87435C4.67818 8.40104 5.33268 9.05554 5.33268 9.85937V12.776C5.33268 13.5799 4.67818 14.2344 3.87435 14.2344ZM10.8743 14.2344H9.12435C8.32052 14.2344 7.66602 13.5799 7.66602 12.776V9.85937C7.66602 9.05554 8.32052 8.40104 9.12435 8.40104H10.8743C11.6782 8.40104 12.3327 9.05554 12.3327 9.85937V12.776C12.3327 13.5799 11.6782 14.2344 10.8743 14.2344Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ywy76z\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"26\" viewBox=\"0 0 28 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.5 0.0683594H3.5C1.57033 0.0683594 0 1.63869 0 3.56836V22.235C0 24.1647 1.57033 25.735 3.5 25.735H24.5C26.4297 25.735 28 24.1647 28 22.235V3.56836C28 1.63869 26.4297 0.0683594 24.5 0.0683594ZM24.5 23.4017H3.5C2.85717 23.4017 2.33333 22.879 2.33333 22.235V5.90169H25.6667V22.235C25.6667 22.879 25.1428 23.4017 24.5 23.4017Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c7na1b\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Do you design websites?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Do you design websites?\"})}),className:\"framer-7i7q02\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Yes, I also offer website design services. Whether you need a simple landing page or a complex e-commerce website, I can create a stunning design that meets your requirements.\"})}),className:\"framer-y0g35v\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ghefnn\",\"data-framer-name\":\"Card 05\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1giuiqc\",\"data-framer-name\":\"Featured icon\",whileHover:animation7,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xsr1be\",\"data-framer-name\":\"smart-phone 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wtd5je\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"26\" viewBox=\"0 0 20 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.383 0.374505C12.4763 0.375671 12.5463 0.459671 12.5323 0.553005C12.4168 1.246 12.3422 1.68934 12.2465 2.01484C12.1567 2.31817 12.0773 2.41734 12.0155 2.47217C11.9478 2.53284 11.8405 2.59817 11.5325 2.64134C11.1953 2.688 10.7345 2.69267 10.0007 2.69267C9.26565 2.69267 8.80598 2.688 8.46882 2.64134C8.15965 2.59817 8.05348 2.53284 7.98582 2.47217C7.92398 2.41734 7.84465 2.31934 7.75482 2.01484C7.65915 1.68934 7.58448 1.24717 7.46898 0.556505C7.46548 0.5341 7.46682 0.511203 7.47291 0.489359C7.479 0.467515 7.4897 0.447231 7.5043 0.429873C7.51889 0.412515 7.53704 0.398488 7.55751 0.388735C7.57798 0.378983 7.60031 0.373732 7.62298 0.373338C8.39369 0.360881 9.16451 0.356214 9.93532 0.359338H10.066C10.9142 0.359338 11.6853 0.359338 12.383 0.374505ZM5.40398 0.516838C5.48049 0.507216 5.55771 0.52816 5.61887 0.575122C5.68003 0.622084 5.72019 0.691274 5.73065 0.767671L5.73882 0.816671L5.74115 0.834171L5.74932 0.884338C5.85432 1.51667 5.94765 2.06734 6.07598 2.50717C6.21482 2.98084 6.42365 3.42534 6.82382 3.78117C7.23915 4.14984 7.71632 4.30384 8.22848 4.375C8.71148 4.4415 9.30648 4.44267 10.0007 4.44267C10.6948 4.44267 11.2898 4.4415 11.7728 4.375C12.2838 4.305 12.7622 4.14984 13.1775 3.78117C13.5777 3.42534 13.7865 2.98084 13.9242 2.50717C14.0548 2.06734 14.1458 1.51667 14.2508 0.884338L14.2602 0.834171L14.2707 0.764171C14.2819 0.688413 14.3225 0.620092 14.3835 0.573857C14.4446 0.527621 14.5213 0.507152 14.5973 0.516838C15.8071 0.680171 16.8023 1.02434 17.5898 1.81184C18.3773 2.59934 18.7215 3.59567 18.8848 4.80434C19.0423 5.9745 19.0423 7.46667 19.0423 9.33567V16.4663C19.0423 18.3365 19.0423 19.8287 18.8848 20.9988C18.7215 22.2075 18.3773 23.2038 17.5898 23.9902C16.8023 24.7788 15.8071 25.123 14.5973 25.2852C13.4272 25.4427 11.935 25.4427 10.066 25.4427H9.93532C8.06632 25.4427 6.57415 25.4427 5.40398 25.2852C4.19415 25.123 3.19898 24.7788 2.41148 23.9902C1.62398 23.2027 1.27982 22.2075 1.11648 20.9988C0.958985 19.8287 0.958984 18.3365 0.958984 16.4663V9.33567C0.958984 7.46667 0.958985 5.9745 1.11648 4.80434C1.27982 3.59567 1.62398 2.59934 2.41148 1.81184C3.19898 1.02434 4.19415 0.680171 5.40398 0.516838ZM7.95898 22.2343C7.95898 22.0023 8.05117 21.7797 8.21527 21.6156C8.37936 21.4515 8.60192 21.3593 8.83398 21.3593H11.1673C11.3994 21.3593 11.6219 21.4515 11.786 21.6156C11.9501 21.7797 12.0423 22.0023 12.0423 22.2343C12.0423 22.4664 11.9501 22.689 11.786 22.8531C11.6219 23.0172 11.3994 23.1093 11.1673 23.1093H8.83398C8.60192 23.1093 8.37936 23.0172 8.21527 22.8531C8.05117 22.689 7.95898 22.4664 7.95898 22.2343Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-117u9zt\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Can you design mobile apps?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Can you design mobile apps?\"})}),className:\"framer-3g3cge\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Absolutely! I specialize in mobile app design and can create intuitive and visually appealing interfaces for iOS and Android platforms.\"})}),className:\"framer-8vsij3\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ewo0o\",\"data-framer-name\":\"Card 06\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-p8gbjm\",\"data-framer-name\":\"Featured icon\",whileHover:animation7,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-zvcqgx\",\"data-framer-name\":\"stop-watch 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18b0l4m\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"26\" viewBox=\"0 0 24 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.0076 3.47244C3.22638 3.25373 3.52307 3.13086 3.83243 3.13086C4.14179 3.13086 4.43848 3.25373 4.65727 3.47244L5.82393 4.63911C6.03645 4.85915 6.15404 5.15385 6.15139 5.45974C6.14873 5.76564 6.02603 6.05826 5.80972 6.27456C5.59341 6.49087 5.3008 6.61357 4.9949 6.61623C4.689 6.61889 4.3943 6.50129 4.17427 6.28878L3.0076 5.12211C2.78888 4.90333 2.66602 4.60663 2.66602 4.29728C2.66602 3.98792 2.78888 3.69123 3.0076 3.47244ZM20.9906 3.47244C21.2093 3.69123 21.3322 3.98792 21.3322 4.29728C21.3322 4.60663 21.2093 4.90333 20.9906 5.12211L19.8239 6.28878C19.7163 6.40021 19.5876 6.48908 19.4452 6.55023C19.3029 6.61137 19.1498 6.64356 18.9949 6.6449C18.84 6.64625 18.6864 6.61673 18.543 6.55807C18.3996 6.49941 18.2693 6.41278 18.1598 6.30324C18.0503 6.1937 17.9636 6.06344 17.905 5.92006C17.8463 5.77668 17.8168 5.62305 17.8181 5.46814C17.8195 5.31323 17.8517 5.16014 17.9128 5.01781C17.974 4.87547 18.0628 4.74673 18.1743 4.63911L19.3409 3.47244C19.5597 3.25373 19.8564 3.13086 20.1658 3.13086C20.4751 3.13086 20.7718 3.25373 20.9906 3.47244Z\" fill=\"#FCFCFD\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2.83887C5.7175 2.83887 0.625 7.93137 0.625 14.2139C0.625 20.4964 5.7175 25.5889 12 25.5889C18.2825 25.5889 23.375 20.4964 23.375 14.2139C23.375 7.93137 18.2825 2.83887 12 2.83887ZM13.1667 10.1305C13.1667 9.82111 13.0437 9.52437 12.825 9.30558C12.6062 9.08678 12.3094 8.96387 12 8.96387C11.6906 8.96387 11.3938 9.08678 11.175 9.30558C10.9562 9.52437 10.8333 9.82111 10.8333 10.1305V14.7972C10.8334 15.1066 10.9564 15.4033 11.1752 15.622L13.5085 17.9554C13.7285 18.1679 14.0232 18.2855 14.3291 18.2828C14.635 18.2802 14.9276 18.1575 15.144 17.9412C15.3603 17.7248 15.483 17.4322 15.4856 17.1263C15.4883 16.8204 15.3707 16.5257 15.1582 16.3057L13.1667 14.313V10.1305Z\" fill=\"#FCFCFD\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.5 1.38053C8.5 1.07111 8.62292 0.774368 8.84171 0.555576C9.0605 0.336783 9.35725 0.213867 9.66667 0.213867H14.3333C14.6428 0.213867 14.9395 0.336783 15.1583 0.555576C15.3771 0.774368 15.5 1.07111 15.5 1.38053C15.5 1.68995 15.3771 1.9867 15.1583 2.20549C14.9395 2.42428 14.6428 2.5472 14.3333 2.5472H13.1667V3.13053C13.1667 3.43995 13.0437 3.7367 12.825 3.95549C12.6062 4.17428 12.3094 4.2972 12 4.2972C11.6906 4.2972 11.3938 4.17428 11.175 3.95549C10.9562 3.7367 10.8333 3.43995 10.8333 3.13053V2.5472H9.66667C9.35725 2.5472 9.0605 2.42428 8.84171 2.20549C8.62292 1.9867 8.5 1.68995 8.5 1.38053Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hr7ftu\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"What is the turnaround time?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"What is the turnaround time?\"})}),className:\"framer-10imrna\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"The turnaround time depends on the complexity of the project. I will provide you with an estimated timeline after discussing your requirements.\"})}),className:\"framer-1kzmp6q\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cmkkcp\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rtsgo6\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-60e9vz\",\"data-framer-name\":\"Heading and supporting text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Still have questions?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Still have questions?\"})}),className:\"framer-w0ee51\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Feel free to reach out to me for more information.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Feel free to reach out to me for more information.\"})}),className:\"framer-xtu2od\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Link,{href:\"mailto:ahmedawan.ux@gmail.com\",motionChild:true,nodeId:\"zukasGysb\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-16jse4z framer-lux5qc\",\"data-framer-name\":\"Buttons/Button\",whileHover:animation24,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-va3rpj\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(52, 64, 83)\"},children:\"Contact\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(52, 64, 83)\"},children:\"Contact\"})}),className:\"framer-qpseeo\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9haoqy\",\"data-framer-name\":\"CTA &  Footer\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xc5vn8\",\"data-framer-name\":\"Cta\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a0uwmz\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y0jqi3\",\"data-framer-name\":\"Effect\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-96ql3i\",\"data-framer-name\":\"Mask group\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gbx9c9\",\"data-framer-name\":\"Group 5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10zaxe0\",\"data-border\":true,\"data-framer-name\":\"Rectangle 171\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n551c1\",\"data-border\":true,\"data-framer-name\":\"Rectangle 172\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nlmzc1\",\"data-border\":true,\"data-framer-name\":\"Rectangle 173\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jafrit\",\"data-border\":true,\"data-framer-name\":\"Rectangle 174\"})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uxftg3\",whileHover:animation25,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qhhnyg\",\"data-framer-name\":\"Illustration\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:137,intrinsicWidth:136,svg:'<svg width=\"136\" height=\"137\" viewBox=\"0 0 136 137\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.820312\" width=\"136\" height=\"136\" rx=\"68\" fill=\"#FAC515\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M53.0727 28.7041C50.351 28.7041 47.7408 29.7853 45.8163 31.7098C43.8917 33.6344 42.8105 36.2446 42.8105 38.9663V98.6736C42.8105 101.395 43.8917 104.006 45.8163 105.93C47.7408 107.855 50.351 108.936 53.0727 108.936H82.9264C85.6481 108.936 88.2583 107.855 90.1829 105.93C92.1074 104.006 93.1886 101.395 93.1886 98.6736V38.9663C93.1886 36.2446 92.1074 33.6344 90.1829 31.7098C88.2583 29.7853 85.6481 28.7041 82.9264 28.7041H53.0727ZM59.6032 94.9419C59.6032 94.1996 59.8981 93.4877 60.423 92.9629C60.9478 92.438 61.6597 92.1431 62.402 92.1431H73.5971C74.3394 92.1431 75.0513 92.438 75.5762 92.9629C76.101 93.4877 76.3959 94.1996 76.3959 94.9419C76.3959 95.6842 76.101 96.3961 75.5762 96.9209C75.0513 97.4458 74.3394 97.7407 73.5971 97.7407H62.402C61.6597 97.7407 60.9478 97.4458 60.423 96.9209C59.8981 96.3961 59.6032 95.6842 59.6032 94.9419ZM66.1337 39.8992C65.3914 39.8992 64.6796 40.1941 64.1547 40.719C63.6298 41.2438 63.3349 41.9557 63.3349 42.698C63.3349 43.4403 63.6298 44.1522 64.1547 44.677C64.6796 45.2019 65.3914 45.4968 66.1337 45.4968H69.8654C70.6077 45.4968 71.3196 45.2019 71.8445 44.677C72.3693 44.1522 72.6642 43.4403 72.6642 42.698C72.6642 41.9557 72.3693 41.2438 71.8445 40.719C71.3196 40.1941 70.6077 39.8992 69.8654 39.8992H66.1337Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eo5f7d\",\"data-framer-name\":\"Heading & Sub Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Transforming Ideas into Beautiful Designs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(251, 252, 252)\"},children:\"Transforming Ideas into Beautiful Designs\"})}),className:\"framer-1brp152\",\"data-framer-name\":\"Transforming Ideas into Beautiful Designs\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(194, 194, 194)\"},children:\"I specialize in creating intuitive and visually stunning user experiences for mobile apps and websites. Let's collaborate and bring your project to life!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(194, 194, 194)\"},children:\"I specialize in creating intuitive and visually stunning user experiences for mobile apps and websites. Let's collaborate and bring your project to life!\"})}),className:\"framer-1wjo09h\",\"data-framer-name\":\"I specialize in creating intuitive and visually stunning user experiences for mobile apps and websites. Let's collaborate and bring your project to life!\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Link,{href:\"https://cal.com/ahmedjamalux\",motionChild:true,nodeId:\"o1iAfW28A\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-bp62j9 framer-lux5qc\",\"data-framer-name\":\"Buttons/Button\",whileHover:animation26,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-agxe2i\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(52, 64, 83)\"},children:\"Book a Call Now!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(52, 64, 83)\"},children:\"Book a Call Now!\"})}),className:\"framer-1ldd0ls\",\"data-framer-name\":\"Text\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wf4eme\",\"data-framer-name\":\"Footer\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7pan1c\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ya0krx\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1syij4g\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"hxgBTPEZ5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-fw7pfg framer-lux5qc\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"41\" viewBox=\"0 0 40 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20 0.320312C20.679 11.0722 29.248 19.6414 40 20.3203C29.248 20.9993 20.679 29.5683 20 40.3203C19.321 29.5683 10.7519 20.9993 0 20.3203C10.7519 19.6414 19.321 11.0722 20 0.320312Z\" fill=\"#FAC515\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u5pu6m\",\"data-framer-name\":\"Center\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(234, 236, 240)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":OJ1pVrqFa\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"cZFZBPflu\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17xxi85\",\"data-styles-preset\":\"X8yLCcHqP\",children:\"Work\"})})})}),className:\"framer-cdv0nb\",\"data-framer-name\":\"Work\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(234, 236, 240)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":uAW0DtC4j\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"caJriX7ft\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17xxi85\",\"data-styles-preset\":\"X8yLCcHqP\",children:\"Services\"})})})}),className:\"framer-zqb8je\",\"data-framer-name\":\"Services\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(234, 236, 240)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":qiXvhcMDy\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"OSgkgo5nB\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17xxi85\",\"data-styles-preset\":\"X8yLCcHqP\",children:\"Testimonials\"})})})}),className:\"framer-1gf2p63\",\"data-framer-name\":\"Testimonials\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(234, 236, 240)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":DqzSnJZEo\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"FfgA2JAmH\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17xxi85\",\"data-styles-preset\":\"X8yLCcHqP\",children:\"About\"})})})}),className:\"framer-1pcshux\",\"data-framer-name\":\"About\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(234, 236, 240)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":lyjipYUw7\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"YBuO7OMqF\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17xxi85\",\"data-styles-preset\":\"X8yLCcHqP\",children:\"FAQs\"})})})}),className:\"framer-1a0jjzx\",\"data-framer-name\":\"FAQs\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(234, 236, 240)\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:ahmedawan.ux@gmail.com\",motionChild:true,nodeId:\"kN_Hjnfks\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-17xxi85\",\"data-styles-preset\":\"X8yLCcHqP\",children:\"Contact\"})})})}),className:\"framer-wilm7q\",\"data-framer-name\":\"Contact\",fonts:[\"GF;Syne-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lmb42c\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16al5un\",\"data-framer-name\":\"Social Media Icons\",children:[/*#__PURE__*/_jsx(Link,{href:\"mailto:ahmedawan.ux@gmail.com\",motionChild:true,nodeId:\"o8KZy7h_h\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1i570q1 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Facebook \",whileHover:animation23,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kz66s0\",\"data-framer-name\":\"fWX4VvY2j7qpouMCecOW 2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2g0pbw\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"13\" viewBox=\"0 0 15 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.44728 0.357031C8.14528 0.323698 6.85595 0.323698 5.55395 0.357031L5.51528 0.357698C4.49861 0.383698 3.68061 0.404365 3.02528 0.517698C2.33861 0.637698 1.78061 0.867031 1.30995 1.3397C0.840613 1.81103 0.612613 2.36103 0.495279 3.0357C0.383279 3.67903 0.366613 4.47703 0.345279 5.4657L0.344613 5.50437C0.330442 6.1674 0.330442 6.83066 0.344613 7.4937L0.345279 7.53236C0.366613 8.52103 0.383279 9.31903 0.495279 9.96236C0.612613 10.637 0.840613 11.187 1.30995 11.6584C1.78061 12.1317 2.33861 12.3604 3.02528 12.4797C3.68061 12.5944 4.49861 12.615 5.51528 12.6397L5.55395 12.641C6.85595 12.6744 8.14528 12.6744 9.44728 12.641L9.48595 12.6404C10.5026 12.615 11.3206 12.5937 11.9759 12.4804C12.6626 12.3604 13.2199 12.131 13.6913 11.6584C14.1606 11.187 14.3886 10.637 14.5059 9.96236C14.6179 9.31903 14.6346 8.52103 14.6559 7.53236L14.6566 7.4937C14.6706 6.82903 14.6706 6.16903 14.6566 5.50437L14.6559 5.4657C14.6346 4.47703 14.6179 3.67903 14.5059 3.0357C14.3886 2.36103 14.1606 1.81103 13.6913 1.3397C13.2199 0.866365 12.6626 0.637698 11.9759 0.518365C11.3206 0.403698 10.5026 0.383698 9.48595 0.358365L9.44728 0.357031ZM4.42195 3.7357C4.36541 3.69978 4.30224 3.67559 4.23618 3.66455C4.17011 3.65352 4.10251 3.65587 4.03737 3.67147C3.97223 3.68707 3.9109 3.7156 3.857 3.75536C3.8031 3.79512 3.75773 3.8453 3.7236 3.90293C3.68947 3.96056 3.66727 4.02446 3.65831 4.09084C3.64935 4.15721 3.65382 4.22471 3.67145 4.28933C3.68908 4.35395 3.71951 4.41436 3.76094 4.46699C3.80236 4.51962 3.85394 4.56339 3.91261 4.5957L5.87395 5.7557C6.45461 6.09903 6.95595 6.33236 7.50061 6.33236C8.04595 6.33236 8.54661 6.09903 9.12728 5.7557L11.0886 4.5957C11.1473 4.56339 11.1989 4.51962 11.2403 4.46699C11.2817 4.41436 11.3122 4.35395 11.3298 4.28933C11.3474 4.22471 11.3519 4.15721 11.3429 4.09084C11.334 4.02446 11.3118 3.96056 11.2776 3.90293C11.2435 3.8453 11.1981 3.79512 11.1442 3.75536C11.0903 3.7156 11.029 3.68707 10.9639 3.67147C10.8987 3.65587 10.8311 3.65352 10.765 3.66455C10.699 3.67559 10.6358 3.69978 10.5793 3.7357L8.61795 4.89503C8.05528 5.22836 7.75595 5.33236 7.50061 5.33236C7.24528 5.33236 6.94595 5.2277 6.38328 4.89503L4.42195 3.7357Z\" fill=\"#FCFCFD\"/>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/ahmedjamalux/\",motionChild:true,nodeId:\"eZDStmwRQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1wou95u framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Facebook \",whileHover:animation23,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14rlxta\",\"data-framer-name\":\"Ts3-dgjqZWyiivFfrJ9e 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18117_13369)\">\\n<path d=\"M16.4958 16.5005L16.4998 16.4998V10.6318C16.4998 7.76114 15.8818 5.5498 12.5258 5.5498C10.9125 5.5498 9.82985 6.43514 9.38785 7.27447H9.34118V5.8178H6.15918V16.4998H9.47251V11.2105C9.47251 9.81781 9.73651 8.47114 11.4612 8.47114C13.1605 8.47114 13.1858 10.0605 13.1858 11.2998V16.5005H16.4958Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M0.763672 5.81836H4.08101V16.5004H0.763672V5.81836Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M2.42133 0.5C1.36067 0.5 0.5 1.36067 0.5 2.42133C0.5 3.482 1.36067 4.36067 2.42133 4.36067C3.482 4.36067 4.34267 3.482 4.34267 2.42133C4.342 1.36067 3.48133 0.5 2.42133 0.5Z\" fill=\"#FCFCFD\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18117_13369\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0.5 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/ahmedjamalux\",motionChild:true,nodeId:\"Ucc0ZCjWr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zskny7 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Facebook \",whileHover:animation23,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ub56y6\",\"data-framer-name\":\"jE-dnZqe0ydfloHmVDNt 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18117_13374)\">\\n<path d=\"M8.50182 4.3916C6.23315 4.3916 4.39648 6.23027 4.39648 8.49694C4.39648 10.7656 6.23515 12.6023 8.50182 12.6023C10.7705 12.6023 12.6072 10.7636 12.6072 8.49694C12.6072 6.22827 10.7685 4.3916 8.50182 4.3916ZM8.50182 11.1616C7.02915 11.1616 5.83715 9.96894 5.83715 8.49694C5.83715 7.02494 7.02982 5.83227 8.50182 5.83227C9.97382 5.83227 11.1665 7.02494 11.1665 8.49694C11.1672 9.96894 9.97448 11.1616 8.50182 11.1616Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M11.7988 0.550258C10.3268 0.481591 6.68082 0.484924 5.20749 0.550258C3.91282 0.610924 2.77082 0.923591 1.85015 1.84426C0.311485 3.38292 0.508152 5.45626 0.508152 8.49692C0.508152 11.6089 0.334818 13.6343 1.85015 15.1496C3.39482 16.6936 5.49815 16.4916 8.50282 16.4916C11.5855 16.4916 12.6495 16.4936 13.7395 16.0716C15.2215 15.4963 16.3402 14.1716 16.4495 11.7923C16.5188 10.3196 16.5148 6.67426 16.4495 5.20092C16.3175 2.39226 14.8102 0.688924 11.7988 0.550258ZM14.1288 14.1316C13.1202 15.1403 11.7208 15.0503 8.48349 15.0503C5.15015 15.0503 3.81348 15.0996 2.83815 14.1216C1.71482 13.0036 1.91815 11.2083 1.91815 8.48626C1.91815 4.80292 1.54015 2.15026 5.23682 1.96092C6.08615 1.93092 6.33615 1.92092 8.47415 1.92092L8.50415 1.94092C12.0568 1.94092 14.8442 1.56892 15.0115 5.26492C15.0495 6.10826 15.0582 6.36159 15.0582 8.49626C15.0575 11.7909 15.1202 13.1356 14.1288 14.1316Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M12.7699 5.19015C13.2997 5.19015 13.7292 4.76064 13.7292 4.23082C13.7292 3.70099 13.2997 3.27148 12.7699 3.27148C12.2401 3.27148 11.8105 3.70099 11.8105 4.23082C11.8105 4.76064 12.2401 5.19015 12.7699 5.19015Z\" fill=\"#FCFCFD\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18117_13374\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0.5 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.behance.net/ahmedjamalux\",motionChild:true,nodeId:\"tlUZUpZd7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-u2pu5l framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Facebook \",whileHover:animation23,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wxj7hc\",\"data-framer-name\":\"Ts3-dgjqZWyiivFfrJ9e 2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1prwib8\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:9,svg:'<svg width=\"9\" height=\"11\" viewBox=\"0 0 9 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.1313 0.233343C5.56362 0.225333 5.99533 0.269565 6.417 0.365073C6.77203 0.442425 7.10911 0.586366 7.41032 0.789242C7.6885 0.99098 7.90861 1.2622 8.04855 1.57567C8.20937 1.96113 8.28696 2.3761 8.27625 2.79351C8.29451 3.25182 8.17722 3.70537 7.93898 4.09763C7.68836 4.4681 7.34192 4.76398 6.93643 4.95387C7.48671 5.10192 7.96601 5.44103 8.28813 5.91023C8.59736 6.40737 8.75279 6.98449 8.73496 7.56936C8.74516 8.03567 8.64854 8.49816 8.45247 8.92156C8.27124 9.29092 8.00587 9.6128 7.67762 9.86145C7.33967 10.1074 6.95936 10.2893 6.5556 10.3982C6.13689 10.5138 5.70434 10.5719 5.2699 10.5708H0.5V0.233343H5.1313ZM4.85607 4.41444C5.19575 4.42841 5.53013 4.32693 5.80451 4.12661C5.93591 4.00987 6.03813 3.86408 6.103 3.70088C6.16786 3.53768 6.19357 3.3616 6.17807 3.18672C6.18687 2.98246 6.14611 2.77911 6.05927 2.59394C5.98561 2.4465 5.87107 2.32328 5.72927 2.23892C5.58564 2.14607 5.42428 2.08394 5.25538 2.05648C5.07212 2.02105 4.88563 2.00494 4.69899 2.0084H2.66088V4.42366H4.85607V4.41444ZM4.97487 8.81552C5.1803 8.81829 5.3853 8.79618 5.58538 8.74965C5.76823 8.70936 5.94164 8.63446 6.09623 8.52901C6.24768 8.42362 6.37003 8.2818 6.45198 8.11669C6.54699 7.90616 6.59065 7.67616 6.57936 7.44553C6.59996 7.23537 6.57207 7.02329 6.49782 6.82555C6.42357 6.62781 6.30494 6.44966 6.15101 6.30476C5.82477 6.06496 5.42496 5.94617 5.02042 5.96885H2.66088V8.81552H4.97487Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ib5rf1\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:9,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"9\" viewBox=\"0 0 8 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.81296 6.77755C2.98256 6.93443 3.18235 7.05526 3.4002 7.13271C3.61804 7.21015 3.84938 7.2426 4.08018 7.22807C4.44606 7.23729 4.80483 7.1262 5.10122 6.91192C5.34234 6.75546 5.52493 6.52392 5.62064 6.25327H7.34393C7.16032 7.02377 6.71193 7.70569 6.07671 8.18047C5.46733 8.58411 4.74719 8.78852 4.01616 8.76535C3.49441 8.77218 2.97661 8.6743 2.49351 8.47752C2.05651 8.29565 1.66457 8.02074 1.34509 7.67199C1.02682 7.30657 0.782309 6.88319 0.62502 6.42517C0.448466 5.91321 0.362048 5.37461 0.369596 4.83322C0.366379 4.30092 0.455705 3.77209 0.633601 3.27025C0.872599 2.56426 1.32957 1.95197 1.93893 1.52124C2.54829 1.09052 3.27872 0.863504 4.0254 0.872778C4.57667 0.86128 5.1218 0.990026 5.60942 1.24689C6.0502 1.48809 6.43044 1.82588 6.72154 2.23486C7.01932 2.66401 7.23276 3.14566 7.35053 3.65425C7.47969 4.20037 7.52574 4.76279 7.48716 5.3226H2.35425C2.31266 5.84855 2.47709 6.37011 2.81296 6.77755ZM5.06492 2.84609C4.92128 2.70271 4.74852 2.59172 4.55827 2.5206C4.36803 2.44948 4.16471 2.41987 3.96204 2.43377C3.69315 2.42354 3.4262 2.48299 3.18719 2.60634C2.9977 2.71044 2.83044 2.8505 2.69482 3.01865C2.57463 3.1763 2.48508 3.35502 2.43081 3.54557C2.38191 3.70449 2.35135 3.86845 2.33973 4.03429H5.519C5.4913 3.60198 5.3335 3.18809 5.06624 2.84674L5.06492 2.84609Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11qotgm\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:2,intrinsicWidth:5,svg:'<svg width=\"5\" height=\"2\" viewBox=\"0 0 5 2\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.91351 0.923828H0.929688V1.94012H4.91351V0.923828Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://dribbble.com/ahmedjamalux\",motionChild:true,nodeId:\"RvQ4lTvJC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-13oirun framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Facebook \",whileHover:animation23,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1n94xeu\",\"data-framer-name\":\"cQN3QfbSecboBWOmtTbD 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_18117_13381)\">\\n<path d=\"M8.5 16.5C12.9113 16.5 16.5 12.9107 16.5 8.5C16.5 4.08933 12.9107 0.5 8.5 0.5C4.08933 0.5 0.5 4.08867 0.5 8.5C0.5 12.9113 4.08867 16.5 8.5 16.5ZM8.5 1.5C12.3587 1.5 15.5 4.64 15.5 8.5C15.5 12.3587 12.3587 15.5 8.5 15.5C4.64 15.5 1.5 12.3587 1.5 8.5C1.5 4.64 4.64 1.5 8.5 1.5Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M12.3274 3.88067C11.2888 3.018 9.95477 2.5 8.49944 2.5C8.07944 2.5 7.66944 2.544 7.27344 2.626C8.00144 3.658 8.66277 4.732 9.24477 5.84533C10.3454 5.332 11.3814 4.67 12.3274 3.88067Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M10.4111 8.40127C11.7391 8.12794 13.1211 8.1026 14.4911 8.32994C14.4511 6.89994 13.9131 5.59594 13.0411 4.58594C12.0117 5.45327 10.8797 6.17194 9.67773 6.73394C9.9404 7.28194 10.1844 7.83727 10.4111 8.40127Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M8.31154 6.22328C7.7102 5.08262 7.02954 3.98262 6.26954 2.93262C4.4682 3.65462 3.10287 5.22262 2.6582 7.14728C4.6002 7.22995 6.5222 6.90662 8.31154 6.22328Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M9.436 8.65153C9.22733 8.13753 9.00133 7.63153 8.76 7.13086C7.028 7.80553 5.178 8.17353 3.29667 8.17353C3.038 8.17353 2.778 8.15753 2.518 8.14353C2.51133 8.26219 2.5 8.38086 2.5 8.50153C2.5 9.97486 3.03333 11.3229 3.914 12.3669C5.35467 10.5775 7.292 9.29553 9.436 8.65153Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M10.7773 9.34853C11.254 10.6792 11.628 12.0465 11.9027 13.4399C13.2547 12.5072 14.1987 11.0339 14.4353 9.33187C13.2093 9.1152 11.97 9.12453 10.7773 9.34853Z\" fill=\"#FCFCFD\"/>\\n<path d=\"M4.62305 13.0771C5.66971 13.9644 7.02038 14.5011 8.49971 14.5011C9.38771 14.5011 10.2284 14.3031 10.9864 13.9564C10.7117 12.4624 10.3117 11.0004 9.79505 9.58105C7.77905 10.1697 5.95838 11.3797 4.62305 13.0771Z\" fill=\"#FCFCFD\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_18117_13381\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0.5 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-196b6jz\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2sxn0a\",\"data-framer-name\":\"Center\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(207, 212, 220)\"},children:\"Ahmed Jamal. All right reserved. \\xa9 2025\"})}),className:\"framer-1l60jbp\",\"data-framer-name\":\"Ahmed Jamal. All right reserved. \\xa9 2024\",fonts:[\"GF;Syne-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qLnD6Bhgn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Jyb2xpbmsgUmVndWxhcg==\",\"--framer-font-family\":'\"Brolink Regular\", \"Brolink Regular Placeholder\", sans-serif',\"--framer-font-size\":\"83.21px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(217, 217, 217, 0) 39.5676%, rgba(255, 255, 255, 0.2) 76.6155%)\"},children:\"Ahmed\"})})})},Wkn4_KGI2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Jyb2xpbmsgUmVndWxhcg==\",\"--framer-font-family\":'\"Brolink Regular\", \"Brolink Regular Placeholder\", sans-serif',\"--framer-font-size\":\"179.21px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(217, 217, 217, 0) 39.5676%, rgba(255, 255, 255, 0.2) 76.6155%)\"},children:\"Ahmed\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Jyb2xpbmsgUmVndWxhcg==\",\"--framer-font-family\":'\"Brolink Regular\", \"Brolink Regular Placeholder\", sans-serif',\"--framer-font-size\":\"195.21px\",\"--framer-letter-spacing\":\"-0.02em\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(217, 217, 217, 0) 39.5676%, rgba(255, 255, 255, 0.2) 76.6155%)\"},children:\"Ahmed\"})})}),className:\"framer-10urc5\",\"data-framer-name\":\"Ahmed\",fonts:[\"CUSTOM;Brolink Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SXqwT.framer-lux5qc, .framer-SXqwT .framer-lux5qc { display: block; }\",\".framer-SXqwT.framer-72rtr7 { align-content: center; align-items: center; background-color: #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-SXqwT .framer-qye2y3-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-SXqwT .framer-yoc70c { 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-SXqwT .framer-14llrot { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; }\",\".framer-SXqwT .framer-knuas5 { flex: none; height: 1px; opacity: 0.72; overflow: visible; position: relative; width: 1%; z-index: 0; }\",\".framer-SXqwT .framer-cdfjeq { -webkit-mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0,0,0,0) 84.68468468468468%) add; bottom: -682px; flex: none; left: -445px; mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0,0,0,0) 84.68468468468468%) add; overflow: visible; position: absolute; right: -444px; top: -85px; }\",\".framer-SXqwT .framer-1ylbavb { --border-bottom-width: 0px; --border-color: #ffffff; --border-left-width: 1.2112675905227661px; --border-right-width: 1.2112675905227661px; --border-style: solid; --border-top-width: 0px; background-color: rgba(255, 255, 255, 0.3); flex: none; height: 768px; left: 0px; opacity: 0.3; position: absolute; top: 0px; width: 188px; }\",\".framer-SXqwT .framer-xfhwjo { --border-bottom-width: 0px; --border-color: #ffffff; --border-left-width: 1.2112675905227661px; --border-right-width: 1.2112675905227661px; --border-style: solid; --border-top-width: 0px; background-color: rgba(255, 255, 255, 0.3); flex: none; height: 768px; left: 238px; opacity: 0.3; position: absolute; top: 0px; width: 188px; }\",\".framer-SXqwT .framer-p46b2w { --border-bottom-width: 0px; --border-color: #ffffff; --border-left-width: 1.2112675905227661px; --border-right-width: 1.2112675905227661px; --border-style: solid; --border-top-width: 0px; background-color: rgba(255, 255, 255, 0.3); flex: none; height: 768px; left: 476px; opacity: 0.3; position: absolute; top: 0px; width: 188px; }\",\".framer-SXqwT .framer-1pr10lx { --border-bottom-width: 0px; --border-color: #ffffff; --border-left-width: 1.2112675905227661px; --border-right-width: 1.2112675905227661px; --border-style: solid; --border-top-width: 0px; background-color: rgba(255, 255, 255, 0.3); flex: none; height: 768px; left: 715px; opacity: 0.3; position: absolute; top: 0px; width: 188px; }\",\".framer-SXqwT .framer-1bio9zy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-1k6ulu6 { -webkit-filter: blur(152.87869262695312px); background: linear-gradient(180deg, rgba(250, 196, 20, 0.1) 0%, rgba(250, 196, 20, 0.1) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 1031px; filter: blur(152.87869262695312px); flex: none; left: 480px; position: absolute; right: 480px; top: 24px; z-index: 0; }\",\".framer-SXqwT .framer-buite1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-17wo2k4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-1fxo5jf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-1urhq33 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-156mnvb { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 38px; justify-content: center; overflow: visible; padding: 6px 12px 6px 12px; position: relative; width: min-content; z-index: 0; }\",\".framer-SXqwT .framer-179brwp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-1w9i3b, .framer-SXqwT .framer-1vel000, .framer-SXqwT .framer-zrx5gl, .framer-SXqwT .framer-1l189oy, .framer-SXqwT .framer-d025n6, .framer-SXqwT .framer-kz66s0 { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; }\",\".framer-SXqwT .framer-c8l2cm { flex: none; height: 16px; left: 0px; position: absolute; top: 0px; width: 16px; }\",\".framer-SXqwT .framer-60dbwd, .framer-SXqwT .framer-1msbnrq, .framer-SXqwT .framer-15et33x, .framer-SXqwT .framer-xbayet { flex: none; height: 16px; left: 0px; position: absolute; top: 0px; width: 17px; }\",\".framer-SXqwT .framer-4wr1ek, .framer-SXqwT .framer-n22gdw, .framer-SXqwT .framer-wxtwd9, .framer-SXqwT .framer-1won08m, .framer-SXqwT .framer-1b9b5x, .framer-SXqwT .framer-1t2vew1, .framer-SXqwT .framer-6u48oh, .framer-SXqwT .framer-1jk2yvf, .framer-SXqwT .framer-cnxaar, .framer-SXqwT .framer-j05vdk, .framer-SXqwT .framer-1dvrjux { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SXqwT .framer-f22g92 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; max-width: 750px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-1xgces1 { --border-bottom-width: 4px; --border-color: #fe9b01; --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; aspect-ratio: 1 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0px 38px 0px rgba(250, 197, 21, 0.6); flex: none; height: var(--framer-aspect-ratio-supported, 88px); position: relative; text-decoration: none; width: 88px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-1vqzbrb { 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-SXqwT .framer-5yey0b { --framer-paragraph-spacing: 60px; flex: none; height: auto; max-width: 668px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SXqwT .framer-nhg947 { --framer-paragraph-spacing: 24px; flex: none; height: auto; max-width: 650px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SXqwT .framer-1d09smo { aspect-ratio: 1.1521739130434783 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); left: -8px; overflow: visible; position: absolute; top: 57px; width: 60px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-1bn70ps { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-1swtckn-container, .framer-SXqwT .framer-s25m8l-container, .framer-SXqwT .framer-1yxku73-container, .framer-SXqwT .framer-rnq1xt-container, .framer-SXqwT .framer-1l52zsv-container, .framer-SXqwT .framer-hmm6xl-container, .framer-SXqwT .framer-m9dcjh-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-SXqwT .framer-1i0i660 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-yi8ckh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 32px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-t2ncav, .framer-SXqwT .framer-xtu2od { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SXqwT .framer-1kix80y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-gi6vpv-container { aspect-ratio: 18.5625 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 63px); position: relative; width: 1px; }\",\".framer-SXqwT .framer-13rqb51, .framer-SXqwT .framer-1kqe3d2, .framer-SXqwT .framer-j8wmhq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-890eay { flex: none; height: 36px; position: relative; width: 37px; }\",\".framer-SXqwT .framer-eguhsg { --framer-paragraph-spacing: 15.01629638671875px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SXqwT .framer-1lnwwgf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-1ggqv9o { flex: none; height: 28px; position: relative; width: 27px; }\",\".framer-SXqwT .framer-1b4f0si { --framer-paragraph-spacing: 11.088500022888184px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SXqwT .framer-x5ayti { flex: none; height: 32px; position: relative; width: 31px; }\",\".framer-SXqwT .framer-5ljhxx, .framer-SXqwT .framer-1jr3o3k { --framer-paragraph-spacing: 16.499988555908203px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SXqwT .framer-1xwwk15 { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-SXqwT .framer-c0wcct { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 144px; }\",\".framer-SXqwT .framer-2jlebi { flex: none; height: 44px; position: relative; width: 144px; }\",\".framer-SXqwT .framer-1oaqq5h { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 28px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 106px; }\",\".framer-SXqwT .framer-lap8y { flex: none; height: 28px; position: relative; width: 106px; }\",\".framer-SXqwT .framer-15bj8nl { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-1yb011i-container { flex: none; height: 503px; position: relative; width: 347px; }\",\".framer-SXqwT .framer-sq5txl, .framer-SXqwT .framer-1y0ya9z, .framer-SXqwT .framer-1xwz0kj, .framer-SXqwT .framer-ih7ggh, .framer-SXqwT .framer-5a19oo, .framer-SXqwT .framer-11ziwvb, .framer-SXqwT .framer-s83l9f, .framer-SXqwT .framer-1k4zqfx, .framer-SXqwT .framer-1lm38qm, .framer-SXqwT .framer-dakecg, .framer-SXqwT .framer-1ieukyj, .framer-SXqwT .framer-1r9cykc { --border-bottom-width: 8.727276802062988px; --border-color: rgba(51, 51, 51, 0.5); --border-left-width: 8.727276802062988px; --border-right-width: 8.727276802062988px; --border-style: solid; --border-top-width: 8.727276802062988px; aspect-ratio: 0.8793103448275862 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: var(--framer-aspect-ratio-supported, 341px); overflow: hidden; position: relative; width: 300px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-3sy9q8 { --border-bottom-width: 8.208952903747559px; --border-color: rgba(51, 51, 51, 0.5); --border-left-width: 8.208952903747559px; --border-right-width: 8.208952903747559px; --border-style: solid; --border-top-width: 8.2089529px; aspect-ratio: 0.8793103448275862 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: var(--framer-aspect-ratio-supported, 341px); overflow: hidden; position: relative; width: 300px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-ybmml5-container { flex: 1 0 0px; height: 496px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-15sl5pt, .framer-SXqwT .framer-17oquci, .framer-SXqwT .framer-lffa0q, .framer-SXqwT .framer-1g9je48, .framer-SXqwT .framer-miki2g, .framer-SXqwT .framer-uyyva6, .framer-SXqwT .framer-uik5qi, .framer-SXqwT .framer-1wqwjuj, .framer-SXqwT .framer-1nc15up, .framer-SXqwT .framer-12orp28, .framer-SXqwT .framer-wv4xkr, .framer-SXqwT .framer-1rq53na { --border-bottom-width: 8.727276802062988px; --border-color: rgba(51, 51, 51, 0.5); --border-left-width: 8.727276802062988px; --border-right-width: 8.727276802062988px; --border-style: solid; --border-top-width: 8.727276802062988px; aspect-ratio: 1.5 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: var(--framer-aspect-ratio-supported, 445px); overflow: hidden; position: relative; width: 668px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-c0ss6y { --border-bottom-width: 8.208952903747559px; --border-color: rgba(51, 51, 51, 0.5); --border-left-width: 8.208952903747559px; --border-right-width: 8.208952903747559px; --border-style: solid; --border-top-width: 8.2089529px; aspect-ratio: 1.5 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: var(--framer-aspect-ratio-supported, 445px); overflow: hidden; position: relative; width: 668px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-113e9ip, .framer-SXqwT .framer-rxjh76, .framer-SXqwT .framer-x3r16w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-171jsnd, .framer-SXqwT .framer-byf90s { align-content: center; align-items: center; background-color: #000000; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 96px 0px 96px 0px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-d3i1q8 { -webkit-filter: blur(240px); aspect-ratio: 1 / 1; background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, rgba(250, 197, 21, 0.5) 0%, rgba(148, 116, 12, 0.5) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(240px); flex: none; height: var(--framer-aspect-ratio-supported, 456px); left: 52%; position: absolute; top: 144px; transform: translateX(-50%); width: 456px; z-index: 0; }\",\".framer-SXqwT .framer-1hvptrr { flex: none; height: 1473px; left: -556px; overflow: hidden; position: absolute; right: -556px; top: -204px; }\",\".framer-SXqwT .framer-12586h6, .framer-SXqwT .framer-33x8qw, .framer-SXqwT .framer-1j7qqlh, .framer-SXqwT .framer-1qh4n9c { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-SXqwT .framer-1rezq98 { 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-SXqwT .framer-1d55t3u, .framer-SXqwT .framer-1dy7ffc, .framer-SXqwT .framer-rugr6c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-1vs8u8c, .framer-SXqwT .framer-1qmsor0, .framer-SXqwT .framer-1j1dqc4, .framer-SXqwT .framer-1ne171v, .framer-SXqwT .framer-j1eyjo, .framer-SXqwT .framer-fusklg, .framer-SXqwT .framer-1la2vih, .framer-SXqwT .framer-y1umm7, .framer-SXqwT .framer-163yt8u, .framer-SXqwT .framer-ickdhd, .framer-SXqwT .framer-1lmbtv0, .framer-SXqwT .framer-9w8crv, .framer-SXqwT .framer-lzpkns { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SXqwT .framer-7fndm7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 120px; justify-content: flex-start; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-uxpa05 { --framer-paragraph-spacing: 48px; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SXqwT .framer-199rpj6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1300px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-2jc3r0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 646px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-1u4aq67, .framer-SXqwT .framer-24jha6 { --border-bottom-width: 1.5px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: flex-start; align-items: flex-start; background-color: #0d0d0d; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0px 1px 2px 0px rgba(20, 21, 26, 0.05); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SXqwT .framer-bi276z, .framer-SXqwT .framer-wfo7x6, .framer-SXqwT .framer-1hz0b56, .framer-SXqwT .framer-4kw7fe, .framer-SXqwT .framer-dvuizh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 1px; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-2qzhs7, .framer-SXqwT .framer-11itc2r, .framer-SXqwT .framer-glgz3j { --border-bottom-width: 2px; --border-color: #191919; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-SXqwT .framer-1wxwnm8 { bottom: -160px; flex: none; height: 538px; left: calc(50.00000000000002% - 433px / 2); overflow: visible; position: absolute; width: 433px; z-index: 1; }\",\".framer-SXqwT .framer-1xk4rb, .framer-SXqwT .framer-17sce5h { --border-bottom-width: 3px; --border-color: rgba(250, 197, 21, 0.5); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; background-color: #242424; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; bottom: 0px; flex: none; height: 439px; left: 1px; overflow: visible; position: absolute; width: 195px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-SXqwT .framer-1gg916p, .framer-SXqwT .framer-c7rj1g { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 22px; left: 18px; position: absolute; top: 60px; width: 41px; }\",\".framer-SXqwT .framer-p79tbv, .framer-SXqwT .framer-v621lc { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 18px; position: absolute; top: 24px; width: 59px; }\",\".framer-SXqwT .framer-16rc6bb, .framer-SXqwT .framer-ar80ka { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 17px; left: 147px; position: absolute; top: 25px; width: 17px; }\",\".framer-SXqwT .framer-15pe6vh, .framer-SXqwT .framer-1ba5wo5 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 10px; left: 151px; position: absolute; top: 29px; width: 10px; }\",\".framer-SXqwT .framer-ybadr6, .framer-SXqwT .framer-1az8mh8 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 15px; left: 177px; position: absolute; top: 26px; width: 15px; }\",\".framer-SXqwT .framer-w3wkmw, .framer-SXqwT .framer-rbyfz5 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 12px; left: 178px; position: absolute; top: 28px; width: 12px; }\",\".framer-SXqwT .framer-z03aoz, .framer-SXqwT .framer-u7zwta { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 15px; left: 204px; position: absolute; top: 26px; width: 15px; }\",\".framer-SXqwT .framer-1hud1ys, .framer-SXqwT .framer-zc2qzn { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 35px; left: 18px; position: absolute; top: 103px; width: 35px; }\",\".framer-SXqwT .framer-xmqcbz, .framer-SXqwT .framer-gf6ogz { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 26px; left: 23px; position: absolute; top: 108px; width: 26px; }\",\".framer-SXqwT .framer-1upkkzz, .framer-SXqwT .framer-10mnptn { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 16px; left: 28px; position: absolute; top: 112px; width: 16px; }\",\".framer-SXqwT .framer-1qadyja, .framer-SXqwT .framer-19s65p3 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 13px; left: 62px; position: absolute; top: 108px; width: 46px; }\",\".framer-SXqwT .framer-sq3ied, .framer-SXqwT .framer-le0ptt { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 10px; left: 113px; position: absolute; top: 110px; width: 10px; }\",\".framer-SXqwT .framer-1vhvku6, .framer-SXqwT .framer-x6yuaz { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 8px; left: 114px; position: absolute; top: 111px; width: 9px; }\",\".framer-SXqwT .framer-1nhv7co, .framer-SXqwT .framer-84ztg3 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 11px; left: 62px; position: absolute; top: 126px; width: 77px; }\",\".framer-SXqwT .framer-1p2gnup, .framer-SXqwT .framer-i512os { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 11px; left: 215px; position: absolute; top: 115px; width: 2px; }\",\".framer-SXqwT .framer-u868iv, .framer-SXqwT .framer-wvdnig { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 24px; position: absolute; top: 158px; width: 9px; }\",\".framer-SXqwT .framer-xkwivr, .framer-SXqwT .framer-113653h { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 52px; position: absolute; top: 158px; width: 9px; }\",\".framer-SXqwT .framer-we6ooe, .framer-SXqwT .framer-stdhyu { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 81px; position: absolute; top: 158px; width: 6px; }\",\".framer-SXqwT .framer-10aj6d9, .framer-SXqwT .framer-9mllx1 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 108px; position: absolute; top: 158px; width: 9px; }\",\".framer-SXqwT .framer-ljmv6g, .framer-SXqwT .framer-1bhfqlt { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 136px; position: absolute; top: 158px; width: 9px; }\",\".framer-SXqwT .framer-1c1cnhb, .framer-SXqwT .framer-4b650l { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 164px; position: absolute; top: 158px; width: 9px; }\",\".framer-SXqwT .framer-atfey4, .framer-SXqwT .framer-1kswhxp { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 13px; left: 199px; position: absolute; top: 160px; width: 12px; }\",\".framer-SXqwT .framer-13p34nl, .framer-SXqwT .framer-1rn3jlw { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 35px; left: 18px; position: absolute; top: 208px; width: 35px; }\",\".framer-SXqwT .framer-6i0et, .framer-SXqwT .framer-1quvwa1 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 23px; left: 24px; position: absolute; top: 214px; width: 23px; }\",\".framer-SXqwT .framer-1gjwq2v, .framer-SXqwT .framer-1tkvb7w { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 13px; left: 62px; position: absolute; top: 213px; width: 41px; }\",\".framer-SXqwT .framer-154hb6a, .framer-SXqwT .framer-151gqki { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 10px; left: 108px; position: absolute; top: 215px; width: 10px; }\",\".framer-SXqwT .framer-2dei7g, .framer-SXqwT .framer-1j1gz3g { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 8px; left: 108px; position: absolute; top: 216px; width: 9px; }\",\".framer-SXqwT .framer-8bncog, .framer-SXqwT .framer-1lpez3v { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 11px; left: 62px; position: absolute; top: 231px; width: 77px; }\",\".framer-SXqwT .framer-unhy68, .framer-SXqwT .framer-p0vdiu { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 11px; left: 215px; position: absolute; top: 220px; width: 2px; }\",\".framer-SXqwT .framer-1ltjer8, .framer-SXqwT .framer-ht2dw4 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 24px; position: absolute; top: 261px; width: 9px; }\",\".framer-SXqwT .framer-edv01w, .framer-SXqwT .framer-scsmhe { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 52px; position: absolute; top: 261px; width: 9px; }\",\".framer-SXqwT .framer-1hlys3w, .framer-SXqwT .framer-1hwacdr { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 81px; position: absolute; top: 261px; width: 6px; }\",\".framer-SXqwT .framer-1h32pu4, .framer-SXqwT .framer-1pfrioa { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 108px; position: absolute; top: 261px; width: 9px; }\",\".framer-SXqwT .framer-s0mua7, .framer-SXqwT .framer-dnjnns { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 136px; position: absolute; top: 261px; width: 9px; }\",\".framer-SXqwT .framer-1rpyjnp, .framer-SXqwT .framer-1kdz1d3 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 164px; position: absolute; top: 261px; width: 9px; }\",\".framer-SXqwT .framer-1o5s6ty, .framer-SXqwT .framer-18l2jzi { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 13px; left: 199px; position: absolute; top: 263px; width: 12px; }\",\".framer-SXqwT .framer-1wolfdn, .framer-SXqwT .framer-76eypj { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 35px; left: 18px; position: absolute; top: 310px; width: 35px; }\",\".framer-SXqwT .framer-yn9qf6, .framer-SXqwT .framer-1qkqrid { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 26px; left: 23px; position: absolute; top: 315px; width: 26px; }\",\".framer-SXqwT .framer-b1q8aw, .framer-SXqwT .framer-1jxcryq { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 11px; left: 28px; position: absolute; top: 323px; width: 15px; }\",\".framer-SXqwT .framer-8at7xr, .framer-SXqwT .framer-13wr9fi { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 13px; left: 62px; position: absolute; top: 316px; width: 34px; }\",\".framer-SXqwT .framer-1mecpge, .framer-SXqwT .framer-1u925ma { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 10px; left: 101px; position: absolute; top: 318px; width: 10px; }\",\".framer-SXqwT .framer-1i84jtv, .framer-SXqwT .framer-1y7hghz { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 8px; left: 102px; position: absolute; top: 319px; width: 9px; }\",\".framer-SXqwT .framer-44gkqw, .framer-SXqwT .framer-7bbe0l { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 11px; left: 62px; position: absolute; top: 338px; width: 95px; }\",\".framer-SXqwT .framer-1f0akab, .framer-SXqwT .framer-m71tfl { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 11px; left: 215px; position: absolute; top: 323px; width: 2px; }\",\".framer-SXqwT .framer-11n8lj2, .framer-SXqwT .framer-59uvlr { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 24px; position: absolute; top: 366px; width: 9px; }\",\".framer-SXqwT .framer-snllmk, .framer-SXqwT .framer-1h2vbxv { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 52px; position: absolute; top: 366px; width: 9px; }\",\".framer-SXqwT .framer-1a28gbg, .framer-SXqwT .framer-17g5r7p { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 81px; position: absolute; top: 366px; width: 6px; }\",\".framer-SXqwT .framer-bb8h7, .framer-SXqwT .framer-1oyj4dm { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 108px; position: absolute; top: 366px; width: 9px; }\",\".framer-SXqwT .framer-1n746uv, .framer-SXqwT .framer-b7282n { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 136px; position: absolute; top: 366px; width: 9px; }\",\".framer-SXqwT .framer-1y74ein, .framer-SXqwT .framer-xmrza3 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 164px; position: absolute; top: 366px; width: 9px; }\",\".framer-SXqwT .framer-1x4vqqr, .framer-SXqwT .framer-v9hgau { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 13px; left: 199px; position: absolute; top: 368px; width: 12px; }\",\".framer-SXqwT .framer-1x5r7qz, .framer-SXqwT .framer-1gi0zsg { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 35px; left: 18px; position: absolute; top: 416px; width: 35px; }\",\".framer-SXqwT .framer-1qocibf, .framer-SXqwT .framer-11f7o6z { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 25px; left: 23px; position: absolute; top: 421px; width: 25px; }\",\".framer-SXqwT .framer-x77qlc, .framer-SXqwT .framer-1ykezbk { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 13px; left: 62px; position: absolute; top: 421px; width: 29px; }\",\".framer-SXqwT .framer-1t3gnv2, .framer-SXqwT .framer-1c6cuee { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 10px; left: 96px; position: absolute; top: 423px; width: 10px; }\",\".framer-SXqwT .framer-5k3wee, .framer-SXqwT .framer-j42ghy { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 8px; left: 96px; position: absolute; top: 424px; width: 9px; }\",\".framer-SXqwT .framer-1yfhwa8, .framer-SXqwT .framer-1we2r78 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 11px; left: 62px; position: absolute; top: 439px; width: 76px; }\",\".framer-SXqwT .framer-1n2fzh5, .framer-SXqwT .framer-10wlvdd { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 11px; left: 215px; position: absolute; top: 428px; width: 2px; }\",\".framer-SXqwT .framer-vdk4fk, .framer-SXqwT .framer-1krc9im { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 24px; position: absolute; top: 471px; width: 9px; }\",\".framer-SXqwT .framer-1bvzwxl, .framer-SXqwT .framer-11m84e5 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 52px; position: absolute; top: 471px; width: 9px; }\",\".framer-SXqwT .framer-1b8yvin, .framer-SXqwT .framer-o19bye { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 81px; position: absolute; top: 471px; width: 6px; }\",\".framer-SXqwT .framer-90iozf, .framer-SXqwT .framer-alrm69 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 108px; position: absolute; top: 471px; width: 9px; }\",\".framer-SXqwT .framer-14hdv6l, .framer-SXqwT .framer-gxhpc1 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 136px; position: absolute; top: 471px; width: 9px; }\",\".framer-SXqwT .framer-ld568g, .framer-SXqwT .framer-1hoxb22 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 164px; position: absolute; top: 471px; width: 9px; }\",\".framer-SXqwT .framer-1hm16uu, .framer-SXqwT .framer-1llgth4 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 13px; left: 199px; position: absolute; top: 473px; width: 12px; }\",\".framer-SXqwT .framer-1scro8q, .framer-SXqwT .framer-zpwnjd { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 35px; left: 18px; position: absolute; top: 515px; width: 35px; }\",\".framer-SXqwT .framer-n2c6vj, .framer-SXqwT .framer-erwrj { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 26px; left: 23px; position: absolute; top: 519px; width: 26px; }\",\".framer-SXqwT .framer-tr02u1, .framer-SXqwT .framer-11s6u4b { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 11px; left: 28px; position: absolute; top: 527px; width: 15px; }\",\".framer-SXqwT .framer-h3sa7a, .framer-SXqwT .framer-b17ns8 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 13px; left: 62px; position: absolute; top: 520px; width: 34px; }\",\".framer-SXqwT .framer-j8ifnw, .framer-SXqwT .framer-inhryv { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 10px; left: 101px; position: absolute; top: 522px; width: 10px; }\",\".framer-SXqwT .framer-my9xqi, .framer-SXqwT .framer-1dscc64 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 8px; left: 102px; position: absolute; top: 523px; width: 9px; }\",\".framer-SXqwT .framer-1kkz6pt, .framer-SXqwT .framer-m7faiz { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 11px; left: 62px; position: absolute; top: 533px; width: 95px; }\",\".framer-SXqwT .framer-1lr028l, .framer-SXqwT .framer-1nue3i5 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 11px; left: 215px; position: absolute; top: 527px; width: 2px; }\",\".framer-SXqwT .framer-1dvr1qg, .framer-SXqwT .framer-1lh3078 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 24px; position: absolute; top: 570px; width: 9px; }\",\".framer-SXqwT .framer-tvwhlt, .framer-SXqwT .framer-14qdffe { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 52px; position: absolute; top: 570px; width: 9px; }\",\".framer-SXqwT .framer-ru7zdv, .framer-SXqwT .framer-1th3rzk { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 81px; position: absolute; top: 570px; width: 6px; }\",\".framer-SXqwT .framer-1d5oo9i, .framer-SXqwT .framer-1wkfbsr { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 108px; position: absolute; top: 570px; width: 9px; }\",\".framer-SXqwT .framer-13cufoe, .framer-SXqwT .framer-1zxws5 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 136px; position: absolute; top: 570px; width: 9px; }\",\".framer-SXqwT .framer-17qpyot, .framer-SXqwT .framer-1jib3d7 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 18px; left: 164px; position: absolute; top: 570px; width: 9px; }\",\".framer-SXqwT .framer-1imk6c3, .framer-SXqwT .framer-140s1cj { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 13px; left: 199px; position: absolute; top: 572px; width: 12px; }\",\".framer-SXqwT .framer-1t56oj5, .framer-SXqwT .framer-10aqqim { --border-bottom-width: 3px; --border-color: rgba(250, 197, 21, 0.5); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; background-color: #242424; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: 515px; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 256px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-SXqwT .framer-13bvyux, .framer-SXqwT .framer-1l1fn2k { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 11px; left: 28px; position: absolute; top: 85px; width: 10px; }\",\".framer-SXqwT .framer-sefjr6, .framer-SXqwT .framer-yzryi1 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 2px; left: 38px; position: absolute; top: 95px; width: 1px; }\",\".framer-SXqwT .framer-vwytbb, .framer-SXqwT .framer-m66lac { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 16px; left: calc(53.51562500000002% - 183.76800537109375px / 2); position: absolute; top: 83px; width: 184px; }\",\".framer-SXqwT .framer-egdxbf, .framer-SXqwT .framer-1lglj9t { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 103px; left: calc(51.95312500000002% - 210px / 2); position: absolute; top: 112px; width: 210px; }\",\".framer-SXqwT .framer-emav2q, .framer-SXqwT .framer-1t78y8s { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 20px; left: 18px; position: absolute; top: calc(51.262135922330124% - 19.760000228881836px / 2); width: 72px; }\",\".framer-SXqwT .framer-158ix8j, .framer-SXqwT .framer-15ubtyg { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 198px; flex: none; height: 24px; left: 27px; position: absolute; width: 24px; }\",\".framer-SXqwT .framer-r986le, .framer-SXqwT .framer-dc0udv { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 172px; flex: none; height: 16px; left: 18px; position: absolute; width: 42px; }\",\".framer-SXqwT .framer-7bm7yo, .framer-SXqwT .framer-clg5k4 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 199px; flex: none; height: 21px; left: 85px; position: absolute; width: 21px; }\",\".framer-SXqwT .framer-f6kg4g, .framer-SXqwT .framer-1bnenuq { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 172px; flex: none; height: 16px; left: 81px; position: absolute; width: 28px; }\",\".framer-SXqwT .framer-uz853n, .framer-SXqwT .framer-1uspoh5 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 199px; flex: none; height: 21px; left: 140px; position: absolute; width: 21px; }\",\".framer-SXqwT .framer-izcud3, .framer-SXqwT .framer-jvi7up { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 172px; flex: none; height: 16px; left: 134px; position: absolute; width: 32px; }\",\".framer-SXqwT .framer-vs4jjm, .framer-SXqwT .framer-hsc574 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 199px; flex: none; height: 21px; left: 195px; position: absolute; width: 21px; }\",\".framer-SXqwT .framer-kfrpoh, .framer-SXqwT .framer-4z4mzc { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 172px; flex: none; height: 16px; left: 193px; position: absolute; width: 26px; }\",\".framer-SXqwT .framer-7x5eq9, .framer-SXqwT .framer-1hnky8i { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 199px; flex: none; height: 21px; position: absolute; right: -21px; width: 21px; }\",\".framer-SXqwT .framer-7o1xos, .framer-SXqwT .framer-wfhlvb { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 172px; flex: none; height: 16px; position: absolute; right: -35px; width: 49px; }\",\".framer-SXqwT .framer-17h3ha1, .framer-SXqwT .framer-199b751 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 131px; flex: none; height: 20px; left: 18px; position: absolute; width: 110px; }\",\".framer-SXqwT .framer-1ovh202, .framer-SXqwT .framer-1s4j80f { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 134px; flex: none; height: 14px; left: 209px; position: absolute; width: 30px; }\",\".framer-SXqwT .framer-1l22snd, .framer-SXqwT .framer-1ov5rit { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 20px; flex: none; height: 100px; left: 18px; position: absolute; width: 103px; }\",\".framer-SXqwT .framer-pmpcy, .framer-SXqwT .framer-1h81sk8 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 28px; flex: none; height: 8px; left: 104px; position: absolute; width: 11px; }\",\".framer-SXqwT .framer-1sj9i4b, .framer-SXqwT .framer-1jldeii { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 25px; flex: none; height: 1px; left: 112px; position: absolute; width: 1px; }\",\".framer-SXqwT .framer-fqmkzm, .framer-SXqwT .framer-pemi4b { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 25px; flex: none; height: 1px; left: 107px; position: absolute; width: 1px; }\",\".framer-SXqwT .framer-ei882k, .framer-SXqwT .framer-pntw8i { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 65px; flex: none; height: 46px; left: 45px; position: absolute; width: 46px; }\",\".framer-SXqwT .framer-sd6zkx, .framer-SXqwT .framer-1qwmrrh { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 30px; flex: none; height: 16px; left: 26px; position: absolute; width: 19px; }\",\".framer-SXqwT .framer-98dwub, .framer-SXqwT .framer-2yvyrm { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 32px; flex: none; height: 12px; left: 47px; position: absolute; width: 26px; }\",\".framer-SXqwT .framer-182j8im, .framer-SXqwT .framer-gx1s2r { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 101px; flex: none; height: 12px; left: 24px; position: absolute; width: 21px; }\",\".framer-SXqwT .framer-7vv9y, .framer-SXqwT .framer-1nc0dkc { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 20px; flex: none; height: 100px; left: 135px; position: absolute; width: 103px; }\",\".framer-SXqwT .framer-xmemrf, .framer-SXqwT .framer-1k3mt8k { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 28px; flex: none; height: 8px; left: 222px; position: absolute; width: 11px; }\",\".framer-SXqwT .framer-reckgb, .framer-SXqwT .framer-n0k1vi { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 25px; flex: none; height: 1px; left: 229px; position: absolute; width: 1px; }\",\".framer-SXqwT .framer-1lcaa9c, .framer-SXqwT .framer-b0m885 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 25px; flex: none; height: 1px; left: 224px; position: absolute; width: 1px; }\",\".framer-SXqwT .framer-y7rbqi, .framer-SXqwT .framer-14wousx { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 30px; flex: none; height: 16px; left: 143px; position: absolute; width: 17px; }\",\".framer-SXqwT .framer-ljhqjp, .framer-SXqwT .framer-zki2rp { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 32px; flex: none; height: 12px; left: 163px; position: absolute; width: 38px; }\",\".framer-SXqwT .framer-12waj95, .framer-SXqwT .framer-1nxe6s9 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 61px; flex: none; height: 49px; left: 164px; position: absolute; width: 49px; }\",\".framer-SXqwT .framer-zz7w1g, .framer-SXqwT .framer-14xutp9 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 101px; flex: none; height: 12px; left: 142px; position: absolute; width: 20px; }\",\".framer-SXqwT .framer-159lced, .framer-SXqwT .framer-1k77x5i { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -100px; flex: none; height: 100px; left: 18px; position: absolute; width: 103px; }\",\".framer-SXqwT .framer-19wgs7k, .framer-SXqwT .framer-dfnzf9 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -92px; flex: none; height: 8px; left: 104px; position: absolute; width: 11px; }\",\".framer-SXqwT .framer-1gn764p, .framer-SXqwT .framer-1rqlm7n { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -95px; flex: none; height: 1px; left: 111px; position: absolute; width: 1px; }\",\".framer-SXqwT .framer-snw2yu, .framer-SXqwT .framer-1cllw1g { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -95px; flex: none; height: 1px; left: 107px; position: absolute; width: 1px; }\",\".framer-SXqwT .framer-17fzdab, .framer-SXqwT .framer-199p25z { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -78px; flex: none; height: 16px; left: 26px; position: absolute; width: 43px; }\",\".framer-SXqwT .framer-1a864vr, .framer-SXqwT .framer-1n35g2t { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -94px; flex: none; height: 16px; left: 26px; position: absolute; width: 14px; }\",\".framer-SXqwT .framer-1b2qfe2, .framer-SXqwT .framer-7qrj4j { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -92px; flex: none; height: 12px; left: 42px; position: absolute; width: 26px; }\",\".framer-SXqwT .framer-141ntgx, .framer-SXqwT .framer-hmki9u { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -62px; flex: none; height: 49px; left: 49px; position: absolute; width: 49px; }\",\".framer-SXqwT .framer-19ke9y1, .framer-SXqwT .framer-2n9sw5 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -19px; flex: none; height: 12px; left: 24px; position: absolute; width: 31px; }\",\".framer-SXqwT .framer-1v8pm1a, .framer-SXqwT .framer-1u98fdx { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -100px; flex: none; height: 100px; left: 135px; position: absolute; width: 103px; }\",\".framer-SXqwT .framer-1hf67xg, .framer-SXqwT .framer-i5ywvj { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -92px; flex: none; height: 8px; left: 222px; position: absolute; width: 11px; }\",\".framer-SXqwT .framer-g47nq8, .framer-SXqwT .framer-1cf93s5 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -95px; flex: none; height: 1px; left: 229px; position: absolute; width: 1px; }\",\".framer-SXqwT .framer-mdi2ki, .framer-SXqwT .framer-174m0u7 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -95px; flex: none; height: 1px; left: 224px; position: absolute; width: 1px; }\",\".framer-SXqwT .framer-z5yliu, .framer-SXqwT .framer-1y7syz6 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -76px; flex: none; height: 16px; left: 142px; position: absolute; width: 31px; }\",\".framer-SXqwT .framer-164ykss, .framer-SXqwT .framer-odffjz { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -92px; flex: none; height: 16px; left: 142px; position: absolute; width: 17px; }\",\".framer-SXqwT .framer-euoh8c, .framer-SXqwT .framer-1vhji1y { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -91px; flex: none; height: 12px; left: 162px; position: absolute; width: 26px; }\",\".framer-SXqwT .framer-ja23dz, .framer-SXqwT .framer-1i8yxcu { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -64px; flex: none; height: 46px; left: 168px; position: absolute; width: 46px; }\",\".framer-SXqwT .framer-171q526, .framer-SXqwT .framer-bpg1y3 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -19px; flex: none; height: 12px; left: 142px; position: absolute; width: 37px; }\",\".framer-SXqwT .framer-1l50dj5, .framer-SXqwT .framer-13jfcqu { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -54px; flex: none; height: 14px; left: 91px; position: absolute; width: 20px; }\",\".framer-SXqwT .framer-198q41, .framer-SXqwT .framer-fm9xx9 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -34px; flex: none; height: 10px; left: 93px; position: absolute; width: 13px; }\",\".framer-SXqwT .framer-1jxm51m, .framer-SXqwT .framer-ynpjqt { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -37px; flex: none; height: 2px; left: 102px; position: absolute; width: 2px; }\",\".framer-SXqwT .framer-73s39w, .framer-SXqwT .framer-1jlyfqj { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -37px; flex: none; height: 2px; left: 97px; position: absolute; width: 2px; }\",\".framer-SXqwT .framer-1dwilkx, .framer-SXqwT .framer-koqpeq { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -54px; flex: none; height: 14px; left: 137px; position: absolute; width: 37px; }\",\".framer-SXqwT .framer-1knxrtn, .framer-SXqwT .framer-67r9tu { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -36px; flex: none; height: 11px; left: 149px; position: absolute; width: 11px; }\",\".framer-SXqwT .framer-1ooinx9, .framer-SXqwT .framer-1x848b8 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -32px; flex: none; height: 9px; left: 151px; position: absolute; width: 10px; }\",\".framer-SXqwT .framer-geh3nk, .framer-SXqwT .framer-1bqdl40 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -54px; flex: none; height: 14px; left: 196px; position: absolute; width: 28px; }\",\".framer-SXqwT .framer-1j2agn8, .framer-SXqwT .framer-24qj4u { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -30px; flex: none; height: 6px; left: 207px; position: absolute; width: 6px; }\",\".framer-SXqwT .framer-fgzv88, .framer-SXqwT .framer-f3julj { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -37px; flex: none; height: 6px; left: 206px; position: absolute; width: 9px; }\",\".framer-SXqwT .framer-1wxfqeo, .framer-SXqwT .framer-1qrx4il { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -37px; flex: none; height: 13px; left: 38px; position: absolute; width: 13px; }\",\".framer-SXqwT .framer-e9yq45, .framer-SXqwT .framer-18mkh3m { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -35px; flex: none; height: 3px; left: 44px; position: absolute; width: 1px; }\",\".framer-SXqwT .framer-1eyi5s5, .framer-SXqwT .framer-abgw9l { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -54px; flex: none; height: 14px; left: 31px; position: absolute; width: 27px; }\",\".framer-SXqwT .framer-1n8ssgm, .framer-SXqwT .framer-1q9sowy { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: -15px; flex: none; height: 5px; left: 33px; position: absolute; width: 24px; }\",\".framer-SXqwT .framer-8ef2sr, .framer-SXqwT .framer-8hycpj { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 14px; left: 18px; position: absolute; top: 27px; width: 61px; }\",\".framer-SXqwT .framer-869rbf, .framer-SXqwT .framer-1txcqax { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 3px; left: 83px; position: absolute; top: 37px; width: 7px; }\",\".framer-SXqwT .framer-1yylsyn, .framer-SXqwT .framer-1euwgxa { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 16px; left: 18px; position: absolute; top: 45px; width: 86px; }\",\".framer-SXqwT .framer-7497yh { bottom: -159px; flex: none; height: 538px; left: calc(50.00000000000002% - 433px / 2); overflow: visible; position: absolute; width: 433px; z-index: 1; }\",\".framer-SXqwT .framer-950lu1 { bottom: -128px; flex: none; height: 336px; left: calc(50.00000000000002% - 245px / 2); overflow: visible; position: absolute; width: 245px; z-index: 1; }\",\".framer-SXqwT .framer-1m88a4k { --border-bottom-width: 1.6082037687301636px; --border-color: rgba(250, 197, 21, 0.5); --border-left-width: 1.6082037687301636px; --border-right-width: 1.6082037687301636px; --border-style: solid; --border-top-width: 1.6082037687301636px; background-color: #242424; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; bottom: 0px; flex: none; height: 266px; left: 0px; overflow: hidden; position: absolute; width: 118px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-SXqwT .framer-1qubq7d { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 12px; left: 10px; position: absolute; top: 32px; width: 22px; }\",\".framer-SXqwT .framer-1aeigda { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 10px; position: absolute; top: 13px; width: 31px; }\",\".framer-SXqwT .framer-858zbo { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 9px; left: 79px; position: absolute; top: 13px; width: 9px; }\",\".framer-SXqwT .framer-1x4zg9x { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 5px; left: 81px; position: absolute; top: 15px; width: 5px; }\",\".framer-SXqwT .framer-11f8ufb { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 8px; left: 95px; position: absolute; top: 14px; width: 8px; }\",\".framer-SXqwT .framer-1y7nl2h { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 95px; position: absolute; top: 15px; width: 7px; }\",\".framer-SXqwT .framer-1fucgdk { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 8px; left: 109px; position: absolute; top: 14px; width: 8px; }\",\".framer-SXqwT .framer-4rzni7 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 19px; left: 10px; position: absolute; top: 55px; width: 19px; }\",\".framer-SXqwT .framer-k16mwh { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 14px; left: 12px; position: absolute; top: 58px; width: 14px; }\",\".framer-SXqwT .framer-1f62wwj { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 9px; left: 15px; position: absolute; top: 60px; width: 9px; }\",\".framer-SXqwT .framer-d3jth1 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 33px; position: absolute; top: 58px; width: 25px; }\",\".framer-SXqwT .framer-fpawjb { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 5px; left: 61px; position: absolute; top: 59px; width: 5px; }\",\".framer-SXqwT .framer-19u2i9u { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 4px; left: 61px; position: absolute; top: 59px; width: 5px; }\",\".framer-SXqwT .framer-oe315t { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 6px; left: 33px; position: absolute; top: 67px; width: 41px; }\",\".framer-SXqwT .framer-zu199b { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 6px; left: 116px; position: absolute; top: 62px; width: 1px; }\",\".framer-SXqwT .framer-1t9y98g { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 13px; position: absolute; top: 85px; width: 5px; }\",\".framer-SXqwT .framer-138ypl0 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 28px; position: absolute; top: 85px; width: 5px; }\",\".framer-SXqwT .framer-1mf6ow5 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 44px; position: absolute; top: 85px; width: 3px; }\",\".framer-SXqwT .framer-1bfe6z3 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 58px; position: absolute; top: 85px; width: 5px; }\",\".framer-SXqwT .framer-19bdtgd { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 73px; position: absolute; top: 85px; width: 5px; }\",\".framer-SXqwT .framer-pc2di0 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 88px; position: absolute; top: 85px; width: 5px; }\",\".framer-SXqwT .framer-dy4bfj { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 107px; position: absolute; top: 86px; width: 6px; }\",\".framer-SXqwT .framer-1wpcf4v { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 19px; left: 10px; position: absolute; top: 111px; width: 19px; }\",\".framer-SXqwT .framer-xp3ulp { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 12px; left: 13px; position: absolute; top: 115px; width: 12px; }\",\".framer-SXqwT .framer-16rxd5d { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 33px; position: absolute; top: 114px; width: 22px; }\",\".framer-SXqwT .framer-1tgn3k4 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 5px; left: 58px; position: absolute; top: 115px; width: 5px; }\",\".framer-SXqwT .framer-zz75mx { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 4px; left: 58px; position: absolute; top: 116px; width: 5px; }\",\".framer-SXqwT .framer-ji2xo1 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 6px; left: 33px; position: absolute; top: 124px; width: 41px; }\",\".framer-SXqwT .framer-nh057n { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 6px; left: 116px; position: absolute; top: 118px; width: 1px; }\",\".framer-SXqwT .framer-oxb3b4 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 13px; position: absolute; top: 140px; width: 5px; }\",\".framer-SXqwT .framer-13nf7uw { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 28px; position: absolute; top: 140px; width: 5px; }\",\".framer-SXqwT .framer-7qm0ne { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 44px; position: absolute; top: 140px; width: 3px; }\",\".framer-SXqwT .framer-85ivw5 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 58px; position: absolute; top: 140px; width: 5px; }\",\".framer-SXqwT .framer-1gixv5a { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 73px; position: absolute; top: 140px; width: 5px; }\",\".framer-SXqwT .framer-1xj2hnp { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 88px; position: absolute; top: 140px; width: 5px; }\",\".framer-SXqwT .framer-zgaxg2 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 107px; position: absolute; top: 141px; width: 6px; }\",\".framer-SXqwT .framer-14gli47 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 19px; left: 10px; position: absolute; top: 166px; width: 19px; }\",\".framer-SXqwT .framer-1qyfzjj { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 14px; left: 12px; position: absolute; top: 169px; width: 14px; }\",\".framer-SXqwT .framer-1qon2p6 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 6px; left: 15px; position: absolute; top: 173px; width: 8px; }\",\".framer-SXqwT .framer-3yn6hp { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 33px; position: absolute; top: 169px; width: 18px; }\",\".framer-SXqwT .framer-1uqd1dz { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 5px; left: 54px; position: absolute; top: 170px; width: 5px; }\",\".framer-SXqwT .framer-12wrrnz { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 4px; left: 55px; position: absolute; top: 171px; width: 5px; }\",\".framer-SXqwT .framer-1bvs3f6 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 6px; left: 33px; position: absolute; top: 181px; width: 51px; }\",\".framer-SXqwT .framer-jasn3j { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 6px; left: 116px; position: absolute; top: 173px; width: 1px; }\",\".framer-SXqwT .framer-5fkwp3 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 13px; position: absolute; top: 196px; width: 5px; }\",\".framer-SXqwT .framer-1okl4q5 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 28px; position: absolute; top: 196px; width: 5px; }\",\".framer-SXqwT .framer-166pcxq { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 44px; position: absolute; top: 196px; width: 3px; }\",\".framer-SXqwT .framer-v784co { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 58px; position: absolute; top: 196px; width: 5px; }\",\".framer-SXqwT .framer-1sjm2o1 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 73px; position: absolute; top: 196px; width: 5px; }\",\".framer-SXqwT .framer-1r7grqu { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 88px; position: absolute; top: 196px; width: 5px; }\",\".framer-SXqwT .framer-1bx3zq1 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 107px; position: absolute; top: 197px; width: 6px; }\",\".framer-SXqwT .framer-1ac52ot { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 19px; left: 10px; position: absolute; top: 223px; width: 19px; }\",\".framer-SXqwT .framer-13exg8u { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 13px; left: 12px; position: absolute; top: 226px; width: 13px; }\",\".framer-SXqwT .framer-xkehcj { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 33px; position: absolute; top: 226px; width: 15px; }\",\".framer-SXqwT .framer-v6d2iq { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 5px; left: 51px; position: absolute; top: 227px; width: 5px; }\",\".framer-SXqwT .framer-32em9v { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 4px; left: 52px; position: absolute; top: 227px; width: 5px; }\",\".framer-SXqwT .framer-1gom5j1 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 6px; left: 33px; position: absolute; top: 235px; width: 41px; }\",\".framer-SXqwT .framer-1kw69v3 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 6px; left: 116px; position: absolute; top: 229px; width: 1px; }\",\".framer-SXqwT .framer-17oqt6k { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 13px; position: absolute; top: 252px; width: 5px; }\",\".framer-SXqwT .framer-1j8hqd9 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 28px; position: absolute; top: 252px; width: 5px; }\",\".framer-SXqwT .framer-1e16q5u { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 44px; position: absolute; top: 252px; width: 3px; }\",\".framer-SXqwT .framer-301nwu { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 58px; position: absolute; top: 252px; width: 5px; }\",\".framer-SXqwT .framer-tuvy2d { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 73px; position: absolute; top: 252px; width: 5px; }\",\".framer-SXqwT .framer-zq9kc1 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 88px; position: absolute; top: 252px; width: 5px; }\",\".framer-SXqwT .framer-oxezmh { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 107px; position: absolute; top: 254px; width: 6px; }\",\".framer-SXqwT .framer-1yd0rj { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 19px; left: 10px; position: absolute; top: 276px; width: 19px; }\",\".framer-SXqwT .framer-aal942 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 14px; left: 12px; position: absolute; top: 278px; width: 14px; }\",\".framer-SXqwT .framer-1iyzyfo { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 6px; left: 15px; position: absolute; top: 282px; width: 8px; }\",\".framer-SXqwT .framer-18ic917 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 33px; position: absolute; top: 279px; width: 18px; }\",\".framer-SXqwT .framer-bu4yuw { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 5px; left: 54px; position: absolute; top: 280px; width: 5px; }\",\".framer-SXqwT .framer-15zryxc { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 4px; left: 55px; position: absolute; top: 280px; width: 5px; }\",\".framer-SXqwT .framer-3qe99p { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 6px; left: 33px; position: absolute; top: 286px; width: 51px; }\",\".framer-SXqwT .framer-9olqhy { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 6px; left: 116px; position: absolute; top: 282px; width: 1px; }\",\".framer-SXqwT .framer-1ftcze8 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 13px; position: absolute; top: 305px; width: 5px; }\",\".framer-SXqwT .framer-x67zk0 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 28px; position: absolute; top: 305px; width: 5px; }\",\".framer-SXqwT .framer-12xjkcp { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 44px; position: absolute; top: 305px; width: 3px; }\",\".framer-SXqwT .framer-1tf6wpu { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 58px; position: absolute; top: 305px; width: 5px; }\",\".framer-SXqwT .framer-kuh7z5 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 73px; position: absolute; top: 305px; width: 5px; }\",\".framer-SXqwT .framer-o4zg8k { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 10px; left: 88px; position: absolute; top: 305px; width: 5px; }\",\".framer-SXqwT .framer-1ur1dt5 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 107px; position: absolute; top: 307px; width: 6px; }\",\".framer-SXqwT .framer-f4xx9y { --border-bottom-width: 1.6082037687301636px; --border-color: rgba(250, 197, 21, 0.5); --border-left-width: 1.6082037687301636px; --border-right-width: 1.6082037687301636px; --border-style: solid; --border-top-width: 1.6082037687301636px; background-color: #242424; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 312px; left: 108px; overflow: hidden; position: absolute; top: 0px; width: 137px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-SXqwT .framer-vn6gdm { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 6px; left: 15px; position: absolute; top: 46px; width: 6px; }\",\".framer-SXqwT .framer-6znp3e { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 1px; left: 20px; position: absolute; top: 51px; width: 1px; }\",\".framer-SXqwT .framer-30u5mv { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 9px; left: 24px; position: absolute; top: 44px; width: 99px; }\",\".framer-SXqwT .framer-1sfkmel { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 55px; left: 15px; position: absolute; top: 60px; width: 113px; }\",\".framer-SXqwT .framer-1i2avc3 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 11px; left: 9px; position: absolute; top: 137px; width: 38px; }\",\".framer-SXqwT .framer-ztg0d5 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 13px; left: 14px; position: absolute; top: 157px; width: 13px; }\",\".framer-SXqwT .framer-1f1rvob { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 9px; left: 9px; position: absolute; top: 175px; width: 23px; }\",\".framer-SXqwT .framer-reg39h { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 11px; left: 45px; position: absolute; top: 158px; width: 11px; }\",\".framer-SXqwT .framer-hkdbd8 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 9px; left: 43px; position: absolute; top: 175px; width: 15px; }\",\".framer-SXqwT .framer-38qh3l { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 11px; left: 75px; position: absolute; top: 158px; width: 11px; }\",\".framer-SXqwT .framer-14xr4pk { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 9px; left: 72px; position: absolute; top: 175px; width: 17px; }\",\".framer-SXqwT .framer-133pzqg { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 11px; left: 105px; position: absolute; top: 158px; width: 11px; }\",\".framer-SXqwT .framer-1jzhzeh { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 9px; left: 103px; position: absolute; top: 175px; width: 14px; }\",\".framer-SXqwT .framer-1m80l3i { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 11px; left: 137px; position: absolute; top: 158px; width: 11px; }\",\".framer-SXqwT .framer-14brktr { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 9px; left: 129px; position: absolute; top: 175px; width: 26px; }\",\".framer-SXqwT .framer-tm27ke { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 11px; left: 9px; position: absolute; top: 195px; width: 59px; }\",\".framer-SXqwT .framer-1ppu4pf { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 112px; position: absolute; top: 197px; width: 16px; }\",\".framer-SXqwT .framer-1huxpxk { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 54px; left: 9px; position: absolute; top: 212px; width: 55px; }\",\".framer-SXqwT .framer-11s5zkh { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 4px; left: 56px; position: absolute; top: 257px; width: 6px; }\",\".framer-SXqwT .framer-h66jv6 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 1px; left: 60px; position: absolute; top: 262px; width: 1px; }\",\".framer-SXqwT .framer-1kk0auu { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 1px; left: 57px; position: absolute; top: 262px; width: 1px; }\",\".framer-SXqwT .framer-1h4kdij { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 25px; left: 24px; position: absolute; top: 217px; width: 25px; }\",\".framer-SXqwT .framer-1czfe7f { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 9px; left: 14px; position: absolute; top: 251px; width: 10px; }\",\".framer-SXqwT .framer-1j78pe0 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 25px; position: absolute; top: 252px; width: 14px; }\",\".framer-SXqwT .framer-pnw141 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 13px; position: absolute; top: 215px; width: 11px; }\",\".framer-SXqwT .framer-f0uit { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 54px; left: 73px; position: absolute; top: 212px; width: 55px; }\",\".framer-SXqwT .framer-agu18k { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 4px; left: 119px; position: absolute; top: 257px; width: 6px; }\",\".framer-SXqwT .framer-l8he6l { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 1px; left: 123px; position: absolute; top: 262px; width: 1px; }\",\".framer-SXqwT .framer-zd4doc { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 1px; left: 120px; position: absolute; top: 262px; width: 1px; }\",\".framer-SXqwT .framer-18v1eir { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 9px; left: 77px; position: absolute; top: 251px; width: 9px; }\",\".framer-SXqwT .framer-fgeeql { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 87px; position: absolute; top: 252px; width: 21px; }\",\".framer-SXqwT .framer-occzyc { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 26px; left: 88px; position: absolute; top: 217px; width: 27px; }\",\".framer-SXqwT .framer-ddnoeb { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 76px; position: absolute; top: 215px; width: 11px; }\",\".framer-SXqwT .framer-1ao1yub { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 54px; left: 9px; position: absolute; top: 276px; width: 55px; }\",\".framer-SXqwT .framer-e2cmrw { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 4px; left: 56px; position: absolute; top: 321px; width: 6px; }\",\".framer-SXqwT .framer-1vuviec { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 1px; left: 60px; position: absolute; top: 326px; width: 1px; }\",\".framer-SXqwT .framer-1fukma9 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 1px; left: 57px; position: absolute; top: 326px; width: 1px; }\",\".framer-SXqwT .framer-fp40w0 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 9px; left: 14px; position: absolute; top: 309px; width: 23px; }\",\".framer-SXqwT .framer-mo24o4 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 9px; left: 14px; position: absolute; top: 318px; width: 7px; }\",\".framer-SXqwT .framer-k6eri6 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 22px; position: absolute; top: 319px; width: 14px; }\",\".framer-SXqwT .framer-hqpk3f { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 26px; left: 26px; position: absolute; top: 283px; width: 26px; }\",\".framer-SXqwT .framer-17bcq43 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 13px; position: absolute; top: 279px; width: 17px; }\",\".framer-SXqwT .framer-1vdz2wv { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 54px; left: 73px; position: absolute; top: 276px; width: 55px; }\",\".framer-SXqwT .framer-1d2amnj { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 4px; left: 119px; position: absolute; top: 321px; width: 6px; }\",\".framer-SXqwT .framer-1w4atpr { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 1px; left: 123px; position: absolute; top: 326px; width: 1px; }\",\".framer-SXqwT .framer-d80oas { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 1px; left: 120px; position: absolute; top: 326px; width: 1px; }\",\".framer-SXqwT .framer-1xzkbtd { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 9px; left: 76px; position: absolute; top: 308px; width: 17px; }\",\".framer-SXqwT .framer-1b8c6nd { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 9px; left: 76px; position: absolute; top: 317px; width: 9px; }\",\".framer-SXqwT .framer-1t3phr7 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 87px; position: absolute; top: 318px; width: 14px; }\",\".framer-SXqwT .framer-1jtltry { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 25px; left: 90px; position: absolute; top: 286px; width: 25px; }\",\".framer-SXqwT .framer-1arns82 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 76px; position: absolute; top: 279px; width: 20px; }\",\".framer-SXqwT .framer-vxyso9 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 49px; position: absolute; top: 298px; width: 11px; }\",\".framer-SXqwT .framer-x8fx5 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 5px; left: 50px; position: absolute; top: 289px; width: 7px; }\",\".framer-SXqwT .framer-1fwiyek { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 1px; left: 55px; position: absolute; top: 295px; width: 1px; }\",\".framer-SXqwT .framer-19nb3az { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 1px; left: 52px; position: absolute; top: 295px; width: 1px; }\",\".framer-SXqwT .framer-en6l52 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 73px; position: absolute; top: 298px; width: 20px; }\",\".framer-SXqwT .framer-15zb2f9 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 6px; left: 80px; position: absolute; top: 290px; width: 6px; }\",\".framer-SXqwT .framer-akgwqq { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 5px; left: 81px; position: absolute; top: 288px; width: 6px; }\",\".framer-SXqwT .framer-yunu7u { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 105px; position: absolute; top: 298px; width: 15px; }\",\".framer-SXqwT .framer-igbtr2 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 3px; left: 111px; position: absolute; top: 289px; width: 3px; }\",\".framer-SXqwT .framer-je0o6w { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 3px; left: 110px; position: absolute; top: 293px; width: 5px; }\",\".framer-SXqwT .framer-2ij6un { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 20px; position: absolute; top: 289px; width: 7px; }\",\".framer-SXqwT .framer-1dz1oln { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 2px; left: 24px; position: absolute; top: 293px; width: 1px; }\",\".framer-SXqwT .framer-1cs4967 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 17px; position: absolute; top: 298px; width: 15px; }\",\".framer-SXqwT .framer-holu82 { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 3px; left: 18px; position: absolute; top: 281px; width: 13px; }\",\".framer-SXqwT .framer-zy3dus { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 7px; left: 10px; position: absolute; top: 15px; width: 32px; }\",\".framer-SXqwT .framer-1pbqosv { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 2px; left: 44px; position: absolute; top: 20px; width: 4px; }\",\".framer-SXqwT .framer-128x4ly { background-color: rgba(76, 76, 76, 0.2); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 9px; left: 9px; position: absolute; top: 24px; width: 46px; }\",\".framer-SXqwT .framer-1hl5vpb { -webkit-filter: blur(240px); aspect-ratio: 1 / 1; background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, rgba(250, 196, 20, 0.7) 0%, rgba(148, 116, 12, 0.7) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -309px; filter: blur(240px); flex: none; height: var(--framer-aspect-ratio-supported, 456px); position: absolute; right: -13px; width: 456px; z-index: 1; }\",\".framer-SXqwT .framer-b03fyw, .framer-SXqwT .framer-1cwkj96, .framer-SXqwT .framer-onpu5m, .framer-SXqwT .framer-1gatpwa { 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: 8px 32px 8px 32px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-16yh7bz, .framer-SXqwT .framer-19rfaab, .framer-SXqwT .framer-1n3wbgd, .framer-SXqwT .framer-16ldv3i, .framer-SXqwT .framer-xw3nkr { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SXqwT .framer-1wfwdiu, .framer-SXqwT .framer-9ma87n, .framer-SXqwT .framer-9gaipz, .framer-SXqwT .framer-38fqj3, .framer-SXqwT .framer-7a1wpd, .framer-SXqwT .framer-aqwn4j, .framer-SXqwT .framer-1wjo09h { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SXqwT .framer-1mj0o7q { bottom: -134px; flex: none; height: 494px; left: calc(65.9010600706714% - 683px / 2); overflow: hidden; position: absolute; width: 683px; z-index: 1; }\",\".framer-SXqwT .framer-4r8kt { bottom: 0px; flex: none; height: 445px; left: calc(48.75549048316254% - 665px / 2); overflow: visible; position: absolute; width: 665px; }\",\".framer-SXqwT .framer-xzp735, .framer-SXqwT .framer-v9av23, .framer-SXqwT .framer-1cf0wii, .framer-SXqwT .framer-1ds0e1b { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-SXqwT .framer-1dv6ibb { bottom: 49px; flex: none; height: 445px; left: calc(51.244509516837496% - 665px / 2); overflow: visible; position: absolute; width: 665px; }\",\".framer-SXqwT .framer-rgzruc { -webkit-filter: blur(240px); aspect-ratio: 1 / 1; background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, #fac414 0%, rgba(148, 116, 12, 1) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -137px; filter: blur(240px); flex: none; height: var(--framer-aspect-ratio-supported, 456px); position: absolute; right: -332px; width: 456px; z-index: 2; }\",\".framer-SXqwT .framer-165dd2b { bottom: -92px; flex: none; height: 371px; overflow: hidden; position: absolute; right: -229px; width: 491px; z-index: 1; }\",\".framer-SXqwT .framer-1mti7ux { bottom: 0px; flex: none; height: 326px; left: calc(50.305498981670084% - 487px / 2); overflow: hidden; position: absolute; width: 487px; }\",\".framer-SXqwT .framer-1wkst6m { bottom: 45px; flex: none; height: 326px; left: calc(49.69450101832996% - 487px / 2); overflow: hidden; position: absolute; width: 487px; }\",\".framer-SXqwT .framer-1s8zfhb { --border-bottom-width: 1.5px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: flex-start; align-items: flex-start; background-color: #0d0d0d; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0px 1px 2px 0px rgba(20, 21, 26, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 666px; justify-content: center; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-SXqwT .framer-fpwz38, .framer-SXqwT .framer-pbtcj4 { --border-bottom-width: 2px; --border-color: #191919; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-SXqwT .framer-vlioaj { bottom: -376px; flex: none; height: 768px; left: -277px; overflow: visible; position: absolute; right: -277px; z-index: 1; }\",\".framer-SXqwT .framer-15vpwta { -webkit-mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0,0,0,0) 84.68468468468468%) add; bottom: 0px; flex: none; left: calc(49.94462901439648% - 903px / 2); mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0,0,0,0) 84.68468468468468%) add; overflow: visible; position: absolute; top: 0px; width: 903px; }\",\".framer-SXqwT .framer-lr0908, .framer-SXqwT .framer-10zaxe0 { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.3); --border-left-width: 1.2112675905227661px; --border-right-width: 1.2112675905227661px; --border-style: solid; --border-top-width: 0px; background-color: rgba(255, 255, 255, 0.15); flex: none; height: 768px; left: 0px; opacity: 0.3; position: absolute; top: 0px; width: 188px; }\",\".framer-SXqwT .framer-1bfiw8, .framer-SXqwT .framer-1n551c1 { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.3); --border-left-width: 1.2112675905227661px; --border-right-width: 1.2112675905227661px; --border-style: solid; --border-top-width: 0px; background-color: rgba(255, 255, 255, 0.15); flex: none; height: 768px; left: 238px; opacity: 0.3; position: absolute; top: 0px; width: 188px; }\",\".framer-SXqwT .framer-1yf6f5n, .framer-SXqwT .framer-nlmzc1 { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.3); --border-left-width: 1.2112675905227661px; --border-right-width: 1.2112675905227661px; --border-style: solid; --border-top-width: 0px; background-color: rgba(255, 255, 255, 0.15); flex: none; height: 768px; left: 476px; opacity: 0.3; position: absolute; top: 0px; width: 188px; }\",\".framer-SXqwT .framer-1mwiq14, .framer-SXqwT .framer-1jafrit { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.3); --border-left-width: 1.2112675905227661px; --border-right-width: 1.2112675905227661px; --border-style: solid; --border-top-width: 0px; background-color: rgba(255, 255, 255, 0.15); flex: none; height: 768px; left: 715px; opacity: 0.3; position: absolute; top: 0px; width: 188px; }\",\".framer-SXqwT .framer-9c8wx0 { -webkit-filter: blur(240px); aspect-ratio: 1 / 1; background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, #fac414 0%, rgba(148, 116, 12, 1) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -165px; filter: blur(240px); flex: none; height: var(--framer-aspect-ratio-supported, 456px); left: 50%; position: absolute; transform: translateX(-50%); width: 456px; z-index: 0; }\",\".framer-SXqwT .framer-33gvxb { flex: none; height: 236px; overflow: visible; position: relative; width: 862px; z-index: 1; }\",\".framer-SXqwT .framer-15iqxj7 { align-content: center; align-items: center; background-color: #fac414; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; box-shadow: 0px 0px 34.64455795288086px 0px rgba(250, 197, 21, 0.5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 191px; overflow: visible; padding: 13.299837112426758px 18.287273406982422px 13.299837112426758px 18.287273406982422px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-1obn0my, .framer-SXqwT .framer-13w0lfj { 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: visible; padding: 0px 1.6624796390533447px 0px 1.6624796390533447px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-13i1t6o, .framer-SXqwT .framer-1g8dpo3, .framer-SXqwT .framer-1qo7t1w, .framer-SXqwT .framer-3rp40r, .framer-SXqwT .framer-1wzs80r, .framer-SXqwT .framer-2g96pm, .framer-SXqwT .framer-1yn4s9u, .framer-SXqwT .framer-14mrslu, .framer-SXqwT .framer-1k39clv { --framer-paragraph-spacing: 14.962315559387207px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SXqwT .framer-1abg7kh { align-content: center; align-items: center; background-color: #fac414; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; box-shadow: 0px 0px 34.64455795288086px 0px rgba(250, 197, 21, 0.5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 467px; overflow: visible; padding: 13.299837112426758px 18.287273406982422px 13.299837112426758px 18.287273406982422px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-m65ia5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 22px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 99px; width: 862px; }\",\".framer-SXqwT .framer-1s9guzf { flex: none; height: 31px; left: 126px; position: absolute; top: 55px; width: 10px; z-index: 1; }\",\".framer-SXqwT .framer-1ez0s1m { flex: none; height: 57px; overflow: visible; position: relative; width: 722px; }\",\".framer-SXqwT .framer-1lb5pj0, .framer-SXqwT .framer-16y84ba { -webkit-backdrop-filter: blur(3.0151331424713135px); align-content: center; align-items: center; backdrop-filter: blur(3.0151331424713135px); background-color: #191919; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 8.312397003173828px 9.974876403808594px 8.312397003173828px 9.974876403808594px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-19tv0rp, .framer-SXqwT .framer-navcnu, .framer-SXqwT .framer-16vtbct, .framer-SXqwT .framer-et4qwi, .framer-SXqwT .framer-h6wopd, .framer-SXqwT .framer-1rjbrmo, .framer-SXqwT .framer-32e8tj { align-content: center; align-items: center; background-color: #333333; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: visible; padding: 10.966268539428711px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-15nuqn3, .framer-SXqwT .framer-g5o91h, .framer-SXqwT .framer-13v3jjg, .framer-SXqwT .framer-ybihz6, .framer-SXqwT .framer-g40nhd, .framer-SXqwT .framer-9qkcfa, .framer-SXqwT .framer-1wxc9m2 { flex: none; height: 18px; overflow: hidden; position: relative; width: 18px; }\",\".framer-SXqwT .framer-10ewm5n { flex: none; height: 16px; left: 1px; position: absolute; top: 1px; width: 17px; }\",\".framer-SXqwT .framer-oh5jpr, .framer-SXqwT .framer-5kbld7, .framer-SXqwT .framer-193fsj2, .framer-SXqwT .framer-1yqd69p, .framer-SXqwT .framer-kaukm1, .framer-SXqwT .framer-1sk5nul, .framer-SXqwT .framer-1m88fwv { 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: visible; padding: 0px 1.4357776641845703px 0px 1.4357776641845703px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-k878s4 { -webkit-backdrop-filter: blur(3.0151331424713135px); align-content: center; align-items: center; backdrop-filter: blur(3.0151331424713135px); background-color: #191919; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 266px; overflow: visible; padding: 8.312397003173828px 9.974876403808594px 8.312397003173828px 9.974876403808594px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-1pmt6qe, .framer-SXqwT .framer-1oxxsjb, .framer-SXqwT .framer-1kr8i6x { flex: none; height: 17px; left: 0px; position: absolute; top: 0px; width: 17px; }\",\".framer-SXqwT .framer-w3ztik { -webkit-backdrop-filter: blur(3.0151331424713135px); align-content: center; align-items: center; backdrop-filter: blur(3.0151331424713135px); background-color: #191919; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 471px; overflow: visible; padding: 8.312397003173828px 9.974876403808594px 8.312397003173828px 9.974876403808594px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-xis0se, .framer-SXqwT .framer-n8yvul { flex: none; height: 16px; left: 1px; position: absolute; top: 1px; width: 15px; }\",\".framer-SXqwT .framer-oa0r8u { flex: none; height: 10px; left: 249px; position: absolute; top: 23px; width: 22px; }\",\".framer-SXqwT .framer-d4qgsl { flex: none; height: 10px; left: 455px; position: absolute; top: 23px; width: 21px; }\",\".framer-SXqwT .framer-nwybzl { flex: none; height: 57px; overflow: visible; position: relative; width: 854px; }\",\".framer-SXqwT .framer-2p7yfz { -webkit-backdrop-filter: blur(3.0151331424713135px); align-content: center; align-items: center; backdrop-filter: blur(3.0151331424713135px); background-color: #191919; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 210px; overflow: visible; padding: 8.312397003173828px 9.974876403808594px 8.312397003173828px 9.974876403808594px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-z6fhvh { flex: none; height: 16px; left: 2px; position: absolute; top: 1px; width: 13px; }\",\".framer-SXqwT .framer-wa3lus { -webkit-backdrop-filter: blur(3.0151331424713135px); align-content: center; align-items: center; backdrop-filter: blur(3.0151331424713135px); background-color: #191919; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 389px; overflow: visible; padding: 8.312397003173828px 9.974876403808594px 8.312397003173828px 9.974876403808594px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-1xu4j7e { -webkit-backdrop-filter: blur(3.0151331424713135px); align-content: center; align-items: center; backdrop-filter: blur(3.0151331424713135px); background-color: #191919; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 602px; overflow: visible; padding: 8.312397003173828px 9.974876403808594px 8.312397003173828px 9.974876403808594px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-1p2ya46 { flex: none; height: 10px; left: 190px; position: absolute; top: 23px; width: 24px; }\",\".framer-SXqwT .framer-1ke69aj { flex: none; height: 10px; left: 369px; position: absolute; top: 23px; width: 25px; }\",\".framer-SXqwT .framer-715g97 { flex: none; height: 10px; left: 581px; position: absolute; top: 23px; width: 26px; }\",\".framer-SXqwT .framer-k5cu5u { flex: none; height: 31px; left: 692px; position: absolute; top: calc(52.59259259259261% - 31px / 2); width: 10px; z-index: 1; }\",\".framer-SXqwT .framer-lt8gda { flex: none; height: 56px; left: 586px; position: absolute; top: 46px; width: 9px; }\",\".framer-SXqwT .framer-1r8gdas { flex: none; height: 57px; left: 269px; position: absolute; top: 46px; width: 10px; }\",\".framer-SXqwT .framer-1eh7fit { flex: none; height: 11px; left: 412px; overflow: hidden; position: absolute; top: 20px; width: 58px; }\",\".framer-SXqwT .framer-1fwvx1s { bottom: 0px; flex: none; height: 10px; left: 0px; position: absolute; width: 57px; }\",\".framer-SXqwT .framer-a7w77m { flex: none; height: 182px; overflow: visible; position: relative; width: 663px; }\",\".framer-SXqwT .framer-wca51e { align-content: center; align-items: center; background-color: #fac414; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 26.666574478149414px 0px rgba(250, 197, 21, 0.5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 147px; overflow: visible; padding: 10.237135887145996px 14.076062202453613px 10.237135887145996px 14.076062202453613px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-ks6q2a, .framer-SXqwT .framer-11s30dj { 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: visible; padding: 0px 1.2796419858932495px 0px 1.2796419858932495px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-1youhgi, .framer-SXqwT .framer-1861hk2, .framer-SXqwT .framer-ubs4u9, .framer-SXqwT .framer-1gh2yba, .framer-SXqwT .framer-1ui8c33, .framer-SXqwT .framer-1wk8vj3, .framer-SXqwT .framer-1vzjlc3, .framer-SXqwT .framer-bqs3wy, .framer-SXqwT .framer-118hkzm { --framer-paragraph-spacing: 11.516777992248535px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SXqwT .framer-1hyzvo6 { align-content: center; align-items: center; background-color: #fac414; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 26.666574478149414px 0px rgba(250, 197, 21, 0.5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 360px; overflow: visible; padding: 10.237135887145996px 14.076062202453613px 10.237135887145996px 14.076062202453613px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-9hd3pp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 76px; width: 663px; }\",\".framer-SXqwT .framer-1whu72f { flex: none; height: 44px; overflow: visible; position: relative; width: 556px; }\",\".framer-SXqwT .framer-1c40kg3, .framer-SXqwT .framer-1jyg1 { -webkit-backdrop-filter: blur(2.3208048343658447px); align-content: center; align-items: center; backdrop-filter: blur(2.3208048343658447px); background-color: #191919; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 6.398209571838379px 7.677851676940918px 6.398209571838379px 7.677851676940918px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-62ra0q, .framer-SXqwT .framer-2p0bqk, .framer-SXqwT .framer-9yh3q, .framer-SXqwT .framer-jmnctw, .framer-SXqwT .framer-18lbi3s, .framer-SXqwT .framer-5niycf, .framer-SXqwT .framer-13w71qm { align-content: center; align-items: center; background-color: #333333; 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: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 8.44094467163086px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-1i2h2mn, .framer-SXqwT .framer-1kp0cu, .framer-SXqwT .framer-ee7srv, .framer-SXqwT .framer-1g8sg4a, .framer-SXqwT .framer-wxxpsc, .framer-SXqwT .framer-1acpaal, .framer-SXqwT .framer-g1gbn5 { flex: none; height: 14px; overflow: hidden; position: relative; width: 14px; }\",\".framer-SXqwT .framer-15o9jap { flex: none; height: 12px; left: 0px; position: absolute; top: 1px; width: 13px; }\",\".framer-SXqwT .framer-lmcw7f, .framer-SXqwT .framer-1cg0176, .framer-SXqwT .framer-8r1jru, .framer-SXqwT .framer-1jhvsmk, .framer-SXqwT .framer-110v6zk, .framer-SXqwT .framer-fms7br, .framer-SXqwT .framer-et0ckb { 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: visible; padding: 0px 1.1051453351974487px 0px 1.1051453351974487px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-ni1pq1 { -webkit-backdrop-filter: blur(2.3208048343658447px); align-content: center; align-items: center; backdrop-filter: blur(2.3208048343658447px); background-color: #191919; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 205px; overflow: visible; padding: 6.398209571838379px 7.677851676940918px 6.398209571838379px 7.677851676940918px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-16uognx { flex: none; height: 14px; left: 0px; position: absolute; top: 0px; width: 13px; }\",\".framer-SXqwT .framer-1tifg8i { -webkit-backdrop-filter: blur(2.3208048343658447px); align-content: center; align-items: center; backdrop-filter: blur(2.3208048343658447px); background-color: #191919; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 363px; overflow: visible; padding: 6.398209571838379px 7.677851676940918px 6.398209571838379px 7.677851676940918px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-1paqrvc { flex: none; height: 12px; left: 1px; position: absolute; top: 1px; width: 12px; }\",\".framer-SXqwT .framer-h4imqr { flex: none; height: 8px; left: 191px; position: absolute; top: 18px; width: 18px; }\",\".framer-SXqwT .framer-4w8dfs { flex: none; height: 8px; left: 350px; position: absolute; top: 18px; width: 17px; }\",\".framer-SXqwT .framer-1hleccg { flex: none; height: 44px; overflow: visible; position: relative; width: 657px; }\",\".framer-SXqwT .framer-1k2wakr { flex: none; height: 13px; left: 1px; position: absolute; top: 0px; width: 12px; }\",\".framer-SXqwT .framer-mwyc1u { -webkit-backdrop-filter: blur(2.3208048343658447px); align-content: center; align-items: center; backdrop-filter: blur(2.3208048343658447px); background-color: #191919; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 162px; overflow: visible; padding: 6.398209571838379px 7.677851676940918px 6.398209571838379px 7.677851676940918px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-150u8lb { flex: none; height: 13px; left: 2px; position: absolute; top: 0px; width: 10px; }\",\".framer-SXqwT .framer-awhj9t { -webkit-backdrop-filter: blur(2.3208048343658447px); align-content: center; align-items: center; backdrop-filter: blur(2.3208048343658447px); background-color: #191919; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 299px; overflow: visible; padding: 6.398209571838379px 7.677851676940918px 6.398209571838379px 7.677851676940918px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-19ycb8z, .framer-SXqwT .framer-1gj78m3 { flex: none; height: 13px; left: 0px; position: absolute; top: 0px; width: 13px; }\",\".framer-SXqwT .framer-1i4ghrk { -webkit-backdrop-filter: blur(2.3208048343658447px); align-content: center; align-items: center; backdrop-filter: blur(2.3208048343658447px); background-color: #191919; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 463px; overflow: visible; padding: 6.398209571838379px 7.677851676940918px 6.398209571838379px 7.677851676940918px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-1ig55x1 { flex: none; height: 8px; left: 146px; position: absolute; top: 18px; width: 19px; }\",\".framer-SXqwT .framer-dfwh2l { flex: none; height: 8px; left: 284px; position: absolute; top: 18px; width: 19px; }\",\".framer-SXqwT .framer-14n3fnl { flex: none; height: 8px; left: 447px; position: absolute; top: 18px; width: 20px; }\",\".framer-SXqwT .framer-10q6aga { flex: none; height: 25px; left: 116px; position: absolute; top: calc(50.46728971962619% - 25px / 2); width: 8px; z-index: 1; }\",\".framer-SXqwT .framer-13t5j1r { flex: none; height: 24px; left: 540px; position: absolute; top: calc(51.40186915887852% - 24px / 2); width: 8px; z-index: 1; }\",\".framer-SXqwT .framer-1j6x07e { flex: none; height: 43px; left: 450px; position: absolute; top: 36px; width: 8px; }\",\".framer-SXqwT .framer-136glz { flex: none; height: 44px; left: 207px; position: absolute; top: 36px; width: 8px; }\",\".framer-SXqwT .framer-5aelr9 { flex: none; height: 8px; left: 317px; position: absolute; top: 16px; width: 44px; }\",\".framer-SXqwT .framer-1szpclj { flex: none; height: 200px; overflow: visible; position: relative; width: 379px; }\",\".framer-SXqwT .framer-w2ckqc { align-content: center; align-items: center; background-color: #fac414; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; box-shadow: 0px 0px 18.1573429107666px 0px rgba(250, 197, 21, 0.5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; left: 64px; overflow: visible; padding: 6.970495700836182px 9.584427833557129px 6.970495700836182px 9.584427833557129px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-1kz88ph, .framer-SXqwT .framer-1nm33uy { 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: visible; padding: 0px 0.8713119626045227px 0px 0.8713119626045227px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-1tzi8g3, .framer-SXqwT .framer-15pid1q { --framer-paragraph-spacing: 7.841806411743164px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SXqwT .framer-5qdxuk { align-content: center; align-items: center; background-color: #fac414; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; box-shadow: 0px 0px 18.1573429107666px 0px rgba(250, 197, 21, 0.5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; left: 209px; overflow: visible; padding: 6.970495700836182px 9.584427833557129px 6.970495700836182px 9.584427833557129px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-n70diq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 13px; height: min-content; justify-content: center; left: 20px; overflow: visible; padding: 0px; position: absolute; top: 52px; width: 340px; }\",\".framer-SXqwT .framer-1q7p9z3 { flex: none; height: 71px; overflow: visible; position: relative; width: 216px; }\",\".framer-SXqwT .framer-3x704b { -webkit-backdrop-filter: blur(1.4040453433990479px); align-content: center; align-items: center; backdrop-filter: blur(1.4040453433990479px); background-color: #191919; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 53px; overflow: visible; padding: 3.8708009719848633px 4.644960880279541px 3.8708009719848633px 4.644960880279541px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-kiyrt1, .framer-SXqwT .framer-lacccd, .framer-SXqwT .framer-8s804z, .framer-SXqwT .framer-17s2xsl, .framer-SXqwT .framer-1cc7vgt, .framer-SXqwT .framer-9j4nsz, .framer-SXqwT .framer-127x6ig { align-content: center; align-items: center; background-color: #333333; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: visible; padding: 5.106618881225586px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-7jlp0l, .framer-SXqwT .framer-akrbyv, .framer-SXqwT .framer-xvndwv, .framer-SXqwT .framer-25lq8h, .framer-SXqwT .framer-nhsf4m, .framer-SXqwT .framer-1s3rt6e, .framer-SXqwT .framer-urwsoi { flex: none; height: 8px; overflow: hidden; position: relative; width: 8px; }\",\".framer-SXqwT .framer-uen7tf { flex: none; height: 8px; left: -1px; position: absolute; top: 0px; width: 8px; }\",\".framer-SXqwT .framer-hv8jwf, .framer-SXqwT .framer-ju65k6, .framer-SXqwT .framer-n4q2g8, .framer-SXqwT .framer-ub2pbc, .framer-SXqwT .framer-1edpxjo, .framer-SXqwT .framer-1hg345r, .framer-SXqwT .framer-tu7e1r { 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: visible; padding: 0px 0.6685928702354431px 0px 0.6685928702354431px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-1bdend7, .framer-SXqwT .framer-9ivp5p, .framer-SXqwT .framer-hmtacx, .framer-SXqwT .framer-mplzda, .framer-SXqwT .framer-njxgh4, .framer-SXqwT .framer-6ruxtp, .framer-SXqwT .framer-17ui2lo { --framer-paragraph-spacing: 6.967442035675049px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SXqwT .framer-1w4ycw { -webkit-backdrop-filter: blur(1.4040453433990479px); align-content: center; align-items: center; backdrop-filter: blur(1.4040453433990479px); background-color: #191919; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 126px; overflow: visible; padding: 3.8708009719848633px 4.644960880279541px 3.8708009719848633px 4.644960880279541px; position: absolute; top: 45px; width: min-content; }\",\".framer-SXqwT .framer-1fphoo7 { flex: none; height: 8px; left: 0px; position: absolute; top: 0px; width: 9px; }\",\".framer-SXqwT .framer-1li6hna { -webkit-backdrop-filter: blur(1.4040453433990479px); align-content: center; align-items: center; backdrop-filter: blur(1.4040453433990479px); background-color: #191919; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 3.8708009719848633px 4.644960880279541px 3.8708009719848633px 4.644960880279541px; position: absolute; top: 45px; width: min-content; }\",\".framer-SXqwT .framer-1u6flui { flex: none; height: 8px; left: 1px; position: absolute; top: 0px; width: 7px; }\",\".framer-SXqwT .framer-ww52i4 { flex: none; height: 6px; left: 115px; position: absolute; top: 56px; width: 12px; }\",\".framer-SXqwT .framer-s15opq { flex: none; height: 6px; left: 149px; position: absolute; top: 15px; width: 11px; }\",\".framer-SXqwT .framer-1bg5xi4 { flex: none; height: 23px; left: 72px; position: absolute; top: 24px; width: 13px; }\",\".framer-SXqwT .framer-s2t4bv { flex: none; height: 23px; left: 142px; position: absolute; top: 24px; width: 14px; }\",\".framer-SXqwT .framer-rwarzq { flex: none; height: 62px; overflow: visible; position: relative; width: 273px; }\",\".framer-SXqwT .framer-9s4yfs { -webkit-backdrop-filter: blur(1.4040453433990479px); align-content: center; align-items: center; backdrop-filter: blur(1.4040453433990479px); background-color: #191919; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 3.8708009719848633px 4.644960880279541px 3.8708009719848633px 4.644960880279541px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-17gigso { flex: none; height: 7px; left: 0px; position: absolute; top: 1px; width: 8px; }\",\".framer-SXqwT .framer-1iqsgbg { -webkit-backdrop-filter: blur(1.4040453433990479px); align-content: center; align-items: center; backdrop-filter: blur(1.4040453433990479px); background-color: #191919; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 98px; overflow: visible; padding: 3.8708009719848633px 4.644960880279541px 3.8708009719848633px 4.644960880279541px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-165g845 { flex: none; height: 7px; left: 1px; position: absolute; top: 1px; width: 7px; }\",\".framer-SXqwT .framer-pvqp7i { -webkit-backdrop-filter: blur(1.4040453433990479px); align-content: center; align-items: center; backdrop-filter: blur(1.4040453433990479px); background-color: #191919; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 181px; overflow: visible; padding: 3.8708009719848633px 4.644960880279541px 3.8708009719848633px 4.644960880279541px; position: absolute; top: 0px; width: min-content; }\",\".framer-SXqwT .framer-1g9odb3 { flex: none; height: 9px; left: 0px; position: absolute; top: 0px; width: 8px; }\",\".framer-SXqwT .framer-1b72ly1 { -webkit-backdrop-filter: blur(1.4040453433990479px); align-content: center; align-items: center; backdrop-filter: blur(1.4040453433990479px); background-color: #191919; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; bottom: -3px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 53%; overflow: visible; padding: 3.8708009719848633px 4.644960880279541px 3.8708009719848633px 4.644960880279541px; position: absolute; transform: translateX(-50%); width: min-content; }\",\".framer-SXqwT .framer-l76yeq { flex: none; height: 8px; left: 0px; position: absolute; top: 0px; width: 8px; }\",\".framer-SXqwT .framer-17sji7a { flex: none; height: 6px; left: 88px; position: absolute; top: 10px; width: 13px; }\",\".framer-SXqwT .framer-ma40il { flex: none; height: 6px; left: 171px; position: absolute; top: 10px; width: 13px; }\",\".framer-SXqwT .framer-1oe91hc { flex: none; height: 16px; left: 96px; position: absolute; top: calc(54.861111111111136% - 16px / 2); width: 6px; z-index: 1; }\",\".framer-SXqwT .framer-16it6i1 { flex: none; height: 16px; left: 254px; position: absolute; top: calc(54.861111111111136% - 16px / 2); width: 6px; z-index: 1; }\",\".framer-SXqwT .framer-lrit4b { bottom: 21px; flex: none; height: 16px; left: 186px; position: absolute; width: 6px; z-index: 1; }\",\".framer-SXqwT .framer-a0mei9 { flex: none; height: 29px; left: 224px; position: absolute; top: 25px; width: 15px; }\",\".framer-SXqwT .framer-x9axhh { flex: none; height: 29px; left: 153px; position: absolute; top: 25px; width: 13px; }\",\".framer-SXqwT .framer-13kjq46 { flex: none; height: 7px; left: 179px; position: absolute; top: 10px; width: 31px; }\",\".framer-SXqwT .framer-16a2sr0 { align-content: flex-start; align-items: flex-start; background-color: #0d0d0d; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px 32px 12px 32px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-1gjhotp { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-5ma9x3, .framer-SXqwT .framer-qghlkh { --border-bottom-width: 1.5px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: flex-start; align-items: flex-start; background-color: #0d0d0d; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0px 1px 2px 0px rgba(20, 21, 26, 0.05); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 666px; justify-content: center; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SXqwT .framer-1ffwwoa { -webkit-filter: blur(240px); aspect-ratio: 1 / 1; background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, #fac414 0%, rgba(148, 116, 12, 1) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -416px; filter: blur(240px); flex: none; height: var(--framer-aspect-ratio-supported, 456px); left: 50%; position: absolute; transform: translateX(-50%); width: 456px; z-index: 0; }\",\".framer-SXqwT .framer-1b2jaux { aspect-ratio: 1 / 1; bottom: -218px; flex: none; height: var(--framer-aspect-ratio-supported, 859px); left: -148px; overflow: visible; position: absolute; right: -149px; z-index: 0; }\",\".framer-SXqwT .framer-1qwt2o1 { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 44%, rgba(0,0,0,1) 100%) add; bottom: -24px; flex: none; height: 883px; left: -13px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 44%, rgba(0,0,0,1) 100%) add; position: absolute; right: -12px; }\",\".framer-SXqwT .framer-1hj667v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-ut5q21, .framer-SXqwT .framer-az8jhg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 98px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-1lf9rla, .framer-SXqwT .framer-1mgobcs { -webkit-filter: drop-shadow(0px 1px 42px rgba(250, 197, 21, 0.6)); filter: drop-shadow(0px 1px 42px rgba(250, 197, 21, 0.6)); flex: none; height: 97px; position: relative; width: 98px; }\",\".framer-SXqwT .framer-wgrh9p, .framer-SXqwT .framer-1stmyn3 { --framer-paragraph-spacing: 23.2716121673584px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SXqwT .framer-12v6vtr { flex: none; height: 43px; overflow: hidden; position: relative; width: 37px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-gpr8cc { aspect-ratio: 0.8571428571428571 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-SXqwT .framer-1m5er2z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-cqw8fr, .framer-SXqwT .framer-joo3s4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 53px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-80epkh, .framer-SXqwT .framer-hv6mm0 { flex: none; height: 54px; position: relative; width: 54px; }\",\".framer-SXqwT .framer-143cefe, .framer-SXqwT .framer-1ffzo8n { --framer-paragraph-spacing: 12.735092163085938px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SXqwT .framer-16l5y1n { flex: none; height: 28px; overflow: hidden; position: relative; width: 24px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-19k0hny, .framer-SXqwT .framer-10f4tdi { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-SXqwT .framer-no38cp { flex: none; height: 459px; left: -247px; overflow: visible; position: absolute; right: -246px; top: -13px; z-index: 1; }\",\".framer-SXqwT .framer-1k9lxq7 { -webkit-mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0,0,0,0) 100%) add; bottom: 0px; flex: none; left: calc(51.480420248328585% - 539px / 2); mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0,0,0,0) 100%) add; overflow: visible; position: absolute; top: 0px; width: 539px; }\",\".framer-SXqwT .framer-159mlxu { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.4); --border-left-width: 0.7235843539237976px; --border-right-width: 0.7235843539237976px; --border-style: solid; --border-top-width: 0px; background-color: rgba(255, 255, 255, 0.25); flex: none; height: 459px; left: 0px; opacity: 0.3; position: absolute; top: 0px; width: 112px; }\",\".framer-SXqwT .framer-ff24bf { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.4); --border-left-width: 0.7235843539237976px; --border-right-width: 0.7235843539237976px; --border-style: solid; --border-top-width: 0px; background-color: rgba(255, 255, 255, 0.25); flex: none; height: 459px; left: 142px; opacity: 0.3; position: absolute; top: 0px; width: 112px; }\",\".framer-SXqwT .framer-13d6oqx { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.4); --border-left-width: 0.7235843539237976px; --border-right-width: 0.7235843539237976px; --border-style: solid; --border-top-width: 0px; background-color: rgba(255, 255, 255, 0.25); flex: none; height: 459px; left: 285px; opacity: 0.3; position: absolute; top: 0px; width: 112px; }\",\".framer-SXqwT .framer-1geo9jg { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.4); --border-left-width: 0.7235843539237976px; --border-right-width: 0.7235843539237976px; --border-style: solid; --border-top-width: 0px; background-color: rgba(255, 255, 255, 0.25); flex: none; height: 459px; left: 427px; opacity: 0.3; position: absolute; top: 0px; width: 112px; }\",\".framer-SXqwT .framer-gljy4l { bottom: -32px; flex: none; height: 336px; left: calc(50.00000000000002% - 446px / 2); overflow: visible; position: absolute; width: 446px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-SXqwT .framer-1aqgov3 { --border-bottom-width: 1.1506848335266113px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1.1506848335266113px; --border-right-width: 1.1506848335266113px; --border-style: solid; --border-top-width: 1.1506848335266113px; background-color: #242424; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; flex: none; height: 336px; left: calc(50% - 446.2897033691406px / 2); position: absolute; top: 0px; width: 446px; }\",\".framer-SXqwT .framer-gvvehb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 65px; height: 10px; justify-content: flex-start; left: calc(59.01445642070673% - 280.9110412597656px / 2); overflow: visible; padding: 0px; position: absolute; top: 286px; width: 281px; }\",\".framer-SXqwT .framer-103eowp, .framer-SXqwT .framer-1ssz3qv, .framer-SXqwT .framer-1d0syfy { background-color: #333333; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: 10px; position: relative; width: 20px; }\",\".framer-SXqwT .framer-19ywvsw { background-color: #333333; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: 10px; position: relative; width: 26px; }\",\".framer-SXqwT .framer-1fj2xln { flex: none; height: 165px; left: 133px; position: absolute; top: 109px; width: 181px; }\",\".framer-SXqwT .framer-6jrj6o { background-color: #333333; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 9px; left: calc(86.85197499716392% - 33.578311920166016px / 2); position: absolute; top: 154px; width: 34px; }\",\".framer-SXqwT .framer-1dh85rt { background-color: #333333; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 9px; left: calc(86.94358924949574% - 32.75932312011719px / 2); position: absolute; top: 198px; width: 33px; }\",\".framer-SXqwT .framer-1x5cc4b { background-color: #333333; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 9px; left: calc(87.58620726645565% - 27.02644920349121px / 2); position: absolute; top: 243px; width: 27px; }\",\".framer-SXqwT .framer-1ky4fx7 { flex: none; height: 146px; left: 41px; overflow: visible; position: absolute; top: 128px; width: 363px; }\",\".framer-SXqwT .framer-n83ik1 { flex: none; height: 146px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 363px; }\",\".framer-SXqwT .framer-12gbuwq { --border-bottom-width: 0.818983256816864px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 0.818983256816864px; --border-right-width: 0.818983256816864px; --border-style: solid; --border-top-width: 0.818983256816864px; background-color: #fac414; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: 13px; left: calc(50% - 363.25970458984375px / 2); position: absolute; top: 0px; width: 363px; }\",\".framer-SXqwT .framer-1f5bzfv { --border-bottom-width: 0.818983256816864px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 0.818983256816864px; --border-right-width: 0.818983256816864px; --border-style: solid; --border-top-width: 0.818983256816864px; background-color: #fac414; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: 13px; left: calc(50% - 363.25970458984375px / 2); position: absolute; top: 44px; width: 363px; }\",\".framer-SXqwT .framer-177ftkd { --border-bottom-width: 0.818983256816864px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 0.818983256816864px; --border-right-width: 0.818983256816864px; --border-style: solid; --border-top-width: 0.818983256816864px; background-color: #fac414; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: 13px; left: calc(50% - 363.25970458984375px / 2); position: absolute; top: 88px; width: 363px; }\",\".framer-SXqwT .framer-1a101b7 { --border-bottom-width: 0.818983256816864px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 0.818983256816864px; --border-right-width: 0.818983256816864px; --border-style: solid; --border-top-width: 0.818983256816864px; background-color: #fac414; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: 13px; left: calc(50% - 363.25970458984375px / 2); position: absolute; top: 133px; width: 363px; }\",\".framer-SXqwT .framer-tvh0wg { background-color: #333333; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: 10px; left: calc(12.85588001925052% - 31.940343856811523px / 2); position: absolute; top: 154px; width: 32px; }\",\".framer-SXqwT .framer-b5eweg { background-color: #333333; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: 10px; left: calc(12.39710593276637% - 27.845420837402344px / 2); position: absolute; top: 243px; width: 28px; }\",\".framer-SXqwT .framer-qoq13c { background-color: #333333; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: 10px; left: calc(13.406407683632294% - 36.85424041748047px / 2); position: absolute; top: 198px; width: 37px; }\",\".framer-SXqwT .framer-1hs2hb { flex: none; height: 64px; left: 41px; overflow: visible; position: absolute; top: 37px; width: 82px; }\",\".framer-SXqwT .framer-1kfzzjm { --framer-paragraph-spacing: 36px; flex: none; height: auto; left: 50%; position: absolute; top: 20px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-SXqwT .framer-w00scg { --framer-paragraph-spacing: 18px; flex: none; height: auto; left: 35%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-SXqwT .framer-1nfe1qj { -webkit-filter: blur(240px); aspect-ratio: 1 / 1; background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, #ffc300 0%, rgba(148, 116, 12, 1) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -280px; filter: blur(240px); flex: none; height: var(--framer-aspect-ratio-supported, 456px); position: absolute; right: -38px; width: 456px; z-index: 1; }\",\".framer-SXqwT .framer-tgvk9f { aspect-ratio: 1.3300492610837438 / 1; bottom: -15px; flex: none; height: var(--framer-aspect-ratio-supported, 203px); left: 50%; overflow: visible; position: absolute; transform: translateX(-50%); width: 270px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-SXqwT .framer-13kpuee { --border-bottom-width: 0.6952054500579834px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 0.6952054500579834px; --border-right-width: 0.6952054500579834px; --border-style: solid; --border-top-width: 0.6952054500579834px; background-color: #242424; border-bottom-left-radius: 17px; border-bottom-right-radius: 17px; border-top-left-radius: 17px; border-top-right-radius: 17px; flex: none; height: 203px; left: calc(50% - 269.63336181640625px / 2); position: absolute; top: 0px; width: 270px; }\",\".framer-SXqwT .framer-16c6uqc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 39px; height: 6px; justify-content: flex-start; left: calc(59.014290442049465% - 169.7170867919922px / 2); overflow: visible; padding: 0px; position: absolute; top: 173px; width: 170px; }\",\".framer-SXqwT .framer-cqhf3u, .framer-SXqwT .framer-7dr1oe, .framer-SXqwT .framer-1pnvq82 { background-color: #333333; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; flex: none; height: 6px; position: relative; width: 12px; }\",\".framer-SXqwT .framer-qgjffp { background-color: #333333; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; flex: none; height: 6px; position: relative; width: 16px; }\",\".framer-SXqwT .framer-1tqa2qr { flex: none; height: 100px; left: 80px; position: absolute; top: 66px; width: 111px; }\",\".framer-SXqwT .framer-cqkcne { background-color: #333333; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 5px; left: calc(86.85220137389074% - 20.286895751953125px / 2); position: absolute; top: 93px; width: 20px; }\",\".framer-SXqwT .framer-1xv11bu { background-color: #333333; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 5px; left: calc(86.9437102406629% - 19.792091369628906px / 2); position: absolute; top: 120px; width: 20px; }\",\".framer-SXqwT .framer-1kucqje { background-color: #333333; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 5px; left: calc(87.58572457151084% - 16.328479766845703px / 2); position: absolute; top: 147px; width: 16px; }\",\".framer-SXqwT .framer-1nldj5i { flex: none; height: 88px; left: 25px; overflow: visible; position: absolute; top: 77px; width: 219px; }\",\".framer-SXqwT .framer-1knp8mq { flex: none; height: 88px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 219px; }\",\".framer-SXqwT .framer-1p4u8pr { --border-bottom-width: 0.4948023855686188px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 0.4948023855686188px; --border-right-width: 0.4948023855686188px; --border-style: solid; --border-top-width: 0.4948023855686188px; background-color: #fac414; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; flex: none; height: 8px; left: calc(50% - 219.46939086914062px / 2); position: absolute; top: 0px; width: 219px; }\",\".framer-SXqwT .framer-19fqaun { --border-bottom-width: 0.4948023855686188px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 0.4948023855686188px; --border-right-width: 0.4948023855686188px; --border-style: solid; --border-top-width: 0.4948023855686188px; background-color: #fac414; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; flex: none; height: 8px; left: calc(50% - 219.46939086914062px / 2); position: absolute; top: 27px; width: 219px; }\",\".framer-SXqwT .framer-n8aich { --border-bottom-width: 0.4948023855686188px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 0.4948023855686188px; --border-right-width: 0.4948023855686188px; --border-style: solid; --border-top-width: 0.4948023855686188px; background-color: #fac414; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; flex: none; height: 8px; left: calc(50% - 219.46939086914062px / 2); position: absolute; top: 53px; width: 219px; }\",\".framer-SXqwT .framer-qvlbiu { --border-bottom-width: 0.4948023855686188px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 0.4948023855686188px; --border-right-width: 0.4948023855686188px; --border-style: solid; --border-top-width: 0.4948023855686188px; background-color: #fac414; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; flex: none; height: 8px; left: calc(50% - 219.46939086914062px / 2); position: absolute; top: 80px; width: 219px; }\",\".framer-SXqwT .framer-19f7t9j { flex: none; height: 88px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 209px; }\",\".framer-SXqwT .framer-1vkyf2l { --border-bottom-width: 0.4948023855686188px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 0.4948023855686188px; --border-right-width: 0.4948023855686188px; --border-style: solid; --border-top-width: 0.4948023855686188px; background-color: #fac414; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; flex: none; height: 8px; left: calc(50% - 209.07870483398438px / 2); position: absolute; top: 0px; width: 209px; }\",\".framer-SXqwT .framer-ldagqo { --border-bottom-width: 0.4948023855686188px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 0.4948023855686188px; --border-right-width: 0.4948023855686188px; --border-style: solid; --border-top-width: 0.4948023855686188px; background-color: #fac414; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; flex: none; height: 8px; left: calc(27.527371188034138% - 115.10774230957031px / 2); position: absolute; top: 27px; width: 115px; }\",\".framer-SXqwT .framer-12dcxfw { --border-bottom-width: 0.4948023855686188px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 0.4948023855686188px; --border-right-width: 0.4948023855686188px; --border-style: solid; --border-top-width: 0.4948023855686188px; background-color: #fac414; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; flex: none; height: 8px; left: calc(3.2094495971517527% - 13.420551300048828px / 2); position: absolute; top: 80px; width: 13px; }\",\".framer-SXqwT .framer-sbmo0f { --border-bottom-width: 0.4948023855686188px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 0.4948023855686188px; --border-right-width: 0.4948023855686188px; --border-style: solid; --border-top-width: 0.4948023855686188px; background-color: #fac414; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; flex: none; height: 8px; left: calc(14.700613924118072% - 61.47170639038086px / 2); position: absolute; top: 53px; width: 61px; }\",\".framer-SXqwT .framer-ejxdp7 { background-color: #333333; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; flex: none; height: 6px; left: calc(12.85607617969913% - 19.297290802001953px / 2); position: absolute; top: 93px; width: 19px; }\",\".framer-SXqwT .framer-1ywsfph { background-color: #333333; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; flex: none; height: 6px; left: calc(12.397302055290195% - 16.823274612426758px / 2); position: absolute; top: 147px; width: 17px; }\",\".framer-SXqwT .framer-owmjb0 { background-color: #333333; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; flex: none; height: 6px; left: calc(13.406603926433668% - 22.266103744506836px / 2); position: absolute; top: 120px; width: 22px; }\",\".framer-SXqwT .framer-3i8m6f { flex: none; height: 39px; left: 25px; overflow: visible; position: absolute; top: 22px; width: 50px; }\",\".framer-SXqwT .framer-pfahlp { --framer-paragraph-spacing: 21.75px; flex: none; height: auto; left: 50%; position: absolute; top: 12px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-SXqwT .framer-2kwk92 { --framer-paragraph-spacing: 10.875px; flex: none; height: auto; left: 35%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-SXqwT .framer-tllz7v { -webkit-filter: blur(240px); aspect-ratio: 1 / 1; background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, rgba(250, 197, 21, 0.5) 0%, rgba(148, 116, 12, 0.5) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(240px); flex: none; height: var(--framer-aspect-ratio-supported, 327px); left: 51%; overflow: hidden; position: absolute; top: 102px; transform: translateX(-50%); width: 327px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-SXqwT .framer-138kjah { flex: none; height: 1057px; left: -195px; overflow: hidden; position: absolute; right: -196px; top: -140px; }\",\".framer-SXqwT .framer-1ahuoc6, .framer-SXqwT .framer-gvq35n { 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 24px 0px 24px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-1osufiu, .framer-SXqwT .framer-2hxrnu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-fpfcdl { --framer-paragraph-spacing: 48px; flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SXqwT .framer-1w2nb3z { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; max-width: 1300px; padding: 0px 24px 0px 24px; position: relative; width: 100%; z-index: 1; }\",\".framer-SXqwT .framer-1hms4v4 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-1kqlni3 { --border-bottom-width: 1.5px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: flex-start; align-items: flex-start; background-color: #0d0d0d; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0px 1px 2px 0px rgba(20, 21, 26, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-SXqwT .framer-1hq2g7h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-1e1zlij { --border-bottom-width: 2px; --border-color: #333333; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; aspect-ratio: 1.5942857142857143 / 1; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 350px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-SXqwT .framer-qhmobq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-1wdt3qb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 8px 32px 8px 32px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-ox9pa5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-7y5qbg, .framer-SXqwT .framer-1vo0dfv, .framer-SXqwT .framer-1gti1ew, .framer-SXqwT .framer-uldqhe, .framer-SXqwT .framer-1c7na1b, .framer-SXqwT .framer-117u9zt, .framer-SXqwT .framer-1hr7ftu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-1knxiyd { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 520px; word-break: break-word; word-wrap: break-word; }\",\".framer-SXqwT .framer-kx3cvr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-1ru3zsw, .framer-SXqwT .framer-1brp152 { --framer-paragraph-spacing: 36px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SXqwT .framer-67b03p-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-SXqwT .framer-120ygr1 { align-content: center; align-items: center; background-color: #000000; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 72px 0px 72px 0px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-1vi30t8 { -webkit-filter: blur(240px); aspect-ratio: 1 / 1; background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, rgba(250, 197, 21, 0.5) 0%, rgba(148, 116, 12, 0.5) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(240px); flex: none; height: var(--framer-aspect-ratio-supported, 327px); left: 51%; overflow: hidden; position: absolute; top: -46px; transform: translateX(-50%); width: 327px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-SXqwT .framer-120n65s { flex: none; height: 1057px; left: -195px; overflow: hidden; position: absolute; right: -196px; top: -288px; }\",\".framer-SXqwT .framer-17eu15a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1300px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-1keknp6 { --border-bottom-width: 1.5px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: flex-start; align-items: flex-start; background-color: #0d0d0d; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 12px 52px 12px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-SXqwT .framer-olnxgj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 565px; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 20px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-wl3u0u { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: 565px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SXqwT .framer-1eujf3o { bottom: -497px; flex: none; left: -392px; position: absolute; right: -472px; top: -353px; }\",\".framer-SXqwT .framer-pgorpx { aspect-ratio: 0.6964285714285714 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 166px; flex: none; height: var(--framer-aspect-ratio-supported, 896px); left: 46%; overflow: visible; position: absolute; transform: translateX(-50%); width: 624px; }\",\".framer-SXqwT .framer-113ytii { aspect-ratio: 0.6920821114369502 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 93px; flex: none; height: var(--framer-aspect-ratio-supported, 963px); left: 48%; overflow: visible; position: absolute; transform: translateX(-50%); width: 667px; }\",\".framer-SXqwT .framer-pibppa { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-17x5xy, .framer-SXqwT .framer-223dfl { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-1dttzo8, .framer-SXqwT .framer-1f5ubo4, .framer-SXqwT .framer-1yxc7vz, .framer-SXqwT .framer-73nn4v, .framer-SXqwT .framer-tflsmi, .framer-SXqwT .framer-1gytiqx, .framer-SXqwT .framer-1qych9k, .framer-SXqwT .framer-7c5ise, .framer-SXqwT .framer-175vgbk, .framer-SXqwT .framer-jr7kjh, .framer-SXqwT .framer-282lvx, .framer-SXqwT .framer-hr7eps { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-2t2k08 { flex: none; height: 8px; position: relative; width: 40px; }\",\".framer-SXqwT .framer-1c2vova { --framer-paragraph-spacing: 36px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-SXqwT .framer-v0f3ry, .framer-SXqwT .framer-yloq6w, .framer-SXqwT .framer-w3u0pf, .framer-SXqwT .framer-19p1c3s, .framer-SXqwT .framer-dilfr9, .framer-SXqwT .framer-rt8w8i, .framer-SXqwT .framer-197vjp0, .framer-SXqwT .framer-445vz2, .framer-SXqwT .framer-3ljwer, .framer-SXqwT .framer-kd0cxj, .framer-SXqwT .framer-blww2i, .framer-SXqwT .framer-1tkyh7j, .framer-SXqwT .framer-1as0yim, .framer-SXqwT .framer-f67kvb, .framer-SXqwT .framer-1bfu3ik, .framer-SXqwT .framer-7i7q02, .framer-SXqwT .framer-3g3cge, .framer-SXqwT .framer-10imrna, .framer-SXqwT .framer-w0ee51 { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SXqwT .framer-14gqqjn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-adww04, .framer-SXqwT .framer-16moxwy, .framer-SXqwT .framer-12i207z, .framer-SXqwT .framer-dyjjl9 { align-content: flex-start; align-items: flex-start; background-color: #1c1c1c; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-width: 256px; overflow: visible; padding: 12px 0px 12px 24px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-waxfs6, .framer-SXqwT .framer-1lg9zq8, .framer-SXqwT .framer-9tgwg1, .framer-SXqwT .framer-hpp8z1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-18saxxk, .framer-SXqwT .framer-zotdyh, .framer-SXqwT .framer-1r0fbki, .framer-SXqwT .framer-i8s4fa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-175eiit, .framer-SXqwT .framer-1rea3j9, .framer-SXqwT .framer-svfea6, .framer-SXqwT .framer-10pujwt { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 240px; word-break: break-word; word-wrap: break-word; }\",\".framer-SXqwT .framer-ckdfn5 { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 560px; word-break: break-word; word-wrap: break-word; }\",\".framer-SXqwT .framer-lz662b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-swhrf1 { --border-bottom-width: 1.1791695356369019px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1.1791695356369019px; --border-right-width: 1.1791695356369019px; --border-style: solid; --border-top-width: 1.1791695356369019px; align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: #1c1c1c; border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; box-shadow: 0px 0.9021833539009094px 1.8043667078018188px 0px rgba(20, 21, 26, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: visible; padding: 18.86671257019043px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-1sv0dvl { flex: none; height: 21px; overflow: hidden; position: relative; width: 21px; }\",\".framer-SXqwT .framer-pvwmo5 { flex: none; height: 17px; left: 0px; position: absolute; top: calc(52.38095238095241% - 17px / 2); width: 20px; }\",\".framer-SXqwT .framer-195qdor, .framer-SXqwT .framer-4mqkmx, .framer-SXqwT .framer-93xu5y { --border-bottom-width: 1.1791695356369019px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1.1791695356369019px; --border-right-width: 1.1791695356369019px; --border-style: solid; --border-top-width: 1.1791695356369019px; align-content: center; align-items: center; align-self: stretch; background-color: #1c1c1c; border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; box-shadow: 0px 0.9021833539009094px 1.8043667078018188px 0px rgba(20, 21, 26, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: visible; padding: 18.86671257019043px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-169zuk2 { aspect-ratio: 1.0769230769230769 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); position: relative; width: 20px; }\",\".framer-SXqwT .framer-18suq76, .framer-SXqwT .framer-ha2btz { flex: none; height: 20px; position: relative; width: 22px; }\",\".framer-SXqwT .framer-dus3pu { --border-bottom-width: 1.1791695356369019px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1.1791695356369019px; --border-right-width: 1.1791695356369019px; --border-style: solid; --border-top-width: 1.1791695356369019px; align-content: center; align-items: center; background-color: #1c1c1c; 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: row; flex-wrap: nowrap; gap: 0px; height: 58px; justify-content: center; overflow: visible; padding: 18.86671257019043px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-1562nkf { flex: none; height: 15px; overflow: visible; position: relative; width: 23px; }\",\".framer-SXqwT .framer-jowres { bottom: 1px; flex: none; left: -1px; position: absolute; right: 12px; top: -1px; }\",\".framer-SXqwT .framer-1ioet2n { bottom: 0px; flex: none; left: 12px; position: absolute; right: 1px; top: 3px; }\",\".framer-SXqwT .framer-18e186p { bottom: 13px; flex: none; left: 15px; position: absolute; right: 2px; top: 0px; }\",\".framer-SXqwT .framer-1r0v57e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 50px; width: 100%; }\",\".framer-SXqwT .framer-12w3884 { align-content: center; align-items: center; background-color: #000000; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: visible; padding: 96px 0px 96px 0px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-1yo4pth { -webkit-filter: blur(240px); aspect-ratio: 1 / 1; background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, rgba(250, 197, 21, 0.5) 0%, rgba(148, 116, 12, 0.5) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(240px); flex: none; height: var(--framer-aspect-ratio-supported, 327px); left: 51%; overflow: hidden; position: absolute; top: 142px; transform: translateX(-50%); width: 327px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-SXqwT .framer-1sw5sxx { flex: none; height: 1057px; left: -195px; overflow: hidden; position: absolute; right: -196px; top: -100px; }\",\".framer-SXqwT .framer-1o0pmqs { --framer-paragraph-spacing: 48px; flex: none; height: auto; max-width: 550px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SXqwT .framer-zomu22 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-SXqwT .framer-1qe6n0t-container, .framer-SXqwT .framer-1tlagyn-container { flex: 1 0 0px; height: 558px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-erejcd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-1nbcxx7 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: stretch; background-color: #0d0d0d; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 352px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-1z0gjxq { align-content: flex-start; align-items: flex-start; background-color: #0d0d0d; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 36px 32px 36px 32px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-2rfr5j, .framer-SXqwT .framer-vteic6, .framer-SXqwT .framer-c0aqls, .framer-SXqwT .framer-1jc2uah, .framer-SXqwT .framer-11ilquq, .framer-SXqwT .framer-fpgmnm, .framer-SXqwT .framer-1wvtos3, .framer-SXqwT .framer-1b0b2so, .framer-SXqwT .framer-yyffcc, .framer-SXqwT .framer-c1bzcl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-1g8pv3e, .framer-SXqwT .framer-qgtj7w, .framer-SXqwT .framer-wossf9, .framer-SXqwT .framer-11leba0, .framer-SXqwT .framer-1nzpnrm, .framer-SXqwT .framer-1bdvdf7, .framer-SXqwT .framer-1u49rma, .framer-SXqwT .framer-lt8905, .framer-SXqwT .framer-z2f699, .framer-SXqwT .framer-9dt79h { aspect-ratio: 1 / 1; border-bottom-left-radius: 381px; border-bottom-right-radius: 381px; border-top-left-radius: 381px; border-top-right-radius: 381px; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: visible; position: relative; width: 72px; }\",\".framer-SXqwT .framer-mmujsf, .framer-SXqwT .framer-1nzjiva, .framer-SXqwT .framer-h8yecy, .framer-SXqwT .framer-jx8r8r, .framer-SXqwT .framer-z7edpv, .framer-SXqwT .framer-sw51ma { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-1xwj3ft { flex: none; height: 26px; position: relative; width: 26px; }\",\".framer-SXqwT .framer-1ke3u6z, .framer-SXqwT .framer-16hr4ea, .framer-SXqwT .framer-17yumog, .framer-SXqwT .framer-1xvxlb1, .framer-SXqwT .framer-imw2vz, .framer-SXqwT .framer-8aakrq, .framer-SXqwT .framer-nri3l4, .framer-SXqwT .framer-1figpnq, .framer-SXqwT .framer-1a1fcto, .framer-SXqwT .framer-zlsjbl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-1q1xlso, .framer-SXqwT .framer-2lawaf, .framer-SXqwT .framer-c3rtnv, .framer-SXqwT .framer-1xqwqy9, .framer-SXqwT .framer-1b31ef7, .framer-SXqwT .framer-ydhp4a, .framer-SXqwT .framer-1n0ls5j, .framer-SXqwT .framer-72k3rl, .framer-SXqwT .framer-8tpiha, .framer-SXqwT .framer-1j6dwpd, .framer-SXqwT .framer-1pe85f2, .framer-SXqwT .framer-5lfqxo, .framer-SXqwT .framer-1g2tbvu, .framer-SXqwT .framer-1jwcsh7, .framer-SXqwT .framer-pgrbm8, .framer-SXqwT .framer-i8y5vt, .framer-SXqwT .framer-wath42, .framer-SXqwT .framer-ux9yja, .framer-SXqwT .framer-1t7rlse, .framer-SXqwT .framer-7odc7j, .framer-SXqwT .framer-1s5xlmd, .framer-SXqwT .framer-11a0fju, .framer-SXqwT .framer-564ngy, .framer-SXqwT .framer-cwgd20, .framer-SXqwT .framer-13umya7, .framer-SXqwT .framer-379ylj, .framer-SXqwT .framer-tylv9q, .framer-SXqwT .framer-k5nvlp, .framer-SXqwT .framer-rzy8qo, .framer-SXqwT .framer-1kcxff0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 18px; }\",\".framer-SXqwT .framer-10cuw1g, .framer-SXqwT .framer-othb19, .framer-SXqwT .framer-187os0m, .framer-SXqwT .framer-11c7m2l, .framer-SXqwT .framer-6zro46, .framer-SXqwT .framer-1bqw5jc, .framer-SXqwT .framer-ez1n3v, .framer-SXqwT .framer-1udbj2, .framer-SXqwT .framer-r8h4n7, .framer-SXqwT .framer-1s1ohyw { -webkit-filter: blur(141.05264282226562px); aspect-ratio: 1 / 1; background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, rgba(250, 196, 20, 0.2) 0%, rgba(148, 116, 12, 0.2) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(141.05264282226562px); flex: none; height: var(--framer-aspect-ratio-supported, 268px); position: absolute; right: -11px; top: -26px; width: 268px; z-index: 1; }\",\".framer-SXqwT .framer-1aicpkd { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #0d0d0d; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 352px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-lpe6gk { align-content: flex-start; align-items: flex-start; background-color: #0d0d0d; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 496px; justify-content: center; overflow: visible; padding: 36px 32px 36px 32px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-18zhnee, .framer-SXqwT .framer-z5wlht, .framer-SXqwT .framer-fysm7y, .framer-SXqwT .framer-1xsuwnf, .framer-SXqwT .framer-po22v6, .framer-SXqwT .framer-67w620, .framer-SXqwT .framer-6ccg6o, .framer-SXqwT .framer-wtfl6y { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\".framer-SXqwT .framer-1j5qy66, .framer-SXqwT .framer-6sbnod, .framer-SXqwT .framer-vuz9f7, .framer-SXqwT .framer-1mueitl { bottom: 1px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-SXqwT .framer-javr1k, .framer-SXqwT .framer-i8587d, .framer-SXqwT .framer-13n4gv0 { flex: none; height: 22px; left: 0px; position: absolute; top: 1px; width: 24px; }\",\".framer-SXqwT .framer-cpcsqf, .framer-SXqwT .framer-1fp1nqh, .framer-SXqwT .framer-1xscuwi, .framer-SXqwT .framer-1tobjwi { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #0d0d0d; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 502px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 352px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-15nfk8d, .framer-SXqwT .framer-mvraok, .framer-SXqwT .framer-1akg2f8, .framer-SXqwT .framer-15fwgd1 { align-content: flex-start; align-items: flex-start; background-color: #0d0d0d; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: center; overflow: visible; padding: 36px 32px 36px 32px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-al8p3h, .framer-SXqwT .framer-znsgs2 { flex: none; height: 25px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-SXqwT .framer-1cav8pj, .framer-SXqwT .framer-18rayzq { bottom: 0px; flex: none; left: 6px; position: absolute; right: 0px; top: 0px; }\",\".framer-SXqwT .framer-1dv9qco, .framer-SXqwT .framer-1u4gyxk { flex: none; height: 9px; left: 9px; position: absolute; top: 8px; width: 11px; }\",\".framer-SXqwT .framer-1y2rqq9, .framer-SXqwT .framer-zuavq3 { bottom: 1px; flex: none; left: 0px; position: absolute; right: 1px; top: 15px; }\",\".framer-SXqwT .framer-fpwujg, .framer-SXqwT .framer-1amczto { bottom: 16px; flex: none; left: 0px; position: absolute; right: 1px; top: -1px; }\",\".framer-SXqwT .framer-55w443, .framer-SXqwT .framer-vmprn7 { bottom: 8px; flex: none; left: 0px; position: absolute; right: 0px; top: 8px; }\",\".framer-SXqwT .framer-zw6nfq { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-SXqwT .framer-s3ut72, .framer-SXqwT .framer-98njc5 { bottom: 1px; flex: none; left: 16px; position: absolute; right: 0px; top: 0px; }\",\".framer-SXqwT .framer-jsefzl, .framer-SXqwT .framer-1r686id { bottom: 1px; flex: none; left: 0px; position: absolute; right: 16px; top: 0px; }\",\".framer-SXqwT .framer-946moj, .framer-SXqwT .framer-1sqg7wq, .framer-SXqwT .framer-kh722q, .framer-SXqwT .framer-1lqzwqe { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #0d0d0d; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 500px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 600px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-1scjxsz, .framer-SXqwT .framer-1lyv7lo, .framer-SXqwT .framer-hhsxt5, .framer-SXqwT .framer-1un7732 { align-content: flex-start; align-items: flex-start; background-color: #0d0d0d; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: center; overflow: visible; padding: 48px 44px 48px 44px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-e6g33w, .framer-SXqwT .framer-vbed2y, .framer-SXqwT .framer-1dor8yh, .framer-SXqwT .framer-9zgl5k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-1xtbvk2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-9vr0wi, .framer-SXqwT .framer-13dhr9d, .framer-SXqwT .framer-1u7u362, .framer-SXqwT .framer-oo37ul, .framer-SXqwT .framer-rtwr2j, .framer-SXqwT .framer-1tmo0z8, .framer-SXqwT .framer-7rntxu, .framer-SXqwT .framer-1cqv5l2, .framer-SXqwT .framer-1hd4klk, .framer-SXqwT .framer-r8gp6t, .framer-SXqwT .framer-414zq, .framer-SXqwT .framer-bhqvj7, .framer-SXqwT .framer-134tf1q, .framer-SXqwT .framer-10rotx6, .framer-SXqwT .framer-155ccg1, .framer-SXqwT .framer-s0r4il, .framer-SXqwT .framer-1sd3fg0, .framer-SXqwT .framer-1rbidk1, .framer-SXqwT .framer-1x4vwrd, .framer-SXqwT .framer-uwlr1n { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-SXqwT .framer-14mzcfs { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 96px 32px 96px 32px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-SXqwT .framer-1pg8gxe { flex: none; height: 796px; left: calc(52.08333333333336% - 943px / 2); overflow: hidden; position: absolute; top: -181px; width: 943px; }\",\".framer-SXqwT .framer-1byjcap { flex: none; height: 795px; left: 0px; overflow: visible; position: absolute; right: -201px; top: calc(50.00000000000002% - 795px / 2); z-index: 0; }\",\".framer-SXqwT .framer-ysln8h { --border-bottom-width: 1.5px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: center; align-items: center; background-color: #0d0d0d; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1300px; overflow: hidden; padding: 96px 0px 96px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-SXqwT .framer-6o8fta { flex: none; height: 1295px; position: absolute; right: -914px; top: -561px; width: 2121px; z-index: 0; }\",\".framer-SXqwT .framer-6iglx6 { -webkit-filter: blur(240px); aspect-ratio: 1 / 1; background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, rgba(250, 196, 20, 0.3) 0%, rgba(148, 116, 12, 0.3) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(240px); flex: none; height: var(--framer-aspect-ratio-supported, 401px); position: absolute; right: -54px; top: -215px; width: 401px; z-index: 0; }\",\".framer-SXqwT .framer-nk3idv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-av3vpq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-176g7nc { flex: none; height: 9px; position: relative; width: 40px; }\",\".framer-SXqwT .framer-10bmuvk { --framer-paragraph-spacing: 48px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-SXqwT .framer-1j35y2s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; z-index: 1; }\",\".framer-SXqwT .framer-84tu9q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-1gkp1m9, .framer-SXqwT .framer-ksonfo, .framer-SXqwT .framer-1com3fw, .framer-SXqwT .framer-1gcmv1x, .framer-SXqwT .framer-1ghefnn, .framer-SXqwT .framer-7ewo0o { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; min-width: 320px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-7hvndn, .framer-SXqwT .framer-wpj2fh, .framer-SXqwT .framer-7r5a3v, .framer-SXqwT .framer-vffuah, .framer-SXqwT .framer-1giuiqc, .framer-SXqwT .framer-p8gbjm { aspect-ratio: 1 / 1; background-color: #ca8403; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 48px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-1f7u8jd, .framer-SXqwT .framer-1x048mb, .framer-SXqwT .framer-tbyifx, .framer-SXqwT .framer-1xsr1be, .framer-SXqwT .framer-zvcqgx { flex: none; height: 28px; left: calc(50% - 28px / 2); overflow: hidden; position: absolute; top: calc(50.168863932291664% - 28px / 2); width: 28px; }\",\".framer-SXqwT .framer-153yywn, .framer-SXqwT .framer-19zlg79, .framer-SXqwT .framer-18b0l4m { flex: none; height: 26px; left: 2px; position: absolute; top: 1px; width: 24px; }\",\".framer-SXqwT .framer-snfzw7, .framer-SXqwT .framer-1ou91iz, .framer-SXqwT .framer-h7gll5, .framer-SXqwT .framer-y0g35v, .framer-SXqwT .framer-8vsij3, .framer-SXqwT .framer-1kzmp6q { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SXqwT .framer-at2nie { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 50%; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 28px; }\",\".framer-SXqwT .framer-syk4tf { bottom: 4px; flex: none; left: 2px; position: absolute; right: 5px; top: 1px; }\",\".framer-SXqwT .framer-1ymd5p1 { bottom: 5px; flex: none; left: 4px; position: absolute; right: 5px; top: 9px; }\",\".framer-SXqwT .framer-1ywy76z { bottom: 1px; flex: none; left: 0px; position: absolute; right: 0px; top: 1px; }\",\".framer-SXqwT .framer-1wtd5je { flex: none; height: 26px; left: 4px; position: absolute; top: 1px; width: 20px; }\",\".framer-SXqwT .framer-cmkkcp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; z-index: 1; }\",\".framer-SXqwT .framer-rtsgo6 { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-60e9vz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-16jse4z { align-content: center; align-items: center; background-color: #fac414; 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: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 16px 12px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-va3rpj, .framer-SXqwT .framer-agxe2i { 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: visible; padding: 0px 2px 0px 2px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-qpseeo, .framer-SXqwT .framer-1l60jbp { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SXqwT .framer-9haoqy { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 150px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-xc5vn8 { 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 72px 0px 72px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-SXqwT .framer-1a0uwmz { --border-bottom-width: 1.5px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: center; align-items: center; background-color: #0d0d0d; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0px 1px 2px 0px rgba(20, 21, 26, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1300px; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-SXqwT .framer-y0jqi3 { -webkit-filter: blur(240px); aspect-ratio: 1 / 1; background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, #fac414 0%, rgba(148, 116, 12, 1) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(240px); flex: none; height: var(--framer-aspect-ratio-supported, 456px); left: 50%; opacity: 0.6; position: absolute; top: -260px; transform: translateX(-50%); width: 456px; z-index: 0; }\",\".framer-SXqwT .framer-96ql3i { flex: none; height: 740px; left: -277px; overflow: visible; position: absolute; right: -277px; top: -215px; z-index: 1; }\",\".framer-SXqwT .framer-1gbx9c9 { -webkit-mask: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.96) 45.4954954954955%, rgba(0, 0, 0, 0.04) 100%) add; bottom: 0px; flex: none; left: calc(49.94462901439648% - 903px / 2); mask: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.96) 45.4954954954955%, rgba(0, 0, 0, 0.04) 100%) add; overflow: visible; position: absolute; top: 0px; width: 903px; }\",\".framer-SXqwT .framer-uxftg3 { aspect-ratio: 0.9927007299270073 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 137px); overflow: visible; position: relative; width: 136px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-1qhhnyg { -webkit-filter: drop-shadow(0px 0px 60px #fac515); aspect-ratio: 0.9927007299270073 / 1; filter: drop-shadow(0px 0px 60px #fac515); flex: none; height: var(--framer-aspect-ratio-supported, 137px); left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-SXqwT .framer-eo5f7d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 650px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-SXqwT .framer-bp62j9 { align-content: center; align-items: center; background-color: #fac414; 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: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 18px 12px 18px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-SXqwT .framer-1ldd0ls { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SXqwT .framer-1wf4eme { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-SXqwT .framer-7pan1c { align-content: center; align-items: center; background-color: #0d0d0d; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 64px 120px 64px 120px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-ya0krx { 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%; }\",\".framer-SXqwT .framer-1syij4g { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 41px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-fw7pfg { flex: none; height: 41px; position: relative; text-decoration: none; width: 40px; }\",\".framer-SXqwT .framer-1u5pu6m, .framer-SXqwT .framer-2sxn0a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-cdv0nb, .framer-SXqwT .framer-zqb8je, .framer-SXqwT .framer-1gf2p63, .framer-SXqwT .framer-1pcshux, .framer-SXqwT .framer-1a0jjzx, .framer-SXqwT .framer-wilm7q { --framer-paragraph-spacing: 14px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SXqwT .framer-lmb42c { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SXqwT .framer-16al5un { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 42px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SXqwT .framer-1i570q1, .framer-SXqwT .framer-1wou95u, .framer-SXqwT .framer-zskny7, .framer-SXqwT .framer-u2pu5l, .framer-SXqwT .framer-13oirun { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #191919; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: visible; padding: 12.5px; position: relative; text-decoration: none; width: 42px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SXqwT .framer-2g0pbw { flex: none; height: 13px; left: 1px; position: absolute; top: 1px; width: 15px; }\",\".framer-SXqwT .framer-14rlxta, .framer-SXqwT .framer-1n94xeu { flex: none; height: 17px; position: relative; width: 17px; }\",\".framer-SXqwT .framer-1ub56y6 { flex: none; height: 17px; position: relative; width: 18px; }\",\".framer-SXqwT .framer-1wxj7hc { flex: none; height: 11px; overflow: visible; position: relative; width: 16px; }\",\".framer-SXqwT .framer-1prwib8 { bottom: 1px; flex: none; left: 0px; position: absolute; right: 8px; top: 0px; }\",\".framer-SXqwT .framer-ib5rf1 { bottom: 1px; flex: none; left: 8px; position: absolute; right: 0px; top: 2px; }\",\".framer-SXqwT .framer-11qotgm { bottom: 9px; flex: none; left: 10px; position: absolute; right: 2px; top: 0px; }\",\".framer-SXqwT .framer-196b6jz { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 32px 120px 32px 120px; position: relative; width: 100%; }\",\".framer-SXqwT .framer-10urc5 { --framer-paragraph-spacing: 94.96934509277344px; -webkit-backdrop-filter: blur(100px); backdrop-filter: blur(100px); flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SXqwT.framer-72rtr7, .framer-SXqwT .framer-yoc70c, .framer-SXqwT .framer-14llrot, .framer-SXqwT .framer-1bio9zy, .framer-SXqwT .framer-buite1, .framer-SXqwT .framer-17wo2k4, .framer-SXqwT .framer-1fxo5jf, .framer-SXqwT .framer-1urhq33, .framer-SXqwT .framer-156mnvb, .framer-SXqwT .framer-179brwp, .framer-SXqwT .framer-f22g92, .framer-SXqwT .framer-1vqzbrb, .framer-SXqwT .framer-1bn70ps, .framer-SXqwT .framer-1i0i660, .framer-SXqwT .framer-yi8ckh, .framer-SXqwT .framer-1kix80y, .framer-SXqwT .framer-13rqb51, .framer-SXqwT .framer-1lnwwgf, .framer-SXqwT .framer-1kqe3d2, .framer-SXqwT .framer-j8wmhq, .framer-SXqwT .framer-c0wcct, .framer-SXqwT .framer-1oaqq5h, .framer-SXqwT .framer-15bj8nl, .framer-SXqwT .framer-113e9ip, .framer-SXqwT .framer-171jsnd, .framer-SXqwT .framer-1rezq98, .framer-SXqwT .framer-1d55t3u, .framer-SXqwT .framer-7fndm7, .framer-SXqwT .framer-199rpj6, .framer-SXqwT .framer-2jc3r0, .framer-SXqwT .framer-1u4aq67, .framer-SXqwT .framer-bi276z, .framer-SXqwT .framer-2qzhs7, .framer-SXqwT .framer-b03fyw, .framer-SXqwT .framer-24jha6, .framer-SXqwT .framer-wfo7x6, .framer-SXqwT .framer-11itc2r, .framer-SXqwT .framer-1cwkj96, .framer-SXqwT .framer-1s8zfhb, .framer-SXqwT .framer-1hz0b56, .framer-SXqwT .framer-fpwz38, .framer-SXqwT .framer-15iqxj7, .framer-SXqwT .framer-1obn0my, .framer-SXqwT .framer-1abg7kh, .framer-SXqwT .framer-13w0lfj, .framer-SXqwT .framer-m65ia5, .framer-SXqwT .framer-1lb5pj0, .framer-SXqwT .framer-19tv0rp, .framer-SXqwT .framer-oh5jpr, .framer-SXqwT .framer-k878s4, .framer-SXqwT .framer-navcnu, .framer-SXqwT .framer-5kbld7, .framer-SXqwT .framer-w3ztik, .framer-SXqwT .framer-16vtbct, .framer-SXqwT .framer-193fsj2, .framer-SXqwT .framer-16y84ba, .framer-SXqwT .framer-et4qwi, .framer-SXqwT .framer-1yqd69p, .framer-SXqwT .framer-2p7yfz, .framer-SXqwT .framer-h6wopd, .framer-SXqwT .framer-kaukm1, .framer-SXqwT .framer-wa3lus, .framer-SXqwT .framer-1rjbrmo, .framer-SXqwT .framer-1sk5nul, .framer-SXqwT .framer-1xu4j7e, .framer-SXqwT .framer-32e8tj, .framer-SXqwT .framer-1m88fwv, .framer-SXqwT .framer-wca51e, .framer-SXqwT .framer-ks6q2a, .framer-SXqwT .framer-1hyzvo6, .framer-SXqwT .framer-11s30dj, .framer-SXqwT .framer-9hd3pp, .framer-SXqwT .framer-1c40kg3, .framer-SXqwT .framer-62ra0q, .framer-SXqwT .framer-lmcw7f, .framer-SXqwT .framer-ni1pq1, .framer-SXqwT .framer-2p0bqk, .framer-SXqwT .framer-1cg0176, .framer-SXqwT .framer-1tifg8i, .framer-SXqwT .framer-9yh3q, .framer-SXqwT .framer-8r1jru, .framer-SXqwT .framer-1jyg1, .framer-SXqwT .framer-jmnctw, .framer-SXqwT .framer-1jhvsmk, .framer-SXqwT .framer-mwyc1u, .framer-SXqwT .framer-18lbi3s, .framer-SXqwT .framer-110v6zk, .framer-SXqwT .framer-awhj9t, .framer-SXqwT .framer-5niycf, .framer-SXqwT .framer-fms7br, .framer-SXqwT .framer-1i4ghrk, .framer-SXqwT .framer-13w71qm, .framer-SXqwT .framer-et0ckb, .framer-SXqwT .framer-w2ckqc, .framer-SXqwT .framer-1kz88ph, .framer-SXqwT .framer-5qdxuk, .framer-SXqwT .framer-1nm33uy, .framer-SXqwT .framer-n70diq, .framer-SXqwT .framer-3x704b, .framer-SXqwT .framer-kiyrt1, .framer-SXqwT .framer-hv8jwf, .framer-SXqwT .framer-1w4ycw, .framer-SXqwT .framer-lacccd, .framer-SXqwT .framer-ju65k6, .framer-SXqwT .framer-1li6hna, .framer-SXqwT .framer-8s804z, .framer-SXqwT .framer-n4q2g8, .framer-SXqwT .framer-9s4yfs, .framer-SXqwT .framer-17s2xsl, .framer-SXqwT .framer-ub2pbc, .framer-SXqwT .framer-1iqsgbg, .framer-SXqwT .framer-1cc7vgt, .framer-SXqwT .framer-1edpxjo, .framer-SXqwT .framer-pvqp7i, .framer-SXqwT .framer-9j4nsz, .framer-SXqwT .framer-1hg345r, .framer-SXqwT .framer-1b72ly1, .framer-SXqwT .framer-127x6ig, .framer-SXqwT .framer-tu7e1r, .framer-SXqwT .framer-16a2sr0, .framer-SXqwT .framer-1gjhotp, .framer-SXqwT .framer-5ma9x3, .framer-SXqwT .framer-4kw7fe, .framer-SXqwT .framer-pbtcj4, .framer-SXqwT .framer-1hj667v, .framer-SXqwT .framer-ut5q21, .framer-SXqwT .framer-az8jhg, .framer-SXqwT .framer-1m5er2z, .framer-SXqwT .framer-cqw8fr, .framer-SXqwT .framer-joo3s4, .framer-SXqwT .framer-onpu5m, .framer-SXqwT .framer-qghlkh, .framer-SXqwT .framer-dvuizh, .framer-SXqwT .framer-glgz3j, .framer-SXqwT .framer-gvvehb, .framer-SXqwT .framer-16c6uqc, .framer-SXqwT .framer-1gatpwa, .framer-SXqwT .framer-rxjh76, .framer-SXqwT .framer-byf90s, .framer-SXqwT .framer-1ahuoc6, .framer-SXqwT .framer-1dy7ffc, .framer-SXqwT .framer-1osufiu, .framer-SXqwT .framer-1hms4v4, .framer-SXqwT .framer-1kqlni3, .framer-SXqwT .framer-1hq2g7h, .framer-SXqwT .framer-1e1zlij, .framer-SXqwT .framer-qhmobq, .framer-SXqwT .framer-1wdt3qb, .framer-SXqwT .framer-ox9pa5, .framer-SXqwT .framer-7y5qbg, .framer-SXqwT .framer-kx3cvr, .framer-SXqwT .framer-x3r16w, .framer-SXqwT .framer-120ygr1, .framer-SXqwT .framer-17eu15a, .framer-SXqwT .framer-1keknp6, .framer-SXqwT .framer-olnxgj, .framer-SXqwT .framer-pibppa, .framer-SXqwT .framer-17x5xy, .framer-SXqwT .framer-1dttzo8, .framer-SXqwT .framer-14gqqjn, .framer-SXqwT .framer-adww04, .framer-SXqwT .framer-waxfs6, .framer-SXqwT .framer-18saxxk, .framer-SXqwT .framer-16moxwy, .framer-SXqwT .framer-1lg9zq8, .framer-SXqwT .framer-zotdyh, .framer-SXqwT .framer-12i207z, .framer-SXqwT .framer-9tgwg1, .framer-SXqwT .framer-1r0fbki, .framer-SXqwT .framer-dyjjl9, .framer-SXqwT .framer-hpp8z1, .framer-SXqwT .framer-i8s4fa, .framer-SXqwT .framer-223dfl, .framer-SXqwT .framer-lz662b, .framer-SXqwT .framer-swhrf1, .framer-SXqwT .framer-195qdor, .framer-SXqwT .framer-4mqkmx, .framer-SXqwT .framer-dus3pu, .framer-SXqwT .framer-93xu5y, .framer-SXqwT .framer-1r0v57e, .framer-SXqwT .framer-12w3884, .framer-SXqwT .framer-gvq35n, .framer-SXqwT .framer-rugr6c, .framer-SXqwT .framer-2hxrnu, .framer-SXqwT .framer-zomu22, .framer-SXqwT .framer-erejcd, .framer-SXqwT .framer-1nbcxx7, .framer-SXqwT .framer-1z0gjxq, .framer-SXqwT .framer-2rfr5j, .framer-SXqwT .framer-mmujsf, .framer-SXqwT .framer-1f5ubo4, .framer-SXqwT .framer-1ke3u6z, .framer-SXqwT .framer-1aicpkd, .framer-SXqwT .framer-lpe6gk, .framer-SXqwT .framer-vteic6, .framer-SXqwT .framer-1nzjiva, .framer-SXqwT .framer-1yxc7vz, .framer-SXqwT .framer-16hr4ea, .framer-SXqwT .framer-cpcsqf, .framer-SXqwT .framer-15nfk8d, .framer-SXqwT .framer-c0aqls, .framer-SXqwT .framer-h8yecy, .framer-SXqwT .framer-73nn4v, .framer-SXqwT .framer-17yumog, .framer-SXqwT .framer-1fp1nqh, .framer-SXqwT .framer-mvraok, .framer-SXqwT .framer-1jc2uah, .framer-SXqwT .framer-jx8r8r, .framer-SXqwT .framer-tflsmi, .framer-SXqwT .framer-1xvxlb1, .framer-SXqwT .framer-1xscuwi, .framer-SXqwT .framer-1akg2f8, .framer-SXqwT .framer-11ilquq, .framer-SXqwT .framer-z7edpv, .framer-SXqwT .framer-1gytiqx, .framer-SXqwT .framer-imw2vz, .framer-SXqwT .framer-1tobjwi, .framer-SXqwT .framer-15fwgd1, .framer-SXqwT .framer-fpgmnm, .framer-SXqwT .framer-sw51ma, .framer-SXqwT .framer-1qych9k, .framer-SXqwT .framer-8aakrq, .framer-SXqwT .framer-946moj, .framer-SXqwT .framer-1scjxsz, .framer-SXqwT .framer-1wvtos3, .framer-SXqwT .framer-e6g33w, .framer-SXqwT .framer-7c5ise, .framer-SXqwT .framer-1xtbvk2, .framer-SXqwT .framer-nri3l4, .framer-SXqwT .framer-1sqg7wq, .framer-SXqwT .framer-1lyv7lo, .framer-SXqwT .framer-1b0b2so, .framer-SXqwT .framer-vbed2y, .framer-SXqwT .framer-175vgbk, .framer-SXqwT .framer-1figpnq, .framer-SXqwT .framer-kh722q, .framer-SXqwT .framer-hhsxt5, .framer-SXqwT .framer-yyffcc, .framer-SXqwT .framer-1dor8yh, .framer-SXqwT .framer-jr7kjh, .framer-SXqwT .framer-1a1fcto, .framer-SXqwT .framer-1lqzwqe, .framer-SXqwT .framer-1un7732, .framer-SXqwT .framer-c1bzcl, .framer-SXqwT .framer-9zgl5k, .framer-SXqwT .framer-282lvx, .framer-SXqwT .framer-zlsjbl, .framer-SXqwT .framer-14mzcfs, .framer-SXqwT .framer-ysln8h, .framer-SXqwT .framer-nk3idv, .framer-SXqwT .framer-av3vpq, .framer-SXqwT .framer-hr7eps, .framer-SXqwT .framer-1j35y2s, .framer-SXqwT .framer-84tu9q, .framer-SXqwT .framer-1gkp1m9, .framer-SXqwT .framer-1vo0dfv, .framer-SXqwT .framer-ksonfo, .framer-SXqwT .framer-1gti1ew, .framer-SXqwT .framer-1com3fw, .framer-SXqwT .framer-uldqhe, .framer-SXqwT .framer-1gcmv1x, .framer-SXqwT .framer-1c7na1b, .framer-SXqwT .framer-1ghefnn, .framer-SXqwT .framer-117u9zt, .framer-SXqwT .framer-7ewo0o, .framer-SXqwT .framer-1hr7ftu, .framer-SXqwT .framer-cmkkcp, .framer-SXqwT .framer-60e9vz, .framer-SXqwT .framer-16jse4z, .framer-SXqwT .framer-va3rpj, .framer-SXqwT .framer-9haoqy, .framer-SXqwT .framer-xc5vn8, .framer-SXqwT .framer-1a0uwmz, .framer-SXqwT .framer-eo5f7d, .framer-SXqwT .framer-bp62j9, .framer-SXqwT .framer-agxe2i, .framer-SXqwT .framer-1wf4eme, .framer-SXqwT .framer-7pan1c, .framer-SXqwT .framer-1syij4g, .framer-SXqwT .framer-1u5pu6m, .framer-SXqwT .framer-lmb42c, .framer-SXqwT .framer-16al5un, .framer-SXqwT .framer-1i570q1, .framer-SXqwT .framer-1wou95u, .framer-SXqwT .framer-zskny7, .framer-SXqwT .framer-u2pu5l, .framer-SXqwT .framer-13oirun, .framer-SXqwT .framer-196b6jz, .framer-SXqwT .framer-2sxn0a { gap: 0px; } .framer-SXqwT.framer-72rtr7 > *, .framer-SXqwT .framer-yoc70c > *, .framer-SXqwT .framer-14llrot > *, .framer-SXqwT .framer-1i0i660 > *, .framer-SXqwT .framer-1u4aq67 > *, .framer-SXqwT .framer-2qzhs7 > *, .framer-SXqwT .framer-24jha6 > *, .framer-SXqwT .framer-11itc2r > *, .framer-SXqwT .framer-1s8zfhb > *, .framer-SXqwT .framer-fpwz38 > *, .framer-SXqwT .framer-5ma9x3 > *, .framer-SXqwT .framer-pbtcj4 > *, .framer-SXqwT .framer-qghlkh > *, .framer-SXqwT .framer-glgz3j > *, .framer-SXqwT .framer-1kqlni3 > *, .framer-SXqwT .framer-1e1zlij > *, .framer-SXqwT .framer-qhmobq > *, .framer-SXqwT .framer-mmujsf > *, .framer-SXqwT .framer-1nzjiva > *, .framer-SXqwT .framer-h8yecy > *, .framer-SXqwT .framer-jx8r8r > *, .framer-SXqwT .framer-z7edpv > *, .framer-SXqwT .framer-sw51ma > *, .framer-SXqwT .framer-nk3idv > *, .framer-SXqwT .framer-xc5vn8 > *, .framer-SXqwT .framer-1wf4eme > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SXqwT.framer-72rtr7 > :first-child, .framer-SXqwT .framer-yoc70c > :first-child, .framer-SXqwT .framer-14llrot > :first-child, .framer-SXqwT .framer-1bio9zy > :first-child, .framer-SXqwT .framer-buite1 > :first-child, .framer-SXqwT .framer-17wo2k4 > :first-child, .framer-SXqwT .framer-1fxo5jf > :first-child, .framer-SXqwT .framer-1urhq33 > :first-child, .framer-SXqwT .framer-f22g92 > :first-child, .framer-SXqwT .framer-1vqzbrb > :first-child, .framer-SXqwT .framer-1i0i660 > :first-child, .framer-SXqwT .framer-yi8ckh > :first-child, .framer-SXqwT .framer-171jsnd > :first-child, .framer-SXqwT .framer-1rezq98 > :first-child, .framer-SXqwT .framer-7fndm7 > :first-child, .framer-SXqwT .framer-199rpj6 > :first-child, .framer-SXqwT .framer-1u4aq67 > :first-child, .framer-SXqwT .framer-bi276z > :first-child, .framer-SXqwT .framer-2qzhs7 > :first-child, .framer-SXqwT .framer-b03fyw > :first-child, .framer-SXqwT .framer-24jha6 > :first-child, .framer-SXqwT .framer-wfo7x6 > :first-child, .framer-SXqwT .framer-11itc2r > :first-child, .framer-SXqwT .framer-1cwkj96 > :first-child, .framer-SXqwT .framer-1s8zfhb > :first-child, .framer-SXqwT .framer-1hz0b56 > :first-child, .framer-SXqwT .framer-fpwz38 > :first-child, .framer-SXqwT .framer-16a2sr0 > :first-child, .framer-SXqwT .framer-5ma9x3 > :first-child, .framer-SXqwT .framer-4kw7fe > :first-child, .framer-SXqwT .framer-pbtcj4 > :first-child, .framer-SXqwT .framer-ut5q21 > :first-child, .framer-SXqwT .framer-az8jhg > :first-child, .framer-SXqwT .framer-cqw8fr > :first-child, .framer-SXqwT .framer-joo3s4 > :first-child, .framer-SXqwT .framer-onpu5m > :first-child, .framer-SXqwT .framer-qghlkh > :first-child, .framer-SXqwT .framer-dvuizh > :first-child, .framer-SXqwT .framer-glgz3j > :first-child, .framer-SXqwT .framer-1gatpwa > :first-child, .framer-SXqwT .framer-byf90s > :first-child, .framer-SXqwT .framer-1ahuoc6 > :first-child, .framer-SXqwT .framer-1osufiu > :first-child, .framer-SXqwT .framer-1hms4v4 > :first-child, .framer-SXqwT .framer-1kqlni3 > :first-child, .framer-SXqwT .framer-1hq2g7h > :first-child, .framer-SXqwT .framer-1e1zlij > :first-child, .framer-SXqwT .framer-qhmobq > :first-child, .framer-SXqwT .framer-1wdt3qb > :first-child, .framer-SXqwT .framer-ox9pa5 > :first-child, .framer-SXqwT .framer-7y5qbg > :first-child, .framer-SXqwT .framer-kx3cvr > :first-child, .framer-SXqwT .framer-120ygr1 > :first-child, .framer-SXqwT .framer-17eu15a > :first-child, .framer-SXqwT .framer-pibppa > :first-child, .framer-SXqwT .framer-17x5xy > :first-child, .framer-SXqwT .framer-waxfs6 > :first-child, .framer-SXqwT .framer-18saxxk > :first-child, .framer-SXqwT .framer-1lg9zq8 > :first-child, .framer-SXqwT .framer-zotdyh > :first-child, .framer-SXqwT .framer-9tgwg1 > :first-child, .framer-SXqwT .framer-1r0fbki > :first-child, .framer-SXqwT .framer-hpp8z1 > :first-child, .framer-SXqwT .framer-i8s4fa > :first-child, .framer-SXqwT .framer-223dfl > :first-child, .framer-SXqwT .framer-12w3884 > :first-child, .framer-SXqwT .framer-gvq35n > :first-child, .framer-SXqwT .framer-2hxrnu > :first-child, .framer-SXqwT .framer-1z0gjxq > :first-child, .framer-SXqwT .framer-2rfr5j > :first-child, .framer-SXqwT .framer-mmujsf > :first-child, .framer-SXqwT .framer-lpe6gk > :first-child, .framer-SXqwT .framer-vteic6 > :first-child, .framer-SXqwT .framer-1nzjiva > :first-child, .framer-SXqwT .framer-15nfk8d > :first-child, .framer-SXqwT .framer-c0aqls > :first-child, .framer-SXqwT .framer-h8yecy > :first-child, .framer-SXqwT .framer-mvraok > :first-child, .framer-SXqwT .framer-1jc2uah > :first-child, .framer-SXqwT .framer-jx8r8r > :first-child, .framer-SXqwT .framer-1akg2f8 > :first-child, .framer-SXqwT .framer-11ilquq > :first-child, .framer-SXqwT .framer-z7edpv > :first-child, .framer-SXqwT .framer-15fwgd1 > :first-child, .framer-SXqwT .framer-fpgmnm > :first-child, .framer-SXqwT .framer-sw51ma > :first-child, .framer-SXqwT .framer-1scjxsz > :first-child, .framer-SXqwT .framer-1wvtos3 > :first-child, .framer-SXqwT .framer-e6g33w > :first-child, .framer-SXqwT .framer-1xtbvk2 > :first-child, .framer-SXqwT .framer-1lyv7lo > :first-child, .framer-SXqwT .framer-1b0b2so > :first-child, .framer-SXqwT .framer-vbed2y > :first-child, .framer-SXqwT .framer-hhsxt5 > :first-child, .framer-SXqwT .framer-yyffcc > :first-child, .framer-SXqwT .framer-1dor8yh > :first-child, .framer-SXqwT .framer-1un7732 > :first-child, .framer-SXqwT .framer-c1bzcl > :first-child, .framer-SXqwT .framer-9zgl5k > :first-child, .framer-SXqwT .framer-14mzcfs > :first-child, .framer-SXqwT .framer-ysln8h > :first-child, .framer-SXqwT .framer-nk3idv > :first-child, .framer-SXqwT .framer-av3vpq > :first-child, .framer-SXqwT .framer-1j35y2s > :first-child, .framer-SXqwT .framer-1gkp1m9 > :first-child, .framer-SXqwT .framer-1vo0dfv > :first-child, .framer-SXqwT .framer-ksonfo > :first-child, .framer-SXqwT .framer-1gti1ew > :first-child, .framer-SXqwT .framer-1com3fw > :first-child, .framer-SXqwT .framer-uldqhe > :first-child, .framer-SXqwT .framer-1gcmv1x > :first-child, .framer-SXqwT .framer-1c7na1b > :first-child, .framer-SXqwT .framer-1ghefnn > :first-child, .framer-SXqwT .framer-117u9zt > :first-child, .framer-SXqwT .framer-7ewo0o > :first-child, .framer-SXqwT .framer-1hr7ftu > :first-child, .framer-SXqwT .framer-cmkkcp > :first-child, .framer-SXqwT .framer-60e9vz > :first-child, .framer-SXqwT .framer-9haoqy > :first-child, .framer-SXqwT .framer-xc5vn8 > :first-child, .framer-SXqwT .framer-1a0uwmz > :first-child, .framer-SXqwT .framer-eo5f7d > :first-child, .framer-SXqwT .framer-1wf4eme > :first-child, .framer-SXqwT .framer-7pan1c > :first-child, .framer-SXqwT .framer-196b6jz > :first-child { margin-top: 0px; } .framer-SXqwT.framer-72rtr7 > :last-child, .framer-SXqwT .framer-yoc70c > :last-child, .framer-SXqwT .framer-14llrot > :last-child, .framer-SXqwT .framer-1bio9zy > :last-child, .framer-SXqwT .framer-buite1 > :last-child, .framer-SXqwT .framer-17wo2k4 > :last-child, .framer-SXqwT .framer-1fxo5jf > :last-child, .framer-SXqwT .framer-1urhq33 > :last-child, .framer-SXqwT .framer-f22g92 > :last-child, .framer-SXqwT .framer-1vqzbrb > :last-child, .framer-SXqwT .framer-1i0i660 > :last-child, .framer-SXqwT .framer-yi8ckh > :last-child, .framer-SXqwT .framer-171jsnd > :last-child, .framer-SXqwT .framer-1rezq98 > :last-child, .framer-SXqwT .framer-7fndm7 > :last-child, .framer-SXqwT .framer-199rpj6 > :last-child, .framer-SXqwT .framer-1u4aq67 > :last-child, .framer-SXqwT .framer-bi276z > :last-child, .framer-SXqwT .framer-2qzhs7 > :last-child, .framer-SXqwT .framer-b03fyw > :last-child, .framer-SXqwT .framer-24jha6 > :last-child, .framer-SXqwT .framer-wfo7x6 > :last-child, .framer-SXqwT .framer-11itc2r > :last-child, .framer-SXqwT .framer-1cwkj96 > :last-child, .framer-SXqwT .framer-1s8zfhb > :last-child, .framer-SXqwT .framer-1hz0b56 > :last-child, .framer-SXqwT .framer-fpwz38 > :last-child, .framer-SXqwT .framer-16a2sr0 > :last-child, .framer-SXqwT .framer-5ma9x3 > :last-child, .framer-SXqwT .framer-4kw7fe > :last-child, .framer-SXqwT .framer-pbtcj4 > :last-child, .framer-SXqwT .framer-ut5q21 > :last-child, .framer-SXqwT .framer-az8jhg > :last-child, .framer-SXqwT .framer-cqw8fr > :last-child, .framer-SXqwT .framer-joo3s4 > :last-child, .framer-SXqwT .framer-onpu5m > :last-child, .framer-SXqwT .framer-qghlkh > :last-child, .framer-SXqwT .framer-dvuizh > :last-child, .framer-SXqwT .framer-glgz3j > :last-child, .framer-SXqwT .framer-1gatpwa > :last-child, .framer-SXqwT .framer-byf90s > :last-child, .framer-SXqwT .framer-1ahuoc6 > :last-child, .framer-SXqwT .framer-1osufiu > :last-child, .framer-SXqwT .framer-1hms4v4 > :last-child, .framer-SXqwT .framer-1kqlni3 > :last-child, .framer-SXqwT .framer-1hq2g7h > :last-child, .framer-SXqwT .framer-1e1zlij > :last-child, .framer-SXqwT .framer-qhmobq > :last-child, .framer-SXqwT .framer-1wdt3qb > :last-child, .framer-SXqwT .framer-ox9pa5 > :last-child, .framer-SXqwT .framer-7y5qbg > :last-child, .framer-SXqwT .framer-kx3cvr > :last-child, .framer-SXqwT .framer-120ygr1 > :last-child, .framer-SXqwT .framer-17eu15a > :last-child, .framer-SXqwT .framer-pibppa > :last-child, .framer-SXqwT .framer-17x5xy > :last-child, .framer-SXqwT .framer-waxfs6 > :last-child, .framer-SXqwT .framer-18saxxk > :last-child, .framer-SXqwT .framer-1lg9zq8 > :last-child, .framer-SXqwT .framer-zotdyh > :last-child, .framer-SXqwT .framer-9tgwg1 > :last-child, .framer-SXqwT .framer-1r0fbki > :last-child, .framer-SXqwT .framer-hpp8z1 > :last-child, .framer-SXqwT .framer-i8s4fa > :last-child, .framer-SXqwT .framer-223dfl > :last-child, .framer-SXqwT .framer-12w3884 > :last-child, .framer-SXqwT .framer-gvq35n > :last-child, .framer-SXqwT .framer-2hxrnu > :last-child, .framer-SXqwT .framer-1z0gjxq > :last-child, .framer-SXqwT .framer-2rfr5j > :last-child, .framer-SXqwT .framer-mmujsf > :last-child, .framer-SXqwT .framer-lpe6gk > :last-child, .framer-SXqwT .framer-vteic6 > :last-child, .framer-SXqwT .framer-1nzjiva > :last-child, .framer-SXqwT .framer-15nfk8d > :last-child, .framer-SXqwT .framer-c0aqls > :last-child, .framer-SXqwT .framer-h8yecy > :last-child, .framer-SXqwT .framer-mvraok > :last-child, .framer-SXqwT .framer-1jc2uah > :last-child, .framer-SXqwT .framer-jx8r8r > :last-child, .framer-SXqwT .framer-1akg2f8 > :last-child, .framer-SXqwT .framer-11ilquq > :last-child, .framer-SXqwT .framer-z7edpv > :last-child, .framer-SXqwT .framer-15fwgd1 > :last-child, .framer-SXqwT .framer-fpgmnm > :last-child, .framer-SXqwT .framer-sw51ma > :last-child, .framer-SXqwT .framer-1scjxsz > :last-child, .framer-SXqwT .framer-1wvtos3 > :last-child, .framer-SXqwT .framer-e6g33w > :last-child, .framer-SXqwT .framer-1xtbvk2 > :last-child, .framer-SXqwT .framer-1lyv7lo > :last-child, .framer-SXqwT .framer-1b0b2so > :last-child, .framer-SXqwT .framer-vbed2y > :last-child, .framer-SXqwT .framer-hhsxt5 > :last-child, .framer-SXqwT .framer-yyffcc > :last-child, .framer-SXqwT .framer-1dor8yh > :last-child, .framer-SXqwT .framer-1un7732 > :last-child, .framer-SXqwT .framer-c1bzcl > :last-child, .framer-SXqwT .framer-9zgl5k > :last-child, .framer-SXqwT .framer-14mzcfs > :last-child, .framer-SXqwT .framer-ysln8h > :last-child, .framer-SXqwT .framer-nk3idv > :last-child, .framer-SXqwT .framer-av3vpq > :last-child, .framer-SXqwT .framer-1j35y2s > :last-child, .framer-SXqwT .framer-1gkp1m9 > :last-child, .framer-SXqwT .framer-1vo0dfv > :last-child, .framer-SXqwT .framer-ksonfo > :last-child, .framer-SXqwT .framer-1gti1ew > :last-child, .framer-SXqwT .framer-1com3fw > :last-child, .framer-SXqwT .framer-uldqhe > :last-child, .framer-SXqwT .framer-1gcmv1x > :last-child, .framer-SXqwT .framer-1c7na1b > :last-child, .framer-SXqwT .framer-1ghefnn > :last-child, .framer-SXqwT .framer-117u9zt > :last-child, .framer-SXqwT .framer-7ewo0o > :last-child, .framer-SXqwT .framer-1hr7ftu > :last-child, .framer-SXqwT .framer-cmkkcp > :last-child, .framer-SXqwT .framer-60e9vz > :last-child, .framer-SXqwT .framer-9haoqy > :last-child, .framer-SXqwT .framer-xc5vn8 > :last-child, .framer-SXqwT .framer-1a0uwmz > :last-child, .framer-SXqwT .framer-eo5f7d > :last-child, .framer-SXqwT .framer-1wf4eme > :last-child, .framer-SXqwT .framer-7pan1c > :last-child, .framer-SXqwT .framer-196b6jz > :last-child { margin-bottom: 0px; } .framer-SXqwT .framer-1bio9zy > *, .framer-SXqwT .framer-171jsnd > *, .framer-SXqwT .framer-byf90s > *, .framer-SXqwT .framer-120ygr1 > *, .framer-SXqwT .framer-14mzcfs > *, .framer-SXqwT .framer-ysln8h > *, .framer-SXqwT .framer-1j35y2s > *, .framer-SXqwT .framer-196b6jz > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-SXqwT .framer-buite1 > *, .framer-SXqwT .framer-17wo2k4 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-SXqwT .framer-1fxo5jf > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-SXqwT .framer-1urhq33 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-SXqwT .framer-156mnvb > *, .framer-SXqwT .framer-1d55t3u > *, .framer-SXqwT .framer-1dy7ffc > *, .framer-SXqwT .framer-1dttzo8 > *, .framer-SXqwT .framer-rugr6c > *, .framer-SXqwT .framer-1f5ubo4 > *, .framer-SXqwT .framer-1yxc7vz > *, .framer-SXqwT .framer-73nn4v > *, .framer-SXqwT .framer-tflsmi > *, .framer-SXqwT .framer-1gytiqx > *, .framer-SXqwT .framer-1qych9k > *, .framer-SXqwT .framer-7c5ise > *, .framer-SXqwT .framer-175vgbk > *, .framer-SXqwT .framer-jr7kjh > *, .framer-SXqwT .framer-282lvx > *, .framer-SXqwT .framer-hr7eps > *, .framer-SXqwT .framer-16al5un > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-SXqwT .framer-156mnvb > :first-child, .framer-SXqwT .framer-179brwp > :first-child, .framer-SXqwT .framer-1bn70ps > :first-child, .framer-SXqwT .framer-1kix80y > :first-child, .framer-SXqwT .framer-13rqb51 > :first-child, .framer-SXqwT .framer-1lnwwgf > :first-child, .framer-SXqwT .framer-1kqe3d2 > :first-child, .framer-SXqwT .framer-j8wmhq > :first-child, .framer-SXqwT .framer-c0wcct > :first-child, .framer-SXqwT .framer-1oaqq5h > :first-child, .framer-SXqwT .framer-15bj8nl > :first-child, .framer-SXqwT .framer-113e9ip > :first-child, .framer-SXqwT .framer-1d55t3u > :first-child, .framer-SXqwT .framer-2jc3r0 > :first-child, .framer-SXqwT .framer-15iqxj7 > :first-child, .framer-SXqwT .framer-1obn0my > :first-child, .framer-SXqwT .framer-1abg7kh > :first-child, .framer-SXqwT .framer-13w0lfj > :first-child, .framer-SXqwT .framer-m65ia5 > :first-child, .framer-SXqwT .framer-1lb5pj0 > :first-child, .framer-SXqwT .framer-19tv0rp > :first-child, .framer-SXqwT .framer-oh5jpr > :first-child, .framer-SXqwT .framer-k878s4 > :first-child, .framer-SXqwT .framer-navcnu > :first-child, .framer-SXqwT .framer-5kbld7 > :first-child, .framer-SXqwT .framer-w3ztik > :first-child, .framer-SXqwT .framer-16vtbct > :first-child, .framer-SXqwT .framer-193fsj2 > :first-child, .framer-SXqwT .framer-16y84ba > :first-child, .framer-SXqwT .framer-et4qwi > :first-child, .framer-SXqwT .framer-1yqd69p > :first-child, .framer-SXqwT .framer-2p7yfz > :first-child, .framer-SXqwT .framer-h6wopd > :first-child, .framer-SXqwT .framer-kaukm1 > :first-child, .framer-SXqwT .framer-wa3lus > :first-child, .framer-SXqwT .framer-1rjbrmo > :first-child, .framer-SXqwT .framer-1sk5nul > :first-child, .framer-SXqwT .framer-1xu4j7e > :first-child, .framer-SXqwT .framer-32e8tj > :first-child, .framer-SXqwT .framer-1m88fwv > :first-child, .framer-SXqwT .framer-wca51e > :first-child, .framer-SXqwT .framer-ks6q2a > :first-child, .framer-SXqwT .framer-1hyzvo6 > :first-child, .framer-SXqwT .framer-11s30dj > :first-child, .framer-SXqwT .framer-9hd3pp > :first-child, .framer-SXqwT .framer-1c40kg3 > :first-child, .framer-SXqwT .framer-62ra0q > :first-child, .framer-SXqwT .framer-lmcw7f > :first-child, .framer-SXqwT .framer-ni1pq1 > :first-child, .framer-SXqwT .framer-2p0bqk > :first-child, .framer-SXqwT .framer-1cg0176 > :first-child, .framer-SXqwT .framer-1tifg8i > :first-child, .framer-SXqwT .framer-9yh3q > :first-child, .framer-SXqwT .framer-8r1jru > :first-child, .framer-SXqwT .framer-1jyg1 > :first-child, .framer-SXqwT .framer-jmnctw > :first-child, .framer-SXqwT .framer-1jhvsmk > :first-child, .framer-SXqwT .framer-mwyc1u > :first-child, .framer-SXqwT .framer-18lbi3s > :first-child, .framer-SXqwT .framer-110v6zk > :first-child, .framer-SXqwT .framer-awhj9t > :first-child, .framer-SXqwT .framer-5niycf > :first-child, .framer-SXqwT .framer-fms7br > :first-child, .framer-SXqwT .framer-1i4ghrk > :first-child, .framer-SXqwT .framer-13w71qm > :first-child, .framer-SXqwT .framer-et0ckb > :first-child, .framer-SXqwT .framer-w2ckqc > :first-child, .framer-SXqwT .framer-1kz88ph > :first-child, .framer-SXqwT .framer-5qdxuk > :first-child, .framer-SXqwT .framer-1nm33uy > :first-child, .framer-SXqwT .framer-n70diq > :first-child, .framer-SXqwT .framer-3x704b > :first-child, .framer-SXqwT .framer-kiyrt1 > :first-child, .framer-SXqwT .framer-hv8jwf > :first-child, .framer-SXqwT .framer-1w4ycw > :first-child, .framer-SXqwT .framer-lacccd > :first-child, .framer-SXqwT .framer-ju65k6 > :first-child, .framer-SXqwT .framer-1li6hna > :first-child, .framer-SXqwT .framer-8s804z > :first-child, .framer-SXqwT .framer-n4q2g8 > :first-child, .framer-SXqwT .framer-9s4yfs > :first-child, .framer-SXqwT .framer-17s2xsl > :first-child, .framer-SXqwT .framer-ub2pbc > :first-child, .framer-SXqwT .framer-1iqsgbg > :first-child, .framer-SXqwT .framer-1cc7vgt > :first-child, .framer-SXqwT .framer-1edpxjo > :first-child, .framer-SXqwT .framer-pvqp7i > :first-child, .framer-SXqwT .framer-9j4nsz > :first-child, .framer-SXqwT .framer-1hg345r > :first-child, .framer-SXqwT .framer-1b72ly1 > :first-child, .framer-SXqwT .framer-127x6ig > :first-child, .framer-SXqwT .framer-tu7e1r > :first-child, .framer-SXqwT .framer-1gjhotp > :first-child, .framer-SXqwT .framer-1hj667v > :first-child, .framer-SXqwT .framer-1m5er2z > :first-child, .framer-SXqwT .framer-gvvehb > :first-child, .framer-SXqwT .framer-16c6uqc > :first-child, .framer-SXqwT .framer-rxjh76 > :first-child, .framer-SXqwT .framer-1dy7ffc > :first-child, .framer-SXqwT .framer-x3r16w > :first-child, .framer-SXqwT .framer-1keknp6 > :first-child, .framer-SXqwT .framer-olnxgj > :first-child, .framer-SXqwT .framer-1dttzo8 > :first-child, .framer-SXqwT .framer-14gqqjn > :first-child, .framer-SXqwT .framer-adww04 > :first-child, .framer-SXqwT .framer-16moxwy > :first-child, .framer-SXqwT .framer-12i207z > :first-child, .framer-SXqwT .framer-dyjjl9 > :first-child, .framer-SXqwT .framer-lz662b > :first-child, .framer-SXqwT .framer-swhrf1 > :first-child, .framer-SXqwT .framer-195qdor > :first-child, .framer-SXqwT .framer-4mqkmx > :first-child, .framer-SXqwT .framer-dus3pu > :first-child, .framer-SXqwT .framer-93xu5y > :first-child, .framer-SXqwT .framer-1r0v57e > :first-child, .framer-SXqwT .framer-rugr6c > :first-child, .framer-SXqwT .framer-zomu22 > :first-child, .framer-SXqwT .framer-erejcd > :first-child, .framer-SXqwT .framer-1nbcxx7 > :first-child, .framer-SXqwT .framer-1f5ubo4 > :first-child, .framer-SXqwT .framer-1ke3u6z > :first-child, .framer-SXqwT .framer-1aicpkd > :first-child, .framer-SXqwT .framer-1yxc7vz > :first-child, .framer-SXqwT .framer-16hr4ea > :first-child, .framer-SXqwT .framer-cpcsqf > :first-child, .framer-SXqwT .framer-73nn4v > :first-child, .framer-SXqwT .framer-17yumog > :first-child, .framer-SXqwT .framer-1fp1nqh > :first-child, .framer-SXqwT .framer-tflsmi > :first-child, .framer-SXqwT .framer-1xvxlb1 > :first-child, .framer-SXqwT .framer-1xscuwi > :first-child, .framer-SXqwT .framer-1gytiqx > :first-child, .framer-SXqwT .framer-imw2vz > :first-child, .framer-SXqwT .framer-1tobjwi > :first-child, .framer-SXqwT .framer-1qych9k > :first-child, .framer-SXqwT .framer-8aakrq > :first-child, .framer-SXqwT .framer-946moj > :first-child, .framer-SXqwT .framer-7c5ise > :first-child, .framer-SXqwT .framer-nri3l4 > :first-child, .framer-SXqwT .framer-1sqg7wq > :first-child, .framer-SXqwT .framer-175vgbk > :first-child, .framer-SXqwT .framer-1figpnq > :first-child, .framer-SXqwT .framer-kh722q > :first-child, .framer-SXqwT .framer-jr7kjh > :first-child, .framer-SXqwT .framer-1a1fcto > :first-child, .framer-SXqwT .framer-1lqzwqe > :first-child, .framer-SXqwT .framer-282lvx > :first-child, .framer-SXqwT .framer-zlsjbl > :first-child, .framer-SXqwT .framer-hr7eps > :first-child, .framer-SXqwT .framer-84tu9q > :first-child, .framer-SXqwT .framer-16jse4z > :first-child, .framer-SXqwT .framer-va3rpj > :first-child, .framer-SXqwT .framer-bp62j9 > :first-child, .framer-SXqwT .framer-agxe2i > :first-child, .framer-SXqwT .framer-1syij4g > :first-child, .framer-SXqwT .framer-1u5pu6m > :first-child, .framer-SXqwT .framer-lmb42c > :first-child, .framer-SXqwT .framer-16al5un > :first-child, .framer-SXqwT .framer-1i570q1 > :first-child, .framer-SXqwT .framer-1wou95u > :first-child, .framer-SXqwT .framer-zskny7 > :first-child, .framer-SXqwT .framer-u2pu5l > :first-child, .framer-SXqwT .framer-13oirun > :first-child, .framer-SXqwT .framer-2sxn0a > :first-child { margin-left: 0px; } .framer-SXqwT .framer-156mnvb > :last-child, .framer-SXqwT .framer-179brwp > :last-child, .framer-SXqwT .framer-1bn70ps > :last-child, .framer-SXqwT .framer-1kix80y > :last-child, .framer-SXqwT .framer-13rqb51 > :last-child, .framer-SXqwT .framer-1lnwwgf > :last-child, .framer-SXqwT .framer-1kqe3d2 > :last-child, .framer-SXqwT .framer-j8wmhq > :last-child, .framer-SXqwT .framer-c0wcct > :last-child, .framer-SXqwT .framer-1oaqq5h > :last-child, .framer-SXqwT .framer-15bj8nl > :last-child, .framer-SXqwT .framer-113e9ip > :last-child, .framer-SXqwT .framer-1d55t3u > :last-child, .framer-SXqwT .framer-2jc3r0 > :last-child, .framer-SXqwT .framer-15iqxj7 > :last-child, .framer-SXqwT .framer-1obn0my > :last-child, .framer-SXqwT .framer-1abg7kh > :last-child, .framer-SXqwT .framer-13w0lfj > :last-child, .framer-SXqwT .framer-m65ia5 > :last-child, .framer-SXqwT .framer-1lb5pj0 > :last-child, .framer-SXqwT .framer-19tv0rp > :last-child, .framer-SXqwT .framer-oh5jpr > :last-child, .framer-SXqwT .framer-k878s4 > :last-child, .framer-SXqwT .framer-navcnu > :last-child, .framer-SXqwT .framer-5kbld7 > :last-child, .framer-SXqwT .framer-w3ztik > :last-child, .framer-SXqwT .framer-16vtbct > :last-child, .framer-SXqwT .framer-193fsj2 > :last-child, .framer-SXqwT .framer-16y84ba > :last-child, .framer-SXqwT .framer-et4qwi > :last-child, .framer-SXqwT .framer-1yqd69p > :last-child, .framer-SXqwT .framer-2p7yfz > :last-child, .framer-SXqwT .framer-h6wopd > :last-child, .framer-SXqwT .framer-kaukm1 > :last-child, .framer-SXqwT .framer-wa3lus > :last-child, .framer-SXqwT .framer-1rjbrmo > :last-child, .framer-SXqwT .framer-1sk5nul > :last-child, .framer-SXqwT .framer-1xu4j7e > :last-child, .framer-SXqwT .framer-32e8tj > :last-child, .framer-SXqwT .framer-1m88fwv > :last-child, .framer-SXqwT .framer-wca51e > :last-child, .framer-SXqwT .framer-ks6q2a > :last-child, .framer-SXqwT .framer-1hyzvo6 > :last-child, .framer-SXqwT .framer-11s30dj > :last-child, .framer-SXqwT .framer-9hd3pp > :last-child, .framer-SXqwT .framer-1c40kg3 > :last-child, .framer-SXqwT .framer-62ra0q > :last-child, .framer-SXqwT .framer-lmcw7f > :last-child, .framer-SXqwT .framer-ni1pq1 > :last-child, .framer-SXqwT .framer-2p0bqk > :last-child, .framer-SXqwT .framer-1cg0176 > :last-child, .framer-SXqwT .framer-1tifg8i > :last-child, .framer-SXqwT .framer-9yh3q > :last-child, .framer-SXqwT .framer-8r1jru > :last-child, .framer-SXqwT .framer-1jyg1 > :last-child, .framer-SXqwT .framer-jmnctw > :last-child, .framer-SXqwT .framer-1jhvsmk > :last-child, .framer-SXqwT .framer-mwyc1u > :last-child, .framer-SXqwT .framer-18lbi3s > :last-child, .framer-SXqwT .framer-110v6zk > :last-child, .framer-SXqwT .framer-awhj9t > :last-child, .framer-SXqwT .framer-5niycf > :last-child, .framer-SXqwT .framer-fms7br > :last-child, .framer-SXqwT .framer-1i4ghrk > :last-child, .framer-SXqwT .framer-13w71qm > :last-child, .framer-SXqwT .framer-et0ckb > :last-child, .framer-SXqwT .framer-w2ckqc > :last-child, .framer-SXqwT .framer-1kz88ph > :last-child, .framer-SXqwT .framer-5qdxuk > :last-child, .framer-SXqwT .framer-1nm33uy > :last-child, .framer-SXqwT .framer-n70diq > :last-child, .framer-SXqwT .framer-3x704b > :last-child, .framer-SXqwT .framer-kiyrt1 > :last-child, .framer-SXqwT .framer-hv8jwf > :last-child, .framer-SXqwT .framer-1w4ycw > :last-child, .framer-SXqwT .framer-lacccd > :last-child, .framer-SXqwT .framer-ju65k6 > :last-child, .framer-SXqwT .framer-1li6hna > :last-child, .framer-SXqwT .framer-8s804z > :last-child, .framer-SXqwT .framer-n4q2g8 > :last-child, .framer-SXqwT .framer-9s4yfs > :last-child, .framer-SXqwT .framer-17s2xsl > :last-child, .framer-SXqwT .framer-ub2pbc > :last-child, .framer-SXqwT .framer-1iqsgbg > :last-child, .framer-SXqwT .framer-1cc7vgt > :last-child, .framer-SXqwT .framer-1edpxjo > :last-child, .framer-SXqwT .framer-pvqp7i > :last-child, .framer-SXqwT .framer-9j4nsz > :last-child, .framer-SXqwT .framer-1hg345r > :last-child, .framer-SXqwT .framer-1b72ly1 > :last-child, .framer-SXqwT .framer-127x6ig > :last-child, .framer-SXqwT .framer-tu7e1r > :last-child, .framer-SXqwT .framer-1gjhotp > :last-child, .framer-SXqwT .framer-1hj667v > :last-child, .framer-SXqwT .framer-1m5er2z > :last-child, .framer-SXqwT .framer-gvvehb > :last-child, .framer-SXqwT .framer-16c6uqc > :last-child, .framer-SXqwT .framer-rxjh76 > :last-child, .framer-SXqwT .framer-1dy7ffc > :last-child, .framer-SXqwT .framer-x3r16w > :last-child, .framer-SXqwT .framer-1keknp6 > :last-child, .framer-SXqwT .framer-olnxgj > :last-child, .framer-SXqwT .framer-1dttzo8 > :last-child, .framer-SXqwT .framer-14gqqjn > :last-child, .framer-SXqwT .framer-adww04 > :last-child, .framer-SXqwT .framer-16moxwy > :last-child, .framer-SXqwT .framer-12i207z > :last-child, .framer-SXqwT .framer-dyjjl9 > :last-child, .framer-SXqwT .framer-lz662b > :last-child, .framer-SXqwT .framer-swhrf1 > :last-child, .framer-SXqwT .framer-195qdor > :last-child, .framer-SXqwT .framer-4mqkmx > :last-child, .framer-SXqwT .framer-dus3pu > :last-child, .framer-SXqwT .framer-93xu5y > :last-child, .framer-SXqwT .framer-1r0v57e > :last-child, .framer-SXqwT .framer-rugr6c > :last-child, .framer-SXqwT .framer-zomu22 > :last-child, .framer-SXqwT .framer-erejcd > :last-child, .framer-SXqwT .framer-1nbcxx7 > :last-child, .framer-SXqwT .framer-1f5ubo4 > :last-child, .framer-SXqwT .framer-1ke3u6z > :last-child, .framer-SXqwT .framer-1aicpkd > :last-child, .framer-SXqwT .framer-1yxc7vz > :last-child, .framer-SXqwT .framer-16hr4ea > :last-child, .framer-SXqwT .framer-cpcsqf > :last-child, .framer-SXqwT .framer-73nn4v > :last-child, .framer-SXqwT .framer-17yumog > :last-child, .framer-SXqwT .framer-1fp1nqh > :last-child, .framer-SXqwT .framer-tflsmi > :last-child, .framer-SXqwT .framer-1xvxlb1 > :last-child, .framer-SXqwT .framer-1xscuwi > :last-child, .framer-SXqwT .framer-1gytiqx > :last-child, .framer-SXqwT .framer-imw2vz > :last-child, .framer-SXqwT .framer-1tobjwi > :last-child, .framer-SXqwT .framer-1qych9k > :last-child, .framer-SXqwT .framer-8aakrq > :last-child, .framer-SXqwT .framer-946moj > :last-child, .framer-SXqwT .framer-7c5ise > :last-child, .framer-SXqwT .framer-nri3l4 > :last-child, .framer-SXqwT .framer-1sqg7wq > :last-child, .framer-SXqwT .framer-175vgbk > :last-child, .framer-SXqwT .framer-1figpnq > :last-child, .framer-SXqwT .framer-kh722q > :last-child, .framer-SXqwT .framer-jr7kjh > :last-child, .framer-SXqwT .framer-1a1fcto > :last-child, .framer-SXqwT .framer-1lqzwqe > :last-child, .framer-SXqwT .framer-282lvx > :last-child, .framer-SXqwT .framer-zlsjbl > :last-child, .framer-SXqwT .framer-hr7eps > :last-child, .framer-SXqwT .framer-84tu9q > :last-child, .framer-SXqwT .framer-16jse4z > :last-child, .framer-SXqwT .framer-va3rpj > :last-child, .framer-SXqwT .framer-bp62j9 > :last-child, .framer-SXqwT .framer-agxe2i > :last-child, .framer-SXqwT .framer-1syij4g > :last-child, .framer-SXqwT .framer-1u5pu6m > :last-child, .framer-SXqwT .framer-lmb42c > :last-child, .framer-SXqwT .framer-16al5un > :last-child, .framer-SXqwT .framer-1i570q1 > :last-child, .framer-SXqwT .framer-1wou95u > :last-child, .framer-SXqwT .framer-zskny7 > :last-child, .framer-SXqwT .framer-u2pu5l > :last-child, .framer-SXqwT .framer-13oirun > :last-child, .framer-SXqwT .framer-2sxn0a > :last-child { margin-right: 0px; } .framer-SXqwT .framer-179brwp > * { margin: 0px; margin-left: calc(3.200000047683716px / 2); margin-right: calc(3.200000047683716px / 2); } .framer-SXqwT .framer-f22g92 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-SXqwT .framer-1vqzbrb > *, .framer-SXqwT .framer-1rezq98 > *, .framer-SXqwT .framer-1ahuoc6 > *, .framer-SXqwT .framer-gvq35n > *, .framer-SXqwT .framer-1z0gjxq > *, .framer-SXqwT .framer-lpe6gk > *, .framer-SXqwT .framer-15nfk8d > *, .framer-SXqwT .framer-mvraok > *, .framer-SXqwT .framer-1akg2f8 > *, .framer-SXqwT .framer-15fwgd1 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-SXqwT .framer-1bn70ps > *, .framer-SXqwT .framer-lz662b > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-SXqwT .framer-yi8ckh > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-SXqwT .framer-1kix80y > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-SXqwT .framer-13rqb51 > * { margin: 0px; margin-left: calc(7.508148193359375px / 2); margin-right: calc(7.508148193359375px / 2); } .framer-SXqwT .framer-1lnwwgf > * { margin: 0px; margin-left: calc(8.316372871398926px / 2); margin-right: calc(8.316372871398926px / 2); } .framer-SXqwT .framer-1kqe3d2 > *, .framer-SXqwT .framer-j8wmhq > * { margin: 0px; margin-left: calc(8.249994277954102px / 2); margin-right: calc(8.249994277954102px / 2); } .framer-SXqwT .framer-c0wcct > *, .framer-SXqwT .framer-1oaqq5h > *, .framer-SXqwT .framer-113e9ip > *, .framer-SXqwT .framer-rxjh76 > *, .framer-SXqwT .framer-x3r16w > *, .framer-SXqwT .framer-1r0v57e > *, .framer-SXqwT .framer-1syij4g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SXqwT .framer-15bj8nl > *, .framer-SXqwT .framer-1obn0my > *, .framer-SXqwT .framer-13w0lfj > *, .framer-SXqwT .framer-oh5jpr > *, .framer-SXqwT .framer-5kbld7 > *, .framer-SXqwT .framer-193fsj2 > *, .framer-SXqwT .framer-1yqd69p > *, .framer-SXqwT .framer-kaukm1 > *, .framer-SXqwT .framer-1sk5nul > *, .framer-SXqwT .framer-1m88fwv > *, .framer-SXqwT .framer-ks6q2a > *, .framer-SXqwT .framer-11s30dj > *, .framer-SXqwT .framer-lmcw7f > *, .framer-SXqwT .framer-1cg0176 > *, .framer-SXqwT .framer-8r1jru > *, .framer-SXqwT .framer-1jhvsmk > *, .framer-SXqwT .framer-110v6zk > *, .framer-SXqwT .framer-fms7br > *, .framer-SXqwT .framer-et0ckb > *, .framer-SXqwT .framer-1kz88ph > *, .framer-SXqwT .framer-1nm33uy > *, .framer-SXqwT .framer-hv8jwf > *, .framer-SXqwT .framer-ju65k6 > *, .framer-SXqwT .framer-n4q2g8 > *, .framer-SXqwT .framer-ub2pbc > *, .framer-SXqwT .framer-1edpxjo > *, .framer-SXqwT .framer-1hg345r > *, .framer-SXqwT .framer-tu7e1r > *, .framer-SXqwT .framer-adww04 > *, .framer-SXqwT .framer-16moxwy > *, .framer-SXqwT .framer-12i207z > *, .framer-SXqwT .framer-dyjjl9 > *, .framer-SXqwT .framer-swhrf1 > *, .framer-SXqwT .framer-195qdor > *, .framer-SXqwT .framer-4mqkmx > *, .framer-SXqwT .framer-dus3pu > *, .framer-SXqwT .framer-93xu5y > *, .framer-SXqwT .framer-va3rpj > *, .framer-SXqwT .framer-agxe2i > *, .framer-SXqwT .framer-1i570q1 > *, .framer-SXqwT .framer-1wou95u > *, .framer-SXqwT .framer-zskny7 > *, .framer-SXqwT .framer-u2pu5l > *, .framer-SXqwT .framer-13oirun > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-SXqwT .framer-7fndm7 > *, .framer-SXqwT .framer-1osufiu > *, .framer-SXqwT .framer-17x5xy > *, .framer-SXqwT .framer-waxfs6 > *, .framer-SXqwT .framer-1lg9zq8 > *, .framer-SXqwT .framer-9tgwg1 > *, .framer-SXqwT .framer-hpp8z1 > *, .framer-SXqwT .framer-223dfl > *, .framer-SXqwT .framer-2hxrnu > *, .framer-SXqwT .framer-1gkp1m9 > *, .framer-SXqwT .framer-ksonfo > *, .framer-SXqwT .framer-1com3fw > *, .framer-SXqwT .framer-1gcmv1x > *, .framer-SXqwT .framer-1ghefnn > *, .framer-SXqwT .framer-7ewo0o > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-SXqwT .framer-199rpj6 > *, .framer-SXqwT .framer-pibppa > *, .framer-SXqwT .framer-1a0uwmz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-SXqwT .framer-2jc3r0 > *, .framer-SXqwT .framer-erejcd > *, .framer-SXqwT .framer-1nbcxx7 > *, .framer-SXqwT .framer-1aicpkd > *, .framer-SXqwT .framer-cpcsqf > *, .framer-SXqwT .framer-1fp1nqh > *, .framer-SXqwT .framer-1xscuwi > *, .framer-SXqwT .framer-1tobjwi > *, .framer-SXqwT .framer-946moj > *, .framer-SXqwT .framer-1sqg7wq > *, .framer-SXqwT .framer-kh722q > *, .framer-SXqwT .framer-1lqzwqe > *, .framer-SXqwT .framer-1u5pu6m > *, .framer-SXqwT .framer-lmb42c > *, .framer-SXqwT .framer-2sxn0a > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-SXqwT .framer-bi276z > *, .framer-SXqwT .framer-wfo7x6 > *, .framer-SXqwT .framer-1hz0b56 > *, .framer-SXqwT .framer-4kw7fe > *, .framer-SXqwT .framer-ut5q21 > *, .framer-SXqwT .framer-az8jhg > *, .framer-SXqwT .framer-dvuizh > *, .framer-SXqwT .framer-1hq2g7h > *, .framer-SXqwT .framer-18saxxk > *, .framer-SXqwT .framer-zotdyh > *, .framer-SXqwT .framer-1r0fbki > *, .framer-SXqwT .framer-i8s4fa > *, .framer-SXqwT .framer-e6g33w > *, .framer-SXqwT .framer-vbed2y > *, .framer-SXqwT .framer-1dor8yh > *, .framer-SXqwT .framer-9zgl5k > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-SXqwT .framer-b03fyw > *, .framer-SXqwT .framer-1cwkj96 > *, .framer-SXqwT .framer-16a2sr0 > *, .framer-SXqwT .framer-onpu5m > *, .framer-SXqwT .framer-1gatpwa > *, .framer-SXqwT .framer-1hms4v4 > *, .framer-SXqwT .framer-1xtbvk2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-SXqwT .framer-15iqxj7 > *, .framer-SXqwT .framer-1abg7kh > * { margin: 0px; margin-left: calc(8.312397003173828px / 2); margin-right: calc(8.312397003173828px / 2); } .framer-SXqwT .framer-m65ia5 > * { margin: 0px; margin-left: calc(21.9748764px / 2); margin-right: calc(21.9748764px / 2); } .framer-SXqwT .framer-1lb5pj0 > *, .framer-SXqwT .framer-k878s4 > *, .framer-SXqwT .framer-w3ztik > *, .framer-SXqwT .framer-16y84ba > *, .framer-SXqwT .framer-2p7yfz > *, .framer-SXqwT .framer-wa3lus > *, .framer-SXqwT .framer-1xu4j7e > * { margin: 0px; margin-left: calc(9.974876403808594px / 2); margin-right: calc(9.974876403808594px / 2); } .framer-SXqwT .framer-19tv0rp > *, .framer-SXqwT .framer-navcnu > *, .framer-SXqwT .framer-16vtbct > *, .framer-SXqwT .framer-et4qwi > *, .framer-SXqwT .framer-h6wopd > *, .framer-SXqwT .framer-1rjbrmo > *, .framer-SXqwT .framer-32e8tj > * { margin: 0px; margin-left: calc(2.7415671348571777px / 2); margin-right: calc(2.7415671348571777px / 2); } .framer-SXqwT .framer-wca51e > *, .framer-SXqwT .framer-1hyzvo6 > * { margin: 0px; margin-left: calc(6.398209571838379px / 2); margin-right: calc(6.398209571838379px / 2); } .framer-SXqwT .framer-9hd3pp > * { margin: 0px; margin-left: calc(19.6778517px / 2); margin-right: calc(19.6778517px / 2); } .framer-SXqwT .framer-1c40kg3 > *, .framer-SXqwT .framer-ni1pq1 > *, .framer-SXqwT .framer-1tifg8i > *, .framer-SXqwT .framer-1jyg1 > *, .framer-SXqwT .framer-mwyc1u > *, .framer-SXqwT .framer-awhj9t > *, .framer-SXqwT .framer-1i4ghrk > * { margin: 0px; margin-left: calc(7.677851676940918px / 2); margin-right: calc(7.677851676940918px / 2); } .framer-SXqwT .framer-62ra0q > *, .framer-SXqwT .framer-2p0bqk > *, .framer-SXqwT .framer-9yh3q > *, .framer-SXqwT .framer-jmnctw > *, .framer-SXqwT .framer-18lbi3s > *, .framer-SXqwT .framer-5niycf > *, .framer-SXqwT .framer-13w71qm > * { margin: 0px; margin-left: calc(2.110236167907715px / 2); margin-right: calc(2.110236167907715px / 2); } .framer-SXqwT .framer-w2ckqc > *, .framer-SXqwT .framer-5qdxuk > * { margin: 0px; margin-left: calc(4.3565592765808105px / 2); margin-right: calc(4.3565592765808105px / 2); } .framer-SXqwT .framer-n70diq > * { margin: 0px; margin-left: calc(12.6449609px / 2); margin-right: calc(12.6449609px / 2); } .framer-SXqwT .framer-3x704b > *, .framer-SXqwT .framer-1w4ycw > *, .framer-SXqwT .framer-1li6hna > *, .framer-SXqwT .framer-9s4yfs > *, .framer-SXqwT .framer-1iqsgbg > *, .framer-SXqwT .framer-pvqp7i > *, .framer-SXqwT .framer-1b72ly1 > * { margin: 0px; margin-left: calc(4.644960880279541px / 2); margin-right: calc(4.644960880279541px / 2); } .framer-SXqwT .framer-kiyrt1 > *, .framer-SXqwT .framer-lacccd > *, .framer-SXqwT .framer-8s804z > *, .framer-SXqwT .framer-17s2xsl > *, .framer-SXqwT .framer-1cc7vgt > *, .framer-SXqwT .framer-9j4nsz > *, .framer-SXqwT .framer-127x6ig > * { margin: 0px; margin-left: calc(1.2766547203063965px / 2); margin-right: calc(1.2766547203063965px / 2); } .framer-SXqwT .framer-1gjhotp > *, .framer-SXqwT .framer-1hj667v > *, .framer-SXqwT .framer-olnxgj > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-SXqwT .framer-1m5er2z > * { margin: 0px; margin-left: calc(26.267391204833984px / 2); margin-right: calc(26.267391204833984px / 2); } .framer-SXqwT .framer-cqw8fr > *, .framer-SXqwT .framer-joo3s4 > * { margin: 0px; margin-bottom: calc(2.1889493465423584px / 2); margin-top: calc(2.1889493465423584px / 2); } .framer-SXqwT .framer-gvvehb > * { margin: 0px; margin-left: calc(64.69966125488281px / 2); margin-right: calc(64.69966125488281px / 2); } .framer-SXqwT .framer-16c6uqc > * { margin: 0px; margin-left: calc(39.089378356933594px / 2); margin-right: calc(39.089378356933594px / 2); } .framer-SXqwT .framer-1wdt3qb > *, .framer-SXqwT .framer-2rfr5j > *, .framer-SXqwT .framer-vteic6 > *, .framer-SXqwT .framer-c0aqls > *, .framer-SXqwT .framer-1jc2uah > *, .framer-SXqwT .framer-11ilquq > *, .framer-SXqwT .framer-fpgmnm > *, .framer-SXqwT .framer-1wvtos3 > *, .framer-SXqwT .framer-1b0b2so > *, .framer-SXqwT .framer-yyffcc > *, .framer-SXqwT .framer-c1bzcl > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-SXqwT .framer-ox9pa5 > *, .framer-SXqwT .framer-17eu15a > *, .framer-SXqwT .framer-1scjxsz > *, .framer-SXqwT .framer-1lyv7lo > *, .framer-SXqwT .framer-hhsxt5 > *, .framer-SXqwT .framer-1un7732 > *, .framer-SXqwT .framer-cmkkcp > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-SXqwT .framer-7y5qbg > *, .framer-SXqwT .framer-kx3cvr > *, .framer-SXqwT .framer-1vo0dfv > *, .framer-SXqwT .framer-1gti1ew > *, .framer-SXqwT .framer-uldqhe > *, .framer-SXqwT .framer-1c7na1b > *, .framer-SXqwT .framer-117u9zt > *, .framer-SXqwT .framer-1hr7ftu > *, .framer-SXqwT .framer-60e9vz > *, .framer-SXqwT .framer-eo5f7d > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-SXqwT .framer-1keknp6 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-SXqwT .framer-14gqqjn > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-SXqwT .framer-12w3884 > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-SXqwT .framer-zomu22 > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-SXqwT .framer-1ke3u6z > *, .framer-SXqwT .framer-16hr4ea > *, .framer-SXqwT .framer-17yumog > *, .framer-SXqwT .framer-1xvxlb1 > *, .framer-SXqwT .framer-imw2vz > *, .framer-SXqwT .framer-8aakrq > *, .framer-SXqwT .framer-nri3l4 > *, .framer-SXqwT .framer-1figpnq > *, .framer-SXqwT .framer-1a1fcto > *, .framer-SXqwT .framer-zlsjbl > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-SXqwT .framer-av3vpq > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-SXqwT .framer-84tu9q > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-SXqwT .framer-16jse4z > *, .framer-SXqwT .framer-bp62j9 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-SXqwT .framer-9haoqy > * { margin: 0px; margin-bottom: calc(150px / 2); margin-top: calc(150px / 2); } .framer-SXqwT .framer-7pan1c > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-SXqwT[data-border=\"true\"]::after, .framer-SXqwT [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: 810px) and (max-width: 1439px) { .framer-SXqwT.framer-72rtr7 { width: 810px; } .framer-SXqwT .framer-f22g92 { gap: 28px; max-width: 600px; } .framer-SXqwT .framer-5yey0b { max-width: 700px; } .framer-SXqwT .framer-nhg947 { max-width: 450px; } .framer-SXqwT .framer-1d09smo { left: -1px; top: 44px; } .framer-SXqwT .framer-gi6vpv-container { height: var(--framer-aspect-ratio-supported, 37px); } .framer-SXqwT .framer-2jc3r0, .framer-SXqwT .framer-olnxgj { flex-direction: column; height: min-content; } .framer-SXqwT .framer-1u4aq67, .framer-SXqwT .framer-24jha6 { flex: none; height: 646px; width: 100%; } .framer-SXqwT .framer-1mj0o7q { bottom: -74px; left: unset; right: -9px; } .framer-SXqwT .framer-4r8kt { left: calc(55.636896046852144% - 665px / 2); } .framer-SXqwT .framer-xzp735 { bottom: -199px; right: -128px; } .framer-SXqwT .framer-1dv6ibb { left: calc(57.97950219619329% - 665px / 2); } .framer-SXqwT .framer-v9av23 { bottom: -138px; right: -153px; } .framer-SXqwT .framer-rgzruc { right: -196px; } .framer-SXqwT .framer-1gjhotp { flex-direction: column; } .framer-SXqwT .framer-5ma9x3, .framer-SXqwT .framer-qghlkh, .framer-SXqwT .framer-wl3u0u { flex: none; width: 100%; } .framer-SXqwT .framer-1b2jaux { height: var(--framer-aspect-ratio-supported, 1011px); } .framer-SXqwT .framer-1k9lxq7 { -webkit-mask: radial-gradient(75% 50% at 50% 50%, #000000 0%, rgba(0,0,0,0) 100%) add; mask: radial-gradient(75% 50% at 50% 50%, #000000 0%, rgba(0,0,0,0) 100%) add; } .framer-SXqwT .framer-byf90s { padding: 96px 0px 72px 0px; } .framer-SXqwT .framer-1w2nb3z { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-SXqwT .framer-1e1zlij { height: var(--framer-aspect-ratio-supported, 448px); } .framer-SXqwT .framer-113ytii { height: var(--framer-aspect-ratio-supported, 964px); } .framer-SXqwT .framer-pibppa { flex: none; height: min-content; width: 100%; } .framer-SXqwT .framer-223dfl { align-content: center; align-items: center; } .framer-SXqwT .framer-169zuk2 { height: var(--framer-aspect-ratio-supported, 18px); } .framer-SXqwT .framer-1pg8gxe { left: unset; right: -24px; top: -141px; width: 530px; } .framer-SXqwT .framer-1byjcap { right: -614px; top: calc(51.005025125628165% - 795px / 2); } .framer-SXqwT .framer-176g7nc, .framer-SXqwT .framer-7pan1c { order: 0; } .framer-SXqwT .framer-10bmuvk, .framer-SXqwT .framer-196b6jz { order: 1; } .framer-SXqwT .framer-9haoqy { gap: 120px; } .framer-SXqwT .framer-xc5vn8 { padding: 0px 32px 0px 32px; } .framer-SXqwT .framer-uxftg3 { height: var(--framer-aspect-ratio-supported, 100px); width: 99px; } .framer-SXqwT .framer-1qhhnyg { bottom: 0px; height: unset; left: 50%; right: unset; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 87px); } .framer-SXqwT .framer-ya0krx { flex-direction: column; gap: 40px; justify-content: center; } .framer-SXqwT .framer-1syij4g { align-content: center; align-items: center; flex: none; justify-content: center; width: 100%; } .framer-SXqwT .framer-lmb42c { flex: none; justify-content: center; width: 100%; } .framer-SXqwT .framer-10urc5 { order: 2; white-space: pre-wrap; width: 855px; word-break: break-word; word-wrap: break-word; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SXqwT .framer-f22g92, .framer-SXqwT .framer-2jc3r0, .framer-SXqwT .framer-1gjhotp, .framer-SXqwT .framer-olnxgj, .framer-SXqwT .framer-9haoqy, .framer-SXqwT .framer-ya0krx { gap: 0px; } .framer-SXqwT .framer-f22g92 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-SXqwT .framer-f22g92 > :first-child, .framer-SXqwT .framer-2jc3r0 > :first-child, .framer-SXqwT .framer-1gjhotp > :first-child, .framer-SXqwT .framer-olnxgj > :first-child, .framer-SXqwT .framer-9haoqy > :first-child, .framer-SXqwT .framer-ya0krx > :first-child { margin-top: 0px; } .framer-SXqwT .framer-f22g92 > :last-child, .framer-SXqwT .framer-2jc3r0 > :last-child, .framer-SXqwT .framer-1gjhotp > :last-child, .framer-SXqwT .framer-olnxgj > :last-child, .framer-SXqwT .framer-9haoqy > :last-child, .framer-SXqwT .framer-ya0krx > :last-child { margin-bottom: 0px; } .framer-SXqwT .framer-2jc3r0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-SXqwT .framer-1gjhotp > *, .framer-SXqwT .framer-olnxgj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-SXqwT .framer-9haoqy > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-SXqwT .framer-ya0krx > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\",\"@media (max-width: 809px) { .framer-SXqwT.framer-72rtr7 { width: 375px; } .framer-SXqwT .framer-qye2y3-container { left: 0px; position: fixed; right: 0px; width: unset; } .framer-SXqwT .framer-yoc70c { padding: 56px 0px 0px 0px; } .framer-SXqwT .framer-1bio9zy { padding: 132px 0px 72px 0px; } .framer-SXqwT .framer-buite1, .framer-SXqwT .framer-199rpj6, .framer-SXqwT .framer-1ahuoc6, .framer-SXqwT .framer-17eu15a, .framer-SXqwT .framer-gvq35n, .framer-SXqwT .framer-nk3idv, .framer-SXqwT .framer-1j35y2s, .framer-SXqwT .framer-cmkkcp, .framer-SXqwT .framer-xc5vn8 { padding: 0px 20px 0px 20px; } .framer-SXqwT .framer-156mnvb { gap: 8px; } .framer-SXqwT .framer-1w9i3b, .framer-SXqwT .framer-1vel000, .framer-SXqwT .framer-zrx5gl, .framer-SXqwT .framer-1l189oy, .framer-SXqwT .framer-d025n6 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 16px); } .framer-SXqwT .framer-c8l2cm { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 13px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 13px; } .framer-SXqwT .framer-60dbwd { aspect-ratio: 1.0625 / 1; height: var(--framer-aspect-ratio-supported, 13px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 13px; } .framer-SXqwT .framer-1msbnrq, .framer-SXqwT .framer-15et33x, .framer-SXqwT .framer-xbayet { aspect-ratio: 1.0625 / 1; height: var(--framer-aspect-ratio-supported, 13px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 14px; } .framer-SXqwT .framer-f22g92, .framer-SXqwT .framer-ox9pa5 { gap: 28px; } .framer-SXqwT .framer-1vqzbrb { gap: 16px; } .framer-SXqwT .framer-1kix80y { justify-content: flex-start; padding: 0px; } .framer-SXqwT .framer-gi6vpv-container { aspect-ratio: unset; height: 51px; } .framer-SXqwT .framer-171jsnd, .framer-SXqwT .framer-byf90s { padding: 72px 0px 72px 0px; } .framer-SXqwT .framer-7fndm7 { height: min-content; padding: 0px 20px 0px 20px; } .framer-SXqwT .framer-2jc3r0 { flex-direction: column; height: min-content; } .framer-SXqwT .framer-1u4aq67, .framer-SXqwT .framer-24jha6, .framer-SXqwT .framer-5ma9x3, .framer-SXqwT .framer-qghlkh { flex: none; height: 600px; width: 100%; } .framer-SXqwT .framer-1hl5vpb { height: var(--framer-aspect-ratio-supported, 449px); left: -148px; right: -14px; width: unset; z-index: 2; } .framer-SXqwT .framer-rgzruc, .framer-SXqwT .framer-1ffwwoa { order: 3; } .framer-SXqwT .framer-165dd2b, .framer-SXqwT .framer-1m5er2z { order: 2; } .framer-SXqwT .framer-1s8zfhb { height: 600px; } .framer-SXqwT .framer-9c8wx0 { bottom: -377px; left: -84px; right: -85px; transform: unset; width: unset; } .framer-SXqwT .framer-1gjhotp, .framer-SXqwT .framer-84tu9q, .framer-SXqwT .framer-ya0krx { flex-direction: column; } .framer-SXqwT .framer-1b2jaux { height: var(--framer-aspect-ratio-supported, 584px); order: 0; } .framer-SXqwT .framer-80epkh, .framer-SXqwT .framer-hv6mm0 { -webkit-filter: drop-shadow(0px 1px 42px rgba(250, 197, 21, 0.6)); filter: drop-shadow(0px 1px 42px rgba(250, 197, 21, 0.6)); } .framer-SXqwT .framer-16l5y1n { height: 27px; } .framer-SXqwT .framer-no38cp { order: 1; } .framer-SXqwT .framer-1k9lxq7 { -webkit-mask: radial-gradient(75% 50% at 50% 50%, #000000 0%, rgba(0,0,0,0) 100%) add; mask: radial-gradient(75% 50% at 50% 50%, #000000 0%, rgba(0,0,0,0) 100%) add; } .framer-SXqwT .framer-1nfe1qj { order: 6; z-index: 2; } .framer-SXqwT .framer-tgvk9f { order: 5; } .framer-SXqwT .framer-1w2nb3z { gap: 24px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-SXqwT .framer-1kqlni3 { padding: 0px 0px 16px 0px; } .framer-SXqwT .framer-1hq2g7h { padding: 20px; } .framer-SXqwT .framer-1e1zlij { aspect-ratio: unset; height: 224px; } .framer-SXqwT .framer-1wdt3qb { padding: 0px 20px 8px 20px; } .framer-SXqwT .framer-1knxiyd, .framer-SXqwT .framer-ckdfn5, .framer-SXqwT .framer-2sxn0a { width: 100%; } .framer-SXqwT .framer-olnxgj { flex-direction: column; height: min-content; padding: 0px 8px 0px 8px; } .framer-SXqwT .framer-wl3u0u { flex: none; height: 461px; width: 100%; } .framer-SXqwT .framer-pgorpx { bottom: unset; height: var(--framer-aspect-ratio-supported, 460px); left: 46%; top: 49%; transform: translate(-50%, -50%); width: 320px; } .framer-SXqwT .framer-pibppa { flex: none; height: min-content; width: 100%; } .framer-SXqwT .framer-223dfl { align-content: center; align-items: center; } .framer-SXqwT .framer-lz662b { align-content: center; align-items: center; flex-wrap: wrap; width: 100%; } .framer-SXqwT .framer-swhrf1, .framer-SXqwT .framer-195qdor, .framer-SXqwT .framer-4mqkmx, .framer-SXqwT .framer-93xu5y { align-self: unset; height: 59px; min-width: 47px; width: 59px; } .framer-SXqwT .framer-dus3pu { min-width: 47px; width: 60px; } .framer-SXqwT .framer-12w3884 { gap: 62px; } .framer-SXqwT .framer-14mzcfs { padding: 72px 20px 72px 20px; } .framer-SXqwT .framer-ysln8h { padding: 96px 0px 40px 0px; } .framer-SXqwT .framer-1gkp1m9, .framer-SXqwT .framer-ksonfo, .framer-SXqwT .framer-1com3fw, .framer-SXqwT .framer-1gcmv1x, .framer-SXqwT .framer-1ghefnn, .framer-SXqwT .framer-7ewo0o { flex: none; min-width: unset; width: 100%; } .framer-SXqwT .framer-rtsgo6 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-SXqwT .framer-60e9vz { flex: none; width: 100%; } .framer-SXqwT .framer-16jse4z { padding: 10px 16px 10px 16px; } .framer-SXqwT .framer-9haoqy { gap: 76px; } .framer-SXqwT .framer-1a0uwmz { padding: 80px 12px 80px 12px; } .framer-SXqwT .framer-uxftg3 { height: var(--framer-aspect-ratio-supported, 100px); width: 99px; } .framer-SXqwT .framer-1qhhnyg { bottom: 0px; height: unset; left: 49%; right: unset; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 93px); } .framer-SXqwT .framer-7pan1c { padding: 64px 32px 64px 32px; } .framer-SXqwT .framer-1syij4g { align-content: center; align-items: center; flex: none; height: min-content; justify-content: center; width: 100%; } .framer-SXqwT .framer-1u5pu6m { flex-wrap: wrap; padding: 24px 0px 0px 0px; width: 100%; } .framer-SXqwT .framer-lmb42c { flex: none; flex-direction: column; justify-content: center; padding: 28px 0px 0px 0px; width: 100%; } .framer-SXqwT .framer-196b6jz { justify-content: flex-start; padding: 32px; } .framer-SXqwT .framer-1l60jbp { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SXqwT .framer-156mnvb, .framer-SXqwT .framer-f22g92, .framer-SXqwT .framer-1vqzbrb, .framer-SXqwT .framer-2jc3r0, .framer-SXqwT .framer-1gjhotp, .framer-SXqwT .framer-1w2nb3z, .framer-SXqwT .framer-ox9pa5, .framer-SXqwT .framer-olnxgj, .framer-SXqwT .framer-12w3884, .framer-SXqwT .framer-84tu9q, .framer-SXqwT .framer-rtsgo6, .framer-SXqwT .framer-9haoqy, .framer-SXqwT .framer-ya0krx, .framer-SXqwT .framer-lmb42c { gap: 0px; } .framer-SXqwT .framer-156mnvb > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-SXqwT .framer-156mnvb > :first-child { margin-left: 0px; } .framer-SXqwT .framer-156mnvb > :last-child { margin-right: 0px; } .framer-SXqwT .framer-f22g92 > *, .framer-SXqwT .framer-ox9pa5 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-SXqwT .framer-f22g92 > :first-child, .framer-SXqwT .framer-1vqzbrb > :first-child, .framer-SXqwT .framer-2jc3r0 > :first-child, .framer-SXqwT .framer-1gjhotp > :first-child, .framer-SXqwT .framer-ox9pa5 > :first-child, .framer-SXqwT .framer-olnxgj > :first-child, .framer-SXqwT .framer-12w3884 > :first-child, .framer-SXqwT .framer-84tu9q > :first-child, .framer-SXqwT .framer-rtsgo6 > :first-child, .framer-SXqwT .framer-9haoqy > :first-child, .framer-SXqwT .framer-lmb42c > :first-child { margin-top: 0px; } .framer-SXqwT .framer-f22g92 > :last-child, .framer-SXqwT .framer-1vqzbrb > :last-child, .framer-SXqwT .framer-2jc3r0 > :last-child, .framer-SXqwT .framer-1gjhotp > :last-child, .framer-SXqwT .framer-ox9pa5 > :last-child, .framer-SXqwT .framer-olnxgj > :last-child, .framer-SXqwT .framer-12w3884 > :last-child, .framer-SXqwT .framer-84tu9q > :last-child, .framer-SXqwT .framer-rtsgo6 > :last-child, .framer-SXqwT .framer-9haoqy > :last-child, .framer-SXqwT .framer-lmb42c > :last-child { margin-bottom: 0px; } .framer-SXqwT .framer-1vqzbrb > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-SXqwT .framer-2jc3r0 > *, .framer-SXqwT .framer-rtsgo6 > *, .framer-SXqwT .framer-lmb42c > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-SXqwT .framer-1gjhotp > *, .framer-SXqwT .framer-olnxgj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-SXqwT .framer-1w2nb3z > *, .framer-SXqwT .framer-1w2nb3z > :first-child, .framer-SXqwT .framer-1w2nb3z > :last-child, .framer-SXqwT .framer-ya0krx > *, .framer-SXqwT .framer-ya0krx > :first-child, .framer-SXqwT .framer-ya0krx > :last-child { margin: 0px; } .framer-SXqwT .framer-12w3884 > * { margin: 0px; margin-bottom: calc(62px / 2); margin-top: calc(62px / 2); } .framer-SXqwT .framer-84tu9q > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-SXqwT .framer-9haoqy > * { margin: 0px; margin-bottom: calc(76px / 2); margin-top: calc(76px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11512\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Wkn4_KGI2\":{\"layout\":[\"fixed\",\"auto\"]},\"qLnD6Bhgn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"I17927:107294;17922:24328\":{\"pattern\":\":I17927:107294;17922:24328\",\"name\":\"hero\"},\"uAW0DtC4j\":{\"pattern\":\":uAW0DtC4j\",\"name\":\"services\"},\"OJ1pVrqFa\":{\"pattern\":\":OJ1pVrqFa\",\"name\":\"projects\"},\"DqzSnJZEo\":{\"pattern\":\":DqzSnJZEo\",\"name\":\"aboutme\"},\"qiXvhcMDy\":{\"pattern\":\":qiXvhcMDy\",\"name\":\"testimonials\"},\"lyjipYUw7\":{\"pattern\":\":lyjipYUw7\",\"name\":\"faq\"},\"uMptkc89c\":{\"pattern\":\":uMptkc89c\",\"name\":\"cta\"},\"u6vcKxpWd\":{\"pattern\":\":u6vcKxpWd\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-SXqwT\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:11512,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Syne\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6hR47NCV5Z.woff2\",weight:\"400\"},{family:\"Syne\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6hR47NCV5Z.woff2\",weight:\"600\"},{family:\"Syne\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_0KuT6hR47NCV5Z.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/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:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPhKxiZtxFMQWXgSQ.woff2\",weight:\"600\"},{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:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Brolink Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/nU7X4u0iq25JfM4KoUPygRnoUD0.woff2\"}]},...NavBarFonts,...ButtonHeroViewProjectsFonts,...ButtonHeroPrimaryFonts,...TickerFonts,...ProjectCardButtonFonts,...ButtonViewAllProjectsFonts,...CounterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Wkn4_KGI2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qLnD6Bhgn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"11512\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerScrollSections\":\"{\\\"I17927:107294;17922:24328\\\":{\\\"pattern\\\":\\\":I17927:107294;17922:24328\\\",\\\"name\\\":\\\"hero\\\"},\\\"uAW0DtC4j\\\":{\\\"pattern\\\":\\\":uAW0DtC4j\\\",\\\"name\\\":\\\"services\\\"},\\\"OJ1pVrqFa\\\":{\\\"pattern\\\":\\\":OJ1pVrqFa\\\",\\\"name\\\":\\\"projects\\\"},\\\"DqzSnJZEo\\\":{\\\"pattern\\\":\\\":DqzSnJZEo\\\",\\\"name\\\":\\\"aboutme\\\"},\\\"qiXvhcMDy\\\":{\\\"pattern\\\":\\\":qiXvhcMDy\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"lyjipYUw7\\\":{\\\"pattern\\\":\\\":lyjipYUw7\\\",\\\"name\\\":\\\"faq\\\"},\\\"uMptkc89c\\\":{\\\"pattern\\\":\\\":uMptkc89c\\\",\\\"name\\\":\\\"cta\\\"},\\\"u6vcKxpWd\\\":{\\\"pattern\\\":\\\":u6vcKxpWd\\\",\\\"name\\\":\\\"footer\\\"}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU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AAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,M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",
  "names": ["CounterStyles", "Counter", "props", "start", "end", "speed", "gapSize", "prefixText", "suffixText", "prefixFont", "suffixFont", "prefixColor", "suffixColor", "loop", "decimalSeparatorType", "textSize", "selectedFont", "textColor", "startOnViewport", "restartOnViewport", "incrementType", "count", "setCount", "ye", "isVisible", "setIsVisible", "containerRef", "pe", "ue", "observer", "entries", "entry", "updateCount", "increment", "prevCount", "nextCount", "intervalId", "formatNumber", "number", "u", "motion", "p", "addPropertyControls", "ControlType", "noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "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", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "hover", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "YcCi4qMpZ", "hq_LiJhy_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1mixrna", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "SVG", "css", "FramernAlVyBz5_", "withCSS", "nAlVyBz5_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerXtMMPCQNR", "withCSS", "XtMMPCQNR_default", "addFonts", "NavBarFonts", "getFonts", "qgaen2ZWh_default", "NavBarWithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithFX", "withFX", "motion", "ImageWithFX", "Image2", "ButtonHeroViewProjectsFonts", "pYfITgJrj_default", "ButtonHeroPrimaryFonts", "nAlVyBz5_default", "RichTextWithFX", "RichText2", "TickerFonts", "Ticker", "ProjectCardButtonFonts", "SZmppmkyM_default", "ButtonViewAllProjectsFonts", "XtMMPCQNR_default", "CounterFonts", "Counter", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "transition2", "animation3", "animation4", "animation5", "transition3", "animation6", "animation7", "animation8", "transformTemplate1", "_", "t", "animation9", "animation10", "animation11", "animation12", "animation13", "animation14", "transition4", "animation15", "animation16", "transition5", "animation17", "animation18", "animation19", "animation20", "animation21", "animation22", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "transformTemplate2", "animation23", "animation24", "animation25", "animation26", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "n2uE904pfBj0Q_ngqf", "Ouvj8rwHGBj0Q_ngqf", "K8EZH7g1EBj0Q_ngqf", "r1t_f54kCBj0Q_ngqf", "lwrCYcVZpBj0Q_ngqf", "idBj0Q_ngqf", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "ref1", "elementId", "useRouteElementId", "isDisplayed", "isDisplayed1", "elementId1", "ref2", "isDisplayed2", "isDisplayed3", "isDisplayed4", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "ComponentViewportProvider", "Container", "SVG", "x", "Link", "resolvedLinks1", "ChildrenCanSuspend", "RxQBQSaAj_default", "collection", "l", "index", "PathVariablesContext", "resolvedLinks2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
