{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.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/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/mH4t20PxNSnVqskxafiF/7kNFIOQ2h9jCbhauFL63/BF_oiAaCL.js", "ssg:https://framerusercontent.com/modules/jZHlD6FNmkAW2PPaaCuf/lskLuE9vdbryyIzRnK9p/oKsTDY1yZ.js", "ssg:https://framerusercontent.com/modules/BxpRLeci4UJXTPAHm9g5/0LUrL6gnDUKaZiMgKzWR/tCb2t8uST.js", "ssg:https://framerusercontent.com/modules/XtCmGnkYclew8g7NCUEK/vyW85qtS3sL9d9ZE1lJ3/ultBNqn7k.js", "ssg:https://framerusercontent.com/modules/AoTiCBdauXIn5kXkrzyz/YibfQucxFVaZpX4grd8C/CustomScrollbar.js", "ssg:https://framerusercontent.com/modules/bQQrLUAFyhx13qJ4OmlY/HbIju234KIFY9WKxMrjH/VlJ1KNA2s.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const 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=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "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", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;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[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (eca4804)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={kcd465N1n:{hover:true}};const serializationHash=\"framer-L46SP\";const variantClassNames={kcd465N1n:\"framer-v-a8qfo9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"kcd465N1n\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OlxruizAD\"},motionChild:true,nodeId:\"kcd465N1n\",openInNewTab:true,scopeId:\"BF_oiAaCL\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-a8qfo9\",className,classNames)} framer-nkxdwm`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"kcd465N1n\",ref:refBinding,style:{backgroundColor:\"rgb(206, 67, 56)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},variants:{\"kcd465N1n-hover\":{backgroundColor:\"rgb(135, 37, 29)\"}},...addPropertyOverrides({\"kcd465N1n-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gzs5m2\",layoutDependency:layoutDependency,layoutId:\"NXJbMSnyJ\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:\"Leadership Team\"})}),className:\"framer-s44xg1\",\"data-framer-name\":\"Work with us\",fonts:[\"CUSTOM;Creato Display Bold\"],layoutDependency:layoutDependency,layoutId:\"FwZJzShrH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14fyomc\",\"data-framer-name\":\"tail-right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"pQ3nNWivg\",svg:'<svg width=\"23\" height=\"7\" viewBox=\"0 0 23 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.454 6.5L1 6.5C0.447715 6.5 -2.62762e-08 6.05228 -1.69275e-08 5.5C-7.57868e-09 4.94772 0.447715 4.5 1 4.5L21.454 4.5C22.0063 4.5 22.454 4.94772 22.454 5.5C22.454 6.05228 22.0063 6.5 21.454 6.5Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.8586 0.952611C15.161 0.490457 15.7808 0.360933 16.2429 0.663311L22.3565 4.66331C22.8187 4.96569 22.9482 5.58546 22.6458 6.04762C22.3434 6.50977 21.7237 6.6393 21.2615 6.33692L15.1479 2.33692C14.6858 2.03454 14.5562 1.41476 14.8586 0.952611Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-L46SP.framer-nkxdwm, .framer-L46SP .framer-nkxdwm { display: block; }\",\".framer-L46SP.framer-a8qfo9 { cursor: pointer; height: 36px; overflow: visible; position: relative; text-decoration: none; width: 198px; }\",\".framer-L46SP .framer-1gzs5m2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 50%; width: 100%; }\",\".framer-L46SP .framer-s44xg1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-L46SP .framer-14fyomc { flex: none; height: 7px; position: relative; width: 23px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-L46SP .framer-1gzs5m2 { gap: 0px; } .framer-L46SP .framer-1gzs5m2 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-L46SP .framer-1gzs5m2 > :first-child { margin-left: 0px; } .framer-L46SP .framer-1gzs5m2 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 198\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"tZ447OHJC\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerBF_oiAaCL=withCSS(Component,css,\"framer-L46SP\");export default FramerBF_oiAaCL;FramerBF_oiAaCL.displayName=\"/Button\";FramerBF_oiAaCL.defaultProps={height:36,width:198};addFonts(FramerBF_oiAaCL,[{explicitInter:true,fonts:[{family:\"Creato Display Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/7CjN1yBagyojr4pOzu7glrJp4ZQ.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBF_oiAaCL\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tZ447OHJC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"198\",\"framerIntrinsicHeight\":\"36\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BF_oiAaCL.map", "// Generated by Framer (99bc0fd)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"r2Wk5Hylh\",\"D7rScJlz2\",\"eQlZQ0U38\",\"KZK2toZ4R\",\"Xm80gEqdN\",\"o68QWkMTT\"];const serializationHash=\"framer-dZpGI\";const variantClassNames={D7rScJlz2:\"framer-v-k6qm47\",eQlZQ0U38:\"framer-v-1gkyvrp\",KZK2toZ4R:\"framer-v-t4cfam\",o68QWkMTT:\"framer-v-1vjaxih\",r2Wk5Hylh:\"framer-v-197df8a\",Xm80gEqdN:\"framer-v-hm1n9e\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Customer Focus\":\"Xm80gEqdN\",\"Employee Focus\":\"KZK2toZ4R\",\"Technical Excellence\":\"o68QWkMTT\",Integrity:\"eQlZQ0U38\",Respect:\"D7rScJlz2\",Trust:\"r2Wk5Hylh\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"r2Wk5Hylh\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"r2Wk5Hylh\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1iezxnr=activeVariantCallback(async(...args)=>{setVariant(\"r2Wk5Hylh\");});const onTapggm5q1=activeVariantCallback(async(...args)=>{setVariant(\"D7rScJlz2\");});const onTapk4xaoh=activeVariantCallback(async(...args)=>{setVariant(\"eQlZQ0U38\");});const onTap33dh14=activeVariantCallback(async(...args)=>{setVariant(\"KZK2toZ4R\");});const onTapj0h5lg=activeVariantCallback(async(...args)=>{setVariant(\"Xm80gEqdN\");});const onTapy2n225=activeVariantCallback(async(...args)=>{setVariant(\"o68QWkMTT\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"D7rScJlz2\",\"eQlZQ0U38\",\"KZK2toZ4R\",\"Xm80gEqdN\",\"o68QWkMTT\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"D7rScJlz2\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"eQlZQ0U38\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"KZK2toZ4R\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"Xm80gEqdN\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"o68QWkMTT\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-197df8a\",className,classNames),\"data-framer-name\":\"Trust\",layoutDependency:layoutDependency,layoutId:\"r2Wk5Hylh\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({D7rScJlz2:{\"data-framer-name\":\"Respect\"},eQlZQ0U38:{\"data-framer-name\":\"Integrity\"},KZK2toZ4R:{\"data-framer-name\":\"Employee Focus\"},o68QWkMTT:{\"data-framer-name\":\"Technical Excellence\"},Xm80gEqdN:{\"data-framer-name\":\"Customer Focus\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bb4251\",\"data-framer-name\":\"Frame 3268\",layoutDependency:layoutDependency,layoutId:\"wnIAXeHGz\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x4g4rd\",\"data-border\":true,\"data-framer-name\":\"Navbar/Buttom\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"LZrul05KB\",onTap:onTap1iezxnr,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(231, 232, 236)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 140, 140))\"},children:\"Trust\"})}),className:\"framer-b03ygq\",\"data-framer-name\":\"Trust\",fonts:[\"CUSTOM;Creato Display Bold\"],layoutDependency:layoutDependency,layoutId:\"ei6jOkzhL\",style:{\"--extracted-r6o4lv\":\"rgb(255, 140, 140)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{D7rScJlz2:{\"--extracted-r6o4lv\":\"rgb(88, 88, 88)\"},eQlZQ0U38:{\"--extracted-r6o4lv\":\"rgb(88, 88, 88)\"},KZK2toZ4R:{\"--extracted-r6o4lv\":\"rgb(88, 88, 88)\"},o68QWkMTT:{\"--extracted-r6o4lv\":\"rgb(88, 88, 88)\"},Xm80gEqdN:{\"--extracted-r6o4lv\":\"rgb(88, 88, 88)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D7rScJlz2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 88, 88))\"},children:\"Trust\"})}),fonts:[\"CUSTOM;Creato Display Medium\"]},eQlZQ0U38:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 88, 88))\"},children:\"Trust\"})}),fonts:[\"CUSTOM;Creato Display Medium\"]},KZK2toZ4R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 88, 88))\"},children:\"Trust\"})}),fonts:[\"CUSTOM;Creato Display Medium\"]},o68QWkMTT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 88, 88))\"},children:\"Trust\"})}),fonts:[\"CUSTOM;Creato Display Medium\"]},Xm80gEqdN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(88, 88, 88))\"},children:\"Trust\"})}),fonts:[\"CUSTOM;Creato Display Medium\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-26vdsq\",\"data-border\":true,\"data-framer-name\":\"Navbar/Buttom\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"zoIMfiiCi\",onTap:onTapggm5q1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(231, 232, 236)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"Respect\"})}),className:\"framer-4bstnj\",\"data-framer-name\":\"Respect\",fonts:[\"CUSTOM;Creato Display Medium\"],layoutDependency:layoutDependency,layoutId:\"nuHlVytI1\",style:{\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{D7rScJlz2:{\"--extracted-r6o4lv\":\"rgb(225, 167, 80)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D7rScJlz2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(225, 167, 80))\"},children:\"Respect\"})}),fonts:[\"CUSTOM;Creato Display Bold\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o8vwee\",\"data-border\":true,\"data-framer-name\":\"Navbar/Buttom\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MQgKCFytC\",onTap:onTapk4xaoh,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(231, 232, 236)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"Integrity & Ethics\"})}),className:\"framer-1qn8k7t\",\"data-framer-name\":\"Integrity & Ethics\",fonts:[\"CUSTOM;Creato Display Medium\"],layoutDependency:layoutDependency,layoutId:\"zgBmfWLC1\",style:{\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{eQlZQ0U38:{\"--extracted-r6o4lv\":\"rgb(11, 187, 219)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eQlZQ0U38:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(11, 187, 219))\"},children:\"Integrity & Ethics\"})}),fonts:[\"CUSTOM;Creato Display Bold\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18i6mvx\",\"data-border\":true,\"data-framer-name\":\"Navbar/Buttom\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"lwFmXSnOq\",onTap:onTap33dh14,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(231, 232, 236)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"Employee Focus\"})}),className:\"framer-1g7ykue\",\"data-framer-name\":\"Employee Focus\",fonts:[\"CUSTOM;Creato Display Medium\"],layoutDependency:layoutDependency,layoutId:\"EZx53ua6j\",style:{\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{KZK2toZ4R:{\"--extracted-r6o4lv\":\"rgb(35, 153, 226)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({KZK2toZ4R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(35, 153, 226))\"},children:\"Employee Focus\"})}),fonts:[\"CUSTOM;Creato Display Bold\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ckpyg3\",\"data-border\":true,\"data-framer-name\":\"Navbar/Buttom\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UN8aiAzAp\",onTap:onTapj0h5lg,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(231, 232, 236)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"Customer Focus\"})}),className:\"framer-1if5387\",\"data-framer-name\":\"Customer Focus\",fonts:[\"CUSTOM;Creato Display Medium\"],layoutDependency:layoutDependency,layoutId:\"nphqNvxeA\",style:{\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{o68QWkMTT:{\"--extracted-r6o4lv\":\"rgb(83, 83, 83)\"},Xm80gEqdN:{\"--extracted-r6o4lv\":\"rgb(44, 208, 167)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({o68QWkMTT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(83, 83, 83))\"},children:\"Customer Focus\"})})},Xm80gEqdN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(44, 208, 167))\"},children:\"Customer Focus\"})}),fonts:[\"CUSTOM;Creato Display Bold\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kknj5\",\"data-border\":true,\"data-framer-name\":\"Navbar/Buttom\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"M_PT2KIVd\",onTap:onTapy2n225,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(231, 232, 236)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"Technical Excellence\"})}),className:\"framer-ms1fnk\",\"data-framer-name\":\"Technical Excellence\",fonts:[\"CUSTOM;Creato Display Medium\"],layoutDependency:layoutDependency,layoutId:\"UYsQMJGcG\",style:{\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{o68QWkMTT:{\"--extracted-r6o4lv\":\"rgb(127, 154, 17)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({o68QWkMTT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(127, 154, 17))\"},children:\"Technical Excellence\"})}),fonts:[\"CUSTOM;Creato Display Bold\"]}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-123q45c\",\"data-framer-name\":\"Frame 34347\",layoutDependency:layoutDependency,layoutId:\"oaw9XVshl\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 4px 10px 0px rgba(0,0,0,0.25)\"},children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1yoe6au\",\"data-framer-name\":\"Frame 34341\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:71,layoutDependency:layoutDependency,layoutId:\"KZcNb1sIw\",svg:'<svg width=\"71\" height=\"40\" viewBox=\"0 0 71 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_582_11517)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.9356 31.1882C24.5418 31.8856 24.7551 32.7704 25.4223 33.2059C26.0922 33.6413 26.981 33.476 27.4485 32.8282L29.6115 29.7549C30.0709 29.0962 29.9342 28.1894 29.2998 27.696C28.6681 27.2027 27.763 27.2964 27.2434 27.911C27.2215 27.9468 27.1969 27.9826 27.1723 28.0185L25.0093 31.089C24.9847 31.1221 24.9629 31.1552 24.9383 31.1882H24.9356ZM25.7422 27.1338L23.7132 30.0168V30.014C23.6886 30.0416 23.664 30.0719 23.6421 30.1023C23.6175 30.1381 23.5929 30.1739 23.571 30.2097H23.5738C23.0815 30.7941 22.2365 30.9154 21.6021 30.4991C21.5748 30.4771 21.5475 30.4578 21.5201 30.4385C20.883 29.9451 20.7435 29.03 21.2056 28.3658L21.49 27.9606L23.3632 25.298C23.8281 24.6421 24.7222 24.4711 25.3949 24.9094C26.0676 25.3477 26.2809 26.2407 25.879 26.938C25.8543 26.9711 25.8297 27.0042 25.8078 27.0373C25.786 27.0703 25.7641 27.1034 25.7477 27.1365L25.7422 27.1338ZM30.9761 30.7335V30.7307C31.1867 30.433 31.5093 30.2373 31.8676 30.1905C32.2804 30.1436 32.6961 30.2539 33.0324 30.502C33.7024 30.9843 33.861 31.9242 33.388 32.605L31.2277 35.6783C30.7491 36.3563 29.8167 36.5162 29.1385 36.0394L29.1002 36.0118C28.7967 35.7637 28.5998 35.4054 28.5506 35.0113C28.485 34.5923 28.5807 34.1596 28.8158 33.8068L28.8295 33.7847C28.8432 33.7655 28.8541 33.7434 28.8678 33.7213L30.9323 30.7942C30.9487 30.7749 30.9624 30.7556 30.9761 30.7363V30.7335ZM17.6641 25.502C17.656 25.5158 17.6478 25.5268 17.6368 25.5406V25.5379C17.1774 26.2214 17.3415 27.1475 18.006 27.6271C18.2986 27.82 18.6623 27.8724 18.9986 27.7677C19.4526 27.6464 19.849 27.368 20.1225 26.9821L22.0011 24.3168C22.2555 23.9475 22.384 23.5065 22.3703 23.0572C22.3703 22.6796 22.198 22.3212 21.9 22.0924C21.2246 21.6129 20.2921 21.7755 19.8108 22.4508L17.6641 25.502ZM12.1459 22.7402L11.558 24.5924L5.88656 22.7678L11.7412 4.28719L17.4154 6.11458L16.9532 7.56992H16.956C16.9231 7.6278 16.8985 7.69116 16.8821 7.75734C16.8712 7.79589 16.863 7.83726 16.8575 7.87586L12.1787 22.6386C12.1651 22.6716 12.1568 22.7099 12.1459 22.7402ZM53.2214 22.9938L56.995 22.4122L52.524 8.30006L50.0247 8.78788H50.0219C49.8032 8.84028 49.5708 8.80167 49.3793 8.68038C48.4168 8.15949 47.4187 7.70196 46.396 7.31604C45.1408 6.84196 43.9212 6.27414 42.7482 5.6237L42.6579 5.56582C41.4492 4.78853 41.1212 4.58185 40.67 4.62595C40.5059 4.64249 40.2406 4.69761 39.9453 4.7555C39.0812 4.96497 38.1925 5.04215 37.3037 4.98978C37.0795 4.97049 36.8498 4.93741 36.6201 4.89331H36.6228C35.0013 5.40873 33.4317 6.07302 31.9277 6.87233C31.3179 7.26648 30.7956 7.78742 30.4018 8.39936C30.2897 8.5592 30.1748 8.71356 30.0518 8.87068V8.8734C29.7483 9.25655 29.4146 9.6176 29.0591 9.95384C28.7173 10.2818 28.3674 10.5767 28.0501 10.8304L27.8451 10.9957C27.4431 11.3155 27.1203 11.569 27.0329 11.8419L27.0301 11.8447C26.918 12.2113 27.052 12.6081 27.3637 12.8314C27.6645 13.0271 28.0008 13.1594 28.3536 13.22C28.8568 13.3275 29.3736 13.3661 29.8877 13.3358C30.3061 13.3165 30.7163 13.2311 31.1101 13.0822C31.4628 12.9472 31.7882 12.7514 32.0726 12.5006C32.4719 12.1175 32.8355 11.6986 33.1555 11.2465C33.3661 10.9709 33.5547 10.7201 33.7434 10.5161V10.5133C33.9977 10.2156 34.3231 9.98962 34.6896 9.85182C34.9822 9.75534 35.2857 9.703 35.592 9.70023C35.9065 9.68096 36.2237 9.68096 36.5382 9.69746C36.9237 9.71402 37.2983 9.8022 37.6511 9.95655C38.157 10.2405 38.5835 10.6512 38.8871 11.15C39.0484 11.3623 39.2481 11.6186 39.5598 11.9962C40.0903 12.6412 40.845 13.5067 41.761 14.4245H41.7638C42.5048 15.1715 43.2842 15.8771 44.0991 16.5413C46.3441 18.1648 48.693 19.6366 51.1295 20.9486C51.2526 21.0203 51.3756 21.0892 51.753 21.3014L51.7612 21.307H51.7667L51.7831 21.318V21.3152C51.8131 21.3317 51.8433 21.3538 51.8706 21.3786C52.4366 21.803 52.8988 22.3516 53.2215 22.9827L53.2214 22.9938ZM51.8841 24.1928C51.9853 24.7054 51.8787 25.2402 51.5888 25.6756C51.5669 25.7032 51.5451 25.7363 51.5286 25.7694C51.0446 26.4336 50.1395 26.6183 49.4395 26.1911C49.4066 26.1663 49.3738 26.1415 49.3355 26.1222L39.1738 19.2866C38.9906 19.157 38.7609 19.1074 38.5394 19.1488C38.3206 19.1901 38.1237 19.3197 37.998 19.5071C37.8749 19.6973 37.8284 19.9261 37.8749 20.1493C37.9214 20.3698 38.0554 20.5655 38.244 20.6868L47.2787 26.7617C47.317 26.7947 47.3608 26.825 47.4045 26.8526C47.7053 27.0979 47.894 27.4563 47.9213 27.8448C47.9733 28.2969 47.8749 28.7544 47.6424 29.143C47.6205 29.1706 47.5987 29.2009 47.5795 29.234C47.0873 29.9148 46.1494 30.0884 45.4493 29.6254L43.7594 28.487C43.7129 28.4512 43.6664 28.4154 43.6199 28.3851C43.5953 28.3685 43.5707 28.3519 43.546 28.3409L37.6887 24.405H37.686C37.3031 24.1459 36.7863 24.2507 36.5293 24.6365C36.2722 25.0224 36.3734 25.5433 36.7562 25.8051L42.7914 29.8624C43.0949 30.0939 43.3109 30.4219 43.4039 30.7968C43.4969 31.1606 43.4367 31.5492 43.2425 31.8717C43.2207 31.8993 43.1988 31.9296 43.1824 31.9626C42.7011 32.6269 41.7933 32.8116 41.0932 32.3843C41.0604 32.3596 41.0276 32.3348 40.992 32.3154L37.1309 29.719H37.1282C36.7453 29.4627 36.2285 29.5646 35.9715 29.9506C35.7144 30.3364 35.8156 30.8601 36.1985 31.1192L37.6888 32.1197C37.7271 32.1583 37.7681 32.1914 37.8118 32.2217C38.5228 32.7068 38.7142 33.677 38.2466 34.4019L38.2412 34.4074L38.2439 34.4102C38.0114 34.752 37.6559 34.9917 37.2512 35.0689C36.8493 35.1543 36.4309 35.0744 36.089 34.8457L34.5796 33.8286L34.7491 33.5861H34.7518C35.7609 32.1472 35.4246 30.1544 33.9999 29.1292C33.3217 28.6385 32.4822 28.4208 31.6509 28.5255L31.5388 28.542C31.5333 28.4787 31.5224 28.4152 31.5142 28.3518H31.5114C31.3747 27.5167 30.9098 26.7697 30.2262 26.2791C29.5399 25.7885 28.6894 25.5928 27.8609 25.7361C27.8172 25.7444 27.7706 25.7527 27.7269 25.7609C27.7214 25.7196 27.716 25.6783 27.7077 25.6369V25.6342C27.571 24.799 27.1061 24.0548 26.4225 23.5642C25.7362 23.0708 24.8858 22.8751 24.0572 23.0185H24.0408V22.9799V22.9826C24.0271 22.0814 23.5923 21.2434 22.8704 20.717C21.4402 19.6972 19.4659 20.0362 18.4487 21.4722L16.7068 23.9501L13.9695 22.5251L18.2545 9.0056L21.216 9.80497L21.2133 9.8022C21.4484 9.86556 21.6973 9.82424 21.8969 9.68644C25.2495 7.57513 28.5992 5.46378 30.478 4.45497C31.0386 4.11318 31.6456 3.85961 32.2827 3.70526C32.6191 3.66943 32.9581 3.7218 33.2699 3.85685C33.3656 3.88993 33.6364 3.98639 33.9262 4.09113H33.9317V4.08838C32.9308 4.4522 31.9628 4.9042 31.0413 5.43899C30.2401 5.94063 29.5592 6.61319 29.0423 7.40975C28.9411 7.55031 28.84 7.69088 28.7333 7.82873H28.7361C28.4817 8.14841 28.2055 8.4461 27.9075 8.72447C27.6067 9.01114 27.2922 9.27848 27.0051 9.51004L26.8054 9.66711V9.66988C26.1847 10.0558 25.7034 10.6346 25.4355 11.3181C25.0964 12.3765 25.4738 13.5342 26.3706 14.1874C26.8602 14.5237 27.4125 14.7552 27.9949 14.8655C28.6458 15.0033 29.3103 15.0529 29.9747 15.0143C30.5654 14.9868 31.1506 14.8655 31.7057 14.6588C32.2389 14.452 32.7339 14.1516 33.1632 13.7712C33.6554 13.3165 34.0957 12.812 34.4839 12.2635C34.6672 12.021 34.834 11.8032 34.968 11.6572V11.6599C35.0445 11.5635 35.143 11.4863 35.2524 11.4339C35.3891 11.3981 35.5313 11.3815 35.6735 11.3815C35.9223 11.3678 36.1739 11.3678 36.4227 11.3815C36.5978 11.3843 36.77 11.4201 36.9341 11.4808C37.1802 11.6792 37.3907 11.919 37.5603 12.1864C37.7572 12.4455 38.0005 12.7597 38.2658 13.0821C38.8127 13.7492 39.603 14.6505 40.5792 15.629C41.3613 16.4173 42.1844 17.1615 43.0457 17.8644C45.3591 19.5484 47.7846 21.0755 50.303 22.4288L50.8691 22.7485H50.8718C51.3285 23.0793 51.673 23.5506 51.8507 24.0908C51.8562 24.1267 51.8671 24.1625 51.8781 24.1983L51.8841 24.1928ZM57.5118 24.0411L53.5959 24.6448C53.5741 25.3642 53.3498 26.0643 52.9479 26.6597C52.2177 27.7594 50.897 28.3079 49.609 28.0405C49.6173 28.782 49.4039 29.5069 49.002 30.127C48.1516 31.4087 46.5272 31.9131 45.108 31.3398C45.0752 31.8801 44.9002 32.4037 44.5994 32.853C43.6204 34.3276 41.6489 34.7438 40.1668 33.7846C40.123 34.3414 39.9398 34.8761 39.6335 35.3364L39.6281 35.3419V35.3446C38.6381 36.8358 36.6393 37.2355 35.1571 36.2432L33.6176 35.2012L32.5922 36.6566V36.6538C31.5831 38.0843 29.6197 38.4289 28.1896 37.4257C28.1622 37.4091 28.1349 37.3871 28.1103 37.365C27.443 36.8495 27.0055 36.0888 26.8961 35.2482C26.8879 35.1931 26.8824 35.1352 26.877 35.08C26.8387 35.0883 26.7977 35.0966 26.7594 35.1021H26.7567C25.9281 35.2454 25.0777 35.0497 24.3913 34.5591C23.7049 34.0685 23.2428 33.3243 23.1034 32.4863C23.0951 32.445 23.0897 32.4037 23.0842 32.3623C23.0405 32.3706 22.9939 32.3789 22.9502 32.3872H22.9529C22.1244 32.5305 21.274 32.3348 20.5876 31.8442C19.9012 31.3536 19.4391 30.6066 19.2997 29.7715C19.2805 29.6639 19.2696 29.5537 19.2614 29.4435V29.4407C18.4902 29.6171 17.6835 29.4572 17.0355 28.9997C15.9061 28.1893 15.4303 26.7313 15.8569 25.4027L13.4505 24.1514L12.8954 25.9044V25.9016C12.8298 26.1166 12.6821 26.293 12.4852 26.3978C12.2883 26.4997 12.0586 26.519 11.8453 26.4501L4.58244 24.1155C4.37188 24.0466 4.19414 23.8978 4.09296 23.6994C3.99178 23.5009 3.97264 23.2694 4.03827 23.0571L10.4015 2.9748V2.97204C10.4698 2.75981 10.6175 2.58065 10.8144 2.47867C11.0113 2.37669 11.241 2.35739 11.4515 2.42354L18.7172 4.76362C18.9305 4.82977 19.1055 4.98136 19.2067 5.17982C19.3106 5.37827 19.3298 5.6098 19.2614 5.82204L18.7637 7.39039L21.2959 8.07398C24.5527 6.02049 27.774 4.00019 29.6964 2.96929H29.6991C30.421 2.53105 31.2085 2.21408 32.0343 2.03217C32.6305 1.94948 33.2403 2.02666 33.7981 2.25819C34.1126 2.36293 34.2958 2.42908 34.4872 2.49798H34.49C35.4416 2.88387 36.4369 3.15398 37.4542 3.30555C38.1843 3.34138 38.9144 3.27248 39.6254 3.09883C39.9207 3.03268 40.2188 2.98307 40.5196 2.94724C41.5478 2.848 41.9771 3.12088 43.5631 4.13795L43.6534 4.19583C44.7444 4.7967 45.8765 5.31761 47.0387 5.75862C48.1708 6.22718 49.2728 6.68473 49.9865 7.07888L52.0155 6.68198L51.7393 5.82198C51.6709 5.60975 51.6928 5.37822 51.794 5.17976C51.8951 4.98131 52.0729 4.82972 52.2835 4.76356L59.5461 2.42899C59.7594 2.36008 59.9893 2.37938 60.1861 2.48136C60.3833 2.5861 60.5309 2.7625 60.5967 2.97748L66.9597 23.0598C67.0282 23.2721 67.0088 23.5036 66.9077 23.702C66.8038 23.9005 66.6286 24.0493 66.4153 24.1182L59.1498 26.4528C58.9392 26.5217 58.7095 26.5024 58.5126 26.3977C58.3157 26.2957 58.1653 26.1193 58.0997 25.9043L57.5091 24.0383L57.5118 24.0411ZM58.8627 22.7705L53.905 7.13138C53.8968 7.09005 53.8831 7.05145 53.8695 7.01287L53.5851 6.11159L59.2592 4.28421L65.1111 22.7676L59.4395 24.5923L58.9065 22.9082V22.911C58.8955 22.8613 58.8818 22.8145 58.8627 22.7676L58.8627 22.7705ZM9.39238 20.7639L9.43887 20.7832V20.7804C9.86817 20.9403 10.344 20.7225 10.508 20.2953C10.6721 19.8654 10.4643 19.383 10.0432 19.2093L9.99395 19.1901C9.56738 19.0357 9.09706 19.2534 8.93297 19.6807C8.76888 20.1079 8.974 20.5875 9.39238 20.7639ZM60.7851 20.7639L60.8205 20.7777C61.0283 20.8631 61.2609 20.8603 61.4687 20.7694C61.6737 20.6812 61.8351 20.5103 61.9169 20.3008C61.9965 20.0886 61.991 19.8543 61.8981 19.6476C61.8047 19.4437 61.6356 19.2838 61.4251 19.2066L61.3891 19.1928V19.1901C60.9597 19.0329 60.4867 19.2507 60.3231 19.6779C60.1562 20.1079 60.364 20.5902 60.7851 20.7639Z\" fill=\"#FF8D8D\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_582_11517\">\\n<rect width=\"63\" height=\"36\" fill=\"white\" transform=\"translate(4 2)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10xsr8k\",\"data-framer-name\":\"Frame 2\",layoutDependency:layoutDependency,layoutId:\"h65B2IZ4R\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r0wccy\",\"data-framer-name\":\"Frame 34323\",layoutDependency:layoutDependency,layoutId:\"IaJCQodU5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"Trust\"})}),className:\"framer-1g71xz4\",\"data-framer-name\":\"Trust\",fonts:[\"CUSTOM;Creato Display Bold\"],layoutDependency:layoutDependency,layoutId:\"XzlCPGDFQ\",style:{\"--extracted-r6o4lv\":\"rgb(61, 61, 61)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D7rScJlz2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"Respect\"})})},eQlZQ0U38:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"Integrity & Ethics\"})})},KZK2toZ4R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"Employee Focus\"})})},o68QWkMTT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"Technical Excellence\"})})},Xm80gEqdN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"Customer Focus\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Creato Display Regular\", \"Creato Display Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"We foster trust by being transparent, reliable, and accountable in all our actions.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Creato Display Regular\", \"Creato Display Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(81, 81, 81))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]}),className:\"framer-13ee5tv\",\"data-framer-name\":\"We foster trust by being transparent, reliable, and accountable in all our actions.\",fonts:[\"CUSTOM;Creato Display Regular\"],layoutDependency:layoutDependency,layoutId:\"H1lCqA75k\",style:{\"--extracted-2gxw0f\":\"rgb(81, 81, 81)\",\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D7rScJlz2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Creato Display Regular\", \"Creato Display Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"We respect individual opinions and believe in living up to and exceeding our own standards.\"})})},eQlZQ0U38:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Creato Display Regular\", \"Creato Display Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"We uphold integrity in every action, ensuring our decisions align with the highest moral standards.\"})})},KZK2toZ4R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Creato Display Regular\", \"Creato Display Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"We create a sense of shared purpose and understand that the power of the collective and that of the team is bigger than the individual.\"})})},o68QWkMTT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Creato Display Regular\", \"Creato Display Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"We are committed to delivering excellence in every product, service, and experience we provide, striving for continuous improvement.\"})})},Xm80gEqdN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Creato Display Regular\", \"Creato Display Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"We prioritize understanding and meeting our customers' needs, exceeding expectations with every interaction.\"})})}},baseVariant,gestureVariant)})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1oseoe\",\"data-framer-name\":\"Frame 34342\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"w0t0bqIj2\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-outside-1_582_11541\" maskUnits=\"userSpaceOnUse\" x=\"2\" y=\"1\" width=\"36\" height=\"38\" fill=\"black\">\\n<rect fill=\"white\" x=\"2\" y=\"1\" width=\"36\" height=\"38\"/>\\n<path d=\"M36.6549 19.0229L34.5495 10.5506C34.3249 9.64963 33.762 8.88896 32.9612 8.40594C32.6937 8.24495 32.4116 8.12383 32.1205 8.03964C32.8828 7.41486 33.3704 6.46656 33.3704 5.40607C33.3704 3.52725 31.8427 2 29.9633 2C28.0839 2 26.5562 3.52728 26.5562 5.40607C26.5562 6.93037 27.5624 8.22428 28.9468 8.65708C28.5907 8.93476 28.3129 9.27595 28.1415 9.66145L25.3387 15.9508L20.5044 18.7188C20.2502 18.8621 20.0404 19.0452 19.8779 19.2535C19.7154 19.0438 19.5056 18.8621 19.2529 18.7173L14.4171 15.9508L11.6143 9.66145C11.4414 9.27448 11.1651 8.93473 10.809 8.65708C12.1919 8.22431 13.1996 6.93041 13.1996 5.40607C13.1996 3.52725 11.6719 2 9.79249 2C7.91312 2 6.38536 3.52728 6.38536 5.40607C6.38536 6.4666 6.87295 7.41486 7.63534 8.03964C7.34427 8.12383 7.06207 8.24643 6.79462 8.40594C5.9938 8.88745 5.42939 9.64963 5.2063 10.5506L3.10085 19.0229C2.82308 20.1381 3.12892 21.3389 3.89724 22.1971V35.4934C3.89724 36.8759 5.02164 38 6.40457 38C7.7875 38 8.91191 36.8759 8.91191 35.4934V22.3668C9.38323 21.9134 9.7142 21.3418 9.87378 20.7037L10.682 17.4497L11.1208 18.305C11.3129 18.6772 11.6113 18.9755 11.9852 19.1675L17.2628 22.1896C17.907 22.5574 18.6191 22.5707 19.2161 22.2221C19.4805 22.0685 19.7051 21.8558 19.878 21.6091C20.0509 21.8572 20.2754 22.07 20.5384 22.2221C21.1353 22.5692 21.8475 22.5574 22.4917 22.1896L27.7693 19.1675C28.1432 18.9755 28.4416 18.6771 28.6337 18.305L29.0725 17.4497L29.8807 20.7037C30.0388 21.3418 30.3698 21.9119 30.8426 22.3668V35.4919C30.8426 36.8744 31.967 37.9985 33.3499 37.9985C34.7329 37.9985 35.8573 36.8744 35.8573 35.4919L35.8587 22.1971C36.627 21.3389 36.9327 20.1381 36.6549 19.0229ZM27.3392 5.40435C27.3392 3.95833 28.5168 2.78111 29.9633 2.78111C31.4097 2.78111 32.5873 3.95833 32.5873 5.40435C32.5873 6.63031 31.7407 7.66278 30.6015 7.94932C30.5173 7.96262 30.4346 7.97886 30.3518 7.99954C30.2248 8.01874 30.0948 8.02908 29.9633 8.02908C28.5168 8.0276 27.3392 6.85185 27.3392 5.40435ZM7.16828 5.40435C7.16828 3.95833 8.34587 2.78111 9.79234 2.78111C11.2388 2.78111 12.4164 3.95833 12.4164 5.40435C12.4164 6.85038 11.2388 8.02759 9.79234 8.02759C9.66084 8.02759 9.53082 8.01725 9.40377 7.99805C9.32103 7.97885 9.23829 7.9626 9.15407 7.94783C8.01492 7.66424 7.16828 6.63178 7.16828 5.40435ZM18.8227 21.5457C18.5715 21.692 18.1652 21.8042 17.6525 21.5103L12.3658 18.4838C12.3599 18.4809 12.354 18.4779 12.3481 18.475C12.1176 18.3583 11.9343 18.1766 11.8177 17.9477L10.9016 16.1649L9.3635 13.1694C9.26451 12.9774 9.0281 12.9006 8.83604 12.9996C8.64396 13.0985 8.56861 13.3348 8.66613 13.5268L10.1377 16.3908L9.11234 20.5147C8.97788 21.0538 8.68387 21.5324 8.26277 21.8987C8.17707 21.9725 8.12831 22.0804 8.12831 22.1941V35.492C8.12831 36.4432 7.35409 37.2157 6.40406 37.2157C5.45255 37.2157 4.6798 36.4417 4.6798 35.492V22.0421C4.6798 21.9387 4.63991 21.8412 4.56751 21.7674C3.90559 21.0968 3.63522 20.1175 3.85978 19.2121L5.96523 10.7398C6.1381 10.0411 6.57693 9.45183 7.19747 9.07813C7.62742 8.81965 8.10612 8.6867 8.59224 8.6867C8.73113 8.6867 8.87001 8.69851 9.00891 8.72067C9.0887 8.73987 9.16996 8.75612 9.25122 8.76941C10.0313 8.96586 10.6475 9.41782 10.8972 9.98058L13.7547 16.3853C13.7887 16.4606 13.8463 16.5241 13.9172 16.5655L18.8624 19.397C19.3751 19.6909 19.4844 20.0986 19.4859 20.3881C19.4873 20.8489 19.2214 21.3142 18.8225 21.5461L18.8227 21.5457ZM35.1877 21.7673C35.1153 21.8412 35.0755 21.9386 35.0755 22.042V35.4934C35.0755 36.4447 34.3012 37.2172 33.3512 37.2172C32.3997 37.2172 31.6269 36.4432 31.6269 35.4934V22.1956C31.6269 22.0818 31.5782 21.974 31.4925 21.9001C31.0714 21.5338 30.7774 21.0553 30.6429 20.5161L29.6175 16.3923L31.0891 13.5283C31.1881 13.3363 31.1128 13.1 30.9192 13.001C30.7271 12.902 30.4907 12.9774 30.3918 13.1709L28.8537 16.1649L27.9376 17.9476C27.8209 18.1766 27.6362 18.3583 27.4072 18.4749C27.4013 18.4779 27.3954 18.4809 27.3895 18.4838L22.1028 21.5103C21.5901 21.8042 21.1823 21.692 20.9326 21.5457C20.5336 21.3138 20.2677 20.8485 20.2692 20.3877C20.2706 20.0982 20.3785 19.6905 20.8927 19.3966L25.8378 16.5651C25.9102 16.5237 25.9663 16.4602 26.0003 16.3849L28.8549 9.97909C29.1061 9.41633 29.7207 8.96436 30.5008 8.76792C30.5865 8.75463 30.6708 8.73691 30.755 8.71623C31.3755 8.6217 32.0064 8.74577 32.556 9.07662C33.1781 9.45032 33.6154 10.0411 33.7883 10.7383L35.8937 19.2106C36.1198 20.1175 35.8497 21.0967 35.1877 21.7673Z\"/>\\n</mask>\\n<path d=\"M36.6549 19.0229L34.5495 10.5506C34.3249 9.64963 33.762 8.88896 32.9612 8.40594C32.6937 8.24495 32.4116 8.12383 32.1205 8.03964C32.8828 7.41486 33.3704 6.46656 33.3704 5.40607C33.3704 3.52725 31.8427 2 29.9633 2C28.0839 2 26.5562 3.52728 26.5562 5.40607C26.5562 6.93037 27.5624 8.22428 28.9468 8.65708C28.5907 8.93476 28.3129 9.27595 28.1415 9.66145L25.3387 15.9508L20.5044 18.7188C20.2502 18.8621 20.0404 19.0452 19.8779 19.2535C19.7154 19.0438 19.5056 18.8621 19.2529 18.7173L14.4171 15.9508L11.6143 9.66145C11.4414 9.27448 11.1651 8.93473 10.809 8.65708C12.1919 8.22431 13.1996 6.93041 13.1996 5.40607C13.1996 3.52725 11.6719 2 9.79249 2C7.91312 2 6.38536 3.52728 6.38536 5.40607C6.38536 6.4666 6.87295 7.41486 7.63534 8.03964C7.34427 8.12383 7.06207 8.24643 6.79462 8.40594C5.9938 8.88745 5.42939 9.64963 5.2063 10.5506L3.10085 19.0229C2.82308 20.1381 3.12892 21.3389 3.89724 22.1971V35.4934C3.89724 36.8759 5.02164 38 6.40457 38C7.7875 38 8.91191 36.8759 8.91191 35.4934V22.3668C9.38323 21.9134 9.7142 21.3418 9.87378 20.7037L10.682 17.4497L11.1208 18.305C11.3129 18.6772 11.6113 18.9755 11.9852 19.1675L17.2628 22.1896C17.907 22.5574 18.6191 22.5707 19.2161 22.2221C19.4805 22.0685 19.7051 21.8558 19.878 21.6091C20.0509 21.8572 20.2754 22.07 20.5384 22.2221C21.1353 22.5692 21.8475 22.5574 22.4917 22.1896L27.7693 19.1675C28.1432 18.9755 28.4416 18.6771 28.6337 18.305L29.0725 17.4497L29.8807 20.7037C30.0388 21.3418 30.3698 21.9119 30.8426 22.3668V35.4919C30.8426 36.8744 31.967 37.9985 33.3499 37.9985C34.7329 37.9985 35.8573 36.8744 35.8573 35.4919L35.8587 22.1971C36.627 21.3389 36.9327 20.1381 36.6549 19.0229ZM27.3392 5.40435C27.3392 3.95833 28.5168 2.78111 29.9633 2.78111C31.4097 2.78111 32.5873 3.95833 32.5873 5.40435C32.5873 6.63031 31.7407 7.66278 30.6015 7.94932C30.5173 7.96262 30.4346 7.97886 30.3518 7.99954C30.2248 8.01874 30.0948 8.02908 29.9633 8.02908C28.5168 8.0276 27.3392 6.85185 27.3392 5.40435ZM7.16828 5.40435C7.16828 3.95833 8.34587 2.78111 9.79234 2.78111C11.2388 2.78111 12.4164 3.95833 12.4164 5.40435C12.4164 6.85038 11.2388 8.02759 9.79234 8.02759C9.66084 8.02759 9.53082 8.01725 9.40377 7.99805C9.32103 7.97885 9.23829 7.9626 9.15407 7.94783C8.01492 7.66424 7.16828 6.63178 7.16828 5.40435ZM18.8227 21.5457C18.5715 21.692 18.1652 21.8042 17.6525 21.5103L12.3658 18.4838C12.3599 18.4809 12.354 18.4779 12.3481 18.475C12.1176 18.3583 11.9343 18.1766 11.8177 17.9477L10.9016 16.1649L9.3635 13.1694C9.26451 12.9774 9.0281 12.9006 8.83604 12.9996C8.64396 13.0985 8.56861 13.3348 8.66613 13.5268L10.1377 16.3908L9.11234 20.5147C8.97788 21.0538 8.68387 21.5324 8.26277 21.8987C8.17707 21.9725 8.12831 22.0804 8.12831 22.1941V35.492C8.12831 36.4432 7.35409 37.2157 6.40406 37.2157C5.45255 37.2157 4.6798 36.4417 4.6798 35.492V22.0421C4.6798 21.9387 4.63991 21.8412 4.56751 21.7674C3.90559 21.0968 3.63522 20.1175 3.85978 19.2121L5.96523 10.7398C6.1381 10.0411 6.57693 9.45183 7.19747 9.07813C7.62742 8.81965 8.10612 8.6867 8.59224 8.6867C8.73113 8.6867 8.87001 8.69851 9.00891 8.72067C9.0887 8.73987 9.16996 8.75612 9.25122 8.76941C10.0313 8.96586 10.6475 9.41782 10.8972 9.98058L13.7547 16.3853C13.7887 16.4606 13.8463 16.5241 13.9172 16.5655L18.8624 19.397C19.3751 19.6909 19.4844 20.0986 19.4859 20.3881C19.4873 20.8489 19.2214 21.3142 18.8225 21.5461L18.8227 21.5457ZM35.1877 21.7673C35.1153 21.8412 35.0755 21.9386 35.0755 22.042V35.4934C35.0755 36.4447 34.3012 37.2172 33.3512 37.2172C32.3997 37.2172 31.6269 36.4432 31.6269 35.4934V22.1956C31.6269 22.0818 31.5782 21.974 31.4925 21.9001C31.0714 21.5338 30.7774 21.0553 30.6429 20.5161L29.6175 16.3923L31.0891 13.5283C31.1881 13.3363 31.1128 13.1 30.9192 13.001C30.7271 12.902 30.4907 12.9774 30.3918 13.1709L28.8537 16.1649L27.9376 17.9476C27.8209 18.1766 27.6362 18.3583 27.4072 18.4749C27.4013 18.4779 27.3954 18.4809 27.3895 18.4838L22.1028 21.5103C21.5901 21.8042 21.1823 21.692 20.9326 21.5457C20.5336 21.3138 20.2677 20.8485 20.2692 20.3877C20.2706 20.0982 20.3785 19.6905 20.8927 19.3966L25.8378 16.5651C25.9102 16.5237 25.9663 16.4602 26.0003 16.3849L28.8549 9.97909C29.1061 9.41633 29.7207 8.96436 30.5008 8.76792C30.5865 8.75463 30.6708 8.73691 30.755 8.71623C31.3755 8.6217 32.0064 8.74577 32.556 9.07662C33.1781 9.45032 33.6154 10.0411 33.7883 10.7383L35.8937 19.2106C36.1198 20.1175 35.8497 21.0967 35.1877 21.7673Z\" fill=\"#E1A750\"/>\\n<path d=\"M36.6549 19.0229L34.5495 10.5506C34.3249 9.64963 33.762 8.88896 32.9612 8.40594C32.6937 8.24495 32.4116 8.12383 32.1205 8.03964C32.8828 7.41486 33.3704 6.46656 33.3704 5.40607C33.3704 3.52725 31.8427 2 29.9633 2C28.0839 2 26.5562 3.52728 26.5562 5.40607C26.5562 6.93037 27.5624 8.22428 28.9468 8.65708C28.5907 8.93476 28.3129 9.27595 28.1415 9.66145L25.3387 15.9508L20.5044 18.7188C20.2502 18.8621 20.0404 19.0452 19.8779 19.2535C19.7154 19.0438 19.5056 18.8621 19.2529 18.7173L14.4171 15.9508L11.6143 9.66145C11.4414 9.27448 11.1651 8.93473 10.809 8.65708C12.1919 8.22431 13.1996 6.93041 13.1996 5.40607C13.1996 3.52725 11.6719 2 9.79249 2C7.91312 2 6.38536 3.52728 6.38536 5.40607C6.38536 6.4666 6.87295 7.41486 7.63534 8.03964C7.34427 8.12383 7.06207 8.24643 6.79462 8.40594C5.9938 8.88745 5.42939 9.64963 5.2063 10.5506L3.10085 19.0229C2.82308 20.1381 3.12892 21.3389 3.89724 22.1971V35.4934C3.89724 36.8759 5.02164 38 6.40457 38C7.7875 38 8.91191 36.8759 8.91191 35.4934V22.3668C9.38323 21.9134 9.7142 21.3418 9.87378 20.7037L10.682 17.4497L11.1208 18.305C11.3129 18.6772 11.6113 18.9755 11.9852 19.1675L17.2628 22.1896C17.907 22.5574 18.6191 22.5707 19.2161 22.2221C19.4805 22.0685 19.7051 21.8558 19.878 21.6091C20.0509 21.8572 20.2754 22.07 20.5384 22.2221C21.1353 22.5692 21.8475 22.5574 22.4917 22.1896L27.7693 19.1675C28.1432 18.9755 28.4416 18.6771 28.6337 18.305L29.0725 17.4497L29.8807 20.7037C30.0388 21.3418 30.3698 21.9119 30.8426 22.3668V35.4919C30.8426 36.8744 31.967 37.9985 33.3499 37.9985C34.7329 37.9985 35.8573 36.8744 35.8573 35.4919L35.8587 22.1971C36.627 21.3389 36.9327 20.1381 36.6549 19.0229ZM27.3392 5.40435C27.3392 3.95833 28.5168 2.78111 29.9633 2.78111C31.4097 2.78111 32.5873 3.95833 32.5873 5.40435C32.5873 6.63031 31.7407 7.66278 30.6015 7.94932C30.5173 7.96262 30.4346 7.97886 30.3518 7.99954C30.2248 8.01874 30.0948 8.02908 29.9633 8.02908C28.5168 8.0276 27.3392 6.85185 27.3392 5.40435ZM7.16828 5.40435C7.16828 3.95833 8.34587 2.78111 9.79234 2.78111C11.2388 2.78111 12.4164 3.95833 12.4164 5.40435C12.4164 6.85038 11.2388 8.02759 9.79234 8.02759C9.66084 8.02759 9.53082 8.01725 9.40377 7.99805C9.32103 7.97885 9.23829 7.9626 9.15407 7.94783C8.01492 7.66424 7.16828 6.63178 7.16828 5.40435ZM18.8227 21.5457C18.5715 21.692 18.1652 21.8042 17.6525 21.5103L12.3658 18.4838C12.3599 18.4809 12.354 18.4779 12.3481 18.475C12.1176 18.3583 11.9343 18.1766 11.8177 17.9477L10.9016 16.1649L9.3635 13.1694C9.26451 12.9774 9.0281 12.9006 8.83604 12.9996C8.64396 13.0985 8.56861 13.3348 8.66613 13.5268L10.1377 16.3908L9.11234 20.5147C8.97788 21.0538 8.68387 21.5324 8.26277 21.8987C8.17707 21.9725 8.12831 22.0804 8.12831 22.1941V35.492C8.12831 36.4432 7.35409 37.2157 6.40406 37.2157C5.45255 37.2157 4.6798 36.4417 4.6798 35.492V22.0421C4.6798 21.9387 4.63991 21.8412 4.56751 21.7674C3.90559 21.0968 3.63522 20.1175 3.85978 19.2121L5.96523 10.7398C6.1381 10.0411 6.57693 9.45183 7.19747 9.07813C7.62742 8.81965 8.10612 8.6867 8.59224 8.6867C8.73113 8.6867 8.87001 8.69851 9.00891 8.72067C9.0887 8.73987 9.16996 8.75612 9.25122 8.76941C10.0313 8.96586 10.6475 9.41782 10.8972 9.98058L13.7547 16.3853C13.7887 16.4606 13.8463 16.5241 13.9172 16.5655L18.8624 19.397C19.3751 19.6909 19.4844 20.0986 19.4859 20.3881C19.4873 20.8489 19.2214 21.3142 18.8225 21.5461L18.8227 21.5457ZM35.1877 21.7673C35.1153 21.8412 35.0755 21.9386 35.0755 22.042V35.4934C35.0755 36.4447 34.3012 37.2172 33.3512 37.2172C32.3997 37.2172 31.6269 36.4432 31.6269 35.4934V22.1956C31.6269 22.0818 31.5782 21.974 31.4925 21.9001C31.0714 21.5338 30.7774 21.0553 30.6429 20.5161L29.6175 16.3923L31.0891 13.5283C31.1881 13.3363 31.1128 13.1 30.9192 13.001C30.7271 12.902 30.4907 12.9774 30.3918 13.1709L28.8537 16.1649L27.9376 17.9476C27.8209 18.1766 27.6362 18.3583 27.4072 18.4749C27.4013 18.4779 27.3954 18.4809 27.3895 18.4838L22.1028 21.5103C21.5901 21.8042 21.1823 21.692 20.9326 21.5457C20.5336 21.3138 20.2677 20.8485 20.2692 20.3877C20.2706 20.0982 20.3785 19.6905 20.8927 19.3966L25.8378 16.5651C25.9102 16.5237 25.9663 16.4602 26.0003 16.3849L28.8549 9.97909C29.1061 9.41633 29.7207 8.96436 30.5008 8.76792C30.5865 8.75463 30.6708 8.73691 30.755 8.71623C31.3755 8.6217 32.0064 8.74577 32.556 9.07662C33.1781 9.45032 33.6154 10.0411 33.7883 10.7383L35.8937 19.2106C36.1198 20.1175 35.8497 21.0967 35.1877 21.7673Z\" stroke=\"#E1A750\" mask=\"url(#path-1-outside-1_582_11541)\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-fe5cc8\",\"data-framer-name\":\"Frame 34343\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"Y2UCceHLu\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M36.955 14.857H36.0693L32.866 8.4285H35.6737C36.0276 8.4285 36.3143 8.14082 36.3143 7.78565C36.3143 7.43047 36.0276 7.14279 35.6737 7.14279H28.2035C27.4203 7.14279 26.6499 6.82297 26.0942 6.2637C25.0547 5.21904 23.6837 4.63083 22.2198 4.58104V3.28571C22.2198 2.57694 21.6448 2 20.9385 2H19.6572C18.9508 2 18.3759 2.57694 18.3759 3.28571V4.58104C16.912 4.63086 15.5425 5.21908 14.5015 6.2637C13.9441 6.82139 13.1753 7.14279 12.3921 7.14279H4.92197C4.09074 7.15565 4.07151 8.41241 4.92197 8.4285H7.72967L4.52638 14.857H3.64066C3.28669 14.857 3 15.1447 3 15.4999C3.31713 23.1755 14.2161 23.1738 14.5318 15.4999C14.5318 15.1447 14.2451 14.857 13.8912 14.857H13.0054L9.80216 8.4285H12.392C13.5132 8.4285 14.6119 7.97046 15.4079 7.17332C16.2071 6.37137 17.2546 5.91654 18.3758 5.86671V23.7156C18.3758 24.0708 18.6625 24.3585 19.0164 24.3585C19.3704 24.3585 19.6571 24.0708 19.6571 23.7156V3.28583H20.9384V23.3495C20.9384 23.7046 21.2251 23.9923 21.5791 23.9923C21.933 23.9923 22.2197 23.7046 22.2197 23.3495V5.86712C23.3409 5.91534 24.3884 6.37178 25.1876 7.17373C25.9836 7.97087 27.0823 8.42891 28.2035 8.42891H30.7933L27.59 14.8575H26.7043C26.3504 14.8575 26.0637 15.1451 26.0637 15.5003C26.3776 23.1714 37.2785 23.1775 37.5955 15.5003C37.5955 15.1451 37.3088 14.8575 36.9548 14.8575L36.955 14.857ZM8.76608 19.9999C6.51097 19.9999 4.63881 18.3204 4.32802 16.1428H9.19045C9.54441 16.1428 9.83111 15.8551 9.83111 15.4999C9.83111 15.1447 9.54441 14.857 9.19045 14.857H5.95994L8.76764 9.2242L12.0382 15.7877C12.2368 16.228 12.8198 16.1397 13.2058 16.1429C12.8935 18.3205 11.0228 20 8.76776 20L8.76608 19.9999ZM31.8297 9.22255L34.6374 14.857H29.0222L31.8297 9.22255ZM31.8297 19.9999C29.5746 19.9999 27.7025 18.3204 27.3917 16.1428H36.2694C35.9571 18.3204 34.0864 19.9999 31.8314 19.9999H31.8297Z\" fill=\"#0ABBDB\"/>\\n<path d=\"M5.69617 29.0019C5.29896 30.1333 5.81309 31.3724 6.89261 31.8851L18.0575 37.1905C19.1995 37.7337 20.4279 38.0021 21.6547 38.0021C23.1218 38.0021 24.5841 37.6164 25.8911 36.853L30.3242 34.259C30.5004 34.1562 30.7006 34.1015 30.904 34.1015H34.3908C34.7448 34.1015 35.0315 33.8139 35.0315 33.4587C35.0315 33.1035 34.7448 32.8158 34.3908 32.8158H30.904C30.4732 32.8158 30.0488 32.9299 29.6772 33.1485L25.244 35.7424C23.2115 36.9333 20.7305 37.0378 18.6037 36.0285L7.43888 30.7232C6.30492 30.1767 6.94878 28.4266 8.17564 28.7737L15.2903 30.8453C15.7612 31.2889 16.3891 31.5653 17.0842 31.5653H23.0245C23.8654 31.5508 23.867 30.2941 23.0245 30.2796H17.0842C15.308 30.2346 15.3031 27.6198 17.0842 27.5732H21.234C21.8105 27.5732 22.3711 27.4093 22.858 27.0991C24.0336 26.3984 25.6673 25.0275 27.128 25.1448H34.3899C35.2211 25.1368 35.2387 23.872 34.3899 23.8591H27.128C25.3646 23.737 23.582 25.1239 22.1708 26.0143C21.8905 26.1927 21.5654 26.2875 21.2339 26.2875H17.084C15.5224 26.2746 14.2379 27.7163 14.4894 29.2736L8.53302 27.5395C7.34621 27.1939 6.10332 27.8384 5.69489 29.0036L5.69617 29.0019Z\" fill=\"#0ABBDB\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-twfitg\",\"data-framer-name\":\"Frame 34345\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"RR7IczmK0\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M30.5746 20.0051C30.5746 20.2552 30.5746 20.4958 30.5458 20.7363C30.5458 20.871 30.5265 21.0153 30.5073 21.15C30.4976 21.3039 30.4784 21.4579 30.4495 21.6118C30.4303 21.785 30.4014 21.9582 30.3629 22.1313C30.3245 22.3045 30.286 22.4777 30.2379 22.6509C30.1994 22.8144 30.1513 22.978 30.1032 23.1416C30.1032 23.1512 30.1032 23.1608 30.1032 23.1608C29.9973 23.4783 29.8819 23.7958 29.7568 24.1037C29.728 24.1806 29.6991 24.248 29.6606 24.3153C29.574 24.5078 29.4874 24.6906 29.3816 24.8734C29.2661 25.085 29.1507 25.2871 29.016 25.4891C28.6696 26.0568 28.2944 26.6052 27.8422 27.0958C27.8422 27.1054 27.8326 27.1151 27.823 27.1247C27.7171 27.2498 27.5921 27.3748 27.4766 27.4903C27.2842 27.6827 27.0918 27.8559 26.8897 28.0291C26.7454 28.1541 26.6011 28.2696 26.4568 28.3851C26.3028 28.5005 26.1585 28.6063 26.0046 28.7122C25.8507 28.8084 25.6967 28.9142 25.5428 29.0104C25.3888 29.1066 25.2349 29.1932 25.0713 29.2798C24.292 29.7128 23.455 30.0495 22.5795 30.2612C22.262 30.3478 21.9349 30.4151 21.6078 30.4632C20.8958 30.569 20.1646 30.6075 19.4334 30.5787C18.8946 30.5498 18.3751 30.4825 17.8555 30.3766C17.5092 30.2997 17.1724 30.2131 16.8453 30.1169C16.345 29.9629 15.864 29.7705 15.4021 29.5492C15.2482 29.4819 15.0943 29.4049 14.9403 29.3087C13.8531 28.7122 12.8814 27.9425 12.0636 27.0189C11.6499 26.5474 11.2747 26.0375 10.9476 25.4987C10.9283 25.4602 10.8995 25.4314 10.8802 25.3929C9.94698 23.815 9.4082 21.9678 9.4082 20.0051C9.4082 19.88 9.4082 19.7453 9.41782 19.6202C9.4082 19.5914 9.4082 19.5625 9.41782 19.5336C9.41782 19.4278 9.41782 19.3316 9.43707 19.2258C9.44669 19.1296 9.45631 19.0237 9.46593 18.9179C9.49479 18.6004 9.5429 18.2829 9.60062 17.975C9.61025 17.9173 9.61987 17.8692 9.62949 17.8211C10.4088 14.1362 13.0835 11.1633 16.6048 9.9799C16.6433 9.96066 16.6818 9.95104 16.7202 9.94141C16.8742 9.89331 17.0281 9.8452 17.182 9.80672C18.0768 9.55657 19.0197 9.42188 19.9914 9.42188C20.8284 9.42188 21.6462 9.51809 22.4255 9.71051C22.6853 9.76823 22.9355 9.82596 23.1856 9.91255C25.9757 10.7977 28.2752 12.8085 29.5355 15.4158C29.6029 15.5601 29.6702 15.7045 29.7376 15.8584C29.8049 16.0219 29.8723 16.1951 29.93 16.3683C30.2956 17.3785 30.5169 18.4657 30.5554 19.601C30.5554 19.6202 30.5554 19.6395 30.5554 19.6491C30.5554 19.7646 30.5746 19.88 30.5746 20.0051Z\" stroke=\"#2499E2\" stroke-width=\"1.16604\" stroke-miterlimit=\"10\"/>\\n<path d=\"M29.0254 25.8963C28.4482 24.5109 27.4476 23.6065 26.014 23.1639C24.9653 22.8464 23.9263 22.4712 22.8776 22.1152C22.8391 22.1056 22.8006 22.0864 22.7044 22.0383C24.3977 20.8549 25.254 19.2578 25.1097 17.2085C25.0135 15.8615 24.4266 14.7166 23.4164 13.8026C21.3767 11.9457 18.2017 12.0997 16.2486 14.1009C14.5746 15.8134 13.8818 19.6522 17.2492 22.0671C16.2198 22.4135 15.2192 22.7983 14.1993 23.087C12.6792 23.5295 11.5728 24.3954 10.957 25.906C11.2841 26.4447 11.6594 26.9546 12.0731 27.4261C11.9672 27.2433 11.948 27.0509 12.0057 26.8296C12.2559 25.7713 12.8331 24.9342 13.8626 24.559C15.5367 23.9529 17.23 23.3371 18.9618 22.9042C19.2985 22.8176 19.6449 22.8176 19.9912 22.7791C20.7609 22.7887 21.5018 22.9811 22.2233 23.2217C23.4548 23.6354 24.6863 24.0395 25.9082 24.4628C27.005 24.8573 27.6785 25.6462 27.9575 26.7718C28.0249 27.0412 28.0056 27.2721 27.8517 27.5031C28.3039 27.0028 28.6791 26.464 29.0254 25.8963ZM19.972 21.4899C17.7591 21.4802 16.1139 19.835 16.1139 17.6318C16.1236 15.4382 17.8169 13.7641 20.0105 13.7834C22.2233 13.8026 23.8685 15.4574 23.8589 17.6607C23.8589 19.8639 22.2041 21.4899 19.972 21.4899Z\" fill=\"#2499E2\"/>\\n<path d=\"M4.01081 22.059C3.67407 22.2034 3.33733 22.3573 2.99097 22.492C2.41371 22.7133 2 22.4439 2 21.8281C2 20.5966 2 19.3651 2 18.1433C2 17.5852 2.42333 17.2774 2.93325 17.489C4.4149 18.1048 5.89654 18.7494 7.36857 19.3844C7.62834 19.4998 7.77266 19.6923 7.77266 19.9809C7.77266 20.2791 7.62834 20.4908 7.35895 20.6159C6.78168 20.866 6.21404 21.1162 5.62715 21.3471C5.377 21.4433 5.29042 21.5684 5.3289 21.8378C6.38722 28.2069 9.96627 32.3632 16.1526 34.2586C16.2392 34.2875 16.3258 34.2971 16.4124 34.3259C16.7876 34.451 16.9897 34.7781 16.9127 35.1149C16.8261 35.4805 16.4894 35.6729 16.0757 35.5767C14.95 35.3169 13.8724 34.9321 12.843 34.4029C8.01318 31.8918 5.08837 27.9664 4.13588 22.5978C4.10702 22.4343 4.06854 22.2803 4.03967 22.1168C4.03967 22.1072 4.02043 22.0975 4.00119 22.059H4.01081Z\" fill=\"#2499E2\"/>\\n<path d=\"M35.9624 17.9528C36.3377 17.7892 36.6744 17.6353 37.0207 17.5006C37.5692 17.2889 37.9829 17.5679 37.9925 18.1548C37.9925 19.3863 37.9925 20.6082 37.9925 21.8397C37.9925 22.4266 37.5691 22.7248 37.0304 22.4939C35.5583 21.8782 34.0959 21.2432 32.6335 20.6082C32.3641 20.4927 32.2102 20.2811 32.2198 19.9732C32.2198 19.6653 32.393 19.4825 32.6624 19.3671C33.23 19.1265 33.7784 18.8764 34.3557 18.6551C34.6059 18.5589 34.6924 18.4434 34.654 18.1644C33.8169 12.0646 29.6702 7.31183 23.7629 5.7051C23.2337 5.56079 22.9932 5.27216 23.0798 4.88731C23.176 4.4736 23.5608 4.2908 24.09 4.44474C30.0358 6.17654 33.8747 10.0154 35.568 15.9804C35.7508 16.6058 35.8374 17.26 35.9817 17.9431L35.9624 17.9528Z\" fill=\"#2499E2\"/>\\n<path d=\"M22.031 35.9501C22.1946 36.3445 22.3581 36.6909 22.4928 37.0565C22.6852 37.576 22.4062 37.9897 21.8482 37.9994C20.6071 37.9994 19.3563 37.9994 18.1152 37.9994C17.5764 37.9994 17.2686 37.5857 17.4706 37.095C18.096 35.5941 18.7406 34.1028 19.3852 32.6116C19.491 32.3518 19.7027 32.2171 19.9913 32.2171C20.2992 32.2171 20.5013 32.3806 20.6167 32.65C20.8669 33.2273 21.117 33.7949 21.3479 34.3818C21.4345 34.6127 21.55 34.6993 21.8097 34.6705C27.6209 34.0355 32.6912 29.6771 34.2209 24.0007C34.2594 23.8756 34.2787 23.7409 34.3172 23.6062C34.4422 23.2021 34.779 22.9808 35.1253 23.077C35.4909 23.1733 35.6737 23.5004 35.5679 23.9237C35.0868 25.9249 34.2402 27.7625 33.0279 29.4173C30.3052 33.1311 26.6299 35.267 22.0406 35.9501H22.031Z\" fill=\"#2499E2\"/>\\n<path d=\"M19.9721 2C20.5879 2 21.2036 2 21.8194 2C22.4159 2 22.7238 2.41371 22.5025 2.94287C21.8867 4.4149 21.2517 5.8773 20.6168 7.33971C20.5013 7.6091 20.2993 7.76304 19.9914 7.76304C19.6835 7.76304 19.4911 7.59948 19.3756 7.33009C19.1255 6.75282 18.8753 6.18518 18.6444 5.59829C18.5482 5.35776 18.4231 5.29042 18.1826 5.3289C13.3336 6.03124 9.62946 8.46538 7.14722 12.6987C6.51223 13.7858 6.06004 14.95 5.74254 16.1719C5.5886 16.7684 5.28073 17.0185 4.87664 16.9127C4.46293 16.7972 4.309 16.422 4.48218 15.8448C6.22359 9.93741 10.0528 6.12745 15.989 4.44376C16.5085 4.29944 17.0377 4.19361 17.5669 4.13588C17.9806 4.08778 17.9613 3.93384 17.7978 3.64521C17.6727 3.42392 17.5861 3.18339 17.4995 2.94287C17.3071 2.41371 17.5861 2.00962 18.1441 2C18.7599 2 19.3756 2 19.9914 2L19.9721 2Z\" fill=\"#2499E2\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-t89d5c\",\"data-framer-name\":\"Frame 34344\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"GGFWdeuI5\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_582_11564)\">\\n<path d=\"M20.0734 10.3906C25.2919 10.3949 29.5131 14.6353 29.5046 19.8648C29.496 25.0615 25.2232 29.3033 20.0047 29.2947C14.8621 29.2875 10.6065 25.0014 10.6094 19.8348C10.6122 14.6081 14.8421 10.3863 20.0734 10.3906ZM13.0882 24.0909C13.7488 21.9106 15.0355 20.3645 17.0257 19.4397C17.4771 19.2292 17.1791 19.0531 17.0773 18.8541C16.3193 17.3624 16.6446 15.6789 17.8912 14.6539C19.1535 13.616 20.9862 13.6217 22.2385 14.6696C23.4837 15.7118 23.8247 17.4068 23.0065 18.8642C22.7787 19.2707 22.9076 19.3509 23.23 19.5084C25.0383 20.3859 26.2348 21.8089 26.9082 23.6886C26.9483 23.8017 26.8896 23.9992 27.1102 24.0021C29.218 20.8999 28.4571 16.2029 25.4252 13.5788C22.2801 10.8559 17.5817 10.9318 14.5182 13.7305C11.237 16.7268 11.237 21.4381 13.0882 24.0923V24.0909ZM19.9545 28.0893C22.1697 28.0793 24.0482 27.3305 25.6573 25.8875C25.9281 25.6441 26.0456 25.4137 25.9768 25.0243C25.5871 22.7982 24.3419 21.2792 22.2758 20.3974C21.9247 20.2471 21.6224 20.2285 21.2556 20.3731C20.4761 20.6808 19.6608 20.6966 18.8842 20.3788C18.4901 20.2184 18.1634 20.2499 17.7981 20.4088C15.7663 21.2936 14.544 22.8082 14.14 24.9956C14.0697 25.3807 14.1571 25.6155 14.4323 25.8646C16.0156 27.299 17.8683 28.0463 19.9559 28.0878L19.9545 28.0893ZM20.0562 15.0948C18.8269 15.0948 17.8668 16.0511 17.8797 17.2622C17.8912 18.459 18.8971 19.4339 20.0964 19.4096C21.2727 19.3867 22.2242 18.429 22.2328 17.2565C22.2414 16.0354 21.2957 15.0948 20.0562 15.0948Z\" fill=\"#2BD0A7\" stroke=\"#2BD0A7\" stroke-width=\"0.3\"/>\\n<path d=\"M34.554 26.8082C34.3806 26.111 34.2674 25.5784 34.1112 25.0602C33.9837 24.635 34.1155 24.3301 34.511 24.2113C34.9466 24.0796 35.1758 24.3788 35.2775 24.7581C35.5484 25.766 35.7948 26.7795 36.0699 27.7874C36.1931 28.2412 36.0628 28.5346 35.61 28.6621C34.5353 28.9627 33.4592 29.2533 32.3832 29.5468C31.9934 29.6527 31.7097 29.4967 31.6051 29.1288C31.4934 28.7351 31.7283 28.4917 32.088 28.3829C32.6454 28.2125 33.2099 28.0637 33.9192 27.8661C32.6912 27.1703 31.6008 26.5519 30.5104 25.9335C30.3241 25.8275 30.135 25.7259 29.9516 25.6156C29.6278 25.421 29.4501 25.1447 29.6493 24.7839C29.8628 24.3974 30.1937 24.3788 30.5634 24.5878C31.618 25.1847 32.6755 25.7774 33.7329 26.3701C33.9579 26.4961 34.1886 26.6135 34.5525 26.8082H34.554Z\" fill=\"#2BD0A7\" stroke=\"#2BD0A7\" stroke-width=\"0.3\"/>\\n<path d=\"M5.56712 13.1983C5.73763 13.8883 5.84939 14.418 6.00128 14.9377C6.12307 15.3543 6.0156 15.6692 5.6144 15.7938C5.18168 15.9283 4.94096 15.6392 4.83922 15.2584C4.56125 14.2276 4.30476 13.1926 4.03539 12.159C3.93509 11.7739 4.04971 11.489 4.43659 11.3773C5.55422 11.0552 6.67472 10.7446 7.79809 10.4468C8.14914 10.3538 8.41708 10.527 8.51165 10.8677C8.60765 11.2127 8.45577 11.479 8.10472 11.5878C7.52154 11.7682 6.93264 11.9314 6.20044 12.1447C7.41838 12.8333 8.51022 13.4517 9.60063 14.0687C9.7869 14.1747 9.97461 14.2763 10.158 14.3851C10.4804 14.5784 10.6695 14.8489 10.4675 15.2126C10.2583 15.5891 9.93162 15.6349 9.55621 15.4216C8.48156 14.8117 7.40262 14.2076 6.3251 13.6035C6.1202 13.4889 5.91244 13.3801 5.56712 13.1955V13.1983Z\" fill=\"#2BD0A7\" stroke=\"#2BD0A7\" stroke-width=\"0.3\"/>\\n<path d=\"M33.9425 12.11C33.2303 11.921 32.703 11.7907 32.1829 11.6404C31.8118 11.533 31.4951 11.324 31.6098 10.8831C31.7287 10.425 32.0654 10.3506 32.5067 10.4765C33.5112 10.7643 34.5242 11.0162 35.5329 11.2897C36.033 11.4257 36.2193 11.7163 36.0645 12.2503C35.7823 13.2295 35.553 14.2244 35.2893 15.2093C35.189 15.5844 34.9756 15.9022 34.5357 15.7805C34.09 15.656 33.9998 15.3139 34.133 14.8729C34.2878 14.359 34.3938 13.8307 34.5572 13.1622C33.355 13.8393 32.2875 14.442 31.2171 15.0433C30.9893 15.1721 30.7558 15.2895 30.5294 15.4212C30.1769 15.6245 29.8703 15.5558 29.6682 15.2222C29.4519 14.8658 29.6166 14.5723 29.9419 14.3848C30.9306 13.8136 31.9279 13.2595 32.9208 12.6969C33.2074 12.5352 33.4911 12.3691 33.9396 12.11H33.9425Z\" fill=\"#2BD0A7\" stroke=\"#2BD0A7\" stroke-width=\"0.3\"/>\\n<path d=\"M5.5543 26.837C6.92555 26.0654 8.14348 25.3783 9.36428 24.6954C9.56918 24.5809 9.76549 24.4248 10.0248 24.4692C10.2827 24.5136 10.469 24.6582 10.5249 24.9144C10.6023 25.2737 10.4045 25.4899 10.1065 25.656C9.11067 26.2114 8.11912 26.7755 7.12758 27.3367C6.8625 27.487 6.60029 27.6416 6.27073 27.8334C6.83528 28.1226 7.37547 28.1899 7.88843 28.3388C8.28534 28.4547 8.64069 28.6437 8.51316 29.1261C8.39137 29.5828 8.04318 29.6415 7.60473 29.5141C6.62465 29.2292 5.63454 28.9801 4.6473 28.7196C4.11714 28.5807 3.90077 28.2944 4.06412 27.7232C4.33923 26.7655 4.56419 25.7948 4.81924 24.8314C4.92527 24.4334 5.1273 24.0812 5.60731 24.2172C6.0644 24.3475 6.11455 24.7083 5.98559 25.1363C5.83657 25.6316 5.72911 26.1399 5.5543 26.837Z\" fill=\"#2BD0A7\" stroke=\"#2BD0A7\" stroke-width=\"0.3\"/>\\n<path d=\"M19.469 36.0024C19.469 34.4448 19.4776 33.0705 19.4647 31.6947C19.4604 31.2252 19.5077 30.7657 20.0909 30.79C20.6167 30.8115 20.6526 31.2567 20.6483 31.6962C20.6354 33.0705 20.644 34.4462 20.644 35.9866C21.1727 35.4956 21.6026 35.1062 22.021 34.7054C22.3204 34.4176 22.6586 34.3174 22.9609 34.6295C23.2632 34.9416 23.1543 35.2837 22.8577 35.5672C22.0998 36.293 21.3403 37.0145 20.5867 37.7432C20.2299 38.0882 19.8874 38.0896 19.5292 37.7432C18.7755 37.0145 18.0161 36.2916 17.2567 35.5686C16.9572 35.2823 16.8526 34.9444 17.1549 34.6309C17.4587 34.316 17.7997 34.419 18.0978 34.7054C18.509 35.099 18.9245 35.4884 19.4705 36.0038L19.469 36.0024Z\" fill=\"#2BD0A7\" stroke=\"#2BD0A7\" stroke-width=\"0.3\"/>\\n<path d=\"M19.4716 3.99421C18.9272 4.50815 18.5073 4.89325 18.1018 5.29123C17.8038 5.5847 17.4714 5.68491 17.1633 5.37569C16.8538 5.06504 16.9598 4.72432 17.2564 4.43943C18.013 3.71362 18.7738 2.9921 19.5275 2.262C19.8843 1.91699 20.2239 1.90983 20.585 2.2577C21.3387 2.98638 22.0995 3.7079 22.8561 4.43371C23.1527 4.71859 23.2616 5.06074 22.9607 5.37283C22.6583 5.68634 22.3173 5.58613 22.0193 5.29981C21.608 4.90327 21.1939 4.51244 20.6466 3.99278C20.6466 5.07362 20.6466 6.00702 20.6466 6.94184C20.6466 7.44146 20.6351 7.94252 20.6495 8.44214C20.6624 8.88879 20.5047 9.22521 20.0276 9.21233C19.5906 9.19945 19.463 8.86875 19.4659 8.45502C19.4774 7.03203 19.4702 5.60761 19.4702 3.99421H19.4716Z\" fill=\"#2BD0A7\" stroke=\"#2BD0A7\" stroke-width=\"0.3\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_582_11564\">\\n<rect width=\"32.1176\" height=\"36\" fill=\"white\" transform=\"translate(4 2)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-y2p0u4\",\"data-framer-name\":\"Frame 34346\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"woEiXTbuE\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_582_11650)\">\\n<path d=\"M18.5619 2.57403H19.0694C19.2155 2.6317 19.3577 2.6317 19.5038 2.57403H20.5188C20.6649 2.6317 20.8071 2.6317 20.9532 2.57403H21.3146C21.4491 2.65092 21.5991 2.60479 21.7375 2.60863C22.6832 2.62786 23.4252 3.25067 23.579 4.18488C23.7059 4.95763 23.7558 5.74191 23.8058 6.52619C23.8712 7.51039 24.3095 8.09475 25.1706 8.29082C25.6627 8.40231 26.0779 8.22931 26.4547 7.93713C27.0391 7.48732 27.5927 6.99907 28.1501 6.5185C28.6845 6.05716 29.2612 5.75729 29.9993 5.87647C30.3338 5.93029 30.6298 6.06485 30.8874 6.26092C31.9062 7.0452 32.7981 7.96019 33.617 8.94823C34.2014 9.65178 34.1629 10.8128 33.5901 11.4933C33.0826 12.093 32.5905 12.7043 32.0907 13.3118C31.4987 14.0345 31.4756 14.8649 32.0331 15.4916C32.3291 15.8261 32.702 15.9875 33.1441 16.0337C33.9246 16.1182 34.7089 16.1528 35.4893 16.2451C36.7311 16.3874 37.3616 17.0678 37.3846 18.3212C37.3846 18.3904 37.3654 18.4672 37.4192 18.5288V18.8901C37.3731 18.9401 37.3731 18.9863 37.4192 19.0362V20.8508C37.3731 20.9008 37.3731 20.947 37.4192 20.9969V21.4314C37.3423 21.8504 37.3808 22.2887 37.1232 22.677C36.6772 23.3536 36.0314 23.5958 35.2702 23.6189C35.0549 23.6266 34.8896 23.4843 34.7204 23.3652C33.6209 22.577 32.4175 22.0311 31.0643 21.8773C30.1031 21.7658 29.1343 21.762 28.1809 21.9811C28.0732 22.0042 27.9694 22.0388 27.8618 22.0542C27.5465 22.1041 27.4427 22.0119 27.5158 21.7005C27.6465 21.1546 27.7195 20.5971 27.7195 20.0473C27.7195 18.9786 27.5273 17.9329 27.0852 16.9448C26.1202 14.7957 24.5478 13.2925 22.2834 12.6274C19.6461 11.8547 17.2048 12.3199 15.0711 14.0845C13.3949 15.4724 12.4991 17.2793 12.3492 19.4553C12.1916 21.7466 12.9143 23.7304 14.506 25.3605C15.8323 26.7176 17.4778 27.4788 19.3923 27.6479C20.1612 27.7171 20.9071 27.6326 21.6567 27.4942C22.0758 27.4173 22.1604 27.498 22.0681 27.9286C21.6875 29.6509 21.7682 31.3387 22.441 32.9803C22.7101 33.6338 23.0485 34.2451 23.4867 34.7987C23.7443 35.1255 23.7866 35.4715 23.6943 35.856C23.4867 36.744 22.7294 37.3553 21.8182 37.3861C20.6456 37.4245 19.4769 37.4322 18.3043 37.3861C17.3932 37.3515 16.6051 36.7056 16.4436 35.7983C16.309 35.0486 16.2975 34.2836 16.2129 33.53C16.2052 33.4685 16.2129 33.4109 16.2052 33.3493C16.1476 32.6573 15.8977 32.0807 15.2172 31.7808C14.5175 31.4732 13.9293 31.6847 13.3834 32.1575C12.7913 32.6727 12.1992 33.1917 11.5726 33.6646C10.7998 34.249 9.88485 34.2643 9.1198 33.68C8.08947 32.8918 7.16294 31.9884 6.37866 30.9504C5.78661 30.1738 5.82889 29.1627 6.46324 28.4091C6.95918 27.8171 7.44743 27.2174 7.94338 26.6215C8.37012 26.1063 8.52774 25.5219 8.26631 24.8991C7.9972 24.2648 7.47434 23.9687 6.78233 23.9072C6.0019 23.838 5.21762 23.788 4.43718 23.6996C3.32996 23.5689 2.62642 22.7885 2.59951 21.6813C2.57259 20.5587 2.55722 19.4361 2.59951 18.3135C2.63411 17.3331 3.27229 16.5488 4.24111 16.3912C5.12535 16.249 6.01728 16.1951 6.90536 16.1221C8.05102 16.026 8.88144 14.5651 7.93184 13.4655C7.45897 12.9158 7.00147 12.3545 6.5286 11.8047C6.06725 11.2703 5.77507 10.686 5.90963 9.95165C5.97114 9.62102 6.10954 9.325 6.30946 9.06741C7.08989 8.06015 7.9972 7.17976 8.97755 6.36472C9.68494 5.77651 10.846 5.81496 11.5265 6.38779C12.1262 6.89142 12.7375 7.38736 13.3449 7.88715C14.1215 8.52149 15.0403 8.49458 15.6555 7.82179C15.9015 7.55268 16.0245 7.23358 16.063 6.8722C16.1514 6.06869 16.1975 5.26135 16.2783 4.454C16.3898 3.31987 17.1394 2.61248 18.2851 2.5971C18.3774 2.5971 18.4773 2.62786 18.5658 2.5625L18.5619 2.57403Z\" stroke=\"#7E9A10\" stroke-width=\"1.15335\" stroke-miterlimit=\"10\"/>\\n<path d=\"M19.5077 2.57812C19.3616 2.68193 19.2193 2.69346 19.0732 2.57812H19.5077Z\" fill=\"#7E9A10\"/>\\n<path d=\"M20.9569 2.57812C20.8108 2.69346 20.6686 2.68193 20.5225 2.57812H20.9569Z\" fill=\"#7E9A10\"/>\\n<path d=\"M19.985 27.0925C18.1281 27.0425 16.498 26.4005 15.1217 25.128C14.9448 24.9665 14.9371 24.8396 15.0525 24.6436C16.1981 22.6444 17.9089 21.5641 20.2195 21.6026C21.8649 21.6333 23.2259 22.3791 24.3024 23.6286C24.4062 23.7478 24.4254 23.8208 24.2947 23.9439C23.5065 24.6743 22.8953 25.5316 22.457 26.512C22.3993 26.6466 22.3032 26.7004 22.1648 26.7465C21.4574 26.9772 20.7347 27.0733 19.985 27.0925Z\" stroke=\"#7E9A10\" stroke-width=\"1.15335\" stroke-miterlimit=\"10\"/>\\n<path d=\"M22.6338 17.3799C22.6415 18.8331 21.4958 20.0057 20.0387 20.0326C18.6086 20.0595 17.4091 18.8793 17.3937 17.4299C17.3783 15.9574 18.5432 14.7695 20.008 14.7656C21.4612 14.7656 22.6299 15.9228 22.6338 17.3799Z\" stroke=\"#7E9A10\" stroke-width=\"1.15335\" stroke-miterlimit=\"10\"/>\\n<path d=\"M28.4378 33.3206C28.1725 33.3091 27.9111 33.1861 27.715 32.9323C26.973 31.9635 26.2311 30.9908 25.5006 30.0143C25.1354 29.5261 25.2199 28.9263 25.6736 28.5919C26.1311 28.2574 26.7193 28.3535 27.0884 28.8341C27.5382 29.4184 27.9957 30.0028 28.4263 30.6025C28.5685 30.8025 28.6416 30.8178 28.8223 30.6371C30.0909 29.3877 31.375 28.1536 32.6552 26.9157C33.1166 26.4697 33.7817 26.4774 34.1584 26.931C34.5044 27.3462 34.4737 27.9075 34.0585 28.3189C33.4088 28.9609 32.7513 29.5914 32.0978 30.2258C31.152 31.1446 30.2024 32.0596 29.2567 32.9785C29.0414 33.1899 28.7953 33.3245 28.434 33.3206H28.4378Z\" fill=\"#7E9A10\"/>\\n<path d=\"M29.8376 36.3569C33.3729 36.3569 36.2387 33.491 36.2387 29.9558C36.2387 26.4206 33.3729 23.5547 29.8376 23.5547C26.3024 23.5547 23.4365 26.4206 23.4365 29.9558C23.4365 33.491 26.3024 36.3569 29.8376 36.3569Z\" stroke=\"#7E9A10\" stroke-width=\"0.98035\" stroke-linejoin=\"bevel\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_582_11650\">\\n<rect width=\"36\" height=\"36.0038\" fill=\"white\" transform=\"translate(2 2)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dZpGI.framer-1a46ye9, .framer-dZpGI .framer-1a46ye9 { display: block; }\",\".framer-dZpGI.framer-197df8a { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: 358px; }\",\".framer-dZpGI .framer-bb4251 { 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: flex-start; overflow: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-dZpGI .framer-1x4g4rd, .framer-dZpGI .framer-26vdsq, .framer-dZpGI .framer-o8vwee, .framer-dZpGI .framer-18i6mvx, .framer-dZpGI .framer-1ckpyg3, .framer-dZpGI .framer-1kknj5 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 18px 16px 18px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-dZpGI .framer-b03ygq, .framer-dZpGI .framer-4bstnj, .framer-dZpGI .framer-1qn8k7t, .framer-dZpGI .framer-1g7ykue, .framer-dZpGI .framer-1if5387, .framer-dZpGI .framer-ms1fnk, .framer-dZpGI .framer-1g71xz4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-dZpGI .framer-123q45c { 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: 20px; position: relative; width: 100%; }\",\".framer-dZpGI .framer-1yoe6au { flex: none; height: 40px; position: relative; width: 71px; }\",\".framer-dZpGI .framer-10xsr8k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dZpGI .framer-r0wccy { 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-dZpGI .framer-13ee5tv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dZpGI .framer-1oseoe, .framer-dZpGI .framer-fe5cc8, .framer-dZpGI .framer-twfitg, .framer-dZpGI .framer-t89d5c, .framer-dZpGI .framer-y2p0u4 { flex: none; height: 40px; position: relative; width: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dZpGI.framer-197df8a, .framer-dZpGI .framer-bb4251, .framer-dZpGI .framer-1x4g4rd, .framer-dZpGI .framer-26vdsq, .framer-dZpGI .framer-o8vwee, .framer-dZpGI .framer-18i6mvx, .framer-dZpGI .framer-1ckpyg3, .framer-dZpGI .framer-1kknj5, .framer-dZpGI .framer-123q45c, .framer-dZpGI .framer-10xsr8k, .framer-dZpGI .framer-r0wccy { gap: 0px; } .framer-dZpGI.framer-197df8a > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-dZpGI.framer-197df8a > :first-child, .framer-dZpGI .framer-123q45c > :first-child, .framer-dZpGI .framer-10xsr8k > :first-child, .framer-dZpGI .framer-r0wccy > :first-child { margin-top: 0px; } .framer-dZpGI.framer-197df8a > :last-child, .framer-dZpGI .framer-123q45c > :last-child, .framer-dZpGI .framer-10xsr8k > :last-child, .framer-dZpGI .framer-r0wccy > :last-child { margin-bottom: 0px; } .framer-dZpGI .framer-bb4251 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-dZpGI .framer-bb4251 > :first-child, .framer-dZpGI .framer-1x4g4rd > :first-child, .framer-dZpGI .framer-26vdsq > :first-child, .framer-dZpGI .framer-o8vwee > :first-child, .framer-dZpGI .framer-18i6mvx > :first-child, .framer-dZpGI .framer-1ckpyg3 > :first-child, .framer-dZpGI .framer-1kknj5 > :first-child { margin-left: 0px; } .framer-dZpGI .framer-bb4251 > :last-child, .framer-dZpGI .framer-1x4g4rd > :last-child, .framer-dZpGI .framer-26vdsq > :last-child, .framer-dZpGI .framer-o8vwee > :last-child, .framer-dZpGI .framer-18i6mvx > :last-child, .framer-dZpGI .framer-1ckpyg3 > :last-child, .framer-dZpGI .framer-1kknj5 > :last-child { margin-right: 0px; } .framer-dZpGI .framer-1x4g4rd > *, .framer-dZpGI .framer-26vdsq > *, .framer-dZpGI .framer-o8vwee > *, .framer-dZpGI .framer-18i6mvx > *, .framer-dZpGI .framer-1ckpyg3 > *, .framer-dZpGI .framer-1kknj5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dZpGI .framer-123q45c > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-dZpGI .framer-10xsr8k > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-dZpGI .framer-r0wccy > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-dZpGI.framer-v-k6qm47 .framer-10xsr8k, .framer-dZpGI.framer-v-1gkyvrp .framer-fe5cc8 { order: 1; }\",\".framer-dZpGI.framer-v-k6qm47 .framer-13ee5tv { height: 74px; }\",\".framer-dZpGI.framer-v-k6qm47 .framer-1oseoe { order: 0; }\",\".framer-dZpGI.framer-v-1gkyvrp .framer-10xsr8k, .framer-dZpGI.framer-v-t4cfam .framer-twfitg { order: 2; }\",\".framer-dZpGI.framer-v-t4cfam .framer-10xsr8k, .framer-dZpGI.framer-v-hm1n9e .framer-t89d5c { order: 3; }\",\".framer-dZpGI.framer-v-hm1n9e .framer-10xsr8k, .framer-dZpGI.framer-v-1vjaxih .framer-y2p0u4 { order: 4; }\",\".framer-dZpGI.framer-v-1vjaxih .framer-10xsr8k { order: 5; }\",'.framer-dZpGI[data-border=\"true\"]::after, .framer-dZpGI [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 284\n * @framerIntrinsicWidth 358\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"D7rScJlz2\":{\"layout\":[\"fixed\",\"auto\"]},\"eQlZQ0U38\":{\"layout\":[\"fixed\",\"auto\"]},\"KZK2toZ4R\":{\"layout\":[\"fixed\",\"auto\"]},\"Xm80gEqdN\":{\"layout\":[\"fixed\",\"auto\"]},\"o68QWkMTT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroKsTDY1yZ=withCSS(Component,css,\"framer-dZpGI\");export default FrameroKsTDY1yZ;FrameroKsTDY1yZ.displayName=\"Core Values Mobile\";FrameroKsTDY1yZ.defaultProps={height:284,width:358};addPropertyControls(FrameroKsTDY1yZ,{variant:{options:[\"r2Wk5Hylh\",\"D7rScJlz2\",\"eQlZQ0U38\",\"KZK2toZ4R\",\"Xm80gEqdN\",\"o68QWkMTT\"],optionTitles:[\"Trust\",\"Respect\",\"Integrity\",\"Employee Focus\",\"Customer Focus\",\"Technical Excellence\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameroKsTDY1yZ,[{explicitInter:true,fonts:[{family:\"Creato Display Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/7CjN1yBagyojr4pOzu7glrJp4ZQ.woff2\"},{family:\"Creato Display Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/Oza9uDcU3yhSV2PCLntOreCKpE.woff2\"},{family:\"Creato Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/L314mS6jfb6BFfnKgQq2EF44s.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroKsTDY1yZ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"358\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D7rScJlz2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eQlZQ0U38\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KZK2toZ4R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Xm80gEqdN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"o68QWkMTT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"284\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oKsTDY1yZ.map", "// Generated by Framer (eca4804)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={Amvae_cLO:{hover:true},AWjOAMuVM:{hover:true},cw4Ng_FXO:{hover:true},DsUuAi4IY:{hover:true},h2vpjlejk:{hover:true},LiXUokuUJ:{hover:true},stMlXviFM:{hover:true},VhUfbO1ql:{hover:true},w8zZ4ibj2:{hover:true}};const cycleOrder=[\"stMlXviFM\",\"AWjOAMuVM\",\"w8zZ4ibj2\",\"LiXUokuUJ\",\"Amvae_cLO\",\"h2vpjlejk\",\"cw4Ng_FXO\",\"DsUuAi4IY\",\"VhUfbO1ql\"];const serializationHash=\"framer-ISvtj\";const variantClassNames={Amvae_cLO:\"framer-v-1vo20kd\",AWjOAMuVM:\"framer-v-1194q02\",cw4Ng_FXO:\"framer-v-1gqekfm\",DsUuAi4IY:\"framer-v-1ifrckr\",h2vpjlejk:\"framer-v-m4rtd4\",LiXUokuUJ:\"framer-v-znoau6\",stMlXviFM:\"framer-v-1fe1qy2\",VhUfbO1ql:\"framer-v-1e0c6gx\",w8zZ4ibj2:\"framer-v-d86w7a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Download Case Study\":\"LiXUokuUJ\",\"Ed tech case studies\":\"cw4Ng_FXO\",\"Enterprise case studies\":\"Amvae_cLO\",\"Enterprise case Study\":\"w8zZ4ibj2\",\"Featured Case Study\":\"stMlXviFM\",\"health tech case studies\":\"VhUfbO1ql\",\"Media & Sports Case Studies\":\"h2vpjlejk\",\"See All - Case Study\":\"AWjOAMuVM\",\"Social impact\":\"DsUuAi4IY\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"stMlXviFM\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"stMlXviFM\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"LiXUokuUJ-hover\")return false;if(baseVariant===\"LiXUokuUJ\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.joshsoftware.com/case-studies/transforming-remote-access-and-security-for-accelerated-product-growth-with-zero-trust-solutions\",motionChild:true,nodeId:\"stMlXviFM\",openInNewTab:true,scopeId:\"tCb2t8uST\",...addPropertyOverrides({\"LiXUokuUJ-hover\":{href:undefined},\"w8zZ4ibj2-hover\":{href:undefined},Amvae_cLO:{href:{webPageId:\"RKLq2QgDb\"}},AWjOAMuVM:{href:{webPageId:\"qZrUu2lTl\"}},cw4Ng_FXO:{href:{webPageId:\"OMr20zQ0e\"}},DsUuAi4IY:{href:{webPageId:\"kAY1CHNvK\"}},h2vpjlejk:{href:{webPageId:\"xQxmeL20N\"}},LiXUokuUJ:{href:undefined},VhUfbO1ql:{href:{webPageId:\"i9fzkx5pq\"}},w8zZ4ibj2:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1fe1qy2\",className,classNames)} framer-pktli8`,\"data-framer-name\":\"Featured Case Study\",layoutDependency:layoutDependency,layoutId:\"stMlXviFM\",ref:refBinding,style:{backgroundColor:\"rgb(206, 67, 56)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},variants:{\"Amvae_cLO-hover\":{backgroundColor:\"rgb(154, 41, 32)\"},\"AWjOAMuVM-hover\":{backgroundColor:\"rgb(154, 41, 32)\"},\"cw4Ng_FXO-hover\":{backgroundColor:\"rgb(154, 41, 32)\"},\"DsUuAi4IY-hover\":{backgroundColor:\"rgb(154, 41, 32)\"},\"h2vpjlejk-hover\":{backgroundColor:\"rgb(154, 41, 32)\"},\"LiXUokuUJ-hover\":{backgroundColor:\"rgb(154, 41, 32)\"},\"stMlXviFM-hover\":{backgroundColor:\"rgb(154, 41, 32)\"},\"VhUfbO1ql-hover\":{backgroundColor:\"rgb(154, 41, 32)\"},\"w8zZ4ibj2-hover\":{backgroundColor:\"rgb(154, 41, 32)\"}},...addPropertyOverrides({\"Amvae_cLO-hover\":{\"data-framer-name\":undefined},\"AWjOAMuVM-hover\":{\"data-framer-name\":undefined},\"cw4Ng_FXO-hover\":{\"data-framer-name\":undefined},\"DsUuAi4IY-hover\":{\"data-framer-name\":undefined},\"h2vpjlejk-hover\":{\"data-framer-name\":undefined},\"LiXUokuUJ-hover\":{\"data-framer-name\":undefined},\"stMlXviFM-hover\":{\"data-framer-name\":undefined},\"VhUfbO1ql-hover\":{\"data-framer-name\":undefined},\"w8zZ4ibj2-hover\":{\"data-framer-name\":undefined},Amvae_cLO:{\"data-framer-name\":\"Enterprise case studies\"},AWjOAMuVM:{\"data-framer-name\":\"See All - Case Study\"},cw4Ng_FXO:{\"data-framer-name\":\"Ed tech case studies\"},DsUuAi4IY:{\"data-framer-name\":\"Social impact\"},h2vpjlejk:{\"data-framer-name\":\"Media & Sports Case Studies\"},LiXUokuUJ:{\"data-framer-name\":\"Download Case Study\"},VhUfbO1ql:{\"data-framer-name\":\"health tech case studies\"},w8zZ4ibj2:{\"data-framer-name\":\"Enterprise case Study\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m70fim\",layoutDependency:layoutDependency,layoutId:\"sDUOyWEei\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:\"Learn More\"})}),className:\"framer-9lvh4f\",\"data-framer-name\":\"Work with us\",fonts:[\"CUSTOM;Creato Display Bold\"],layoutDependency:layoutDependency,layoutId:\"MbZRDgUap\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Amvae_cLO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:\"View More\"})})},AWjOAMuVM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:\"See all\"})})},cw4Ng_FXO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:\"View More\"})})},DsUuAi4IY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:\"View More\"})})},h2vpjlejk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:\"View More\"})})},LiXUokuUJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:\"Download Case study\"})})},VhUfbO1ql:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:\"View More\"})})},w8zZ4ibj2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:\"See all\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-xk0q89\",\"data-framer-name\":\"tail-right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"Sj9md4rT1\",svg:'<svg width=\"23\" height=\"7\" viewBox=\"0 0 23 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.454 6.5L1 6.5C0.447715 6.5 -2.62762e-08 6.05228 -1.69275e-08 5.5C-7.57868e-09 4.94772 0.447715 4.5 1 4.5L21.454 4.5C22.0063 4.5 22.454 4.94772 22.454 5.5C22.454 6.05228 22.0063 6.5 21.454 6.5Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.8586 0.952611C15.161 0.490457 15.7808 0.360933 16.2429 0.663311L22.3565 4.66331C22.8187 4.96569 22.9482 5.58546 22.6458 6.04762C22.3434 6.50977 21.7237 6.6393 21.2615 6.33692L15.1479 2.33692C14.6858 2.03454 14.5562 1.41476 14.8586 0.952611Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ISvtj.framer-pktli8, .framer-ISvtj .framer-pktli8 { display: block; }\",\".framer-ISvtj.framer-1fe1qy2 { cursor: pointer; height: 36px; overflow: visible; position: relative; text-decoration: none; width: 151px; }\",\".framer-ISvtj .framer-m70fim { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 50%; width: 100%; }\",\".framer-ISvtj .framer-9lvh4f { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ISvtj .framer-xk0q89 { flex: none; height: 7px; position: relative; width: 23px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ISvtj .framer-m70fim { gap: 0px; } .framer-ISvtj .framer-m70fim > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-ISvtj .framer-m70fim > :first-child { margin-left: 0px; } .framer-ISvtj .framer-m70fim > :last-child { margin-right: 0px; } }\",\".framer-ISvtj.framer-v-znoau6.framer-1fe1qy2 { width: 202px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 151\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"AWjOAMuVM\":{\"layout\":[\"fixed\",\"fixed\"]},\"w8zZ4ibj2\":{\"layout\":[\"fixed\",\"fixed\"]},\"LiXUokuUJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"Amvae_cLO\":{\"layout\":[\"fixed\",\"fixed\"]},\"h2vpjlejk\":{\"layout\":[\"fixed\",\"fixed\"]},\"cw4Ng_FXO\":{\"layout\":[\"fixed\",\"fixed\"]},\"DsUuAi4IY\":{\"layout\":[\"fixed\",\"fixed\"]},\"VhUfbO1ql\":{\"layout\":[\"fixed\",\"fixed\"]},\"BljVo3lrh\":{\"layout\":[\"fixed\",\"fixed\"]},\"v9NG1XnFq\":{\"layout\":[\"fixed\",\"fixed\"]},\"tiV_b9Fwq\":{\"layout\":[\"fixed\",\"fixed\"]},\"aT1rqUgoF\":{\"layout\":[\"fixed\",\"fixed\"]},\"DSVM3eAYe\":{\"layout\":[\"fixed\",\"fixed\"]},\"sXmeIE03B\":{\"layout\":[\"fixed\",\"fixed\"]},\"GPHK4fHw2\":{\"layout\":[\"fixed\",\"fixed\"]},\"i3CK8AYWk\":{\"layout\":[\"fixed\",\"fixed\"]},\"EX84BlayT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramertCb2t8uST=withCSS(Component,css,\"framer-ISvtj\");export default FramertCb2t8uST;FramertCb2t8uST.displayName=\"/See all Button\";FramertCb2t8uST.defaultProps={height:36,width:151};addPropertyControls(FramertCb2t8uST,{variant:{options:[\"stMlXviFM\",\"AWjOAMuVM\",\"w8zZ4ibj2\",\"LiXUokuUJ\",\"Amvae_cLO\",\"h2vpjlejk\",\"cw4Ng_FXO\",\"DsUuAi4IY\",\"VhUfbO1ql\"],optionTitles:[\"Featured Case Study\",\"See All - Case Study\",\"Enterprise case Study\",\"Download Case Study\",\"Enterprise case studies\",\"Media & Sports Case Studies\",\"Ed tech case studies\",\"Social impact\",\"health tech case studies\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramertCb2t8uST,[{explicitInter:true,fonts:[{family:\"Creato Display Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/7CjN1yBagyojr4pOzu7glrJp4ZQ.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertCb2t8uST\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AWjOAMuVM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"w8zZ4ibj2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LiXUokuUJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Amvae_cLO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h2vpjlejk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cw4Ng_FXO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DsUuAi4IY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VhUfbO1ql\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BljVo3lrh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v9NG1XnFq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tiV_b9Fwq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aT1rqUgoF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DSVM3eAYe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sXmeIE03B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GPHK4fHw2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"i3CK8AYWk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EX84BlayT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"36\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"151\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tCb2t8uST.map", "// Generated by Framer (99bc0fd)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"iUgumFEEd\",\"gZZM_7kSK\",\"uE2RwYsyr\",\"dh8DpdTF0\",\"Jjw6yAYhq\",\"K8GgcYV5Q\"];const serializationHash=\"framer-WOona\";const variantClassNames={dh8DpdTF0:\"framer-v-s1ajb9\",gZZM_7kSK:\"framer-v-1fdqxeu\",iUgumFEEd:\"framer-v-60fdv1\",Jjw6yAYhq:\"framer-v-18x6dj7\",K8GgcYV5Q:\"framer-v-1bjybpl\",uE2RwYsyr:\"framer-v-1vrenvm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Customer Focus\":\"Jjw6yAYhq\",\"Employee Focus\":\"dh8DpdTF0\",\"Integrity & Ethics\":\"uE2RwYsyr\",\"Techinal Excellence\":\"K8GgcYV5Q\",Respect:\"gZZM_7kSK\",Trust:\"iUgumFEEd\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"iUgumFEEd\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iUgumFEEd\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter15l6xcs=activeVariantCallback(async(...args)=>{setVariant(\"iUgumFEEd\");});const onMouseEnter1dfwrlu=activeVariantCallback(async(...args)=>{setVariant(\"gZZM_7kSK\");});const onMouseEnter1ajifs5=activeVariantCallback(async(...args)=>{setVariant(\"uE2RwYsyr\");});const onTapgnqhaj=activeVariantCallback(async(...args)=>{setVariant(CycleVariantState);});const onMouseEnterum8crv=activeVariantCallback(async(...args)=>{setVariant(\"dh8DpdTF0\");});const onMouseEnter12dq4q4=activeVariantCallback(async(...args)=>{setVariant(\"Jjw6yAYhq\");});const onMouseEnterqjouub=activeVariantCallback(async(...args)=>{setVariant(\"K8GgcYV5Q\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"gZZM_7kSK\",\"uE2RwYsyr\",\"dh8DpdTF0\",\"Jjw6yAYhq\",\"K8GgcYV5Q\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"K8GgcYV5Q\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"Jjw6yAYhq\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"dh8DpdTF0\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"uE2RwYsyr\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"gZZM_7kSK\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-60fdv1\",className,classNames),\"data-framer-name\":\"Trust\",layoutDependency:layoutDependency,layoutId:\"iUgumFEEd\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({dh8DpdTF0:{\"data-framer-name\":\"Employee Focus\"},gZZM_7kSK:{\"data-framer-name\":\"Respect\"},Jjw6yAYhq:{\"data-framer-name\":\"Customer Focus\"},K8GgcYV5Q:{\"data-framer-name\":\"Techinal Excellence\"},uE2RwYsyr:{\"data-framer-name\":\"Integrity & Ethics\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1el56bv\",\"data-framer-name\":\"Frame 237826\",layoutDependency:layoutDependency,layoutId:\"RTt8F0Q8m\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dzn7xr\",\"data-framer-name\":\"Frame 237824\",layoutDependency:layoutDependency,layoutId:\"OBx0Bye4S\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-eorod0\",\"data-border\":true,\"data-framer-name\":\"Navbar/Buttom\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OpTrk0Qr5\",onMouseEnter:onMouseEnter15l6xcs,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(231, 232, 236)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 140, 140))\"},children:\"Trust\"})}),className:\"framer-qobybs\",\"data-framer-name\":\"Trust\",fonts:[\"CUSTOM;Creato Display Bold\"],layoutDependency:layoutDependency,layoutId:\"F_PDvhgGP\",style:{\"--extracted-r6o4lv\":\"rgb(255, 140, 140)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{dh8DpdTF0:{\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\"},gZZM_7kSK:{\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\"},Jjw6yAYhq:{\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\"},K8GgcYV5Q:{\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\"},uE2RwYsyr:{\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dh8DpdTF0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"Trust\"})}),fonts:[\"CUSTOM;Creato Display Medium\"]},gZZM_7kSK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"Trust\"})}),fonts:[\"CUSTOM;Creato Display Medium\"]},Jjw6yAYhq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"Trust\"})}),fonts:[\"CUSTOM;Creato Display Medium\"]},K8GgcYV5Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"Trust\"})}),fonts:[\"CUSTOM;Creato Display Medium\"]},uE2RwYsyr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"Trust\"})}),fonts:[\"CUSTOM;Creato Display Medium\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2reqa9\",\"data-border\":true,\"data-framer-name\":\"Navbar/Buttom\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"PYDZW8YbK\",onMouseEnter:onMouseEnter1dfwrlu,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(231, 232, 236)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"Respect\"})}),className:\"framer-ljhmll\",\"data-framer-name\":\"Respect\",fonts:[\"CUSTOM;Creato Display Medium\"],layoutDependency:layoutDependency,layoutId:\"T9yLeluqv\",style:{\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{gZZM_7kSK:{\"--extracted-r6o4lv\":\"rgb(227, 175, 98)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gZZM_7kSK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(227, 175, 98))\"},children:\"Respect\"})}),fonts:[\"CUSTOM;Creato Display Bold\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9t45l9\",\"data-border\":true,\"data-framer-name\":\"Navbar/Buttom\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"NyZcZOxax\",onMouseEnter:onMouseEnter1ajifs5,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(231, 232, 236)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},...addPropertyOverrides({gZZM_7kSK:{onTap:onTapgnqhaj}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"Integrity & Ethics\"})}),className:\"framer-1lpxxnc\",\"data-framer-name\":\"Integrity & Ethics\",fonts:[\"CUSTOM;Creato Display Medium\"],layoutDependency:layoutDependency,layoutId:\"H2Egqbwbn\",style:{\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{uE2RwYsyr:{\"--extracted-r6o4lv\":\"rgb(11, 187, 219)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({uE2RwYsyr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(11, 187, 219))\"},children:\"Integrity & Ethics\"})}),fonts:[\"CUSTOM;Creato Display Bold\"]}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cxsivv\",\"data-framer-name\":\"Frame 237825\",layoutDependency:layoutDependency,layoutId:\"GiThSle2H\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y4eyxl\",\"data-border\":true,\"data-framer-name\":\"Navbar/Buttom\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"x72_QP9cV\",onMouseEnter:onMouseEnterum8crv,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(231, 232, 236)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"Employee Focus\"})}),className:\"framer-11oeham\",\"data-framer-name\":\"Employee Focus\",fonts:[\"CUSTOM;Creato Display Medium\"],layoutDependency:layoutDependency,layoutId:\"GASINxxIr\",style:{\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{dh8DpdTF0:{\"--extracted-r6o4lv\":\"rgb(35, 153, 226)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dh8DpdTF0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(35, 153, 226))\"},children:\"Employee Focus\"})}),fonts:[\"CUSTOM;Creato Display Bold\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1an8sw8\",\"data-border\":true,\"data-framer-name\":\"Navbar/Buttom\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"cNVnTOHfZ\",onMouseEnter:onMouseEnter12dq4q4,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(231, 232, 236)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"Customer Focus\"})}),className:\"framer-tqh1ek\",\"data-framer-name\":\"Customer Focus\",fonts:[\"CUSTOM;Creato Display Medium\"],layoutDependency:layoutDependency,layoutId:\"bgHYY6_K2\",style:{\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{Jjw6yAYhq:{\"--extracted-r6o4lv\":\"rgb(44, 208, 167)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Jjw6yAYhq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(44, 208, 167))\"},children:\"Customer Focus\"})}),fonts:[\"CUSTOM;Creato Display Bold\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nuobe2\",\"data-border\":true,\"data-framer-name\":\"Navbar/Buttom\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"R9v5UImA3\",onMouseEnter:onMouseEnterqjouub,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(231, 232, 236)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Creato Display Medium\", \"Creato Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"Technical Excellence\"})}),className:\"framer-ncn82s\",\"data-framer-name\":\"Technical Excellence\",fonts:[\"CUSTOM;Creato Display Medium\"],layoutDependency:layoutDependency,layoutId:\"JlwGbzWMB\",style:{\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{K8GgcYV5Q:{\"--extracted-r6o4lv\":\"rgb(127, 154, 17)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({K8GgcYV5Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(127, 154, 17))\"},children:\"Technical Excellence\"})}),fonts:[\"CUSTOM;Creato Display Bold\"]}},baseVariant,gestureVariant)})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uys0zn\",layoutDependency:layoutDependency,layoutId:\"ZDAfM6bM7\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tr041l\",\"data-framer-name\":\"Group 237763\",layoutDependency:layoutDependency,layoutId:\"ELvSz9uFu\",style:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"0px 4px 10px 0px rgba(0, 0, 0, 0.12999999523162842)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zb8mb7\",\"data-framer-name\":\"Frame 34347\",layoutDependency:layoutDependency,layoutId:\"JqWK_sjyG\",transformTemplate:transformTemplate1,children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-rqjkyt\",\"data-framer-name\":\"Frame 34341\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:71,layoutDependency:layoutDependency,layoutId:\"hET94OA2R\",svg:'<svg width=\"71\" height=\"40\" viewBox=\"0 0 71 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_209_139)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.9356 31.1882C24.5418 31.8856 24.7551 32.7704 25.4223 33.2058C26.0922 33.6413 26.981 33.476 27.4485 32.8282L29.6115 29.7549C30.0709 29.0962 29.9342 28.1894 29.2998 27.696C28.6681 27.2027 27.763 27.2964 27.2434 27.911C27.2215 27.9468 27.1969 27.9826 27.1723 28.0185L25.0093 31.089C24.9847 31.1221 24.9629 31.1552 24.9383 31.1882H24.9356ZM25.7422 27.1338L23.7132 30.0168V30.014C23.6886 30.0416 23.664 30.0719 23.6421 30.1023C23.6175 30.1381 23.5929 30.1739 23.571 30.2097H23.5738C23.0815 30.7941 22.2365 30.9154 21.6021 30.4991C21.5748 30.4771 21.5475 30.4578 21.5201 30.4385C20.883 29.9451 20.7435 29.03 21.2056 28.3658L21.49 27.9606L23.3632 25.298C23.8281 24.6421 24.7222 24.4711 25.3949 24.9094C26.0676 25.3477 26.2809 26.2407 25.879 26.938C25.8543 26.9711 25.8297 27.0042 25.8078 27.0373C25.786 27.0703 25.7641 27.1034 25.7477 27.1365L25.7422 27.1338ZM30.9761 30.7335V30.7307C31.1867 30.433 31.5093 30.2373 31.8676 30.1905C32.2804 30.1436 32.6961 30.2539 33.0324 30.502C33.7024 30.9843 33.861 31.9242 33.388 32.605L31.2277 35.6783C30.7491 36.3563 29.8167 36.5162 29.1385 36.0394L29.1002 36.0118C28.7967 35.7637 28.5998 35.4054 28.5506 35.0113C28.485 34.5923 28.5807 34.1596 28.8158 33.8068L28.8295 33.7847C28.8432 33.7655 28.8541 33.7434 28.8678 33.7213L30.9323 30.7942C30.9487 30.7749 30.9624 30.7556 30.9761 30.7363V30.7335ZM17.6641 25.502C17.656 25.5158 17.6478 25.5268 17.6368 25.5406V25.5379C17.1774 26.2214 17.3415 27.1475 18.006 27.6271C18.2986 27.82 18.6623 27.8724 18.9986 27.7677C19.4526 27.6464 19.849 27.368 20.1225 26.9821L22.0011 24.3168C22.2555 23.9475 22.384 23.5065 22.3703 23.0572C22.3703 22.6796 22.198 22.3212 21.9 22.0924C21.2246 21.6129 20.2921 21.7755 19.8108 22.4508L17.6641 25.502ZM12.1459 22.7402L11.558 24.5924L5.88656 22.7678L11.7412 4.28719L17.4154 6.11458L16.9532 7.56992H16.956C16.9231 7.6278 16.8985 7.69116 16.8821 7.75734C16.8712 7.79589 16.863 7.83726 16.8575 7.87586L12.1787 22.6386C12.1651 22.6716 12.1568 22.7099 12.1459 22.7402ZM53.2214 22.9938L56.995 22.4122L52.524 8.30006L50.0247 8.78788H50.0219C49.8032 8.84028 49.5708 8.80167 49.3793 8.68038C48.4168 8.15949 47.4187 7.70196 46.396 7.31604C45.1408 6.84196 43.9212 6.27414 42.7482 5.6237L42.6579 5.56582C41.4492 4.78853 41.1212 4.58185 40.67 4.62595C40.5059 4.64249 40.2406 4.69761 39.9453 4.7555C39.0812 4.96497 38.1925 5.04215 37.3037 4.98978C37.0795 4.97049 36.8498 4.93741 36.6201 4.89331H36.6228C35.0013 5.40873 33.4317 6.07302 31.9277 6.87233C31.3179 7.26648 30.7956 7.78742 30.4018 8.39936C30.2897 8.5592 30.1748 8.71356 30.0518 8.87068V8.8734C29.7483 9.25655 29.4146 9.6176 29.0591 9.95384C28.7173 10.2818 28.3674 10.5768 28.0501 10.8304L27.8451 10.9957C27.4431 11.3155 27.1203 11.569 27.0329 11.8419L27.0301 11.8447C26.918 12.2113 27.052 12.6081 27.3637 12.8314C27.6645 13.0271 28.0008 13.1594 28.3536 13.22C28.8568 13.3275 29.3736 13.3661 29.8877 13.3358C30.3061 13.3165 30.7163 13.2311 31.1101 13.0822C31.4628 12.9472 31.7882 12.7514 32.0726 12.5006C32.4719 12.1175 32.8355 11.6986 33.1555 11.2465C33.3661 10.9709 33.5547 10.7201 33.7434 10.5161V10.5133C33.9977 10.2156 34.3231 9.98962 34.6896 9.85182C34.9822 9.75534 35.2857 9.703 35.592 9.70023C35.9065 9.68096 36.2237 9.68096 36.5382 9.69746C36.9237 9.71402 37.2983 9.8022 37.6511 9.95655C38.157 10.2405 38.5835 10.6512 38.8871 11.15C39.0484 11.3623 39.2481 11.6186 39.5598 11.9962C40.0903 12.6412 40.845 13.5067 41.761 14.4245H41.7638C42.5048 15.1715 43.2842 15.8771 44.0991 16.5413C46.3441 18.1648 48.693 19.6366 51.1295 20.9486C51.2526 21.0203 51.3756 21.0892 51.753 21.3014L51.7612 21.307H51.7667L51.7831 21.318V21.3152C51.8131 21.3317 51.8433 21.3538 51.8706 21.3786C52.4366 21.803 52.8988 22.3516 53.2215 22.9827L53.2214 22.9938ZM51.8841 24.1928C51.9853 24.7054 51.8787 25.2402 51.5888 25.6756C51.5669 25.7032 51.5451 25.7363 51.5286 25.7694C51.0446 26.4336 50.1395 26.6183 49.4395 26.1911C49.4066 26.1663 49.3738 26.1415 49.3355 26.1222L39.1738 19.2866C38.9906 19.157 38.7609 19.1074 38.5394 19.1488C38.3206 19.1901 38.1237 19.3197 37.998 19.5071C37.8749 19.6973 37.8284 19.9261 37.8749 20.1493C37.9214 20.3698 38.0554 20.5655 38.244 20.6868L47.2787 26.7617C47.317 26.7947 47.3608 26.825 47.4045 26.8526C47.7053 27.0979 47.894 27.4563 47.9213 27.8448C47.9733 28.2969 47.8749 28.7544 47.6424 29.143C47.6205 29.1706 47.5987 29.2009 47.5795 29.234C47.0873 29.9148 46.1494 30.0884 45.4493 29.6254L43.7594 28.487C43.7129 28.4512 43.6664 28.4154 43.6199 28.3851C43.5953 28.3685 43.5707 28.3519 43.546 28.3409L37.6887 24.405H37.686C37.3031 24.1459 36.7863 24.2507 36.5293 24.6365C36.2722 25.0224 36.3734 25.5433 36.7562 25.8051L42.7914 29.8624C43.0949 30.0939 43.3109 30.4219 43.4039 30.7968C43.4969 31.1606 43.4367 31.5492 43.2425 31.8717C43.2207 31.8993 43.1988 31.9296 43.1824 31.9626C42.7011 32.6269 41.7933 32.8116 41.0932 32.3843C41.0604 32.3596 41.0276 32.3348 40.992 32.3154L37.1309 29.719H37.1282C36.7453 29.4627 36.2285 29.5646 35.9715 29.9506C35.7144 30.3364 35.8156 30.8601 36.1985 31.1192L37.6888 32.1197C37.7271 32.1583 37.7681 32.1914 37.8118 32.2217C38.5228 32.7068 38.7142 33.677 38.2466 34.4019L38.2412 34.4074L38.2439 34.4102C38.0114 34.752 37.6559 34.9917 37.2512 35.0689C36.8493 35.1543 36.4309 35.0744 36.089 34.8457L34.5796 33.8286L34.7491 33.5861H34.7518C35.7609 32.1472 35.4246 30.1544 33.9999 29.1292C33.3217 28.6385 32.4822 28.4208 31.6509 28.5255L31.5388 28.542C31.5333 28.4787 31.5224 28.4152 31.5142 28.3518H31.5114C31.3747 27.5167 30.9098 26.7697 30.2262 26.2791C29.5399 25.7885 28.6894 25.5928 27.8609 25.7361C27.8172 25.7444 27.7706 25.7527 27.7269 25.7609C27.7214 25.7196 27.716 25.6783 27.7077 25.6369V25.6342C27.571 24.799 27.1061 24.0548 26.4225 23.5642C25.7362 23.0708 24.8858 22.8751 24.0572 23.0185H24.0408V22.9799V22.9826C24.0271 22.0814 23.5923 21.2434 22.8704 20.717C21.4402 19.6972 19.4659 20.0362 18.4487 21.4722L16.7068 23.9501L13.9695 22.5251L18.2545 9.0056L21.216 9.80497L21.2133 9.8022C21.4484 9.86556 21.6973 9.82424 21.8969 9.68644C25.2495 7.57513 28.5992 5.46378 30.478 4.45497C31.0386 4.11318 31.6456 3.85961 32.2827 3.70526C32.6191 3.66943 32.9581 3.7218 33.2699 3.85685C33.3656 3.88993 33.6364 3.98639 33.9262 4.09113H33.9317V4.08838C32.9308 4.4522 31.9628 4.9042 31.0413 5.43899C30.2401 5.94063 29.5592 6.61319 29.0423 7.40975C28.9411 7.55031 28.84 7.69088 28.7333 7.82873H28.7361C28.4817 8.14841 28.2055 8.4461 27.9075 8.72447C27.6067 9.01114 27.2922 9.27848 27.0051 9.51004L26.8054 9.66711V9.66988C26.1847 10.0558 25.7034 10.6346 25.4355 11.3181C25.0964 12.3765 25.4738 13.5342 26.3706 14.1874C26.8602 14.5237 27.4125 14.7552 27.9949 14.8655C28.6458 15.0033 29.3103 15.0529 29.9747 15.0143C30.5654 14.9868 31.1506 14.8655 31.7057 14.6588C32.2389 14.452 32.7339 14.1516 33.1632 13.7712C33.6554 13.3165 34.0957 12.812 34.4839 12.2635C34.6672 12.021 34.834 11.8032 34.968 11.6572V11.6599C35.0445 11.5635 35.143 11.4863 35.2524 11.4339C35.3891 11.3981 35.5313 11.3815 35.6735 11.3815C35.9223 11.3678 36.1739 11.3678 36.4227 11.3815C36.5977 11.3843 36.77 11.4201 36.9341 11.4808C37.1802 11.6792 37.3907 11.919 37.5603 12.1864C37.7572 12.4455 38.0005 12.7597 38.2658 13.0821C38.8127 13.7492 39.603 14.6505 40.5792 15.629C41.3613 16.4173 42.1844 17.1615 43.0457 17.8644C45.3591 19.5484 47.7846 21.0755 50.303 22.4288L50.8691 22.7485H50.8718C51.3285 23.0793 51.673 23.5506 51.8507 24.0908C51.8562 24.1267 51.8671 24.1625 51.8781 24.1983L51.8841 24.1928ZM57.5118 24.0411L53.5959 24.6448C53.5741 25.3642 53.3498 26.0643 52.9479 26.6597C52.2177 27.7594 50.897 28.3079 49.609 28.0405C49.6173 28.782 49.4039 29.5069 49.002 30.127C48.1516 31.4087 46.5272 31.9131 45.108 31.3398C45.0752 31.8801 44.9002 32.4037 44.5994 32.853C43.6204 34.3276 41.6489 34.7438 40.1668 33.7846C40.123 34.3414 39.9398 34.8761 39.6335 35.3364L39.6281 35.3419V35.3446C38.6381 36.8358 36.6393 37.2355 35.1571 36.2432L33.6176 35.2012L32.5922 36.6566V36.6538C31.5831 38.0843 29.6197 38.4289 28.1896 37.4257C28.1622 37.4091 28.1349 37.3871 28.1103 37.365C27.443 36.8495 27.0055 36.0888 26.8961 35.2482C26.8879 35.193 26.8824 35.1352 26.877 35.08C26.8387 35.0883 26.7977 35.0966 26.7594 35.1021H26.7567C25.9281 35.2454 25.0777 35.0497 24.3913 34.5591C23.7049 34.0685 23.2428 33.3243 23.1034 32.4863C23.0951 32.445 23.0897 32.4037 23.0842 32.3623C23.0405 32.3706 22.9939 32.3789 22.9502 32.3872H22.9529C22.1244 32.5305 21.274 32.3348 20.5876 31.8442C19.9012 31.3536 19.4391 30.6066 19.2997 29.7714C19.2805 29.6639 19.2696 29.5537 19.2614 29.4435V29.4407C18.4902 29.6171 17.6835 29.4572 17.0355 28.9997C15.9061 28.1893 15.4303 26.7313 15.8569 25.4027L13.4505 24.1514L12.8954 25.9044V25.9016C12.8298 26.1166 12.6821 26.293 12.4852 26.3978C12.2883 26.4997 12.0586 26.519 11.8453 26.4501L4.58244 24.1155C4.37188 24.0466 4.19414 23.8978 4.09296 23.6994C3.99178 23.5009 3.97264 23.2694 4.03827 23.0571L10.4015 2.9748V2.97204C10.4698 2.75981 10.6175 2.58065 10.8144 2.47867C11.0113 2.37669 11.241 2.35739 11.4515 2.42354L18.7172 4.76362C18.9305 4.82977 19.1055 4.98136 19.2067 5.17982C19.3106 5.37827 19.3298 5.6098 19.2614 5.82204L18.7637 7.39039L21.2959 8.07397C24.5527 6.02049 27.774 4.00019 29.6964 2.96929H29.6991C30.421 2.53105 31.2085 2.21408 32.0343 2.03217C32.6305 1.94948 33.2403 2.02666 33.7981 2.25819C34.1126 2.36293 34.2958 2.42908 34.4872 2.49798H34.49C35.4416 2.88387 36.4369 3.15398 37.4542 3.30555C38.1843 3.34138 38.9144 3.27248 39.6254 3.09883C39.9207 3.03268 40.2188 2.98307 40.5196 2.94724C41.5478 2.848 41.9771 3.12088 43.5631 4.13795L43.6534 4.19583C44.7444 4.7967 45.8765 5.31761 47.0387 5.75862C48.1708 6.22718 49.2728 6.68473 49.9865 7.07888L52.0155 6.68198L51.7393 5.82198C51.6709 5.60975 51.6928 5.37822 51.794 5.17976C51.8951 4.98131 52.0729 4.82972 52.2835 4.76356L59.5461 2.42899C59.7594 2.36008 59.9893 2.37938 60.1861 2.48136C60.3833 2.5861 60.5309 2.7625 60.5967 2.97748L66.9597 23.0598C67.0282 23.2721 67.0088 23.5036 66.9077 23.702C66.8038 23.9005 66.6286 24.0493 66.4153 24.1182L59.1498 26.4528C58.9392 26.5217 58.7095 26.5024 58.5126 26.3977C58.3157 26.2957 58.1653 26.1193 58.0997 25.9043L57.5091 24.0383L57.5118 24.0411ZM58.8627 22.7705L53.905 7.13138C53.8968 7.09005 53.8831 7.05145 53.8695 7.01287L53.5851 6.11159L59.2592 4.28421L65.1111 22.7676L59.4395 24.5923L58.9065 22.9082V22.911C58.8956 22.8613 58.8818 22.8145 58.8627 22.7676L58.8627 22.7705ZM9.39238 20.7639L9.43887 20.7832V20.7804C9.86817 20.9403 10.344 20.7225 10.508 20.2953C10.6721 19.8654 10.4643 19.383 10.0432 19.2093L9.99395 19.1901C9.56738 19.0357 9.09706 19.2534 8.93297 19.6807C8.76888 20.1079 8.974 20.5875 9.39238 20.7639ZM60.7851 20.7639L60.8205 20.7777C61.0283 20.8631 61.2609 20.8603 61.4687 20.7694C61.6737 20.6812 61.8351 20.5103 61.9169 20.3008C61.9965 20.0886 61.991 19.8543 61.8981 19.6476C61.8047 19.4437 61.6356 19.2838 61.4251 19.2066L61.3891 19.1928V19.1901C60.9597 19.0329 60.4867 19.2507 60.3231 19.6779C60.1562 20.1079 60.364 20.5902 60.7851 20.7639Z\" fill=\"#FF8D8D\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_209_139\">\\n<rect width=\"63\" height=\"36\" fill=\"white\" transform=\"translate(4 2)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-795jm9\",\"data-framer-name\":\"Frame 34346\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"RLwyQYCxr\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_582_11650)\">\\n<path d=\"M18.5619 2.57403H19.0694C19.2155 2.6317 19.3577 2.6317 19.5038 2.57403H20.5188C20.6649 2.6317 20.8071 2.6317 20.9532 2.57403H21.3146C21.4491 2.65092 21.5991 2.60479 21.7375 2.60863C22.6832 2.62786 23.4252 3.25067 23.579 4.18488C23.7059 4.95763 23.7558 5.74191 23.8058 6.52619C23.8712 7.51039 24.3095 8.09475 25.1706 8.29082C25.6627 8.40231 26.0779 8.22931 26.4547 7.93713C27.0391 7.48732 27.5927 6.99907 28.1501 6.5185C28.6845 6.05716 29.2612 5.75729 29.9993 5.87647C30.3338 5.93029 30.6298 6.06485 30.8874 6.26092C31.9062 7.0452 32.7981 7.96019 33.617 8.94823C34.2014 9.65178 34.1629 10.8128 33.5901 11.4933C33.0826 12.093 32.5905 12.7043 32.0907 13.3118C31.4987 14.0345 31.4756 14.8649 32.0331 15.4916C32.3291 15.8261 32.702 15.9875 33.1441 16.0337C33.9246 16.1182 34.7089 16.1528 35.4893 16.2451C36.7311 16.3874 37.3616 17.0678 37.3846 18.3212C37.3846 18.3904 37.3654 18.4672 37.4192 18.5288V18.8901C37.3731 18.9401 37.3731 18.9863 37.4192 19.0362V20.8508C37.3731 20.9008 37.3731 20.947 37.4192 20.9969V21.4314C37.3423 21.8504 37.3808 22.2887 37.1232 22.677C36.6772 23.3536 36.0314 23.5958 35.2702 23.6189C35.0549 23.6266 34.8896 23.4843 34.7204 23.3652C33.6209 22.577 32.4175 22.0311 31.0643 21.8773C30.1031 21.7658 29.1343 21.762 28.1809 21.9811C28.0732 22.0042 27.9694 22.0388 27.8618 22.0542C27.5465 22.1041 27.4427 22.0119 27.5158 21.7005C27.6465 21.1546 27.7195 20.5971 27.7195 20.0473C27.7195 18.9786 27.5273 17.9329 27.0852 16.9448C26.1202 14.7957 24.5478 13.2925 22.2834 12.6274C19.6461 11.8547 17.2048 12.3199 15.0711 14.0845C13.3949 15.4724 12.4991 17.2793 12.3492 19.4553C12.1916 21.7466 12.9143 23.7304 14.506 25.3605C15.8323 26.7176 17.4778 27.4788 19.3923 27.6479C20.1612 27.7171 20.9071 27.6326 21.6567 27.4942C22.0758 27.4173 22.1604 27.498 22.0681 27.9286C21.6875 29.6509 21.7682 31.3387 22.441 32.9803C22.7101 33.6338 23.0485 34.2451 23.4867 34.7987C23.7443 35.1255 23.7866 35.4715 23.6943 35.856C23.4867 36.744 22.7294 37.3553 21.8182 37.3861C20.6456 37.4245 19.4769 37.4322 18.3043 37.3861C17.3932 37.3515 16.6051 36.7056 16.4436 35.7983C16.309 35.0486 16.2975 34.2836 16.2129 33.53C16.2052 33.4685 16.2129 33.4109 16.2052 33.3493C16.1476 32.6573 15.8977 32.0807 15.2172 31.7808C14.5175 31.4732 13.9293 31.6847 13.3834 32.1575C12.7913 32.6727 12.1992 33.1917 11.5726 33.6646C10.7998 34.249 9.88485 34.2643 9.1198 33.68C8.08947 32.8918 7.16294 31.9884 6.37866 30.9504C5.78661 30.1738 5.82889 29.1627 6.46324 28.4091C6.95918 27.8171 7.44743 27.2174 7.94338 26.6215C8.37012 26.1063 8.52774 25.5219 8.26631 24.8991C7.9972 24.2648 7.47434 23.9687 6.78233 23.9072C6.0019 23.838 5.21762 23.788 4.43718 23.6996C3.32996 23.5689 2.62642 22.7885 2.59951 21.6813C2.57259 20.5587 2.55722 19.4361 2.59951 18.3135C2.63411 17.3331 3.27229 16.5488 4.24111 16.3912C5.12535 16.249 6.01728 16.1951 6.90536 16.1221C8.05102 16.026 8.88144 14.5651 7.93184 13.4655C7.45897 12.9158 7.00147 12.3545 6.5286 11.8047C6.06725 11.2703 5.77507 10.686 5.90963 9.95165C5.97114 9.62102 6.10954 9.325 6.30946 9.06741C7.08989 8.06015 7.9972 7.17976 8.97755 6.36472C9.68494 5.77651 10.846 5.81496 11.5265 6.38779C12.1262 6.89142 12.7375 7.38736 13.3449 7.88715C14.1215 8.52149 15.0403 8.49458 15.6555 7.82179C15.9015 7.55268 16.0245 7.23358 16.063 6.8722C16.1514 6.06869 16.1975 5.26135 16.2783 4.454C16.3898 3.31987 17.1394 2.61248 18.2851 2.5971C18.3774 2.5971 18.4773 2.62786 18.5658 2.5625L18.5619 2.57403Z\" stroke=\"#7E9A10\" stroke-width=\"1.15335\" stroke-miterlimit=\"10\"/>\\n<path d=\"M19.5077 2.57812C19.3616 2.68193 19.2193 2.69346 19.0732 2.57812H19.5077Z\" fill=\"#7E9A10\"/>\\n<path d=\"M20.9569 2.57812C20.8108 2.69346 20.6686 2.68193 20.5225 2.57812H20.9569Z\" fill=\"#7E9A10\"/>\\n<path d=\"M19.985 27.0925C18.1281 27.0425 16.498 26.4005 15.1217 25.128C14.9448 24.9665 14.9371 24.8396 15.0525 24.6436C16.1981 22.6444 17.9089 21.5641 20.2195 21.6026C21.8649 21.6333 23.2259 22.3791 24.3024 23.6286C24.4062 23.7478 24.4254 23.8208 24.2947 23.9439C23.5065 24.6743 22.8953 25.5316 22.457 26.512C22.3993 26.6466 22.3032 26.7004 22.1648 26.7465C21.4574 26.9772 20.7347 27.0733 19.985 27.0925Z\" stroke=\"#7E9A10\" stroke-width=\"1.15335\" stroke-miterlimit=\"10\"/>\\n<path d=\"M22.6338 17.3799C22.6415 18.8331 21.4958 20.0057 20.0387 20.0326C18.6086 20.0595 17.4091 18.8793 17.3937 17.4299C17.3783 15.9574 18.5432 14.7695 20.008 14.7656C21.4612 14.7656 22.6299 15.9228 22.6338 17.3799Z\" stroke=\"#7E9A10\" stroke-width=\"1.15335\" stroke-miterlimit=\"10\"/>\\n<path d=\"M28.4378 33.3206C28.1725 33.3091 27.9111 33.1861 27.715 32.9323C26.973 31.9635 26.2311 30.9908 25.5006 30.0143C25.1354 29.5261 25.2199 28.9263 25.6736 28.5919C26.1311 28.2574 26.7193 28.3535 27.0884 28.8341C27.5382 29.4184 27.9957 30.0028 28.4263 30.6025C28.5685 30.8025 28.6416 30.8178 28.8223 30.6371C30.0909 29.3877 31.375 28.1536 32.6552 26.9157C33.1166 26.4697 33.7817 26.4774 34.1584 26.931C34.5044 27.3462 34.4737 27.9075 34.0585 28.3189C33.4088 28.9609 32.7513 29.5914 32.0978 30.2258C31.152 31.1446 30.2024 32.0596 29.2567 32.9785C29.0414 33.1899 28.7953 33.3245 28.434 33.3206H28.4378Z\" fill=\"#7E9A10\"/>\\n<path d=\"M29.8376 36.3569C33.3729 36.3569 36.2387 33.491 36.2387 29.9558C36.2387 26.4206 33.3729 23.5547 29.8376 23.5547C26.3024 23.5547 23.4365 26.4206 23.4365 29.9558C23.4365 33.491 26.3024 36.3569 29.8376 36.3569Z\" stroke=\"#7E9A10\" stroke-width=\"0.98035\" stroke-linejoin=\"bevel\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_582_11650\">\\n<rect width=\"36\" height=\"36.0038\" fill=\"white\" transform=\"translate(2 2)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-4vqnn6\",\"data-framer-name\":\"Frame 34344\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"fSKWR4hfZ\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_582_11564)\">\\n<path d=\"M20.0734 10.3906C25.2919 10.3949 29.5131 14.6353 29.5046 19.8648C29.496 25.0615 25.2232 29.3033 20.0047 29.2947C14.8621 29.2875 10.6065 25.0014 10.6094 19.8348C10.6122 14.6081 14.8421 10.3863 20.0734 10.3906ZM13.0882 24.0909C13.7488 21.9106 15.0355 20.3645 17.0257 19.4397C17.4771 19.2292 17.1791 19.0531 17.0773 18.8541C16.3193 17.3624 16.6446 15.6789 17.8912 14.6539C19.1535 13.616 20.9862 13.6217 22.2385 14.6696C23.4837 15.7118 23.8247 17.4068 23.0065 18.8642C22.7787 19.2707 22.9076 19.3509 23.23 19.5084C25.0383 20.3859 26.2348 21.8089 26.9082 23.6886C26.9483 23.8017 26.8896 23.9992 27.1102 24.0021C29.218 20.8999 28.4571 16.2029 25.4252 13.5788C22.2801 10.8559 17.5817 10.9318 14.5182 13.7305C11.237 16.7268 11.237 21.4381 13.0882 24.0923V24.0909ZM19.9545 28.0893C22.1697 28.0793 24.0482 27.3305 25.6573 25.8875C25.9281 25.6441 26.0456 25.4137 25.9768 25.0243C25.5871 22.7982 24.3419 21.2792 22.2758 20.3974C21.9247 20.2471 21.6224 20.2285 21.2556 20.3731C20.4761 20.6808 19.6608 20.6966 18.8842 20.3788C18.4901 20.2184 18.1634 20.2499 17.7981 20.4088C15.7663 21.2936 14.544 22.8082 14.14 24.9956C14.0697 25.3807 14.1571 25.6155 14.4323 25.8646C16.0156 27.299 17.8683 28.0463 19.9559 28.0878L19.9545 28.0893ZM20.0562 15.0948C18.8269 15.0948 17.8668 16.0511 17.8797 17.2622C17.8912 18.459 18.8971 19.4339 20.0964 19.4096C21.2727 19.3867 22.2242 18.429 22.2328 17.2565C22.2414 16.0354 21.2957 15.0948 20.0562 15.0948Z\" fill=\"#2BD0A7\" stroke=\"#2BD0A7\" stroke-width=\"0.3\"/>\\n<path d=\"M34.554 26.8082C34.3806 26.111 34.2674 25.5784 34.1112 25.0602C33.9837 24.635 34.1155 24.3301 34.511 24.2113C34.9466 24.0796 35.1758 24.3788 35.2775 24.7581C35.5484 25.766 35.7948 26.7795 36.0699 27.7874C36.1931 28.2412 36.0628 28.5346 35.61 28.6621C34.5353 28.9627 33.4592 29.2533 32.3832 29.5468C31.9934 29.6527 31.7097 29.4967 31.6051 29.1288C31.4934 28.7351 31.7283 28.4917 32.088 28.3829C32.6454 28.2125 33.2099 28.0637 33.9192 27.8661C32.6912 27.1703 31.6008 26.5519 30.5104 25.9335C30.3241 25.8275 30.135 25.7259 29.9516 25.6156C29.6278 25.421 29.4501 25.1447 29.6493 24.7839C29.8628 24.3974 30.1937 24.3788 30.5634 24.5878C31.618 25.1847 32.6755 25.7774 33.7329 26.3701C33.9579 26.4961 34.1886 26.6135 34.5525 26.8082H34.554Z\" fill=\"#2BD0A7\" stroke=\"#2BD0A7\" stroke-width=\"0.3\"/>\\n<path d=\"M5.56712 13.1983C5.73763 13.8883 5.84939 14.418 6.00128 14.9377C6.12307 15.3543 6.0156 15.6692 5.6144 15.7938C5.18168 15.9283 4.94096 15.6392 4.83922 15.2584C4.56125 14.2276 4.30476 13.1926 4.03539 12.159C3.93509 11.7739 4.04971 11.489 4.43659 11.3773C5.55422 11.0552 6.67472 10.7446 7.79809 10.4468C8.14914 10.3538 8.41708 10.527 8.51165 10.8677C8.60765 11.2127 8.45577 11.479 8.10472 11.5878C7.52154 11.7682 6.93264 11.9314 6.20044 12.1447C7.41838 12.8333 8.51022 13.4517 9.60063 14.0687C9.7869 14.1747 9.97461 14.2763 10.158 14.3851C10.4804 14.5784 10.6695 14.8489 10.4675 15.2126C10.2583 15.5891 9.93162 15.6349 9.55621 15.4216C8.48156 14.8117 7.40262 14.2076 6.3251 13.6035C6.1202 13.4889 5.91244 13.3801 5.56712 13.1955V13.1983Z\" fill=\"#2BD0A7\" stroke=\"#2BD0A7\" stroke-width=\"0.3\"/>\\n<path d=\"M33.9425 12.11C33.2303 11.921 32.703 11.7907 32.1829 11.6404C31.8118 11.533 31.4951 11.324 31.6098 10.8831C31.7287 10.425 32.0654 10.3506 32.5067 10.4765C33.5112 10.7643 34.5242 11.0162 35.5329 11.2897C36.033 11.4257 36.2193 11.7163 36.0645 12.2503C35.7823 13.2295 35.553 14.2244 35.2893 15.2093C35.189 15.5844 34.9756 15.9022 34.5357 15.7805C34.09 15.656 33.9998 15.3139 34.133 14.8729C34.2878 14.359 34.3938 13.8307 34.5572 13.1622C33.355 13.8393 32.2875 14.442 31.2171 15.0433C30.9893 15.1721 30.7558 15.2895 30.5294 15.4212C30.1769 15.6245 29.8703 15.5558 29.6682 15.2222C29.4519 14.8658 29.6166 14.5723 29.9419 14.3848C30.9306 13.8136 31.9279 13.2595 32.9208 12.6969C33.2074 12.5352 33.4911 12.3691 33.9396 12.11H33.9425Z\" fill=\"#2BD0A7\" stroke=\"#2BD0A7\" stroke-width=\"0.3\"/>\\n<path d=\"M5.5543 26.837C6.92555 26.0654 8.14348 25.3783 9.36428 24.6954C9.56918 24.5809 9.76549 24.4248 10.0248 24.4692C10.2827 24.5136 10.469 24.6582 10.5249 24.9144C10.6023 25.2737 10.4045 25.4899 10.1065 25.656C9.11067 26.2114 8.11912 26.7755 7.12758 27.3367C6.8625 27.487 6.60029 27.6416 6.27073 27.8334C6.83528 28.1226 7.37547 28.1899 7.88843 28.3388C8.28534 28.4547 8.64069 28.6437 8.51316 29.1261C8.39137 29.5828 8.04318 29.6415 7.60473 29.5141C6.62465 29.2292 5.63454 28.9801 4.6473 28.7196C4.11714 28.5807 3.90077 28.2944 4.06412 27.7232C4.33923 26.7655 4.56419 25.7948 4.81924 24.8314C4.92527 24.4334 5.1273 24.0812 5.60731 24.2172C6.0644 24.3475 6.11455 24.7083 5.98559 25.1363C5.83657 25.6316 5.72911 26.1399 5.5543 26.837Z\" fill=\"#2BD0A7\" stroke=\"#2BD0A7\" stroke-width=\"0.3\"/>\\n<path d=\"M19.469 36.0024C19.469 34.4448 19.4776 33.0705 19.4647 31.6947C19.4604 31.2252 19.5077 30.7657 20.0909 30.79C20.6167 30.8115 20.6526 31.2567 20.6483 31.6962C20.6354 33.0705 20.644 34.4462 20.644 35.9866C21.1727 35.4956 21.6026 35.1062 22.021 34.7054C22.3204 34.4176 22.6586 34.3174 22.9609 34.6295C23.2632 34.9416 23.1543 35.2837 22.8577 35.5672C22.0998 36.293 21.3403 37.0145 20.5867 37.7432C20.2299 38.0882 19.8874 38.0896 19.5292 37.7432C18.7755 37.0145 18.0161 36.2916 17.2567 35.5686C16.9572 35.2823 16.8526 34.9444 17.1549 34.6309C17.4587 34.316 17.7997 34.419 18.0978 34.7054C18.509 35.099 18.9245 35.4884 19.4705 36.0038L19.469 36.0024Z\" fill=\"#2BD0A7\" stroke=\"#2BD0A7\" stroke-width=\"0.3\"/>\\n<path d=\"M19.4716 3.99421C18.9272 4.50815 18.5073 4.89325 18.1018 5.29123C17.8038 5.5847 17.4714 5.68491 17.1633 5.37569C16.8538 5.06504 16.9598 4.72432 17.2564 4.43943C18.013 3.71362 18.7738 2.9921 19.5275 2.262C19.8843 1.91699 20.2239 1.90983 20.585 2.2577C21.3387 2.98638 22.0995 3.7079 22.8561 4.43371C23.1527 4.71859 23.2616 5.06074 22.9607 5.37283C22.6583 5.68634 22.3173 5.58613 22.0193 5.29981C21.608 4.90327 21.1939 4.51244 20.6466 3.99278C20.6466 5.07362 20.6466 6.00702 20.6466 6.94184C20.6466 7.44146 20.6351 7.94252 20.6495 8.44214C20.6624 8.88879 20.5047 9.22521 20.0276 9.21233C19.5906 9.19945 19.463 8.86875 19.4659 8.45502C19.4774 7.03203 19.4702 5.60761 19.4702 3.99421H19.4716Z\" fill=\"#2BD0A7\" stroke=\"#2BD0A7\" stroke-width=\"0.3\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_582_11564\">\\n<rect width=\"32.1176\" height=\"36\" fill=\"white\" transform=\"translate(4 2)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-4t3q07\",\"data-framer-name\":\"Frame 34345\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"g0M9pSHJt\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M30.5746 20.0051C30.5746 20.2552 30.5746 20.4958 30.5458 20.7363C30.5458 20.871 30.5265 21.0153 30.5073 21.15C30.4976 21.3039 30.4784 21.4579 30.4495 21.6118C30.4303 21.785 30.4014 21.9582 30.3629 22.1313C30.3245 22.3045 30.286 22.4777 30.2379 22.6509C30.1994 22.8144 30.1513 22.978 30.1032 23.1416C30.1032 23.1512 30.1032 23.1608 30.1032 23.1608C29.9973 23.4783 29.8819 23.7958 29.7568 24.1037C29.728 24.1806 29.6991 24.248 29.6606 24.3153C29.574 24.5078 29.4874 24.6906 29.3816 24.8734C29.2661 25.085 29.1507 25.2871 29.016 25.4891C28.6696 26.0568 28.2944 26.6052 27.8422 27.0958C27.8422 27.1054 27.8326 27.1151 27.823 27.1247C27.7171 27.2498 27.5921 27.3748 27.4766 27.4903C27.2842 27.6827 27.0918 27.8559 26.8897 28.0291C26.7454 28.1541 26.6011 28.2696 26.4568 28.3851C26.3028 28.5005 26.1585 28.6063 26.0046 28.7122C25.8507 28.8084 25.6967 28.9142 25.5428 29.0104C25.3888 29.1066 25.2349 29.1932 25.0713 29.2798C24.292 29.7128 23.455 30.0495 22.5795 30.2612C22.262 30.3478 21.9349 30.4151 21.6078 30.4632C20.8958 30.569 20.1646 30.6075 19.4334 30.5787C18.8946 30.5498 18.3751 30.4825 17.8555 30.3766C17.5092 30.2997 17.1724 30.2131 16.8453 30.1169C16.345 29.9629 15.864 29.7705 15.4021 29.5492C15.2482 29.4819 15.0943 29.4049 14.9403 29.3087C13.8531 28.7122 12.8814 27.9425 12.0636 27.0189C11.6499 26.5474 11.2747 26.0375 10.9476 25.4987C10.9283 25.4602 10.8995 25.4314 10.8802 25.3929C9.94698 23.815 9.4082 21.9678 9.4082 20.0051C9.4082 19.88 9.4082 19.7453 9.41782 19.6202C9.4082 19.5914 9.4082 19.5625 9.41782 19.5336C9.41782 19.4278 9.41782 19.3316 9.43707 19.2258C9.44669 19.1296 9.45631 19.0237 9.46593 18.9179C9.49479 18.6004 9.5429 18.2829 9.60062 17.975C9.61025 17.9173 9.61987 17.8692 9.62949 17.8211C10.4088 14.1362 13.0835 11.1633 16.6048 9.9799C16.6433 9.96066 16.6818 9.95104 16.7202 9.94141C16.8742 9.89331 17.0281 9.8452 17.182 9.80672C18.0768 9.55657 19.0197 9.42188 19.9914 9.42188C20.8284 9.42188 21.6462 9.51809 22.4255 9.71051C22.6853 9.76823 22.9355 9.82596 23.1856 9.91255C25.9757 10.7977 28.2752 12.8085 29.5355 15.4158C29.6029 15.5601 29.6702 15.7045 29.7376 15.8584C29.8049 16.0219 29.8723 16.1951 29.93 16.3683C30.2956 17.3785 30.5169 18.4657 30.5554 19.601C30.5554 19.6202 30.5554 19.6395 30.5554 19.6491C30.5554 19.7646 30.5746 19.88 30.5746 20.0051Z\" stroke=\"#2499E2\" stroke-width=\"1.16604\" stroke-miterlimit=\"10\"/>\\n<path d=\"M29.0254 25.8963C28.4482 24.5109 27.4476 23.6065 26.014 23.1639C24.9653 22.8464 23.9263 22.4712 22.8776 22.1152C22.8391 22.1056 22.8006 22.0864 22.7044 22.0383C24.3977 20.8549 25.254 19.2578 25.1097 17.2085C25.0135 15.8615 24.4266 14.7166 23.4164 13.8026C21.3767 11.9457 18.2017 12.0997 16.2486 14.1009C14.5746 15.8134 13.8818 19.6522 17.2492 22.0671C16.2198 22.4135 15.2192 22.7983 14.1993 23.087C12.6792 23.5295 11.5728 24.3954 10.957 25.906C11.2841 26.4447 11.6594 26.9546 12.0731 27.4261C11.9672 27.2433 11.948 27.0509 12.0057 26.8296C12.2559 25.7713 12.8331 24.9342 13.8626 24.559C15.5367 23.9529 17.23 23.3371 18.9618 22.9042C19.2985 22.8176 19.6449 22.8176 19.9912 22.7791C20.7609 22.7887 21.5018 22.9811 22.2233 23.2217C23.4548 23.6354 24.6863 24.0395 25.9082 24.4628C27.005 24.8573 27.6785 25.6462 27.9575 26.7718C28.0249 27.0412 28.0056 27.2721 27.8517 27.5031C28.3039 27.0028 28.6791 26.464 29.0254 25.8963ZM19.972 21.4899C17.7591 21.4802 16.1139 19.835 16.1139 17.6318C16.1236 15.4382 17.8169 13.7641 20.0105 13.7834C22.2233 13.8026 23.8685 15.4574 23.8589 17.6607C23.8589 19.8639 22.2041 21.4899 19.972 21.4899Z\" fill=\"#2499E2\"/>\\n<path d=\"M4.01081 22.059C3.67407 22.2034 3.33733 22.3573 2.99097 22.492C2.41371 22.7133 2 22.4439 2 21.8281C2 20.5966 2 19.3651 2 18.1433C2 17.5852 2.42333 17.2774 2.93325 17.489C4.4149 18.1048 5.89654 18.7494 7.36857 19.3844C7.62834 19.4998 7.77266 19.6923 7.77266 19.9809C7.77266 20.2791 7.62834 20.4908 7.35895 20.6159C6.78168 20.866 6.21404 21.1162 5.62715 21.3471C5.377 21.4433 5.29042 21.5684 5.3289 21.8378C6.38722 28.2069 9.96627 32.3632 16.1526 34.2586C16.2392 34.2875 16.3258 34.2971 16.4124 34.3259C16.7876 34.451 16.9897 34.7781 16.9127 35.1149C16.8261 35.4805 16.4894 35.6729 16.0757 35.5767C14.95 35.3169 13.8724 34.9321 12.843 34.4029C8.01318 31.8918 5.08837 27.9664 4.13588 22.5978C4.10702 22.4343 4.06854 22.2803 4.03967 22.1168C4.03967 22.1072 4.02043 22.0975 4.00119 22.059H4.01081Z\" fill=\"#2499E2\"/>\\n<path d=\"M35.9624 17.9528C36.3377 17.7892 36.6744 17.6353 37.0207 17.5006C37.5692 17.2889 37.9829 17.5679 37.9925 18.1548C37.9925 19.3863 37.9925 20.6082 37.9925 21.8397C37.9925 22.4266 37.5691 22.7248 37.0304 22.4939C35.5583 21.8782 34.0959 21.2432 32.6335 20.6082C32.3641 20.4927 32.2102 20.2811 32.2198 19.9732C32.2198 19.6653 32.393 19.4825 32.6624 19.3671C33.23 19.1265 33.7784 18.8764 34.3557 18.6551C34.6059 18.5589 34.6924 18.4434 34.654 18.1644C33.8169 12.0646 29.6702 7.31183 23.7629 5.7051C23.2337 5.56079 22.9932 5.27216 23.0798 4.88731C23.176 4.4736 23.5608 4.2908 24.09 4.44474C30.0358 6.17654 33.8747 10.0154 35.568 15.9804C35.7508 16.6058 35.8374 17.26 35.9817 17.9431L35.9624 17.9528Z\" fill=\"#2499E2\"/>\\n<path d=\"M22.031 35.9501C22.1946 36.3445 22.3581 36.6909 22.4928 37.0565C22.6852 37.576 22.4062 37.9897 21.8482 37.9994C20.6071 37.9994 19.3563 37.9994 18.1152 37.9994C17.5764 37.9994 17.2686 37.5857 17.4706 37.095C18.096 35.5941 18.7406 34.1028 19.3852 32.6116C19.491 32.3518 19.7027 32.2171 19.9913 32.2171C20.2992 32.2171 20.5013 32.3806 20.6167 32.65C20.8669 33.2273 21.117 33.7949 21.3479 34.3818C21.4345 34.6127 21.55 34.6993 21.8097 34.6705C27.6209 34.0355 32.6912 29.6771 34.2209 24.0007C34.2594 23.8756 34.2787 23.7409 34.3172 23.6062C34.4422 23.2021 34.779 22.9808 35.1253 23.077C35.4909 23.1733 35.6737 23.5004 35.5679 23.9237C35.0868 25.9249 34.2402 27.7625 33.0279 29.4173C30.3052 33.1311 26.6299 35.267 22.0406 35.9501H22.031Z\" fill=\"#2499E2\"/>\\n<path d=\"M19.9721 2C20.5879 2 21.2036 2 21.8194 2C22.4159 2 22.7238 2.41371 22.5025 2.94287C21.8867 4.4149 21.2517 5.8773 20.6168 7.33971C20.5013 7.6091 20.2993 7.76304 19.9914 7.76304C19.6835 7.76304 19.4911 7.59948 19.3756 7.33009C19.1255 6.75282 18.8753 6.18518 18.6444 5.59829C18.5482 5.35776 18.4231 5.29042 18.1826 5.3289C13.3336 6.03124 9.62946 8.46538 7.14722 12.6987C6.51223 13.7858 6.06004 14.95 5.74254 16.1719C5.5886 16.7684 5.28073 17.0185 4.87664 16.9127C4.46293 16.7972 4.309 16.422 4.48218 15.8448C6.22359 9.93741 10.0528 6.12745 15.989 4.44376C16.5085 4.29944 17.0377 4.19361 17.5669 4.13588C17.9806 4.08778 17.9613 3.93384 17.7978 3.64521C17.6727 3.42392 17.5861 3.18339 17.4995 2.94287C17.3071 2.41371 17.5861 2.00962 18.1441 2C18.7599 2 19.3756 2 19.9914 2L19.9721 2Z\" fill=\"#2499E2\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-jvo6na\",\"data-framer-name\":\"Frame 34343\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"NpCSDhuAK\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M36.955 14.857H36.0693L32.866 8.4285H35.6737C36.0276 8.4285 36.3143 8.14082 36.3143 7.78565C36.3143 7.43047 36.0276 7.14279 35.6737 7.14279H28.2035C27.4203 7.14279 26.6499 6.82297 26.0942 6.2637C25.0547 5.21904 23.6837 4.63083 22.2198 4.58104V3.28571C22.2198 2.57694 21.6448 2 20.9385 2H19.6572C18.9508 2 18.3759 2.57694 18.3759 3.28571V4.58104C16.912 4.63086 15.5425 5.21908 14.5015 6.2637C13.9441 6.82139 13.1753 7.14279 12.3921 7.14279H4.92197C4.09074 7.15565 4.07151 8.41241 4.92197 8.4285H7.72967L4.52638 14.857H3.64066C3.28669 14.857 3 15.1447 3 15.4999C3.31713 23.1755 14.2161 23.1738 14.5318 15.4999C14.5318 15.1447 14.2451 14.857 13.8912 14.857H13.0054L9.80216 8.4285H12.392C13.5132 8.4285 14.6119 7.97046 15.4079 7.17332C16.2071 6.37137 17.2546 5.91654 18.3758 5.86671V23.7156C18.3758 24.0708 18.6625 24.3585 19.0164 24.3585C19.3704 24.3585 19.6571 24.0708 19.6571 23.7156V3.28583H20.9384V23.3495C20.9384 23.7046 21.2251 23.9923 21.5791 23.9923C21.933 23.9923 22.2197 23.7046 22.2197 23.3495V5.86712C23.3409 5.91534 24.3884 6.37178 25.1876 7.17373C25.9836 7.97087 27.0823 8.42891 28.2035 8.42891H30.7933L27.59 14.8575H26.7043C26.3504 14.8575 26.0637 15.1451 26.0637 15.5003C26.3776 23.1714 37.2785 23.1775 37.5955 15.5003C37.5955 15.1451 37.3088 14.8575 36.9548 14.8575L36.955 14.857ZM8.76608 19.9999C6.51097 19.9999 4.63881 18.3204 4.32802 16.1428H9.19045C9.54441 16.1428 9.83111 15.8551 9.83111 15.4999C9.83111 15.1447 9.54441 14.857 9.19045 14.857H5.95994L8.76764 9.2242L12.0382 15.7877C12.2368 16.228 12.8198 16.1397 13.2058 16.1429C12.8935 18.3205 11.0228 20 8.76776 20L8.76608 19.9999ZM31.8297 9.22255L34.6374 14.857H29.0222L31.8297 9.22255ZM31.8297 19.9999C29.5746 19.9999 27.7025 18.3204 27.3917 16.1428H36.2694C35.9571 18.3204 34.0864 19.9999 31.8314 19.9999H31.8297Z\" fill=\"#0ABBDB\"/>\\n<path d=\"M5.69617 29.0019C5.29896 30.1333 5.81309 31.3724 6.89261 31.8851L18.0575 37.1905C19.1995 37.7337 20.4279 38.0021 21.6547 38.0021C23.1218 38.0021 24.5841 37.6164 25.8911 36.853L30.3242 34.259C30.5004 34.1562 30.7006 34.1015 30.904 34.1015H34.3908C34.7448 34.1015 35.0315 33.8139 35.0315 33.4587C35.0315 33.1035 34.7448 32.8158 34.3908 32.8158H30.904C30.4732 32.8158 30.0488 32.9299 29.6772 33.1485L25.244 35.7424C23.2115 36.9333 20.7305 37.0378 18.6037 36.0285L7.43888 30.7232C6.30492 30.1767 6.94878 28.4266 8.17564 28.7737L15.2903 30.8453C15.7612 31.2889 16.3891 31.5653 17.0842 31.5653H23.0245C23.8654 31.5508 23.867 30.2941 23.0245 30.2796H17.0842C15.308 30.2346 15.3031 27.6198 17.0842 27.5732H21.234C21.8105 27.5732 22.3711 27.4093 22.858 27.0991C24.0336 26.3984 25.6673 25.0275 27.128 25.1448H34.3899C35.2211 25.1368 35.2387 23.872 34.3899 23.8591H27.128C25.3646 23.737 23.582 25.1239 22.1708 26.0143C21.8905 26.1927 21.5654 26.2875 21.2339 26.2875H17.084C15.5224 26.2746 14.2379 27.7163 14.4894 29.2736L8.53302 27.5395C7.34621 27.1939 6.10332 27.8384 5.69489 29.0036L5.69617 29.0019Z\" fill=\"#0ABBDB\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ounjjb\",\"data-framer-name\":\"Frame 34342\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"lZFgpe7Ah\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-outside-1_582_11541\" maskUnits=\"userSpaceOnUse\" x=\"2\" y=\"1\" width=\"36\" height=\"38\" fill=\"black\">\\n<rect fill=\"white\" x=\"2\" y=\"1\" width=\"36\" height=\"38\"/>\\n<path d=\"M36.6549 19.0229L34.5495 10.5506C34.3249 9.64963 33.762 8.88896 32.9612 8.40594C32.6937 8.24495 32.4116 8.12383 32.1205 8.03964C32.8828 7.41486 33.3704 6.46656 33.3704 5.40607C33.3704 3.52725 31.8427 2 29.9633 2C28.0839 2 26.5562 3.52728 26.5562 5.40607C26.5562 6.93037 27.5624 8.22428 28.9468 8.65708C28.5907 8.93476 28.3129 9.27595 28.1415 9.66145L25.3387 15.9508L20.5044 18.7188C20.2502 18.8621 20.0404 19.0452 19.8779 19.2535C19.7154 19.0438 19.5056 18.8621 19.2529 18.7173L14.4171 15.9508L11.6143 9.66145C11.4414 9.27448 11.1651 8.93473 10.809 8.65708C12.1919 8.22431 13.1996 6.93041 13.1996 5.40607C13.1996 3.52725 11.6719 2 9.79249 2C7.91312 2 6.38536 3.52728 6.38536 5.40607C6.38536 6.4666 6.87295 7.41486 7.63534 8.03964C7.34427 8.12383 7.06207 8.24643 6.79462 8.40594C5.9938 8.88745 5.42939 9.64963 5.2063 10.5506L3.10085 19.0229C2.82308 20.1381 3.12892 21.3389 3.89724 22.1971V35.4934C3.89724 36.8759 5.02164 38 6.40457 38C7.7875 38 8.91191 36.8759 8.91191 35.4934V22.3668C9.38323 21.9134 9.7142 21.3418 9.87378 20.7037L10.682 17.4497L11.1208 18.305C11.3129 18.6772 11.6113 18.9755 11.9852 19.1675L17.2628 22.1896C17.907 22.5574 18.6191 22.5707 19.2161 22.2221C19.4805 22.0685 19.7051 21.8558 19.878 21.6091C20.0509 21.8572 20.2754 22.07 20.5384 22.2221C21.1353 22.5692 21.8475 22.5574 22.4917 22.1896L27.7693 19.1675C28.1432 18.9755 28.4416 18.6771 28.6337 18.305L29.0725 17.4497L29.8807 20.7037C30.0388 21.3418 30.3698 21.9119 30.8426 22.3668V35.4919C30.8426 36.8744 31.967 37.9985 33.3499 37.9985C34.7329 37.9985 35.8573 36.8744 35.8573 35.4919L35.8587 22.1971C36.627 21.3389 36.9327 20.1381 36.6549 19.0229ZM27.3392 5.40435C27.3392 3.95833 28.5168 2.78111 29.9633 2.78111C31.4097 2.78111 32.5873 3.95833 32.5873 5.40435C32.5873 6.63031 31.7407 7.66278 30.6015 7.94932C30.5173 7.96262 30.4346 7.97886 30.3518 7.99954C30.2248 8.01874 30.0948 8.02908 29.9633 8.02908C28.5168 8.0276 27.3392 6.85185 27.3392 5.40435ZM7.16828 5.40435C7.16828 3.95833 8.34587 2.78111 9.79234 2.78111C11.2388 2.78111 12.4164 3.95833 12.4164 5.40435C12.4164 6.85038 11.2388 8.02759 9.79234 8.02759C9.66084 8.02759 9.53082 8.01725 9.40377 7.99805C9.32103 7.97885 9.23829 7.9626 9.15407 7.94783C8.01492 7.66424 7.16828 6.63178 7.16828 5.40435ZM18.8227 21.5457C18.5715 21.692 18.1652 21.8042 17.6525 21.5103L12.3658 18.4838C12.3599 18.4809 12.354 18.4779 12.3481 18.475C12.1176 18.3583 11.9343 18.1766 11.8177 17.9477L10.9016 16.1649L9.3635 13.1694C9.26451 12.9774 9.0281 12.9006 8.83604 12.9996C8.64396 13.0985 8.56861 13.3348 8.66613 13.5268L10.1377 16.3908L9.11234 20.5147C8.97788 21.0538 8.68387 21.5324 8.26277 21.8987C8.17707 21.9725 8.12831 22.0804 8.12831 22.1941V35.492C8.12831 36.4432 7.35409 37.2157 6.40406 37.2157C5.45255 37.2157 4.6798 36.4417 4.6798 35.492V22.0421C4.6798 21.9387 4.63991 21.8412 4.56751 21.7674C3.90559 21.0968 3.63522 20.1175 3.85978 19.2121L5.96523 10.7398C6.1381 10.0411 6.57693 9.45183 7.19747 9.07813C7.62742 8.81965 8.10612 8.6867 8.59224 8.6867C8.73113 8.6867 8.87001 8.69851 9.00891 8.72067C9.0887 8.73987 9.16996 8.75612 9.25122 8.76941C10.0313 8.96586 10.6475 9.41782 10.8972 9.98058L13.7547 16.3853C13.7887 16.4606 13.8463 16.5241 13.9172 16.5655L18.8624 19.397C19.3751 19.6909 19.4844 20.0986 19.4859 20.3881C19.4873 20.8489 19.2214 21.3142 18.8225 21.5461L18.8227 21.5457ZM35.1877 21.7673C35.1153 21.8412 35.0755 21.9386 35.0755 22.042V35.4934C35.0755 36.4447 34.3012 37.2172 33.3512 37.2172C32.3997 37.2172 31.6269 36.4432 31.6269 35.4934V22.1956C31.6269 22.0818 31.5782 21.974 31.4925 21.9001C31.0714 21.5338 30.7774 21.0553 30.6429 20.5161L29.6175 16.3923L31.0891 13.5283C31.1881 13.3363 31.1128 13.1 30.9192 13.001C30.7271 12.902 30.4907 12.9774 30.3918 13.1709L28.8537 16.1649L27.9376 17.9476C27.8209 18.1766 27.6362 18.3583 27.4072 18.4749C27.4013 18.4779 27.3954 18.4809 27.3895 18.4838L22.1028 21.5103C21.5901 21.8042 21.1823 21.692 20.9326 21.5457C20.5336 21.3138 20.2677 20.8485 20.2692 20.3877C20.2706 20.0982 20.3785 19.6905 20.8927 19.3966L25.8378 16.5651C25.9102 16.5237 25.9663 16.4602 26.0003 16.3849L28.8549 9.97909C29.1061 9.41633 29.7207 8.96436 30.5008 8.76792C30.5865 8.75463 30.6708 8.73691 30.755 8.71623C31.3755 8.6217 32.0064 8.74577 32.556 9.07662C33.1781 9.45032 33.6154 10.0411 33.7883 10.7383L35.8937 19.2106C36.1198 20.1175 35.8497 21.0967 35.1877 21.7673Z\"/>\\n</mask>\\n<path d=\"M36.6549 19.0229L34.5495 10.5506C34.3249 9.64963 33.762 8.88896 32.9612 8.40594C32.6937 8.24495 32.4116 8.12383 32.1205 8.03964C32.8828 7.41486 33.3704 6.46656 33.3704 5.40607C33.3704 3.52725 31.8427 2 29.9633 2C28.0839 2 26.5562 3.52728 26.5562 5.40607C26.5562 6.93037 27.5624 8.22428 28.9468 8.65708C28.5907 8.93476 28.3129 9.27595 28.1415 9.66145L25.3387 15.9508L20.5044 18.7188C20.2502 18.8621 20.0404 19.0452 19.8779 19.2535C19.7154 19.0438 19.5056 18.8621 19.2529 18.7173L14.4171 15.9508L11.6143 9.66145C11.4414 9.27448 11.1651 8.93473 10.809 8.65708C12.1919 8.22431 13.1996 6.93041 13.1996 5.40607C13.1996 3.52725 11.6719 2 9.79249 2C7.91312 2 6.38536 3.52728 6.38536 5.40607C6.38536 6.4666 6.87295 7.41486 7.63534 8.03964C7.34427 8.12383 7.06207 8.24643 6.79462 8.40594C5.9938 8.88745 5.42939 9.64963 5.2063 10.5506L3.10085 19.0229C2.82308 20.1381 3.12892 21.3389 3.89724 22.1971V35.4934C3.89724 36.8759 5.02164 38 6.40457 38C7.7875 38 8.91191 36.8759 8.91191 35.4934V22.3668C9.38323 21.9134 9.7142 21.3418 9.87378 20.7037L10.682 17.4497L11.1208 18.305C11.3129 18.6772 11.6113 18.9755 11.9852 19.1675L17.2628 22.1896C17.907 22.5574 18.6191 22.5707 19.2161 22.2221C19.4805 22.0685 19.7051 21.8558 19.878 21.6091C20.0509 21.8572 20.2754 22.07 20.5384 22.2221C21.1353 22.5692 21.8475 22.5574 22.4917 22.1896L27.7693 19.1675C28.1432 18.9755 28.4416 18.6771 28.6337 18.305L29.0725 17.4497L29.8807 20.7037C30.0388 21.3418 30.3698 21.9119 30.8426 22.3668V35.4919C30.8426 36.8744 31.967 37.9985 33.3499 37.9985C34.7329 37.9985 35.8573 36.8744 35.8573 35.4919L35.8587 22.1971C36.627 21.3389 36.9327 20.1381 36.6549 19.0229ZM27.3392 5.40435C27.3392 3.95833 28.5168 2.78111 29.9633 2.78111C31.4097 2.78111 32.5873 3.95833 32.5873 5.40435C32.5873 6.63031 31.7407 7.66278 30.6015 7.94932C30.5173 7.96262 30.4346 7.97886 30.3518 7.99954C30.2248 8.01874 30.0948 8.02908 29.9633 8.02908C28.5168 8.0276 27.3392 6.85185 27.3392 5.40435ZM7.16828 5.40435C7.16828 3.95833 8.34587 2.78111 9.79234 2.78111C11.2388 2.78111 12.4164 3.95833 12.4164 5.40435C12.4164 6.85038 11.2388 8.02759 9.79234 8.02759C9.66084 8.02759 9.53082 8.01725 9.40377 7.99805C9.32103 7.97885 9.23829 7.9626 9.15407 7.94783C8.01492 7.66424 7.16828 6.63178 7.16828 5.40435ZM18.8227 21.5457C18.5715 21.692 18.1652 21.8042 17.6525 21.5103L12.3658 18.4838C12.3599 18.4809 12.354 18.4779 12.3481 18.475C12.1176 18.3583 11.9343 18.1766 11.8177 17.9477L10.9016 16.1649L9.3635 13.1694C9.26451 12.9774 9.0281 12.9006 8.83604 12.9996C8.64396 13.0985 8.56861 13.3348 8.66613 13.5268L10.1377 16.3908L9.11234 20.5147C8.97788 21.0538 8.68387 21.5324 8.26277 21.8987C8.17707 21.9725 8.12831 22.0804 8.12831 22.1941V35.492C8.12831 36.4432 7.35409 37.2157 6.40406 37.2157C5.45255 37.2157 4.6798 36.4417 4.6798 35.492V22.0421C4.6798 21.9387 4.63991 21.8412 4.56751 21.7674C3.90559 21.0968 3.63522 20.1175 3.85978 19.2121L5.96523 10.7398C6.1381 10.0411 6.57693 9.45183 7.19747 9.07813C7.62742 8.81965 8.10612 8.6867 8.59224 8.6867C8.73113 8.6867 8.87001 8.69851 9.00891 8.72067C9.0887 8.73987 9.16996 8.75612 9.25122 8.76941C10.0313 8.96586 10.6475 9.41782 10.8972 9.98058L13.7547 16.3853C13.7887 16.4606 13.8463 16.5241 13.9172 16.5655L18.8624 19.397C19.3751 19.6909 19.4844 20.0986 19.4859 20.3881C19.4873 20.8489 19.2214 21.3142 18.8225 21.5461L18.8227 21.5457ZM35.1877 21.7673C35.1153 21.8412 35.0755 21.9386 35.0755 22.042V35.4934C35.0755 36.4447 34.3012 37.2172 33.3512 37.2172C32.3997 37.2172 31.6269 36.4432 31.6269 35.4934V22.1956C31.6269 22.0818 31.5782 21.974 31.4925 21.9001C31.0714 21.5338 30.7774 21.0553 30.6429 20.5161L29.6175 16.3923L31.0891 13.5283C31.1881 13.3363 31.1128 13.1 30.9192 13.001C30.7271 12.902 30.4907 12.9774 30.3918 13.1709L28.8537 16.1649L27.9376 17.9476C27.8209 18.1766 27.6362 18.3583 27.4072 18.4749C27.4013 18.4779 27.3954 18.4809 27.3895 18.4838L22.1028 21.5103C21.5901 21.8042 21.1823 21.692 20.9326 21.5457C20.5336 21.3138 20.2677 20.8485 20.2692 20.3877C20.2706 20.0982 20.3785 19.6905 20.8927 19.3966L25.8378 16.5651C25.9102 16.5237 25.9663 16.4602 26.0003 16.3849L28.8549 9.97909C29.1061 9.41633 29.7207 8.96436 30.5008 8.76792C30.5865 8.75463 30.6708 8.73691 30.755 8.71623C31.3755 8.6217 32.0064 8.74577 32.556 9.07662C33.1781 9.45032 33.6154 10.0411 33.7883 10.7383L35.8937 19.2106C36.1198 20.1175 35.8497 21.0967 35.1877 21.7673Z\" fill=\"#E1A750\"/>\\n<path d=\"M36.6549 19.0229L34.5495 10.5506C34.3249 9.64963 33.762 8.88896 32.9612 8.40594C32.6937 8.24495 32.4116 8.12383 32.1205 8.03964C32.8828 7.41486 33.3704 6.46656 33.3704 5.40607C33.3704 3.52725 31.8427 2 29.9633 2C28.0839 2 26.5562 3.52728 26.5562 5.40607C26.5562 6.93037 27.5624 8.22428 28.9468 8.65708C28.5907 8.93476 28.3129 9.27595 28.1415 9.66145L25.3387 15.9508L20.5044 18.7188C20.2502 18.8621 20.0404 19.0452 19.8779 19.2535C19.7154 19.0438 19.5056 18.8621 19.2529 18.7173L14.4171 15.9508L11.6143 9.66145C11.4414 9.27448 11.1651 8.93473 10.809 8.65708C12.1919 8.22431 13.1996 6.93041 13.1996 5.40607C13.1996 3.52725 11.6719 2 9.79249 2C7.91312 2 6.38536 3.52728 6.38536 5.40607C6.38536 6.4666 6.87295 7.41486 7.63534 8.03964C7.34427 8.12383 7.06207 8.24643 6.79462 8.40594C5.9938 8.88745 5.42939 9.64963 5.2063 10.5506L3.10085 19.0229C2.82308 20.1381 3.12892 21.3389 3.89724 22.1971V35.4934C3.89724 36.8759 5.02164 38 6.40457 38C7.7875 38 8.91191 36.8759 8.91191 35.4934V22.3668C9.38323 21.9134 9.7142 21.3418 9.87378 20.7037L10.682 17.4497L11.1208 18.305C11.3129 18.6772 11.6113 18.9755 11.9852 19.1675L17.2628 22.1896C17.907 22.5574 18.6191 22.5707 19.2161 22.2221C19.4805 22.0685 19.7051 21.8558 19.878 21.6091C20.0509 21.8572 20.2754 22.07 20.5384 22.2221C21.1353 22.5692 21.8475 22.5574 22.4917 22.1896L27.7693 19.1675C28.1432 18.9755 28.4416 18.6771 28.6337 18.305L29.0725 17.4497L29.8807 20.7037C30.0388 21.3418 30.3698 21.9119 30.8426 22.3668V35.4919C30.8426 36.8744 31.967 37.9985 33.3499 37.9985C34.7329 37.9985 35.8573 36.8744 35.8573 35.4919L35.8587 22.1971C36.627 21.3389 36.9327 20.1381 36.6549 19.0229ZM27.3392 5.40435C27.3392 3.95833 28.5168 2.78111 29.9633 2.78111C31.4097 2.78111 32.5873 3.95833 32.5873 5.40435C32.5873 6.63031 31.7407 7.66278 30.6015 7.94932C30.5173 7.96262 30.4346 7.97886 30.3518 7.99954C30.2248 8.01874 30.0948 8.02908 29.9633 8.02908C28.5168 8.0276 27.3392 6.85185 27.3392 5.40435ZM7.16828 5.40435C7.16828 3.95833 8.34587 2.78111 9.79234 2.78111C11.2388 2.78111 12.4164 3.95833 12.4164 5.40435C12.4164 6.85038 11.2388 8.02759 9.79234 8.02759C9.66084 8.02759 9.53082 8.01725 9.40377 7.99805C9.32103 7.97885 9.23829 7.9626 9.15407 7.94783C8.01492 7.66424 7.16828 6.63178 7.16828 5.40435ZM18.8227 21.5457C18.5715 21.692 18.1652 21.8042 17.6525 21.5103L12.3658 18.4838C12.3599 18.4809 12.354 18.4779 12.3481 18.475C12.1176 18.3583 11.9343 18.1766 11.8177 17.9477L10.9016 16.1649L9.3635 13.1694C9.26451 12.9774 9.0281 12.9006 8.83604 12.9996C8.64396 13.0985 8.56861 13.3348 8.66613 13.5268L10.1377 16.3908L9.11234 20.5147C8.97788 21.0538 8.68387 21.5324 8.26277 21.8987C8.17707 21.9725 8.12831 22.0804 8.12831 22.1941V35.492C8.12831 36.4432 7.35409 37.2157 6.40406 37.2157C5.45255 37.2157 4.6798 36.4417 4.6798 35.492V22.0421C4.6798 21.9387 4.63991 21.8412 4.56751 21.7674C3.90559 21.0968 3.63522 20.1175 3.85978 19.2121L5.96523 10.7398C6.1381 10.0411 6.57693 9.45183 7.19747 9.07813C7.62742 8.81965 8.10612 8.6867 8.59224 8.6867C8.73113 8.6867 8.87001 8.69851 9.00891 8.72067C9.0887 8.73987 9.16996 8.75612 9.25122 8.76941C10.0313 8.96586 10.6475 9.41782 10.8972 9.98058L13.7547 16.3853C13.7887 16.4606 13.8463 16.5241 13.9172 16.5655L18.8624 19.397C19.3751 19.6909 19.4844 20.0986 19.4859 20.3881C19.4873 20.8489 19.2214 21.3142 18.8225 21.5461L18.8227 21.5457ZM35.1877 21.7673C35.1153 21.8412 35.0755 21.9386 35.0755 22.042V35.4934C35.0755 36.4447 34.3012 37.2172 33.3512 37.2172C32.3997 37.2172 31.6269 36.4432 31.6269 35.4934V22.1956C31.6269 22.0818 31.5782 21.974 31.4925 21.9001C31.0714 21.5338 30.7774 21.0553 30.6429 20.5161L29.6175 16.3923L31.0891 13.5283C31.1881 13.3363 31.1128 13.1 30.9192 13.001C30.7271 12.902 30.4907 12.9774 30.3918 13.1709L28.8537 16.1649L27.9376 17.9476C27.8209 18.1766 27.6362 18.3583 27.4072 18.4749C27.4013 18.4779 27.3954 18.4809 27.3895 18.4838L22.1028 21.5103C21.5901 21.8042 21.1823 21.692 20.9326 21.5457C20.5336 21.3138 20.2677 20.8485 20.2692 20.3877C20.2706 20.0982 20.3785 19.6905 20.8927 19.3966L25.8378 16.5651C25.9102 16.5237 25.9663 16.4602 26.0003 16.3849L28.8549 9.97909C29.1061 9.41633 29.7207 8.96436 30.5008 8.76792C30.5865 8.75463 30.6708 8.73691 30.755 8.71623C31.3755 8.6217 32.0064 8.74577 32.556 9.07662C33.1781 9.45032 33.6154 10.0411 33.7883 10.7383L35.8937 19.2106C36.1198 20.1175 35.8497 21.0967 35.1877 21.7673Z\" stroke=\"#E1A750\" mask=\"url(#path-1-outside-1_582_11541)\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ncql0t\",\"data-framer-name\":\"Frame 34323\",layoutDependency:layoutDependency,layoutId:\"BVTIP1Pfl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"Trust\"})}),className:\"framer-1is23k7\",\"data-framer-name\":\"Trust\",fonts:[\"CUSTOM;Creato Display Bold\"],layoutDependency:layoutDependency,layoutId:\"TDwRWuZ4o\",style:{\"--extracted-r6o4lv\":\"rgb(61, 61, 61)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dh8DpdTF0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"Employee Focus\"})})},gZZM_7kSK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"Respect\"})})},Jjw6yAYhq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"Customer Focus\"})})},K8GgcYV5Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"Technical Excellence\"})})},uE2RwYsyr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"Creato Display Bold\", \"Creato Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"Integrity & Ethics\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Creato Display Regular\", \"Creato Display Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"We foster trust by being transparent, reliable, and accountable in all our actions.\"})}),className:\"framer-kjikns\",\"data-framer-name\":\"We foster trust by being transparent, reliable, and accountable in all our actions.\",fonts:[\"CUSTOM;Creato Display Regular\"],layoutDependency:layoutDependency,layoutId:\"k6BrvRuFb\",style:{\"--extracted-r6o4lv\":\"rgb(81, 81, 81)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dh8DpdTF0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Creato Display Regular\", \"Creato Display Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"We create a sense of shared purpose and understand that the power of the collective and that of the team is bigger than the individual.\"})})},gZZM_7kSK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Creato Display Regular\", \"Creato Display Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"We respect individual opinions and believe in living up to and exceeding our own standards.\"})})},Jjw6yAYhq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Creato Display Regular\", \"Creato Display Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"We prioritize understanding and meeting our customers' needs, exceeding expectations with every interaction.\"})})},K8GgcYV5Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Creato Display Regular\", \"Creato Display Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"We are committed to delivering excellence in every product, service, and experience we provide, striving for continuous improvement.\"})})},uE2RwYsyr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NyZWF0byBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Creato Display Regular\", \"Creato Display Regular Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(81, 81, 81))\"},children:\"We uphold integrity in every action, ensuring our decisions align with the highest moral standards.\"})})}},baseVariant,gestureVariant)})]})]})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WOona.framer-jk1u23, .framer-WOona .framer-jk1u23 { display: block; }\",\".framer-WOona.framer-60fdv1 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WOona .framer-1el56bv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 570px; }\",\".framer-WOona .framer-1dzn7xr, .framer-WOona .framer-1cxsivv { 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-WOona .framer-eorod0, .framer-WOona .framer-2reqa9, .framer-WOona .framer-9t45l9, .framer-WOona .framer-1y4eyxl, .framer-WOona .framer-1an8sw8, .framer-WOona .framer-nuobe2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 18px 25px 18px 25px; position: relative; width: 182px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WOona .framer-qobybs, .framer-WOona .framer-ljhmll, .framer-WOona .framer-1lpxxnc, .framer-WOona .framer-11oeham, .framer-WOona .framer-tqh1ek, .framer-WOona .framer-ncn82s { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-WOona .framer-1uys0zn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 600px; }\",\".framer-WOona .framer-tr041l { flex: 1 0 0px; height: 230px; overflow: visible; position: relative; width: 1px; }\",\".framer-WOona .framer-zb8mb7 { 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; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: 86%; }\",\".framer-WOona .framer-rqjkyt { flex: none; height: 40px; position: relative; width: 71px; }\",\".framer-WOona .framer-795jm9, .framer-WOona .framer-4vqnn6, .framer-WOona .framer-4t3q07, .framer-WOona .framer-jvo6na, .framer-WOona .framer-ounjjb { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-WOona .framer-ncql0t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WOona .framer-1is23k7, .framer-WOona .framer-kjikns { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WOona.framer-60fdv1, .framer-WOona .framer-1el56bv, .framer-WOona .framer-1dzn7xr, .framer-WOona .framer-eorod0, .framer-WOona .framer-2reqa9, .framer-WOona .framer-9t45l9, .framer-WOona .framer-1cxsivv, .framer-WOona .framer-1y4eyxl, .framer-WOona .framer-1an8sw8, .framer-WOona .framer-nuobe2, .framer-WOona .framer-1uys0zn, .framer-WOona .framer-zb8mb7, .framer-WOona .framer-ncql0t { gap: 0px; } .framer-WOona.framer-60fdv1 > *, .framer-WOona .framer-zb8mb7 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-WOona.framer-60fdv1 > :first-child, .framer-WOona .framer-1el56bv > :first-child, .framer-WOona .framer-zb8mb7 > :first-child, .framer-WOona .framer-ncql0t > :first-child { margin-top: 0px; } .framer-WOona.framer-60fdv1 > :last-child, .framer-WOona .framer-1el56bv > :last-child, .framer-WOona .framer-zb8mb7 > :last-child, .framer-WOona .framer-ncql0t > :last-child { margin-bottom: 0px; } .framer-WOona .framer-1el56bv > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-WOona .framer-1dzn7xr > *, .framer-WOona .framer-eorod0 > *, .framer-WOona .framer-2reqa9 > *, .framer-WOona .framer-9t45l9 > *, .framer-WOona .framer-1cxsivv > *, .framer-WOona .framer-1y4eyxl > *, .framer-WOona .framer-1an8sw8 > *, .framer-WOona .framer-nuobe2 > *, .framer-WOona .framer-1uys0zn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WOona .framer-1dzn7xr > :first-child, .framer-WOona .framer-eorod0 > :first-child, .framer-WOona .framer-2reqa9 > :first-child, .framer-WOona .framer-9t45l9 > :first-child, .framer-WOona .framer-1cxsivv > :first-child, .framer-WOona .framer-1y4eyxl > :first-child, .framer-WOona .framer-1an8sw8 > :first-child, .framer-WOona .framer-nuobe2 > :first-child, .framer-WOona .framer-1uys0zn > :first-child { margin-left: 0px; } .framer-WOona .framer-1dzn7xr > :last-child, .framer-WOona .framer-eorod0 > :last-child, .framer-WOona .framer-2reqa9 > :last-child, .framer-WOona .framer-9t45l9 > :last-child, .framer-WOona .framer-1cxsivv > :last-child, .framer-WOona .framer-1y4eyxl > :last-child, .framer-WOona .framer-1an8sw8 > :last-child, .framer-WOona .framer-nuobe2 > :last-child, .framer-WOona .framer-1uys0zn > :last-child { margin-right: 0px; } .framer-WOona .framer-ncql0t > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-WOona.framer-v-1fdqxeu .framer-9t45l9 { cursor: pointer; }\",\".framer-WOona.framer-v-s1ajb9 .framer-1el56bv { flex-wrap: nowrap; }\",'.framer-WOona[data-border=\"true\"]::after, .framer-WOona [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 390\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"gZZM_7kSK\":{\"layout\":[\"auto\",\"auto\"]},\"uE2RwYsyr\":{\"layout\":[\"auto\",\"auto\"]},\"dh8DpdTF0\":{\"layout\":[\"auto\",\"auto\"]},\"Jjw6yAYhq\":{\"layout\":[\"auto\",\"auto\"]},\"K8GgcYV5Q\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerultBNqn7k=withCSS(Component,css,\"framer-WOona\");export default FramerultBNqn7k;FramerultBNqn7k.displayName=\"Values\";FramerultBNqn7k.defaultProps={height:390,width:600};addPropertyControls(FramerultBNqn7k,{variant:{options:[\"iUgumFEEd\",\"gZZM_7kSK\",\"uE2RwYsyr\",\"dh8DpdTF0\",\"Jjw6yAYhq\",\"K8GgcYV5Q\"],optionTitles:[\"Trust\",\"Respect\",\"Integrity & Ethics\",\"Employee Focus\",\"Customer Focus\",\"Techinal Excellence\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerultBNqn7k,[{explicitInter:true,fonts:[{family:\"Creato Display Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/7CjN1yBagyojr4pOzu7glrJp4ZQ.woff2\"},{family:\"Creato Display Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/Oza9uDcU3yhSV2PCLntOreCKpE.woff2\"},{family:\"Creato Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/L314mS6jfb6BFfnKgQq2EF44s.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerultBNqn7k\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gZZM_7kSK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uE2RwYsyr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dh8DpdTF0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Jjw6yAYhq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"K8GgcYV5Q\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"390\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"600\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ultBNqn7k.map", "import{jsx as _jsx}from\"react/jsx-runtime\";const scrollbarWidth=0;const scrollbarHeight=0;const scrollbarBorderRadius=0;const scrollbarBackgroundColor=\"#c4c0c0\";const thumbBorderRadius=12;const thumbColor=\"#7B7B7B\";const hoverColor=\"#7B7B7B\";const focusColor=\"#7B7B7B\";import{useEffect}from\"react\";export function customScrollbar(Component){return props=>{useEffect(()=>{const styleTag=document.createElement(\"style\");styleTag.innerHTML=`\n                \n                ::-webkit-scrollbar {\n                    width: ${scrollbarWidth}px;\n                }\n                ::-webkit-scrollbar:horizontal {\n                    height: ${scrollbarHeight}px; \n                }\n                ::-webkit-scrollbar-track {\n                    background: ${scrollbarBackgroundColor};\n                    padding: 4px;\n                    border-radius: ${scrollbarBorderRadius}px;,\n                }\n                ::-webkit-scrollbar-thumb {\n                    background-color: ${thumbColor};\n                    border: transparent;\n                    border-radius: ${thumbBorderRadius}px;\n                }\n                ::-webkit-scrollbar-thumb:hover {\n                    background-color: ${hoverColor};\n                }\n                ::-webkit-scrollbar-thumb:active {\n                    background-color: ${focusColor};\n                }\n            `;document.head.appendChild(styleTag);return()=>{document.head.removeChild(styleTag);};},[scrollbarWidth,scrollbarHeight,thumbColor,scrollbarBackgroundColor,scrollbarBorderRadius,thumbBorderRadius,hoverColor,focusColor]);return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"customScrollbar\":{\"type\":\"reactHoc\",\"name\":\"customScrollbar\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CustomScrollbar.map", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"U8bUIqVTN\",\"dgpJuc0la\",\"AVV4isN71\",\"L8R_7UKHL\",\"MKZiuXIOV\",\"ioxDORKUS\",\"UIf3Ex5Ij\",\"a8DrLjWT8\",\"hbenJH_sp\",\"hpd7GrwwO\",\"L5KakMo1K\",\"yOmsKJxgQ\",\"UWLuLWyv1\",\"JNvRt8Z6B\",\"WJB1LlZ6A\",\"hEe34d5Ru\",\"NYRoEmOme\",\"PAsoz07b0\",\"Fzt5FTHS1\",\"B6H0CVx97\",\"HQpEfiPz9\",\"TBPW7oQmX\",\"VyFbq_eRt\",\"cHaasl0y9\",\"lgJI92PU7\",\"iwRUZpHKP\",\"WCc47ggOW\",\"JUEbocBuq\",\"XH20rCGLC\",\"nItWRLIYF\",\"muCY6cdcf\",\"ubMV7iVsp\",\"I731gl9uu\",\"s8zsFpPSt\",\"eZRR0izTz\",\"bwDxjJXLy\",\"jJfLMXuHq\",\"R0spzIVxS\",\"RU9kOwEzo\",\"eHVXWpqJr\",\"j1blBHGsZ\",\"KNTQzJ167\",\"BnLkUfYig\",\"ftfLRgqGe\",\"m_oISYlVt\",\"ZgBH5LXHe\",\"VAzvlDR7m\",\"RZLLH1iuO\",\"N5j9ohfcA\",\"kuFwl7JOE\",\"yjU_Mdme6\"];const serializationHash=\"framer-THaJH\";const variantClassNames={a8DrLjWT8:\"framer-v-13sf8y1\",AVV4isN71:\"framer-v-1wrj0mi\",B6H0CVx97:\"framer-v-atoazy\",BnLkUfYig:\"framer-v-13j1jim\",bwDxjJXLy:\"framer-v-u2x7wi\",cHaasl0y9:\"framer-v-1plv6af\",dgpJuc0la:\"framer-v-1yfves3\",eHVXWpqJr:\"framer-v-1yigfd0\",eZRR0izTz:\"framer-v-byfzfq\",ftfLRgqGe:\"framer-v-10zk8ke\",Fzt5FTHS1:\"framer-v-19pu0ji\",hbenJH_sp:\"framer-v-15q7arr\",hEe34d5Ru:\"framer-v-13t873h\",hpd7GrwwO:\"framer-v-1dq6p1\",HQpEfiPz9:\"framer-v-qagz4h\",I731gl9uu:\"framer-v-yzncw8\",ioxDORKUS:\"framer-v-1lccej6\",iwRUZpHKP:\"framer-v-1uvrfop\",j1blBHGsZ:\"framer-v-1bt2yk1\",jJfLMXuHq:\"framer-v-1x7be84\",JNvRt8Z6B:\"framer-v-1xbdate\",JUEbocBuq:\"framer-v-1pfesj0\",KNTQzJ167:\"framer-v-qeozzx\",kuFwl7JOE:\"framer-v-1mocipr\",L5KakMo1K:\"framer-v-15idwqd\",L8R_7UKHL:\"framer-v-p3ys2g\",lgJI92PU7:\"framer-v-oft2ni\",m_oISYlVt:\"framer-v-yswnzt\",MKZiuXIOV:\"framer-v-1b0nj3d\",muCY6cdcf:\"framer-v-1162y2n\",N5j9ohfcA:\"framer-v-6t5e5n\",nItWRLIYF:\"framer-v-4i1vk1\",NYRoEmOme:\"framer-v-69eh4a\",PAsoz07b0:\"framer-v-16lfp9h\",R0spzIVxS:\"framer-v-1gn63i0\",RU9kOwEzo:\"framer-v-1ot8mkn\",RZLLH1iuO:\"framer-v-4teg9n\",s8zsFpPSt:\"framer-v-12py6x0\",TBPW7oQmX:\"framer-v-1v7m4vk\",U8bUIqVTN:\"framer-v-aexase\",ubMV7iVsp:\"framer-v-1cvno7z\",UIf3Ex5Ij:\"framer-v-hdzrnp\",UWLuLWyv1:\"framer-v-18khw8\",VAzvlDR7m:\"framer-v-38bylb\",VyFbq_eRt:\"framer-v-1gq7ivv\",WCc47ggOW:\"framer-v-x26qrx\",WJB1LlZ6A:\"framer-v-sxcm7r\",XH20rCGLC:\"framer-v-w2wgo2\",yjU_Mdme6:\"framer-v-1tu9a2e\",yOmsKJxgQ:\"framer-v-r2z1ha\",ZgBH5LXHe:\"framer-v-1ty1dj6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Ambient 1\":\"JNvRt8Z6B\",\"Ambient 2\":\"WJB1LlZ6A\",\"BanyanOps 1\":\"yOmsKJxgQ\",\"BanyanOps 2\":\"UWLuLWyv1\",\"Bizmetric 1\":\"hpd7GrwwO\",\"Bizmetric 2\":\"L5KakMo1K\",\"Brandscope 1\":\"nItWRLIYF\",\"Brandscope 2\":\"muCY6cdcf\",\"Brandscope 3\":\"ubMV7iVsp\",\"Circles 1\":\"cHaasl0y9\",\"Circles 2\":\"lgJI92PU7\",\"DataPelago 1\":\"iwRUZpHKP\",\"DetaPelago 2\":\"WCc47ggOW\",\"Druva 1\":\"I731gl9uu\",\"Druva 2\":\"s8zsFpPSt\",\"Druva 3\":\"j1blBHGsZ\",\"DT 1\":\"AVV4isN71\",\"DT 2\":\"dgpJuc0la\",\"Dubai_Technologies_State 1\":\"U8bUIqVTN\",\"Flip Book\":\"N5j9ohfcA\",\"Fortress 1\":\"TBPW7oQmX\",\"Fortress 2\":\"VyFbq_eRt\",\"FYNDNA 1\":\"ioxDORKUS\",\"FYNDNA 2\":\"UIf3Ex5Ij\",\"Goject 1\":\"PAsoz07b0\",\"Goject 2\":\"Fzt5FTHS1\",\"GulfNet 1\":\"B6H0CVx97\",\"GulfNet 2\":\"HQpEfiPz9\",\"HDFC 1\":\"L8R_7UKHL\",\"HDFC 2\":\"MKZiuXIOV\",\"NPCI 1\":\"a8DrLjWT8\",\"NPCI 2\":\"hbenJH_sp\",\"Quickinsure 1\":\"JUEbocBuq\",\"Quickinsure 2\":\"XH20rCGLC\",\"Rakuten 1\":\"hEe34d5Ru\",\"Rakuten 2\":\"NYRoEmOme\",\"Sportsskills 1\":\"jJfLMXuHq\",\"Sportsskills 2\":\"R0spzIVxS\",\"Swalekhan 1\":\"RU9kOwEzo\",\"Swalekhan 2\":\"eHVXWpqJr\",\"The loops 1\":\"eZRR0izTz\",\"The Loops 2\":\"bwDxjJXLy\",Clubbuzz:\"m_oISYlVt\",Emeritus:\"kuFwl7JOE\",Eye:\"ZgBH5LXHe\",FFD:\"RZLLH1iuO\",iZiel:\"yjU_Mdme6\",Kindkart:\"BnLkUfYig\",Nipro:\"VAzvlDR7m\",Shework:\"KNTQzJ167\",Star:\"ftfLRgqGe\"};const getProps=({click,height,id,width,...props})=>{return{...props,g2kkJcxEr:click??props.g2kkJcxEr,variant:humanReadableVariantMap[props.variant]??props.variant??\"U8bUIqVTN\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,g2kkJcxEr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"U8bUIqVTN\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapnrcdjv=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(g2kkJcxEr){const res=await g2kkJcxEr(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:39,pixelWidth:228,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/biihkMEBezQhO8xgNualUoq9zI.png\"},className:cx(scopingClassNames,\"framer-aexase\",className,classNames),\"data-framer-name\":\"Dubai_Technologies_State 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"U8bUIqVTN\",onTap:onTapnrcdjv,ref:refBinding,style:{...style},...addPropertyOverrides({a8DrLjWT8:{\"data-framer-name\":\"NPCI 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:136,pixelWidth:440,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/U9kMiKUeu2tZVoUHvwbQyEf11V8.png\"},onTap:undefined},AVV4isN71:{\"data-framer-name\":\"DT 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:39,pixelWidth:228,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/urXunzggSoiqvj4GjHwxAowKCk.png\"},onTap:undefined},B6H0CVx97:{\"data-framer-name\":\"GulfNet 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:128,pixelWidth:132,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8lwm7GpGCIbrkErbrmyFALgLypA.png\"},onTap:undefined},BnLkUfYig:{\"data-framer-name\":\"Kindkart\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:516,pixelWidth:2100,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/2GmIeVShGtdxoxqqXejhGUaadI.png\",srcSet:\"https://framerusercontent.com/images/2GmIeVShGtdxoxqqXejhGUaadI.png?scale-down-to=512 512w,https://framerusercontent.com/images/2GmIeVShGtdxoxqqXejhGUaadI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2GmIeVShGtdxoxqqXejhGUaadI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2GmIeVShGtdxoxqqXejhGUaadI.png 2100w\"},onTap:undefined},bwDxjJXLy:{\"data-framer-name\":\"The Loops 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:389,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Gq5nQyReh3pxBwi1oRo9i2kMo.png\",srcSet:\"https://framerusercontent.com/images/Gq5nQyReh3pxBwi1oRo9i2kMo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Gq5nQyReh3pxBwi1oRo9i2kMo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gq5nQyReh3pxBwi1oRo9i2kMo.png 1200w\"},onTap:undefined},cHaasl0y9:{\"data-framer-name\":\"Circles 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:80,pixelWidth:250,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/y3rXfUKQp7gLPxtSdgUt2JDxU0.png\"},onTap:undefined},dgpJuc0la:{\"data-framer-name\":\"DT 2\",\"data-highlight\":undefined,onTap:undefined},eHVXWpqJr:{\"data-framer-name\":\"Swalekhan 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:817,pixelWidth:817,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/5yiEfn5vCfF0OGqsQGMo44lfiP4.png\",srcSet:\"https://framerusercontent.com/images/5yiEfn5vCfF0OGqsQGMo44lfiP4.png?scale-down-to=512 512w,https://framerusercontent.com/images/5yiEfn5vCfF0OGqsQGMo44lfiP4.png 817w\"},onTap:undefined},eZRR0izTz:{\"data-framer-name\":\"The loops 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:389,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/0ul88gSDx7ej51631x5z8d46yg8.png\",srcSet:\"https://framerusercontent.com/images/0ul88gSDx7ej51631x5z8d46yg8.png?scale-down-to=512 512w,https://framerusercontent.com/images/0ul88gSDx7ej51631x5z8d46yg8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ul88gSDx7ej51631x5z8d46yg8.png 1200w\"},onTap:undefined},ftfLRgqGe:{\"data-framer-name\":\"Star\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:524,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Nh4GlFfcyFHxF27i8orrHtSgI.png\",srcSet:\"https://framerusercontent.com/images/Nh4GlFfcyFHxF27i8orrHtSgI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Nh4GlFfcyFHxF27i8orrHtSgI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Nh4GlFfcyFHxF27i8orrHtSgI.png 1280w\"},onTap:undefined},Fzt5FTHS1:{\"data-framer-name\":\"Goject 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:591,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/cH46NXfs1M2G0wGfCBzceF9v3M.png\",srcSet:\"https://framerusercontent.com/images/cH46NXfs1M2G0wGfCBzceF9v3M.png?scale-down-to=512 512w,https://framerusercontent.com/images/cH46NXfs1M2G0wGfCBzceF9v3M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cH46NXfs1M2G0wGfCBzceF9v3M.png 2000w\"},onTap:undefined},hbenJH_sp:{\"data-framer-name\":\"NPCI 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:168,pixelWidth:440,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lmhsyJJajFivQPuIghubOe8aI.png\"},onTap:undefined},hEe34d5Ru:{\"data-framer-name\":\"Rakuten 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:168,pixelWidth:430,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yiRyYzcSwiTj0EA9a7kTCcUhrI.png\"},onTap:undefined},hpd7GrwwO:{\"data-framer-name\":\"Bizmetric 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:74,pixelWidth:90,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/983KMhU33VN8jbSAwyMuOKmG1A4.png\"},onTap:undefined},HQpEfiPz9:{\"data-framer-name\":\"GulfNet 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:128,pixelWidth:132,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mBy5QswaPMh4MZPkGlGhwhqiI.png\"},onTap:undefined},I731gl9uu:{\"data-framer-name\":\"Druva 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:170,pixelWidth:340,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GMIPWXGECmjt7tj4YdWKoMrGI.png\"},onTap:undefined},ioxDORKUS:{\"data-framer-name\":\"FYNDNA 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:168,pixelWidth:445,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/afkmVi9lsUTNdyTPPtahIbfyAM.png\"},onTap:undefined},iwRUZpHKP:{\"data-framer-name\":\"DataPelago 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:80,pixelWidth:285,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iGPGkOZVbtPg9nm6g6y9IYH1Fk.png\"},onTap:undefined},j1blBHGsZ:{\"data-framer-name\":\"Druva 3\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1487,pixelWidth:4168,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/hSIbv8bvPreW6uiETaInujVMgw.png\",srcSet:\"https://framerusercontent.com/images/hSIbv8bvPreW6uiETaInujVMgw.png?scale-down-to=512 512w,https://framerusercontent.com/images/hSIbv8bvPreW6uiETaInujVMgw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hSIbv8bvPreW6uiETaInujVMgw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hSIbv8bvPreW6uiETaInujVMgw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/hSIbv8bvPreW6uiETaInujVMgw.png 4168w\"},onTap:undefined},jJfLMXuHq:{\"data-framer-name\":\"Sportsskills 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:107,pixelWidth:561,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/9aJnFwNxKKaKlH2Nxjpvuta038.png\",srcSet:\"https://framerusercontent.com/images/9aJnFwNxKKaKlH2Nxjpvuta038.png?scale-down-to=512 512w,https://framerusercontent.com/images/9aJnFwNxKKaKlH2Nxjpvuta038.png 561w\"},onTap:undefined},JNvRt8Z6B:{\"data-framer-name\":\"Ambient 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:96,pixelWidth:171,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9BKAvRjZj38bFhSnGS9rzfrsGfs.png\"},onTap:undefined},JUEbocBuq:{\"data-framer-name\":\"Quickinsure 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:168,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/NXUbLMLlhxCUIZ3vTdqKfJWA8.png\",srcSet:\"https://framerusercontent.com/images/NXUbLMLlhxCUIZ3vTdqKfJWA8.png?scale-down-to=512 512w,https://framerusercontent.com/images/NXUbLMLlhxCUIZ3vTdqKfJWA8.png 600w\"},onTap:undefined},KNTQzJ167:{\"data-framer-name\":\"Shework\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:811,pixelWidth:1268,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/6MQQRTbEkpFw2LRBZZ8wKckOqyQ.png\",srcSet:\"https://framerusercontent.com/images/6MQQRTbEkpFw2LRBZZ8wKckOqyQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/6MQQRTbEkpFw2LRBZZ8wKckOqyQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6MQQRTbEkpFw2LRBZZ8wKckOqyQ.png 1268w\"},onTap:undefined},kuFwl7JOE:{\"data-framer-name\":\"Emeritus\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:354,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/meSRSiqB87VaMwyr1MkrDzKX8A.jpg\",srcSet:\"https://framerusercontent.com/images/meSRSiqB87VaMwyr1MkrDzKX8A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/meSRSiqB87VaMwyr1MkrDzKX8A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/meSRSiqB87VaMwyr1MkrDzKX8A.jpg 1200w\"},onTap:undefined},L5KakMo1K:{\"data-framer-name\":\"Bizmetric 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:96,pixelWidth:117,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KLktjqjqf53d5jDU8C3OA9cP0.png\"},onTap:undefined},L8R_7UKHL:{\"data-framer-name\":\"HDFC 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:168,pixelWidth:694,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yNbUtDmLqCDlBK5g2bt8gM6qE9I.png\",srcSet:\"https://framerusercontent.com/images/yNbUtDmLqCDlBK5g2bt8gM6qE9I.png?scale-down-to=512 512w,https://framerusercontent.com/images/yNbUtDmLqCDlBK5g2bt8gM6qE9I.png 694w\"},onTap:undefined},lgJI92PU7:{\"data-framer-name\":\"Circles 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:80,pixelWidth:250,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9vNL5B9EInOAXUcEbcRCid6l6E.png\"},onTap:undefined},m_oISYlVt:{\"data-framer-name\":\"Clubbuzz\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:192,pixelWidth:204,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5Tt3kbko10DJ74WbOgUBbeCU7k.png\"},onTap:undefined},MKZiuXIOV:{\"data-framer-name\":\"HDFC 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:168,pixelWidth:694,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/zm1z4x5w71FNmzEN7IKwVx35WY.png\",srcSet:\"https://framerusercontent.com/images/zm1z4x5w71FNmzEN7IKwVx35WY.png?scale-down-to=512 512w,https://framerusercontent.com/images/zm1z4x5w71FNmzEN7IKwVx35WY.png 694w\"},onTap:undefined},muCY6cdcf:{\"data-framer-name\":\"Brandscope 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:72,pixelWidth:540,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Y608RR9is11mIgCpX0uOL2vjpcY.png\",srcSet:\"https://framerusercontent.com/images/Y608RR9is11mIgCpX0uOL2vjpcY.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y608RR9is11mIgCpX0uOL2vjpcY.png 540w\"},onTap:undefined},N5j9ohfcA:{\"data-framer-name\":\"Flip Book\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:750,pixelWidth:750,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ZN61IJBLZcRg20IepQlbgsADhTc.png\",srcSet:\"https://framerusercontent.com/images/ZN61IJBLZcRg20IepQlbgsADhTc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZN61IJBLZcRg20IepQlbgsADhTc.png 750w\"},onTap:undefined},nItWRLIYF:{\"data-framer-name\":\"Brandscope 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:72,pixelWidth:540,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ANc61zNCOqv4HrRxoIK5sx6pzDU.png\",srcSet:\"https://framerusercontent.com/images/ANc61zNCOqv4HrRxoIK5sx6pzDU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ANc61zNCOqv4HrRxoIK5sx6pzDU.png 540w\"},onTap:undefined},NYRoEmOme:{\"data-framer-name\":\"Rakuten 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:169,pixelWidth:430,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JGVM5zIuw3omEY5CEnELCExZjk.png\"},onTap:undefined},PAsoz07b0:{\"data-framer-name\":\"Goject 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:591,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/BuUJCUObd7onMIAwh6A8kSJN1F0.png\",srcSet:\"https://framerusercontent.com/images/BuUJCUObd7onMIAwh6A8kSJN1F0.png?scale-down-to=512 512w,https://framerusercontent.com/images/BuUJCUObd7onMIAwh6A8kSJN1F0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BuUJCUObd7onMIAwh6A8kSJN1F0.png 2000w\"},onTap:undefined},R0spzIVxS:{\"data-framer-name\":\"Sportsskills 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:107,pixelWidth:561,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/0L96fsAcTJUNvnVtijQEDNtNx2g.png\",srcSet:\"https://framerusercontent.com/images/0L96fsAcTJUNvnVtijQEDNtNx2g.png?scale-down-to=512 512w,https://framerusercontent.com/images/0L96fsAcTJUNvnVtijQEDNtNx2g.png 561w\"},onTap:undefined},RU9kOwEzo:{\"data-framer-name\":\"Swalekhan 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:817,pixelWidth:817,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/OcKykpHRjlsA6bOnh4ZmatUhjQ.png\",srcSet:\"https://framerusercontent.com/images/OcKykpHRjlsA6bOnh4ZmatUhjQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/OcKykpHRjlsA6bOnh4ZmatUhjQ.png 817w\"},onTap:undefined},RZLLH1iuO:{\"data-framer-name\":\"FFD\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:907,pixelWidth:2999,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ZoCkv95ySKuBNrmfkegqfRbIuQ.jpg\",srcSet:\"https://framerusercontent.com/images/ZoCkv95ySKuBNrmfkegqfRbIuQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZoCkv95ySKuBNrmfkegqfRbIuQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZoCkv95ySKuBNrmfkegqfRbIuQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZoCkv95ySKuBNrmfkegqfRbIuQ.jpg 2999w\"},onTap:undefined},s8zsFpPSt:{\"data-framer-name\":\"Druva 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:170,pixelWidth:341,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/I442tyQ7cCZaCjrQGsyYUljM.png\"},onTap:undefined},TBPW7oQmX:{\"data-framer-name\":\"Fortress 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:96,pixelWidth:104,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CGf00fhxOMFz7tJ8dVhgndlvNxU.png\"},onTap:undefined},ubMV7iVsp:{\"data-framer-name\":\"Brandscope 3\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:37,pixelWidth:277,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4fmfbkS1ohUZYmVfNz87W9v2VI.svg\"},onTap:undefined},UIf3Ex5Ij:{\"data-framer-name\":\"FYNDNA 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:168,pixelWidth:445,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KMZrDKD7lPM5UR1cZ2GIdmszY.png\"},onTap:undefined},UWLuLWyv1:{\"data-framer-name\":\"BanyanOps 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:364,pixelWidth:350,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/82cBqvufCuPgnCa62wXcYxrWE.png\"},onTap:undefined},VAzvlDR7m:{\"data-framer-name\":\"Nipro\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:222,pixelWidth:770,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/K1AECLPG1Mqc1zLey28FGVLVY.jpg\",srcSet:\"https://framerusercontent.com/images/K1AECLPG1Mqc1zLey28FGVLVY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K1AECLPG1Mqc1zLey28FGVLVY.jpg 770w\"},onTap:undefined},VyFbq_eRt:{\"data-framer-name\":\"Fortress 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:217,pixelWidth:236,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UBlkEY83da5IvESKqJ7InuuIZwo.png\"},onTap:undefined},WCc47ggOW:{\"data-framer-name\":\"DetaPelago 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:80,pixelWidth:285,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNfIsitSHOvYaS8IgGD4rfKM20.png\"},onTap:undefined},WJB1LlZ6A:{\"data-framer-name\":\"Ambient 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:96,pixelWidth:171,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6MazSebB9Te4FpjYODkU2LLH1jM.png\"},onTap:undefined},XH20rCGLC:{\"data-framer-name\":\"Quickinsure 2\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:169,pixelWidth:601,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/x1RZKoImXAHsykVfNBozieguh1M.png\",srcSet:\"https://framerusercontent.com/images/x1RZKoImXAHsykVfNBozieguh1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/x1RZKoImXAHsykVfNBozieguh1M.png 601w\"},onTap:undefined},yjU_Mdme6:{\"data-framer-name\":\"iZiel\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:75,pixelWidth:75,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CmKxdWs6JDeS0CTFuE4ZsLoN3Q.png\"},onTap:undefined},yOmsKJxgQ:{\"data-framer-name\":\"BanyanOps 1\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:364,pixelWidth:350,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7Zcx4MQ3NPZ2sEaXdnKJ9TlWL8.png\"},onTap:undefined},ZgBH5LXHe:{\"data-framer-name\":\"Eye\",\"data-highlight\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:143,pixelWidth:351,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0Bos8URGwiOUd6gnNXLrb55ks.png\"},onTap:undefined}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-THaJH.framer-uxnhow, .framer-THaJH .framer-uxnhow { display: block; }\",\".framer-THaJH.framer-aexase { cursor: pointer; height: 24px; position: relative; width: 140px; }\",\".framer-THaJH.framer-v-1yfves3.framer-aexase, .framer-THaJH.framer-v-1wrj0mi.framer-aexase, .framer-THaJH.framer-v-4i1vk1.framer-aexase, .framer-THaJH.framer-v-1162y2n.framer-aexase, .framer-THaJH.framer-v-1cvno7z.framer-aexase, .framer-THaJH.framer-v-1x7be84.framer-aexase, .framer-THaJH.framer-v-1gn63i0.framer-aexase { cursor: unset; }\",\".framer-THaJH.framer-v-p3ys2g.framer-aexase, .framer-THaJH.framer-v-1b0nj3d.framer-aexase { cursor: unset; width: 100px; }\",\".framer-THaJH.framer-v-1lccej6.framer-aexase, .framer-THaJH.framer-v-hdzrnp.framer-aexase { cursor: unset; width: 65px; }\",\".framer-THaJH.framer-v-13sf8y1.framer-aexase, .framer-THaJH.framer-v-15q7arr.framer-aexase { cursor: unset; width: 66px; }\",\".framer-THaJH.framer-v-1dq6p1.framer-aexase, .framer-THaJH.framer-v-15idwqd.framer-aexase { cursor: unset; width: 35px; }\",\".framer-THaJH.framer-v-r2z1ha.framer-aexase, .framer-THaJH.framer-v-18khw8.framer-aexase, .framer-THaJH.framer-v-1ot8mkn.framer-aexase, .framer-THaJH.framer-v-1yigfd0.framer-aexase { cursor: unset; width: 26px; }\",\".framer-THaJH.framer-v-1xbdate.framer-aexase, .framer-THaJH.framer-v-sxcm7r.framer-aexase { cursor: unset; width: 44px; }\",\".framer-THaJH.framer-v-13t873h.framer-aexase, .framer-THaJH.framer-v-69eh4a.framer-aexase { cursor: unset; width: 72px; }\",\".framer-THaJH.framer-v-16lfp9h.framer-aexase, .framer-THaJH.framer-v-19pu0ji.framer-aexase { cursor: unset; width: 84px; }\",\".framer-THaJH.framer-v-atoazy.framer-aexase, .framer-THaJH.framer-v-qagz4h.framer-aexase { cursor: unset; width: 30px; }\",\".framer-THaJH.framer-v-1v7m4vk.framer-aexase, .framer-THaJH.framer-v-1gq7ivv.framer-aexase, .framer-THaJH.framer-v-yswnzt.framer-aexase { cursor: unset; width: 27px; }\",\".framer-THaJH.framer-v-1plv6af.framer-aexase, .framer-THaJH.framer-v-oft2ni.framer-aexase { cursor: unset; width: 78px; }\",\".framer-THaJH.framer-v-1uvrfop.framer-aexase, .framer-THaJH.framer-v-x26qrx.framer-aexase { cursor: unset; width: 83px; }\",\".framer-THaJH.framer-v-1pfesj0.framer-aexase, .framer-THaJH.framer-v-w2wgo2.framer-aexase { cursor: unset; width: 87px; }\",\".framer-THaJH.framer-v-yzncw8.framer-aexase, .framer-THaJH.framer-v-12py6x0.framer-aexase, .framer-THaJH.framer-v-1bt2yk1.framer-aexase { cursor: unset; width: 55px; }\",\".framer-THaJH.framer-v-byfzfq.framer-aexase { cursor: unset; width: 80px; }\",\".framer-THaJH.framer-v-u2x7wi.framer-aexase { aspect-ratio: 3.3333333333333335 / 1; cursor: unset; height: var(--framer-aspect-ratio-supported, 30px); width: 100px; }\",\".framer-THaJH.framer-v-qeozzx.framer-aexase { cursor: unset; width: 40px; }\",\".framer-THaJH.framer-v-13j1jim.framer-aexase, .framer-THaJH.framer-v-10zk8ke.framer-aexase { cursor: unset; width: 64px; }\",\".framer-THaJH.framer-v-1ty1dj6.framer-aexase { cursor: unset; width: 54px; }\",\".framer-THaJH.framer-v-38bylb.framer-aexase { cursor: unset; width: 79px; }\",\".framer-THaJH.framer-v-4teg9n.framer-aexase { cursor: unset; width: 70px; }\",\".framer-THaJH.framer-v-6t5e5n.framer-aexase { cursor: unset; width: 24px; }\",\".framer-THaJH.framer-v-1mocipr.framer-aexase { cursor: unset; width: 58px; }\",\".framer-THaJH.framer-v-1tu9a2e.framer-aexase { cursor: unset; width: 29px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dgpJuc0la\":{\"layout\":[\"fixed\",\"fixed\"]},\"AVV4isN71\":{\"layout\":[\"fixed\",\"fixed\"]},\"L8R_7UKHL\":{\"layout\":[\"fixed\",\"fixed\"]},\"MKZiuXIOV\":{\"layout\":[\"fixed\",\"fixed\"]},\"ioxDORKUS\":{\"layout\":[\"fixed\",\"fixed\"]},\"UIf3Ex5Ij\":{\"layout\":[\"fixed\",\"fixed\"]},\"a8DrLjWT8\":{\"layout\":[\"fixed\",\"fixed\"]},\"hbenJH_sp\":{\"layout\":[\"fixed\",\"fixed\"]},\"hpd7GrwwO\":{\"layout\":[\"fixed\",\"fixed\"]},\"L5KakMo1K\":{\"layout\":[\"fixed\",\"fixed\"]},\"yOmsKJxgQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"UWLuLWyv1\":{\"layout\":[\"fixed\",\"fixed\"]},\"JNvRt8Z6B\":{\"layout\":[\"fixed\",\"fixed\"]},\"WJB1LlZ6A\":{\"layout\":[\"fixed\",\"fixed\"]},\"hEe34d5Ru\":{\"layout\":[\"fixed\",\"fixed\"]},\"NYRoEmOme\":{\"layout\":[\"fixed\",\"fixed\"]},\"PAsoz07b0\":{\"layout\":[\"fixed\",\"fixed\"]},\"Fzt5FTHS1\":{\"layout\":[\"fixed\",\"fixed\"]},\"B6H0CVx97\":{\"layout\":[\"fixed\",\"fixed\"]},\"HQpEfiPz9\":{\"layout\":[\"fixed\",\"fixed\"]},\"TBPW7oQmX\":{\"layout\":[\"fixed\",\"fixed\"]},\"VyFbq_eRt\":{\"layout\":[\"fixed\",\"fixed\"]},\"cHaasl0y9\":{\"layout\":[\"fixed\",\"fixed\"]},\"lgJI92PU7\":{\"layout\":[\"fixed\",\"fixed\"]},\"iwRUZpHKP\":{\"layout\":[\"fixed\",\"fixed\"]},\"WCc47ggOW\":{\"layout\":[\"fixed\",\"fixed\"]},\"JUEbocBuq\":{\"layout\":[\"fixed\",\"fixed\"]},\"XH20rCGLC\":{\"layout\":[\"fixed\",\"fixed\"]},\"nItWRLIYF\":{\"layout\":[\"fixed\",\"fixed\"]},\"muCY6cdcf\":{\"layout\":[\"fixed\",\"fixed\"]},\"ubMV7iVsp\":{\"layout\":[\"fixed\",\"fixed\"]},\"I731gl9uu\":{\"layout\":[\"fixed\",\"fixed\"]},\"s8zsFpPSt\":{\"layout\":[\"fixed\",\"fixed\"]},\"eZRR0izTz\":{\"layout\":[\"fixed\",\"fixed\"]},\"bwDxjJXLy\":{\"layout\":[\"fixed\",\"fixed\"]},\"jJfLMXuHq\":{\"layout\":[\"fixed\",\"fixed\"]},\"R0spzIVxS\":{\"layout\":[\"fixed\",\"fixed\"]},\"RU9kOwEzo\":{\"layout\":[\"fixed\",\"fixed\"]},\"eHVXWpqJr\":{\"layout\":[\"fixed\",\"fixed\"]},\"j1blBHGsZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"KNTQzJ167\":{\"layout\":[\"fixed\",\"fixed\"]},\"BnLkUfYig\":{\"layout\":[\"fixed\",\"fixed\"]},\"ftfLRgqGe\":{\"layout\":[\"fixed\",\"fixed\"]},\"m_oISYlVt\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZgBH5LXHe\":{\"layout\":[\"fixed\",\"fixed\"]},\"VAzvlDR7m\":{\"layout\":[\"fixed\",\"fixed\"]},\"RZLLH1iuO\":{\"layout\":[\"fixed\",\"fixed\"]},\"N5j9ohfcA\":{\"layout\":[\"fixed\",\"fixed\"]},\"kuFwl7JOE\":{\"layout\":[\"fixed\",\"fixed\"]},\"yjU_Mdme6\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"g2kkJcxEr\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerVlJ1KNA2s=withCSS(Component,css,\"framer-THaJH\");export default FramerVlJ1KNA2s;FramerVlJ1KNA2s.displayName=\"Client Logos V2\";FramerVlJ1KNA2s.defaultProps={height:24,width:140};addPropertyControls(FramerVlJ1KNA2s,{variant:{options:[\"U8bUIqVTN\",\"dgpJuc0la\",\"AVV4isN71\",\"L8R_7UKHL\",\"MKZiuXIOV\",\"ioxDORKUS\",\"UIf3Ex5Ij\",\"a8DrLjWT8\",\"hbenJH_sp\",\"hpd7GrwwO\",\"L5KakMo1K\",\"yOmsKJxgQ\",\"UWLuLWyv1\",\"JNvRt8Z6B\",\"WJB1LlZ6A\",\"hEe34d5Ru\",\"NYRoEmOme\",\"PAsoz07b0\",\"Fzt5FTHS1\",\"B6H0CVx97\",\"HQpEfiPz9\",\"TBPW7oQmX\",\"VyFbq_eRt\",\"cHaasl0y9\",\"lgJI92PU7\",\"iwRUZpHKP\",\"WCc47ggOW\",\"JUEbocBuq\",\"XH20rCGLC\",\"nItWRLIYF\",\"muCY6cdcf\",\"ubMV7iVsp\",\"I731gl9uu\",\"s8zsFpPSt\",\"eZRR0izTz\",\"bwDxjJXLy\",\"jJfLMXuHq\",\"R0spzIVxS\",\"RU9kOwEzo\",\"eHVXWpqJr\",\"j1blBHGsZ\",\"KNTQzJ167\",\"BnLkUfYig\",\"ftfLRgqGe\",\"m_oISYlVt\",\"ZgBH5LXHe\",\"VAzvlDR7m\",\"RZLLH1iuO\",\"N5j9ohfcA\",\"kuFwl7JOE\",\"yjU_Mdme6\"],optionTitles:[\"Dubai_Technologies_State 1\",\"DT 2\",\"DT 1\",\"HDFC 1\",\"HDFC 2\",\"FYNDNA 1\",\"FYNDNA 2\",\"NPCI 1\",\"NPCI 2\",\"Bizmetric 1\",\"Bizmetric 2\",\"BanyanOps 1\",\"BanyanOps 2\",\"Ambient 1\",\"Ambient 2\",\"Rakuten 1\",\"Rakuten 2\",\"Goject 1\",\"Goject 2\",\"GulfNet 1\",\"GulfNet 2\",\"Fortress 1\",\"Fortress 2\",\"Circles 1\",\"Circles 2\",\"DataPelago 1\",\"DetaPelago 2\",\"Quickinsure 1\",\"Quickinsure 2\",\"Brandscope 1\",\"Brandscope 2\",\"Brandscope 3\",\"Druva 1\",\"Druva 2\",\"The loops 1\",\"The Loops 2\",\"Sportsskills 1\",\"Sportsskills 2\",\"Swalekhan 1\",\"Swalekhan 2\",\"Druva 3\",\"Shework\",\"Kindkart\",\"Star\",\"Clubbuzz\",\"Eye\",\"Nipro\",\"FFD\",\"Flip Book\",\"Emeritus\",\"iZiel\"],title:\"Variant\",type:ControlType.Enum},g2kkJcxEr:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerVlJ1KNA2s,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVlJ1KNA2s\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"140\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"24\",\"framerVariables\":\"{\\\"g2kkJcxEr\\\":\\\"click\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dgpJuc0la\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AVV4isN71\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"L8R_7UKHL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MKZiuXIOV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ioxDORKUS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UIf3Ex5Ij\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"a8DrLjWT8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hbenJH_sp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hpd7GrwwO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"L5KakMo1K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yOmsKJxgQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UWLuLWyv1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JNvRt8Z6B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WJB1LlZ6A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hEe34d5Ru\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NYRoEmOme\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PAsoz07b0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Fzt5FTHS1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"B6H0CVx97\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HQpEfiPz9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TBPW7oQmX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VyFbq_eRt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cHaasl0y9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lgJI92PU7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iwRUZpHKP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WCc47ggOW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JUEbocBuq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XH20rCGLC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nItWRLIYF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"muCY6cdcf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ubMV7iVsp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I731gl9uu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"s8zsFpPSt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eZRR0izTz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bwDxjJXLy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jJfLMXuHq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"R0spzIVxS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RU9kOwEzo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eHVXWpqJr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"j1blBHGsZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KNTQzJ167\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BnLkUfYig\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ftfLRgqGe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"m_oISYlVt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZgBH5LXHe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VAzvlDR7m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RZLLH1iuO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"N5j9ohfcA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kuFwl7JOE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yjU_Mdme6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VlJ1KNA2s.map"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "hasReachedTarget", "spring", "o", "c", "i", "h", "e", "u", "d", "f", "l", "g", "glide", "a", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "C", "$", "R", "resolveElements", "t", "createGeneratorEasing", "t", "o", "getGenerator", "s", "r", "a", "getKeyframes", "e", "pregenerateKeyframes", "n", "i", "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", "t", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "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", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "SVG", "css", "FramerBF_oiAaCL", "withCSS", "BF_oiAaCL_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1iezxnr", "args", "onTapggm5q1", "onTapk4xaoh", "onTap33dh14", "onTapj0h5lg", "onTapy2n225", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "css", "FrameroKsTDY1yZ", "withCSS", "oKsTDY1yZ_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "RichText2", "SVG", "css", "FramertCb2t8uST", "withCSS", "tCb2t8uST_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter15l6xcs", "args", "onMouseEnter1dfwrlu", "onMouseEnter1ajifs5", "onTapgnqhaj", "CycleVariantState", "onMouseEnterum8crv", "onMouseEnter12dq4q4", "onMouseEnterqjouub", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "css", "FramerultBNqn7k", "withCSS", "ultBNqn7k_default", "addPropertyControls", "ControlType", "addFonts", "scrollbarWidth", "scrollbarHeight", "scrollbarBorderRadius", "scrollbarBackgroundColor", "thumbBorderRadius", "thumbColor", "hoverColor", "focusColor", "customScrollbar", "Component", "props", "ue", "styleTag", "p", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "g2kkJcxEr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapnrcdjv", "args", "scopingClassNames", "cx", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramerVlJ1KNA2s", "withCSS", "VlJ1KNA2s_default", "addPropertyControls", "ControlType", "addFonts"]
}
