{
  "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.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.14.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.14.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/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://framerusercontent.com/modules/bNIpk13kaxbDsGNiypRs/v9mMnK8mugzntqirKepV/k8wxI9K47.js", "ssg:https://framerusercontent.com/modules/hbA7CEZNCYEoCVf2PbSD/MJe6eq1d6fzO1fEMoiMY/ECQ1DAfqU.js", "ssg:https://framerusercontent.com/modules/UWhtdtbyiivAMpXZ5DvW/CqCbdZbQR5srgOfcBvGT/h_srZeqRq.js", "ssg:https://framerusercontent.com/modules/tvBuc4et6uEj0QtWqbhV/seJkHHDMFNSVePqULYE9/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const 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{isFunction as t,isCubicBezier as i,noopReturn as e,defaults as s,isEasingGenerator as a,isEasingList as n,interpolate as r}from\"@motionone/utils\";import{cubicBezier as h,steps as o}from\"@motionone/easing\";const l={ease:h(.25,.1,.25,1),\"ease-in\":h(.42,0,1,1),\"ease-in-out\":h(.42,0,.58,1),\"ease-out\":h(0,0,.58,1)};const u=/\\((.*?)\\)/;function getEasingFunction(s){if(t(s))return s;if(i(s))return h(...s);if(l[s])return l[s];if(s.startsWith(\"steps\")){const t=u.exec(s);if(t){const i=t[1].split(\",\");return o(parseFloat(i[0]),i[1].trim())}}return e}class Animation{constructor(t,i=[0,1],{easing:h,duration:o=s.duration,delay:l=s.delay,endDelay:u=s.endDelay,repeat:m=s.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=e;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));h=h||s.easing;if(a(h)){const t=h.createAnimation(i);h=t.easing;i=t.keyframes||i;o=t.duration||o}this.repeat=m;this.easing=n(h)?e:getEasingFunction(h);this.updateDuration(o);const d=r(i,c,n(h)?h.map(getEasingFunction):e);this.tick=i=>{var e;l=l;let s=0;s=void 0!==this.pauseTime?this.pauseTime:(i-this.startTime)*this.rate;this.t=s;s/=1e3;s=Math.max(s-l,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(s=this.totalDuration);const a=s/this.duration;let n=Math.floor(a);let r=a%1;!r&&a>=1&&(r=1);1===r&&n--;const h=n%2;(\"reverse\"===p||\"alternate\"===p&&h||\"alternate-reverse\"===p&&!h)&&(r=1-r);const o=s>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(o));t(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||s>=this.totalDuration+u);if(c){this.playState=\"finished\";null===(e=this.resolve)||void 0===e?void 0:e.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,noopReturn as s}from\"@motionone/utils\";const n=5;function calcGeneratorVelocity(t,s,r){const a=Math.max(s-n,0);return e(r-t(a),s-a)}const r={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=r.stiffness,t=r.damping,s=r.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=r.stiffness,damping:s=r.damping,mass:n=r.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/n)/1e3;const l=calcDampingRatio(e,s,n);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 a=10;const o=1e4;function pregenerateKeyframes(e,t=s){let n;let r=a;let c=e(0);const i=[t(c.current)];while(!c.done&&r<o){c=e(r);i.push(t(c.done?c.target:c.current));void 0===n&&c.hasReachedTarget&&(n=r);r+=a}const h=r-a;1===i.length&&i.push(c.current);return{keyframes:i,duration:h/1e3,overshootDuration:(null!==n&&void 0!==n?n:h)/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}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;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(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (78454af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"GrKA_RHIQ\"];const serializationHash=\"framer-7RzC2\";const variantClassNames={GrKA_RHIQ:\"framer-v-gakfts\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({answer,click,height,id,question,width,...props})=>{var _ref,_ref1;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Reputation is a fundamental quality of every company and brand \u2013 what stakeholders believe about it, expect from it and say about it to others. Through our work with leading global and local brands, we have the knowledge and expertise to help them prepare for risk and respond to crises.\\n\\n\",V4mQxlvug:click!==null&&click!==void 0?click:props.V4mQxlvug,W88zB8mIG:(_ref1=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref1!==void 0?_ref1:\"REPUTATION MANAGEMENT\"};};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,W88zB8mIG,T8rQFvSBR,V4mQxlvug,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GrKA_RHIQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1oyd2pd=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(V4mQxlvug){const res=await V4mQxlvug(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-gakfts\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"GrKA_RHIQ\",onTap:onTap1oyd2pd,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46)))\",\"--framer-text-transform\":\"uppercase\"},children:\"REPUTATION MANAGEMENT\"})}),className:\"framer-1mmc826\",fonts:[\"GF;Anton-regular\"],layoutDependency:layoutDependency,layoutId:\"jTP_7t2Ow\",style:{\"--extracted-r6o4lv\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"21px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1r0zile\",fonts:[\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"rIeLJKOcB\",style:{\"--extracted-r6o4lv\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-paragraph-spacing\":\"0px\"},text:T8rQFvSBR,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7RzC2.framer-1hj9yyn, .framer-7RzC2 .framer-1hj9yyn { display: block; }\",\".framer-7RzC2.framer-gakfts { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px 0px 20px 0px; position: relative; width: 400px; }\",\".framer-7RzC2 .framer-1mmc826 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7RzC2 .framer-1r0zile { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; 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-7RzC2.framer-gakfts { gap: 0px; } .framer-7RzC2.framer-gakfts > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-7RzC2.framer-gakfts > :first-child { margin-top: 0px; } .framer-7RzC2.framer-gakfts > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 227\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\",\"V4mQxlvug\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerk8wxI9K47=withCSS(Component,css,\"framer-7RzC2\");export default Framerk8wxI9K47;Framerk8wxI9K47.displayName=\"Row 2\";Framerk8wxI9K47.defaultProps={height:227,width:400};addPropertyControls(Framerk8wxI9K47,{W88zB8mIG:{defaultValue:\"REPUTATION MANAGEMENT\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Reputation is a fundamental quality of every company and brand \u2013 what stakeholders believe about it, expect from it and say about it to others. Through our work with leading global and local brands, we have the knowledge and expertise to help them prepare for risk and respond to crises.\\n\\n\",displayTextArea:true,title:\"Answer\",type:ControlType.String},V4mQxlvug:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerk8wxI9K47,[{explicitInter:true,fonts:[{family:\"Anton\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/anton/v25/1Ptgg87LROyAm0Kx8i4gS7lu.woff2\",weight:\"400\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerk8wxI9K47\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\",\\\"V4mQxlvug\\\":\\\"click\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"400\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"227\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./k8wxI9K47.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,getLoadingLazyAtYPosition,Image,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Row2 from\"https://framerusercontent.com/modules/bNIpk13kaxbDsGNiypRs/v9mMnK8mugzntqirKepV/k8wxI9K47.js\";const Row2Fonts=getFonts(Row2);const serializationHash=\"framer-rAF4t\";const variantClassNames={MuM8qrRoF:\"framer-v-1tlpj7h\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"MuM8qrRoF\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1tlpj7h\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"MuM8qrRoF\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1but31i\",\"data-framer-name\":\"Frame 1000002558\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:45,layoutDependency:layoutDependency,layoutId:\"eotkYN3QL\",svg:'<svg width=\"45\" height=\"45\" viewBox=\"0 0 45 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"45\" height=\"45\" rx=\"22.5\" fill=\"#C12A2E\"/>\\n<g clip-path=\"url(#clip0_432_2516)\">\\n<path d=\"M5.77316 23.2237L10.2464 24.9343C10.5445 25.048 10.8756 25.0387 11.1669 24.9086C11.4582 24.7784 11.686 24.5381 11.8003 24.2402L11.8816 24.0278C11.923 24.0505 11.9643 24.0736 12.0057 24.0962C12.2478 24.5635 12.5372 25.0047 12.8694 25.4129C12.7185 25.6662 12.6374 25.955 12.6344 26.2498C12.6313 26.5446 12.7065 26.835 12.8522 27.0914C12.9979 27.3477 13.2089 27.5608 13.4637 27.7091C13.7186 27.8574 14.0082 27.9354 14.303 27.9354C14.3126 27.9354 14.3223 27.9348 14.3319 27.9346C14.377 28.3426 14.5711 28.7196 14.8769 28.9934C15.1828 29.2671 15.5789 29.4183 15.9894 29.418C15.9992 29.418 16.009 29.4174 16.0188 29.4173C16.0634 29.8249 16.257 30.2018 16.5624 30.4755C16.8677 30.7492 17.2634 30.9006 17.6735 30.9005C17.684 30.9005 17.6945 30.8997 17.705 30.8995C17.7408 31.221 17.8692 31.5252 18.0746 31.775C18.28 32.0249 18.5536 32.2097 18.8621 32.3069C19.1706 32.4042 19.5007 32.4097 19.8123 32.3228C20.1239 32.2359 20.4035 32.0604 20.6171 31.8175L20.9153 31.4785L22.5393 32.8564C22.8395 33.1122 23.2212 33.2524 23.6156 33.2516C23.6621 33.2516 23.7088 33.2497 23.7558 33.2459C24.1591 33.2136 24.5369 33.0356 24.8184 32.745C25.1 32.4544 25.266 32.0711 25.2855 31.667C25.6764 31.6535 26.0501 31.5027 26.3409 31.2412C26.6318 30.9797 26.8213 30.6241 26.8762 30.2368C26.9219 30.2405 26.9677 30.2427 27.0134 30.2427C27.4065 30.2435 27.7871 30.1053 28.0882 29.8526C28.3892 29.6 28.5913 29.249 28.6586 28.8618C28.7296 28.8714 28.801 28.8765 28.8725 28.877C28.919 28.877 28.9657 28.8751 29.0127 28.8712C29.2797 28.8508 29.5378 28.7657 29.7646 28.6233C29.9915 28.481 30.1803 28.2856 30.3149 28.054C30.4494 27.8224 30.5256 27.5616 30.537 27.294C30.5483 27.0264 30.4944 26.7601 30.3799 26.518C30.9854 26.0961 31.5971 25.4837 32.236 24.6601C32.2395 24.6555 32.2429 24.651 32.2462 24.6464C32.4656 24.3504 32.7575 24.1159 33.0939 23.9655L33.1991 24.2405C33.2555 24.3881 33.3404 24.5232 33.4491 24.638C33.5577 24.7528 33.6879 24.8451 33.8322 24.9095C33.9765 24.974 34.1321 25.0094 34.2901 25.0137C34.4481 25.018 34.6054 24.9912 34.753 24.9347L39.2263 23.2241C39.5241 23.1097 39.7645 22.8819 39.8946 22.5906C40.0248 22.2993 40.0341 21.9683 39.9204 21.6701L36.4222 12.5223C36.3079 12.2244 36.0801 11.984 35.7888 11.8539C35.4975 11.7237 35.1665 11.7144 34.8683 11.8281L30.3952 13.5386C30.0973 13.6529 29.8569 13.8807 29.7267 14.172C29.5965 14.4634 29.5873 14.7944 29.7009 15.0926L29.7564 15.2376C29.4443 15.3459 29.085 15.4717 28.6813 15.614C26.8561 15.0965 25.0872 14.8005 22.974 14.6581C22.4126 14.6137 21.8556 14.7872 21.4187 15.1426L20.0763 16.209C19.3096 16.1848 18.3668 16.1552 17.2481 16.1202L15.2632 15.185L15.2985 15.0926C15.4121 14.7944 15.4028 14.4634 15.2726 14.1721C15.1425 13.8808 14.9021 13.653 14.6042 13.5387L10.1309 11.8281C9.83281 11.7145 9.5018 11.7238 9.21051 11.8539C8.91922 11.9841 8.69144 12.2244 8.57713 12.5223L5.07897 21.6698C4.96536 21.968 4.97465 22.299 5.10478 22.5903C5.23492 22.8816 5.47529 23.1094 5.77316 23.2237ZM13.9237 26.699C13.8092 26.598 13.7393 26.4557 13.7296 26.3034C13.7198 26.151 13.7709 26.001 13.8716 25.8862L14.7803 24.8527C14.8815 24.7396 15.0234 24.671 15.1749 24.662C15.3265 24.6529 15.4755 24.704 15.5895 24.8042C15.7036 24.9044 15.7735 25.0456 15.7839 25.1971C15.7944 25.3486 15.7447 25.498 15.6455 25.613L14.7363 26.6468C14.635 26.7607 14.4928 26.83 14.3407 26.8397C14.1885 26.8495 14.0387 26.7989 13.9237 26.6988L13.9237 26.699ZM15.6101 28.1818C15.4956 28.0809 15.4257 27.9387 15.4159 27.7864C15.4061 27.6341 15.4571 27.4841 15.5576 27.3693L16.9638 25.7702C17.065 25.6566 17.207 25.5876 17.3588 25.5783C17.5106 25.569 17.66 25.6202 17.7742 25.7206C17.8885 25.8211 17.9584 25.9626 17.9686 26.1144C17.9788 26.2662 17.9286 26.4159 17.8288 26.5307L17.4425 26.9702L17.442 26.9707L16.4227 28.1299C16.3217 28.2443 16.1794 28.3141 16.0271 28.3238C15.8748 28.3336 15.7248 28.2825 15.6101 28.1818ZM17.2964 29.6647C17.1819 29.5637 17.1121 29.4214 17.1023 29.2691C17.0925 29.1167 17.1436 28.9667 17.2443 28.8519L18.2637 27.6925C18.3649 27.5792 18.5068 27.5105 18.6585 27.5013C18.8102 27.4922 18.9594 27.5434 19.0735 27.6438C19.1876 27.7441 19.2574 27.8855 19.2678 28.0372C19.2781 28.1888 19.228 28.3383 19.1285 28.4532L18.5946 29.0605L18.1092 29.6124C18.0083 29.7269 17.866 29.7968 17.7136 29.8066C17.5613 29.8164 17.4112 29.7654 17.2964 29.6647ZM19.7956 31.0952C19.6942 31.208 19.5524 31.2761 19.4011 31.285C19.2497 31.2939 19.101 31.2427 18.9871 31.1426C18.8732 31.0424 18.8034 30.9015 18.7929 30.7502C18.7823 30.599 18.8318 30.4497 18.9306 30.3347L19.416 29.7829C19.5171 29.6692 19.6591 29.6003 19.811 29.591C19.9628 29.5817 20.1122 29.6329 20.2264 29.7333C20.3407 29.8338 20.4105 29.9753 20.4208 30.1271C20.431 30.2789 20.3807 30.4286 20.281 30.5434L19.7956 31.0952ZM30.7252 14.6182C30.7309 14.605 30.7392 14.593 30.7496 14.5831C30.76 14.5731 30.7723 14.5654 30.7857 14.5603L35.259 12.8496C35.2712 12.8451 35.2841 12.8428 35.297 12.8428C35.3194 12.8428 35.3412 12.8495 35.3596 12.862C35.3781 12.8745 35.3924 12.8923 35.4007 12.9131L38.8991 22.0604C38.9091 22.0877 38.908 22.1177 38.8962 22.1441C38.8844 22.1706 38.8627 22.1914 38.8358 22.2021L34.3625 23.9127C34.3353 23.9227 34.3053 23.9217 34.2788 23.9099C34.2524 23.8981 34.2316 23.8764 34.2208 23.8495L30.7225 14.7019C30.7173 14.6885 30.7149 14.6741 30.7154 14.6598C30.7159 14.6454 30.7192 14.6312 30.7252 14.6182ZM22.099 15.999C22.3227 15.8133 22.6107 15.7235 22.9003 15.7494C24.9973 15.891 26.7385 16.1882 28.5459 16.7133C28.6556 16.7452 28.7726 16.7418 28.8803 16.7038C29.3641 16.5329 29.7882 16.3846 30.1472 16.26L32.7025 22.9421C32.1719 23.1695 31.711 23.5332 31.3664 23.9963C30.7762 24.7563 30.21 25.3178 29.678 25.6722L23.3532 19.7119C23.1925 19.5604 23.0016 19.4445 22.7931 19.3717C22.5845 19.2989 22.363 19.2709 22.1429 19.2894C21.9228 19.308 21.7091 19.3727 21.5157 19.4793C21.3223 19.586 21.1535 19.7322 21.0204 19.9084C20.8534 20.1319 20.7269 20.3829 20.6466 20.6501C20.64 20.6715 20.6348 20.6932 20.6309 20.7151C20.4069 21.9798 19.8599 22.7447 19.0907 22.8685C19.0383 22.8769 18.9874 22.8929 18.9396 22.916C18.8769 22.9463 18.8078 22.9612 18.7382 22.9593C18.6686 22.9575 18.6004 22.9391 18.5393 22.9055C18.4783 22.872 18.4262 22.8243 18.3873 22.7665C18.3484 22.7087 18.324 22.6424 18.3159 22.5732L18.3638 19.1913C18.3624 19.12 18.3781 19.0495 18.4096 18.9855C18.441 18.9215 18.4873 18.8659 18.5445 18.8234L22.099 15.999ZM16.8844 17.1581C16.9521 17.19 17.0256 17.2077 17.1004 17.21C17.7006 17.2288 18.251 17.2461 18.7515 17.2618L17.8642 17.9669C17.6804 18.1105 17.5315 18.2939 17.4287 18.5032C17.3259 18.7125 17.2717 18.9424 17.2703 19.1756L17.2221 22.5859C17.2219 22.6016 17.2223 22.6174 17.2235 22.6331C17.241 22.8752 17.3159 23.1097 17.4419 23.3172C17.568 23.5247 17.7416 23.6992 17.9484 23.8263C18.1552 23.9535 18.3893 24.0296 18.6313 24.0484C18.8733 24.0672 19.1164 24.0281 19.3403 23.9345C19.9644 23.8114 21.2764 23.2729 21.7016 20.9417C21.7445 20.8073 21.8092 20.6808 21.8933 20.5674C21.9338 20.5138 21.9852 20.4693 22.0441 20.4368C22.1029 20.4044 22.168 20.3847 22.235 20.379C22.302 20.3734 22.3694 20.3819 22.4328 20.4041C22.4963 20.4262 22.5544 20.4615 22.6033 20.5076L29.2273 26.7501C29.4785 26.9868 29.5163 27.3439 29.3153 27.5809C29.216 27.6966 29.0751 27.7685 28.9231 27.781C28.7711 27.7934 28.6204 27.7455 28.5035 27.6475L28.1474 27.3454L28.1463 27.3467C28.1293 27.3311 28.1121 27.3156 28.0947 27.3006L25.3478 24.9704C25.237 24.878 25.0942 24.8331 24.9505 24.8454C24.8067 24.8578 24.6737 24.9265 24.5804 25.0365C24.487 25.1465 24.441 25.2889 24.4522 25.4328C24.4634 25.5766 24.531 25.7102 24.6402 25.8044L27.3874 28.1347C27.4457 28.1834 27.4938 28.2432 27.5289 28.3106C27.564 28.378 27.5854 28.4517 27.5919 28.5274C27.5984 28.6031 27.5898 28.6793 27.5667 28.7517C27.5436 28.8241 27.5064 28.8912 27.4573 28.9492C27.4081 29.0071 27.348 29.0548 27.2803 29.0894C27.2126 29.124 27.1388 29.1448 27.0631 29.1508C26.9873 29.1567 26.9111 29.1476 26.8389 29.1239C26.7667 29.1003 26.6998 29.0626 26.6423 29.013L26.3089 28.7302L26.3075 28.7291L26.3046 28.7265L23.6565 26.4802C23.5457 26.3884 23.4031 26.344 23.2598 26.3567C23.1165 26.3693 22.9839 26.4379 22.8908 26.5476C22.7977 26.6574 22.7516 26.7994 22.7625 26.9428C22.7734 27.0863 22.8404 27.2197 22.949 27.3141L25.597 29.5604C25.6547 29.6094 25.7022 29.6692 25.7368 29.7364C25.7713 29.8037 25.7923 29.8771 25.7985 29.9525C25.8047 30.0279 25.796 30.1038 25.7728 30.1758C25.7497 30.2478 25.7126 30.3145 25.6637 30.3722C25.6148 30.4299 25.555 30.4774 25.4877 30.5119C25.4204 30.5465 25.347 30.5675 25.2716 30.5736C25.1962 30.5798 25.1204 30.5711 25.0484 30.548C24.9764 30.5249 24.9096 30.4878 24.8519 30.4388L24.7001 30.3101L24.6996 30.3095L22.2634 28.2429C22.1525 28.1512 22.01 28.1068 21.8666 28.1194C21.7233 28.1321 21.5907 28.2007 21.4976 28.3104C21.4045 28.4202 21.3584 28.5622 21.3693 28.7056C21.3802 28.8491 21.4472 28.9825 21.5558 29.0769L23.8901 31.0572L23.9921 31.1436C24.1065 31.2431 24.177 31.3836 24.1885 31.5347C24.2 31.6858 24.1514 31.8353 24.0534 31.9509C23.9554 32.0664 23.8157 32.1387 23.6648 32.152C23.5138 32.1653 23.3637 32.1185 23.247 32.0219L21.4784 30.5219C21.5116 30.369 21.5233 30.2123 21.5133 30.0562C21.4916 29.7101 21.3625 29.3794 21.144 29.1102C20.9255 28.841 20.6284 28.6467 20.2942 28.5544C20.3611 28.3331 20.3813 28.1004 20.3534 27.8709C20.3256 27.6415 20.2504 27.4203 20.1325 27.2215C20.0146 27.0227 19.8567 26.8505 19.6687 26.716C19.4808 26.5814 19.2669 26.4874 19.0407 26.44C19.0904 26.1578 19.0667 25.8677 18.9719 25.5973C18.8771 25.327 18.7144 25.0856 18.4994 24.8963L18.1381 25.307L18.4993 24.8963C18.2652 24.6908 17.9783 24.5549 17.671 24.5038C17.3637 24.4527 17.0483 24.4885 16.7603 24.6071C16.6537 24.343 16.4813 24.1105 16.2594 23.9318C16.0376 23.7532 15.7737 23.6343 15.4928 23.5865C15.212 23.5388 14.9237 23.5637 14.6552 23.6589C14.3868 23.7541 14.1471 23.9165 13.9592 24.1305L13.5855 24.5554C13.3245 24.208 13.0958 23.8375 12.9024 23.4485C12.852 23.349 12.7724 23.2673 12.6743 23.2144C12.5417 23.1427 12.409 23.0701 12.2762 22.9966L14.8717 16.2095L16.8844 17.1581ZM6.10026 22.0605L9.59869 12.9129C9.60694 12.8922 9.62122 12.8744 9.6397 12.8619C9.65818 12.8493 9.68 12.8426 9.70232 12.8427C9.7153 12.8426 9.72818 12.8449 9.74033 12.8495L14.2136 14.5601C14.2406 14.5708 14.2622 14.5916 14.274 14.6181C14.2859 14.6446 14.2869 14.6746 14.2769 14.7018L10.7788 23.8494C10.7681 23.8764 10.7473 23.8981 10.7209 23.91C10.6944 23.9218 10.6643 23.9228 10.6371 23.9128L6.16391 22.2022C6.13692 22.1915 6.11516 22.1707 6.10328 22.1443C6.09139 22.1178 6.0903 22.0878 6.10026 22.0605ZM22.4997 5C22.5715 5 22.6426 5.01415 22.709 5.04163C22.7753 5.06911 22.8356 5.10939 22.8864 5.16018C22.9372 5.21096 22.9774 5.27125 23.0049 5.33759C23.0324 5.40394 23.0466 5.47506 23.0466 5.54688V10.9746C23.0466 11.1196 22.9889 11.2587 22.8864 11.3613C22.7838 11.4639 22.6447 11.5215 22.4997 11.5215C22.3546 11.5215 22.2155 11.4639 22.113 11.3613C22.0104 11.2587 21.9528 11.1196 21.9528 10.9746V5.54688C21.9528 5.40183 22.0104 5.26273 22.113 5.16018C22.2155 5.05762 22.3546 5 22.4997 5ZM31.2511 7.34206C31.3767 7.41458 31.4684 7.53403 31.5059 7.67412C31.5434 7.81422 31.5238 7.96349 31.4513 8.08909L28.7368 12.7907C28.6637 12.9153 28.5444 13.0059 28.4048 13.0428C28.2652 13.0798 28.1166 13.0599 27.9916 12.9877C27.8665 12.9155 27.7751 12.7968 27.7372 12.6574C27.6994 12.5181 27.7182 12.3694 27.7896 12.2438L30.504 7.54222C30.5399 7.48002 30.5877 7.4255 30.6447 7.38177C30.7017 7.33805 30.7667 7.30598 30.8361 7.2874C30.9055 7.26881 30.9778 7.26407 31.049 7.27345C31.1203 7.28283 31.1889 7.30614 31.2511 7.34206ZM33.1955 29.3067C33.0698 29.2342 32.9782 29.1147 32.9406 28.9746C32.9031 28.8345 32.9227 28.6852 32.9953 28.5596C33.0678 28.434 33.1872 28.3423 33.3273 28.3048C33.4674 28.2673 33.6167 28.2869 33.7423 28.3594L37.4574 30.5043C37.583 30.5769 37.6747 30.6963 37.7122 30.8364C37.7498 30.9765 37.7301 31.1258 37.6576 31.2514C37.5851 31.377 37.4656 31.4687 37.3255 31.5062C37.1854 31.5438 37.0361 31.5241 36.9105 31.4516L33.1955 29.3067ZM31.4513 36.9108C31.4877 36.9731 31.5116 37.0419 31.5213 37.1133C31.5311 37.1848 31.5266 37.2575 31.5082 37.3272C31.4898 37.3969 31.4577 37.4623 31.4139 37.5196C31.3701 37.5769 31.3154 37.625 31.2529 37.661C31.1905 37.6971 31.1215 37.7204 31.05 37.7297C30.9785 37.739 30.9058 37.7341 30.8362 37.7152C30.7666 37.6963 30.7014 37.6638 30.6444 37.6196C30.5874 37.5754 30.5397 37.5204 30.5041 37.4577L28.3592 33.7427C28.3227 33.6804 28.2989 33.6116 28.2891 33.5402C28.2793 33.4687 28.2838 33.396 28.3022 33.3263C28.3207 33.2566 28.3527 33.1912 28.3965 33.1339C28.4403 33.0766 28.495 33.0285 28.5575 32.9925C28.62 32.9564 28.6889 32.9331 28.7605 32.9238C28.832 32.9145 28.9046 32.9194 28.9742 32.9383C29.0438 32.9572 29.109 32.9897 29.166 33.0339C29.223 33.0781 29.2707 33.1331 29.3064 33.1958L31.4513 36.9108ZM21.9528 39.4531V35.1641C21.9528 35.019 22.0104 34.8799 22.113 34.7774C22.2155 34.6748 22.3546 34.6172 22.4997 34.6172C22.6447 34.6172 22.7838 34.6748 22.8864 34.7774C22.9889 34.8799 23.0466 35.019 23.0466 35.1641V39.4531C23.0466 39.5982 22.9889 39.7373 22.8864 39.8398C22.7838 39.9424 22.6447 40 22.4997 40C22.3546 40 22.2155 39.9424 22.113 39.8398C22.0104 39.7373 21.9528 39.5982 21.9528 39.4531ZM14.0212 37.7313C13.9252 37.7312 13.831 37.7059 13.7479 37.6578C13.6649 37.6098 13.5959 37.5408 13.548 37.4576C13.5 37.3745 13.4748 37.2802 13.4748 37.1843C13.4748 37.0883 13.5001 36.9941 13.5481 36.911L15.693 33.1958C15.7289 33.1337 15.7767 33.0791 15.8337 33.0354C15.8907 32.9917 15.9557 32.9596 16.0251 32.941C16.0944 32.9224 16.1668 32.9177 16.238 32.9271C16.3092 32.9364 16.3779 32.9598 16.4401 32.9957C16.5023 33.0316 16.5568 33.0794 16.6005 33.1364C16.6442 33.1933 16.6763 33.2584 16.6949 33.3277C16.7135 33.3971 16.7182 33.4695 16.7088 33.5407C16.6995 33.6119 16.6762 33.6805 16.6403 33.7427L14.4953 37.4579C14.4473 37.5411 14.3782 37.6102 14.2949 37.6582C14.2117 37.7062 14.1173 37.7314 14.0212 37.7313ZM11.8039 29.3067L8.08884 31.4516C7.9633 31.523 7.81462 31.5418 7.67526 31.504C7.53589 31.4661 7.41715 31.3747 7.34494 31.2496C7.27273 31.1246 7.25292 30.976 7.28983 30.8364C7.32674 30.6968 7.41738 30.5774 7.54196 30.5044L11.257 28.3595C11.3192 28.323 11.3881 28.2992 11.4595 28.2894C11.531 28.2797 11.6037 28.2841 11.6734 28.3026C11.7431 28.321 11.8085 28.353 11.8658 28.3969C11.9231 28.4407 11.9711 28.4954 12.0072 28.5578C12.0433 28.6203 12.0666 28.6893 12.0759 28.7608C12.0852 28.8323 12.0803 28.905 12.0614 28.9746C12.0425 29.0442 12.01 29.1093 11.9658 29.1663C11.9216 29.2233 11.8666 29.271 11.8039 29.3067ZM14.4953 7.54228L17.2098 12.2438C17.2457 12.306 17.269 12.3747 17.2783 12.4459C17.2877 12.5171 17.283 12.5895 17.2644 12.6588C17.2458 12.7282 17.2137 12.7932 17.17 12.8502C17.1263 12.9072 17.0718 12.955 17.0096 12.9909C16.9474 13.0268 16.8787 13.0501 16.8075 13.0595C16.7363 13.0689 16.6639 13.0641 16.5946 13.0455C16.5252 13.0269 16.4602 12.9949 16.4032 12.9511C16.3462 12.9074 16.2984 12.8529 16.2625 12.7907L13.5481 8.08916C13.5116 8.02694 13.4878 7.95812 13.478 7.88667C13.4683 7.81521 13.4727 7.74253 13.4912 7.6728C13.5096 7.60307 13.5416 7.53768 13.5854 7.48039C13.6293 7.4231 13.684 7.37504 13.7464 7.33898C13.8089 7.30292 13.8779 7.27956 13.9494 7.27027C14.0209 7.26097 14.0935 7.26591 14.1632 7.28481C14.2328 7.30371 14.2979 7.33618 14.3549 7.38037C14.4119 7.42456 14.4596 7.47959 14.4953 7.54228Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_432_2516\">\\n<rect width=\"35\" height=\"35\" fill=\"white\" transform=\"translate(5 5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:227,width:\"400px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1502)-0-1754)/2+45+30),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9rd8j9-container\",layoutDependency:layoutDependency,layoutId:\"PTDormMJt-container\",children:/*#__PURE__*/_jsx(Row2,{height:\"100%\",id:\"PTDormMJt\",layoutId:\"PTDormMJt\",style:{width:\"100%\"},T8rQFvSBR:\"An unwavering belief that PARTNERSHIP and client collaboration is the cornerstone that underpins the longevity of our relationships.\",W88zB8mIG:\"Partnership\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vg8g80\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"cdjjB5lnK\",style:{backgroundColor:\"rgb(140, 140, 140)\"}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dvo0xr\",\"data-framer-name\":\"Frame 1000002592\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:45,layoutDependency:layoutDependency,layoutId:\"SsK2QlIRP\",svg:'<svg width=\"45\" height=\"45\" viewBox=\"0 0 45 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"45\" height=\"45\" rx=\"22.5\" fill=\"#C12A2E\"/>\\n<path d=\"M19.5811 12.376L19.0615 15.6641C19.0205 15.917 19.1299 16.1699 19.335 16.3271C19.54 16.4775 19.8203 16.498 20.0459 16.3818L23.0127 14.8711L25.9795 16.3818C26.0752 16.4297 26.1846 16.457 26.2871 16.457C26.4307 16.457 26.5674 16.416 26.6904 16.3271C26.8955 16.1768 27.0049 15.9238 26.9639 15.6641L26.4443 12.376L28.7959 10.0244C28.9805 9.83984 29.042 9.57324 28.96 9.32715C28.8779 9.08105 28.6729 8.90332 28.4199 8.8623L25.1318 8.34277L23.6211 5.37598C23.5049 5.15039 23.2725 5 23.0127 5C22.7529 5 22.5205 5.14355 22.4043 5.37598L20.8936 8.34277L17.6055 8.8623C17.3525 8.90332 17.1406 9.08105 17.0654 9.32715C16.9834 9.57324 17.0518 9.83984 17.2295 10.0244L19.5811 12.376ZM21.4473 9.63477C21.666 9.60059 21.8506 9.46387 21.9463 9.27246L23.0127 7.1875L24.0723 9.27246C24.1748 9.4707 24.3594 9.60059 24.5713 9.63477L26.8818 10.0039L25.2275 11.6582C25.0703 11.8154 25.002 12.0342 25.0361 12.2461L25.3984 14.5566L23.3203 13.4902C23.1221 13.3877 22.8965 13.3877 22.6982 13.4902L20.6133 14.5498L20.9756 12.2393C21.0098 12.0205 20.9414 11.8018 20.7842 11.6514L19.1299 9.99707L21.4473 9.63477ZM36.042 12.2871C35.96 12.041 35.7549 11.8633 35.502 11.8223L33.3145 11.4736L32.3096 9.50488C32.1934 9.2793 31.9609 9.12891 31.7012 9.12891C31.4414 9.12891 31.209 9.27246 31.0928 9.50488L30.0879 11.4736L27.9004 11.8223C27.6475 11.8633 27.4355 12.041 27.3604 12.2871C27.2783 12.5332 27.3467 12.7998 27.5244 12.9844L29.0898 14.5498L28.7412 16.7373C28.7002 16.9902 28.8096 17.2432 29.0146 17.4004C29.1309 17.4893 29.2744 17.5303 29.418 17.5303C29.5205 17.5303 29.6299 17.5029 29.7256 17.4551L31.6943 16.4502L33.6631 17.4551C33.8955 17.5713 34.1689 17.5508 34.374 17.4004C34.5791 17.25 34.6885 16.9971 34.6475 16.7373L34.2988 14.5498L35.8643 12.9844C36.0557 12.7998 36.124 12.5332 36.042 12.2871ZM33.0957 13.8252C32.9385 13.9824 32.8701 14.2012 32.9043 14.4131L33.0957 15.6162L32.0088 15.0625C31.8105 14.96 31.585 14.96 31.3867 15.0625L30.2998 15.6162L30.4912 14.4131C30.5254 14.1943 30.457 13.9756 30.2998 13.8252L29.4385 12.9639L30.6416 12.7725C30.8604 12.7383 31.0449 12.6016 31.1406 12.4102L31.6943 11.3232L32.248 12.4102C32.3506 12.6084 32.5352 12.7383 32.7471 12.7725L33.9502 12.9639L33.0957 13.8252ZM11.7061 14.543L11.3574 16.7305C11.3164 16.9834 11.4258 17.2363 11.6309 17.3936C11.7471 17.4824 11.8906 17.5234 12.0342 17.5234C12.1367 17.5234 12.2461 17.4961 12.3418 17.4482L14.3105 16.4434L16.2793 17.4482C16.5117 17.5645 16.7852 17.5439 16.9902 17.3936C17.1953 17.2432 17.3047 16.9902 17.2637 16.7305L16.915 14.543L18.4805 12.9775C18.665 12.793 18.7266 12.5264 18.6445 12.2803C18.5625 12.0342 18.3574 11.8564 18.1045 11.8154L15.917 11.4668L14.9121 9.49805C14.7959 9.27246 14.5635 9.12207 14.3037 9.12207C14.0439 9.12207 13.8115 9.26562 13.6953 9.49805L12.6904 11.4668L10.5029 11.8154C10.25 11.8564 10.0381 12.0342 9.96289 12.2803C9.88086 12.5264 9.94922 12.793 10.127 12.9775L11.7061 14.543ZM13.2646 12.7725C13.4834 12.7383 13.668 12.6016 13.7637 12.4102L14.3174 11.3232L14.8711 12.4102C14.9736 12.6084 15.1582 12.7383 15.3701 12.7725L16.5732 12.9639L15.7119 13.8252C15.5547 13.9824 15.4863 14.2012 15.5205 14.4131L15.7119 15.6162L14.625 15.0625C14.5293 15.0146 14.4199 14.9873 14.3174 14.9873C14.208 14.9873 14.1055 15.0146 14.0098 15.0625L12.9229 15.6162L13.1143 14.4131C13.1484 14.1943 13.0801 13.9756 12.9229 13.8252L12.0615 12.9639L13.2646 12.7725ZM33.499 29.1172C34.0254 28.4404 34.3672 27.5586 34.0186 26.7109C33.6016 25.6992 32.5967 25.0498 31.5029 25.0977C29.7119 24.9678 27.9141 24.9951 26.1299 25.166C26.7725 23.8398 26.9434 22.3291 26.6084 20.8525C26.6016 20.8252 26.5947 20.7979 26.5879 20.7705C26.2324 19.7861 25.624 18.7539 24.7832 17.708C24.0654 16.8125 22.8623 16.7373 21.9531 16.9629C21.7207 17.0039 21.5156 17.127 21.3652 17.3252C21.0166 17.7832 20.9004 18.6719 21.4541 21.5293C21.4814 21.6592 21.5088 21.8232 21.5156 21.8984C21.502 21.9326 21.4678 21.9941 21.4404 22.0488C21.3994 22.124 21.3447 22.2266 21.2832 22.3496C19.3691 26.1367 18.665 26.9912 18.4463 27.1826L18.248 27.2646V25.8564C18.248 25.4805 17.9404 25.1729 17.5645 25.1729H10.8516C9.78516 25.1729 8.92383 26.041 8.92383 27.1006V38.0654C8.92383 39.1318 9.79199 39.9932 10.8516 39.9932H17.5645C17.9404 39.9932 18.248 39.6855 18.248 39.3096V39.2617C18.7402 39.5488 19.2666 39.7881 19.8135 39.959C19.8818 39.9795 19.9502 39.9932 20.0186 39.9932H29.6436C29.7256 39.9932 29.8008 39.9795 29.876 39.9521C30.6963 39.6582 31.3525 39.0225 31.6738 38.209C31.8857 37.6758 31.9336 37.0947 31.8311 36.541C32.4053 36.3291 32.8975 35.9189 33.2119 35.3857C33.5947 34.7227 33.5332 33.916 33.3008 33.2393C34.0527 32.6787 34.4766 31.9746 34.5244 31.2227C34.5654 30.3818 34.0732 29.6641 33.499 29.1172ZM16.8809 38.6328H10.8516C10.5439 38.6328 10.291 38.3799 10.291 38.0723V27.1006C10.291 26.793 10.5439 26.54 10.8516 26.54H16.8809V38.6328ZM32.0977 32.3916C31.7695 32.5762 31.6533 32.9863 31.8379 33.3145C32.125 33.834 32.2002 34.4014 32.0225 34.7021C31.7969 35.0918 31.373 35.3379 30.9219 35.3447C30.6826 35.3516 30.4639 35.4746 30.3477 35.6797C30.2314 35.8848 30.2178 36.1377 30.3271 36.3428C30.5459 36.7666 30.5732 37.2656 30.4023 37.71C30.2383 38.1201 29.9238 38.4482 29.5205 38.626H20.1348C19.4512 38.3936 18.8223 38.0518 18.2549 37.6074V28.748L19.0615 28.4131C19.1094 28.3926 19.1504 28.3721 19.1914 28.3447C19.6289 28.0439 20.3945 27.1621 22.5137 22.9717C22.5684 22.8623 22.6162 22.7734 22.6572 22.7051C22.9512 22.165 22.9443 21.9805 22.8076 21.2764C22.4248 19.3281 22.4248 18.5488 22.459 18.2686C22.9307 18.1865 23.4639 18.248 23.7236 18.5762C24.4619 19.4854 24.9883 20.374 25.2959 21.208C25.6377 22.7598 25.2686 24.3594 24.2637 25.6035C24.0859 25.8223 24.0654 26.1299 24.2021 26.3691C24.3389 26.6152 24.6191 26.7451 24.8926 26.7041C27.0596 26.3896 29.2676 26.3076 31.4551 26.4717H31.5508C32.0771 26.4375 32.5625 26.7451 32.7676 27.2305C32.9316 27.627 32.5283 28.2627 32.0703 28.666C31.9131 28.8027 31.8242 29.001 31.8379 29.2129C31.8447 29.418 31.9473 29.6094 32.1182 29.7324C32.8018 30.2314 33.1914 30.7646 33.1709 31.1475C33.1162 31.7354 32.4805 32.1797 32.0977 32.3916ZM12.6426 30.2588C13.6133 30.2588 14.3994 29.4727 14.3994 28.502C14.3994 27.5312 13.6133 26.7451 12.6426 26.7451C11.6719 26.7451 10.8857 27.5312 10.8857 28.502C10.8857 29.4727 11.6719 30.2588 12.6426 30.2588ZM12.6426 28.1191C12.8545 28.1191 13.0322 28.29 13.0322 28.5088C13.0322 28.7275 12.8613 28.8984 12.6426 28.8984C12.4307 28.8984 12.2529 28.7275 12.2529 28.5088C12.2529 28.29 12.4307 28.1191 12.6426 28.1191Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:227,width:\"400px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1502)-0-1754)/2+318+120),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xgqmn3-container\",layoutDependency:layoutDependency,layoutId:\"zG61TfcEP-container\",children:/*#__PURE__*/_jsx(Row2,{height:\"100%\",id:\"zG61TfcEP\",layoutId:\"zG61TfcEP\",style:{width:\"100%\"},T8rQFvSBR:\"Deep EXPERIENCE and understanding across reputation management including corporate, brand, business, finance, government, event, media and digital expertise.\",W88zB8mIG:\"EXPERIENCE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t5acob\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"huY_GSkfd\",style:{backgroundColor:\"rgb(140, 140, 140)\"}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-170e6vg\",\"data-framer-name\":\"Frame 1000002558\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:45,layoutDependency:layoutDependency,layoutId:\"V3NmogmvJ\",svg:'<svg width=\"45\" height=\"45\" viewBox=\"0 0 45 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"45\" height=\"45\" rx=\"22.5\" fill=\"#C12A2E\"/>\\n<g clip-path=\"url(#clip0_432_2533)\">\\n<path d=\"M22.31 33.265V31.2465C22.31 31.1463 22.2824 31.048 22.2303 30.9624C22.1782 30.8767 22.1036 30.8071 22.0146 30.761C21.9256 30.7149 21.8257 30.6941 21.7257 30.701C21.6257 30.7078 21.5295 30.7421 21.4476 30.7999L15.6371 34.9031C15.5656 34.9536 15.5072 35.0206 15.467 35.0983C15.4267 35.176 15.4057 35.2623 15.4057 35.3498C15.4057 35.4374 15.4267 35.5236 15.467 35.6014C15.5072 35.6791 15.5656 35.746 15.6371 35.7965L21.4476 39.8999C21.5295 39.9577 21.6257 39.9919 21.7257 39.9988C21.8257 40.0056 21.9256 39.9849 22.0146 39.9388C22.1036 39.8927 22.1783 39.823 22.2303 39.7373C22.2824 39.6517 22.31 39.5534 22.31 39.4531V37.4353C22.3734 37.4361 22.4367 37.4365 22.5 37.4365C24.4615 37.4365 26.4038 37.0502 28.216 36.2996C30.0281 35.5489 31.6747 34.4487 33.0617 33.0617C34.4487 31.6748 35.5489 30.0282 36.2995 28.216C37.0502 26.4038 37.4365 24.4615 37.4365 22.5C37.4365 22.355 37.3789 22.2159 37.2763 22.1133C37.1738 22.0108 37.0347 21.9531 36.8896 21.9531H33.8135C33.6684 21.9531 33.5293 22.0108 33.4268 22.1133C33.3242 22.2159 33.2666 22.355 33.2666 22.5C33.2666 28.5 28.3346 33.3692 22.31 33.265ZM34.3479 23.0469H36.3321C36.044 30.4275 29.9498 36.3428 22.5 36.3428C22.2643 36.3428 22.0256 36.3368 21.7906 36.325C21.7166 36.3212 21.6426 36.3326 21.5731 36.3584C21.5036 36.3842 21.4401 36.4238 21.3864 36.4749C21.3327 36.526 21.2899 36.5874 21.2607 36.6556C21.2315 36.7237 21.2164 36.797 21.2164 36.8711V38.3975L16.9008 35.3499L21.2164 32.3022V33.7899C21.2164 33.9289 21.2693 34.0626 21.3644 34.164C21.4595 34.2653 21.5895 34.3267 21.7282 34.3356C21.9837 34.352 22.2434 34.3604 22.5002 34.3604C28.8566 34.3604 34.0613 29.334 34.3479 23.0469ZM8.11035 23.0469H11.1865C11.3316 23.0469 11.4707 22.9893 11.5732 22.8867C11.6758 22.7842 11.7334 22.6451 11.7334 22.5C11.7334 17.0344 15.8536 12.4471 21.2162 11.8092V13.7535C21.2162 13.8537 21.2438 13.9521 21.2958 14.0377C21.3479 14.1233 21.4225 14.193 21.5115 14.2391C21.6005 14.2852 21.7005 14.306 21.8005 14.2991C21.9005 14.2923 21.9967 14.2581 22.0786 14.2002L27.8891 10.0969C27.9606 10.0464 28.019 9.97947 28.0592 9.90174C28.0995 9.824 28.1205 9.73774 28.1205 9.6502C28.1205 9.56266 28.0995 9.4764 28.0592 9.39867C28.019 9.32094 27.9606 9.25401 27.8891 9.20351L22.0786 5.10017C21.9967 5.04235 21.9005 5.00814 21.8005 5.00128C21.7005 4.99442 21.6005 5.01518 21.5115 5.06129C21.4225 5.10739 21.3479 5.17707 21.2958 5.26271C21.2438 5.34836 21.2162 5.44666 21.2162 5.5469V7.61819C13.5193 8.27136 7.56348 14.7105 7.56348 22.5C7.56348 22.6451 7.62109 22.7842 7.72365 22.8867C7.82621 22.9893 7.96531 23.0469 8.11035 23.0469ZM21.7906 8.67509C21.9308 8.66808 22.0628 8.60747 22.1595 8.50581C22.2562 8.40415 22.3102 8.26921 22.3102 8.1289V6.60257L26.6258 9.65024L22.31 12.6978V11.2102C22.31 11.1354 22.2946 11.0614 22.2649 10.9928C22.2352 10.9242 22.1917 10.8624 22.1372 10.8113C22.0827 10.7601 22.0182 10.7207 21.9478 10.6954C21.8774 10.6702 21.8026 10.6596 21.728 10.6644C18.8166 10.8545 16.0775 12.111 14.0342 14.1935C11.9908 16.2761 10.7868 19.0387 10.6521 21.9531H8.66782C8.80047 18.5004 10.2211 15.2225 12.6499 12.765C15.0787 10.3074 18.3397 8.84833 21.7906 8.67509ZM22.5 15.1856C21.0533 15.1856 19.6392 15.6146 18.4363 16.4183C17.2335 17.222 16.2959 18.3644 15.7423 19.7009C15.1887 21.0374 15.0439 22.5081 15.3261 23.927C15.6083 25.3459 16.305 26.6492 17.3279 27.6721C18.3508 28.6951 19.6542 29.3917 21.073 29.6739C22.4919 29.9562 23.9626 29.8113 25.2991 29.2577C26.6357 28.7041 27.778 27.7666 28.5817 26.5637C29.3855 25.3609 29.8145 23.9467 29.8145 22.5C29.8123 20.5608 29.041 18.7016 27.6697 17.3303C26.2985 15.959 24.4393 15.1877 22.5 15.1856ZM22.5 28.7207C21.2697 28.7207 20.067 28.3559 19.044 27.6723C18.021 26.9888 17.2236 26.0173 16.7528 24.8806C16.282 23.7439 16.1588 22.4931 16.3988 21.2864C16.6389 20.0797 17.2313 18.9713 18.1013 18.1013C18.9713 17.2313 20.0797 16.6389 21.2864 16.3988C22.4931 16.1588 23.7439 16.282 24.8806 16.7528C26.0172 17.2237 26.9888 18.021 27.6723 19.044C28.3559 20.067 28.7207 21.2697 28.7207 22.5C28.7189 24.1493 28.0629 25.7305 26.8967 26.8967C25.7305 28.0629 24.1493 28.7189 22.5 28.7207ZM25.9273 20.2611C26.0298 20.3637 26.0874 20.5028 26.0874 20.6478C26.0874 20.7928 26.0298 20.9319 25.9273 21.0345L22.2227 24.7391C22.1719 24.7899 22.1116 24.8301 22.0452 24.8576C21.9789 24.8851 21.9078 24.8993 21.836 24.8993C21.7641 24.8993 21.693 24.8851 21.6267 24.8576C21.5603 24.8301 21.5 24.7899 21.4492 24.7391L19.0727 22.3626C18.9712 22.2598 18.9145 22.121 18.9149 21.9765C18.9154 21.8321 18.973 21.6937 19.0751 21.5915C19.1773 21.4894 19.3157 21.4318 19.4602 21.4314C19.6046 21.4309 19.7434 21.4877 19.8462 21.5892L21.836 23.579L25.1538 20.2611C25.2046 20.2103 25.2649 20.17 25.3313 20.1425C25.3976 20.1151 25.4687 20.1009 25.5405 20.1009C25.6124 20.1009 25.6835 20.115 25.7498 20.1425C25.8162 20.17 25.8765 20.2103 25.9273 20.261V20.2611Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_432_2533\">\\n<rect width=\"35\" height=\"35\" fill=\"white\" transform=\"translate(5 5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:227,width:\"400px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1502)-0-1754)/2+591+210),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z1ki9h-container\",layoutDependency:layoutDependency,layoutId:\"aUemiMxy5-container\",children:/*#__PURE__*/_jsx(Row2,{height:\"100%\",id:\"aUemiMxy5\",layoutId:\"aUemiMxy5\",style:{width:\"100%\"},T8rQFvSBR:\"Hands-on senior team bringing a wealth of PR and communications expertise, experience and proficiency spanning over 40 YEARS. Executive management remains involved on all accounts and every client can count on a senior resource throughout the duration of every project.\",W88zB8mIG:\"PROFICIENCY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xe0ba4\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"BGV6qsaa9\",style:{backgroundColor:\"rgb(140, 140, 140)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t7vzsk\",\"data-framer-name\":\"Frame 1000002558\",layoutDependency:layoutDependency,layoutId:\"ptipOQw4T\",style:{backgroundColor:\"rgb(193, 42, 46)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1502)-0-1754)/2+819+270)+8),src:\"https://framerusercontent.com/images/knbf95jXlLXnK3orMlNds6Yk0.png\"},className:\"framer-15xmjfk\",\"data-framer-name\":\"idea 1\",layoutDependency:layoutDependency,layoutId:\"iRsN221fi\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:227,width:\"400px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1502)-0-1754)/2+864+300),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hmli57-container\",layoutDependency:layoutDependency,layoutId:\"BWBTCz5GK-container\",children:/*#__PURE__*/_jsx(Row2,{height:\"100%\",id:\"BWBTCz5GK\",layoutId:\"BWBTCz5GK\",style:{width:\"100%\"},T8rQFvSBR:\"We are where you need us. GGi has an established, strategically positioned network of trusted affiliates and partners that we work closely with, on the African continent and in the rest of the world. This enables us to work on projects across the globe, apply international best practices, localise content where necessary and manage multinational campaigns through a centralised office and a single point of contact.\",W88zB8mIG:\"REACH\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w92xm1\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"u29WAOofC\",style:{backgroundColor:\"rgb(140, 140, 140)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-etfza4\",\"data-framer-name\":\"Frame 1000002558\",layoutDependency:layoutDependency,layoutId:\"kyA8DGltP\",style:{backgroundColor:\"rgb(193, 42, 46)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1502)-0-1754)/2+1092+360)+8),src:\"https://framerusercontent.com/images/knbf95jXlLXnK3orMlNds6Yk0.png\"},className:\"framer-1rahg4a\",\"data-framer-name\":\"idea 1\",layoutDependency:layoutDependency,layoutId:\"Nj5OwvC7L\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1m8dd69\",\"data-framer-name\":\"Frame 1000002558\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:45,layoutDependency:layoutDependency,layoutId:\"H4134IGnN\",svg:'<svg width=\"45\" height=\"45\" viewBox=\"0 0 45 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"45\" height=\"45\" rx=\"22.5\" fill=\"#C12A2E\"/>\\n<g clip-path=\"url(#clip0_432_2555)\">\\n<path d=\"M7.67285 19.5762L29.1514 7.6031L27.2741 7.07331C27.205 7.0538 27.1404 7.02086 27.084 6.97637C27.0276 6.93189 26.9806 6.87673 26.9455 6.81406C26.9104 6.75138 26.888 6.68241 26.8796 6.61108C26.8712 6.53975 26.8769 6.46745 26.8964 6.39833C26.9159 6.32921 26.9489 6.26461 26.9933 6.20821C27.0378 6.15182 27.093 6.10474 27.1557 6.06966C27.2183 6.03458 27.2873 6.01219 27.3586 6.00377C27.43 5.99535 27.5023 6.00106 27.5714 6.02058L30.7313 6.91267C30.8004 6.93218 30.865 6.96511 30.9214 7.00958C30.9778 7.05406 31.0249 7.10921 31.06 7.17188C31.095 7.23455 31.1174 7.30352 31.1258 7.37485C31.1343 7.44617 31.1286 7.51846 31.109 7.58758L30.217 10.7475C30.1775 10.8871 30.0843 11.0053 29.9577 11.0762C29.8311 11.147 29.6816 11.1647 29.542 11.1253C29.4024 11.0859 29.2842 10.9926 29.2133 10.866C29.1425 10.7395 29.1248 10.5899 29.1642 10.4503L29.7011 8.54858L8.20544 20.5314C8.14265 20.5677 8.07328 20.591 8.00137 20.6002C7.92946 20.6094 7.85644 20.6042 7.78656 20.5849C7.71668 20.5656 7.65133 20.5326 7.59432 20.4878C7.53731 20.4431 7.48977 20.3874 7.45446 20.3241C7.41916 20.2608 7.3968 20.1911 7.38867 20.119C7.38055 20.047 7.38684 19.974 7.40716 19.9045C7.42748 19.8349 7.46143 19.77 7.50705 19.7137C7.55266 19.6573 7.60902 19.6106 7.67285 19.5762ZM30.9898 29.1127V30.9581C31.962 31.1811 32.684 31.9846 32.684 32.9392C32.684 33.8938 31.962 34.6973 30.9898 34.9204V35.3074C30.9898 35.4525 30.9322 35.5916 30.8296 35.6941C30.7271 35.7967 30.588 35.8543 30.4429 35.8543C30.2979 35.8543 30.1588 35.7967 30.0562 35.6941C29.9537 35.5916 29.8961 35.4525 29.8961 35.3074V34.9204C28.924 34.6973 28.2021 33.8938 28.2021 32.9392C28.2021 32.7942 28.2597 32.6551 28.3622 32.5525C28.4648 32.4499 28.6039 32.3923 28.7489 32.3923C28.894 32.3923 29.0331 32.4499 29.1356 32.5525C29.2382 32.6551 29.2958 32.7942 29.2958 32.9392C29.2958 33.2988 29.5388 33.6124 29.8961 33.7732V31.9281C28.924 31.705 28.2021 30.9015 28.2021 29.947C28.2021 28.9925 28.924 28.1889 29.8961 27.9658V27.5788C29.8961 27.4338 29.9537 27.2947 30.0562 27.1921C30.1588 27.0895 30.2979 27.0319 30.4429 27.0319C30.588 27.0319 30.7271 27.0895 30.8296 27.1921C30.9322 27.2947 30.9898 27.4338 30.9898 27.5788V27.9658C31.962 28.1889 32.684 28.9924 32.684 29.947C32.684 30.092 32.6264 30.2311 32.5238 30.3337C32.4212 30.4362 32.2821 30.4938 32.1371 30.4938C31.9921 30.4938 31.853 30.4362 31.7504 30.3337C31.6478 30.2311 31.5902 30.092 31.5902 29.947C31.5902 29.5873 31.3471 29.2737 30.9898 29.1127ZM29.8961 30.7812V29.1127C29.5388 29.2737 29.2958 29.5873 29.2958 29.9467C29.2958 30.3061 29.5388 30.6201 29.8961 30.7812ZM30.9898 32.1049V33.7734C31.3471 33.6124 31.5902 33.2988 31.5902 32.9394C31.5902 32.58 31.3471 32.2659 30.9898 32.1049ZM36.0484 31.443C36.0484 32.5517 35.7197 33.6354 35.1037 34.5572C34.4878 35.4791 33.6123 36.1975 32.5881 36.6218C31.5638 37.0461 30.4367 37.1571 29.3494 36.9408C28.262 36.7245 27.2632 36.1906 26.4793 35.4067C25.6953 34.6227 25.1615 33.6239 24.9452 32.5366C24.7289 31.4492 24.8399 30.3222 25.2642 29.2979C25.6884 28.2736 26.4069 27.3982 27.3287 26.7822C28.2505 26.1663 29.3343 25.8375 30.4429 25.8375C31.9291 25.8392 33.3538 26.4304 34.4047 27.4812C35.4555 28.5321 36.0465 29.9569 36.0481 31.443H36.0484ZM34.9547 31.443C34.9547 30.5507 34.6901 29.6784 34.1943 28.9364C33.6986 28.1945 32.9939 27.6162 32.1695 27.2747C31.3451 26.9333 30.4379 26.8439 29.5628 27.018C28.6876 27.1921 27.8837 27.6218 27.2527 28.2528C26.6217 28.8837 26.192 29.6876 26.0179 30.5628C25.8438 31.438 25.9332 32.3452 26.2747 33.1696C26.6161 33.994 27.1944 34.6986 27.9364 35.1944C28.6783 35.6901 29.5506 35.9547 30.4429 35.9547C31.6391 35.9534 32.7858 35.4776 33.6316 34.6318C34.4774 33.7859 34.9531 32.6392 34.9544 31.443H34.9547ZM40 30.104V32.8007C40.0001 32.9627 39.9462 33.12 39.8468 33.2479C39.7474 33.3757 39.6082 33.4668 39.4512 33.5067L38.1907 33.8279C38.039 34.3208 37.8405 34.798 37.5977 35.253L38.259 36.3672C38.3416 36.5064 38.3755 36.6691 38.3553 36.8297C38.3351 36.9903 38.262 37.1396 38.1475 37.254L36.2409 39.1612C36.1264 39.2758 35.977 39.349 35.8163 39.3692C35.6556 39.3893 35.4928 39.3553 35.3536 39.2724L34.2346 38.6075C33.7789 38.8491 33.3012 39.0465 32.8078 39.1969L32.4879 40.4513C32.448 40.6082 32.3569 40.7474 32.2291 40.8468C32.1012 40.9462 31.9439 41.0001 31.782 41.0001H29.0854C28.9235 41.0001 28.7663 40.9463 28.6384 40.847C28.5106 40.7477 28.4195 40.6086 28.3795 40.4518L28.0582 39.1908C27.5653 39.0392 27.0881 38.8406 26.6331 38.5977L25.5193 39.259C25.3801 39.3417 25.2172 39.3757 25.0565 39.3555C24.8958 39.3353 24.7465 39.2621 24.6321 39.1474L22.7256 37.2409C22.6111 37.1265 22.5379 36.9772 22.5178 36.8166C22.4976 36.656 22.5315 36.4932 22.6141 36.354L23.2787 35.2346C23.0546 34.8118 22.8687 34.3699 22.723 33.9141H5.54688C5.40183 33.9141 5.26273 33.8565 5.16018 33.7539C5.05762 33.6513 5 33.5122 5 33.3672V29.8069C5 29.6619 5.05762 29.5228 5.16018 29.4202C5.26273 29.3176 5.40183 29.26 5.54688 29.26H7.41691V23.9034C7.41691 23.7583 7.47453 23.6192 7.57709 23.5167C7.67965 23.4141 7.81875 23.3565 7.96379 23.3565H11.5241C11.6691 23.3565 11.8082 23.4141 11.9108 23.5167C12.0133 23.6192 12.071 23.7583 12.071 23.9034V29.26H14.0431V19.8517C14.0431 19.7067 14.1007 19.5676 14.2033 19.465C14.3059 19.3625 14.445 19.3049 14.59 19.3049H18.1503C18.2953 19.3049 18.4344 19.3625 18.537 19.465C18.6396 19.5676 18.6972 19.7067 18.6972 19.8517V29.26H20.6693V15.9109C20.6693 15.7659 20.727 15.6268 20.8295 15.5243C20.9321 15.4217 21.0712 15.3641 21.2162 15.3641H24.7764C24.9214 15.3641 25.0605 15.4217 25.1631 15.5243C25.2656 15.6268 25.3232 15.7659 25.3232 15.9109V23.5308C25.3967 23.5475 25.467 23.5755 25.5319 23.6138L26.6513 24.2783C26.8615 24.1669 27.0762 24.0651 27.2953 23.973V12.8582C27.2953 12.7132 27.3529 12.5741 27.4555 12.4715C27.558 12.369 27.6971 12.3113 27.8421 12.3113H31.4025C31.5475 12.3113 31.6866 12.369 31.7892 12.4715C31.8918 12.5741 31.9494 12.7132 31.9494 12.8582V21.9022C32.0827 21.9299 32.2056 21.9945 32.3041 22.0886C32.4026 22.1827 32.4726 22.3025 32.5064 22.4345L32.8277 23.6954C33.3205 23.8472 33.7977 24.0458 34.2526 24.2885L35.3669 23.6273C35.506 23.5445 35.6688 23.5105 35.8295 23.5307C35.9901 23.5508 36.1395 23.624 36.2539 23.7385L38.1611 25.6452C38.2756 25.7596 38.3487 25.9089 38.3689 26.0695C38.3891 26.2301 38.3552 26.3929 38.2726 26.5321L37.6074 27.6515C37.849 28.1071 38.0464 28.5849 38.1968 29.0782L39.4512 29.398C39.6082 29.4379 39.7474 29.529 39.8468 29.6568C39.9462 29.7847 40.0001 29.942 40 30.104ZM28.3892 13.4051V22.4691L28.398 22.4349C28.4379 22.278 28.529 22.1389 28.6569 22.0396C28.7847 21.9402 28.942 21.8863 29.1039 21.8864H30.8558V13.4051H28.3892ZM21.7631 29.26H21.9032L22.6952 29.058C22.8469 28.5652 23.0455 28.088 23.2883 27.633L22.6271 26.5188C22.5443 26.3796 22.5103 26.2168 22.5305 26.0562C22.5506 25.8955 22.6238 25.7462 22.7383 25.6318L24.2295 24.1407V16.4578H21.7631V29.26ZM15.1369 29.26H17.6034V20.3986H15.1369V29.26ZM8.51066 29.26H10.9772V24.4503H8.51066V29.26ZM6.09375 32.8203H20.8876C20.8869 32.8075 20.886 32.795 20.886 32.782V30.3538H6.09375V32.8203ZM38.9062 30.3878L37.6216 30.0602C37.5269 30.036 37.4403 29.9869 37.371 29.918C37.3017 29.8491 37.2522 29.7629 37.2275 29.6683C37.0673 29.0548 36.8241 28.466 36.5046 27.9183C36.4555 27.834 36.4298 27.7382 36.4302 27.6407C36.4305 27.5432 36.457 27.4475 36.5068 27.3637L37.1868 26.2182L35.6813 24.7127L34.5403 25.39C34.4563 25.4399 34.3604 25.4663 34.2626 25.4666C34.1649 25.4669 34.0688 25.4409 33.9845 25.3914C33.4376 25.0705 32.8494 24.8257 32.2363 24.6638C32.142 24.639 32.0561 24.5894 31.9875 24.5201C31.9188 24.4509 31.8699 24.3646 31.8458 24.2701L31.5166 22.9798H29.3878L29.0602 24.2645C29.036 24.3592 28.9869 24.4456 28.918 24.5149C28.8491 24.5842 28.7628 24.6338 28.6683 24.6584C28.0547 24.8187 27.4658 25.0619 26.9179 25.3814C26.8337 25.4305 26.7378 25.4562 26.6403 25.4558C26.5428 25.4554 26.4472 25.429 26.3633 25.3792L25.2179 24.6992L23.7124 26.2047L24.3897 27.3458C24.4395 27.4298 24.466 27.5257 24.4662 27.6234C24.4665 27.7212 24.4405 27.8172 24.3911 27.9015C24.0702 28.4485 23.8254 29.0366 23.6635 29.6497C23.6387 29.744 23.5891 29.8299 23.5199 29.8986C23.4506 29.9672 23.3643 30.0161 23.2699 30.0402L21.9798 30.3692V32.4983L23.2644 32.8259C23.3536 32.8488 23.4355 32.8939 23.5026 32.957C23.5697 33.0201 23.6197 33.0991 23.648 33.1867C23.651 33.1951 23.6539 33.2034 23.6564 33.2119C23.657 33.2139 23.6579 33.2157 23.6583 33.2177C23.8186 33.8313 24.0619 34.4202 24.3814 34.9681C24.4305 35.0523 24.4562 35.1482 24.4558 35.2457C24.4554 35.3432 24.429 35.4389 24.3792 35.5227L23.6992 36.6681L25.2048 38.1736L26.3456 37.4964C26.4297 37.4465 26.5256 37.42 26.6234 37.4198C26.7211 37.4195 26.8172 37.4455 26.9015 37.4949C27.4484 37.8159 28.0366 38.0607 28.6497 38.2226C28.744 38.2474 28.8299 38.297 28.8986 38.3662C28.9672 38.4355 29.0161 38.5218 29.0402 38.6162L29.3692 39.9063H31.4982L31.8259 38.6216C31.85 38.5269 31.8991 38.4404 31.968 38.3712C32.0369 38.3019 32.1231 38.2523 32.2177 38.2276C32.8313 38.0674 33.4202 37.8242 33.9681 37.5047C34.0523 37.4555 34.1482 37.4298 34.2457 37.4302C34.3432 37.4306 34.4389 37.4571 34.5227 37.5068L35.6681 38.1868L37.1736 36.6813L36.4964 35.5404C36.4465 35.4563 36.42 35.3604 36.4198 35.2627C36.4195 35.1649 36.4455 35.0689 36.4949 34.9846C36.8158 34.4376 37.0606 33.8494 37.2225 33.2363C37.2474 33.142 37.297 33.0561 37.3662 32.9875C37.4354 32.9189 37.5217 32.87 37.6162 32.8459L38.9062 32.5167V30.3878Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_432_2555\">\\n<rect width=\"35\" height=\"35\" fill=\"white\" transform=\"translate(5 6)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:227,width:\"400px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1502)-0-1754)/2+1137+390),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ka4goz-container\",layoutDependency:layoutDependency,layoutId:\"PC1BA0c6Q-container\",children:/*#__PURE__*/_jsx(Row2,{height:\"100%\",id:\"PC1BA0c6Q\",layoutId:\"PC1BA0c6Q\",style:{width:\"100%\"},T8rQFvSBR:\"We DELIVER WHAT WE PROMISE, measure what we deliver.\",W88zB8mIG:\"ROI\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rAF4t.framer-g8hhs2, .framer-rAF4t .framer-g8hhs2 { display: block; }\",\".framer-rAF4t.framer-1tlpj7h { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 649px; }\",\".framer-rAF4t .framer-1but31i, .framer-rAF4t .framer-dvo0xr, .framer-rAF4t .framer-170e6vg { flex: none; height: 45px; position: relative; width: 45px; }\",\".framer-rAF4t .framer-9rd8j9-container, .framer-rAF4t .framer-1xgqmn3-container, .framer-rAF4t .framer-z1ki9h-container, .framer-rAF4t .framer-hmli57-container, .framer-rAF4t .framer-ka4goz-container { flex: none; height: auto; position: relative; width: 400px; }\",\".framer-rAF4t .framer-1vg8g80, .framer-rAF4t .framer-t5acob, .framer-rAF4t .framer-xe0ba4, .framer-rAF4t .framer-w92xm1 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-rAF4t .framer-1t7vzsk, .framer-rAF4t .framer-etfza4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); overflow: hidden; position: relative; width: 45px; will-change: var(--framer-will-change-override, transform); }\",\".framer-rAF4t .framer-15xmjfk, .framer-rAF4t .framer-1rahg4a { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); left: 51%; position: absolute; top: 51%; width: 30px; }\",\".framer-rAF4t .framer-1m8dd69 { flex: none; height: 45px; left: 0px; position: absolute; top: 0px; width: 45px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rAF4t.framer-1tlpj7h { gap: 0px; } .framer-rAF4t.framer-1tlpj7h > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-rAF4t.framer-1tlpj7h > :first-child { margin-top: 0px; } .framer-rAF4t.framer-1tlpj7h > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1502\n * @framerIntrinsicWidth 649\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerECQ1DAfqU=withCSS(Component,css,\"framer-rAF4t\");export default FramerECQ1DAfqU;FramerECQ1DAfqU.displayName=\"Non-Accordian\";FramerECQ1DAfqU.defaultProps={height:1502,width:649};addFonts(FramerECQ1DAfqU,[{explicitInter:true,fonts:[]},...Row2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerECQ1DAfqU\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"649\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1502\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ECQ1DAfqU.map", "// Generated by Framer (78454af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Row from\"https://framerusercontent.com/modules/SrSBWOiqYdpfRhsEhk45/AvmwO06pDIO4eBtjMcsk/kN93oDC7p.js\";const RowFonts=getFonts(Row);const cycleOrder=[\"j2dWihEcH\"];const serializationHash=\"framer-jiNpZ\";const variantClassNames={j2dWihEcH:\"framer-v-1coikp2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"j2dWihEcH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1coikp2\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"j2dWihEcH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-kktqg4\",\"data-framer-name\":\"Frame 1000002558\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:45,layoutDependency:layoutDependency,layoutId:\"WXDTlFyYj\",svg:'<svg width=\"45\" height=\"45\" viewBox=\"0 0 45 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"45\" height=\"45\" rx=\"22.5\" fill=\"#C12A2E\"/>\\n<g clip-path=\"url(#clip0_432_2516)\">\\n<path d=\"M5.77316 23.2237L10.2464 24.9343C10.5445 25.048 10.8756 25.0387 11.1669 24.9086C11.4582 24.7784 11.686 24.5381 11.8003 24.2402L11.8816 24.0278C11.923 24.0505 11.9643 24.0736 12.0057 24.0962C12.2478 24.5635 12.5372 25.0047 12.8694 25.4129C12.7185 25.6662 12.6374 25.955 12.6344 26.2498C12.6313 26.5446 12.7065 26.835 12.8522 27.0914C12.9979 27.3477 13.2089 27.5608 13.4637 27.7091C13.7186 27.8574 14.0082 27.9354 14.303 27.9354C14.3126 27.9354 14.3223 27.9348 14.3319 27.9346C14.377 28.3426 14.5711 28.7196 14.8769 28.9934C15.1828 29.2671 15.5789 29.4183 15.9894 29.418C15.9992 29.418 16.009 29.4174 16.0188 29.4173C16.0634 29.8249 16.257 30.2018 16.5624 30.4755C16.8677 30.7492 17.2634 30.9006 17.6735 30.9005C17.684 30.9005 17.6945 30.8997 17.705 30.8995C17.7408 31.221 17.8692 31.5252 18.0746 31.775C18.28 32.0249 18.5536 32.2097 18.8621 32.3069C19.1706 32.4042 19.5007 32.4097 19.8123 32.3228C20.1239 32.2359 20.4035 32.0604 20.6171 31.8175L20.9153 31.4785L22.5393 32.8564C22.8395 33.1122 23.2212 33.2524 23.6156 33.2516C23.6621 33.2516 23.7088 33.2497 23.7558 33.2459C24.1591 33.2136 24.5369 33.0356 24.8184 32.745C25.1 32.4544 25.266 32.0711 25.2855 31.667C25.6764 31.6535 26.0501 31.5027 26.3409 31.2412C26.6318 30.9797 26.8213 30.6241 26.8762 30.2368C26.9219 30.2405 26.9677 30.2427 27.0134 30.2427C27.4065 30.2435 27.7871 30.1053 28.0882 29.8526C28.3892 29.6 28.5913 29.249 28.6586 28.8618C28.7296 28.8714 28.801 28.8765 28.8725 28.877C28.919 28.877 28.9657 28.8751 29.0127 28.8712C29.2797 28.8508 29.5378 28.7657 29.7646 28.6233C29.9915 28.481 30.1803 28.2856 30.3149 28.054C30.4494 27.8224 30.5256 27.5616 30.537 27.294C30.5483 27.0264 30.4944 26.7601 30.3799 26.518C30.9854 26.0961 31.5971 25.4837 32.236 24.6601C32.2395 24.6555 32.2429 24.651 32.2462 24.6464C32.4656 24.3504 32.7575 24.1159 33.0939 23.9655L33.1991 24.2405C33.2555 24.3881 33.3404 24.5232 33.4491 24.638C33.5577 24.7528 33.6879 24.8451 33.8322 24.9095C33.9765 24.974 34.1321 25.0094 34.2901 25.0137C34.4481 25.018 34.6054 24.9912 34.753 24.9347L39.2263 23.2241C39.5241 23.1097 39.7645 22.8819 39.8946 22.5906C40.0248 22.2993 40.0341 21.9683 39.9204 21.6701L36.4222 12.5223C36.3079 12.2244 36.0801 11.984 35.7888 11.8539C35.4975 11.7237 35.1665 11.7144 34.8683 11.8281L30.3952 13.5386C30.0973 13.6529 29.8569 13.8807 29.7267 14.172C29.5965 14.4634 29.5873 14.7944 29.7009 15.0926L29.7564 15.2376C29.4443 15.3459 29.085 15.4717 28.6813 15.614C26.8561 15.0965 25.0872 14.8005 22.974 14.6581C22.4126 14.6137 21.8556 14.7872 21.4187 15.1426L20.0763 16.209C19.3096 16.1848 18.3668 16.1552 17.2481 16.1202L15.2632 15.185L15.2985 15.0926C15.4121 14.7944 15.4028 14.4634 15.2726 14.1721C15.1425 13.8808 14.9021 13.653 14.6042 13.5387L10.1309 11.8281C9.83281 11.7145 9.5018 11.7238 9.21051 11.8539C8.91922 11.9841 8.69144 12.2244 8.57713 12.5223L5.07897 21.6698C4.96536 21.968 4.97465 22.299 5.10478 22.5903C5.23492 22.8816 5.47529 23.1094 5.77316 23.2237ZM13.9237 26.699C13.8092 26.598 13.7393 26.4557 13.7296 26.3034C13.7198 26.151 13.7709 26.001 13.8716 25.8862L14.7803 24.8527C14.8815 24.7396 15.0234 24.671 15.1749 24.662C15.3265 24.6529 15.4755 24.704 15.5895 24.8042C15.7036 24.9044 15.7735 25.0456 15.7839 25.1971C15.7944 25.3486 15.7447 25.498 15.6455 25.613L14.7363 26.6468C14.635 26.7607 14.4928 26.83 14.3407 26.8397C14.1885 26.8495 14.0387 26.7989 13.9237 26.6988L13.9237 26.699ZM15.6101 28.1818C15.4956 28.0809 15.4257 27.9387 15.4159 27.7864C15.4061 27.6341 15.4571 27.4841 15.5576 27.3693L16.9638 25.7702C17.065 25.6566 17.207 25.5876 17.3588 25.5783C17.5106 25.569 17.66 25.6202 17.7742 25.7206C17.8885 25.8211 17.9584 25.9626 17.9686 26.1144C17.9788 26.2662 17.9286 26.4159 17.8288 26.5307L17.4425 26.9702L17.442 26.9707L16.4227 28.1299C16.3217 28.2443 16.1794 28.3141 16.0271 28.3238C15.8748 28.3336 15.7248 28.2825 15.6101 28.1818ZM17.2964 29.6647C17.1819 29.5637 17.1121 29.4214 17.1023 29.2691C17.0925 29.1167 17.1436 28.9667 17.2443 28.8519L18.2637 27.6925C18.3649 27.5792 18.5068 27.5105 18.6585 27.5013C18.8102 27.4922 18.9594 27.5434 19.0735 27.6438C19.1876 27.7441 19.2574 27.8855 19.2678 28.0372C19.2781 28.1888 19.228 28.3383 19.1285 28.4532L18.5946 29.0605L18.1092 29.6124C18.0083 29.7269 17.866 29.7968 17.7136 29.8066C17.5613 29.8164 17.4112 29.7654 17.2964 29.6647ZM19.7956 31.0952C19.6942 31.208 19.5524 31.2761 19.4011 31.285C19.2497 31.2939 19.101 31.2427 18.9871 31.1426C18.8732 31.0424 18.8034 30.9015 18.7929 30.7502C18.7823 30.599 18.8318 30.4497 18.9306 30.3347L19.416 29.7829C19.5171 29.6692 19.6591 29.6003 19.811 29.591C19.9628 29.5817 20.1122 29.6329 20.2264 29.7333C20.3407 29.8338 20.4105 29.9753 20.4208 30.1271C20.431 30.2789 20.3807 30.4286 20.281 30.5434L19.7956 31.0952ZM30.7252 14.6182C30.7309 14.605 30.7392 14.593 30.7496 14.5831C30.76 14.5731 30.7723 14.5654 30.7857 14.5603L35.259 12.8496C35.2712 12.8451 35.2841 12.8428 35.297 12.8428C35.3194 12.8428 35.3412 12.8495 35.3596 12.862C35.3781 12.8745 35.3924 12.8923 35.4007 12.9131L38.8991 22.0604C38.9091 22.0877 38.908 22.1177 38.8962 22.1441C38.8844 22.1706 38.8627 22.1914 38.8358 22.2021L34.3625 23.9127C34.3353 23.9227 34.3053 23.9217 34.2788 23.9099C34.2524 23.8981 34.2316 23.8764 34.2208 23.8495L30.7225 14.7019C30.7173 14.6885 30.7149 14.6741 30.7154 14.6598C30.7159 14.6454 30.7192 14.6312 30.7252 14.6182ZM22.099 15.999C22.3227 15.8133 22.6107 15.7235 22.9003 15.7494C24.9973 15.891 26.7385 16.1882 28.5459 16.7133C28.6556 16.7452 28.7726 16.7418 28.8803 16.7038C29.3641 16.5329 29.7882 16.3846 30.1472 16.26L32.7025 22.9421C32.1719 23.1695 31.711 23.5332 31.3664 23.9963C30.7762 24.7563 30.21 25.3178 29.678 25.6722L23.3532 19.7119C23.1925 19.5604 23.0016 19.4445 22.7931 19.3717C22.5845 19.2989 22.363 19.2709 22.1429 19.2894C21.9228 19.308 21.7091 19.3727 21.5157 19.4793C21.3223 19.586 21.1535 19.7322 21.0204 19.9084C20.8534 20.1319 20.7269 20.3829 20.6466 20.6501C20.64 20.6715 20.6348 20.6932 20.6309 20.7151C20.4069 21.9798 19.8599 22.7447 19.0907 22.8685C19.0383 22.8769 18.9874 22.8929 18.9396 22.916C18.8769 22.9463 18.8078 22.9612 18.7382 22.9593C18.6686 22.9575 18.6004 22.9391 18.5393 22.9055C18.4783 22.872 18.4262 22.8243 18.3873 22.7665C18.3484 22.7087 18.324 22.6424 18.3159 22.5732L18.3638 19.1913C18.3624 19.12 18.3781 19.0495 18.4096 18.9855C18.441 18.9215 18.4873 18.8659 18.5445 18.8234L22.099 15.999ZM16.8844 17.1581C16.9521 17.19 17.0256 17.2077 17.1004 17.21C17.7006 17.2288 18.251 17.2461 18.7515 17.2618L17.8642 17.9669C17.6804 18.1105 17.5315 18.2939 17.4287 18.5032C17.3259 18.7125 17.2717 18.9424 17.2703 19.1756L17.2221 22.5859C17.2219 22.6016 17.2223 22.6174 17.2235 22.6331C17.241 22.8752 17.3159 23.1097 17.4419 23.3172C17.568 23.5247 17.7416 23.6992 17.9484 23.8263C18.1552 23.9535 18.3893 24.0296 18.6313 24.0484C18.8733 24.0672 19.1164 24.0281 19.3403 23.9345C19.9644 23.8114 21.2764 23.2729 21.7016 20.9417C21.7445 20.8073 21.8092 20.6808 21.8933 20.5674C21.9338 20.5138 21.9852 20.4693 22.0441 20.4368C22.1029 20.4044 22.168 20.3847 22.235 20.379C22.302 20.3734 22.3694 20.3819 22.4328 20.4041C22.4963 20.4262 22.5544 20.4615 22.6033 20.5076L29.2273 26.7501C29.4785 26.9868 29.5163 27.3439 29.3153 27.5809C29.216 27.6966 29.0751 27.7685 28.9231 27.781C28.7711 27.7934 28.6204 27.7455 28.5035 27.6475L28.1474 27.3454L28.1463 27.3467C28.1293 27.3311 28.1121 27.3156 28.0947 27.3006L25.3478 24.9704C25.237 24.878 25.0942 24.8331 24.9505 24.8454C24.8067 24.8578 24.6737 24.9265 24.5804 25.0365C24.487 25.1465 24.441 25.2889 24.4522 25.4328C24.4634 25.5766 24.531 25.7102 24.6402 25.8044L27.3874 28.1347C27.4457 28.1834 27.4938 28.2432 27.5289 28.3106C27.564 28.378 27.5854 28.4517 27.5919 28.5274C27.5984 28.6031 27.5898 28.6793 27.5667 28.7517C27.5436 28.8241 27.5064 28.8912 27.4573 28.9492C27.4081 29.0071 27.348 29.0548 27.2803 29.0894C27.2126 29.124 27.1388 29.1448 27.0631 29.1508C26.9873 29.1567 26.9111 29.1476 26.8389 29.1239C26.7667 29.1003 26.6998 29.0626 26.6423 29.013L26.3089 28.7302L26.3075 28.7291L26.3046 28.7265L23.6565 26.4802C23.5457 26.3884 23.4031 26.344 23.2598 26.3567C23.1165 26.3693 22.9839 26.4379 22.8908 26.5476C22.7977 26.6574 22.7516 26.7994 22.7625 26.9428C22.7734 27.0863 22.8404 27.2197 22.949 27.3141L25.597 29.5604C25.6547 29.6094 25.7022 29.6692 25.7368 29.7364C25.7713 29.8037 25.7923 29.8771 25.7985 29.9525C25.8047 30.0279 25.796 30.1038 25.7728 30.1758C25.7497 30.2478 25.7126 30.3145 25.6637 30.3722C25.6148 30.4299 25.555 30.4774 25.4877 30.5119C25.4204 30.5465 25.347 30.5675 25.2716 30.5736C25.1962 30.5798 25.1204 30.5711 25.0484 30.548C24.9764 30.5249 24.9096 30.4878 24.8519 30.4388L24.7001 30.3101L24.6996 30.3095L22.2634 28.2429C22.1525 28.1512 22.01 28.1068 21.8666 28.1194C21.7233 28.1321 21.5907 28.2007 21.4976 28.3104C21.4045 28.4202 21.3584 28.5622 21.3693 28.7056C21.3802 28.8491 21.4472 28.9825 21.5558 29.0769L23.8901 31.0572L23.9921 31.1436C24.1065 31.2431 24.177 31.3836 24.1885 31.5347C24.2 31.6858 24.1514 31.8353 24.0534 31.9509C23.9554 32.0664 23.8157 32.1387 23.6648 32.152C23.5138 32.1653 23.3637 32.1185 23.247 32.0219L21.4784 30.5219C21.5116 30.369 21.5233 30.2123 21.5133 30.0562C21.4916 29.7101 21.3625 29.3794 21.144 29.1102C20.9255 28.841 20.6284 28.6467 20.2942 28.5544C20.3611 28.3331 20.3813 28.1004 20.3534 27.8709C20.3256 27.6415 20.2504 27.4203 20.1325 27.2215C20.0146 27.0227 19.8567 26.8505 19.6687 26.716C19.4808 26.5814 19.2669 26.4874 19.0407 26.44C19.0904 26.1578 19.0667 25.8677 18.9719 25.5973C18.8771 25.327 18.7144 25.0856 18.4994 24.8963L18.1381 25.307L18.4993 24.8963C18.2652 24.6908 17.9783 24.5549 17.671 24.5038C17.3637 24.4527 17.0483 24.4885 16.7603 24.6071C16.6537 24.343 16.4813 24.1105 16.2594 23.9318C16.0376 23.7532 15.7737 23.6343 15.4928 23.5865C15.212 23.5388 14.9237 23.5637 14.6552 23.6589C14.3868 23.7541 14.1471 23.9165 13.9592 24.1305L13.5855 24.5554C13.3245 24.208 13.0958 23.8375 12.9024 23.4485C12.852 23.349 12.7724 23.2673 12.6743 23.2144C12.5417 23.1427 12.409 23.0701 12.2762 22.9966L14.8717 16.2095L16.8844 17.1581ZM6.10026 22.0605L9.59869 12.9129C9.60694 12.8922 9.62122 12.8744 9.6397 12.8619C9.65818 12.8493 9.68 12.8426 9.70232 12.8427C9.7153 12.8426 9.72818 12.8449 9.74033 12.8495L14.2136 14.5601C14.2406 14.5708 14.2622 14.5916 14.274 14.6181C14.2859 14.6446 14.2869 14.6746 14.2769 14.7018L10.7788 23.8494C10.7681 23.8764 10.7473 23.8981 10.7209 23.91C10.6944 23.9218 10.6643 23.9228 10.6371 23.9128L6.16391 22.2022C6.13692 22.1915 6.11516 22.1707 6.10328 22.1443C6.09139 22.1178 6.0903 22.0878 6.10026 22.0605ZM22.4997 5C22.5715 5 22.6426 5.01415 22.709 5.04163C22.7753 5.06911 22.8356 5.10939 22.8864 5.16018C22.9372 5.21096 22.9774 5.27125 23.0049 5.33759C23.0324 5.40394 23.0466 5.47506 23.0466 5.54688V10.9746C23.0466 11.1196 22.9889 11.2587 22.8864 11.3613C22.7838 11.4639 22.6447 11.5215 22.4997 11.5215C22.3546 11.5215 22.2155 11.4639 22.113 11.3613C22.0104 11.2587 21.9528 11.1196 21.9528 10.9746V5.54688C21.9528 5.40183 22.0104 5.26273 22.113 5.16018C22.2155 5.05762 22.3546 5 22.4997 5ZM31.2511 7.34206C31.3767 7.41458 31.4684 7.53403 31.5059 7.67412C31.5434 7.81422 31.5238 7.96349 31.4513 8.08909L28.7368 12.7907C28.6637 12.9153 28.5444 13.0059 28.4048 13.0428C28.2652 13.0798 28.1166 13.0599 27.9916 12.9877C27.8665 12.9155 27.7751 12.7968 27.7372 12.6574C27.6994 12.5181 27.7182 12.3694 27.7896 12.2438L30.504 7.54222C30.5399 7.48002 30.5877 7.4255 30.6447 7.38177C30.7017 7.33805 30.7667 7.30598 30.8361 7.2874C30.9055 7.26881 30.9778 7.26407 31.049 7.27345C31.1203 7.28283 31.1889 7.30614 31.2511 7.34206ZM33.1955 29.3067C33.0698 29.2342 32.9782 29.1147 32.9406 28.9746C32.9031 28.8345 32.9227 28.6852 32.9953 28.5596C33.0678 28.434 33.1872 28.3423 33.3273 28.3048C33.4674 28.2673 33.6167 28.2869 33.7423 28.3594L37.4574 30.5043C37.583 30.5769 37.6747 30.6963 37.7122 30.8364C37.7498 30.9765 37.7301 31.1258 37.6576 31.2514C37.5851 31.377 37.4656 31.4687 37.3255 31.5062C37.1854 31.5438 37.0361 31.5241 36.9105 31.4516L33.1955 29.3067ZM31.4513 36.9108C31.4877 36.9731 31.5116 37.0419 31.5213 37.1133C31.5311 37.1848 31.5266 37.2575 31.5082 37.3272C31.4898 37.3969 31.4577 37.4623 31.4139 37.5196C31.3701 37.5769 31.3154 37.625 31.2529 37.661C31.1905 37.6971 31.1215 37.7204 31.05 37.7297C30.9785 37.739 30.9058 37.7341 30.8362 37.7152C30.7666 37.6963 30.7014 37.6638 30.6444 37.6196C30.5874 37.5754 30.5397 37.5204 30.5041 37.4577L28.3592 33.7427C28.3227 33.6804 28.2989 33.6116 28.2891 33.5402C28.2793 33.4687 28.2838 33.396 28.3022 33.3263C28.3207 33.2566 28.3527 33.1912 28.3965 33.1339C28.4403 33.0766 28.495 33.0285 28.5575 32.9925C28.62 32.9564 28.6889 32.9331 28.7605 32.9238C28.832 32.9145 28.9046 32.9194 28.9742 32.9383C29.0438 32.9572 29.109 32.9897 29.166 33.0339C29.223 33.0781 29.2707 33.1331 29.3064 33.1958L31.4513 36.9108ZM21.9528 39.4531V35.1641C21.9528 35.019 22.0104 34.8799 22.113 34.7774C22.2155 34.6748 22.3546 34.6172 22.4997 34.6172C22.6447 34.6172 22.7838 34.6748 22.8864 34.7774C22.9889 34.8799 23.0466 35.019 23.0466 35.1641V39.4531C23.0466 39.5982 22.9889 39.7373 22.8864 39.8398C22.7838 39.9424 22.6447 40 22.4997 40C22.3546 40 22.2155 39.9424 22.113 39.8398C22.0104 39.7373 21.9528 39.5982 21.9528 39.4531ZM14.0212 37.7313C13.9252 37.7312 13.831 37.7059 13.7479 37.6578C13.6649 37.6098 13.5959 37.5408 13.548 37.4576C13.5 37.3745 13.4748 37.2802 13.4748 37.1843C13.4748 37.0883 13.5001 36.9941 13.5481 36.911L15.693 33.1958C15.7289 33.1337 15.7767 33.0791 15.8337 33.0354C15.8907 32.9917 15.9557 32.9596 16.0251 32.941C16.0944 32.9224 16.1668 32.9177 16.238 32.9271C16.3092 32.9364 16.3779 32.9598 16.4401 32.9957C16.5023 33.0316 16.5568 33.0794 16.6005 33.1364C16.6442 33.1933 16.6763 33.2584 16.6949 33.3277C16.7135 33.3971 16.7182 33.4695 16.7088 33.5407C16.6995 33.6119 16.6762 33.6805 16.6403 33.7427L14.4953 37.4579C14.4473 37.5411 14.3782 37.6102 14.2949 37.6582C14.2117 37.7062 14.1173 37.7314 14.0212 37.7313ZM11.8039 29.3067L8.08884 31.4516C7.9633 31.523 7.81462 31.5418 7.67526 31.504C7.53589 31.4661 7.41715 31.3747 7.34494 31.2496C7.27273 31.1246 7.25292 30.976 7.28983 30.8364C7.32674 30.6968 7.41738 30.5774 7.54196 30.5044L11.257 28.3595C11.3192 28.323 11.3881 28.2992 11.4595 28.2894C11.531 28.2797 11.6037 28.2841 11.6734 28.3026C11.7431 28.321 11.8085 28.353 11.8658 28.3969C11.9231 28.4407 11.9711 28.4954 12.0072 28.5578C12.0433 28.6203 12.0666 28.6893 12.0759 28.7608C12.0852 28.8323 12.0803 28.905 12.0614 28.9746C12.0425 29.0442 12.01 29.1093 11.9658 29.1663C11.9216 29.2233 11.8666 29.271 11.8039 29.3067ZM14.4953 7.54228L17.2098 12.2438C17.2457 12.306 17.269 12.3747 17.2783 12.4459C17.2877 12.5171 17.283 12.5895 17.2644 12.6588C17.2458 12.7282 17.2137 12.7932 17.17 12.8502C17.1263 12.9072 17.0718 12.955 17.0096 12.9909C16.9474 13.0268 16.8787 13.0501 16.8075 13.0595C16.7363 13.0689 16.6639 13.0641 16.5946 13.0455C16.5252 13.0269 16.4602 12.9949 16.4032 12.9511C16.3462 12.9074 16.2984 12.8529 16.2625 12.7907L13.5481 8.08916C13.5116 8.02694 13.4878 7.95812 13.478 7.88667C13.4683 7.81521 13.4727 7.74253 13.4912 7.6728C13.5096 7.60307 13.5416 7.53768 13.5854 7.48039C13.6293 7.4231 13.684 7.37504 13.7464 7.33898C13.8089 7.30292 13.8779 7.27956 13.9494 7.27027C14.0209 7.26097 14.0935 7.26591 14.1632 7.28481C14.2328 7.30371 14.2979 7.33618 14.3549 7.38037C14.4119 7.42456 14.4596 7.47959 14.4953 7.54228Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_432_2516\">\\n<rect width=\"35\" height=\"35\" fill=\"white\" transform=\"translate(5 5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3067cz-container\",layoutDependency:layoutDependency,layoutId:\"BAgo2bp1p-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"BAgo2bp1p\",layoutId:\"BAgo2bp1p\",style:{width:\"100%\"},T8rQFvSBR:\"An unwavering belief that PARTNERSHIP and client collaboration is the cornerstone that underpins the longevity of our relationships.\",variant:\"ghC_AFv5_\",W88zB8mIG:\"PARTNERSHIP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lm1l3g\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"bm4bEsV7L\",style:{backgroundColor:\"rgb(140, 140, 140)\"}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8wnrm7\",\"data-framer-name\":\"Frame 1000002592\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:45,layoutDependency:layoutDependency,layoutId:\"fds2DlZIH\",svg:'<svg width=\"45\" height=\"45\" viewBox=\"0 0 45 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"45\" height=\"45\" rx=\"22.5\" fill=\"#C12A2E\"/>\\n<path d=\"M19.5811 12.376L19.0615 15.6641C19.0205 15.917 19.1299 16.1699 19.335 16.3271C19.54 16.4775 19.8203 16.498 20.0459 16.3818L23.0127 14.8711L25.9795 16.3818C26.0752 16.4297 26.1846 16.457 26.2871 16.457C26.4307 16.457 26.5674 16.416 26.6904 16.3271C26.8955 16.1768 27.0049 15.9238 26.9639 15.6641L26.4443 12.376L28.7959 10.0244C28.9805 9.83984 29.042 9.57324 28.96 9.32715C28.8779 9.08105 28.6729 8.90332 28.4199 8.8623L25.1318 8.34277L23.6211 5.37598C23.5049 5.15039 23.2725 5 23.0127 5C22.7529 5 22.5205 5.14355 22.4043 5.37598L20.8936 8.34277L17.6055 8.8623C17.3525 8.90332 17.1406 9.08105 17.0654 9.32715C16.9834 9.57324 17.0518 9.83984 17.2295 10.0244L19.5811 12.376ZM21.4473 9.63477C21.666 9.60059 21.8506 9.46387 21.9463 9.27246L23.0127 7.1875L24.0723 9.27246C24.1748 9.4707 24.3594 9.60059 24.5713 9.63477L26.8818 10.0039L25.2275 11.6582C25.0703 11.8154 25.002 12.0342 25.0361 12.2461L25.3984 14.5566L23.3203 13.4902C23.1221 13.3877 22.8965 13.3877 22.6982 13.4902L20.6133 14.5498L20.9756 12.2393C21.0098 12.0205 20.9414 11.8018 20.7842 11.6514L19.1299 9.99707L21.4473 9.63477ZM36.042 12.2871C35.96 12.041 35.7549 11.8633 35.502 11.8223L33.3145 11.4736L32.3096 9.50488C32.1934 9.2793 31.9609 9.12891 31.7012 9.12891C31.4414 9.12891 31.209 9.27246 31.0928 9.50488L30.0879 11.4736L27.9004 11.8223C27.6475 11.8633 27.4355 12.041 27.3604 12.2871C27.2783 12.5332 27.3467 12.7998 27.5244 12.9844L29.0898 14.5498L28.7412 16.7373C28.7002 16.9902 28.8096 17.2432 29.0146 17.4004C29.1309 17.4893 29.2744 17.5303 29.418 17.5303C29.5205 17.5303 29.6299 17.5029 29.7256 17.4551L31.6943 16.4502L33.6631 17.4551C33.8955 17.5713 34.1689 17.5508 34.374 17.4004C34.5791 17.25 34.6885 16.9971 34.6475 16.7373L34.2988 14.5498L35.8643 12.9844C36.0557 12.7998 36.124 12.5332 36.042 12.2871ZM33.0957 13.8252C32.9385 13.9824 32.8701 14.2012 32.9043 14.4131L33.0957 15.6162L32.0088 15.0625C31.8105 14.96 31.585 14.96 31.3867 15.0625L30.2998 15.6162L30.4912 14.4131C30.5254 14.1943 30.457 13.9756 30.2998 13.8252L29.4385 12.9639L30.6416 12.7725C30.8604 12.7383 31.0449 12.6016 31.1406 12.4102L31.6943 11.3232L32.248 12.4102C32.3506 12.6084 32.5352 12.7383 32.7471 12.7725L33.9502 12.9639L33.0957 13.8252ZM11.7061 14.543L11.3574 16.7305C11.3164 16.9834 11.4258 17.2363 11.6309 17.3936C11.7471 17.4824 11.8906 17.5234 12.0342 17.5234C12.1367 17.5234 12.2461 17.4961 12.3418 17.4482L14.3105 16.4434L16.2793 17.4482C16.5117 17.5645 16.7852 17.5439 16.9902 17.3936C17.1953 17.2432 17.3047 16.9902 17.2637 16.7305L16.915 14.543L18.4805 12.9775C18.665 12.793 18.7266 12.5264 18.6445 12.2803C18.5625 12.0342 18.3574 11.8564 18.1045 11.8154L15.917 11.4668L14.9121 9.49805C14.7959 9.27246 14.5635 9.12207 14.3037 9.12207C14.0439 9.12207 13.8115 9.26562 13.6953 9.49805L12.6904 11.4668L10.5029 11.8154C10.25 11.8564 10.0381 12.0342 9.96289 12.2803C9.88086 12.5264 9.94922 12.793 10.127 12.9775L11.7061 14.543ZM13.2646 12.7725C13.4834 12.7383 13.668 12.6016 13.7637 12.4102L14.3174 11.3232L14.8711 12.4102C14.9736 12.6084 15.1582 12.7383 15.3701 12.7725L16.5732 12.9639L15.7119 13.8252C15.5547 13.9824 15.4863 14.2012 15.5205 14.4131L15.7119 15.6162L14.625 15.0625C14.5293 15.0146 14.4199 14.9873 14.3174 14.9873C14.208 14.9873 14.1055 15.0146 14.0098 15.0625L12.9229 15.6162L13.1143 14.4131C13.1484 14.1943 13.0801 13.9756 12.9229 13.8252L12.0615 12.9639L13.2646 12.7725ZM33.499 29.1172C34.0254 28.4404 34.3672 27.5586 34.0186 26.7109C33.6016 25.6992 32.5967 25.0498 31.5029 25.0977C29.7119 24.9678 27.9141 24.9951 26.1299 25.166C26.7725 23.8398 26.9434 22.3291 26.6084 20.8525C26.6016 20.8252 26.5947 20.7979 26.5879 20.7705C26.2324 19.7861 25.624 18.7539 24.7832 17.708C24.0654 16.8125 22.8623 16.7373 21.9531 16.9629C21.7207 17.0039 21.5156 17.127 21.3652 17.3252C21.0166 17.7832 20.9004 18.6719 21.4541 21.5293C21.4814 21.6592 21.5088 21.8232 21.5156 21.8984C21.502 21.9326 21.4678 21.9941 21.4404 22.0488C21.3994 22.124 21.3447 22.2266 21.2832 22.3496C19.3691 26.1367 18.665 26.9912 18.4463 27.1826L18.248 27.2646V25.8564C18.248 25.4805 17.9404 25.1729 17.5645 25.1729H10.8516C9.78516 25.1729 8.92383 26.041 8.92383 27.1006V38.0654C8.92383 39.1318 9.79199 39.9932 10.8516 39.9932H17.5645C17.9404 39.9932 18.248 39.6855 18.248 39.3096V39.2617C18.7402 39.5488 19.2666 39.7881 19.8135 39.959C19.8818 39.9795 19.9502 39.9932 20.0186 39.9932H29.6436C29.7256 39.9932 29.8008 39.9795 29.876 39.9521C30.6963 39.6582 31.3525 39.0225 31.6738 38.209C31.8857 37.6758 31.9336 37.0947 31.8311 36.541C32.4053 36.3291 32.8975 35.9189 33.2119 35.3857C33.5947 34.7227 33.5332 33.916 33.3008 33.2393C34.0527 32.6787 34.4766 31.9746 34.5244 31.2227C34.5654 30.3818 34.0732 29.6641 33.499 29.1172ZM16.8809 38.6328H10.8516C10.5439 38.6328 10.291 38.3799 10.291 38.0723V27.1006C10.291 26.793 10.5439 26.54 10.8516 26.54H16.8809V38.6328ZM32.0977 32.3916C31.7695 32.5762 31.6533 32.9863 31.8379 33.3145C32.125 33.834 32.2002 34.4014 32.0225 34.7021C31.7969 35.0918 31.373 35.3379 30.9219 35.3447C30.6826 35.3516 30.4639 35.4746 30.3477 35.6797C30.2314 35.8848 30.2178 36.1377 30.3271 36.3428C30.5459 36.7666 30.5732 37.2656 30.4023 37.71C30.2383 38.1201 29.9238 38.4482 29.5205 38.626H20.1348C19.4512 38.3936 18.8223 38.0518 18.2549 37.6074V28.748L19.0615 28.4131C19.1094 28.3926 19.1504 28.3721 19.1914 28.3447C19.6289 28.0439 20.3945 27.1621 22.5137 22.9717C22.5684 22.8623 22.6162 22.7734 22.6572 22.7051C22.9512 22.165 22.9443 21.9805 22.8076 21.2764C22.4248 19.3281 22.4248 18.5488 22.459 18.2686C22.9307 18.1865 23.4639 18.248 23.7236 18.5762C24.4619 19.4854 24.9883 20.374 25.2959 21.208C25.6377 22.7598 25.2686 24.3594 24.2637 25.6035C24.0859 25.8223 24.0654 26.1299 24.2021 26.3691C24.3389 26.6152 24.6191 26.7451 24.8926 26.7041C27.0596 26.3896 29.2676 26.3076 31.4551 26.4717H31.5508C32.0771 26.4375 32.5625 26.7451 32.7676 27.2305C32.9316 27.627 32.5283 28.2627 32.0703 28.666C31.9131 28.8027 31.8242 29.001 31.8379 29.2129C31.8447 29.418 31.9473 29.6094 32.1182 29.7324C32.8018 30.2314 33.1914 30.7646 33.1709 31.1475C33.1162 31.7354 32.4805 32.1797 32.0977 32.3916ZM12.6426 30.2588C13.6133 30.2588 14.3994 29.4727 14.3994 28.502C14.3994 27.5312 13.6133 26.7451 12.6426 26.7451C11.6719 26.7451 10.8857 27.5312 10.8857 28.502C10.8857 29.4727 11.6719 30.2588 12.6426 30.2588ZM12.6426 28.1191C12.8545 28.1191 13.0322 28.29 13.0322 28.5088C13.0322 28.7275 12.8613 28.8984 12.6426 28.8984C12.4307 28.8984 12.2529 28.7275 12.2529 28.5088C12.2529 28.29 12.4307 28.1191 12.6426 28.1191Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uhuuq9-container\",layoutDependency:layoutDependency,layoutId:\"LC0jgGiw6-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"LC0jgGiw6\",layoutId:\"LC0jgGiw6\",style:{width:\"100%\"},T8rQFvSBR:\"Deep EXPERIENCE and understanding across reputation management including corporate, brand, business, finance, government, event, media and digital expertise.\",variant:\"ghC_AFv5_\",W88zB8mIG:\"EXPERIENCE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rnvz9e\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"iY1aSsglM\",style:{backgroundColor:\"rgb(140, 140, 140)\"}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-m4f6bd\",\"data-framer-name\":\"Frame 1000002558\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:45,layoutDependency:layoutDependency,layoutId:\"IhzCMFg6r\",svg:'<svg width=\"45\" height=\"45\" viewBox=\"0 0 45 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"45\" height=\"45\" rx=\"22.5\" fill=\"#C12A2E\"/>\\n<g clip-path=\"url(#clip0_432_2533)\">\\n<path d=\"M22.31 33.265V31.2465C22.31 31.1463 22.2824 31.048 22.2303 30.9624C22.1782 30.8767 22.1036 30.8071 22.0146 30.761C21.9256 30.7149 21.8257 30.6941 21.7257 30.701C21.6257 30.7078 21.5295 30.7421 21.4476 30.7999L15.6371 34.9031C15.5656 34.9536 15.5072 35.0206 15.467 35.0983C15.4267 35.176 15.4057 35.2623 15.4057 35.3498C15.4057 35.4374 15.4267 35.5236 15.467 35.6014C15.5072 35.6791 15.5656 35.746 15.6371 35.7965L21.4476 39.8999C21.5295 39.9577 21.6257 39.9919 21.7257 39.9988C21.8257 40.0056 21.9256 39.9849 22.0146 39.9388C22.1036 39.8927 22.1783 39.823 22.2303 39.7373C22.2824 39.6517 22.31 39.5534 22.31 39.4531V37.4353C22.3734 37.4361 22.4367 37.4365 22.5 37.4365C24.4615 37.4365 26.4038 37.0502 28.216 36.2996C30.0281 35.5489 31.6747 34.4487 33.0617 33.0617C34.4487 31.6748 35.5489 30.0282 36.2995 28.216C37.0502 26.4038 37.4365 24.4615 37.4365 22.5C37.4365 22.355 37.3789 22.2159 37.2763 22.1133C37.1738 22.0108 37.0347 21.9531 36.8896 21.9531H33.8135C33.6684 21.9531 33.5293 22.0108 33.4268 22.1133C33.3242 22.2159 33.2666 22.355 33.2666 22.5C33.2666 28.5 28.3346 33.3692 22.31 33.265ZM34.3479 23.0469H36.3321C36.044 30.4275 29.9498 36.3428 22.5 36.3428C22.2643 36.3428 22.0256 36.3368 21.7906 36.325C21.7166 36.3212 21.6426 36.3326 21.5731 36.3584C21.5036 36.3842 21.4401 36.4238 21.3864 36.4749C21.3327 36.526 21.2899 36.5874 21.2607 36.6556C21.2315 36.7237 21.2164 36.797 21.2164 36.8711V38.3975L16.9008 35.3499L21.2164 32.3022V33.7899C21.2164 33.9289 21.2693 34.0626 21.3644 34.164C21.4595 34.2653 21.5895 34.3267 21.7282 34.3356C21.9837 34.352 22.2434 34.3604 22.5002 34.3604C28.8566 34.3604 34.0613 29.334 34.3479 23.0469ZM8.11035 23.0469H11.1865C11.3316 23.0469 11.4707 22.9893 11.5732 22.8867C11.6758 22.7842 11.7334 22.6451 11.7334 22.5C11.7334 17.0344 15.8536 12.4471 21.2162 11.8092V13.7535C21.2162 13.8537 21.2438 13.9521 21.2958 14.0377C21.3479 14.1233 21.4225 14.193 21.5115 14.2391C21.6005 14.2852 21.7005 14.306 21.8005 14.2991C21.9005 14.2923 21.9967 14.2581 22.0786 14.2002L27.8891 10.0969C27.9606 10.0464 28.019 9.97947 28.0592 9.90174C28.0995 9.824 28.1205 9.73774 28.1205 9.6502C28.1205 9.56266 28.0995 9.4764 28.0592 9.39867C28.019 9.32094 27.9606 9.25401 27.8891 9.20351L22.0786 5.10017C21.9967 5.04235 21.9005 5.00814 21.8005 5.00128C21.7005 4.99442 21.6005 5.01518 21.5115 5.06129C21.4225 5.10739 21.3479 5.17707 21.2958 5.26271C21.2438 5.34836 21.2162 5.44666 21.2162 5.5469V7.61819C13.5193 8.27136 7.56348 14.7105 7.56348 22.5C7.56348 22.6451 7.62109 22.7842 7.72365 22.8867C7.82621 22.9893 7.96531 23.0469 8.11035 23.0469ZM21.7906 8.67509C21.9308 8.66808 22.0628 8.60747 22.1595 8.50581C22.2562 8.40415 22.3102 8.26921 22.3102 8.1289V6.60257L26.6258 9.65024L22.31 12.6978V11.2102C22.31 11.1354 22.2946 11.0614 22.2649 10.9928C22.2352 10.9242 22.1917 10.8624 22.1372 10.8113C22.0827 10.7601 22.0182 10.7207 21.9478 10.6954C21.8774 10.6702 21.8026 10.6596 21.728 10.6644C18.8166 10.8545 16.0775 12.111 14.0342 14.1935C11.9908 16.2761 10.7868 19.0387 10.6521 21.9531H8.66782C8.80047 18.5004 10.2211 15.2225 12.6499 12.765C15.0787 10.3074 18.3397 8.84833 21.7906 8.67509ZM22.5 15.1856C21.0533 15.1856 19.6392 15.6146 18.4363 16.4183C17.2335 17.222 16.2959 18.3644 15.7423 19.7009C15.1887 21.0374 15.0439 22.5081 15.3261 23.927C15.6083 25.3459 16.305 26.6492 17.3279 27.6721C18.3508 28.6951 19.6542 29.3917 21.073 29.6739C22.4919 29.9562 23.9626 29.8113 25.2991 29.2577C26.6357 28.7041 27.778 27.7666 28.5817 26.5637C29.3855 25.3609 29.8145 23.9467 29.8145 22.5C29.8123 20.5608 29.041 18.7016 27.6697 17.3303C26.2985 15.959 24.4393 15.1877 22.5 15.1856ZM22.5 28.7207C21.2697 28.7207 20.067 28.3559 19.044 27.6723C18.021 26.9888 17.2236 26.0173 16.7528 24.8806C16.282 23.7439 16.1588 22.4931 16.3988 21.2864C16.6389 20.0797 17.2313 18.9713 18.1013 18.1013C18.9713 17.2313 20.0797 16.6389 21.2864 16.3988C22.4931 16.1588 23.7439 16.282 24.8806 16.7528C26.0172 17.2237 26.9888 18.021 27.6723 19.044C28.3559 20.067 28.7207 21.2697 28.7207 22.5C28.7189 24.1493 28.0629 25.7305 26.8967 26.8967C25.7305 28.0629 24.1493 28.7189 22.5 28.7207ZM25.9273 20.2611C26.0298 20.3637 26.0874 20.5028 26.0874 20.6478C26.0874 20.7928 26.0298 20.9319 25.9273 21.0345L22.2227 24.7391C22.1719 24.7899 22.1116 24.8301 22.0452 24.8576C21.9789 24.8851 21.9078 24.8993 21.836 24.8993C21.7641 24.8993 21.693 24.8851 21.6267 24.8576C21.5603 24.8301 21.5 24.7899 21.4492 24.7391L19.0727 22.3626C18.9712 22.2598 18.9145 22.121 18.9149 21.9765C18.9154 21.8321 18.973 21.6937 19.0751 21.5915C19.1773 21.4894 19.3157 21.4318 19.4602 21.4314C19.6046 21.4309 19.7434 21.4877 19.8462 21.5892L21.836 23.579L25.1538 20.2611C25.2046 20.2103 25.2649 20.17 25.3313 20.1425C25.3976 20.1151 25.4687 20.1009 25.5405 20.1009C25.6124 20.1009 25.6835 20.115 25.7498 20.1425C25.8162 20.17 25.8765 20.2103 25.9273 20.261V20.2611Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_432_2533\">\\n<rect width=\"35\" height=\"35\" fill=\"white\" transform=\"translate(5 5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-heoz79-container\",layoutDependency:layoutDependency,layoutId:\"jpmP9wzhN-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"jpmP9wzhN\",layoutId:\"jpmP9wzhN\",style:{width:\"100%\"},T8rQFvSBR:\"Hands-on senior team bringing a wealth of PR and communications expertise, experience and proficiency spanning over 40 YEARS. Executive management remains involved on all accounts and every client can count on a senior resource throughout the duration of every project.\",variant:\"ghC_AFv5_\",W88zB8mIG:\"PROFICIENCY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vhhgni\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"NZfC3sUTu\",style:{backgroundColor:\"rgb(140, 140, 140)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n8y2mh\",\"data-framer-name\":\"Frame 1000002558\",layoutDependency:layoutDependency,layoutId:\"rUHABl4xB\",style:{backgroundColor:\"rgb(193, 42, 46)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/knbf95jXlLXnK3orMlNds6Yk0.png\"},className:\"framer-1xw3h8w\",\"data-framer-name\":\"idea 1\",layoutDependency:layoutDependency,layoutId:\"diOxdBDde\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9zlps9-container\",layoutDependency:layoutDependency,layoutId:\"ukZVWckGG-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"ukZVWckGG\",layoutId:\"ukZVWckGG\",style:{width:\"100%\"},T8rQFvSBR:\"We are where you need us. GGi has an established, strategically positioned network of trusted affiliates and partners that we work closely with, on the African continent and in the rest of the world. This enables us to work on projects across the globe, apply international best practices, localise content where necessary and manage multinational campaigns through a centralised office and a single point of contact.\",variant:\"ghC_AFv5_\",W88zB8mIG:\"REACH\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18mjqv2\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"A8d7_2pUy\",style:{backgroundColor:\"rgb(140, 140, 140)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i5gbc\",\"data-framer-name\":\"Frame 1000002558\",layoutDependency:layoutDependency,layoutId:\"jxUVuq9Yl\",style:{backgroundColor:\"rgb(193, 42, 46)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/knbf95jXlLXnK3orMlNds6Yk0.png\"},className:\"framer-172binm\",\"data-framer-name\":\"idea 1\",layoutDependency:layoutDependency,layoutId:\"IUP0vUniF\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kgapig\",\"data-framer-name\":\"Frame 1000002558\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:45,layoutDependency:layoutDependency,layoutId:\"JrfASaWhT\",svg:'<svg width=\"45\" height=\"45\" viewBox=\"0 0 45 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"45\" height=\"45\" rx=\"22.5\" fill=\"#C12A2E\"/>\\n<g clip-path=\"url(#clip0_432_2555)\">\\n<path d=\"M7.67285 19.5762L29.1514 7.6031L27.2741 7.07331C27.205 7.0538 27.1404 7.02086 27.084 6.97637C27.0276 6.93189 26.9806 6.87673 26.9455 6.81406C26.9104 6.75138 26.888 6.68241 26.8796 6.61108C26.8712 6.53975 26.8769 6.46745 26.8964 6.39833C26.9159 6.32921 26.9489 6.26461 26.9933 6.20821C27.0378 6.15182 27.093 6.10474 27.1557 6.06966C27.2183 6.03458 27.2873 6.01219 27.3586 6.00377C27.43 5.99535 27.5023 6.00106 27.5714 6.02058L30.7313 6.91267C30.8004 6.93218 30.865 6.96511 30.9214 7.00958C30.9778 7.05406 31.0249 7.10921 31.06 7.17188C31.095 7.23455 31.1174 7.30352 31.1258 7.37485C31.1343 7.44617 31.1286 7.51846 31.109 7.58758L30.217 10.7475C30.1775 10.8871 30.0843 11.0053 29.9577 11.0762C29.8311 11.147 29.6816 11.1647 29.542 11.1253C29.4024 11.0859 29.2842 10.9926 29.2133 10.866C29.1425 10.7395 29.1248 10.5899 29.1642 10.4503L29.7011 8.54858L8.20544 20.5314C8.14265 20.5677 8.07328 20.591 8.00137 20.6002C7.92946 20.6094 7.85644 20.6042 7.78656 20.5849C7.71668 20.5656 7.65133 20.5326 7.59432 20.4878C7.53731 20.4431 7.48977 20.3874 7.45446 20.3241C7.41916 20.2608 7.3968 20.1911 7.38867 20.119C7.38055 20.047 7.38684 19.974 7.40716 19.9045C7.42748 19.8349 7.46143 19.77 7.50705 19.7137C7.55266 19.6573 7.60902 19.6106 7.67285 19.5762ZM30.9898 29.1127V30.9581C31.962 31.1811 32.684 31.9846 32.684 32.9392C32.684 33.8938 31.962 34.6973 30.9898 34.9204V35.3074C30.9898 35.4525 30.9322 35.5916 30.8296 35.6941C30.7271 35.7967 30.588 35.8543 30.4429 35.8543C30.2979 35.8543 30.1588 35.7967 30.0562 35.6941C29.9537 35.5916 29.8961 35.4525 29.8961 35.3074V34.9204C28.924 34.6973 28.2021 33.8938 28.2021 32.9392C28.2021 32.7942 28.2597 32.6551 28.3622 32.5525C28.4648 32.4499 28.6039 32.3923 28.7489 32.3923C28.894 32.3923 29.0331 32.4499 29.1356 32.5525C29.2382 32.6551 29.2958 32.7942 29.2958 32.9392C29.2958 33.2988 29.5388 33.6124 29.8961 33.7732V31.9281C28.924 31.705 28.2021 30.9015 28.2021 29.947C28.2021 28.9925 28.924 28.1889 29.8961 27.9658V27.5788C29.8961 27.4338 29.9537 27.2947 30.0562 27.1921C30.1588 27.0895 30.2979 27.0319 30.4429 27.0319C30.588 27.0319 30.7271 27.0895 30.8296 27.1921C30.9322 27.2947 30.9898 27.4338 30.9898 27.5788V27.9658C31.962 28.1889 32.684 28.9924 32.684 29.947C32.684 30.092 32.6264 30.2311 32.5238 30.3337C32.4212 30.4362 32.2821 30.4938 32.1371 30.4938C31.9921 30.4938 31.853 30.4362 31.7504 30.3337C31.6478 30.2311 31.5902 30.092 31.5902 29.947C31.5902 29.5873 31.3471 29.2737 30.9898 29.1127ZM29.8961 30.7812V29.1127C29.5388 29.2737 29.2958 29.5873 29.2958 29.9467C29.2958 30.3061 29.5388 30.6201 29.8961 30.7812ZM30.9898 32.1049V33.7734C31.3471 33.6124 31.5902 33.2988 31.5902 32.9394C31.5902 32.58 31.3471 32.2659 30.9898 32.1049ZM36.0484 31.443C36.0484 32.5517 35.7197 33.6354 35.1037 34.5572C34.4878 35.4791 33.6123 36.1975 32.5881 36.6218C31.5638 37.0461 30.4367 37.1571 29.3494 36.9408C28.262 36.7245 27.2632 36.1906 26.4793 35.4067C25.6953 34.6227 25.1615 33.6239 24.9452 32.5366C24.7289 31.4492 24.8399 30.3222 25.2642 29.2979C25.6884 28.2736 26.4069 27.3982 27.3287 26.7822C28.2505 26.1663 29.3343 25.8375 30.4429 25.8375C31.9291 25.8392 33.3538 26.4304 34.4047 27.4812C35.4555 28.5321 36.0465 29.9569 36.0481 31.443H36.0484ZM34.9547 31.443C34.9547 30.5507 34.6901 29.6784 34.1943 28.9364C33.6986 28.1945 32.9939 27.6162 32.1695 27.2747C31.3451 26.9333 30.4379 26.8439 29.5628 27.018C28.6876 27.1921 27.8837 27.6218 27.2527 28.2528C26.6217 28.8837 26.192 29.6876 26.0179 30.5628C25.8438 31.438 25.9332 32.3452 26.2747 33.1696C26.6161 33.994 27.1944 34.6986 27.9364 35.1944C28.6783 35.6901 29.5506 35.9547 30.4429 35.9547C31.6391 35.9534 32.7858 35.4776 33.6316 34.6318C34.4774 33.7859 34.9531 32.6392 34.9544 31.443H34.9547ZM40 30.104V32.8007C40.0001 32.9627 39.9462 33.12 39.8468 33.2479C39.7474 33.3757 39.6082 33.4668 39.4512 33.5067L38.1907 33.8279C38.039 34.3208 37.8405 34.798 37.5977 35.253L38.259 36.3672C38.3416 36.5064 38.3755 36.6691 38.3553 36.8297C38.3351 36.9903 38.262 37.1396 38.1475 37.254L36.2409 39.1612C36.1264 39.2758 35.977 39.349 35.8163 39.3692C35.6556 39.3893 35.4928 39.3553 35.3536 39.2724L34.2346 38.6075C33.7789 38.8491 33.3012 39.0465 32.8078 39.1969L32.4879 40.4513C32.448 40.6082 32.3569 40.7474 32.2291 40.8468C32.1012 40.9462 31.9439 41.0001 31.782 41.0001H29.0854C28.9235 41.0001 28.7663 40.9463 28.6384 40.847C28.5106 40.7477 28.4195 40.6086 28.3795 40.4518L28.0582 39.1908C27.5653 39.0392 27.0881 38.8406 26.6331 38.5977L25.5193 39.259C25.3801 39.3417 25.2172 39.3757 25.0565 39.3555C24.8958 39.3353 24.7465 39.2621 24.6321 39.1474L22.7256 37.2409C22.6111 37.1265 22.5379 36.9772 22.5178 36.8166C22.4976 36.656 22.5315 36.4932 22.6141 36.354L23.2787 35.2346C23.0546 34.8118 22.8687 34.3699 22.723 33.9141H5.54688C5.40183 33.9141 5.26273 33.8565 5.16018 33.7539C5.05762 33.6513 5 33.5122 5 33.3672V29.8069C5 29.6619 5.05762 29.5228 5.16018 29.4202C5.26273 29.3176 5.40183 29.26 5.54688 29.26H7.41691V23.9034C7.41691 23.7583 7.47453 23.6192 7.57709 23.5167C7.67965 23.4141 7.81875 23.3565 7.96379 23.3565H11.5241C11.6691 23.3565 11.8082 23.4141 11.9108 23.5167C12.0133 23.6192 12.071 23.7583 12.071 23.9034V29.26H14.0431V19.8517C14.0431 19.7067 14.1007 19.5676 14.2033 19.465C14.3059 19.3625 14.445 19.3049 14.59 19.3049H18.1503C18.2953 19.3049 18.4344 19.3625 18.537 19.465C18.6396 19.5676 18.6972 19.7067 18.6972 19.8517V29.26H20.6693V15.9109C20.6693 15.7659 20.727 15.6268 20.8295 15.5243C20.9321 15.4217 21.0712 15.3641 21.2162 15.3641H24.7764C24.9214 15.3641 25.0605 15.4217 25.1631 15.5243C25.2656 15.6268 25.3232 15.7659 25.3232 15.9109V23.5308C25.3967 23.5475 25.467 23.5755 25.5319 23.6138L26.6513 24.2783C26.8615 24.1669 27.0762 24.0651 27.2953 23.973V12.8582C27.2953 12.7132 27.3529 12.5741 27.4555 12.4715C27.558 12.369 27.6971 12.3113 27.8421 12.3113H31.4025C31.5475 12.3113 31.6866 12.369 31.7892 12.4715C31.8918 12.5741 31.9494 12.7132 31.9494 12.8582V21.9022C32.0827 21.9299 32.2056 21.9945 32.3041 22.0886C32.4026 22.1827 32.4726 22.3025 32.5064 22.4345L32.8277 23.6954C33.3205 23.8472 33.7977 24.0458 34.2526 24.2885L35.3669 23.6273C35.506 23.5445 35.6688 23.5105 35.8295 23.5307C35.9901 23.5508 36.1395 23.624 36.2539 23.7385L38.1611 25.6452C38.2756 25.7596 38.3487 25.9089 38.3689 26.0695C38.3891 26.2301 38.3552 26.3929 38.2726 26.5321L37.6074 27.6515C37.849 28.1071 38.0464 28.5849 38.1968 29.0782L39.4512 29.398C39.6082 29.4379 39.7474 29.529 39.8468 29.6568C39.9462 29.7847 40.0001 29.942 40 30.104ZM28.3892 13.4051V22.4691L28.398 22.4349C28.4379 22.278 28.529 22.1389 28.6569 22.0396C28.7847 21.9402 28.942 21.8863 29.1039 21.8864H30.8558V13.4051H28.3892ZM21.7631 29.26H21.9032L22.6952 29.058C22.8469 28.5652 23.0455 28.088 23.2883 27.633L22.6271 26.5188C22.5443 26.3796 22.5103 26.2168 22.5305 26.0562C22.5506 25.8955 22.6238 25.7462 22.7383 25.6318L24.2295 24.1407V16.4578H21.7631V29.26ZM15.1369 29.26H17.6034V20.3986H15.1369V29.26ZM8.51066 29.26H10.9772V24.4503H8.51066V29.26ZM6.09375 32.8203H20.8876C20.8869 32.8075 20.886 32.795 20.886 32.782V30.3538H6.09375V32.8203ZM38.9062 30.3878L37.6216 30.0602C37.5269 30.036 37.4403 29.9869 37.371 29.918C37.3017 29.8491 37.2522 29.7629 37.2275 29.6683C37.0673 29.0548 36.8241 28.466 36.5046 27.9183C36.4555 27.834 36.4298 27.7382 36.4302 27.6407C36.4305 27.5432 36.457 27.4475 36.5068 27.3637L37.1868 26.2182L35.6813 24.7127L34.5403 25.39C34.4563 25.4399 34.3604 25.4663 34.2626 25.4666C34.1649 25.4669 34.0688 25.4409 33.9845 25.3914C33.4376 25.0705 32.8494 24.8257 32.2363 24.6638C32.142 24.639 32.0561 24.5894 31.9875 24.5201C31.9188 24.4509 31.8699 24.3646 31.8458 24.2701L31.5166 22.9798H29.3878L29.0602 24.2645C29.036 24.3592 28.9869 24.4456 28.918 24.5149C28.8491 24.5842 28.7628 24.6338 28.6683 24.6584C28.0547 24.8187 27.4658 25.0619 26.9179 25.3814C26.8337 25.4305 26.7378 25.4562 26.6403 25.4558C26.5428 25.4554 26.4472 25.429 26.3633 25.3792L25.2179 24.6992L23.7124 26.2047L24.3897 27.3458C24.4395 27.4298 24.466 27.5257 24.4662 27.6234C24.4665 27.7212 24.4405 27.8172 24.3911 27.9015C24.0702 28.4485 23.8254 29.0366 23.6635 29.6497C23.6387 29.744 23.5891 29.8299 23.5199 29.8986C23.4506 29.9672 23.3643 30.0161 23.2699 30.0402L21.9798 30.3692V32.4983L23.2644 32.8259C23.3536 32.8488 23.4355 32.8939 23.5026 32.957C23.5697 33.0201 23.6197 33.0991 23.648 33.1867C23.651 33.1951 23.6539 33.2034 23.6564 33.2119C23.657 33.2139 23.6579 33.2157 23.6583 33.2177C23.8186 33.8313 24.0619 34.4202 24.3814 34.9681C24.4305 35.0523 24.4562 35.1482 24.4558 35.2457C24.4554 35.3432 24.429 35.4389 24.3792 35.5227L23.6992 36.6681L25.2048 38.1736L26.3456 37.4964C26.4297 37.4465 26.5256 37.42 26.6234 37.4198C26.7211 37.4195 26.8172 37.4455 26.9015 37.4949C27.4484 37.8159 28.0366 38.0607 28.6497 38.2226C28.744 38.2474 28.8299 38.297 28.8986 38.3662C28.9672 38.4355 29.0161 38.5218 29.0402 38.6162L29.3692 39.9063H31.4982L31.8259 38.6216C31.85 38.5269 31.8991 38.4404 31.968 38.3712C32.0369 38.3019 32.1231 38.2523 32.2177 38.2276C32.8313 38.0674 33.4202 37.8242 33.9681 37.5047C34.0523 37.4555 34.1482 37.4298 34.2457 37.4302C34.3432 37.4306 34.4389 37.4571 34.5227 37.5068L35.6681 38.1868L37.1736 36.6813L36.4964 35.5404C36.4465 35.4563 36.42 35.3604 36.4198 35.2627C36.4195 35.1649 36.4455 35.0689 36.4949 34.9846C36.8158 34.4376 37.0606 33.8494 37.2225 33.2363C37.2474 33.142 37.297 33.0561 37.3662 32.9875C37.4354 32.9189 37.5217 32.87 37.6162 32.8459L38.9062 32.5167V30.3878Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_432_2555\">\\n<rect width=\"35\" height=\"35\" fill=\"white\" transform=\"translate(5 6)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uw5292-container\",layoutDependency:layoutDependency,layoutId:\"YwTEU90y_-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"YwTEU90y_\",layoutId:\"YwTEU90y_\",style:{width:\"100%\"},T8rQFvSBR:\"We DELIVER WHAT WE PROMISE, measure what we deliver.\",variant:\"ghC_AFv5_\",W88zB8mIG:\"ROI\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jiNpZ.framer-l2pkl0, .framer-jiNpZ .framer-l2pkl0 { display: block; }\",\".framer-jiNpZ.framer-1coikp2 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 300px; }\",\".framer-jiNpZ .framer-kktqg4, .framer-jiNpZ .framer-8wnrm7, .framer-jiNpZ .framer-m4f6bd { flex: none; height: 45px; position: relative; width: 45px; }\",\".framer-jiNpZ .framer-3067cz-container, .framer-jiNpZ .framer-uhuuq9-container, .framer-jiNpZ .framer-heoz79-container, .framer-jiNpZ .framer-9zlps9-container, .framer-jiNpZ .framer-1uw5292-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-jiNpZ .framer-1lm1l3g, .framer-jiNpZ .framer-1rnvz9e, .framer-jiNpZ .framer-vhhgni, .framer-jiNpZ .framer-18mjqv2 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-jiNpZ .framer-n8y2mh, .framer-jiNpZ .framer-i5gbc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); overflow: hidden; position: relative; width: 45px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jiNpZ .framer-1xw3h8w, .framer-jiNpZ .framer-172binm { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); left: 51%; position: absolute; top: 51%; width: 30px; }\",\".framer-jiNpZ .framer-kgapig { flex: none; height: 45px; left: 0px; position: absolute; top: 0px; width: 45px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jiNpZ.framer-1coikp2 { gap: 0px; } .framer-jiNpZ.framer-1coikp2 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-jiNpZ.framer-1coikp2 > :first-child { margin-top: 0px; } .framer-jiNpZ.framer-1coikp2 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 979\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerh_srZeqRq=withCSS(Component,css,\"framer-jiNpZ\");export default Framerh_srZeqRq;Framerh_srZeqRq.displayName=\"Accordian\";Framerh_srZeqRq.defaultProps={height:979,width:300};addFonts(Framerh_srZeqRq,[{explicitInter:true,fonts:[]},...RowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerh_srZeqRq\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"300\",\"framerIntrinsicHeight\":\"979\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import ButtonsButton from\"#framer/local/canvasComponent/beL7nB9Cx/beL7nB9Cx.js\";import NavigationNavigation from\"#framer/local/canvasComponent/Cck5nzSCj/Cck5nzSCj.js\";import NonAccordian from\"#framer/local/canvasComponent/ECQ1DAfqU/ECQ1DAfqU.js\";import Accordian from\"#framer/local/canvasComponent/h_srZeqRq/h_srZeqRq.js\";import FooterFooter from\"#framer/local/canvasComponent/pQtVRkS2b/pQtVRkS2b.js\";import AccordianMobileOnly from\"#framer/local/canvasComponent/sa1XZELpq/sa1XZELpq.js\";import FooterCopyright from\"#framer/local/canvasComponent/Zeqloo3mj/Zeqloo3mj.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationNavigationFonts=getFonts(NavigationNavigation);const NavigationNavigationWithVariantAppearEffect=withVariantAppearEffect(NavigationNavigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ButtonsButtonFonts=getFonts(ButtonsButton);const TickerFonts=getFonts(Ticker);const AccordianFonts=getFonts(Accordian);const NonAccordianFonts=getFonts(NonAccordian);const AccordianMobileOnlyFonts=getFonts(AccordianMobileOnly);const FooterFooterFonts=getFonts(FooterFooter);const FooterCopyrightFonts=getFonts(FooterCopyright);const breakpoints={JTJm34Zqu:\"(max-width: 809px)\",qg1SKmpRD:\"(min-width: 1440px)\",rkP_A8uf4:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-oNFtx\";const variantClassNames={JTJm34Zqu:\"framer-v-1cww334\",qg1SKmpRD:\"framer-v-ei21sn\",rkP_A8uf4:\"framer-v-21wxdw\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:60,delay:0,mass:1,stiffness:320,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop (L)\":\"qg1SKmpRD\",Desktop:\"WQLkyLRf1\",Phone:\"JTJm34Zqu\",Tablet:\"rkP_A8uf4\"};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:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-oNFtx`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-oNFtx`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"ouEh6gth8\");const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const ref8=React.useRef(null);const ref9=React.useRef(null);const ref10=React.useRef(null);const elementId1=useRouteElementId(\"NcRLDjO38\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"JTJm34Zqu\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"rkP_A8uf4\",\"JTJm34Zqu\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"JTJm34Zqu\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"rkP_A8uf4\",\"JTJm34Zqu\"].includes(baseVariant))return true;return false;};const router=useRouter();const elementId2=useRouteElementId(\"IHHBGB1Pu\");const elementId3=useRouteElementId(\"bV5apis4I\");const elementId4=useRouteElementId(\"LwEK9JYw7\");const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"qg1SKmpRD\")return false;return true;};const isDisplayed5=()=>{if(!isBrowser())return true;if([\"rkP_A8uf4\",\"JTJm34Zqu\",\"qg1SKmpRD\"].includes(baseVariant))return true;return false;};const elementId5=useRouteElementId(\"JEKM0SMUN\");const elementId6=useRouteElementId(\"xmEc51JSX\");const elementId7=useRouteElementId(\"eYyjwc4VD\");const elementId8=useRouteElementId(\"Fnt74nV_N\");const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-oiko23-container\",\"data-framer-appear-id\":\"oiko23\",id:elementId,initial:animation1,layoutScroll:true,optimized:true,ref:ref10,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{__framer__targets:[{offset:-150,ref:ref2,target:\"G8LqOZM6i\"},{offset:0,ref:ref3,target:\"xoWDLDm5a\"},{offset:150,ref:ref4,target:\"xoWDLDm5a\"},{offset:150,ref:ref5,target:\"xoWDLDm5a\"},{offset:150,ref:ref6,target:\"xoWDLDm5a\"},{offset:150,ref:ref7,target:\"xoWDLDm5a\"},{offset:150,ref:ref8,target:\"xoWDLDm5a\"},{offset:0,ref:ref9,target:\"xoWDLDm5a\"}],variant:\"G8LqOZM6i\"}},children:/*#__PURE__*/_jsx(NavigationNavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:-150,ref:ref2,target:\"Hkg6yw26J\"},{offset:0,ref:ref3,target:\"E0Oj7vtNs\"},{offset:150,ref:ref4,target:\"E0Oj7vtNs\"},{offset:150,ref:ref5,target:\"E0Oj7vtNs\"},{offset:150,ref:ref6,target:\"E0Oj7vtNs\"},{offset:150,ref:ref7,target:\"E0Oj7vtNs\"},{offset:150,ref:ref8,target:\"E0Oj7vtNs\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"ouEh6gth8\",layoutId:\"ouEh6gth8\",style:{width:\"100%\"},variant:\"Hkg6yw26J\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{background:{alt:\"\",fit:\"fill\",pixelHeight:3088,pixelWidth:1923,positionX:\"right\",positionY:\"top\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/bDXdMeTipBPfi9bOnjSIs9jXG0.png\",srcSet:\"https://framerusercontent.com/images/bDXdMeTipBPfi9bOnjSIs9jXG0.png?scale-down-to=1024 637w,https://framerusercontent.com/images/bDXdMeTipBPfi9bOnjSIs9jXG0.png?scale-down-to=2048 1275w,https://framerusercontent.com/images/bDXdMeTipBPfi9bOnjSIs9jXG0.png 1923w\"}},qg1SKmpRD:{background:{alt:\"\",fit:\"fill\",pixelHeight:3092,pixelWidth:4669,sizes:\"100vw\",src:\"https://framerusercontent.com/images/wWGbRM1bSRud4gKZY49xo8U8sj0.webp\",srcSet:\"https://framerusercontent.com/images/wWGbRM1bSRud4gKZY49xo8U8sj0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/wWGbRM1bSRud4gKZY49xo8U8sj0.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/wWGbRM1bSRud4gKZY49xo8U8sj0.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/wWGbRM1bSRud4gKZY49xo8U8sj0.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/wWGbRM1bSRud4gKZY49xo8U8sj0.webp 4669w\"}},rkP_A8uf4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(0),pixelHeight:3092,pixelWidth:4669,sizes:\"100vw\",src:\"https://framerusercontent.com/images/JPm66XNoATaU7EIeSkQs3FXxRQ.jpg\",srcSet:\"https://framerusercontent.com/images/JPm66XNoATaU7EIeSkQs3FXxRQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JPm66XNoATaU7EIeSkQs3FXxRQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JPm66XNoATaU7EIeSkQs3FXxRQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JPm66XNoATaU7EIeSkQs3FXxRQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/JPm66XNoATaU7EIeSkQs3FXxRQ.jpg 4669w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3092,pixelWidth:4669,sizes:\"100vw\",src:\"https://framerusercontent.com/images/JPm66XNoATaU7EIeSkQs3FXxRQ.jpg\",srcSet:\"https://framerusercontent.com/images/JPm66XNoATaU7EIeSkQs3FXxRQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JPm66XNoATaU7EIeSkQs3FXxRQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JPm66XNoATaU7EIeSkQs3FXxRQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JPm66XNoATaU7EIeSkQs3FXxRQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/JPm66XNoATaU7EIeSkQs3FXxRQ.jpg 4669w\"},className:\"framer-vi1zhz\",\"data-framer-name\":\"Hero\",id:elementId1,name:\"Hero\",ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p15jnt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"GROWING AND BUILDING\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"REPUTATIONAL EQUITY\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"AND EXCELLENCE\"})]}),viewBox:\"0 0 327 137\"},qg1SKmpRD:{viewBox:\"0 0 550 230\"},rkP_A8uf4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"41px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"GROWING AND BUILDING\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"41px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"REPUTATIONAL EQUITY\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"41px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"AND EXCELLENCE\"})]}),viewBox:\"0 0 352 148\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"GROWING AND BUILDING\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"REPUTATIONAL EQUITY\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"AND EXCELLENCE\"})]}),className:\"framer-a5kag6\",fonts:[\"GF;Anton-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3xze7v\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15gnxj9\",\"data-framer-name\":\"Group 29\",name:\"Group 29\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f8q6tv hidden-1cww334\",\"data-framer-name\":\"Frame 1000002587\",name:\"Frame 1000002587\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-177k2nz\",\"data-framer-name\":\"Frame 1000002585\",name:\"Frame 1000002585\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"WE ARE\"})}),className:\"framer-1usa467\",\"data-framer-name\":\"WE ARE\",fonts:[\"GF;Outfit-regular\"],name:\"WE ARE\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"PR PROFESSIONALS\"})}),className:\"framer-16m8izb\",\"data-framer-name\":\"PR PROFESSIONALS\",fonts:[\"GF;Anton-regular\"],name:\"PR PROFESSIONALS\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18us7r1\",\"data-framer-name\":\"Frame 1000002586\",name:\"Frame 1000002586\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"WORKING\"})}),className:\"framer-o9dp0w\",\"data-framer-name\":\"WORKING\",fonts:[\"GF;Outfit-regular\"],name:\"WORKING\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"ACROSS THE GLOBE\"})}),className:\"framer-1w3xsp1\",\"data-framer-name\":\"ACROSS THE GLOBE\",fonts:[\"GF;Anton-regular\"],name:\"ACROSS THE GLOBE\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-13pak9g hidden-21wxdw hidden-1cww334\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:168,intrinsicWidth:3,name:\"Line 1\",svg:'<svg width=\"3\" height=\"168\" viewBox=\"-1 -1 3 168\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"166\" x2=\"0.500007\" y2=\"-2.18557e-08\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a18cph hidden-72rtr7 hidden-21wxdw hidden-ei21sn\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-rdh3wa hidden-72rtr7\",\"data-framer-name\":\"Frame 1000002585\",name:\"Frame 1000002585\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"WE ARE\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"PR PROFESSIONALS\"})]}),className:\"framer-2psl2u\",\"data-framer-name\":\"WE ARE\",fonts:[\"GF;Outfit-regular\",\"GF;Anton-regular\"],name:\"WE ARE\",verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-4qmqbc hidden-72rtr7\",\"data-framer-name\":\"Frame 1000002586\",name:\"Frame 1000002586\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"WORKING\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"ACROSS THE GLOBE\"})]}),className:\"framer-1wxoryk\",\"data-framer-name\":\"WORKING\",fonts:[\"GF;Outfit-regular\",\"GF;Anton-regular\"],name:\"WORKING\",verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1yx7wzs hidden-72rtr7 hidden-ei21sn\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:345,name:\"Line 1\",svg:'<svg width=\"345\" height=\"3\" viewBox=\"-1 -1 345 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"343\" y1=\"0.5\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-186rb23\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UpH__pUGU\"},implicitPathVariables:undefined},{href:{webPageId:\"UpH__pUGU\"},implicitPathVariables:undefined},{href:{webPageId:\"UpH__pUGU\"},implicitPathVariables:undefined},{href:{webPageId:\"UpH__pUGU\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{width:\"max(100vw - 48px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t36cp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{odb0bWURU:resolvedLinks[2],style:{width:\"100%\"}},qg1SKmpRD:{odb0bWURU:resolvedLinks[3]},rkP_A8uf4:{odb0bWURU:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonsButton,{height:\"100%\",id:\"HM_mRSpum\",layoutId:\"HM_mRSpum\",odb0bWURU:resolvedLinks[0],Q7omvm8K3:false,Rm087qODt:\"FIND OUT MORE\",variant:\"Cok710zdM\",width:\"100%\"})})})})})})})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{background:{alt:\"\",fit:\"fill\",pixelHeight:757,pixelWidth:745,sizes:\"100vw\",src:\"https://framerusercontent.com/images/ZPyLVNlJcrB8SsEUGMZUEscWRQ.png\",srcSet:\"https://framerusercontent.com/images/ZPyLVNlJcrB8SsEUGMZUEscWRQ.png 745w\"}},rkP_A8uf4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1e3),pixelHeight:940,pixelWidth:2879,sizes:\"100vw\",src:\"https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png\",srcSet:\"https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png 2879w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:940,pixelWidth:2879,sizes:\"100vw\",src:\"https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png\",srcSet:\"https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png 2879w\"},className:\"framer-8346gp\",\"data-framer-name\":\"Intro A\",id:elementId2,name:\"Intro A\",ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"36.02549543642568px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"GGi OFFERS A TOTALLY \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"36.02549543642568px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"INTEGRATED CORPORATE \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"36.02549543642568px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"COMMUNICATION \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"36.02549543642568px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"SERVICE.\"})]}),viewBox:\"0 0 320 173\"},qg1SKmpRD:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"GGi offers a totally integrated corporate communication service. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"Right through from conceptualisation to implementation, every \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"communication activity is always underpinned by the key drivers of\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"a solid reputation: credibility, authenticity, transparency and consistency\"})]})},rkP_A8uf4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"25.236345670960773px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"GGi offers a totally integrated corporate communication service. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"25.236345670960773px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"Right through from conceptualisation to implementation, every \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"25.236345670960773px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"communication activity is always underpinned by the key drivers of a \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"25.236345670960773px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"solid reputation: credibility, authenticity, transparency and consistency\"})]}),viewBox:\"0 0 730 202\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"31.2685px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"GGi offers a totally integrated corporate communication service. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"31.2685px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"Right through from conceptualisation to implementation, every \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"31.2685px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"communication activity is always underpinned by the key drivers of a \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"31.2685px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"solid reputation: credibility, authenticity, transparency and consistency\"})]}),className:\"framer-11fc0p1\",fonts:[\"GF;Anton-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kaxdom\",\"data-framer-name\":\"Intro B\",id:elementId3,name:\"Intro B\",ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iaappg\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2160,pixelWidth:3840,src:\"https://framerusercontent.com/images/cjUuU6zDJhrpBvbfKPbNgaEXk.jpg\"},className:\"framer-166ehzi\",\"data-framer-name\":\"chuttersnap-1mmZEQJLv0k-unsplash 1\",name:\"chuttersnap-1mmZEQJLv0k-unsplash 1\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1167jqu\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qg1SKmpRD:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"We are an integrated agency with \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"reputation management, PR and \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"content at our core.\"})]}),viewBox:\"0 0 358 94\"},rkP_A8uf4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"26.048430727387284px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"We are an integrated agency \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"26.048430727387284px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"with reputation management, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"26.048430727387284px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"PR and content at our core.\"})]}),viewBox:\"0 0 319 94\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"21.184416118421055px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"We are an integrated agency \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"21.184416118421055px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"with reputation management, PR and \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"21.184416118421055px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"content at our core.\"})]}),className:\"framer-10qpu27 hidden-1cww334\",fonts:[\"GF;Anton-regular\"],verticalAlignment:\"top\",viewBox:\"0 0 321 76\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"27.922838993402017px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"We are an integrated agency \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"27.922838993402017px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"with reputation management, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"27.922838993402017px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"PR and content at our core.\"})]}),className:\"framer-1yf6ha3 hidden-72rtr7 hidden-21wxdw hidden-ei21sn\",fonts:[\"GF;Anton-regular\"],verticalAlignment:\"top\",viewBox:\"0 0 342 101\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our ambition is to create change through brave, relevant work by pushing boundaries to help our clients adapt and win in a constantly evolving world.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We marry the power of immersion with the rigour of knowledge, creating a deep understanding and shaping perceptions to transform the opinions, beliefs and behaviors of those who matter most to our clients.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We are committed to delivering solid advisory, deep insights, bold ideas and broad engagement to leading organizations and brands through seamless integrated communications.\"})]}),className:\"framer-10eyhg5 hidden-1cww334\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our ambition is to create change through brave, relevant work by pushing boundaries to help our clients adapt and win in a constantly evolving world.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We marry the power of immersion with the rigour of knowledge, creating a deep understanding and shaping perceptions to transform the opinions, beliefs and behaviors of those who matter most to our clients.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We are committed to delivering solid advisory, deep insights, bold ideas and broad engagement to leading organizations and brands through seamless integrated communications.\"})]}),className:\"framer-157z702 hidden-72rtr7 hidden-21wxdw hidden-ei21sn\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UpH__pUGU\"},implicitPathVariables:undefined},{href:{webPageId:\"UpH__pUGU\"},implicitPathVariables:undefined},{href:{webPageId:\"UpH__pUGU\"},implicitPathVariables:undefined},{href:{webPageId:\"UpH__pUGU\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wexpt1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{odb0bWURU:resolvedLinks1[2]},qg1SKmpRD:{odb0bWURU:resolvedLinks1[3]},rkP_A8uf4:{odb0bWURU:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonsButton,{height:\"100%\",id:\"Ovdeqgu1A\",layoutId:\"Ovdeqgu1A\",odb0bWURU:resolvedLinks1[0],Q7omvm8K3:false,Rm087qODt:\"FIND OUT MORE\",variant:\"Cok710zdM\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1js8hnl\",\"data-framer-name\":\"Experience\",id:elementId4,name:\"Experience\",ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j3bbyv\",\"data-framer-name\":\"Container\",name:\"Container\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rkP_A8uf4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"SOME OF \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"OUR EXPERIENCE\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"SOME OF OUR EXPERIENCE\"})}),className:\"framer-1hv5u9p hidden-ei21sn\",fonts:[\"GF;Anton-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed5()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\"},children:\"We have significant experience in reputation management across numerous various business sectors including professional services, automotive, healthcare, financial services, food and beverage, travel and tourism, retail, property, transport and logistics, mining, engineering, manufacturing and government.\"})}),fonts:[\"GF;Outfit-regular\"]},qg1SKmpRD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"SOME OF OUR EXPERIENCE\"})})},rkP_A8uf4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\"},children:\"We have significant experience in reputation management across numerous various business sectors including professional services, automotive, healthcare, financial services, food and beverage, travel and tourism, retail, property, transport and logistics, mining, engineering, manufacturing and government.\"})}),fonts:[\"GF;Outfit-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"SOME OF OUR EXPERIENCE\"})}),className:\"framer-2zocyr hidden-72rtr7\",fonts:[\"GF;Anton-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qg1SKmpRD:{verticalAlignment:\"top\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\"},children:\"We have significant experience in reputation management across numerous various business sectors including professional services, automotive, healthcare, financial services, food and beverage, travel and tourism, retail, property, transport and logistics, mining, engineering, manufacturing and government.\"})}),className:\"framer-1nol4ak hidden-21wxdw hidden-1cww334\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5m65el\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jl9xne-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{gap:35,padding:5,paddingBottom:5,paddingLeft:5,paddingRight:5,paddingTop:5}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:50,height:\"100%\",hoverFactor:.3,id:\"cq5vyLtCN\",layoutId:\"cq5vyLtCN\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:100,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uaJvqpX2THwu6DGUckDOo7tbbZQ.webp\"},className:\"framer-lp0okb\",\"data-framer-name\":\"image 64\",name:\"image 64\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/GZamx1l5dGOdZ6Lz78jaeIYCBHo.webp\"},className:\"framer-13jf3bp\",\"data-framer-name\":\"image 97\",name:\"image 97\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:244,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XPDAdmnJ9u7prKTvjd9yNlL3ujA.webp\"},className:\"framer-18piv9x\",\"data-framer-name\":\"image 68\",name:\"image 68\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:68,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DfziHhp1xG6toGcGAMoEEShGG5A.webp\"},className:\"framer-1fope0s\",\"data-framer-name\":\"image 67\",name:\"image 67\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:84,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UP0grvzEUquSFKpBAD72IEzd8NI.webp\"},className:\"framer-1k6sjcd\",\"data-framer-name\":\"image 98\",name:\"image 98\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:76,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nhgyVGvNXAyBfeYDK6N87CiguA.webp\"},className:\"framer-1aipf5u\",\"data-framer-name\":\"image 70\",name:\"image 70\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:184,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Kj7oulwVE7Ha5nb6n9EdN8UaWI.webp\"},className:\"framer-1pctsgg\",\"data-framer-name\":\"image 100\",name:\"image 100\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:180,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lyqTmbXqlulolaXHp5q2qUMJiwo.webp\"},className:\"framer-9ktj6u\",\"data-framer-name\":\"image 99\",name:\"image 99\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/amtgmNOmStsboaqLlz7GeMpTk.webp\"},className:\"framer-vfem24\",\"data-framer-name\":\"image 74\",name:\"image 74\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:72,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2H5F7RHG7EfzDrlZv5ZO8uqXO8.webp\"},className:\"framer-1n988hz\",\"data-framer-name\":\"image 102\",name:\"image 102\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:40,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NiUvy5n6zsdEADhCXC0cKHmeg.webp\"},className:\"framer-13nlrdg\",\"data-framer-name\":\"image 101\",name:\"image 101\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:268,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4YnNWwB0QhAHnaduwK95nqUR7Ts.webp\"},className:\"framer-vgc5so\",\"data-framer-name\":\"image 75\",name:\"image 75\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:64,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hRF3c5GKwvmrtsohGOhksF9CBw.webp\"},className:\"framer-139lr0u\",\"data-framer-name\":\"image 106\",name:\"image 106\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:132,pixelWidth:429,src:\"https://framerusercontent.com/images/u3icbPVSPHRGMeJYf7FcLah9Hg.webp\"},className:\"framer-1gewmbv\",\"data-framer-name\":\"image 81\",name:\"image 81\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:156,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CupjEAI5MMXUYNq4d4PGfnrk1U.webp\"},className:\"framer-7dlqhw\",\"data-framer-name\":\"image 107\",name:\"image 107\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:448,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/P0RKTIvIZjFjiAXTVJaEFMy3CRE.webp\"},className:\"framer-1m17yp7\",\"data-framer-name\":\"image 105\",name:\"image 105\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:188,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YQNC7Rxr0YToJkENjiG6cB2wvX8.webp\"},className:\"framer-ye7dpw\",\"data-framer-name\":\"image 78\",name:\"image 78\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:80,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CZvheM4qLdtxLz5c9qlxIRnfg.webp\"},className:\"framer-10cf2ls\",\"data-framer-name\":\"image 104\",name:\"image 104\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:116,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/T8OYw1WcJucFSXdpf3U3GfMT9Ys.webp\"},className:\"framer-33mzs1\",\"data-framer-name\":\"image 80\",name:\"image 80\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:68,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JsXIJ8FeSMCe4QZi08QLrvBQqA.webp\"},className:\"framer-y3zqc7\",\"data-framer-name\":\"image 79\",name:\"image 79\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:108,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/guBPTwqpGl6R4ymT12I8h7F9vzA.webp\"},className:\"framer-1dsh7vg\",\"data-framer-name\":\"image 103\",name:\"image 103\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:164,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wWd3QSXzVzMi2q8ihQulZ1kU.webp\"},className:\"framer-1f4nzz4\",\"data-framer-name\":\"image 76\",name:\"image 76\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:55,pixelHeight:40,pixelWidth:110,src:\"https://framerusercontent.com/images/EZAJTMMTQYA3P1MiJAQuzwNio.png\"},className:\"framer-b8nn2k\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:20,intrinsicWidth:55,pixelHeight:40,pixelWidth:110,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qBIIqOSotiMXS41a4DIKmVAQSc.png\"},className:\"framer-21lnr4\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:20,intrinsicWidth:55,pixelHeight:40,pixelWidth:110,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/J262Tmvs3U0PwHTtBJlySmnzeW8.png\"},className:\"framer-1h9bw4t\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:55,pixelHeight:40,pixelWidth:110,src:\"https://framerusercontent.com/images/VmpEFgBlO46RsL7R8a8II9yzCZM.png\"},className:\"framer-1lpevgz\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:20,intrinsicWidth:55,pixelHeight:33,pixelWidth:36,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CHXgg2sIQawGiJt38RnBaCOKSvM.png\"},className:\"framer-d3u9e8\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:20,intrinsicWidth:55,pixelHeight:40,pixelWidth:110,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xn0J7TZMpjCs5whM0OY8MYDUpU.png\"},className:\"framer-ozbdx\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:20,intrinsicWidth:55,pixelHeight:40,pixelWidth:110,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jBcFkGOs4JN7vJ1T1cZd95CRJ0.png\"},className:\"framer-w6tsxs\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:20,intrinsicWidth:55,pixelHeight:40,pixelWidth:110,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5bE1sXJdyy7dprqzdvK9tWH5Y.png\"},className:\"framer-1klj4cn\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:20,intrinsicWidth:55,pixelHeight:40,pixelWidth:110,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2fhkZeOd5gvG8MlpK7jpHMrGF2U.png\"},className:\"framer-fzyhmj\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:20,intrinsicWidth:55,pixelHeight:40,pixelWidth:110,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QIKx9TSnvCSq4W5z4pwRvWB4WTk.png\"},className:\"framer-q3s8zp\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:20,intrinsicWidth:55,pixelHeight:40,pixelWidth:110,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/o8VJxqvknDQID6IS8iJYazeUF9w.png\"},className:\"framer-cyoay0\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:20,intrinsicWidth:55,pixelHeight:40,pixelWidth:110,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CQ9vrZVuDP8s8yTKYm8ycDyMwgs.png\"},className:\"framer-q8emuo\",\"data-framer-name\":\"image\",name:\"image\"})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dutgtw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{padding:5,paddingBottom:5,paddingLeft:5,paddingRight:5,paddingTop:5}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:50,height:\"100%\",hoverFactor:.3,id:\"IIm4xMSs_\",layoutId:\"IIm4xMSs_\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:425,pixelWidth:1280,sizes:\"93.6px\",src:\"https://framerusercontent.com/images/NAL5M5QPqD4TxsGUnmYltXkPjE.webp\",srcSet:\"https://framerusercontent.com/images/NAL5M5QPqD4TxsGUnmYltXkPjE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/NAL5M5QPqD4TxsGUnmYltXkPjE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/NAL5M5QPqD4TxsGUnmYltXkPjE.webp 1280w\"},className:\"framer-1wdjvxu\",\"data-framer-name\":\"image 84\",name:\"image 84\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:512,pixelWidth:2560,sizes:\"104px\",src:\"https://framerusercontent.com/images/ehI9yjpzei5DWsK87TI2uXtW0.webp\",srcSet:\"https://framerusercontent.com/images/ehI9yjpzei5DWsK87TI2uXtW0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ehI9yjpzei5DWsK87TI2uXtW0.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ehI9yjpzei5DWsK87TI2uXtW0.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/ehI9yjpzei5DWsK87TI2uXtW0.webp 2560w\"},className:\"framer-1yzcxh4\",\"data-framer-name\":\"image 85\",name:\"image 85\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:312,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eaD3Ff5GneT8dsiF1MW1Td7KC0.webp\"},className:\"framer-ot01ef\",\"data-framer-name\":\"image 87\",name:\"image 87\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:103,pixelWidth:487,src:\"https://framerusercontent.com/images/cHXMCrX9N5VmoVoUFB7H9vO4K1Q.webp\"},className:\"framer-1qnd4oo\",\"data-framer-name\":\"image 88\",name:\"image 88\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:148,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sRBE9nU6eQFPyFKHrR7hL8ZTv0.webp\"},className:\"framer-19ym91d\",\"data-framer-name\":\"image 89\",name:\"image 89\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:76,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DMhwnmwbSNmoPgxZDwMkUimcb0.webp\"},className:\"framer-1hy7f7h\",\"data-framer-name\":\"image 90\",name:\"image 90\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:407,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"84px\",src:\"https://framerusercontent.com/images/FrqTOsED5gQuQEjJEKCObZHVS4.webp\",srcSet:\"https://framerusercontent.com/images/FrqTOsED5gQuQEjJEKCObZHVS4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/FrqTOsED5gQuQEjJEKCObZHVS4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/FrqTOsED5gQuQEjJEKCObZHVS4.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/FrqTOsED5gQuQEjJEKCObZHVS4.webp 2560w\"},className:\"framer-p1wuf4\",\"data-framer-name\":\"image 91\",name:\"image 91\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:154,pixelWidth:327,src:\"https://framerusercontent.com/images/gQBRB2qiRCy9ENb6p4zniJcnUqo.webp\"},className:\"framer-akvath\",\"data-framer-name\":\"image 92\",name:\"image 92\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:112,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/elxiqQ37p5mZcecABoAW8VOAI9U.webp\"},className:\"framer-xmw3a2\",\"data-framer-name\":\"image 93\",name:\"image 93\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:92,pixelWidth:312,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HNntcYAC3MQSHyQuikxc7eJsjE.webp\"},className:\"framer-a6i0mo\",\"data-framer-name\":\"image 94\",name:\"image 94\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:73,intrinsicWidth:234,pixelHeight:73,pixelWidth:234,src:\"https://framerusercontent.com/images/R2ESI0L6l7A9qMDAaXGq4kpoc.jpg\"},className:\"framer-1a1hsok\",\"data-framer-name\":\"Screenshot_2024_08_23_033553\",name:\"Screenshot_2024_08_23_033553\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:61,intrinsicWidth:222,pixelHeight:61,pixelWidth:222,src:\"https://framerusercontent.com/images/214rsADWCLX9kr8USnzX20sRWqs.jpg\"},className:\"framer-q8zmdm\",\"data-framer-name\":\"Screenshot_2024_08_23_033607\",name:\"Screenshot_2024_08_23_033607\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:240,pixelHeight:55,pixelWidth:240,src:\"https://framerusercontent.com/images/99aDmI2tqMTEBw2rvZ9Dktgsjiw.jpg\"},className:\"framer-1czwbxk\",\"data-framer-name\":\"Screenshot_2024_08_23_033622\",name:\"Screenshot_2024_08_23_033622\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:118,intrinsicWidth:237,pixelHeight:118,pixelWidth:237,src:\"https://framerusercontent.com/images/AasT45LcTAEEuzLijquZB4bI.jpg\"},className:\"framer-ebre11\",\"data-framer-name\":\"Screenshot_2024_08_23_033633\",name:\"Screenshot_2024_08_23_033633\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:76,intrinsicWidth:231,pixelHeight:76,pixelWidth:231,src:\"https://framerusercontent.com/images/TWiFbMQGTzbpk4iSLHStXfpZZ3U.jpg\"},className:\"framer-12n1syn\",\"data-framer-name\":\"Screenshot_2024_08_23_033443\",name:\"Screenshot_2024_08_23_033443\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:85,intrinsicWidth:240,pixelHeight:85,pixelWidth:240,src:\"https://framerusercontent.com/images/ZzVXVsEjTbT6TvlyzPCOmmh2E.jpg\"},className:\"framer-1lozgxp\",\"data-framer-name\":\"Screenshot_2024_08_23_033304\",name:\"Screenshot_2024_08_23_033304\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:73,intrinsicWidth:241,pixelHeight:73,pixelWidth:241,src:\"https://framerusercontent.com/images/6bmy0EijfH22uZEfuqG6zarYrDM.jpg\"},className:\"framer-bnpspk\",\"data-framer-name\":\"Screenshot_2024_08_23_033427\",name:\"Screenshot_2024_08_23_033427\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:93,intrinsicWidth:231,pixelHeight:93,pixelWidth:231,src:\"https://framerusercontent.com/images/x4wKWbM6KvBiTwnWRfATukC7xg.jpg\"},className:\"framer-1w6ova\",\"data-framer-name\":\"Screenshot_2024_08_23_033500\",name:\"Screenshot_2024_08_23_033500\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:118,pixelHeight:100,pixelWidth:118,src:\"https://framerusercontent.com/images/Q0NHkjkSjUthPlIAPdnH3YMQRs.jpg\"},className:\"framer-sj9jft\",\"data-framer-name\":\"Screenshot_2024_08_23_033516\",name:\"Screenshot_2024_08_23_033516\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:99,intrinsicWidth:250,pixelHeight:99,pixelWidth:250,src:\"https://framerusercontent.com/images/57LMzQr9T7QsmY12W5td88vA.jpg\"},className:\"framer-1v7f4ws\",\"data-framer-name\":\"Screenshot_2024_08_23_033542\",name:\"Screenshot_2024_08_23_033542\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:259,pixelHeight:88,pixelWidth:259,src:\"https://framerusercontent.com/images/oZ9oeU2o0z1IsQKvdMTgMtTs0HE.jpg\"},className:\"framer-loxvtp\",\"data-framer-name\":\"Screenshot_2024_08_23_033335\",name:\"Screenshot_2024_08_23_033335\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:55,intrinsicWidth:226,pixelHeight:55,pixelWidth:226,src:\"https://framerusercontent.com/images/PUOfRNM9EFAD8yXPIIi1qHHHDo.jpg\"},className:\"framer-1vjr2s6\",\"data-framer-name\":\"Screenshot_2024_08_23_033351\",name:\"Screenshot_2024_08_23_033351\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:76,intrinsicWidth:229,pixelHeight:76,pixelWidth:229,src:\"https://framerusercontent.com/images/7cj3IMfRtDH9uXkJ1Hjw1t078.jpg\"},className:\"framer-i347lz\",\"data-framer-name\":\"Screenshot_2024_08_23_033320\",name:\"Screenshot_2024_08_23_033320\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112,intrinsicWidth:418,pixelHeight:112,pixelWidth:418,src:\"https://framerusercontent.com/images/32usAvnLr1xfX8latMOOLZEm7Mg.jpg\"},className:\"framer-19c9l59\",\"data-framer-name\":\"Screenshot_2024_08_23_033528\",name:\"Screenshot_2024_08_23_033528\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:12,intrinsicWidth:32,pixelHeight:24,pixelWidth:64,src:\"https://framerusercontent.com/images/so0QIpmJzJIHFgVyXll6gouLs.png\"},className:\"framer-p3668y\",\"data-framer-name\":\"image\",name:\"image\"})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n3xkmm\",\"data-framer-name\":\"About\",id:elementId5,name:\"About\",ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pvyl7k\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r9azux\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:\"ABOUT US\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"A STRATEGIC REPUTATION-BUILDING APPROACH\"})]})},qg1SKmpRD:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:\"ABOUT US\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"A STRATEGIC REPUTATION-BUILDING \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"APPROACH\"})]})},rkP_A8uf4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:\"ABOUT US\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"A STRATEGIC REPUTATION-BUILDING \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"APPROACH\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:\"ABOUT US\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"A STRATEGIC REPUTATION-BUILDING \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"APPROACH\"})]}),className:\"framer-1kab0xv\",fonts:[\"GF;Outfit-600\",\"GF;Anton-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{height:979,width:\"calc(100vw - 48px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4epsjl-container hidden-72rtr7 hidden-21wxdw hidden-ei21sn\",children:/*#__PURE__*/_jsx(Accordian,{height:\"100%\",id:\"VHnL0ZuZ6\",layoutId:\"VHnL0ZuZ6\",style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rkP_A8uf4:{y:3155.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1502,width:\"475px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u16yhq-container hidden-1cww334\",children:/*#__PURE__*/_jsx(NonAccordian,{height:\"100%\",id:\"WJgPa_gCh\",layoutId:\"WJgPa_gCh\",style:{width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{background:{alt:\"\",fit:\"fill\",pixelHeight:757,pixelWidth:745,sizes:\"100vw\",src:\"https://framerusercontent.com/images/ZPyLVNlJcrB8SsEUGMZUEscWRQ.png\",srcSet:\"https://framerusercontent.com/images/ZPyLVNlJcrB8SsEUGMZUEscWRQ.png 745w\"}},rkP_A8uf4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4717.4),pixelHeight:940,pixelWidth:2879,sizes:\"100vw\",src:\"https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png\",srcSet:\"https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png 2879w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:940,pixelWidth:2879,sizes:\"100vw\",src:\"https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png\",srcSet:\"https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/G0zY6YkkPpt8hrYLUuutRexqsg.png 2879w\"},className:\"framer-zues3c\",\"data-framer-name\":\"Intro A\",id:elementId6,name:\"Intro A\",ref:ref9,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pfdx8b\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n8jkcc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"28.6624px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Built on a foundation of strategic counsel, we deliver the full spectrum of integrated communications.\"})}),fonts:[\"GF;Anton-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"OUR SERVICES\"})}),className:\"framer-a3lqdm\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"OUR SERVICES\"})}),className:\"framer-jbf3ym hidden-72rtr7 hidden-21wxdw hidden-ei21sn\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"We work with our clients to identify risks, challenges and opportunities, which then feed into the narrative we create for them.\"})}),fonts:[\"GF;Outfit-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Built on a foundation of strategic counsel, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"we deliver the full spectrum of integrated communications.\"})]}),className:\"framer-14e7pud\",fonts:[\"GF;Anton-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\"},children:\"We work with our clients to identify risks, challenges and opportunities, which then feed into the narrative we create for them.\"})}),className:\"framer-1et9mbq hidden-1cww334\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10lkjkg\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RouZYm9VY\"},implicitPathVariables:undefined},{href:{webPageId:\"RouZYm9VY\"},implicitPathVariables:undefined},{href:{webPageId:\"RouZYm9VY\"},implicitPathVariables:undefined},{href:{webPageId:\"RouZYm9VY\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{width:\"max(100vw - 70px, 1px)\"},rkP_A8uf4:{y:5063.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6rsfyb-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{odb0bWURU:resolvedLinks2[2],Rm087qODt:\"FIND OUT MORE\",style:{width:\"100%\"}},qg1SKmpRD:{odb0bWURU:resolvedLinks2[3]},rkP_A8uf4:{odb0bWURU:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonsButton,{height:\"100%\",id:\"tAfSUC8wY\",layoutId:\"tAfSUC8wY\",odb0bWURU:resolvedLinks2[0],Q7omvm8K3:false,Rm087qODt:\"OUR SERVICES\",variant:\"NnNg9h8UK\",width:\"100%\"})})})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b8sc1i\",\"data-framer-name\":\"Services B\",id:elementId7,name:\"Services B\",ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ex8cs\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"We proactively (and sometimes reactively) build reputations by growing relevance, trust and authenticity for our clients via structured, strategic communication programmes.\"})})},rkP_A8uf4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"We proactively (and sometimes reactively) \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"build reputations by growing relevance, trust \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"and authenticity for our clients via structured, strategic communication programmes.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"We proactively (and sometimes reactively) build reputations by \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"growing relevance, trust and authenticity for our clients via \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\",\"--framer-text-transform\":\"uppercase\"},children:\"structured, strategic communication programmes.\"})]}),className:\"framer-1ybijzy\",fonts:[\"GF;Anton-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bua25t\",\"data-framer-name\":\"Line\",name:\"Line\"}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{height:740,width:\"min(100vw - 48px, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ejlasj-container hidden-72rtr7 hidden-21wxdw hidden-ei21sn\",children:/*#__PURE__*/_jsx(AccordianMobileOnly,{height:\"100%\",id:\"L8WV95zky\",layoutId:\"L8WV95zky\",style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y7va0q hidden-1cww334\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16gjl1l\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rkP_A8uf4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6296.4),src:\"https://framerusercontent.com/images/eO1LPwHWmiTuryUw6ayp8x790.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/eO1LPwHWmiTuryUw6ayp8x790.png\"},className:\"framer-tjypb9\",\"data-framer-name\":\"speech-bubble 1\",name:\"speech-bubble 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:\"REPUTATION \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:\"MANAGEMENT\"})]}),className:\"framer-bxtcxk\",fonts:[\"GF;Anton-regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\"},children:\"Reputation is a fundamental quality of every company and brand \u2013 what stakeholders believe about it, expect from it and say about it to others. Through our work with leading global and local brands, we have the knowledge and expertise to help them prepare for risk and respond to crises.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\"},children:\"That\u2019s how valuable reputations are built and maintained.\"})]}),className:\"framer-1vk4cu2\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kf3ekx\",\"data-framer-name\":\"Line\",name:\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v0qbiv\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1exoaz3\",\"data-framer-name\":\"Frame 1000002567\",name:\"Frame 1000002567\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rkP_A8uf4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6296.9),src:\"https://framerusercontent.com/images/phfu4MfsCjxtRGPpGv1U8itLfFY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/phfu4MfsCjxtRGPpGv1U8itLfFY.png\"},className:\"framer-fqrwx3\",\"data-framer-name\":\"profile 1\",name:\"profile 1\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qg1SKmpRD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"32px\"},children:\"Pr\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"32px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, rgb(245, 245, 245))\"},children:\"PR\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:\"Public \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:\"Relations\"})]}),className:\"framer-15uq1bc\",fonts:[\"GF;Anton-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\"},children:\"Businesses and other organisations need a strong corporate narrative that builds reputation by telling a consistent story in a compelling way.\\xa0 We build reputational equity via corporate positioning and profiling, to shape and inform how stakeholders perceive an organisation.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\"},children:\"That\u2019s how we partner with clients to maximise reputations, perceptions and sentiment.\"})]}),className:\"framer-vwfrtp\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1htar3\",\"data-framer-name\":\"Line\",name:\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ulp5g\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k4b7su\",\"data-framer-name\":\"Frame 1000002566\",name:\"Frame 1000002566\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rkP_A8uf4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6296.9),src:\"https://framerusercontent.com/images/xuILRKyn1mPN3DgRojAoLdAr6ro.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/xuILRKyn1mPN3DgRojAoLdAr6ro.png\"},className:\"framer-4ylb5s\",\"data-framer-name\":\"tactics 1\",name:\"tactics 1\",transformTemplate:transformTemplate2})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qg1SKmpRD:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:\"CRISIS COMMUNICATIONS \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:\"& ISSUE MANAGEMENT\"})]})},rkP_A8uf4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:\"CRISIS \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:\"COMMUNICATIONS \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:\"& ISSUE \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:\"MANAGEMENT\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:\"CRISIS COMMUNICATIONS \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(193, 42, 46))\",\"--framer-text-transform\":\"uppercase\"},children:\"& ISSUE MANAGEMENT\"})]}),className:\"framer-1hltm9g\",fonts:[\"GF;Anton-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\"},children:\"When a crisis or issue arises, time is of the essence. Every move you make and every word you say counts and there is simply no room for mistakes. In the eye of such a storm, you can count on our immediate assistance and support.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\"},children:\"We have a solid team of crisis and issues management specialists with decades of experience and proven expertise.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23))\"},children:\"Not only in helping numerous entities and organisations weather the storm, but also in letting them come out stronger because of it.\"})]}),className:\"framer-1m62ej9\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ylszyx\",\"data-framer-name\":\"Discover\",id:elementId8,name:\"Discover\",ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l2ivfl\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kxa1ik\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qg1SKmpRD:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"We are an integrated agency with \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"reputation management, PR and \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"content at our core.\"})]}),viewBox:\"0 0 358 94\"},rkP_A8uf4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"26.048430727387284px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"We are an integrated agency \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"26.048430727387284px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"with reputation management, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"26.048430727387284px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"PR and content at our core.\"})]}),viewBox:\"0 0 319 94\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"33.538866610458875px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"CREATING COMMUNICATIONS STRATEGIES \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"33.538866610458875px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"TO MEET AND SUPPORT YOUR BUSINESS \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"33.538866610458875px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"OBJECTIVES\"})]}),className:\"framer-kjey2s hidden-1cww334\",fonts:[\"GF;Anton-regular\"],verticalAlignment:\"top\",viewBox:\"0 0 503 121\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"27.922838993402017px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"We are an integrated agency \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"27.922838993402017px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"with reputation management, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"27.922838993402017px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b92efc33-3246-4525-adc1-724299866d2f, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"PR and content at our core.\"})]}),className:\"framer-1a9g4vr hidden-72rtr7 hidden-21wxdw hidden-ei21sn\",fonts:[\"GF;Anton-regular\"],verticalAlignment:\"top\",viewBox:\"0 0 342 101\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Solid. Consistent. Steadfast. Innovative. Creative. Dynamic. It\u2019s this combination, underpinned by passion, focus on delivery and sound thinking that is embedded in our DNA.\"})}),className:\"framer-1bw63j8 hidden-1cww334\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our ambition is to create change through brave, relevant work by pushing boundaries to help our clients adapt and win in a constantly evolving world.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We marry the power of immersion with the rigour of knowledge, creating a deep understanding and shaping perceptions to transform the opinions, beliefs and behaviors of those who matter most to our clients.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We are committed to delivering solid advisory, deep insights, bold ideas and broad engagement to leading organizations and brands through seamless integrated communications.\"})]}),className:\"framer-cd59by hidden-72rtr7 hidden-21wxdw hidden-ei21sn\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RouZYm9VY\"},implicitPathVariables:undefined},{href:{webPageId:\"RouZYm9VY\"},implicitPathVariables:undefined},{href:{webPageId:\"RouZYm9VY\"},implicitPathVariables:undefined},{href:{webPageId:\"RouZYm9VY\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y774xt-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{odb0bWURU:resolvedLinks3[2]},qg1SKmpRD:{odb0bWURU:resolvedLinks3[3]},rkP_A8uf4:{odb0bWURU:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ButtonsButton,{height:\"100%\",id:\"ADsXJ01qz\",layoutId:\"ADsXJ01qz\",odb0bWURU:resolvedLinks3[0],Q7omvm8K3:false,Rm087qODt:\"FIND OUT MORE\",variant:\"Cok710zdM\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1613,sizes:\"min(100vw - 48px, 1200px)\",src:\"https://framerusercontent.com/images/UKyLh5j4oEukDGEpwYv2SXtXo.jpg\",srcSet:\"https://framerusercontent.com/images/UKyLh5j4oEukDGEpwYv2SXtXo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UKyLh5j4oEukDGEpwYv2SXtXo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UKyLh5j4oEukDGEpwYv2SXtXo.jpg 1613w\"}},rkP_A8uf4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7762.4),pixelHeight:1080,pixelWidth:1613,sizes:\"calc(min(100vw - 128px, 1200px) * 0.4897)\",src:\"https://framerusercontent.com/images/UKyLh5j4oEukDGEpwYv2SXtXo.jpg\",srcSet:\"https://framerusercontent.com/images/UKyLh5j4oEukDGEpwYv2SXtXo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UKyLh5j4oEukDGEpwYv2SXtXo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UKyLh5j4oEukDGEpwYv2SXtXo.jpg 1613w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1613,sizes:\"calc(min(100vw - 128px, 1200px) / 2)\",src:\"https://framerusercontent.com/images/UKyLh5j4oEukDGEpwYv2SXtXo.jpg\",srcSet:\"https://framerusercontent.com/images/UKyLh5j4oEukDGEpwYv2SXtXo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UKyLh5j4oEukDGEpwYv2SXtXo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UKyLh5j4oEukDGEpwYv2SXtXo.jpg 1613w\"},className:\"framer-pri500\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rkP_A8uf4:{y:8159.9}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:236,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ujyuia-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{variant:\"LgqP0G04V\"},rkP_A8uf4:{variant:\"eFFRRv1qg\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"vrXG_R_nT\",layoutId:\"vrXG_R_nT\",style:{width:\"100%\"},variant:\"C7VVUgxpD\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rkP_A8uf4:{y:8395.9}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2pkypf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JTJm34Zqu:{variant:\"s3dAJNPdA\"},rkP_A8uf4:{variant:\"zaw7eBM8R\"}},children:/*#__PURE__*/_jsx(FooterCopyright,{height:\"100%\",id:\"IedberlKy\",layoutId:\"IedberlKy\",style:{width:\"100%\"},variant:\"W0DFqA_ZT\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-oNFtx { background: var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23)) /* {\"name\":\"Black\"} */; }`,\".framer-oNFtx.framer-lux5qc, .framer-oNFtx .framer-lux5qc { display: block; }\",\".framer-oNFtx.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-5952c664-c824-4d7e-8949-77447080c60d, #171717); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-oNFtx .framer-oiko23-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-oNFtx .framer-vi1zhz { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: 100vh; justify-content: flex-start; overflow: hidden; padding: 75px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-oNFtx .framer-p15jnt { align-content: flex-end; align-items: flex-end; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oNFtx .framer-a5kag6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oNFtx .framer-3xze7v { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-around; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oNFtx .framer-15gnxj9 { flex: none; height: 166px; overflow: visible; position: relative; width: 163px; }\",\".framer-oNFtx .framer-1f8q6tv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 24px; overflow: visible; padding: 0px; position: absolute; top: 12px; width: min-content; }\",\".framer-oNFtx .framer-177k2nz, .framer-oNFtx .framer-18us7r1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-oNFtx .framer-1usa467, .framer-oNFtx .framer-16m8izb, .framer-oNFtx .framer-o9dp0w, .framer-oNFtx .framer-1w3xsp1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oNFtx .framer-13pak9g { flex: none; height: 168px; left: -1px; position: absolute; top: -1px; width: 3px; }\",\".framer-oNFtx .framer-1a18cph { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 67px; justify-content: space-between; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 25px; width: 1fr; }\",\".framer-oNFtx .framer-rdh3wa, .framer-oNFtx .framer-4qmqbc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 67px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-oNFtx .framer-2psl2u, .framer-oNFtx .framer-1wxoryk { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oNFtx .framer-1yx7wzs { flex: none; height: 3px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-oNFtx .framer-186rb23 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-oNFtx .framer-t36cp-container, .framer-oNFtx .framer-wexpt1-container, .framer-oNFtx .framer-6rsfyb-container, .framer-oNFtx .framer-y774xt-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-oNFtx .framer-8346gp { align-content: center; align-items: center; aspect-ratio: 2.5531914893617023 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: var(--framer-aspect-ratio-supported, 470px); justify-content: center; overflow: hidden; padding: 75px; pointer-events: auto; position: relative; width: 100%; z-index: 0; }\",\".framer-oNFtx .framer-11fc0p1, .framer-oNFtx .framer-a3lqdm, .framer-oNFtx .framer-jbf3ym, .framer-oNFtx .framer-14e7pud, .framer-oNFtx .framer-1et9mbq, .framer-oNFtx .framer-1vk4cu2, .framer-oNFtx .framer-vwfrtp, .framer-oNFtx .framer-1m62ej9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oNFtx .framer-1kaxdom { align-content: center; align-items: center; background-color: var(--token-5952c664-c824-4d7e-8949-77447080c60d, #171717); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 753px; justify-content: center; overflow: visible; padding: 80px 69px 80px 69px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-oNFtx .framer-iaappg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oNFtx .framer-166ehzi { aspect-ratio: 1.163575042158516 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 439px); position: relative; width: 1px; }\",\".framer-oNFtx .framer-1167jqu, .framer-oNFtx .framer-1kxa1ik { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 29px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oNFtx .framer-10qpu27, .framer-oNFtx .framer-1yf6ha3, .framer-oNFtx .framer-kjey2s, .framer-oNFtx .framer-1a9g4vr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-height: 100%; position: relative; white-space: pre; width: 100%; }\",\".framer-oNFtx .framer-10eyhg5, .framer-oNFtx .framer-157z702, .framer-oNFtx .framer-1bw63j8, .framer-oNFtx .framer-cd59by { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-height: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oNFtx .framer-1js8hnl { align-content: center; align-items: center; background-color: var(--token-b92efc33-3246-4525-adc1-724299866d2f, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px; position: relative; scroll-margin-top: 150px; width: 100%; z-index: 1; }\",\".framer-oNFtx .framer-1j3bbyv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oNFtx .framer-1hv5u9p { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 60px; max-height: 100%; position: relative; white-space: pre; width: auto; }\",\".framer-oNFtx .framer-2zocyr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 100px; max-height: 100%; position: relative; white-space: pre; width: auto; }\",\".framer-oNFtx .framer-1nol4ak { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 216px; max-height: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oNFtx .framer-5m65el { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oNFtx .framer-jl9xne-container { aspect-ratio: 22.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 67px); position: relative; width: 100%; }\",\".framer-oNFtx .framer-lp0okb { aspect-ratio: 3.12 / 1; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 78px; }\",\".framer-oNFtx .framer-13jf3bp { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 64px); position: relative; width: 64px; }\",\".framer-oNFtx .framer-18piv9x { aspect-ratio: 1.278688524590164 / 1; height: var(--framer-aspect-ratio-supported, 61px); position: relative; width: 78px; }\",\".framer-oNFtx .framer-1fope0s { aspect-ratio: 4.588235294117647 / 1; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 92px; }\",\".framer-oNFtx .framer-1k6sjcd { aspect-ratio: 3.7142857142857144 / 1; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 78px; }\",\".framer-oNFtx .framer-1aipf5u { aspect-ratio: 4.105263157894737 / 1; height: var(--framer-aspect-ratio-supported, 19px); position: relative; width: 78px; }\",\".framer-oNFtx .framer-1pctsgg { aspect-ratio: 1.6956521739130435 / 1; height: var(--framer-aspect-ratio-supported, 46px); position: relative; width: 78px; }\",\".framer-oNFtx .framer-9ktj6u { aspect-ratio: 1.7333333333333334 / 1; height: var(--framer-aspect-ratio-supported, 45px); position: relative; width: 78px; }\",\".framer-oNFtx .framer-vfem24 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 56px); position: relative; width: 56px; }\",\".framer-oNFtx .framer-1n988hz { aspect-ratio: 4.333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 86px; }\",\".framer-oNFtx .framer-13nlrdg { aspect-ratio: 7.8 / 1; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 117px; }\",\".framer-oNFtx .framer-vgc5so { aspect-ratio: 1.164179104477612 / 1; height: var(--framer-aspect-ratio-supported, 67px); position: relative; width: 78px; }\",\".framer-oNFtx .framer-139lr0u { aspect-ratio: 4.875 / 1; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 97px; }\",\".framer-oNFtx .framer-1gewmbv { aspect-ratio: 3.12 / 1; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 98px; }\",\".framer-oNFtx .framer-7dlqhw { aspect-ratio: 2 / 1; height: var(--framer-aspect-ratio-supported, 39px); position: relative; width: 78px; }\",\".framer-oNFtx .framer-1m17yp7 { aspect-ratio: 0.6964285714285714 / 1; height: var(--framer-aspect-ratio-supported, 62px); position: relative; width: 43px; }\",\".framer-oNFtx .framer-ye7dpw { aspect-ratio: 1.6595744680851063 / 1; height: var(--framer-aspect-ratio-supported, 47px); position: relative; width: 78px; }\",\".framer-oNFtx .framer-10cf2ls { aspect-ratio: 3.9 / 1; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 92px; }\",\".framer-oNFtx .framer-33mzs1 { aspect-ratio: 2.689655172413793 / 1; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 96px; }\",\".framer-oNFtx .framer-y3zqc7 { aspect-ratio: 4.588235294117647 / 1; height: var(--framer-aspect-ratio-supported, 27px); position: relative; width: 123px; }\",\".framer-oNFtx .framer-1dsh7vg { aspect-ratio: 2.888888888888889 / 1; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 101px; }\",\".framer-oNFtx .framer-1f4nzz4 { aspect-ratio: 1.9024390243902438 / 1; height: var(--framer-aspect-ratio-supported, 38px); position: relative; width: 72px; }\",\".framer-oNFtx .framer-b8nn2k { aspect-ratio: 2.75 / 1; height: var(--framer-aspect-ratio-supported, 39px); overflow: visible; position: relative; width: 107px; }\",\".framer-oNFtx .framer-21lnr4 { aspect-ratio: 2.75 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 108px; }\",\".framer-oNFtx .framer-1h9bw4t, .framer-oNFtx .framer-1lpevgz, .framer-oNFtx .framer-d3u9e8, .framer-oNFtx .framer-ozbdx, .framer-oNFtx .framer-w6tsxs, .framer-oNFtx .framer-1klj4cn, .framer-oNFtx .framer-fzyhmj, .framer-oNFtx .framer-q3s8zp, .framer-oNFtx .framer-cyoay0, .framer-oNFtx .framer-q8emuo { aspect-ratio: 2.75 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 110px; }\",\".framer-oNFtx .framer-dutgtw-container { aspect-ratio: 22.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); position: relative; width: 100%; }\",\".framer-oNFtx .framer-1wdjvxu { aspect-ratio: 3.12 / 1; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 94px; }\",\".framer-oNFtx .framer-1yzcxh4 { aspect-ratio: 5.2 / 1; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 102px; }\",\".framer-oNFtx .framer-ot01ef { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 51px); position: relative; width: 51px; }\",\".framer-oNFtx .framer-1qnd4oo { aspect-ratio: 4.588235294117647 / 1; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 105px; }\",\".framer-oNFtx .framer-19ym91d, .framer-oNFtx .framer-akvath { aspect-ratio: 2.108108108108108 / 1; height: var(--framer-aspect-ratio-supported, 37px); position: relative; width: 78px; }\",\".framer-oNFtx .framer-1hy7f7h { aspect-ratio: 4.105263157894737 / 1; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 115px; }\",\".framer-oNFtx .framer-p1wuf4 { aspect-ratio: 6 / 1; height: var(--framer-aspect-ratio-supported, 14px); position: relative; width: 85px; }\",\".framer-oNFtx .framer-xmw3a2 { aspect-ratio: 2.7857142857142856 / 1; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 78px; }\",\".framer-oNFtx .framer-a6i0mo { aspect-ratio: 3.391304347826087 / 1; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 102px; }\",\".framer-oNFtx .framer-1a1hsok { aspect-ratio: 3.2054794520547945 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 147px; }\",\".framer-oNFtx .framer-q8zmdm { aspect-ratio: 3.639344262295082 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 167px; }\",\".framer-oNFtx .framer-1czwbxk { aspect-ratio: 4.363636363636363 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 201px; }\",\".framer-oNFtx .framer-ebre11 { aspect-ratio: 2.0084745762711864 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 92px; }\",\".framer-oNFtx .framer-12n1syn { aspect-ratio: 3.039473684210526 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 140px; }\",\".framer-oNFtx .framer-1lozgxp { aspect-ratio: 2.823529411764706 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 130px; }\",\".framer-oNFtx .framer-bnpspk { aspect-ratio: 3.3013698630136985 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 152px; }\",\".framer-oNFtx .framer-1w6ova { aspect-ratio: 2.4838709677419355 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 114px; }\",\".framer-oNFtx .framer-sj9jft { aspect-ratio: 1.18 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 54px; }\",\".framer-oNFtx .framer-1v7f4ws { aspect-ratio: 2.525252525252525 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 116px; }\",\".framer-oNFtx .framer-loxvtp { aspect-ratio: 2.9431818181818183 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 135px; }\",\".framer-oNFtx .framer-1vjr2s6 { aspect-ratio: 4.109090909090909 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 189px; }\",\".framer-oNFtx .framer-i347lz { aspect-ratio: 3.013157894736842 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 139px; }\",\".framer-oNFtx .framer-19c9l59 { aspect-ratio: 3.732142857142857 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 172px; }\",\".framer-oNFtx .framer-p3668y { aspect-ratio: 2.6666666666666665 / 1; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 73px; }\",\".framer-oNFtx .framer-n3xkmm { align-content: center; align-items: center; background-color: var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, #fcfcfa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 70px 60px 70px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-oNFtx .framer-pvyl7k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oNFtx .framer-r9azux { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: sticky; top: 160px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-oNFtx .framer-1kab0xv, .framer-oNFtx .framer-15uq1bc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-height: 100%; position: relative; white-space: pre; width: auto; }\",\".framer-oNFtx .framer-4epsjl-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-oNFtx .framer-1u16yhq-container { flex: none; height: auto; position: relative; width: 475px; }\",\".framer-oNFtx .framer-zues3c { align-content: center; align-items: center; aspect-ratio: 2.5531914893617023 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: var(--framer-aspect-ratio-supported, 470px); justify-content: space-between; overflow: hidden; padding: 100px; pointer-events: auto; position: relative; width: 100%; z-index: 0; }\",\".framer-oNFtx .framer-1pfdx8b { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oNFtx .framer-n8jkcc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 561px; }\",\".framer-oNFtx .framer-10lkjkg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oNFtx .framer-b8sc1i { align-content: center; align-items: center; background-color: var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, #fcfcfa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 80px 69px 80px 69px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-oNFtx .framer-17ex8cs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oNFtx .framer-1ybijzy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 100px; max-height: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oNFtx .framer-bua25t { background-color: #8c8c8c; flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-oNFtx .framer-1ejlasj-container, .framer-oNFtx .framer-2pkypf-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-oNFtx .framer-1y7va0q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oNFtx .framer-16gjl1l, .framer-oNFtx .framer-1v0qbiv, .framer-oNFtx .framer-7ulp5g { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oNFtx .framer-tjypb9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 60px; }\",\".framer-oNFtx .framer-bxtcxk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 77px; max-height: 100%; position: relative; white-space: pre-wrap; width: 166px; word-break: break-word; word-wrap: break-word; }\",\".framer-oNFtx .framer-kf3ekx, .framer-oNFtx .framer-1htar3 { align-self: stretch; background-color: #8c8c8c; flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-oNFtx .framer-1exoaz3, .framer-oNFtx .framer-1k4b7su { aspect-ratio: 1 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: hidden; position: relative; width: 60px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oNFtx .framer-fqrwx3 { aspect-ratio: 1 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 50%; position: absolute; transform: translateX(-50%); width: 60px; }\",\".framer-oNFtx .framer-4ylb5s { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 50%; position: absolute; top: 51%; transform: translate(-50%, -50%); width: 60px; }\",\".framer-oNFtx .framer-1hltm9g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 77px; max-height: 100%; position: relative; white-space: pre-wrap; width: 304px; word-break: break-word; word-wrap: break-word; }\",\".framer-oNFtx .framer-1ylszyx { align-content: center; align-items: center; background-color: var(--token-5952c664-c824-4d7e-8949-77447080c60d, #171717); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 64px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-oNFtx .framer-l2ivfl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oNFtx .framer-pri500 { align-self: stretch; flex: none; height: auto; position: relative; width: 50%; }\",\".framer-oNFtx .framer-ujyuia-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oNFtx.framer-72rtr7, .framer-oNFtx .framer-vi1zhz, .framer-oNFtx .framer-p15jnt, .framer-oNFtx .framer-1f8q6tv, .framer-oNFtx .framer-177k2nz, .framer-oNFtx .framer-18us7r1, .framer-oNFtx .framer-rdh3wa, .framer-oNFtx .framer-4qmqbc, .framer-oNFtx .framer-186rb23, .framer-oNFtx .framer-8346gp, .framer-oNFtx .framer-1kaxdom, .framer-oNFtx .framer-iaappg, .framer-oNFtx .framer-1167jqu, .framer-oNFtx .framer-1js8hnl, .framer-oNFtx .framer-1j3bbyv, .framer-oNFtx .framer-5m65el, .framer-oNFtx .framer-n3xkmm, .framer-oNFtx .framer-r9azux, .framer-oNFtx .framer-1pfdx8b, .framer-oNFtx .framer-n8jkcc, .framer-oNFtx .framer-10lkjkg, .framer-oNFtx .framer-b8sc1i, .framer-oNFtx .framer-17ex8cs, .framer-oNFtx .framer-1y7va0q, .framer-oNFtx .framer-16gjl1l, .framer-oNFtx .framer-1v0qbiv, .framer-oNFtx .framer-7ulp5g, .framer-oNFtx .framer-1ylszyx, .framer-oNFtx .framer-l2ivfl, .framer-oNFtx .framer-1kxa1ik { gap: 0px; } .framer-oNFtx.framer-72rtr7 > *, .framer-oNFtx .framer-1kaxdom > *, .framer-oNFtx .framer-n3xkmm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oNFtx.framer-72rtr7 > :first-child, .framer-oNFtx .framer-1f8q6tv > :first-child, .framer-oNFtx .framer-177k2nz > :first-child, .framer-oNFtx .framer-18us7r1 > :first-child, .framer-oNFtx .framer-rdh3wa > :first-child, .framer-oNFtx .framer-4qmqbc > :first-child, .framer-oNFtx .framer-186rb23 > :first-child, .framer-oNFtx .framer-8346gp > :first-child, .framer-oNFtx .framer-1kaxdom > :first-child, .framer-oNFtx .framer-1167jqu > :first-child, .framer-oNFtx .framer-1j3bbyv > :first-child, .framer-oNFtx .framer-5m65el > :first-child, .framer-oNFtx .framer-n3xkmm > :first-child, .framer-oNFtx .framer-n8jkcc > :first-child, .framer-oNFtx .framer-b8sc1i > :first-child, .framer-oNFtx .framer-17ex8cs > :first-child, .framer-oNFtx .framer-16gjl1l > :first-child, .framer-oNFtx .framer-1v0qbiv > :first-child, .framer-oNFtx .framer-7ulp5g > :first-child, .framer-oNFtx .framer-1ylszyx > :first-child, .framer-oNFtx .framer-1kxa1ik > :first-child { margin-top: 0px; } .framer-oNFtx.framer-72rtr7 > :last-child, .framer-oNFtx .framer-1f8q6tv > :last-child, .framer-oNFtx .framer-177k2nz > :last-child, .framer-oNFtx .framer-18us7r1 > :last-child, .framer-oNFtx .framer-rdh3wa > :last-child, .framer-oNFtx .framer-4qmqbc > :last-child, .framer-oNFtx .framer-186rb23 > :last-child, .framer-oNFtx .framer-8346gp > :last-child, .framer-oNFtx .framer-1kaxdom > :last-child, .framer-oNFtx .framer-1167jqu > :last-child, .framer-oNFtx .framer-1j3bbyv > :last-child, .framer-oNFtx .framer-5m65el > :last-child, .framer-oNFtx .framer-n3xkmm > :last-child, .framer-oNFtx .framer-n8jkcc > :last-child, .framer-oNFtx .framer-b8sc1i > :last-child, .framer-oNFtx .framer-17ex8cs > :last-child, .framer-oNFtx .framer-16gjl1l > :last-child, .framer-oNFtx .framer-1v0qbiv > :last-child, .framer-oNFtx .framer-7ulp5g > :last-child, .framer-oNFtx .framer-1ylszyx > :last-child, .framer-oNFtx .framer-1kxa1ik > :last-child { margin-bottom: 0px; } .framer-oNFtx .framer-vi1zhz > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-oNFtx .framer-vi1zhz > :first-child, .framer-oNFtx .framer-p15jnt > :first-child, .framer-oNFtx .framer-iaappg > :first-child, .framer-oNFtx .framer-1js8hnl > :first-child, .framer-oNFtx .framer-r9azux > :first-child, .framer-oNFtx .framer-1pfdx8b > :first-child, .framer-oNFtx .framer-10lkjkg > :first-child, .framer-oNFtx .framer-1y7va0q > :first-child, .framer-oNFtx .framer-l2ivfl > :first-child { margin-left: 0px; } .framer-oNFtx .framer-vi1zhz > :last-child, .framer-oNFtx .framer-p15jnt > :last-child, .framer-oNFtx .framer-iaappg > :last-child, .framer-oNFtx .framer-1js8hnl > :last-child, .framer-oNFtx .framer-r9azux > :last-child, .framer-oNFtx .framer-1pfdx8b > :last-child, .framer-oNFtx .framer-10lkjkg > :last-child, .framer-oNFtx .framer-1y7va0q > :last-child, .framer-oNFtx .framer-l2ivfl > :last-child { margin-right: 0px; } .framer-oNFtx .framer-p15jnt > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-oNFtx .framer-1f8q6tv > *, .framer-oNFtx .framer-8346gp > *, .framer-oNFtx .framer-5m65el > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-oNFtx .framer-177k2nz > *, .framer-oNFtx .framer-18us7r1 > *, .framer-oNFtx .framer-rdh3wa > *, .framer-oNFtx .framer-4qmqbc > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-oNFtx .framer-186rb23 > *, .framer-oNFtx .framer-n8jkcc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-oNFtx .framer-iaappg > *, .framer-oNFtx .framer-1js8hnl > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-oNFtx .framer-1167jqu > *, .framer-oNFtx .framer-1kxa1ik > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-oNFtx .framer-1j3bbyv > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-oNFtx .framer-r9azux > *, .framer-oNFtx .framer-10lkjkg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oNFtx .framer-1pfdx8b > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-oNFtx .framer-b8sc1i > *, .framer-oNFtx .framer-1ylszyx > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-oNFtx .framer-17ex8cs > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-oNFtx .framer-1y7va0q > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-oNFtx .framer-16gjl1l > *, .framer-oNFtx .framer-1v0qbiv > *, .framer-oNFtx .framer-7ulp5g > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-oNFtx .framer-l2ivfl > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-oNFtx { background: var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23)) /* {\"name\":\"Black\"} */; } .framer-oNFtx.framer-72rtr7 { width: 810px; } .framer-oNFtx .framer-p15jnt { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; width: 445px; } .framer-oNFtx .framer-a5kag6 { width: 100%; } .framer-oNFtx .framer-3xze7v { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; width: 100%; } .framer-oNFtx .framer-186rb23 { align-content: flex-end; align-items: flex-end; align-self: unset; height: 85px; } .framer-oNFtx .framer-8346gp { gap: 0px; height: var(--framer-aspect-ratio-supported, 318px); padding: 40px; } .framer-oNFtx .framer-11fc0p1 { white-space: pre; } .framer-oNFtx .framer-166ehzi { aspect-ratio: 1.1725417439703154 / 1; height: var(--framer-aspect-ratio-supported, 270px); } .framer-oNFtx .framer-1167jqu, .framer-oNFtx .framer-1kxa1ik { gap: 23px; } .framer-oNFtx .framer-1js8hnl { flex-direction: column; gap: 61px; } .framer-oNFtx .framer-1j3bbyv { flex: none; flex-direction: row; gap: 37px; width: 100%; } .framer-oNFtx .framer-1hv5u9p, .framer-oNFtx .framer-1ybijzy, .framer-oNFtx .framer-bxtcxk, .framer-oNFtx .framer-1hltm9g { height: auto; } .framer-oNFtx .framer-2zocyr { flex: 1 0 0px; height: auto; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-oNFtx .framer-5m65el { flex: none; width: 100%; } .framer-oNFtx .framer-n3xkmm { gap: unset; justify-content: space-between; } .framer-oNFtx .framer-pvyl7k { flex-direction: column; flex-wrap: wrap; gap: 72px; justify-content: center; max-width: unset; } .framer-oNFtx .framer-r9azux { flex: none; position: relative; top: unset; width: 100%; } .framer-oNFtx .framer-zues3c { aspect-ratio: unset; flex-direction: column; gap: 0px; height: min-content; justify-content: center; padding: 40px; } .framer-oNFtx .framer-1pfdx8b { flex: none; gap: 85px; width: 100%; } .framer-oNFtx .framer-n8jkcc { width: 421px; } .framer-oNFtx .framer-l2ivfl { align-content: flex-start; align-items: flex-start; height: 334px; } .framer-oNFtx .framer-pri500 { align-self: unset; height: 100%; width: 49%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oNFtx .framer-p15jnt, .framer-oNFtx .framer-3xze7v, .framer-oNFtx .framer-8346gp, .framer-oNFtx .framer-1167jqu, .framer-oNFtx .framer-1js8hnl, .framer-oNFtx .framer-1j3bbyv, .framer-oNFtx .framer-n3xkmm, .framer-oNFtx .framer-pvyl7k, .framer-oNFtx .framer-zues3c, .framer-oNFtx .framer-1pfdx8b, .framer-oNFtx .framer-1kxa1ik { gap: 0px; } .framer-oNFtx .framer-p15jnt > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-oNFtx .framer-p15jnt > :first-child, .framer-oNFtx .framer-8346gp > :first-child, .framer-oNFtx .framer-1167jqu > :first-child, .framer-oNFtx .framer-1js8hnl > :first-child, .framer-oNFtx .framer-pvyl7k > :first-child, .framer-oNFtx .framer-zues3c > :first-child, .framer-oNFtx .framer-1kxa1ik > :first-child { margin-top: 0px; } .framer-oNFtx .framer-p15jnt > :last-child, .framer-oNFtx .framer-8346gp > :last-child, .framer-oNFtx .framer-1167jqu > :last-child, .framer-oNFtx .framer-1js8hnl > :last-child, .framer-oNFtx .framer-pvyl7k > :last-child, .framer-oNFtx .framer-zues3c > :last-child, .framer-oNFtx .framer-1kxa1ik > :last-child { margin-bottom: 0px; } .framer-oNFtx .framer-3xze7v > *, .framer-oNFtx .framer-3xze7v > :first-child, .framer-oNFtx .framer-3xze7v > :last-child, .framer-oNFtx .framer-n3xkmm > *, .framer-oNFtx .framer-n3xkmm > :first-child, .framer-oNFtx .framer-n3xkmm > :last-child { margin: 0px; } .framer-oNFtx .framer-8346gp > *, .framer-oNFtx .framer-zues3c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oNFtx .framer-1167jqu > *, .framer-oNFtx .framer-1kxa1ik > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-oNFtx .framer-1js8hnl > * { margin: 0px; margin-bottom: calc(61px / 2); margin-top: calc(61px / 2); } .framer-oNFtx .framer-1j3bbyv > * { margin: 0px; margin-left: calc(37px / 2); margin-right: calc(37px / 2); } .framer-oNFtx .framer-1j3bbyv > :first-child, .framer-oNFtx .framer-1pfdx8b > :first-child { margin-left: 0px; } .framer-oNFtx .framer-1j3bbyv > :last-child, .framer-oNFtx .framer-1pfdx8b > :last-child { margin-right: 0px; } .framer-oNFtx .framer-pvyl7k > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-oNFtx .framer-1pfdx8b > * { margin: 0px; margin-left: calc(85px / 2); margin-right: calc(85px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-oNFtx { background: var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23)) /* {\"name\":\"Black\"} */; } .framer-oNFtx.framer-72rtr7 { width: 390px; } .framer-oNFtx .framer-oiko23-container, .framer-oNFtx .framer-jbf3ym { order: 0; } .framer-oNFtx .framer-vi1zhz { order: 1; padding: 0px 24px 80px 24px; } .framer-oNFtx .framer-p15jnt { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 19px; justify-content: flex-start; } .framer-oNFtx .framer-a5kag6, .framer-oNFtx .framer-t36cp-container { width: 100%; } .framer-oNFtx .framer-3xze7v { flex: none; flex-direction: column; height: 124px; width: 100%; } .framer-oNFtx .framer-15gnxj9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; padding: 0px; width: 100%; } .framer-oNFtx .framer-1a18cph { left: unset; order: 3; position: relative; top: unset; width: 100%; } .framer-oNFtx .framer-1yx7wzs { left: unset; order: 0; position: relative; right: unset; top: unset; width: 100%; } .framer-oNFtx .framer-186rb23 { align-self: unset; height: 44px; width: 100%; } .framer-oNFtx .framer-8346gp { aspect-ratio: unset; height: 380px; order: 2; padding: 24px 35px 25px 35px; } .framer-oNFtx .framer-11fc0p1 { white-space: pre; } .framer-oNFtx .framer-1kaxdom { height: min-content; order: 3; padding: 40px 24px 40px 24px; } .framer-oNFtx .framer-iaappg { flex-direction: column; justify-content: flex-start; max-width: unset; } .framer-oNFtx .framer-166ehzi { aspect-ratio: 1.1652470187393527 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 294px); order: 1; width: 100%; } .framer-oNFtx .framer-1167jqu { flex: none; flex-wrap: nowrap; gap: 28px; order: 0; width: 100%; } .framer-oNFtx .framer-1yf6ha3, .framer-oNFtx .framer-a3lqdm, .framer-oNFtx .framer-1a9g4vr { order: 1; } .framer-oNFtx .framer-157z702, .framer-oNFtx .framer-cd59by { order: 3; } .framer-oNFtx .framer-wexpt1-container, .framer-oNFtx .framer-y774xt-container { order: 4; } .framer-oNFtx .framer-1js8hnl { flex-direction: column; gap: 32px; order: 4; padding: 40px 24px 40px 24px; } .framer-oNFtx .framer-1j3bbyv { flex: none; gap: 21px; order: 0; width: 100%; } .framer-oNFtx .framer-1hv5u9p, .framer-oNFtx .framer-2zocyr { height: auto; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-oNFtx .framer-5m65el, .framer-oNFtx .framer-10lkjkg { flex: none; order: 1; width: 100%; } .framer-oNFtx .framer-jl9xne-container { aspect-ratio: unset; height: 60px; width: 1469px; } .framer-oNFtx .framer-dutgtw-container { height: var(--framer-aspect-ratio-supported, 61px); width: 1335px; } .framer-oNFtx .framer-n3xkmm { order: 5; padding: 40px 24px 40px 24px; } .framer-oNFtx .framer-pvyl7k { flex-direction: column; flex-wrap: wrap; gap: 69px; justify-content: center; max-width: unset; } .framer-oNFtx .framer-r9azux { flex: none; position: relative; top: unset; width: 100%; } .framer-oNFtx .framer-1kab0xv { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-oNFtx .framer-4epsjl-container { flex: none; width: 100%; } .framer-oNFtx .framer-zues3c { aspect-ratio: unset; flex-direction: column; flex-wrap: wrap; height: min-content; order: 6; padding: 50px 35px 50px 35px; } .framer-oNFtx .framer-1pfdx8b { flex: none; flex-direction: column; gap: 36px; justify-content: flex-start; width: 100%; } .framer-oNFtx .framer-n8jkcc { gap: 24px; order: 0; width: 100%; } .framer-oNFtx .framer-14e7pud { order: 2; } .framer-oNFtx .framer-6rsfyb-container { flex: 1 0 0px; width: 1px; } .framer-oNFtx .framer-b8sc1i { order: 7; padding: 40px 24px 40px 24px; } .framer-oNFtx .framer-1ybijzy { height: auto; } .framer-oNFtx .framer-1ylszyx { order: 8; padding: 40px 24px 40px 24px; } .framer-oNFtx .framer-l2ivfl { flex-direction: column; } .framer-oNFtx .framer-1kxa1ik { flex: none; flex-wrap: nowrap; gap: 28px; width: 100%; } .framer-oNFtx .framer-pri500 { align-self: unset; aspect-ratio: 2 / 1; height: var(--framer-aspect-ratio-supported, 171px); width: 100%; } .framer-oNFtx .framer-ujyuia-container { order: 9; } .framer-oNFtx .framer-2pkypf-container { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oNFtx .framer-p15jnt, .framer-oNFtx .framer-3xze7v, .framer-oNFtx .framer-15gnxj9, .framer-oNFtx .framer-iaappg, .framer-oNFtx .framer-1167jqu, .framer-oNFtx .framer-1js8hnl, .framer-oNFtx .framer-1j3bbyv, .framer-oNFtx .framer-pvyl7k, .framer-oNFtx .framer-zues3c, .framer-oNFtx .framer-1pfdx8b, .framer-oNFtx .framer-n8jkcc, .framer-oNFtx .framer-l2ivfl, .framer-oNFtx .framer-1kxa1ik { gap: 0px; } .framer-oNFtx .framer-p15jnt > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-oNFtx .framer-p15jnt > :first-child, .framer-oNFtx .framer-15gnxj9 > :first-child, .framer-oNFtx .framer-iaappg > :first-child, .framer-oNFtx .framer-1167jqu > :first-child, .framer-oNFtx .framer-1js8hnl > :first-child, .framer-oNFtx .framer-1j3bbyv > :first-child, .framer-oNFtx .framer-pvyl7k > :first-child, .framer-oNFtx .framer-1pfdx8b > :first-child, .framer-oNFtx .framer-n8jkcc > :first-child, .framer-oNFtx .framer-l2ivfl > :first-child, .framer-oNFtx .framer-1kxa1ik > :first-child { margin-top: 0px; } .framer-oNFtx .framer-p15jnt > :last-child, .framer-oNFtx .framer-15gnxj9 > :last-child, .framer-oNFtx .framer-iaappg > :last-child, .framer-oNFtx .framer-1167jqu > :last-child, .framer-oNFtx .framer-1js8hnl > :last-child, .framer-oNFtx .framer-1j3bbyv > :last-child, .framer-oNFtx .framer-pvyl7k > :last-child, .framer-oNFtx .framer-1pfdx8b > :last-child, .framer-oNFtx .framer-n8jkcc > :last-child, .framer-oNFtx .framer-l2ivfl > :last-child, .framer-oNFtx .framer-1kxa1ik > :last-child { margin-bottom: 0px; } .framer-oNFtx .framer-3xze7v > *, .framer-oNFtx .framer-3xze7v > :first-child, .framer-oNFtx .framer-3xze7v > :last-child, .framer-oNFtx .framer-zues3c > *, .framer-oNFtx .framer-zues3c > :first-child, .framer-oNFtx .framer-zues3c > :last-child { margin: 0px; } .framer-oNFtx .framer-15gnxj9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-oNFtx .framer-iaappg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-oNFtx .framer-1167jqu > *, .framer-oNFtx .framer-1kxa1ik > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-oNFtx .framer-1js8hnl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-oNFtx .framer-1j3bbyv > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-oNFtx .framer-pvyl7k > * { margin: 0px; margin-bottom: calc(69px / 2); margin-top: calc(69px / 2); } .framer-oNFtx .framer-1pfdx8b > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-oNFtx .framer-n8jkcc > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-oNFtx .framer-l2ivfl > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }}`,`@media (min-width: 1440px) { .${metadata.bodyClassName}-framer-oNFtx { background: var(--token-5952c664-c824-4d7e-8949-77447080c60d, rgb(23, 23, 23)) /* {\"name\":\"Black\"} */; } .framer-oNFtx.framer-72rtr7 { width: 1440px; } .framer-oNFtx .framer-a5kag6, .framer-oNFtx .framer-n8jkcc { flex: 1 0 0px; width: 1px; } .framer-oNFtx .framer-8346gp, .framer-oNFtx .framer-zues3c { aspect-ratio: unset; height: 470px; } .framer-oNFtx .framer-166ehzi { flex: none; height: var(--framer-aspect-ratio-supported, 593px); width: 57%; } .framer-oNFtx .framer-1167jqu { height: 593px; } .framer-oNFtx .framer-1js8hnl { align-content: flex-start; align-items: flex-start; gap: 100px; } .framer-oNFtx .framer-1j3bbyv { align-self: stretch; flex: none; gap: 30px; height: auto; justify-content: flex-start; order: 0; width: 321px; } .framer-oNFtx .framer-2zocyr, .framer-oNFtx .framer-1nol4ak { height: auto; } .framer-oNFtx .framer-5m65el, .framer-oNFtx .framer-bua25t, .framer-oNFtx .framer-kf3ekx { order: 1; } .framer-oNFtx .framer-1ybijzy, .framer-oNFtx .framer-16gjl1l, .framer-oNFtx .framer-1kxa1ik { order: 0; } .framer-oNFtx .framer-1y7va0q, .framer-oNFtx .framer-1htar3 { order: 3; } .framer-oNFtx .framer-1v0qbiv { order: 2; } .framer-oNFtx .framer-7ulp5g { order: 4; } .framer-oNFtx .framer-l2ivfl { align-content: flex-start; align-items: flex-start; gap: 88px; } .framer-oNFtx .framer-pri500 { align-self: unset; height: 374px; order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oNFtx .framer-1js8hnl, .framer-oNFtx .framer-1j3bbyv, .framer-oNFtx .framer-l2ivfl { gap: 0px; } .framer-oNFtx .framer-1js8hnl > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-oNFtx .framer-1js8hnl > :first-child, .framer-oNFtx .framer-l2ivfl > :first-child { margin-left: 0px; } .framer-oNFtx .framer-1js8hnl > :last-child, .framer-oNFtx .framer-l2ivfl > :last-child { margin-right: 0px; } .framer-oNFtx .framer-1j3bbyv > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-oNFtx .framer-1j3bbyv > :first-child { margin-top: 0px; } .framer-oNFtx .framer-1j3bbyv > :last-child { margin-bottom: 0px; } .framer-oNFtx .framer-l2ivfl > * { margin: 0px; margin-left: calc(88px / 2); margin-right: calc(88px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6125\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rkP_A8uf4\":{\"layout\":[\"fixed\",\"auto\"]},\"JTJm34Zqu\":{\"layout\":[\"fixed\",\"auto\"]},\"qg1SKmpRD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-oNFtx\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6125,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Anton\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/anton/v25/1Ptgg87LROyAm0Kx8i4gS7lu.woff2\",weight:\"400\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\",weight:\"400\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"}]},...NavigationNavigationFonts,...ButtonsButtonFonts,...TickerFonts,...AccordianFonts,...NonAccordianFonts,...AccordianMobileOnlyFonts,...FooterFooterFonts,...FooterCopyrightFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rkP_A8uf4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JTJm34Zqu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qg1SKmpRD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"6125\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "urBAAigB,IAAMA,GAAW,GAAG,EAA6sB,IAAMC,GAAE,CAAC,GAAG,GAAG,IAAI,EAAE,EAAE,GAAG,EAAE,GAAG,EAM/vC,SAASC,GAAkB,EAAED,EAAE,CAAC,OAAOA,EAAE,GAAG,IAAIA,GAAG,CAAC,CCNG,IAAME,GAAW,CAAC,EAAEC,EAAEC,OAAO,EAAE,EAAEA,EAAE,EAAED,GAAG,GAAG,EAAEC,EAAE,EAAED,IAAI,EAAE,EAAEA,GAAG,EAAQC,GAAE,KAAWC,GAAE,GAAG,SAASC,GAAgB,EAAEH,EAAEI,EAAEC,EAAEC,EAAE,CAAC,IAAIC,EAAMC,EAAMC,EAAE,EAAE,GAAGD,EAAER,GAAGI,EAAEJ,GAAG,EAAEO,EAAER,GAAWS,EAAEH,EAAEC,CAAC,EAAE,EAAEC,EAAE,EAAEH,EAAEI,EAAER,EAAEQ,QAAQ,KAAK,IAAID,CAAC,EAAEN,IAAG,EAAEQ,EAAEP,IAAG,OAAOM,CAAC,CAAC,SAASE,GAAYV,EAAEC,EAAEC,EAAEE,EAAE,CAAC,GAAGJ,IAAIC,GAAGC,IAAIE,EAAE,OAAOO,GAAE,IAAMC,EAASC,GAAGV,GAAgBU,EAAE,EAAE,EAAEb,EAAEE,CAAC,EAAE,OAAOW,GAAOA,IAAJ,GAAWA,IAAJ,EAAMA,EAAEd,GAAWa,EAASC,CAAC,EAAEZ,EAAEG,CAAC,CAAC,CCAjO,IAAMU,GAAE,CAAC,KAAKC,GAAE,IAAI,GAAG,IAAI,CAAC,EAAE,UAAUA,GAAE,IAAI,EAAE,EAAE,CAAC,EAAE,cAAcA,GAAE,IAAI,EAAE,IAAI,CAAC,EAAE,WAAWA,GAAE,EAAE,EAAE,IAAI,CAAC,CAAC,ECAwb,SAASC,GAAOC,EAAEC,EAAE,CAAC,IAAIC,EAAE,CAAC,EAAE,QAAQC,KAAKH,EAAE,OAAO,UAAU,eAAe,KAAKA,EAAEG,CAAC,GAAGF,EAAE,QAAQE,CAAC,EAAE,IAAID,EAAEC,CAAC,EAAEH,EAAEG,CAAC,GAAG,GAASH,GAAN,MAAsB,OAAO,OAAO,uBAA3B,WAAiD,CAAC,IAAII,EAAE,EAAE,IAAID,EAAE,OAAO,sBAAsBH,CAAC,EAAEI,EAAED,EAAE,OAAOC,IAAIH,EAAE,QAAQE,EAAEC,CAAC,CAAC,EAAE,GAAG,OAAO,UAAU,qBAAqB,KAAKJ,EAAEG,EAAEC,CAAC,CAAC,IAAIF,EAAEC,EAAEC,CAAC,CAAC,EAAEJ,EAAEG,EAAEC,CAAC,CAAC,GAAG,OAAOF,CAAC,CCArkC,IAAIG,GAAE,CAAC,EAAE,OAAO,eAAeA,GAAE,aAAa,CAAC,MAAM,EAAI,CAAC,EAAEA,GAAE,QAAQ,UAAU,CAAC,EAAEA,GAAE,UAAU,UAAU,CAAC,EAAE,IAAMC,GAAED,GAAE,WAAWE,GAAEF,GAAE,QAAQG,GAAEH,GAAE,UCAlE,IAAMI,GAAE,EAAE,SAASC,GAAsB,EAAEC,EAAEC,EAAE,CAAC,IAAM,EAAE,KAAK,IAAID,EAAEF,GAAE,CAAC,EAAE,OAAOI,GAAED,EAAE,EAAE,CAAC,EAAED,EAAE,CAAC,CAAC,CAAC,IAAMC,GAAE,CAAC,UAAU,IAAI,QAAQ,GAAG,KAAK,CAAC,EAAQE,GAAiB,CAACC,EAAEH,GAAE,UAAUI,EAAEJ,GAAE,QAAQD,EAAEC,GAAE,OAAOI,GAAG,EAAE,KAAK,KAAKD,EAAEJ,CAAC,GAAG,SAASM,GAAiBF,EAAEC,EAAEL,EAAE,CAAC,OAAOI,EAAEC,GAAGL,GAAGK,GAAGD,EAAEC,GAAGL,GAAGK,CAAC,CAAC,IAAME,GAAO,CAAC,CAAC,UAAUH,EAAEH,GAAE,UAAU,QAAQD,EAAEC,GAAE,QAAQ,KAAK,EAAEA,GAAE,KAAK,KAAK,EAAE,EAAE,GAAGO,EAAE,EAAE,SAASC,EAAE,EAAE,UAAUC,EAAE,EAAE,aAAaC,EAAE,EAAE,EAAE,CAAC,IAAI,CAACF,EAAEA,EAAEL,GAAE,EAAEK,CAAC,EAAE,EAAE,IAAM,EAAE,CAAC,KAAK,GAAM,iBAAiB,GAAM,QAAQ,EAAE,OAAOD,CAAC,EAAQI,EAAEJ,EAAE,EAAQK,EAAE,KAAK,KAAKT,EAAE,CAAC,EAAE,IAAUU,EAAEX,GAAiBC,EAAEJ,EAAE,CAAC,EAAMe,EAAE,GAAGD,EAAE,EAAE,CAAC,IAAMV,EAAES,EAAE,KAAK,KAAK,EAAEC,EAAEA,CAAC,EAAEC,EAAEV,GAAGG,EAAE,KAAK,IAAI,CAACM,EAAED,EAAER,CAAC,IAAIS,EAAED,EAAED,EAAEH,GAAGL,EAAE,KAAK,IAAIA,EAAEC,CAAC,EAAEO,EAAE,KAAK,IAAIR,EAAEC,CAAC,QAAQU,EAAEX,GAAGI,EAAE,KAAK,IAAI,CAACK,EAAET,CAAC,GAAGQ,GAAGC,EAAED,EAAEH,GAAGL,GAAG,OAAOA,GAAG,CAAC,EAAE,QAAQW,EAAEX,CAAC,EAAE,IAAMC,EAAMD,IAAJ,EAAMK,EAAEV,GAAsBgB,EAAEX,EAAE,EAAE,OAAO,EAAQJ,EAAE,KAAK,IAAIK,CAAC,GAAGK,EAAQZ,EAAE,KAAK,IAAIU,EAAE,EAAE,OAAO,GAAGG,EAAE,SAAE,KAAKX,GAAGF,EAAE,EAAE,iBAAiBQ,GAAiB,EAAEE,EAAE,EAAE,OAAO,EAAS,CAAC,CAAC,EAAQQ,GAAM,CAAC,CAAC,KAAKZ,EAAE,EAAE,SAASJ,EAAE,EAAE,MAAM,EAAE,GAAG,MAAMC,EAAE,KAAK,cAAcgB,EAAE,gBAAgBT,EAAE,aAAaC,EAAE,IAAIC,EAAE,IAAIC,EAAE,aAAaO,EAAE,GAAG,UAAUN,CAAC,IAAI,CAACX,EAAEG,GAAE,GAAGH,CAAC,EAAE,IAAMY,EAAE,CAAC,iBAAiB,GAAM,KAAK,GAAM,QAAQT,EAAE,OAAOA,CAAC,EAAQe,EAAcf,GAAYM,IAAT,QAAYN,EAAEM,GAAYC,IAAT,QAAYP,EAAEO,EAAQS,EAAgBhB,GAAYM,IAAT,OAAWC,EAAWA,IAAT,QAAY,KAAK,IAAID,EAAEN,CAAC,EAAE,KAAK,IAAIO,EAAEP,CAAC,EAAEM,EAAEC,EAAMG,EAAE,EAAEd,EAAQe,EAAEX,EAAEU,EAAQO,EAAWZ,IAAT,OAAWM,EAAEN,EAAEM,CAAC,EAAEF,EAAE,OAAOQ,EAAEA,IAAIN,IAAID,EAAEO,EAAEjB,GAAG,IAAMkB,EAAUlB,GAAG,CAACU,EAAE,KAAK,IAAI,CAACV,EAAEH,CAAC,EAAQsB,EAAWnB,GAAGiB,EAAEC,EAAUlB,CAAC,EAAQoB,EAAcpB,GAAG,CAAC,IAAMC,EAAEiB,EAAUlB,CAAC,EAAQJ,EAAEuB,EAAWnB,CAAC,EAAES,EAAE,KAAK,KAAK,IAAIR,CAAC,GAAGa,EAAEL,EAAE,QAAQA,EAAE,KAAKQ,EAAErB,CAAC,EAAMyB,EAAMC,EAAQC,EAAmBvB,GAAG,CAAIe,EAAcN,EAAE,OAAO,IAAGY,EAAErB,EAAEsB,EAAEnB,GAAO,CAAC,KAAKM,EAAE,QAAQ,GAAGO,EAAgBP,EAAE,OAAO,EAAE,SAASd,GAAsBwB,EAAWnB,EAAES,EAAE,OAAO,EAAE,QAAQI,EAAE,UAAUT,EAAE,aAAaU,EAAE,UAAUN,CAAC,CAAC,EAAE,EAAE,OAAAe,EAAmB,CAAC,EAASvB,GAAG,CAAC,IAAIC,EAAE,GAAuE,MAA9D,CAACqB,GAAYD,IAAT,SAAYpB,EAAE,GAAKmB,EAAcpB,CAAC,EAAEuB,EAAmBvB,CAAC,GAAcqB,IAAT,QAAYrB,EAAEqB,GAAGZ,EAAE,iBAAiB,GAAYa,EAAEtB,EAAEqB,CAAC,IAAEZ,EAAE,iBAAiB,GAAM,CAACR,GAAGmB,EAAcpB,CAAC,EAASS,EAAC,CAAC,EAAQI,GAAE,GAAST,GAAE,IAAI,SAASoB,GAAqBxB,EAAEC,EAAEwB,GAAE,CAAC,IAAI,EAAM5B,EAAEgB,GAAMR,EAAEL,EAAE,CAAC,EAAQM,EAAE,CAACL,EAAEI,EAAE,OAAO,CAAC,EAAE,KAAM,CAACA,EAAE,MAAMR,EAAEO,IAAGC,EAAEL,EAAEH,CAAC,EAAES,EAAE,KAAKL,EAAEI,EAAE,KAAKA,EAAE,OAAOA,EAAE,OAAO,CAAC,EAAW,IAAT,QAAYA,EAAE,mBAAmB,EAAER,GAAGA,GAAGgB,GAAE,IAAMN,EAAEV,EAAEgB,GAAE,OAAIP,EAAE,SAAN,GAAcA,EAAE,KAAKD,EAAE,OAAO,EAAQ,CAAC,UAAUC,EAAE,SAASC,EAAE,IAAI,mBAA0B,GAAgBA,GAAG,GAAG,CAAC,CCAplD,IAAMmB,GAAE,CAAC,GAAG,IAAI,IAAI,GAAG,EAAQC,GAAE,CAAC,YAAY,QAAQ,SAAS,MAAM,EAAyD,IAAMC,GAAE,CAAC,OAAO,UAAU,aAAa,OAAO,cAAcC,GAAGA,EAAE,KAAK,EAAQC,GAAE,CAAC,UAAU,CAAC,OAAO,sBAAsB,aAAa,MAAM,cAAcD,GAAGA,EAAE,IAAI,EAAE,OAAOD,GAAE,MAAM,CAAC,OAAO,WAAW,aAAa,EAAE,cAAcG,EAAC,EAAE,KAAKH,EAAC,EAAQI,GAAE,IAAI,IAAUC,GAAkBJ,GAAG,YAAYA,IAAUK,GAAE,CAAC,IAAI,IAAI,GAAG,EAAEC,GAAE,QAASN,GAAG,CAACO,GAAE,QAASC,GAAG,CAACH,GAAE,KAAKL,EAAEQ,CAAC,EAAEL,GAAE,IAAIC,GAAkBJ,EAAEQ,CAAC,EAAEP,GAAED,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,EAA+D,IAAMS,GAAE,IAAI,IAAIC,EAAC,EAA2tB,IAAMC,GAAcC,GAAG,SAAS,cAAc,KAAK,EAAE,QAAQA,EAAE,CAAC,SAAS,IAAI,CAAC,EAAQC,GAAE,CAAC,oBAAoB,IAAkB,OAAO,IAArB,KAA0B,OAAO,eAAe,KAAK,IAAI,kBAAkB,EAAE,MAAM,IAAI,OAAO,eAAe,KAAK,QAAQ,UAAU,SAAS,EAAE,iBAAiB,IAAI,CAAC,GAAG,CAACF,GAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,MAAC,CAAS,MAAO,EAAK,CAAC,MAAO,EAAI,EAAE,SAAS,IAAI,EAAQA,GAAc,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,QAAS,EAAQG,GAAE,CAAC,EAAQC,GAAE,CAAC,EAAE,QAAUH,KAAKC,GAAEE,GAAEH,CAAC,EAAE,KAAcE,GAAEF,CAAC,IAAZ,SAAgBE,GAAEF,CAAC,EAAEC,GAAED,CAAC,EAAE,GAAUE,GAAEF,CAAC,GAA2kF,SAASI,GAAgBC,EAAEC,EAAE,CAAC,IAAI,EAAE,OAAc,OAAOD,GAAlB,SAAuBC,IAAW,EAAEA,EAAED,CAAC,KAAb,MAA0B,IAAT,SAAaC,EAAED,CAAC,EAAE,SAAS,iBAAiBA,CAAC,GAAEA,EAAEC,EAAED,CAAC,GAAOA,EAAE,SAAS,iBAAiBA,CAAC,EAAOA,aAAa,UAAUA,EAAE,CAACA,CAAC,GAAU,MAAM,KAAKA,GAAG,CAAC,CAAC,CAAC,CAAo7H,SAASE,GAAsBC,EAAE,CAAC,IAAMC,EAAE,IAAI,QAAQ,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,IAAMC,EAAE,IAAI,IAAUC,EAAa,CAACF,EAAE,EAAEG,EAAE,IAAIC,EAAE,EAAEC,EAAE,KAAQ,CAAC,IAAMC,EAAE,GAAGN,KAAKG,KAAKC,KAAKC,IAAI,OAAAJ,EAAE,IAAIK,CAAC,GAAGL,EAAE,IAAIK,EAAEP,EAAE,OAAO,OAAO,CAAC,KAAKC,EAAE,GAAGG,EAAE,SAASC,EAAE,UAAUC,EAAE,IAAI,EAAE,aAAaA,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC,EAASJ,EAAE,IAAIK,CAAC,CAAC,EAAQC,EAAaR,IAAIC,EAAE,IAAID,CAAC,GAAGC,EAAE,IAAID,EAAES,GAAET,CAAC,CAAC,EAASC,EAAE,IAAID,CAAC,GAAG,MAAM,CAAC,gBAAgB,CAACA,EAAEC,EAAES,EAAER,EAAEE,IAAI,CAAC,IAAIC,EAAEC,EAAE,IAAIC,EAAQI,EAAEX,EAAE,OAA8C,GAAjCU,GAAGC,GAAG,GAAGX,EAAE,MAAMY,EAAc,EAAO,CAAC,IAAMF,EAAEV,EAAEW,EAAE,CAAC,EAAQE,EAAMF,IAAJ,EAAM,KAAKX,EAAE,CAAC,EAAMc,EAAE,EAAMC,EAAE,EAAQC,EAA8BZ,GAAE,UAAU,GAAGY,EAAE,CAAC,GAAK,CAAC,UAAUf,EAAE,mBAAmBS,CAAC,EAAEN,EAAQF,EAA+BD,GAAE,WAAYS,GAAG,EAAQJ,EAA+BL,GAAE,aAAc,YAAY,IAAI,EAAEC,EAAQK,EAAES,EAAEV,CAAC,EAAE,QAAQS,GAAUV,EAAEQ,KAAV,MAAuBR,IAAT,OAAWA,EAAEE,GAAOI,IAAJ,GAAWA,IAAJ,GAAcX,EAAE,CAAC,IAAV,QAAec,EAAEG,GAAGjB,IAAGgB,EAAEhB,EAAC,EAAE,QAASM,EAAEC,CAAC,QAAQQ,GAAUT,EAAEO,KAAV,MAAuBP,IAAT,OAAWA,EAAE,WAAWL,EAAE,CAAC,EAAE,IAAMiB,EAAEf,EAAaY,EAAEL,EAAEI,EAA8BZ,GAAE,SAAS,OAAO,CAAC,EAAQiB,EAAEX,EAAaU,CAAC,EAAEX,EAAE,OAAO,OAAO,OAAO,OAAO,CAAC,EAAEY,CAAC,EAAE,CAAC,OAAO,QAAQ,CAAC,EAAKf,IAAGA,EAAE,UAAUc,EAAEd,EAAE,mBAAmB,YAAY,IAAI,QAAkDG,EAAE,CAAC,OAAO,OAAO,SAAnDC,EAAaL,EAAa,EAAE,GAAG,CAAC,EAA8B,iBAAiB,EAAE,OAAOI,CAAC,CAAC,CAAC,CAAC,CAAC,IAAMK,GAAeZ,GAAc,OAAOA,GAAlB,SAA0BoB,GAAErB,GAAsBsB,EAAC,EAAQC,GAAEvB,GAAsBwB,EAAC,EAAQC,GAAE,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,SAASC,GAASzB,EAAEC,EAAE,CAAC,KAAK,EAAE,OAAOC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,GAAiB,OAAO,qBAArB,IAA0C,MAAM,IAAI,CAAC,EAAE,IAAMG,EAAEqB,GAAgB1B,CAAC,EAAQM,EAAE,IAAI,QAAcqB,EAAqB3B,GAAG,CAACA,EAAE,QAASA,GAAG,CAAC,IAAMU,EAAEJ,EAAE,IAAIN,EAAE,MAAM,EAAE,GAAGA,EAAE,iBAAiB,EAAQU,EAAG,GAAGV,EAAE,eAAe,CAAC,IAAMU,EAAET,EAAED,CAAC,EAAe,OAAOU,GAApB,WAAsBJ,EAAE,IAAIN,EAAE,OAAOU,CAAC,EAAEH,EAAE,UAAUP,EAAE,MAAM,OAAUU,IAAGA,EAAEV,CAAC,EAAEM,EAAE,OAAON,EAAE,MAAM,EAAE,CAAE,CAAC,EAAQO,EAAE,IAAI,qBAAqBoB,EAAqB,CAAC,KAAK,EAAE,WAAWzB,EAAE,UAAqB,OAAO,GAAlB,SAAoB,EAAEsB,GAAE,CAAC,CAAC,CAAC,EAAE,OAAAnB,EAAE,QAASL,GAAGO,EAAE,QAAQP,CAAC,CAAE,EAAQ,IAAIO,EAAE,WAAW,CAAC,CAAC,IAAMqB,GAAE,IAAI,QAAYC,GAAE,SAASC,GAAe9B,EAAEC,EAAE,CAAC,GAAGA,EAAE,CAAC,GAAK,CAAC,WAAWD,EAAE,UAAUU,CAAC,EAAET,EAAE,CAAC,EAAE,MAAM,CAAC,MAAMD,EAAE,OAAOU,CAAC,EAAE,OAAOV,aAAa,YAAY,YAAYA,EAAEA,EAAE,QAAQ,EAAE,CAAC,MAAMA,EAAE,YAAY,OAAOA,EAAE,YAAY,CAAC,CAAC,SAAS+B,GAAa,CAAC,OAAO/B,EAAE,YAAYC,EAAE,cAAc,CAAC,EAAE,CAAC,IAAIC,GAAUA,EAAE0B,GAAE,IAAI5B,CAAC,KAAjB,MAA8BE,IAAT,QAAkBA,EAAE,QAASA,GAAG,CAACA,EAAE,CAAC,OAAOF,EAAE,YAAYC,EAAE,IAAI,MAAM,CAAC,OAAO6B,GAAe9B,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,SAASgC,GAAUhC,EAAE,CAACA,EAAE,QAAQ+B,EAAY,CAAC,CAAC,SAASE,IAAsB,CAAe,OAAO,eAArB,MAAsCJ,GAAE,IAAI,eAAeG,EAAS,EAAE,CAAC,SAASE,GAAclC,EAAEC,EAAE,CAAC4B,IAAGI,GAAqB,EAAE,IAAM,EAAEP,GAAgB1B,CAAC,EAAE,SAAE,QAASA,GAAG,CAAC,IAAIU,EAAEkB,GAAE,IAAI5B,CAAC,EAAMU,IAAGA,EAAE,IAAI,IAAIkB,GAAE,IAAI5B,EAAEU,CAAC,GAAEA,EAAE,IAAIT,CAAC,EAA8B4B,IAAE,QAAQ7B,CAAC,CAAC,CAAE,EAAQ,IAAI,CAAC,EAAE,QAASA,GAAG,CAAC,IAAMU,EAAEkB,GAAE,IAAI5B,CAAC,EAA8BU,GAAE,OAAOT,CAAC,EAA+BS,GAAE,MAAoCmB,IAAE,UAAU7B,CAAC,CAAE,CAAE,CAAC,CAAC,CAAC,IAAMmC,GAAE,IAAI,IAAQC,GAAE,SAASC,IAA2B,CAACD,GAAE,IAAI,CAAC,IAAMpC,EAAE,CAAC,MAAMsC,EAAO,WAAW,OAAOA,EAAO,WAAW,EAAQrC,EAAE,CAAC,OAAOqC,EAAO,KAAKtC,EAAE,YAAYA,CAAC,EAAEmC,GAAE,QAASnC,GAAGA,EAAEC,CAAC,CAAE,CAAC,EAAEqC,EAAO,iBAAiB,SAASF,EAAC,CAAC,CAAC,SAASG,GAAavC,EAAE,CAAC,OAAAmC,GAAE,IAAInC,CAAC,EAAEoC,IAAGC,GAA0B,EAAQ,IAAI,CAACF,GAAE,OAAOnC,CAAC,EAAE,CAACmC,GAAE,MAAMC,KAAIA,GAAE,OAAO,CAAC,CAAC,SAASI,GAAOxC,EAAEC,EAAE,CAAC,OAAmB,OAAOD,GAApB,WAAsBuC,GAAavC,CAAC,EAAEkC,GAAclC,EAAEC,CAAC,CAAC,CAA+hK,SAASwC,GAAqBC,EAAEC,EAAE,EAAE,CAACD,EAAE,cAAc,IAAI,YAAYC,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAASC,GAAkBF,EAAEC,EAAE,EAAE,CAACD,EAAE,cAAc,IAAI,YAAYC,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAME,GAAG,CAAC,SAASH,GAAG,EAAQA,EAAE,OAAQ,UAAU,CAACA,EAAE,CAAC,OAAOC,EAAE,QAAQ,CAAC,EAAE,CAAC,cAAcG,EAAE,CAAC,CAAC,IAAI,CAAC,GAAK,CAAC,KAAK,CAAC,EAAEA,EAAEC,EAAEC,GAAEF,EAAE,CAAC,MAAM,CAAC,EAAE,OAAOG,GAASP,EAAGI,GAAG,CAAwC,GAAvCH,EAAE,EAAEC,GAAkBF,EAAE,YAAYI,CAAC,EAAK,CAAC,EAAE,OAAOH,GAAG,CAAC,EAAE,EAAEC,GAAkBF,EAAE,YAAYC,CAAC,CAAC,CAAC,EAAGI,CAAC,CAAC,CAAC,EAAQG,GAAW,CAACR,EAAEC,EAAE,IAAIG,GAAG,EAAI,CAACA,EAAE,aAAuBA,EAAE,cAAZ,WAAyB,EAAE,EAAEL,GAAqBC,EAAEC,EAAEG,CAAC,EAAE,EAAQK,GAAG,CAAC,SAAST,GAAG,EAAQA,EAAE,MAAO,UAAU,CAACA,EAAE,CAAC,OAAOC,EAAE,QAAQ,CAAC,IAAI,CAAC,IAAMG,EAAEI,GAAWR,EAAE,aAAaC,CAAC,EAAQ,EAAEO,GAAWR,EAAE,WAAW,CAAC,EAAE,OAAAA,EAAE,iBAAiB,eAAeI,CAAC,EAAEJ,EAAE,iBAAiB,eAAe,CAAC,EAAQ,IAAI,CAACA,EAAE,oBAAoB,eAAeI,CAAC,EAAEJ,EAAE,oBAAoB,eAAe,CAAC,CAAC,CAAC,CAAC,EAAQU,GAAG,CAAC,SAASV,GAAG,EAAQA,EAAE,MAAO,UAAU,CAACA,EAAE,CAAC,OAAOC,EAAE,QAAQ,CAAC,IAAI,CAAC,IAAMU,EAAYV,GAAG,CAAC,EAAE,EAAEF,GAAqBC,EAAE,WAAWC,CAAC,EAAEW,EAAO,oBAAoB,YAAYD,CAAW,CAAC,EAAQE,EAAcC,GAAG,CAACb,EAAE,EAAEF,GAAqBC,EAAE,aAAac,CAAC,EAAEF,EAAO,iBAAiB,YAAYD,CAAW,CAAC,EAAE,OAAAX,EAAE,iBAAiB,cAAca,CAAa,EAAQ,IAAI,CAACb,EAAE,oBAAoB,cAAca,CAAa,EAAED,EAAO,oBAAoB,YAAYD,CAAW,CAAC,CAAC,CAAC,EAAQI,GAAG,CAAC,OAAOZ,GAAG,MAAMM,GAAG,MAAMC,EAAE,EAAQM,GAAG,CAAC,UAAU,UAAU,GAAG,OAAO,KAAKD,EAAE,EAAE,MAAM,ECAlllB,IAAME,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,OAAY,MAAMA,GAAQ,cAAcA,OAAY,IAAIA,GAAQ,eAAeA,OAAY,OAAOA,GAAQ,cAAcA,MAAW,EAAQC,GAA8B,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WASzpB,SAARC,GAAwBC,EAAM,CAAa,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,YAAAC,EAAY,MAAAC,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,EAAoBU,EAAanB,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAA+BqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,EAAYC,GAAS,MAAM1B,CAAK,EAAQ2B,EAAYF,EAAY,EAAKf,IAAY,KAAMA,EAAU,QAAQ,IAAMkB,EAAalB,IAAY,QAAQA,IAAY,QAAcd,GAAOiC,GAAe,CAAC,EAAQC,GAAYnC,GAAsBe,CAAS,EAAQqB,GAAUC,GAAapC,GAAOkC,EAAW,EAA6BG,GAAUC,EAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAW,CAAeC,GAAU,EAAgBA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAmBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA4BC,GAAY,EAAMC,GAAQ,EAAKrB,IACvnCoB,GAAYlB,EAAY,KAAK,MAAM,GAAGA,CAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACrB,GAAUI,GAAaW,EAAK,SAAQK,GAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEM,GAAQ,GAAkC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGnB,GAAaM,GAAU,QAAQ,CAAC,IAAMc,EAAanB,EAAaK,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBe,EAAMb,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,GAAtLd,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAM/C,EAAIsC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,CAAc,CAAC,EAAG,EAAE,CAAC,CAAC,EAAQC,EAAe3B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAyC,GAAGI,EAAY,CACz2B,GAAG,CAACJ,EAAS,CAGG,IAAI4B,EAAcjB,EAAO,EAAI,EAAEkB,GAAU,KAAKP,GAAQ,EAASQ,GAAOpB,GAAU,QAAQ,CAAC,CAAC,YAAAqB,CAAW,IAAI,CAAI,CAACH,EAAc,UAAUG,EAAY,OAAOA,EAAY,SAAST,GAAQ,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,EAAGV,GAAef,GAAS,IAAI1B,EAAM,CAACuD,EAAMC,IAAQ,CAAC,IAAIC,GAAIC,EAAKC,GAAKC,GAAK,IAAIC,GAAQL,IAAQ,IAAGK,GAAK1B,EAAY,CAAC,GAAMqB,IAAQxD,EAAM,OAAO,IAAG6D,GAAK1B,EAAY,CAAC,GAAG,IAAMG,GAAK,CAAC,MAAMlB,GAAWqC,GAAIF,EAAM,SAAS,MAAME,KAAM,OAAO,OAAOA,GAAI,MAAM,OAAO,OAAOpC,GAAYqC,EAAKH,EAAM,SAAS,MAAMG,IAAO,OAAO,OAAOA,EAAK,OAAO,MAAM,EAAE,OAAqBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,IAAID,GAAK,MAAMvB,GAAK,SAAuB0B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,GAAKJ,EAAM,SAAS,MAAMI,KAAO,OAAO,OAAOA,GAAK,MAAM,GAAGrB,GAAK,WAAW,EAAE,GAAGY,CAAc,EAAE,SAASK,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,GAAKL,EAAM,SAAS,MAAMK,KAAO,OAAO,OAAOA,GAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAG,GAAG,CAACrC,EAAU,QAAQ0C,EAAE,EAAEA,EAAEtB,GAAYsB,IAAKvB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,GAAS,IAAI1B,EAAM,CAACuD,EAAMW,KAAa,CAAC,IAAIT,EAAIC,GAAKC,GAAKC,GAAKC,GAAKM,GAAK,IAAM7B,GAAK,CAAC,MAAMlB,GAAWqC,EAAIF,EAAM,SAAS,MAAME,IAAM,OAAO,OAAOA,EAAI,MAAM,OAAO,OAAOpC,GAAYqC,GAAKH,EAAM,SAAS,MAAMG,KAAO,OAAO,OAAOA,GAAK,OAAO,MAAM,EAAE,OAAqBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,MAAMxB,GAAK,cAAc,GAAK,SAAuB0B,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,GAAW,MAAM,CAAC,IAAIP,GAAKJ,EAAM,SAAS,MAAMI,KAAO,OAAO,OAAOA,GAAK,MAAM,MAAMvC,GAAWwC,GAAKL,EAAM,SAAS,MAAMK,KAAO,OAAO,OAAOA,GAAK,MAAM,OAAO,OAAOvC,GAAYwC,GAAKN,EAAM,SAAS,MAAMM,KAAO,OAAO,OAAOA,GAAK,OAAO,OAAO,WAAW,EAAE,GAAGX,CAAc,EAAE,SAASK,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGE,GAAKZ,EAAM,SAAS,MAAMY,KAAO,OAAO,OAAOA,GAAK,QAAQ,CAAC,EAAEF,EAAE,KAAKC,EAAU,CAAC,EAAED,EAAE,KAAKC,EAAU,CAAE,CAAC,CAAE,EAAI,IAAME,EAAe9B,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQ+B,GAAYnC,EAAO,IAAI,EAAQoC,GAASpC,EAAO,IAAI,EAAQqC,GAAKrC,EAAO,CAAC,EAAQsC,GAAQtC,EAAO,EAAK,EAAQuC,GAAgBC,GAAiB,EAAQC,GAAQzC,EAAO,IAAI,EAAQ0C,GAAa1C,EAAO,IAAI,EAE7rE,GAAG,CAACX,EAAS,CAAC,IAAMsD,EAASC,GAAU7C,EAAS,EAEzCpC,GAA+BuD,GAAU,IAAI,CAAC,GAAG,EAAAqB,IAAiB,CAACL,GAAgB,CAAC5D,GAAe,OAAAoE,GAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC7C,GAAY,CAAC,EAAEA,GAAYsC,CAAc,CAAE,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,CAAc,EAAE5D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIoE,GAAa,QAAQ,OAAO,CAAE,EAAE,CAACnE,EAAY2D,EAAe5D,CAAK,CAAC,EAGxWuE,GAAkBC,GAAG,CAAC,GAAG,CAACZ,GAAgBK,IAAiB5E,GAA+B,OAKnFwE,GAAY,UAAU,OAAMA,GAAY,QAAQW,GAAGA,EAAEA,EAAEX,GAAY,QAAqE,IAAIY,GAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6B9D,EAAM,KAAQgE,GAAQ,UAASS,GAAOxE,GAAa8D,GAAK,SAASU,EAAMV,GAAK,QAAQW,GAAK,EAAEd,EAAeG,GAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBjF,GAAO,IAAI2E,GAAK,OAAO,CAAE,CAAC,EAAgB,IAAMY,GAAcvD,EAAa,WAAW,YAAkBwD,GAAenE,EAAU,EAAQoE,GAAa,IAAIpE,EAAU,EAAQqE,GAAeC,GAAMrE,EAAU,EAAEkE,EAAc,EAAQI,GAAa,IAAItE,EAAgBuE,GAAS,mBAAmBN,qBAAgChE,MAAcmE,yBAAqCF,yBAAqCC,sBAAgClE,MAAcqE,OAAmC,OAAI7D,EAAuWmC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG4B,GAAe,QAAQ9C,GAAQ,gBAAgB7B,EAAY0E,GAAS,OAAU,aAAa1E,EAAY0E,GAAS,OAAU,UAAU1E,EAAY0E,GAAS,OAAU,SAASzE,EAAS,UAAU,SAAS,QAAQM,CAAY,EAAE,IAAIW,GAAU,SAAuB0D,EAAMC,EAAO,GAAG,CAAC,IAAIjB,GAAQ,MAAM,CAAC,GAAGe,GAAe,IAAIzF,EAAI,IAAIS,IAAY,UAAUmF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,KAAK1D,IAAY,SAASmF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,WAAWzD,EAAU,SAAS,WAAW,cAAciB,EAAa,MAAM,SAAS,GAAGd,EAAM,UAAUjB,GAA8B,OAAUkC,GAAU,WAAWR,EAAS,OAAO,WAAW,EAAE,aAAa,IAAI,CAACiD,GAAQ,QAAQ,GAAQI,GAAa,SAASA,GAAa,QAAQ,mBAAmBnE,CAAW,CAAG,EAAE,aAAa,IAAI,CAAC+D,GAAQ,QAAQ,GAASI,GAAa,SAASA,GAAa,QAAQ,mBAAmB,CAAC,CAAG,EAAE,SAAS,CAACnC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAArxCiD,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAehC,EAAK,MAAM,CAAC,MAAMiC,GAAY,SAAS,QAAG,CAAC,EAAgBjC,EAAK,IAAI,CAAC,MAAMkC,GAAY,SAAS,oBAAoB,CAAC,EAAgBlC,EAAK,IAAI,CAAC,MAAMmC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAA0+B,CAA2BnG,GAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAA0BoG,GAAoBpG,GAAO,CAAC,MAAM,CAAC,KAAKqG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAiB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAc,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKoG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKoG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA2B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAqBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAiDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,ECzB1oK,IAAMC,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,MAAAC,EAAM,OAAAC,EAAO,GAAAC,EAAG,SAAAC,EAAS,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAM,MAAM,CAAC,GAAGF,EAAM,WAAWC,EAAKP,GAAsCM,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK;AAAA;AAAA,EAAsS,UAAUN,GAAmCK,EAAM,UAAU,WAAWE,EAAMJ,GAA4CE,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,uBAAuB,CAAE,EAAQC,GAAuB,CAACH,EAAMI,IAAeJ,EAAM,iBAAwBI,EAAS,KAAK,GAAG,EAAEJ,EAAM,iBAAwBI,EAAS,KAAK,GAAG,EAAUC,GAA6BC,GAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEzB,GAASO,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,gBAAAC,EAAgB,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAApB,CAAQ,EAAEqB,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,QAAAZ,EAAQ,kBAAAa,EAAiB,CAAC,EAAQC,EAAiBzB,GAAuBH,EAAMI,CAAQ,EAAO,CAAC,sBAAAyB,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAaH,EAAsB,SAASI,IAAO,CAAoC,GAAnCV,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKN,GAAqB,MAAMA,EAAU,GAAGgB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBnD,EAAKoD,EAAY,CAAC,GAAG5B,GAA4CuB,EAAgB,SAAsB/C,EAAKC,GAAS,CAAC,QAAQc,EAAS,QAAQ,GAAM,SAAsBf,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB+D,EAAMnD,EAAO,IAAI,CAAC,GAAG2B,EAAU,GAAGG,EAAgB,UAAUsB,GAAGC,GAAkB,GAAGN,EAAsB,gBAAgB1B,EAAUQ,CAAU,EAAE,mBAAmB,SAAS,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,EAAa,IAAIzB,GAA6B2B,EAAK,MAAM,CAAC,GAAGvB,CAAK,EAAE,SAAS,CAActB,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,QAAQ,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,+FAA+F,0BAA0B,WAAW,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kBAAkB,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe1B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,QAAQ,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,mBAAmB,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8B,GAAI,CAAC,kFAAkF,kFAAkF,6SAA6S,qKAAqK,mNAAmN,0WAA0W,EASz0MC,GAAgBC,GAAQ3C,GAAUyC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,QAAQA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,UAAU,CAAC,aAAa,wBAAwB,gBAAgB,GAAK,MAAM,WAAW,KAAKI,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa;AAAA;AAAA,EAAsS,gBAAgB,GAAK,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,SAAS,OAAO,SAAS,MAAM,SAAS,IAAI,2FAA2F,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTvtB,IAAMM,GAAUC,EAASC,EAAI,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,IAAUC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAnB,CAAQ,EAAEoB,GAAgB,CAAC,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBD,EAAME,CAAQ,EAAQuB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGrB,GAA4CgB,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBsD,EAAMvC,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUiB,GAAGC,GAAkB,GAAGN,EAAsB,iBAAiBnB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAInB,GAA6BoB,EAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,SAAS,CAAcjB,EAAK4C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkve,mBAAmB,EAAI,CAAC,EAAehC,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAgEP,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,MAAM,EAAE,MAAM,EAAE,GAAG,IAAI,SAAsBtC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK8C,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,uIAAuI,UAAU,cAAc,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAehC,EAAK4C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAAw+M,mBAAmB,EAAI,CAAC,EAAehC,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAgEP,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,MAAM,EAAE,MAAM,EAAE,IAAI,KAAK,SAAsBtC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK8C,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,gKAAgK,UAAU,aAAa,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAehC,EAAK4C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4jK,mBAAmB,EAAI,CAAC,EAAehC,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAgEP,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,MAAM,EAAE,MAAM,EAAE,IAAI,KAAK,SAAsBtC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK8C,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,gRAAgR,UAAU,cAAc,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,mBAAmB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsBhC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAAwFV,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,MAAM,EAAE,MAAM,EAAE,IAAI,KAAK,CAAC,EAAE,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBN,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,EAAeY,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAgEP,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,MAAM,EAAE,MAAM,EAAE,IAAI,KAAK,SAAsBtC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK8C,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,oaAAoa,UAAU,QAAQ,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAeS,EAAMvC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,mBAAmB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAS,CAAchC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAAwFV,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,MAAM,EAAE,MAAM,EAAE,KAAK,KAAK,CAAC,EAAE,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBN,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,EAAeY,EAAK4C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA2+S,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAgEP,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,MAAM,EAAE,MAAM,EAAE,KAAK,KAAK,SAAsBtC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK8C,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,uDAAuD,UAAU,MAAM,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQG,GAAI,CAAC,kFAAkF,gFAAgF,0PAA0P,4JAA4J,0QAA0Q,0MAA0M,sQAAsQ,8MAA8M,oHAAoH,8WAA8W,EAQh1/CC,GAAgBC,GAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,GAAG,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGI,EAAS,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRqG,IAAMC,GAASC,EAASC,EAAG,EAAQC,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,IAAUC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,gBAAAC,EAAgB,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAjB,CAAQ,EAAEkB,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,QAAAT,EAAQ,kBAAAU,EAAiB,CAAC,EAAQC,EAAiBtB,GAAuBD,EAAME,CAAQ,EAAQsB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBtC,EAAKuC,EAAY,CAAC,GAAGpB,GAA4Ce,EAAgB,SAAsBlC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBqD,EAAMtC,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGG,EAAgB,UAAUiB,GAAGC,GAAkB,GAAGN,EAAsB,iBAAiBlB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAA6BmB,EAAK,MAAM,CAAC,GAAGf,CAAK,EAAE,SAAS,CAAcjB,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkve,mBAAmB,EAAI,CAAC,EAAe/B,EAAK4C,EAA0B,CAAC,MAAmEP,GAAkB,OAAQ,QAAQ,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK6C,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,uIAAuI,QAAQ,YAAY,UAAU,cAAc,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAe/B,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA,EAAw+M,mBAAmB,EAAI,CAAC,EAAe/B,EAAK4C,EAA0B,CAAC,MAAmEP,GAAkB,OAAQ,QAAQ,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK6C,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,gKAAgK,QAAQ,YAAY,UAAU,aAAa,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAe/B,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4jK,mBAAmB,EAAI,CAAC,EAAe/B,EAAK4C,EAA0B,CAAC,MAAmEP,GAAkB,OAAQ,QAAQ,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK6C,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,gRAAgR,QAAQ,YAAY,UAAU,cAAc,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAe/B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,mBAAmB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsB/B,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBf,EAAiB,SAAS,YAAY,kBAAkB3C,EAAkB,CAAC,CAAC,CAAC,EAAeY,EAAK4C,EAA0B,CAAC,MAAmEP,GAAkB,OAAQ,QAAQ,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK6C,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,oaAAoa,QAAQ,YAAY,UAAU,QAAQ,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAeS,EAAMtC,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,mBAAmB,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,mBAAmB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAS,CAAc/B,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBf,EAAiB,SAAS,YAAY,kBAAkB3C,EAAkB,CAAC,EAAeY,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA2+S,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAK4C,EAA0B,CAAC,MAAmEP,GAAkB,OAAQ,QAAQ,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK6C,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,uDAAuD,QAAQ,YAAY,UAAU,MAAM,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQE,GAAI,CAAC,kFAAkF,gFAAgF,0PAA0P,0JAA0J,yQAAyQ,4MAA4M,oQAAoQ,8MAA8M,mHAAmH,8WAA8W,EAQpy9CC,GAAgBC,GAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGI,EAAQ,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRi6B,IAAMC,GAA0BC,EAASC,EAAoB,EAAQC,GAA4CC,GAAwBF,EAAoB,EAAQG,GAAmCC,GAA0BC,CAAS,EAAQC,GAAmBP,EAASQ,EAAa,EAAQC,GAAYT,EAASU,EAAM,EAAQC,GAAeX,EAASY,EAAS,EAAQC,GAAkBb,EAASc,EAAY,EAAQC,GAAyBf,EAASgB,EAAmB,EAAQC,GAAkBjB,EAASkB,EAAY,EAAQC,GAAqBnB,EAASoB,EAAe,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,sBAAsB,UAAU,6CAA6C,UAAU,6CAA6C,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,IAAUC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,IAAI,EAAQC,GAAmB,CAACL,EAAEC,IAAI,yBAAyBA,IAAUK,GAASA,GAAiB,EAAQC,GAAwB,CAAC,cAAc,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAQc,GAAU,IAAI,CAAC,IAAMC,EAAUrB,GAAiB,OAAUY,CAAY,EAAE,GAAGS,EAAU,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAU,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAU,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAQW,GAAmB,IAAI,CAAC,IAAMF,EAAUrB,GAAiB,OAAUY,CAAY,EAAqC,GAAnC,SAAS,MAAMS,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIG,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUH,EAAU,QAAQ,EAAG,IAAMI,GAAQJ,EAAU,cAAc,GAAGI,GAAQ,CAAC,IAAMC,GAAK,SAAS,KAAKA,GAAK,UAAU,QAAQC,IAAGA,GAAE,WAAW,cAAc,GAAGD,GAAK,UAAU,OAAOC,EAAC,CAAC,EAAED,GAAK,UAAU,IAAI,GAAGL,EAAU,4BAA4B,EAAG,MAAM,IAAI,CAAII,IAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,4BAA4B,CAAE,CAAE,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACgB,EAAYC,CAAmB,EAAEC,GAA8BZ,EAAQ7B,GAAY,EAAK,EAAQ0C,EAAe,OAAgBC,EAAWC,EAAO,IAAI,EAAQC,EAAUC,EAAkB,WAAW,EAAQC,EAAWH,EAAO,IAAI,EAAQI,EAAWJ,EAAO,IAAI,EAAQK,EAAWL,EAAO,IAAI,EAAQM,EAAWN,EAAO,IAAI,EAAQO,EAAWP,EAAO,IAAI,EAAQQ,EAAWR,EAAO,IAAI,EAAQS,EAAWT,EAAO,IAAI,EAAQU,EAAWV,EAAO,IAAI,EAAQW,EAAYX,EAAO,IAAI,EAAQY,EAAWV,EAAkB,WAAW,EAAQW,EAAY,IAASxD,GAAU,EAAiBsC,IAAc,YAAtB,GAAmEmB,EAAa,IAASzD,GAAU,EAAiB,EAAC,YAAY,WAAW,EAAE,SAASsC,CAAW,EAAtD,GAAyFoB,EAAa,IAAQ,CAAC1D,GAAU,GAAiBsC,IAAc,YAA6CqB,EAAa,IAAQ,IAAC3D,GAAU,GAAiB,CAAC,YAAY,WAAW,EAAE,SAASsC,CAAW,GAAmCsB,GAAOC,GAAU,EAAQC,GAAWjB,EAAkB,WAAW,EAAQkB,GAAWlB,EAAkB,WAAW,EAAQmB,GAAWnB,EAAkB,WAAW,EAAQoB,EAAa,IAASjE,GAAU,EAAiBsC,IAAc,YAAtB,GAAmE4B,EAAa,IAAQ,IAAClE,GAAU,GAAiB,CAAC,YAAY,YAAY,WAAW,EAAE,SAASsC,CAAW,GAAmC6B,GAAWtB,EAAkB,WAAW,EAAQuB,GAAWvB,EAAkB,WAAW,EAAQwB,GAAWxB,EAAkB,WAAW,EAAQyB,GAAWzB,EAAkB,WAAW,EAAQ0B,GAAsBC,GAAM,EAAQC,GAAsB,CAAC,EAAE,OAAAC,GAAiB,CAAC,CAAC,EAAsBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA1E,EAAiB,EAAE,SAAsB2E,EAAMC,EAAY,CAAC,GAAGnD,GAA4C4C,GAAgB,SAAS,CAAcM,EAAME,EAAO,IAAI,CAAC,GAAGlD,EAAU,UAAUmD,GAAG/E,GAAkB,GAAGwE,GAAsB,gBAAgB/C,CAAS,EAAE,IAAIL,GAA6BqB,EAAK,MAAM,CAAC,GAAGjB,CAAK,EAAE,SAAS,CAAckD,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsBN,EAAK7F,GAAmC,CAAC,QAAQyB,GAAU,UAAU,0BAA0B,wBAAwB,SAAS,GAAGqC,EAAU,QAAQpC,GAAW,aAAa,GAAK,UAAU,GAAK,IAAI8C,EAAM,kBAAkBnD,GAAmB,SAAsBwE,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,CAAC,OAAO,KAAK,IAAIQ,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,EAAE,IAAIC,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,IAAI,IAAIC,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,IAAI,IAAIC,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,IAAI,IAAIC,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,IAAI,IAAIC,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,IAAI,IAAIC,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,EAAE,IAAIC,EAAK,OAAO,WAAW,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBsB,EAAK/F,GAA4C,CAAC,sBAAsB,GAAM,kBAAkB,CAAC,CAAC,OAAO,KAAK,IAAIkE,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,EAAE,IAAIC,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,IAAI,IAAIC,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,IAAI,IAAIC,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,IAAI,IAAIC,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,IAAI,IAAIC,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,IAAI,IAAIC,EAAK,OAAO,WAAW,CAAC,EAAE,oBAAoB,GAAG,qCAAqC,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,MAAM,MAAM,QAAQ,IAAI,sEAAsE,OAAO,oQAAoQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,ucAAuc,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6C,EAA0B,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,6bAA6b,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,GAAG7B,EAAW,KAAK,OAAO,IAAIT,EAAK,SAAsB+B,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBuC,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,sBAAsB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,qBAAqB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQ,aAAa,EAAE,UAAU,CAAC,QAAQ,aAAa,EAAE,UAAU,CAAC,SAAsBE,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,sBAAsB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,qBAAqB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQ,aAAa,CAAC,EAAE,SAAsBA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,sBAAsB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,qBAAqB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,WAAW,SAAS,CAACrB,EAAY,GAAgBqB,EAAM,MAAM,CAAC,UAAU,gCAAgC,mBAAmB,mBAAmB,KAAK,mBAAmB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,mBAAmB,SAAS,CAAcF,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,MAAM,CAAC,mBAAmB,EAAE,KAAK,SAAS,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mBAAmB,MAAM,CAAC,kBAAkB,EAAE,KAAK,mBAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,mBAAmB,SAAS,CAAcF,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,mBAAmB,EAAE,KAAK,UAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mBAAmB,MAAM,CAAC,kBAAkB,EAAE,KAAK,mBAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAElB,EAAa,GAAgBkB,EAAKY,EAAI,CAAC,UAAU,8CAA8C,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,EAAE,KAAK,SAAS,IAAI;AAAA;AAAA;AAAA,EAAwL,mBAAmB,EAAI,CAAC,EAAE7B,EAAa,GAAgBmB,EAAM,MAAM,CAAC,UAAU,2DAA2D,SAAS,CAACnB,EAAa,GAAgBiB,EAAK,MAAM,CAAC,UAAU,8BAA8B,mBAAmB,mBAAmB,KAAK,mBAAmB,SAAsBA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,QAAQ,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,oBAAoB,kBAAkB,EAAE,KAAK,SAAS,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEjB,EAAa,GAAgBiB,EAAK,MAAM,CAAC,UAAU,8BAA8B,mBAAmB,mBAAmB,KAAK,mBAAmB,SAAsBA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,QAAQ,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,QAAQ,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,oBAAoB,kBAAkB,EAAE,KAAK,UAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEhB,EAAa,GAAgBgB,EAAKY,EAAI,CAAC,UAAU,6CAA6C,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,IAAI,KAAK,SAAS,IAAI;AAAA;AAAA;AAAA,EAAiK,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKa,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4Bd,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,wBAAwB,CAAC,EAAE,SAAsBqC,EAAKM,EAA0B,CAAC,OAAO,GAAG,SAAsBN,EAAK3F,EAAU,CAAC,UAAU,yBAAyB,SAAsB2F,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUmD,EAAc,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBd,EAAKzF,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUuG,EAAc,CAAC,EAAE,UAAU,GAAM,UAAU,gBAAgB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAed,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,0EAA0E,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6C,EAA0B,GAAG,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,GAAGtB,GAAW,KAAK,UAAU,IAAIf,EAAK,SAAsB4B,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBuC,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,sBAAsB,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,uBAAuB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,sBAAsB,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,uBAAuB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,sBAAsB,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,gBAAgB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,sBAAsB,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQ,aAAa,EAAE,UAAU,CAAC,SAAsBE,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,mEAAmE,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,gEAAgE,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,oEAAoE,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,6EAA6E,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBE,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,mEAAmE,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,gEAAgE,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,uEAAuE,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,2EAA2E,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQ,aAAa,CAAC,EAAE,SAAsBA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,YAAY,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,mEAAmE,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,YAAY,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,gEAAgE,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,YAAY,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,uEAAuE,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,YAAY,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,2EAA2E,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,GAAGZ,GAAW,KAAK,UAAU,IAAIf,EAAK,SAAsB6B,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcF,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,mBAAmB,qCAAqC,KAAK,oCAAoC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAACrB,EAAY,GAAgBmB,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBuC,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,mCAAmC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,gCAAgC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQ,YAAY,EAAE,UAAU,CAAC,SAAsBE,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,8BAA8B,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,8BAA8B,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQ,YAAY,CAAC,EAAE,SAAsBA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,8BAA8B,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,qCAAqC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gCAAgC,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,MAAM,QAAQ,aAAa,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEjB,EAAa,GAAgBiB,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,8BAA8B,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,8BAA8B,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,2DAA2D,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,MAAM,QAAQ,cAAc,mBAAmB,EAAI,CAAC,EAAEnB,EAAY,GAAgBmB,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,uJAAuJ,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,mNAAmN,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,+KAA+K,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gCAAgC,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEjB,EAAa,GAAgBiB,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,uJAAuJ,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,mNAAmN,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,+KAA+K,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,2DAA2D,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKa,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASE,GAA6Bf,EAAKM,EAA0B,CAAC,OAAO,GAAG,SAAsBN,EAAK3F,EAAU,CAAC,UAAU,0BAA0B,SAAsB2F,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUoD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBf,EAAKzF,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUwG,EAAe,CAAC,EAAE,UAAU,GAAM,UAAU,gBAAgB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,GAAGb,GAAW,KAAK,aAAa,IAAIf,EAAK,SAAS,CAAc4B,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAACZ,EAAa,GAAgBU,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBuC,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,UAAU,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,+BAA+B,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAET,EAAa,GAAgBS,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBqC,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,oTAAoT,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,oTAAoT,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,CAAC,CAAC,EAAE,SAAsBA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,8BAA8B,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAElB,EAAa,GAAgBkB,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,KAAK,CAAC,EAAE,SAAsBqC,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,oTAAoT,CAAC,CAAC,CAAC,EAAE,UAAU,8CAA8C,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKM,EAA0B,CAAC,SAAsBN,EAAK3F,EAAU,CAAC,UAAU,0BAA0B,SAAsB2F,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,GAAG,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,aAAa,EAAE,WAAW,CAAC,CAAC,EAAE,SAAsBqC,EAAKvF,GAAO,CAAC,UAAU,SAAS,UAAU,QAAQ,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcuF,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,uEAAuE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,uEAAuE,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,uEAAuE,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,uEAAuE,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,WAAW,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,uEAAuE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,WAAW,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,WAAW,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,uEAAuE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,WAAW,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,WAAW,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,uEAAuE,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,WAAW,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,uEAAuE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,WAAW,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,uEAAuE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,uEAAuE,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,WAAW,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,eAAe,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAKM,EAA0B,CAAC,SAAsBN,EAAK3F,EAAU,CAAC,UAAU,0BAA0B,SAAsB2F,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,aAAa,EAAE,WAAW,CAAC,CAAC,EAAE,SAAsBqC,EAAKvF,GAAO,CAAC,UAAU,SAAS,UAAU,QAAQ,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcuF,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,SAAS,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,uEAAuE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,mBAAmB,+BAA+B,KAAK,8BAA8B,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,+BAA+B,KAAK,8BAA8B,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,+BAA+B,KAAK,8BAA8B,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,mEAAmE,EAAE,UAAU,gBAAgB,mBAAmB,+BAA+B,KAAK,8BAA8B,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,+BAA+B,KAAK,8BAA8B,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,mBAAmB,+BAA+B,KAAK,8BAA8B,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,+BAA+B,KAAK,8BAA8B,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,+BAA+B,KAAK,8BAA8B,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,+BAA+B,KAAK,8BAA8B,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,mEAAmE,EAAE,UAAU,iBAAiB,mBAAmB,+BAA+B,KAAK,8BAA8B,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,+BAA+B,KAAK,8BAA8B,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,+BAA+B,KAAK,8BAA8B,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,+BAA+B,KAAK,8BAA8B,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,+BAA+B,KAAK,8BAA8B,CAAC,EAAeT,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,GAAG,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,GAAGR,GAAW,KAAK,QAAQ,IAAIjB,EAAK,SAAsB2B,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBuC,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,UAAU,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,0CAA0C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBE,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,UAAU,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,kCAAkC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBE,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,UAAU,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,kCAAkC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,UAAU,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,kCAAkC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,kBAAkB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEjB,EAAa,GAAgBiB,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,oBAAoB,CAAC,EAAE,SAAsBqC,EAAKM,EAA0B,CAAC,SAAsBN,EAAK3F,EAAU,CAAC,UAAU,oEAAoE,SAAsB2F,EAAKrF,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAY,GAAgBmB,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsBqC,EAAKM,EAA0B,CAAC,OAAO,KAAK,MAAM,QAAQ,SAAsBN,EAAK3F,EAAU,CAAC,UAAU,0CAA0C,SAAsB2F,EAAKnF,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemF,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,0EAA0E,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6C,EAA0B,MAAM,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,GAAGhB,GAAW,KAAK,UAAU,IAAIf,EAAK,SAAsBwB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBqC,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,YAAY,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,wGAAwG,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,kBAAkB,CAAC,CAAC,EAAE,SAAsBA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEjB,EAAa,GAAgBiB,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,0DAA0D,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBqC,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,kIAAkI,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,CAAC,CAAC,EAAE,SAAsBA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,8CAA8C,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,4DAA4D,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEnB,EAAY,GAAgBmB,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,kIAAkI,CAAC,CAAC,CAAC,EAAE,UAAU,gCAAgC,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKa,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6BhB,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,wBAAwB,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsBqC,EAAKM,EAA0B,CAAC,OAAO,GAAG,SAAsBN,EAAK3F,EAAU,CAAC,UAAU,0BAA0B,SAAsB2F,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUqD,EAAe,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBhB,EAAKzF,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUyG,EAAe,CAAC,EAAE,UAAU,GAAM,UAAU,eAAe,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,GAAGN,GAAW,KAAK,aAAa,IAAIlB,EAAK,SAAsB0B,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBqC,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,8KAA8K,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBE,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,4CAA4C,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,gDAAgD,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,sFAAsF,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,iEAAiE,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,gEAAgE,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,iDAAiD,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,MAAM,CAAC,EAAEjB,EAAa,GAAgBiB,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,2BAA2B,CAAC,EAAE,SAAsBqC,EAAKM,EAA0B,CAAC,SAAsBN,EAAK3F,EAAU,CAAC,UAAU,qEAAqE,SAAsB2F,EAAKjF,GAAoB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE8D,EAAY,GAAgBqB,EAAM,MAAM,CAAC,UAAU,gCAAgC,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6C,EAA0B,MAAM,EAAE,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,KAAK,iBAAiB,CAAC,CAAC,CAAC,EAAeT,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,aAAa,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,sSAAiS,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,gEAA2D,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,MAAM,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,mBAAmB,SAAsBA,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6C,EAA0B,MAAM,EAAE,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,kBAAkBjF,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewE,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBqC,EAAWU,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,CAAcF,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,IAAI,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,yRAAyR,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,6FAAwF,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,MAAM,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,mBAAmB,SAAsBA,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6C,EAA0B,MAAM,EAAE,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,kBAAkB3E,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekE,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBuC,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,wBAAwB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBE,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,iBAAiB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,UAAU,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,wBAAwB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,sEAAsE,0BAA0B,WAAW,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,uOAAuO,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,mHAAmH,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,sIAAsI,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,GAAGL,GAAW,KAAK,WAAW,IAAIlB,EAAK,SAAsByB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAACrB,EAAY,GAAgBmB,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBuC,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,mCAAmC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,gCAAgC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQ,YAAY,EAAE,UAAU,CAAC,SAAsBE,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,8BAA8B,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,8BAA8B,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQ,YAAY,CAAC,EAAE,SAAsBA,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,qCAAqC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,oCAAoC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,+BAA+B,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,MAAM,QAAQ,cAAc,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEjB,EAAa,GAAgBiB,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,8BAA8B,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,8BAA8B,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,uBAAuB,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,2DAA2D,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,MAAM,QAAQ,cAAc,mBAAmB,EAAI,CAAC,EAAEnB,EAAY,GAAgBmB,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,oLAA+K,CAAC,CAAC,CAAC,EAAE,UAAU,gCAAgC,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEjB,EAAa,GAAgBiB,EAAKW,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,uJAAuJ,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,mNAAmN,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,+KAA+K,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,0DAA0D,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKa,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6BjB,EAAKM,EAA0B,CAAC,OAAO,GAAG,SAAsBN,EAAK3F,EAAU,CAAC,UAAU,0BAA0B,SAAsB2F,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUsD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBjB,EAAKzF,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU0G,EAAe,CAAC,EAAE,UAAU,GAAM,UAAU,gBAAgB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejB,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,4BAA4B,IAAI,qEAAqE,OAAO,gQAAgQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,4CAA4C,IAAI,qEAAqE,OAAO,gQAAgQ,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,uCAAuC,IAAI,qEAAqE,OAAO,gQAAgQ,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsBqC,EAAKM,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBN,EAAK3F,EAAU,CAAC,UAAU,0BAA0B,SAAsB2F,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBqC,EAAK/E,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsBqC,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBN,EAAK3F,EAAU,CAAC,UAAU,0BAA0B,SAAsB2F,EAAKO,EAAkB,CAAC,WAAW5C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBqC,EAAK7E,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6E,EAAK,MAAM,CAAC,UAAUK,GAAG/E,GAAkB,GAAGwE,EAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoB,GAAI,CAAC,kFAAkF,IAAInF,GAAS,wIAAwI,gFAAgF,sVAAsV,oKAAoK,qSAAqS,0cAA0c,6LAA6L,yQAAyQ,oHAAoH,2TAA2T,kUAAkU,8OAA8O,sHAAsH,uRAAuR,oTAAoT,oOAAoO,kHAAkH,qSAAqS,+NAA+N,wXAAwX,wcAAwc,kYAAkY,uSAAuS,6KAA6K,2TAA2T,4SAA4S,gWAAgW,uYAAuY,6SAA6S,gNAAgN,gNAAgN,qQAAqQ,iRAAiR,uKAAuK,gJAAgJ,8IAA8I,8JAA8J,8JAA8J,+JAA+J,8JAA8J,+JAA+J,8JAA8J,6IAA6I,8JAA8J,iJAAiJ,6JAA6J,kJAAkJ,iJAAiJ,6IAA6I,+JAA+J,8JAA8J,gJAAgJ,6JAA6J,8JAA8J,+JAA+J,+JAA+J,oKAAoK,oKAAoK,obAAob,uKAAuK,iJAAiJ,iJAAiJ,6IAA6I,+JAA+J,4LAA4L,+JAA+J,6IAA6I,8JAA8J,8JAA8J,mLAAmL,iLAAiL,kLAAkL,iLAAiL,kLAAkL,kLAAkL,kLAAkL,kLAAkL,mKAAmK,kLAAkL,kLAAkL,kLAAkL,iLAAiL,kLAAkL,iLAAiL,2YAA2Y,oSAAoS,gUAAgU,+OAA+O,0GAA0G,0GAA0G,kXAAkX,8QAA8Q,gRAAgR,+QAA+Q,wYAAwY,oSAAoS,qQAAqQ,0IAA0I,iJAAiJ,qRAAqR,2VAA2V,yJAAyJ,oQAAoQ,6LAA6L,uYAAuY,8MAA8M,gNAAgN,qQAAqQ,0XAA0X,gSAAgS,kHAAkH,oHAAoH,g4LAAg4L,wDAAwDA,GAAS,shJAAshJ,gCAAgCA,GAAS,4gOAA4gO,iCAAiCA,GAAS,otEAAotE,EASl8rJoF,GAAgBC,GAAQ5E,GAAU0E,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,SAAS,OAAO,SAAS,MAAM,SAAS,IAAI,2FAA2F,OAAO,KAAK,EAAE,CAAC,OAAO,SAAS,OAAO,SAAS,MAAM,SAAS,IAAI,2FAA2F,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGrH,GAA0B,GAAGQ,GAAmB,GAAGE,GAAY,GAAGE,GAAe,GAAGE,GAAkB,GAAGE,GAAyB,GAAGE,GAAkB,GAAGE,EAAoB,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC/3B,IAAMqG,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,yBAA2B,OAAO,uBAAyB,GAAG,oCAAsC,oMAA0O,yBAA2B,QAAQ,sBAAwB,IAAI,6BAA+B,OAAO,sBAAwB,OAAO,qBAAuB,MAAM,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "l", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "n", "calcGeneratorVelocity", "s", "r", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "c", "i", "h", "d", "f", "l", "g", "glide", "a", "u", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "noopReturn", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "createGeneratorEasing", "e", "t", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "dispatchViewEvent", "se", "o", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "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", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "answer", "click", "height", "id", "question", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "W88zB8mIG", "T8rQFvSBR", "V4mQxlvug", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1oyd2pd", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "RichText2", "css", "Framerk8wxI9K47", "withCSS", "k8wxI9K47_default", "addPropertyControls", "ControlType", "addFonts", "Row2Fonts", "getFonts", "k8wxI9K47_default", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "SVG", "ComponentViewportProvider", "k8wxI9K47_default", "Image2", "getLoadingLazyAtYPosition", "css", "FramerECQ1DAfqU", "withCSS", "ECQ1DAfqU_default", "addFonts", "Row2Fonts", "RowFonts", "getFonts", "kN93oDC7p_default", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "SVG", "ComponentViewportProvider", "kN93oDC7p_default", "Image2", "css", "Framerh_srZeqRq", "withCSS", "h_srZeqRq_default", "addFonts", "RowFonts", "NavigationNavigationFonts", "getFonts", "Cck5nzSCj_default", "NavigationNavigationWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "ButtonsButtonFonts", "beL7nB9Cx_default", "TickerFonts", "Ticker", "AccordianFonts", "h_srZeqRq_default", "NonAccordianFonts", "ECQ1DAfqU_default", "AccordianMobileOnlyFonts", "sa1XZELpq_default", "FooterFooterFonts", "pQtVRkS2b_default", "FooterCopyrightFonts", "Zeqloo3mj_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transformTemplate2", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "ref3", "ref4", "ref5", "ref6", "ref7", "ref8", "ref9", "ref10", "elementId1", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "router", "useRouter", "elementId2", "elementId3", "elementId4", "isDisplayed4", "isDisplayed5", "elementId5", "elementId6", "elementId7", "elementId8", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "RichText2", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
