{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js", "ssg:https://framerusercontent.com/modules/CO9agRTLXFD9EYNEm0p3/sEguctxvoDkTaUzizQER/nCPRdoOor.js", "ssg:https://framerusercontent.com/modules/NbPRRNWavyn3Lybsj4Vm/cpwy5Hd9FTfVZw7LUF9s/cNhYFFMuz.js", "ssg:https://framerusercontent.com/modules/14rFNQ2s5DTH48cgRgcz/8C6PToOmtHVdA6XvjWUP/eeUfuxFie.js", "ssg:https://framerusercontent.com/modules/cuCRkfmNsY5c7KkYDho8/OwY3yRNTRDpe9KFKNVYs/QGQrMD_qy.js", "ssg:https://framerusercontent.com/modules/wAcabQ7Ue9a6vQZiiAcf/ptOuCH47jhVDCJnabo8s/Ue_hxuiwA.js", "ssg:https://framerusercontent.com/modules/cxFkLAlviQsM9qs86KNg/PQPQrCp1NBduO3h82EoK/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{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (2f783ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={WeQbbvHEc:{hover:true,pressed:true}};const cycleOrder=[\"WeQbbvHEc\",\"TbxfIfGcs\",\"u7YPX7FFG\",\"m87qMvQ9X\",\"dU2i9n8SO\"];const serializationHash=\"framer-gJcCr\";const variantClassNames={dU2i9n8SO:\"framer-v-3ho74n\",m87qMvQ9X:\"framer-v-1jzw7ng\",TbxfIfGcs:\"framer-v-zccf83\",u7YPX7FFG:\"framer-v-g4zn4v\",WeQbbvHEc:\"framer-v-d572js\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"WeQbbvHEc\",Disabled:\"u7YPX7FFG\",Error:\"dU2i9n8SO\",Loading:\"TbxfIfGcs\",Success:\"m87qMvQ9X\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WeQbbvHEc\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WeQbbvHEc\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"TbxfIfGcs\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"TbxfIfGcs\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-d572js\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"WeQbbvHEc\",ref:refBinding,style:{backgroundColor:\"var(--token-8483847a-ef1d-493a-ae6b-2216ac0ad702, rgb(255, 197, 63))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"none\",opacity:1,...style},variants:{\"WeQbbvHEc-hover\":{backgroundColor:\"rgb(255, 197, 63)\",boxShadow:\"0px 16px 28.2999992px 0px rgba(186, 130, 0, 0.5)\",opacity:1},\"WeQbbvHEc-pressed\":{backgroundColor:\"rgb(51, 51, 51)\",boxShadow:\"none\",opacity:1},dU2i9n8SO:{backgroundColor:\"rgba(255, 34, 68, 0.15)\",opacity:1},m87qMvQ9X:{backgroundColor:\"rgb(49, 212, 13)\",opacity:1},u7YPX7FFG:{opacity:.5}},...addPropertyOverrides({\"WeQbbvHEc-hover\":{\"data-framer-name\":undefined},\"WeQbbvHEc-pressed\":{\"data-framer-name\":undefined},dU2i9n8SO:{\"data-framer-name\":\"Error\"},m87qMvQ9X:{\"data-framer-name\":\"Success\"},TbxfIfGcs:{\"data-framer-name\":\"Loading\"},u7YPX7FFG:{\"data-framer-name\":\"Disabled\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\"},children:\"Get Your Free HIPAA Health Check\"})}),className:\"framer-16jrh5s\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],layoutDependency:layoutDependency,layoutId:\"JLvp3Zjt7\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{dU2i9n8SO:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dU2i9n8SO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})}),fonts:[\"Inter-SemiBold\"]},m87qMvQ9X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\"},children:\"Thank you\"})}),fonts:[\"Inter-SemiBold\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fnc1rq\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"cnWqgJ58h\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1wg4jut\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"VdouvGrj1\",style:{background:\"conic-gradient(from 180deg at 50% 50%, rgb(68, 204, 255) 0deg, rgb(68, 204, 255) 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{TbxfIfGcs:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ozu9xf\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"LNfM1qhKL\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gJcCr.framer-9732x1, .framer-gJcCr .framer-9732x1 { display: block; }\",\".framer-gJcCr.framer-d572js { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: min-content; }\",\".framer-gJcCr .framer-16jrh5s { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-gJcCr .framer-1fnc1rq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-gJcCr .framer-1wg4jut { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-gJcCr .framer-ozu9xf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gJcCr.framer-d572js { gap: 0px; } .framer-gJcCr.framer-d572js > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-gJcCr.framer-d572js > :first-child { margin-left: 0px; } .framer-gJcCr.framer-d572js > :last-child { margin-right: 0px; } }\",\".framer-gJcCr.framer-v-zccf83.framer-d572js, .framer-gJcCr.framer-v-g4zn4v.framer-d572js, .framer-gJcCr.framer-v-1jzw7ng.framer-d572js, .framer-gJcCr.framer-v-3ho74n.framer-d572js { cursor: unset; }\",\".framer-gJcCr.framer-v-zccf83 .framer-1wg4jut { overflow: hidden; }\",\".framer-gJcCr.framer-v-d572js.hover.framer-d572js { padding: 20px 24px 20px 24px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 272\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"TbxfIfGcs\":{\"layout\":[\"auto\",\"fixed\"]},\"u7YPX7FFG\":{\"layout\":[\"auto\",\"fixed\"]},\"m87qMvQ9X\":{\"layout\":[\"auto\",\"fixed\"]},\"dU2i9n8SO\":{\"layout\":[\"auto\",\"fixed\"]},\"XUSr1p0HY\":{\"layout\":[\"auto\",\"fixed\"]},\"RL2RiceYP\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernCPRdoOor=withCSS(Component,css,\"framer-gJcCr\");export default FramernCPRdoOor;FramernCPRdoOor.displayName=\"Button 3\";FramernCPRdoOor.defaultProps={height:40,width:272};addPropertyControls(FramernCPRdoOor,{variant:{options:[\"WeQbbvHEc\",\"TbxfIfGcs\",\"u7YPX7FFG\",\"m87qMvQ9X\",\"dU2i9n8SO\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramernCPRdoOor,[{explicitInter:true,fonts:[{family:\"Glacial Indifference Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/jBQUgOgXaPObB1tyMOietr0Zo1I.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernCPRdoOor\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"TbxfIfGcs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"u7YPX7FFG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"m87qMvQ9X\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"dU2i9n8SO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"XUSr1p0HY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"RL2RiceYP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"272\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nCPRdoOor.map", "// Generated by Framer (4458791)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Button3 from\"https://framerusercontent.com/modules/CO9agRTLXFD9EYNEm0p3/sEguctxvoDkTaUzizQER/nCPRdoOor.js\";const Button3Fonts=getFonts(Button3);const cycleOrder=[\"ZX9o2dzmJ\",\"eh6jqT1cf\",\"GTRAFEITt\"];const serializationHash=\"framer-j3yWg\";const variantClassNames={eh6jqT1cf:\"framer-v-abpq3r\",GTRAFEITt:\"framer-v-5tf2gj\",ZX9o2dzmJ:\"framer-v-y7gml8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"ZX9o2dzmJ\",Phone:\"GTRAFEITt\",Tablet:\"eh6jqT1cf\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZX9o2dzmJ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZX9o2dzmJ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-y7gml8\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ZX9o2dzmJ\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({eh6jqT1cf:{\"data-framer-name\":\"Tablet\"},GTRAFEITt:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qha5xt\",\"data-framer-name\":\"BG\",layoutDependency:layoutDependency,layoutId:\"H2cHwRsDv\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+120+(((componentViewport?.height||699)-120-579)/2+0+0)+-134),pixelHeight:1260,pixelWidth:3498,positionX:\"center\",positionY:\"center\",sizes:\"1000px\",src:\"https://framerusercontent.com/images/ZKMTFSs4X09DdktsmDLTROKSc.png\",srcSet:\"https://framerusercontent.com/images/ZKMTFSs4X09DdktsmDLTROKSc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZKMTFSs4X09DdktsmDLTROKSc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZKMTFSs4X09DdktsmDLTROKSc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZKMTFSs4X09DdktsmDLTROKSc.png 3498w\"},className:\"framer-1iakiyg\",\"data-framer-name\":\"banner CTA\",layoutDependency:layoutDependency,layoutId:\"Ex87XHYoH\",style:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},...addPropertyOverrides({eh6jqT1cf:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+120+(((componentViewport?.height||720)-120-600)/2+0+0)+-134),pixelHeight:1260,pixelWidth:3498,positionX:\"center\",positionY:\"center\",sizes:\"600px\",src:\"https://framerusercontent.com/images/ZKMTFSs4X09DdktsmDLTROKSc.png\",srcSet:\"https://framerusercontent.com/images/ZKMTFSs4X09DdktsmDLTROKSc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZKMTFSs4X09DdktsmDLTROKSc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZKMTFSs4X09DdktsmDLTROKSc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZKMTFSs4X09DdktsmDLTROKSc.png 3498w\"}},GTRAFEITt:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+120+(((componentViewport?.height||608)-120-566)/2+0+0)+-134),pixelHeight:1260,pixelWidth:3498,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/ZKMTFSs4X09DdktsmDLTROKSc.png\",srcSet:\"https://framerusercontent.com/images/ZKMTFSs4X09DdktsmDLTROKSc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZKMTFSs4X09DdktsmDLTROKSc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZKMTFSs4X09DdktsmDLTROKSc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZKMTFSs4X09DdktsmDLTROKSc.png 3498w\"},transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q2l4cp\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"eKraWhANK\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-163e9xp\",\"data-framer-name\":\"text\",layoutDependency:layoutDependency,layoutId:\"zqqXzJoa7\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k6skea\",\"data-framer-name\":\"Frame 1000005919\",layoutDependency:layoutDependency,layoutId:\"ClycCqB3v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get Your Free HIPAA Health Check \u2014\"})}),className:\"framer-19qfb81\",\"data-framer-name\":\"Pricing & Plans\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],layoutDependency:layoutDependency,layoutId:\"r_VDFjXxS\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eh6jqT1cf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"37px\",\"--framer-line-height\":\"39px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get Your Free HIPAA Health Check \u2014\"})})},GTRAFEITt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get Your Free HIPAA Health Check \u2014\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Secure Your Business Today!\"})}),className:\"framer-1co9jhe\",\"data-framer-name\":\"With lots of unique\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],layoutDependency:layoutDependency,layoutId:\"imbMdLo66\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GTRAFEITt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Secure Your Business Today!\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pc368r\",\"data-framer-name\":\"buttons\",layoutDependency:layoutDependency,layoutId:\"XothKSSpE\",children:[/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/a3ac306b-78c6-4d8a-a5bf-83e1cf013dae/submit\",className:\"framer-w0i0pg\",\"data-framer-name\":\"Email FORM\",layoutDependency:layoutDependency,layoutId:\"igPp6kjQj\",nodeId:\"igPp6kjQj\",redirectUrl:\"https://outlook.office365.com/book/UEMSecure@uemsecure.com/\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(motion.label,{className:\"framer-h0uuu6\",\"data-framer-name\":\"input\",layoutDependency:layoutDependency,layoutId:\"DTseJKyR8\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1pcrhka\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"V8T7LWgt1\",placeholder:\"Your email\",required:true,style:{\"--framer-input-background\":\"rgb(255, 255, 255)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"12px\",\"--framer-input-border-radius-bottom-right\":\"12px\",\"--framer-input-border-radius-top-left\":\"12px\",\"--framer-input-border-radius-top-right\":\"12px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(105, 105, 105)\"},type:\"email\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+120+(((componentViewport?.height||699)-120-579)/2+0+0)+-134+69.5+0+189.5+0+0+0,...addPropertyOverrides({eh6jqT1cf:{y:(componentViewport?.y||0)+120+(((componentViewport?.height||720)-120-600)/2+0+0)+-134+69.5+0+172.5+0+0+0},GTRAFEITt:{y:(componentViewport?.y||0)+120+(((componentViewport?.height||608)-120-566)/2+0+0)+-134+30+0+0+224+0+40+0+62}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k3qe1f-container\",layoutDependency:layoutDependency,layoutId:\"sRN6MdNva-container\",nodeId:\"sRN6MdNva\",rendersWithMotion:true,scopeId:\"cNhYFFMuz\",children:/*#__PURE__*/_jsx(Button3,{height:\"100%\",id:\"sRN6MdNva\",layoutId:\"sRN6MdNva\",style:{height:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"TbxfIfGcs\",success:\"m87qMvQ9X\"},\"WeQbbvHEc\"),width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Limited to 3 free spots per week!\"})}),className:\"framer-bg8vrp\",\"data-framer-name\":\"limited 3 spots\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],layoutDependency:layoutDependency,layoutId:\"nw8NtlAW2\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vedlhq\",\"data-framer-name\":\"big bg container\",layoutDependency:layoutDependency,layoutId:\"TLxGtCfK0\",style:{backgroundColor:\"rgb(5, 13, 51)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16pxz0q\",\"data-framer-name\":\"footer links\",layoutDependency:layoutDependency,layoutId:\"yqSuAxVdY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-183ipi3\",layoutDependency:layoutDependency,layoutId:\"Go6LeddDz\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"CxG5YeeLW\",openInNewTab:false,scopeId:\"cNhYFFMuz\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-m1yszb framer-1j22li9\",\"data-framer-name\":\"logo\",layoutDependency:layoutDependency,layoutId:\"CxG5YeeLW\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-n9x0f8\",layoutDependency:layoutDependency,layoutId:\"L98iv37Br\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 134.956 35.888\" overflow=\"visible\"><g><path d=\"M 24.364 7.826 L 15.249 7.826 C 14.897 7.826 14.573 8.016 14.396 8.325 L 9.272 17.338 C 9.095 17.646 9.095 18.027 9.272 18.335 L 14.396 27.349 C 14.573 27.658 14.897 27.848 15.249 27.847 L 24.364 27.847 C 24.715 27.847 25.039 27.657 25.214 27.349 C 25.39 27.04 25.389 26.66 25.214 26.352 L 20.658 18.335 C 20.481 18.027 20.481 17.646 20.658 17.338 L 25.214 9.322 C 25.389 9.014 25.39 8.633 25.214 8.325 C 25.039 8.016 24.715 7.826 24.364 7.826 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 30.579 23.885 L 27.716 29.359 C 27.38 29.951 26.757 30.316 26.084 30.316 L 14.183 30.316 C 13.51 30.316 12.888 29.951 12.551 29.359 L 6.605 18.901 C 6.268 18.309 6.268 17.579 6.605 16.987 L 12.551 6.529 C 12.888 5.937 13.51 5.572 14.183 5.572 L 26.075 5.572 C 26.748 5.572 27.371 5.937 27.707 6.529 L 30.57 12.09 C 30.732 12.377 31.033 12.553 31.358 12.553 L 36.424 12.553 C 36.581 12.553 36.726 12.468 36.805 12.329 C 36.883 12.191 36.883 12.021 36.805 11.882 L 30.878 0.95 C 30.544 0.363 29.926 0.001 29.257 0 L 11 0 C 10.332 0 9.714 0.362 9.38 0.95 L 0.251 16.994 C -0.084 17.582 -0.084 18.306 0.251 18.894 L 9.38 34.938 C 9.714 35.526 10.332 35.888 11 35.888 L 29.257 35.888 C 29.926 35.888 30.544 35.526 30.878 34.938 L 36.807 24.084 C 36.885 23.946 36.886 23.776 36.807 23.637 C 36.728 23.499 36.583 23.414 36.426 23.413 L 31.361 23.413 C 31.036 23.418 30.738 23.597 30.579 23.885 Z M 42.152 17.857 C 42.152 13.559 45.015 10.612 48.732 10.612 C 51.956 10.612 54.524 12.873 54.769 16.263 L 52.32 16.263 C 51.963 14.123 50.538 12.994 48.721 12.994 C 46.378 12.994 44.634 14.89 44.634 17.837 C 44.634 20.864 46.453 22.68 48.721 22.68 C 50.613 22.68 52.038 21.448 52.357 19.411 L 54.78 19.411 C 54.518 22.765 52.005 25.061 48.688 25.061 C 44.933 25.061 42.152 22.114 42.152 17.857 Z M 56.387 17.837 C 56.387 13.577 59.294 10.612 62.994 10.612 C 66.694 10.612 69.601 13.577 69.601 17.837 C 69.601 22.096 66.696 25.061 62.994 25.061 C 59.292 25.061 56.387 22.094 56.387 17.837 Z M 62.994 22.68 C 65.375 22.68 67.117 20.744 67.117 17.837 C 67.117 14.93 65.375 12.994 62.994 12.994 C 60.614 12.994 58.889 14.93 58.889 17.837 C 58.889 20.744 60.625 22.68 62.988 22.68 Z M 71.797 10.773 L 74.948 10.773 L 78.959 21.298 L 82.951 10.764 L 86.063 10.764 L 86.063 24.891 L 83.682 24.891 L 83.682 14.648 L 79.784 24.9 L 78.003 24.9 L 74.122 14.688 L 74.122 24.9 L 71.797 24.9 Z M 88.95 10.773 L 94.181 10.773 C 96.973 10.773 98.83 12.649 98.83 15.355 C 98.83 18.06 96.973 19.936 94.181 19.936 L 91.368 19.936 L 91.368 24.9 L 88.946 24.9 Z M 94.068 17.615 C 95.61 17.615 96.394 16.748 96.394 15.355 C 96.394 13.962 95.606 13.094 94.068 13.094 L 91.368 13.094 L 91.368 17.615 Z M 103.329 10.773 L 106.386 10.773 L 111.277 24.9 L 108.766 24.9 L 107.623 21.508 L 102.036 21.508 L 100.893 24.9 L 98.438 24.9 Z M 106.899 19.31 L 104.835 13.175 L 102.774 19.31 Z M 110.511 10.773 L 113.079 10.773 L 116.734 22.054 L 120.37 10.773 L 122.901 10.773 L 118.197 24.9 L 115.215 24.9 Z M 127.008 10.773 L 130.063 10.773 L 134.956 24.9 L 132.445 24.9 L 131.302 21.508 L 125.713 21.508 L 124.57 24.9 L 122.115 24.9 Z M 130.569 19.31 L 128.508 13.175 L 126.444 19.31 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ilzz2r\",layoutDependency:layoutDependency,layoutId:\"wRSErpScj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.206 20.021\" overflow=\"visible\"><path d=\"M 15.225 0 L 6.109 0 C 5.758 0 5.433 0.19 5.257 0.499 L 0.132 9.512 C -0.044 9.82 -0.044 10.201 0.132 10.509 L 5.257 19.523 C 5.433 19.831 5.758 20.022 6.109 20.021 L 15.225 20.021 C 15.575 20.021 15.899 19.831 16.075 19.522 C 16.25 19.214 16.25 18.834 16.075 18.525 L 11.518 10.509 C 11.342 10.201 11.342 9.82 11.518 9.512 L 16.075 1.496 C 16.25 1.187 16.25 0.807 16.075 0.499 C 15.899 0.19 15.575 0 15.225 0 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1hhlaq0\",layoutDependency:layoutDependency,layoutId:\"P73l83ADH\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 134.956 35.888\" overflow=\"visible\"><path d=\"M 30.579 23.885 L 27.716 29.359 C 27.38 29.951 26.757 30.316 26.084 30.316 L 14.183 30.316 C 13.51 30.316 12.888 29.951 12.551 29.359 L 6.605 18.901 C 6.268 18.309 6.268 17.579 6.605 16.987 L 12.551 6.529 C 12.888 5.937 13.51 5.572 14.183 5.572 L 26.075 5.572 C 26.748 5.572 27.371 5.937 27.707 6.529 L 30.57 12.09 C 30.732 12.377 31.033 12.553 31.358 12.553 L 36.424 12.553 C 36.581 12.553 36.726 12.468 36.805 12.329 C 36.883 12.191 36.883 12.021 36.805 11.882 L 30.878 0.95 C 30.544 0.363 29.926 0.001 29.257 0 L 11 0 C 10.332 0 9.714 0.362 9.38 0.95 L 0.251 16.994 C -0.084 17.582 -0.084 18.306 0.251 18.894 L 9.38 34.938 C 9.714 35.526 10.332 35.888 11 35.888 L 29.257 35.888 C 29.926 35.888 30.544 35.526 30.878 34.938 L 36.807 24.084 C 36.885 23.946 36.886 23.776 36.807 23.637 C 36.728 23.499 36.583 23.414 36.426 23.413 L 31.361 23.413 C 31.036 23.418 30.738 23.597 30.579 23.885 Z M 42.152 17.857 C 42.152 13.559 45.015 10.612 48.732 10.612 C 51.956 10.612 54.524 12.873 54.769 16.263 L 52.32 16.263 C 51.963 14.123 50.538 12.994 48.721 12.994 C 46.378 12.994 44.634 14.89 44.634 17.837 C 44.634 20.864 46.453 22.68 48.721 22.68 C 50.613 22.68 52.038 21.448 52.357 19.411 L 54.78 19.411 C 54.518 22.765 52.005 25.061 48.688 25.061 C 44.933 25.061 42.152 22.114 42.152 17.857 Z M 56.387 17.837 C 56.387 13.577 59.294 10.612 62.994 10.612 C 66.694 10.612 69.601 13.577 69.601 17.837 C 69.601 22.096 66.696 25.061 62.994 25.061 C 59.292 25.061 56.387 22.094 56.387 17.837 Z M 62.994 22.68 C 65.375 22.68 67.117 20.744 67.117 17.837 C 67.117 14.93 65.375 12.994 62.994 12.994 C 60.614 12.994 58.889 14.93 58.889 17.837 C 58.889 20.744 60.625 22.68 62.988 22.68 Z M 71.797 10.773 L 74.948 10.773 L 78.959 21.298 L 82.951 10.764 L 86.063 10.764 L 86.063 24.891 L 83.682 24.891 L 83.682 14.648 L 79.784 24.9 L 78.003 24.9 L 74.122 14.688 L 74.122 24.9 L 71.797 24.9 Z M 88.95 10.773 L 94.181 10.773 C 96.973 10.773 98.83 12.649 98.83 15.355 C 98.83 18.06 96.973 19.936 94.181 19.936 L 91.368 19.936 L 91.368 24.9 L 88.946 24.9 Z M 94.068 17.615 C 95.61 17.615 96.394 16.748 96.394 15.355 C 96.394 13.962 95.606 13.094 94.068 13.094 L 91.368 13.094 L 91.368 17.615 Z M 103.329 10.773 L 106.386 10.773 L 111.277 24.9 L 108.766 24.9 L 107.623 21.508 L 102.036 21.508 L 100.893 24.9 L 98.438 24.9 Z M 106.899 19.31 L 104.835 13.175 L 102.774 19.31 Z M 110.511 10.773 L 113.079 10.773 L 116.734 22.054 L 120.37 10.773 L 122.901 10.773 L 118.197 24.9 L 115.215 24.9 Z M 127.008 10.773 L 130.063 10.773 L 134.956 24.9 L 132.445 24.9 L 131.302 21.508 L 125.713 21.508 L 124.57 24.9 L 122.115 24.9 Z M 130.569 19.31 L 128.508 13.175 L 126.444 19.31 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1uov2z2\",layoutDependency:layoutDependency,layoutId:\"vKq18nP57\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 36.866 35.888\" overflow=\"visible\"><path d=\"M 30.579 23.885 L 27.716 29.359 C 27.38 29.951 26.757 30.316 26.084 30.316 L 14.183 30.316 C 13.51 30.316 12.888 29.951 12.551 29.359 L 6.605 18.901 C 6.268 18.309 6.268 17.579 6.605 16.987 L 12.551 6.529 C 12.888 5.937 13.51 5.572 14.183 5.572 L 26.075 5.572 C 26.748 5.572 27.371 5.937 27.707 6.529 L 30.57 12.09 C 30.732 12.377 31.033 12.553 31.358 12.553 L 36.424 12.553 C 36.581 12.553 36.726 12.468 36.805 12.329 C 36.883 12.191 36.883 12.021 36.805 11.882 L 30.878 0.95 C 30.544 0.363 29.926 0.001 29.257 0 L 11 0 C 10.332 0 9.714 0.362 9.38 0.95 L 0.251 16.994 C -0.084 17.582 -0.084 18.306 0.251 18.894 L 9.38 34.938 C 9.714 35.526 10.332 35.888 11 35.888 L 29.257 35.888 C 29.926 35.888 30.544 35.526 30.878 34.938 L 36.807 24.084 C 36.885 23.946 36.886 23.776 36.807 23.637 C 36.728 23.499 36.583 23.414 36.426 23.413 L 31.361 23.413 C 31.036 23.418 30.738 23.597 30.579 23.885 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gi13z5\",layoutDependency:layoutDependency,layoutId:\"fO9a0MTOQ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.628 14.449\" overflow=\"visible\"><path d=\"M 0 7.245 C 0 2.947 2.863 0 6.58 0 C 9.805 0 12.372 2.261 12.617 5.65 L 10.168 5.65 C 9.811 3.511 8.386 2.381 6.569 2.381 C 4.226 2.381 2.482 4.278 2.482 7.225 C 2.482 10.252 4.301 12.068 6.569 12.068 C 8.461 12.068 9.886 10.836 10.205 8.799 L 12.628 8.799 C 12.366 12.153 9.853 14.449 6.536 14.449 C 2.781 14.449 0 11.502 0 7.245 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1043mpw\",layoutDependency:layoutDependency,layoutId:\"VMQHZi9dH\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.214 14.449\" overflow=\"visible\"><path d=\"M 0 7.225 C 0 2.965 2.907 0 6.607 0 C 10.307 0 13.214 2.965 13.214 7.225 C 13.214 11.484 10.309 14.449 6.607 14.449 C 2.905 14.449 0 11.482 0 7.225 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j8k9ex\",layoutDependency:layoutDependency,layoutId:\"rbH4T5jD5\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.228 9.686\" overflow=\"visible\"><path d=\"M 4.105 9.686 C 6.486 9.686 8.228 7.75 8.228 4.843 C 8.228 1.936 6.486 0 4.105 0 C 1.724 0 0 1.936 0 4.843 C 0 7.75 1.735 9.686 4.098 9.686 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bl8582\",layoutDependency:layoutDependency,layoutId:\"pQpSeqx6R\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.266 14.136\" overflow=\"visible\"><path d=\"M 0 0.009 L 3.151 0.009 L 7.162 10.534 L 11.155 0 L 14.266 0 L 14.266 14.127 L 11.886 14.127 L 11.886 3.884 L 7.988 14.136 L 6.206 14.136 L 2.326 3.924 L 2.326 14.136 L 0 14.136 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gg09a6\",layoutDependency:layoutDependency,layoutId:\"ho3_vWQrx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.884 14.127\" overflow=\"visible\"><path d=\"M 0.004 0 L 5.235 0 C 8.027 0 9.884 1.876 9.884 4.582 C 9.884 7.287 8.027 9.163 5.235 9.163 L 2.423 9.163 L 2.423 14.127 L 0 14.127 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4fgz5y\",layoutDependency:layoutDependency,layoutId:\"IylJZ5iig\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.026 4.521\" overflow=\"visible\"><path d=\"M 2.7 4.521 C 4.242 4.521 5.026 3.654 5.026 2.261 C 5.026 0.868 4.237 0 2.7 0 L 0 0 L 0 4.521 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1b8as60\",layoutDependency:layoutDependency,layoutId:\"PQs2WHX6Z\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.839 14.127\" overflow=\"visible\"><path d=\"M 4.891 0 L 7.948 0 L 12.839 14.127 L 10.329 14.127 L 9.186 10.735 L 3.599 10.735 L 2.456 14.127 L 0 14.127 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14mx3py\",layoutDependency:layoutDependency,layoutId:\"rq9sRnoGE\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.125 6.136\" overflow=\"visible\"><path d=\"M 4.125 6.136 L 2.061 0 L 0 6.136 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-105j47o\",layoutDependency:layoutDependency,layoutId:\"t7Fdxvilf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.39 14.127\" overflow=\"visible\"><path d=\"M 0 0 L 2.568 0 L 6.224 11.281 L 9.86 0 L 12.39 0 L 7.686 14.127 L 4.704 14.127 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-p1kvf5\",layoutDependency:layoutDependency,layoutId:\"UUANMVk7R\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.842 14.127\" overflow=\"visible\"><path d=\"M 4.893 0 L 7.948 0 L 12.842 14.127 L 10.331 14.127 L 9.188 10.735 L 3.599 10.735 L 2.456 14.127 L 0 14.127 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xpa41v\",layoutDependency:layoutDependency,layoutId:\"kB5lYGNTK\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.125 6.136\" overflow=\"visible\"><path d=\"M 4.125 6.136 L 2.064 0 L 0 6.136 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Privacy Policy\"})}),className:\"framer-fycw45\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],layoutDependency:layoutDependency,layoutId:\"WqlkkJz_G\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(215, 220, 252))\"},children:\"\\xa9 Copyright 2025 Compava. All Rights Reserved\"})}),className:\"framer-lqwqgg\",\"data-framer-name\":\"\\xa9 Copyright 2024 UEM Secure, All Rights Reserved\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],layoutDependency:layoutDependency,layoutId:\"tOsu9hypB\",style:{\"--extracted-r6o4lv\":\"rgb(215, 220, 252)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GTRAFEITt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(215, 220, 252))\"},children:\"\\xa9 Copyright 2025 Compava. All Rights Reserved\"})})}},baseVariant,gestureVariant)})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-j3yWg.framer-1j22li9, .framer-j3yWg .framer-1j22li9 { display: block; }\",\".framer-j3yWg.framer-y7gml8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 0px 0px; position: relative; width: 1100px; }\",\".framer-j3yWg .framer-qha5xt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-j3yWg .framer-1iakiyg { flex: none; height: 420px; left: calc(50.00000000000002% - min(1000px, 1000px) / 2); max-width: 1000px; position: absolute; top: -134px; width: 1000px; z-index: 1; }\",\".framer-j3yWg .framer-1q2l4cp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 279px; justify-content: center; left: calc(50.00000000000002% - 547px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(49.76190476190479% - 279px / 2); width: 547px; }\",\".framer-j3yWg .framer-163e9xp { flex: none; height: 180px; overflow: visible; position: relative; width: 100%; }\",\".framer-j3yWg .framer-k6skea { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 546px; }\",\".framer-j3yWg .framer-19qfb81, .framer-j3yWg .framer-1co9jhe { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 546px; word-break: break-word; word-wrap: break-word; }\",\".framer-j3yWg .framer-1pc368r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-j3yWg .framer-w0i0pg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-j3yWg .framer-h0uuu6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: flex-start; padding: 0px; position: relative; width: 281px; }\",'.framer-j3yWg .framer-1pcrhka { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Glacial Indifference Regular\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 17px; --framer-input-padding: 12px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }',\".framer-j3yWg .framer-k3qe1f-container { flex: none; height: 50px; position: relative; width: auto; }\",\".framer-j3yWg .framer-bg8vrp, .framer-j3yWg .framer-fycw45, .framer-j3yWg .framer-lqwqgg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-j3yWg .framer-1vedlhq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; padding: 210px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-j3yWg .framer-16pxz0q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 1200px; }\",\".framer-j3yWg .framer-183ipi3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-j3yWg .framer-m1yszb { flex: none; height: 36px; overflow: visible; position: relative; text-decoration: none; width: 135px; }\",\".framer-j3yWg .framer-n9x0f8, .framer-j3yWg .framer-1hhlaq0 { height: 36px; left: 0px; position: absolute; top: 0px; width: 135px; }\",\".framer-j3yWg .framer-ilzz2r { height: 20px; left: 9px; position: absolute; top: 8px; width: 16px; }\",\".framer-j3yWg .framer-1uov2z2 { height: 36px; left: 0px; position: absolute; top: 0px; width: 37px; }\",\".framer-j3yWg .framer-gi13z5 { height: 15px; left: 42px; position: absolute; top: 11px; width: 13px; }\",\".framer-j3yWg .framer-1043mpw { height: 15px; left: 57px; position: absolute; top: 11px; width: 13px; }\",\".framer-j3yWg .framer-j8k9ex { height: 10px; left: 59px; position: absolute; top: 13px; width: 8px; }\",\".framer-j3yWg .framer-1bl8582 { height: 14px; left: 72px; position: absolute; top: 11px; width: 15px; }\",\".framer-j3yWg .framer-gg09a6 { height: 14px; left: 89px; position: absolute; top: 11px; width: 10px; }\",\".framer-j3yWg .framer-4fgz5y { height: 5px; left: 92px; position: absolute; top: 13px; width: 5px; }\",\".framer-j3yWg .framer-1b8as60 { height: 14px; left: 99px; position: absolute; top: 11px; width: 13px; }\",\".framer-j3yWg .framer-14mx3py { height: 6px; left: 103px; position: absolute; top: 13px; width: 4px; }\",\".framer-j3yWg .framer-105j47o { height: 14px; left: 111px; position: absolute; top: 11px; width: 13px; }\",\".framer-j3yWg .framer-p1kvf5 { height: 14px; left: 122px; position: absolute; top: 11px; width: 13px; }\",\".framer-j3yWg .framer-1xpa41v { height: 6px; left: 127px; position: absolute; top: 13px; width: 4px; }\",\".framer-j3yWg.framer-v-abpq3r.framer-y7gml8 { width: 768px; }\",\".framer-j3yWg.framer-v-abpq3r .framer-1iakiyg { left: calc(50.00000000000002% - min(1000px, 600px) / 2); width: 600px; }\",\".framer-j3yWg.framer-v-abpq3r .framer-163e9xp { height: 146px; }\",\".framer-j3yWg.framer-v-abpq3r .framer-h0uuu6 { width: 211px; }\",\".framer-j3yWg.framer-v-abpq3r .framer-1vedlhq { gap: 12px; height: 600px; }\",\".framer-j3yWg.framer-v-abpq3r .framer-16pxz0q { padding: 140px 60px 0px 60px; width: 100%; }\",\".framer-j3yWg.framer-v-abpq3r .framer-183ipi3, .framer-j3yWg.framer-v-5tf2gj .framer-183ipi3 { padding: 0px; }\",\".framer-j3yWg.framer-v-5tf2gj.framer-y7gml8 { width: 375px; }\",\".framer-j3yWg.framer-v-5tf2gj .framer-1iakiyg { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; max-width: unset; padding: 30px 32px 30px 32px; width: 90%; }\",\".framer-j3yWg.framer-v-5tf2gj .framer-1q2l4cp, .framer-j3yWg.framer-v-5tf2gj .framer-k6skea { left: unset; position: relative; top: unset; width: 100%; }\",\".framer-j3yWg.framer-v-5tf2gj .framer-163e9xp { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; }\",\".framer-j3yWg.framer-v-5tf2gj .framer-19qfb81, .framer-j3yWg.framer-v-5tf2gj .framer-1co9jhe { width: 100%; }\",\".framer-j3yWg.framer-v-5tf2gj .framer-w0i0pg { flex-direction: column; order: 1; }\",\".framer-j3yWg.framer-v-5tf2gj .framer-bg8vrp { order: 0; }\",\".framer-j3yWg.framer-v-5tf2gj .framer-1vedlhq { gap: 42px; }\",\".framer-j3yWg.framer-v-5tf2gj .framer-16pxz0q { gap: 13px; padding: 60px 60px 0px 60px; width: 100%; }\",\".framer-j3yWg.framer-v-5tf2gj .framer-lqwqgg { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 699\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eh6jqT1cf\":{\"layout\":[\"fixed\",\"auto\"]},\"GTRAFEITt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramercNhYFFMuz=withCSS(Component,css,\"framer-j3yWg\");export default FramercNhYFFMuz;FramercNhYFFMuz.displayName=\"Footer\";FramercNhYFFMuz.defaultProps={height:699,width:1100};addPropertyControls(FramercNhYFFMuz,{variant:{options:[\"ZX9o2dzmJ\",\"eh6jqT1cf\",\"GTRAFEITt\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramercNhYFFMuz,[{explicitInter:true,fonts:[{family:\"Glacial Indifference Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/jBQUgOgXaPObB1tyMOietr0Zo1I.woff2\"},{family:\"Glacial Indifference Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/60Aw8wjQGpXV3Hqwiwt6wLaQQU.woff2\"}]},...Button3Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercNhYFFMuz\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1100\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eh6jqT1cf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GTRAFEITt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"699\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cNhYFFMuz.map", "// Generated by Framer (ef635e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"HHjQn9yxt\",\"TalaUKiD9\"];const serializationHash=\"framer-IjgWI\";const variantClassNames={HHjQn9yxt:\"framer-v-1m72a6e\",TalaUKiD9:\"framer-v-zpes1b\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={desktop:\"HHjQn9yxt\",mobile:\"TalaUKiD9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"HHjQn9yxt\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HHjQn9yxt\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1m72a6e\",className,classNames),\"data-border\":true,\"data-framer-name\":\"desktop\",layoutDependency:layoutDependency,layoutId:\"HHjQn9yxt\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(234, 238, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(248, 250, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({TalaUKiD9:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2lsZGEgRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Gilda Display\", \"Gilda Display Placeholder\", serif',\"--framer-font-size\":\"172.22px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 70, 192))\"},children:\"\u201C\"})}),className:\"framer-j0606n\",\"data-framer-name\":\"quotemarks\",fonts:[\"GF;Gilda Display-regular\"],layoutDependency:layoutDependency,layoutId:\"EDcbh2ol4\",style:{\"--extracted-r6o4lv\":\"rgb(46, 70, 192)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({TalaUKiD9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2lsZGEgRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Gilda Display\", \"Gilda Display Placeholder\", serif',\"--framer-font-size\":\"132.22px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 70, 192))\"},children:\"\u201C\"})}),transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vjzz2d\",\"data-framer-name\":\"Frame 1000005918\",layoutDependency:layoutDependency,layoutId:\"cacAuStsz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 33, 34))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif'},children:\"Compava was able to help us with a complicated challenge provisioning our iOS devices to be managed by Intune. \"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.em,{children:\"We are grateful that Dmitri was able to help us; it only took him one hour to solve a problem that other consultants were unable to solve after several days of trying. We will be happy to hire him again to help with MDM challenges.\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEl0YWxpYw==\",\"--framer-font-family\":'\"Glacial Indifference Italic\", \"Glacial Indifference Italic Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-1ais0t9, rgb(0, 0, 0))\"},children:\"\u201D\"})]})}),className:\"framer-1q78w3s\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Regular\",\"CUSTOM;Glacial Indifference Bold\",\"CUSTOM;Glacial Indifference Italic\"],layoutDependency:layoutDependency,layoutId:\"wv0gnOTxB\",style:{\"--extracted-1ais0t9\":\"rgb(0, 0, 0)\",\"--extracted-r6o4lv\":\"rgb(33, 33, 34)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n4wd5s\",\"data-framer-name\":\"Frame 1000005915\",layoutDependency:layoutDependency,layoutId:\"JkM_AaG5p\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vlzhal\",\"data-framer-name\":\"Frame 1000005934\",layoutDependency:layoutDependency,layoutId:\"GkaCKiv4b\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\"},children:\"Intercept Security LLC\"})}),className:\"framer-khhvsy\",\"data-framer-name\":\"Company\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],layoutDependency:layoutDependency,layoutId:\"bv0thHr3c\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({TalaUKiD9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-line-height\":\"133.02%\"},children:\"Intercept Security LLC\"})})}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IjgWI.framer-hx53le, .framer-IjgWI .framer-hx53le { display: block; }\",\".framer-IjgWI.framer-1m72a6e { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; overflow: visible; padding: 32px; position: relative; width: 620px; }\",\".framer-IjgWI .framer-j0606n { flex: none; height: 93px; left: calc(50.00000000000002% - 62px / 2); position: absolute; top: -61px; white-space: pre-wrap; width: 62px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-IjgWI .framer-vjzz2d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IjgWI .framer-1q78w3s { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IjgWI .framer-1n4wd5s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-IjgWI .framer-1vlzhal { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-IjgWI .framer-khhvsy { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IjgWI.framer-v-zpes1b .framer-j0606n { aspect-ratio: 0.6666666666666666 / 1; height: var(--framer-aspect-ratio-supported, 93px); left: 50%; top: -48px; }\",'.framer-IjgWI[data-border=\"true\"]::after, .framer-IjgWI [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 256\n * @framerIntrinsicWidth 620\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TalaUKiD9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramereeUfuxFie=withCSS(Component,css,\"framer-IjgWI\");export default FramereeUfuxFie;FramereeUfuxFie.displayName=\"testimonial-sections\";FramereeUfuxFie.defaultProps={height:256,width:620};addPropertyControls(FramereeUfuxFie,{variant:{options:[\"HHjQn9yxt\",\"TalaUKiD9\"],optionTitles:[\"desktop\",\"mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramereeUfuxFie,[{explicitInter:true,fonts:[{family:\"Gilda Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/gildadisplay/v19/t5tmIRoYMoaYG0WEOh7HwMeR7TzFrpOHYh4.woff2\",weight:\"400\"},{family:\"Glacial Indifference Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/60Aw8wjQGpXV3Hqwiwt6wLaQQU.woff2\"},{family:\"Glacial Indifference Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/jBQUgOgXaPObB1tyMOietr0Zo1I.woff2\"},{family:\"Glacial Indifference Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/jqy78CfQS17G3xiMgW1V66op1ek.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereeUfuxFie\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"620\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"256\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TalaUKiD9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eeUfuxFie.map", "// Generated by Framer (ef635e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/87Q8cBP7BIOZWOiIdLYS/roGyEre56soFRPB7FEh7/px1s_q5i8.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/teJ4OnQ6zsrqU7NkfY94/jbyIiWQ9u9GutgiPOW5B/Q78eE2vHt.js\";const cycleOrder=[\"Ry2KaRwat\",\"M_eAdHvhd\"];const serializationHash=\"framer-RCsDk\";const variantClassNames={M_eAdHvhd:\"framer-v-uibhjj\",Ry2KaRwat:\"framer-v-t4ld6u\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={desktop:\"Ry2KaRwat\",mobile:\"M_eAdHvhd\"};const getProps=({company,height,id,name1,text,width,...props})=>{return{...props,Be6ZwRkEX:text??props.Be6ZwRkEX??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.strong,{children:\"The Compava team was very pleasant to communicate with, \"}),\"extremely helpful, and patient with last-minute requests. They executed flawlessly.\"]})}),CRhT9BITK:name1??props.CRhT9BITK??\"Andrew\",TOJoosQQB:company??props.TOJoosQQB??\"Hologram Consultants\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Ry2KaRwat\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,CRhT9BITK,TOJoosQQB,Be6ZwRkEX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Ry2KaRwat\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"M_eAdHvhd\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-t4ld6u\",className,classNames),\"data-border\":true,\"data-framer-name\":\"desktop\",layoutDependency:layoutDependency,layoutId:\"Ry2KaRwat\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(234, 238, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(248, 250, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({M_eAdHvhd:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-132s8bl\",\"data-framer-name\":\"Frame 1000005918\",layoutDependency:layoutDependency,layoutId:\"SNGYCf560\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Be6ZwRkEX,className:\"framer-830siw\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Italic\",\"CUSTOM;Glacial Indifference Bold\",\"GF;Glacial Indifference-700\"],layoutDependency:layoutDependency,layoutId:\"kx1eRjXq3\",style:{\"--extracted-1w3ko1f\":\"rgb(33, 33, 34)\",\"--extracted-3sq8v0\":\"rgb(46, 70, 192)\",\"--extracted-c9yw3e\":\"rgb(46, 70, 192)\",\"--framer-paragraph-spacing\":\"0px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",h2:\"framer-styles-preset-1m9bzi2\",h4:\"framer-styles-preset-123zoor\",p:\"framer-styles-preset-bm9u9p\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y21uta\",\"data-framer-name\":\"Frame 1000005916\",layoutDependency:layoutDependency,layoutId:\"Ie2xsn6Mn\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eonj6f\",\"data-framer-name\":\"Frame 1000005934\",layoutDependency:layoutDependency,layoutId:\"zbzUxmGv1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif'},children:\"Full Name\"})}),className:\"framer-1ufq9tc\",\"data-framer-name\":\"Name Surname\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],layoutDependency:layoutDependency,layoutId:\"YQIpj_6ah\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:CRhT9BITK,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-line-height\":\"133.02%\"},children:\"Company\"})}),className:\"framer-pe6h3s\",\"data-framer-name\":\"Company\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],layoutDependency:layoutDependency,layoutId:\"pf9nBBDJA\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:TOJoosQQB,verticalAlignment:\"top\",withExternalLayout:true})]})})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2lsZGEgRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Gilda Display\", \"Gilda Display Placeholder\", serif',\"--framer-font-size\":\"150px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(46, 70, 192))\"},children:\"\u201C\"})}),className:\"framer-b0b18\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"GF;Gilda Display-regular\"],layoutDependency:layoutDependency,layoutId:\"z04zvMbTX\",style:{\"--extracted-r6o4lv\":\"rgb(46, 70, 192)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RCsDk.framer-tp0hr5, .framer-RCsDk .framer-tp0hr5 { display: block; }\",\".framer-RCsDk.framer-t4ld6u { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; max-width: 500px; overflow: visible; padding: 46px 32px 46px 32px; position: relative; width: 500px; }\",\".framer-RCsDk .framer-132s8bl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RCsDk .framer-830siw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RCsDk .framer-1y21uta { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-RCsDk .framer-1eonj6f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-RCsDk .framer-1ufq9tc, .framer-RCsDk .framer-pe6h3s { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-RCsDk .framer-b0b18 { bottom: -31px; flex: none; height: 81px; left: calc(50.00000000000002% - 93px / 2); position: absolute; white-space: pre-wrap; width: 93px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-RCsDk.framer-v-uibhjj.framer-t4ld6u { max-width: 300px; padding: 24px 32px 24px 32px; width: min-content; }\",\".framer-RCsDk.framer-v-uibhjj .framer-132s8bl { width: 236px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-RCsDk[data-border=\"true\"]::after, .framer-RCsDk [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 227\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"500px\",null,null]},\"M_eAdHvhd\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"300px\",null,null]}}}\n * @framerVariables {\"CRhT9BITK\":\"name1\",\"TOJoosQQB\":\"company\",\"Be6ZwRkEX\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerQGQrMD_qy=withCSS(Component,css,\"framer-RCsDk\");export default FramerQGQrMD_qy;FramerQGQrMD_qy.displayName=\"Testimonial\";FramerQGQrMD_qy.defaultProps={height:227,width:500};addPropertyControls(FramerQGQrMD_qy,{variant:{options:[\"Ry2KaRwat\",\"M_eAdHvhd\"],optionTitles:[\"desktop\",\"mobile\"],title:\"Variant\",type:ControlType.Enum},CRhT9BITK:{defaultValue:\"Andrew\",displayTextArea:false,title:\"Name\",type:ControlType.String},TOJoosQQB:{defaultValue:\"Hologram Consultants\",displayTextArea:false,title:\"Company\",type:ControlType.String},Be6ZwRkEX:{defaultValue:\"<p><strong>The Compava team was very pleasant to communicate with, </strong>extremely helpful, and patient with last-minute requests. They executed flawlessly.</p>\",title:\"Text\",type:ControlType.RichText}});addFonts(FramerQGQrMD_qy,[{explicitInter:true,fonts:[{family:\"Glacial Indifference Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/jqy78CfQS17G3xiMgW1V66op1ek.woff2\"},{family:\"Glacial Indifference Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/jBQUgOgXaPObB1tyMOietr0Zo1I.woff2\"},{family:\"Glacial Indifference Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/60Aw8wjQGpXV3Hqwiwt6wLaQQU.woff2\"},{family:\"Gilda Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/gildadisplay/v19/t5tmIRoYMoaYG0WEOh7HwMeR7TzFrpOHYh4.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQGQrMD_qy\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"500\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"CRhT9BITK\\\":\\\"name1\\\",\\\"TOJoosQQB\\\":\\\"company\\\",\\\"Be6ZwRkEX\\\":\\\"text\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"227\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"500px\\\",null,null]},\\\"M_eAdHvhd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"300px\\\",null,null]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QGQrMD_qy.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={FKwnxt_2a:{hover:true},z7RFA2T0z:{hover:true}};const cycleOrder=[\"z7RFA2T0z\",\"A6ran3kVB\",\"FKwnxt_2a\"];const serializationHash=\"framer-GGhLd\";const variantClassNames={A6ran3kVB:\"framer-v-n2tgp1\",FKwnxt_2a:\"framer-v-zfpwcg\",z7RFA2T0z:\"framer-v-1h2oaoo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"no-shadow\":\"FKwnxt_2a\",\"Variant 1\":\"z7RFA2T0z\",\"Variant 2\":\"A6ran3kVB\"};const getProps=({height,id,text,width,...props})=>{return{...props,DLLP47kIC:text??props.DLLP47kIC??\"Get Your Free HIPAA Health Check\",variant:humanReadableVariantMap[props.variant]??props.variant??\"z7RFA2T0z\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,DLLP47kIC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"z7RFA2T0z\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"z7RFA2T0z\",scopeId:\"Ue_hxuiwA\",...addPropertyOverrides({FKwnxt_2a:{href:\"https://outlook.office365.com/book/UEMSecure@uemsecure.com/\",openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1h2oaoo\",className,classNames)} framer-1p0exrk`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"z7RFA2T0z\",ref:refBinding,style:{backgroundColor:\"var(--token-8483847a-ef1d-493a-ae6b-2216ac0ad702, rgb(255, 197, 63))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 14px 23.299999237060547px 0px rgba(154, 113, 21, 0.4300000071525574)\",...style},variants:{\"FKwnxt_2a-hover\":{boxShadow:\"0px 24px 28.2999992px 0px rgba(219, 154, 0, 0.5)\"},\"z7RFA2T0z-hover\":{boxShadow:\"0px 24px 28.2999992px 0px rgba(186, 130, 0, 0.5)\"},FKwnxt_2a:{boxShadow:\"none\"}},...addPropertyOverrides({\"FKwnxt_2a-hover\":{\"data-framer-name\":undefined},\"z7RFA2T0z-hover\":{\"data-framer-name\":undefined},A6ran3kVB:{\"data-framer-name\":\"Variant 2\"},FKwnxt_2a:{\"data-framer-name\":\"no-shadow\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 33, 34))\"},children:\"Get Your Free HIPAA Health Check\"})}),className:\"framer-1pic9hi\",\"data-framer-name\":\"Get Your Free HIPAA Health Check\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],layoutDependency:layoutDependency,layoutId:\"B0M5Jbtws\",style:{\"--extracted-r6o4lv\":\"rgb(33, 33, 34)\",\"--framer-paragraph-spacing\":\"0px\"},text:DLLP47kIC,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A6ran3kVB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 33, 34))\"},children:\"Get Your Free HIPAA Health Check\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19bjwe3\",\"data-framer-name\":\"Group 1000004356\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,layoutDependency:layoutDependency,layoutId:\"CtncEbSpx\",svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.75391 11.8808L11.5096 5.99999L5.75391 0.119141\" stroke=\"#212122\" stroke-width=\"1.50149\" stroke-linejoin=\"round\"/>\\n<path d=\"M0 5.99994H11.5115\" stroke=\"#212122\" stroke-width=\"1.50149\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GGhLd.framer-1p0exrk, .framer-GGhLd .framer-1p0exrk { display: block; }\",\".framer-GGhLd.framer-1h2oaoo { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; overflow: visible; padding: 16px 32px 16px 32px; position: relative; width: min-content; }\",\".framer-GGhLd .framer-1pic9hi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GGhLd .framer-19bjwe3 { flex: none; height: 12px; position: relative; width: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GGhLd.framer-1h2oaoo { gap: 0px; } .framer-GGhLd.framer-1h2oaoo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GGhLd.framer-1h2oaoo > :first-child { margin-left: 0px; } .framer-GGhLd.framer-1h2oaoo > :last-child { margin-right: 0px; } }\",\".framer-GGhLd.framer-v-n2tgp1.framer-1h2oaoo { cursor: unset; padding: 16px 24px 16px 24px; }\",\".framer-GGhLd.framer-v-zfpwcg.framer-1h2oaoo { text-decoration: none; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 374\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"A6ran3kVB\":{\"layout\":[\"auto\",\"fixed\"]},\"FKwnxt_2a\":{\"layout\":[\"auto\",\"fixed\"]},\"z_PTVOVVO\":{\"layout\":[\"auto\",\"fixed\"]},\"zFaiw4BPJ\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"DLLP47kIC\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUe_hxuiwA=withCSS(Component,css,\"framer-GGhLd\");export default FramerUe_hxuiwA;FramerUe_hxuiwA.displayName=\"Button\";FramerUe_hxuiwA.defaultProps={height:64,width:374};addPropertyControls(FramerUe_hxuiwA,{variant:{options:[\"z7RFA2T0z\",\"A6ran3kVB\",\"FKwnxt_2a\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"no-shadow\"],title:\"Variant\",type:ControlType.Enum},DLLP47kIC:{defaultValue:\"Get Your Free HIPAA Health Check\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerUe_hxuiwA,[{explicitInter:true,fonts:[{family:\"Glacial Indifference Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/jBQUgOgXaPObB1tyMOietr0Zo1I.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUe_hxuiwA\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"A6ran3kVB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"FKwnxt_2a\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"z_PTVOVVO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"zFaiw4BPJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"DLLP47kIC\\\":\\\"text\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"374\",\"framerIntrinsicHeight\":\"64\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ue_hxuiwA.map", "// Generated by Framer (4c3178a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import Footer from\"#framer/local/canvasComponent/cNhYFFMuz/cNhYFFMuz.js\";import TestimonialSections from\"#framer/local/canvasComponent/eeUfuxFie/eeUfuxFie.js\";import Header from\"#framer/local/canvasComponent/MxLnDFSPF/MxLnDFSPF.js\";import Button3 from\"#framer/local/canvasComponent/nCPRdoOor/nCPRdoOor.js\";import Testimonial from\"#framer/local/canvasComponent/QGQrMD_qy/QGQrMD_qy.js\";import Button from\"#framer/local/canvasComponent/Ue_hxuiwA/Ue_hxuiwA.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const Button3Fonts=getFonts(Button3);const TestimonialSectionsFonts=getFonts(TestimonialSections);const ButtonFonts=getFonts(Button);const TestimonialFonts=getFonts(Testimonial);const CarouselFonts=getFonts(Carousel);const FooterFonts=getFonts(Footer);const HeaderFonts=getFonts(Header);const breakpoints={tlyY7QMqp:\"(min-width: 768px) and (max-width: 1119px)\",UfxwKg5CD:\"(max-width: 767px)\",WQLkyLRf1:\"(min-width: 1120px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-lJs5z\";const variantClassNames={tlyY7QMqp:\"framer-v-1y5d6pl\",UfxwKg5CD:\"framer-v-13depyn\",WQLkyLRf1:\"framer-v-72rtr7\"};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"UfxwKg5CD\",Tablet:\"tlyY7QMqp\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"tlyY7QMqp\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"tlyY7QMqp\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"tlyY7QMqp\",\"UfxwKg5CD\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"UfxwKg5CD\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"UfxwKg5CD\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p918r\",\"data-framer-name\":\"Hero container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h25k6v\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-h9o6xi\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-li2nuf\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19n931c\",\"data-framer-name\":\"content-left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uvz9un\",\"data-framer-name\":\"Frame 1000005935\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xdcnqt\",\"data-framer-name\":\"Frame 1000005907\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-72y2l8\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qla2a6\",\"data-framer-name\":\"Frame 1000005921\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2xhY2lhbCBJbmRpZmZlcmVuY2UtNzAw\",\"--framer-font-family\":'\"Glacial Indifference\", \"Glacial Indifference Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"95%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Healthcare Business Leaders \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2xhY2lhbCBJbmRpZmZlcmVuY2UtNzAw\",\"--framer-font-family\":'\"Glacial Indifference\", \"Glacial Indifference Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"95%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Healthcare Business Leaders \"})}),className:\"framer-tph4y1\",\"data-framer-name\":\"Headline\",fonts:[\"GF;Glacial Indifference-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get a Microsoft-Powered HIPAA-Compliant Workplace in Days\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-line-height\":\"95%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get a Microsoft-Powered HIPAA-Compliant Workplace in Days\"})}),className:\"framer-e05wsn\",\"data-framer-name\":\"Headline\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"Done For You and Guaranteed\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"Risk Free, Hassle Free, and fully HIPAA compliant.\"})]})})},UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Done For You and Guaranteed\",/*#__PURE__*/_jsx(\"br\",{}),\"Risk Free, Hassle Free, and fully HIPAA compliant.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Done For You and Guaranteed\",/*#__PURE__*/_jsx(\"br\",{}),\"Risk Free, Hassle Free, and fully HIPAA compliant.\"]})}),className:\"framer-ndhagt\",\"data-framer-name\":\"Subheadline\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/9c17d581-bc71-4676-b9ca-de34a1ff3c4f/submit\",className:\"framer-je223p\",nodeId:\"FB08C5Bri\",redirectUrl:\"https://outlook.office365.com/book/UEMSecure@uemsecure.com/\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-i2bkwd\",\"data-framer-name\":\"input\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1xx3ppd\",inputName:\"Email\",placeholder:\"Your email\",required:true,type:\"email\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{y:(componentViewport?.y||0)+0+0+77+0+40+0+0+0+0+0+320.55+0},UfxwKg5CD:{y:(componentViewport?.y||0)+0+0+0+0+23+0+80+0+0+0+28+371.87+0+58}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+10+0+100+0+40+0+0+0+0+0+322.55+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l51sw-container\",nodeId:\"nG2bWwESU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button3,{height:\"100%\",id:\"nG2bWwESU\",layoutId:\"nG2bWwESU\",style:{height:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"TbxfIfGcs\",success:\"m87qMvQ9X\"},\"WeQbbvHEc\"),width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+77+0+40+0+0+0+114.775),pixelHeight:1856,pixelWidth:2780,positionX:\"center\",positionY:\"center\",sizes:\"212px\",src:\"https://framerusercontent.com/images/tW3NqS9RZQoebK1Hndv6A0OqwhQ.png\",srcSet:\"https://framerusercontent.com/images/tW3NqS9RZQoebK1Hndv6A0OqwhQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/tW3NqS9RZQoebK1Hndv6A0OqwhQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tW3NqS9RZQoebK1Hndv6A0OqwhQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tW3NqS9RZQoebK1Hndv6A0OqwhQ.png 2780w\"}},UfxwKg5CD:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+23+0+80+0+0+535.87),pixelHeight:1856,pixelWidth:2734,positionX:\"right\",positionY:\"top\",sizes:\"358px\",src:\"https://framerusercontent.com/images/JcYhmwX5DqZeDHOYxMOrrR3Aq8.png\",srcSet:\"https://framerusercontent.com/images/JcYhmwX5DqZeDHOYxMOrrR3Aq8.png?scale-down-to=512 512w,https://framerusercontent.com/images/JcYhmwX5DqZeDHOYxMOrrR3Aq8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JcYhmwX5DqZeDHOYxMOrrR3Aq8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JcYhmwX5DqZeDHOYxMOrrR3Aq8.png 2734w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+0+100+0+40+0+0+0+6.775),pixelHeight:1856,pixelWidth:2780,positionX:\"center\",positionY:\"center\",sizes:\"538px\",src:\"https://framerusercontent.com/images/tW3NqS9RZQoebK1Hndv6A0OqwhQ.png\",srcSet:\"https://framerusercontent.com/images/tW3NqS9RZQoebK1Hndv6A0OqwhQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/tW3NqS9RZQoebK1Hndv6A0OqwhQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tW3NqS9RZQoebK1Hndv6A0OqwhQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tW3NqS9RZQoebK1Hndv6A0OqwhQ.png 2780w\"},className:\"framer-1ls0s95\",\"data-framer-name\":\"abstract-cybersecurity-concept-design\"})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q62vhs\",\"data-framer-name\":\"logos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Clients Who Love Us\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Clients Who Love Us\"})}),className:\"framer-zd7chk\",\"data-framer-name\":\"Headline\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m3rbfy\",\"data-framer-name\":\"logos\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mf7729\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-18sjmz7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+527.55+80+104+0+0+10.4933),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/8BAcrQQPCqkgF45EOAAdUjRxo.png\"}},UfxwKg5CD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+939.87+80+152+0+0+0+11.5616),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/8BAcrQQPCqkgF45EOAAdUjRxo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+552.55+80+104+0+0+7.4384),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/8BAcrQQPCqkgF45EOAAdUjRxo.png\"},className:\"framer-1t0a3o7\",\"data-framer-name\":\"Image\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ac6nv\",\"data-framer-name\":\"wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+527.55+80+104+2.575+6.425),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/lpGPAylSQFSTCHhAaKVuHIPeHF0.png\"}},UfxwKg5CD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+939.87+80+152+0+82+0+0),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/lpGPAylSQFSTCHhAaKVuHIPeHF0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+552.55+80+104+.5+0),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/lpGPAylSQFSTCHhAaKVuHIPeHF0.png\"},className:\"framer-1t00boi\",\"data-framer-name\":\"Image (2)\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:479,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+527.55+80+104+2.575+0),pixelHeight:120,pixelWidth:479,src:\"https://framerusercontent.com/images/PYJndy8TiTxnB5fQgfiuG4NY9k.png\"}},UfxwKg5CD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:479,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+939.87+80+152+0+82+0+73),pixelHeight:120,pixelWidth:479,src:\"https://framerusercontent.com/images/PYJndy8TiTxnB5fQgfiuG4NY9k.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:479,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+552.55+80+104+.5+6.075),pixelHeight:120,pixelWidth:479,src:\"https://framerusercontent.com/images/PYJndy8TiTxnB5fQgfiuG4NY9k.png\"},className:\"framer-1g7czjj\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16t1qmc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"rgb(50, 53, 54)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Mindful Possibilities\"})})}),className:\"framer-1k8mr3p\",fonts:[\"FS;Montserrat-regular\",\"FS;Montserrat-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7hthuo\",\"data-framer-name\":\"Painpoints\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Say Goodbye to\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Say Goodbye to\"})}),className:\"framer-jlovwz\",\"data-framer-name\":\"Headline\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pluap6\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qunn1g\",\"data-framer-name\":\"Frame 220\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1w1rr8k\",\"data-framer-name\":\"fi_17053531\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:102,intrinsicWidth:103,svg:'<svg width=\"103\" height=\"102\" viewBox=\"0 0 103 102\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_183_225)\">\\n<path d=\"M63.6964 6.6831C66.273 5.19195 68.3587 6.38332 68.3671 9.35133L68.5361 69.1342C68.5445 72.0922 66.4723 75.6899 63.8958 77.181L26.7382 98.6857C24.1612 100.177 22.0759 98.9855 22.0675 96.0276L21.8985 36.2447C21.8901 33.2767 23.9618 29.6792 26.5388 28.1878L63.6964 6.6831Z\" fill=\"white\"/>\\n<path d=\"M68.5311 69.1359C68.5468 72.0877 66.4819 75.6971 63.8973 77.1806L26.7478 98.6842C24.1632 100.183 22.0834 98.99 22.0677 96.0229L22.0371 84.8582C24.7898 85.6842 27.6656 86.1277 30.6326 86.1277C49.7039 86.1277 65.1668 67.8206 65.1668 45.2159C65.1668 32.3077 60.1193 20.8064 52.243 13.3124L63.6986 6.69001C66.2676 5.19121 68.363 6.38411 68.363 9.35117L68.5311 69.1359Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M24.6429 99.9431C24.0955 99.9431 23.5847 99.8132 23.1292 99.5511C22.056 98.9342 21.4623 97.6834 21.4579 96.0292L21.2891 36.2463C21.2801 33.0403 23.4525 29.2683 26.235 27.6582L63.392 6.15314C64.8363 5.31823 66.226 5.19651 67.3074 5.81783C68.382 6.43542 68.9764 7.69001 68.9809 9.34937L69.1497 69.1323C69.1586 72.3323 66.9862 76.1006 64.2037 77.7106L27.0468 99.215C26.2104 99.6989 25.3927 99.9431 24.6429 99.9431ZM64.0043 7.21207L26.8474 28.7172C24.4495 30.1047 22.5049 33.4809 22.5123 36.2433L22.6811 96.0262C22.6848 97.2248 23.0605 98.1001 23.7393 98.4906C24.4233 98.8819 25.3815 98.7654 26.4344 98.1561L63.5914 76.6517C65.9893 75.2642 67.9339 71.8924 67.9264 69.1353L67.7577 9.35235C67.7539 8.14779 67.3776 7.26958 66.698 6.87826C66.0124 6.48471 65.0558 6.6027 64.0043 7.21207Z\" fill=\"black\"/>\\n<path d=\"M61.226 2.98516C60.3777 2.49145 59.2157 2.56006 57.9156 3.31431L20.7579 24.8176C19.1291 25.7594 17.7095 27.5349 16.8828 29.4636L22.6689 32.8363C23.4948 30.91 24.9152 29.1334 26.5454 28.1911L63.7024 6.68781C65.0018 5.93365 66.1645 5.86504 67.0129 6.35876L61.226 2.98516Z\" fill=\"#2E46C0\"/>\\n<path d=\"M22.6675 33.448C22.5607 33.448 22.4539 33.4204 22.3591 33.3651L16.573 29.9919C16.3064 29.8359 16.1974 29.5058 16.3191 29.222C17.228 27.1026 18.7723 25.2581 20.4503 24.288L57.608 2.78513C59.0575 1.94426 60.4525 1.82626 61.5324 2.45655L67.3177 5.82902C67.3184 5.82902 67.3184 5.82977 67.3192 5.82977C67.6104 6.00003 67.7105 6.37417 67.5402 6.66617C67.3707 6.9589 66.9966 7.05524 66.7038 6.88721C66.0183 6.48843 65.0609 6.60568 64.0079 7.21729L26.8503 28.7209C25.391 29.564 24.0379 31.192 23.2299 33.0776C23.1604 33.2389 23.026 33.3622 22.8595 33.4174C22.7967 33.4383 22.7318 33.448 22.6675 33.448ZM17.6686 29.2138L22.3957 31.9702C23.3232 30.1166 24.7264 28.535 26.2379 27.662L63.3948 6.15835C63.7869 5.93058 64.176 5.75584 64.5553 5.63486L60.917 3.51399C60.2337 3.11596 59.2748 3.23395 58.2211 3.84407L21.0627 25.3469C19.7327 26.1161 18.4908 27.5387 17.6686 29.2138Z\" fill=\"#2E46C0\"/>\\n<path d=\"M16.1212 32.8813L16.2847 92.6597C16.2847 94.1272 16.8052 95.1557 17.6394 95.6494L23.4262 99.0093C22.5913 98.5293 22.0715 97.5008 22.0715 96.0333L21.9072 36.2413C21.902 35.1464 22.1843 33.9659 22.669 32.8364L16.8829 29.4637C16.3982 30.5959 16.1159 31.7806 16.1212 32.8813Z\" fill=\"#2E46C0\"/>\\n<path d=\"M23.4257 99.6205C23.3227 99.6205 23.2181 99.5944 23.1218 99.5391C23.1211 99.5391 23.1203 99.5384 23.1196 99.5376C23.1128 99.5346 23.1069 99.5309 23.1001 99.5272L17.3327 96.1778C16.2611 95.5438 15.6734 94.2952 15.6734 92.6597L15.5098 32.8827C15.5046 31.7402 15.7847 30.4751 16.3208 29.2228C16.3895 29.0615 16.5247 28.9375 16.6912 28.8822C16.8563 28.827 17.0385 28.8441 17.1916 28.9345L22.9777 32.3077C23.2443 32.4638 23.3533 32.7939 23.2316 33.0777C22.7611 34.1739 22.5147 35.2665 22.5191 36.238L22.6834 96.0315C22.6834 97.2136 23.0501 98.0777 23.7162 98.4697L23.7334 98.4802C24.0254 98.6489 24.1247 99.0223 23.956 99.3151C23.8432 99.5107 23.6371 99.6205 23.4257 99.6205ZM17.1938 30.3526C16.8877 31.2316 16.7293 32.0941 16.7331 32.8783L16.8966 92.6582C16.8966 93.8456 17.2715 94.7201 17.9511 95.1226L21.5767 97.2278C21.4998 96.8589 21.4602 96.4594 21.4602 96.033L21.2959 36.2425C21.2914 35.259 21.5005 34.1814 21.9045 33.0993L17.1938 30.3526Z\" fill=\"#2E46C0\"/>\\n<path d=\"M55.9688 21.8186L62.0925 18.275Z\" fill=\"#FFD63C\"/>\\n<path d=\"M55.9682 22.4307C55.7569 22.4307 55.5515 22.3217 55.438 22.1253C55.2685 21.8333 55.3685 21.4591 55.6613 21.2896L61.7856 17.7454C62.0791 17.5759 62.4525 17.6767 62.6213 17.9687C62.7908 18.2607 62.6907 18.6348 62.398 18.8043L56.2736 22.3485C56.1773 22.4046 56.072 22.4307 55.9682 22.4307Z\" fill=\"black\"/>\\n<path d=\"M28.2988 37.8331L50.382 25.0533Z\" fill=\"#FFD63C\"/>\\n<path d=\"M28.3002 38.4447C28.0889 38.4447 27.8835 38.3357 27.77 38.1393C27.6005 37.8473 27.7006 37.4731 27.9933 37.3036L50.0757 24.5247C50.3684 24.3552 50.7433 24.456 50.9113 24.748C51.0808 25.04 50.9808 25.4141 50.688 25.5836L28.6057 38.3626C28.5093 38.4186 28.404 38.4447 28.3002 38.4447Z\" fill=\"black\"/>\\n<path d=\"M55.9688 53.0506L62.0925 49.507Z\" fill=\"#FFD63C\"/>\\n<path d=\"M55.9682 53.6626C55.7569 53.6626 55.5515 53.5535 55.438 53.3571C55.2685 53.0651 55.3685 52.691 55.6613 52.5215L61.7856 48.9772C62.0791 48.8092 62.4525 48.9078 62.6213 49.2005C62.7908 49.4925 62.6907 49.8667 62.398 50.0362L56.2736 53.5804C56.1773 53.6364 56.072 53.6626 55.9682 53.6626Z\" fill=\"black\"/>\\n<path d=\"M28.2988 69.0651L50.382 56.2853Z\" fill=\"#FFD63C\"/>\\n<path d=\"M28.3002 69.6768C28.0889 69.6768 27.8835 69.5677 27.77 69.3713C27.6005 69.0794 27.7006 68.7052 27.9933 68.5357L50.0757 55.7567C50.3684 55.588 50.7433 55.6873 50.9113 55.98C51.0808 56.272 50.9808 56.6462 50.688 56.8157L28.6057 69.5946C28.5093 69.6506 28.404 69.6768 28.3002 69.6768Z\" fill=\"black\"/>\\n<path d=\"M28.2988 78.0797L62.0958 58.5216Z\" fill=\"#FFD63C\"/>\\n<path d=\"M28.3002 78.6914C28.0889 78.6914 27.8835 78.5823 27.77 78.3859C27.6005 78.094 27.7006 77.7198 27.9933 77.5503L61.7897 57.992C62.0832 57.824 62.4566 57.9241 62.6254 58.2153C62.7949 58.5073 62.6948 58.8815 62.4021 59.051L28.6057 78.6092C28.5093 78.6652 28.404 78.6914 28.3002 78.6914Z\" fill=\"black\"/>\\n<path d=\"M41.6289 79.3795L62.094 67.5357Z\" fill=\"#FFD63C\"/>\\n<path d=\"M41.6303 79.9905C41.419 79.9905 41.2136 79.8815 41.1001 79.685C40.9306 79.3931 41.0306 79.0189 41.3234 78.8494L61.789 67.0062C62.0825 66.8381 62.4558 66.9367 62.6246 67.2295C62.7941 67.5214 62.6941 67.8956 62.4013 68.0651L41.9357 79.9083C41.8394 79.9643 41.7341 79.9905 41.6303 79.9905Z\" fill=\"black\"/>\\n<path d=\"M28.2988 87.0939L36.5041 82.3466Z\" fill=\"#FFD63C\"/>\\n<path d=\"M28.3002 87.7056C28.0889 87.7056 27.8835 87.5965 27.77 87.4001C27.6005 87.1082 27.7006 86.734 27.9933 86.5645L36.1975 81.8172C36.4909 81.6477 36.8643 81.7477 37.0331 82.0405C37.2026 82.3325 37.1026 82.7066 36.8098 82.8761L28.6057 87.6234C28.5093 87.6794 28.404 87.7056 28.3002 87.7056Z\" fill=\"black\"/>\\n<path d=\"M31.8238 58.8066C31.7185 58.8066 31.6117 58.7797 31.5139 58.7222C31.2234 58.5505 31.1263 58.1756 31.2973 57.8844L36.8242 48.4951C36.987 48.2187 37.3373 48.1149 37.6233 48.2576L42.1316 50.4964L47.3651 42.3953C47.5406 42.128 47.8931 42.0369 48.1739 42.1915L52.4947 44.567L57.6774 35.9028C57.8492 35.6123 58.2248 35.516 58.5168 35.6922C58.8066 35.8655 58.9007 36.2411 58.7274 36.5316L53.2415 45.7013C53.0735 45.9814 52.7113 46.0822 52.4216 45.9231L48.0835 43.5379L42.8627 51.6196C42.694 51.8787 42.3542 51.9728 42.0771 51.8354L37.5897 49.607L32.3518 58.5057C32.2375 58.6991 32.0336 58.8066 31.8238 58.8066Z\" fill=\"black\"/>\\n<path d=\"M62.1323 30.427L60.4503 40.0726C60.3367 40.7241 59.6112 41.0657 59.0366 40.7383L53.1873 37.4051C52.6092 37.0757 52.5367 36.2709 53.0467 35.8435L60.578 29.531C61.2605 28.959 62.2853 29.5498 62.1323 30.427Z\" fill=\"#00E6E9\"/>\\n<path d=\"M62.1353 30.4252L60.4512 40.0745C60.3322 40.7283 59.609 41.0651 59.0343 40.7382L55.8047 38.9055C58.4596 38.1822 60.4016 35.8937 60.4016 33.1793C60.4016 32.149 60.1242 31.1781 59.6288 30.336L60.5798 29.5336C61.2634 28.959 62.2838 29.5534 62.1353 30.4252Z\" fill=\"#00E6E9\"/>\\n<path d=\"M59.5098 41.4754C59.2409 41.4754 58.9728 41.4067 58.7331 41.27L52.8843 37.9371C52.4392 37.6832 52.1465 37.2269 52.1002 36.7169C52.0539 36.2061 52.26 35.7042 52.6528 35.3749L60.1848 29.0623C60.6949 28.6352 61.3969 28.5725 61.9741 28.9063C62.5507 29.2386 62.8494 29.8763 62.7351 30.532L61.0526 40.1782C60.9652 40.68 60.6374 41.1094 60.1766 41.326C59.9653 41.4261 59.7375 41.4754 59.5098 41.4754ZM61.1863 29.9167C61.1206 29.9167 61.0459 29.9368 60.9705 30.0003L53.4392 36.3121C53.3159 36.4159 53.3137 36.5526 53.3182 36.6063C53.3249 36.6728 53.3548 36.7968 53.4907 36.8737L59.3395 40.2066C59.4747 40.2843 59.5964 40.2469 59.6554 40.2193C59.7159 40.1909 59.8204 40.1207 59.8473 39.9676L61.5298 30.3214C61.5671 30.1086 61.426 30.0018 61.3633 29.966C61.3289 29.9465 61.2647 29.9167 61.1863 29.9167Z\" fill=\"#2E46C0\"/>\\n<path d=\"M48.0041 40.6505C49.0946 40.0219 49.9797 40.5264 49.9832 41.7766C49.9868 43.0258 49.1074 44.5493 48.017 45.1779C46.9273 45.806 46.0407 45.3006 46.0371 44.0514C46.0336 42.8012 46.9145 41.2786 48.0041 40.6505Z\" fill=\"white\"/>\\n<path d=\"M47.1273 46.0583C46.8323 46.0583 46.5545 45.9881 46.3088 45.8462C45.7487 45.5236 45.4261 44.8701 45.4238 44.0532C45.4201 42.585 46.4186 40.8577 47.697 40.1206C48.4117 39.7076 49.148 39.6576 49.7096 39.981C50.269 40.3036 50.5916 40.957 50.5938 41.7747C50.5976 43.2437 49.5991 44.971 48.3214 45.708C47.9181 45.9403 47.5081 46.0583 47.1273 46.0583ZM48.3079 41.181C47.4051 41.7015 46.6448 43.0151 46.6471 44.0502C46.6486 44.4131 46.7501 44.6887 46.9196 44.7858C47.0899 44.8851 47.3871 44.8343 47.7105 44.6476C48.6126 44.1271 49.3728 42.8128 49.3706 41.7777C49.3691 41.414 49.2683 41.1385 49.0988 41.0414C48.9277 40.9421 48.6298 40.9943 48.3079 41.181Z\" fill=\"black\"/>\\n<path d=\"M37.3576 46.4814C38.4481 45.8528 39.3332 46.3573 39.3367 47.6075C39.3403 48.8568 38.4609 50.3802 37.3705 51.0088C36.2809 51.637 35.3942 51.1316 35.3906 49.8823C35.3871 48.6321 36.268 47.1095 37.3576 46.4814Z\" fill=\"white\"/>\\n<path d=\"M36.482 51.8891C36.187 51.8891 35.9092 51.8189 35.6635 51.6771C35.1034 51.3544 34.7808 50.701 34.7793 49.884C34.7748 48.4159 35.7733 46.6885 37.0525 45.9515C37.7694 45.5385 38.5043 45.4892 39.0644 45.8118C39.6237 46.1344 39.9463 46.7879 39.9485 47.6056C39.9523 49.0745 38.9538 50.8018 37.6761 51.5389C37.2728 51.7712 36.8628 51.8891 36.482 51.8891ZM38.2436 46.823C38.0816 46.823 37.8785 46.8879 37.6634 47.0119C36.7598 47.5324 35.9996 48.846 36.0025 49.881C36.0033 50.2447 36.1049 50.5195 36.2744 50.6174C36.4454 50.7152 36.7411 50.6644 37.0652 50.4785C37.9673 49.958 38.7276 48.6436 38.7253 47.6086C38.7238 47.2449 38.623 46.9693 38.4535 46.8723C38.3967 46.8394 38.325 46.823 38.2436 46.823Z\" fill=\"black\"/>\\n<path d=\"M81.3855 54.0006C78.5798 52.3713 74.6976 52.6027 70.4032 55.0666C61.8847 59.9846 55.0055 71.8722 55.0257 81.6579C55.0458 86.5054 56.7555 89.9249 59.5313 91.534L55.6692 89.2913C52.9035 87.6821 51.1837 84.2728 51.1739 79.4151C51.1435 69.6396 58.0328 57.7419 66.5512 52.834C70.8355 50.3599 74.7278 50.1286 77.5338 51.7578L81.3855 54.0006Z\" fill=\"#FFD63C\"/>\\n<path d=\"M59.5288 92.1453C59.425 92.1453 59.3197 92.1192 59.2226 92.0632C59.2174 92.0602 59.2121 92.0565 59.2069 92.0535L55.361 89.8198C52.2753 88.0246 50.5704 84.3302 50.5607 79.4164C50.5293 69.4678 57.5647 57.3049 66.2438 52.3037C70.5909 49.793 74.7094 49.4107 77.8391 51.2291L81.6851 53.4679C81.6873 53.4687 81.6888 53.4702 81.6911 53.4717C81.983 53.6419 82.0831 54.0161 81.9128 54.3081C81.7433 54.5986 81.3699 54.7016 81.0772 54.5291L81.0735 54.5269C78.3462 52.9459 74.6631 53.3253 70.7059 55.5978C62.377 60.4055 55.6164 72.0964 55.6358 81.6568C55.6545 86.1165 57.1406 89.4323 59.8208 90.9953L59.8364 91.005C60.1292 91.1745 60.2285 91.5486 60.059 91.8406C59.9455 92.0363 59.7401 92.1453 59.5288 92.1453ZM73.472 51.3224C71.4564 51.3224 69.2041 52.0072 66.8555 53.3634C58.5146 58.1697 51.754 69.8546 51.7839 79.4127C51.7928 83.8747 53.2812 87.1949 55.9756 88.7624L56.0689 88.8169C54.9965 86.9261 54.4245 84.4968 54.4126 81.6605C54.3916 71.7081 61.4271 59.5415 70.095 54.5373C72.6341 53.0804 75.0925 52.344 77.3194 52.3418L77.2245 52.2865C76.1148 51.642 74.849 51.3224 73.472 51.3224Z\" fill=\"black\"/>\\n<path d=\"M70.4051 55.0711C78.9224 50.1616 85.8552 54.09 85.883 63.8692C85.9082 72.7637 80.2031 83.4307 72.7549 88.9763C72.0207 89.5229 71.2698 90.0201 70.5055 90.4606C69.7413 90.9011 68.99 91.2699 68.2552 91.57C60.7996 94.615 55.0527 90.5491 55.0274 81.6546C54.9997 71.8754 61.8875 59.9807 70.4051 55.0711Z\" fill=\"white\"/>\\n<path d=\"M85.8812 63.8666C85.9114 72.7672 80.209 83.4278 72.7565 88.9794C72.0223 89.5225 71.268 90.0153 70.5037 90.4578C69.7393 90.9003 68.9951 91.2725 68.2609 91.5742C62.7597 93.8169 58.1937 92.1977 56.1621 87.6217C57.7412 87.9938 59.3806 88.1849 61.0701 88.1849C72.9274 88.1849 82.5421 78.5702 82.5421 66.7128C82.5421 61.483 80.6716 56.6858 77.5739 52.9646C82.492 53.0853 85.8711 57.0579 85.8812 63.8666Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M63.5851 93.1795C61.801 93.1795 60.1686 92.715 58.7863 91.789C55.9806 89.9101 54.4288 86.3114 54.4161 81.6559C54.387 71.7065 61.4224 59.5422 70.0993 54.541C74.4366 52.0393 78.5477 51.6547 81.6714 53.4544C84.7676 55.237 86.4807 58.9351 86.4942 63.8676C86.5196 72.7662 80.7701 83.7716 73.12 89.4665C72.3606 90.0319 71.5839 90.5449 70.811 90.9907C70.0373 91.4366 69.2547 91.8226 68.4862 92.1363C66.7813 92.833 65.1265 93.1795 63.5851 93.1795ZM70.7102 55.6014C62.3723 60.407 55.6117 72.0941 55.6393 81.653C55.6513 85.8887 57.0104 89.1268 59.4666 90.7727C61.6965 92.264 64.7337 92.3454 68.0232 91.0042C68.7409 90.7107 69.4735 90.3492 70.2001 89.9303C70.9312 89.5084 71.6683 89.0222 72.3897 88.4853C79.7574 83.0001 85.2948 72.4182 85.2709 63.8706C85.2582 59.3936 83.7632 56.0704 81.0613 54.5141C78.3311 52.9444 74.6547 53.329 70.7102 55.6014Z\" fill=\"black\"/>\\n<path d=\"M70.4261 60.8474C76.167 57.5379 80.8269 60.1941 80.8456 66.7759C80.8643 73.3531 76.2347 81.3737 70.4938 84.6831C64.7572 87.9901 60.089 85.3294 60.0704 78.7522C60.0517 72.1703 64.6895 64.1543 70.4261 60.8474Z\" fill=\"#FFD63C\"/>\\n<path d=\"M74.6389 59.4491C77.56 63.0336 78.4035 68.4049 76.4184 73.4271C73.713 80.2876 66.7185 84.0158 60.5469 82.0131C61.8738 86.1109 65.8237 87.3741 70.4936 84.6833C76.2331 81.3763 80.8618 73.3551 80.8517 66.772C80.8414 61.9141 78.2903 59.1923 74.6389 59.4491Z\" fill=\"#F4C531\"/>\\n<path d=\"M65.8343 86.7213C64.7358 86.7213 63.7157 86.4629 62.8114 85.9424C60.6591 84.7027 59.4688 82.1502 59.459 78.7539C59.4396 71.988 64.2228 63.7174 70.1209 60.3173C73.1043 58.5974 75.9413 58.3376 78.1077 59.5839C80.2577 60.8229 81.4473 63.3761 81.457 66.7747C81.4764 73.5428 76.6948 81.8142 70.7989 85.2135C69.0604 86.2157 67.3712 86.7213 65.8343 86.7213ZM75.087 60.0313C73.7652 60.0313 72.2821 60.4838 70.7317 61.3777C65.1727 64.5822 60.6644 72.3756 60.6823 78.7509C60.6905 81.6917 61.6635 83.8693 63.4222 84.882C65.1973 85.9051 67.5997 85.6444 70.1881 84.1531C75.7456 80.9494 80.2517 73.1552 80.2338 66.7777C80.2256 63.8339 79.2533 61.6563 77.4976 60.6444C76.7859 60.2351 75.9727 60.0313 75.087 60.0313Z\" fill=\"black\"/>\\n<path d=\"M73.0609 72.0302C73.3049 72.2342 73.4297 72.6173 73.4313 73.184C73.4326 73.6473 73.324 74.1288 73.1095 74.6264C72.893 75.1274 72.5861 75.6039 72.1888 76.0559C71.7896 76.5091 71.3293 76.9028 70.8041 77.2393L70.8068 78.1681C70.8071 78.2805 70.776 78.3931 70.7115 78.5046C70.647 78.6161 70.5609 78.704 70.4551 78.765C70.357 78.8215 70.2746 78.833 70.2098 78.8006C70.1449 78.7682 70.1132 78.6895 70.1129 78.5681L70.1102 77.6393C69.2888 78.0521 68.5199 78.2903 67.8054 78.3531C67.7151 78.3623 67.6385 78.3344 67.5774 78.2682C67.5164 78.2043 67.4847 78.1145 67.4844 78.002C67.484 77.8536 67.5287 77.6994 67.6146 77.5395C67.7025 77.3807 67.8141 77.2601 67.9513 77.181C68.0258 77.138 68.0984 77.1142 68.1671 77.1107C68.7834 77.0685 69.4307 76.871 70.107 76.5149L70.0985 73.5082C69.5806 73.6491 69.145 73.7313 68.7917 73.7502C68.4383 73.7715 68.1416 73.6812 67.9054 73.4817C67.6693 73.2822 67.5505 72.925 67.549 72.41C67.5477 71.958 67.6445 71.4832 67.8356 70.9879C68.0285 70.4938 68.3157 70.0083 68.6992 69.535C69.0827 69.0594 69.5428 68.6409 70.0837 68.2774L70.0811 67.3621C70.0807 67.2496 70.1118 67.1349 70.1763 67.0188C70.2408 66.9029 70.323 66.8172 70.421 66.7606C70.519 66.7042 70.6034 66.6938 70.6722 66.733C70.741 66.7722 70.7746 66.8496 70.7749 66.9621L70.7775 67.8639C71.5224 67.4705 72.1834 67.2336 72.7624 67.1521C72.9763 67.1167 73.0826 67.2289 73.0833 67.492C73.0837 67.6314 73.0429 67.7811 72.959 67.9421C72.875 68.1054 72.7654 68.2248 72.6282 68.3039C72.5831 68.3299 72.5223 68.347 72.4458 68.3573C71.9296 68.4454 71.3746 68.6459 70.7806 68.9635L70.7895 72.076C71.3387 71.9058 71.792 71.8067 72.1531 71.7741C72.5143 71.7394 72.8169 71.8263 73.0609 72.0302ZM70.8009 76.1149C71.8729 75.4114 72.4066 74.6059 72.404 73.6974C72.403 73.3578 72.267 73.1727 71.998 73.1408C71.7269 73.1078 71.3266 73.1629 70.7929 73.3038L70.8009 76.1149ZM70.095 72.2781L70.0868 69.4018C69.6304 69.7348 69.2662 70.1046 68.9945 70.509C68.7208 70.9169 68.5845 71.3198 68.5857 71.7223C68.5867 72.1046 68.715 72.328 68.9704 72.3903C69.2258 72.4525 69.6007 72.4144 70.095 72.2781Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_183_225\">\\n<rect width=\"102\" height=\"102\" fill=\"white\" transform=\"translate(0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\"},children:[\"Fear of Legal Repercussions\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\"},children:\" and Non-Compliance.\"})]})})},UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:[\"Fear of Legal Repercussions\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\"},children:\" and Non-Compliance.\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"120%\"},children:[\"Fear of Legal Repercussions\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif'},children:\" and Non-Compliance.\"})]})}),className:\"framer-1tnk66l\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Bold\",\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18hlwfn\",\"data-framer-name\":\"Frame 221\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ile8g8\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:102,intrinsicWidth:103,svg:'<svg width=\"103\" height=\"102\" viewBox=\"0 0 103 102\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M93.2269 23.9575C94.4549 24.668 94.9479 26.4088 94.3927 28.0521L89.3789 42.8557L56.1289 23.6183L64.549 10.7855C65.4844 9.36222 67.0819 8.83082 68.3099 9.54131L93.2269 23.9575Z\" fill=\"white\"/>\\n<path d=\"M94.3954 28.0467L89.3697 42.8617L87.0502 41.5258C88.5567 39.1479 89.4097 36.3825 89.4097 33.4303C89.4097 24.5067 76.8161 20.0143 67.1514 20.0143C61.1259 20.0143 60.5489 20.0715 57.3894 24.3596L56.123 23.625L64.5481 10.7872C65.4812 9.35772 67.0808 8.83687 68.3075 9.54476L93.2224 23.959C94.4487 24.6668 94.9421 26.4036 94.3954 28.0467Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M89.375 43.4565C89.271 43.4565 89.167 43.4286 89.0747 43.3759L55.825 24.1381C55.6822 24.0546 55.5796 23.9169 55.5415 23.7558C55.5035 23.5961 55.5335 23.4262 55.6236 23.2885L64.0435 10.4565C65.1495 8.7719 67.1131 8.15521 68.6065 9.02093L93.5235 23.4379C95.0059 24.2963 95.6087 26.3163 94.9576 28.2441L89.9434 43.0478C89.8855 43.2192 89.7544 43.3539 89.586 43.4169C89.5179 43.4433 89.4461 43.4565 89.375 43.4565ZM56.9749 23.4159L89.0418 41.9697L93.8208 27.8603C94.2823 26.495 93.8963 25.0405 92.9229 24.478L68.0059 10.061C67.0523 9.50726 65.8094 9.95403 65.0469 11.1157L56.9749 23.4159Z\" fill=\"black\"/>\\n<path d=\"M9.79684 29.4655C8.56881 30.176 8.07587 31.9168 8.63103 33.5602L13.6448 48.3637L56.1383 23.6248L47.9587 10.7705C47.0232 9.3472 45.4258 8.8158 44.1977 9.5263L9.79684 29.4655Z\" fill=\"white\"/>\\n<path d=\"M53.4243 19.3545C50.5315 17.6445 47.1453 16.6693 43.5456 16.6693C32.7475 16.6693 14.5048 30.9694 14.5048 41.7905C14.5048 43.741 14.7847 45.6114 15.3181 47.3881L13.6384 48.3634L8.6258 33.5612C8.07901 31.918 8.57242 30.1812 9.79879 29.4598L44.1991 9.52201C45.4255 8.81392 47.0252 9.34833 47.9583 10.7644L53.4243 19.3545Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M13.6438 48.9644C13.5728 48.9644 13.5018 48.9512 13.4336 48.9263C13.2645 48.8618 13.1334 48.7271 13.0755 48.5557L8.06133 33.752C7.41021 31.8242 8.01299 29.8042 9.49541 28.9458L43.8958 9.00782C45.3921 8.1377 47.3536 8.75879 48.4588 10.4404L56.6436 23.3032C56.7315 23.4409 56.7593 23.6079 56.7205 23.7676C56.6817 23.9258 56.5806 24.062 56.4393 24.144L13.9456 48.8823C13.8526 48.9365 13.7486 48.9644 13.6438 48.9644ZM45.376 9.81055C45.0713 9.81055 44.7718 9.88672 44.4971 10.0464L10.0967 29.9844C10.0967 29.9844 10.096 29.9844 10.096 29.9858C9.12261 30.5483 8.73662 32.0029 9.19805 33.3682L13.9764 47.4761L55.2959 23.4204L47.4517 11.0923C46.9119 10.272 46.1268 9.81055 45.376 9.81055Z\" fill=\"black\"/>\\n<path d=\"M56.1389 23.6246L13.6328 48.3784L46.8708 67.6088L89.3769 42.8551L56.1389 23.6246Z\" fill=\"white\"/>\\n<path d=\"M46.8711 68.2093C46.7671 68.2093 46.6638 68.1815 46.5708 68.1287L13.3328 48.8983C13.1475 48.7899 13.0332 48.5936 13.0332 48.3797C13.0325 48.1658 13.146 47.9681 13.3313 47.8597L55.8374 23.1068C56.0234 22.9984 56.2534 22.9998 56.4395 23.1053L89.6775 42.3358C89.8628 42.4442 89.9771 42.6404 89.9771 42.8543C89.9778 43.0682 89.8643 43.2659 89.679 43.3743L47.1729 68.1273C47.0798 68.1815 46.9751 68.2093 46.8711 68.2093ZM14.8284 48.3768L46.8704 66.9144L88.1819 42.8572L56.1399 24.3196L14.8284 48.3768Z\" fill=\"black\"/>\\n<path d=\"M79.4781 42.8576L46.8488 61.8628L46.6666 61.7646L30.4787 52.403L23.5352 48.3666L56.1505 29.3618V29.3758L79.4781 42.8576Z\" fill=\"white\"/>\\n<path d=\"M46.8491 62.4629C46.751 62.4629 46.6528 62.438 46.5642 62.3896L46.3826 62.2915L23.2336 48.8853C23.0491 48.7783 22.9355 48.5806 22.9355 48.3667C22.9355 48.1528 23.0491 47.9565 23.2336 47.8481L55.8491 28.8433C56.0344 28.7363 56.2644 28.7363 56.4497 28.8418C56.4863 28.8623 56.52 28.8872 56.5508 28.915L79.7788 42.3374C79.9641 42.4443 80.0784 42.6421 80.0784 42.856C80.0791 43.0698 79.9656 43.2676 79.7803 43.376L47.1509 62.3809C47.0579 62.4351 46.9539 62.4629 46.8491 62.4629ZM24.7285 48.3667L46.8418 61.1724L78.2832 42.8589L56.1392 30.0635L24.7285 48.3667Z\" fill=\"black\"/>\\n<path d=\"M79.485 42.8544L75.5432 45.1527L47.4881 61.4936L46.8569 61.858L46.6744 61.76L30.4869 52.3982L27.4567 50.6324L23.543 48.3621L27.4567 46.0777L36.0417 41.0746L40.5726 38.4398L44.5702 36.1134L48.5682 33.7871L53.1272 31.1241L56.157 29.3583V29.3723L59.0046 31.0121L60.9824 32.1612L63.8721 33.829L67.6037 35.9873L75.5432 40.5839L79.485 42.8544Z\" fill=\"white\"/>\\n<path d=\"M46.855 62.4585C46.7576 62.4585 46.6594 62.4336 46.5708 62.3867L46.3884 62.2886L23.2402 48.8809C23.0557 48.7739 22.9414 48.5762 22.9414 48.3638C22.9407 48.1499 23.0542 47.9521 23.2388 47.8438L55.8535 28.8403C56.0388 28.7319 56.2688 28.7334 56.4541 28.8389C56.4885 28.8579 56.5208 28.8813 56.5501 28.9077L79.7832 42.3345C79.9685 42.4414 80.0828 42.6392 80.0835 42.853C80.0842 43.0669 79.9707 43.2646 79.7861 43.373L47.1553 62.3779C47.0623 62.4307 46.959 62.4585 46.855 62.4585ZM24.7344 48.3608L46.8491 61.168L47.186 60.9731L78.2869 42.8574L56.1458 30.0591L24.7344 48.3608Z\" fill=\"black\"/>\\n<path d=\"M46.8008 92.7835L89.3048 68.0239L89.3712 42.8564L46.8672 67.603L46.8704 67.6092L46.8008 92.7835Z\" fill=\"white\"/>\\n<path d=\"M46.801 93.3843C46.6978 93.3843 46.5938 93.3565 46.5015 93.3038C46.3147 93.1954 46.2004 92.9976 46.2012 92.7823L46.2708 67.6441C46.2664 67.5826 46.2715 67.5211 46.2861 67.4625C46.3257 67.3043 46.4246 67.1666 46.5652 67.0845L89.0691 42.3375C89.2537 42.2276 89.4844 42.2291 89.6704 42.336C89.8572 42.4444 89.9714 42.6422 89.9707 42.8575L89.9048 68.025C89.9041 68.2374 89.7913 68.4351 89.6067 68.5421L47.1028 93.3023C47.0098 93.3565 46.905 93.3843 46.801 93.3843ZM47.4697 67.9459L47.4038 91.7378L88.7058 67.6778L88.7681 43.9019L47.4697 67.9459Z\" fill=\"black\"/>\\n<path d=\"M97.8422 55.9957L63.6518 75.9326C62.4165 76.6474 60.5071 76.5184 59.1416 75.63L46.8516 67.6137L89.3754 42.8553L98.2661 52.8383C99.2516 53.9466 99.0702 55.2852 97.8422 55.9957Z\" fill=\"#FFD63C\"/>\\n<path d=\"M97.8473 55.9935L63.6482 75.9307C62.4085 76.6519 60.502 76.5184 59.1423 75.6233L51.0508 70.3466C52.7038 70.5872 54.4235 70.7073 56.1832 70.7073C69.7938 70.7073 90.3022 57.8236 90.3022 48.7529C90.3022 46.7892 89.7821 44.9058 88.8491 43.169L89.3688 42.8618L98.2606 52.8408C99.247 53.9497 99.0736 55.2856 97.8473 55.9935Z\" fill=\"#F4C531\"/>\\n<path d=\"M61.7643 76.9896C60.747 76.9896 59.6843 76.6996 58.8134 76.1327L46.5219 68.1156C46.3476 68.0014 46.2451 67.8065 46.2502 67.5985C46.2553 67.3905 46.3681 67.2001 46.5483 67.0946L89.0727 42.3373C89.321 42.1967 89.6337 42.2435 89.8227 42.4574L98.7128 52.4403C99.3244 53.1273 99.5932 53.9315 99.4687 54.705C99.35 55.4447 98.8791 56.0878 98.143 56.5141L63.9528 76.4506C63.3266 76.8124 62.5598 76.9896 61.7643 76.9896ZM47.9926 67.6425L59.4682 75.1278C60.6437 75.891 62.3115 76.0126 63.35 75.4135L97.5388 55.4769C97.5395 55.4769 97.5402 55.4769 97.541 55.4755C97.9658 55.2308 98.2221 54.8983 98.2844 54.5145C98.3503 54.1044 98.184 53.6503 97.8163 53.2372L89.2529 43.6205L47.9926 67.6425Z\" fill=\"black\"/>\\n<path d=\"M14.6134 48.9465L13.6335 48.3795L13.5664 73.547L46.7984 92.7829L46.8697 67.6092L14.6134 48.9465Z\" fill=\"#00E6E9\"/>\\n<path d=\"M46.8001 93.3829C46.6961 93.3829 46.5928 93.3551 46.4998 93.3009L13.2683 74.066C13.0823 73.9591 12.968 73.7599 12.9688 73.546L13.0354 48.3785C13.0361 48.1647 13.1504 47.9669 13.3364 47.86C13.521 47.7545 13.7495 47.7545 13.9356 47.86L14.9155 48.4269L47.1721 67.089C47.3582 67.1974 47.4724 67.3966 47.4717 67.6105L47.3999 92.7838C47.3992 92.9977 47.2849 93.1954 47.0989 93.3024C47.0066 93.3551 46.9033 93.3829 46.8001 93.3829ZM14.1692 73.2018L46.2031 91.7438L46.2705 67.9547L14.2322 49.4186L14.1692 73.2018Z\" fill=\"black\"/>\\n<path d=\"M5.15714 61.5041L29.8636 75.918C31.0989 76.6327 33.0083 76.5038 34.3738 75.6153L46.6638 67.599L13.6239 48.3636L4.73324 58.3467C3.74767 59.455 3.92911 60.7936 5.15714 61.5041Z\" fill=\"white\"/>\\n<path d=\"M46.6684 67.5946L34.3776 75.6099C33.0045 76.5052 31.0983 76.6386 29.8716 75.9173L5.15649 61.5031C3.93017 60.7952 3.74368 59.4593 4.73014 58.3505L13.6216 48.3581L16.221 49.881C14.3015 51.898 13.1953 54.2893 13.1953 56.8409C13.1953 64.215 22.4467 70.1997 33.8441 70.1997C38.5766 70.1997 42.9224 69.171 46.4019 67.4479L46.6684 67.5946Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M31.7493 76.9751C30.9546 76.9751 30.1885 76.7979 29.5637 76.4375L4.85696 62.022C4.12015 61.5972 3.6492 60.9541 3.52981 60.2144C3.4053 59.441 3.67337 58.6368 4.28567 57.9483L13.1758 47.9654C13.3662 47.7515 13.679 47.7032 13.9258 47.8453L46.9661 67.0801C47.1463 67.1856 47.2591 67.376 47.2642 67.584C47.2693 67.792 47.1668 67.9869 46.9925 68.1011L34.7024 76.1182C33.8301 76.6851 32.7666 76.9751 31.7493 76.9751ZM13.7456 49.1285L5.18216 58.7452C4.81448 59.1597 4.64822 59.6123 4.71414 60.0225C4.77639 60.4063 5.03348 60.7388 5.45755 60.9834L5.45975 60.9849L30.1665 75.399C31.2036 75.9996 32.8736 75.875 34.0476 75.1133L45.5218 67.628L13.7456 49.1285Z\" fill=\"black\"/>\\n<path d=\"M75.562 31.3666L47.5033 47.7075L27.4766 36.1141L55.5353 19.7732L75.562 31.3666Z\" fill=\"white\"/>\\n<path d=\"M75.5572 31.3624L47.5021 47.7034L27.4707 36.1133L32.3101 33.2964C35.4102 38.3418 41.6246 41.7893 48.7925 41.7893C58.8364 41.7893 67.0143 35.0482 67.365 26.6115L75.5572 31.3624Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M47.4995 48.3082C47.3955 48.3082 47.2922 48.2803 47.1992 48.2261L27.1726 36.6319C26.9873 36.525 26.8731 36.3287 26.8731 36.1148C26.8723 35.9009 26.9858 35.7032 27.1711 35.5948L55.2295 19.2545C55.4155 19.1461 55.6455 19.1461 55.8315 19.2545L75.8582 30.8472C76.0435 30.9542 76.1577 31.1505 76.1577 31.3643C76.1585 31.5782 76.0449 31.7759 75.8596 31.8843L47.8013 48.2261C47.7083 48.2803 47.6035 48.3082 47.4995 48.3082ZM28.6675 36.1119L47.4988 47.0132L74.3633 31.3672L55.532 20.4673L28.6675 36.1119Z\" fill=\"black\"/>\\n<path d=\"M75.5535 31.3624L75.5395 40.5839V45.1527L47.4844 61.4936L47.4984 47.7034L67.6 35.9873L75.5535 31.3624Z\" fill=\"white\"/>\\n<path d=\"M47.4846 62.0937C47.3813 62.0937 47.2781 62.0659 47.1851 62.0132C46.999 61.9062 46.8848 61.707 46.8848 61.4932L46.8987 47.7031C46.8987 47.4893 47.0122 47.2915 47.1968 47.1846L75.2522 30.8442C75.4368 30.7358 75.666 30.7373 75.8535 30.8428C76.0396 30.9497 76.1545 31.1489 76.1538 31.3643L76.1399 45.1528C76.1399 45.3667 76.0264 45.5645 75.8418 45.6714L47.7864 62.0117C47.6934 62.0659 47.5886 62.0937 47.4846 62.0937ZM48.0984 48.0488L48.0859 60.4487L74.9402 44.8086L74.9526 32.4072L48.0984 48.0488Z\" fill=\"black\"/>\\n<path d=\"M47.4985 47.7035L47.4845 61.4937L46.8533 61.8581L46.6708 61.7601L30.4833 52.3983L27.4531 50.6325V46.0778L27.4672 36.1135L36.0381 41.0747L47.4985 47.7035Z\" fill=\"#2E46C0\"/>\\n<path d=\"M46.855 62.4586C46.7576 62.4586 46.6594 62.4337 46.5708 62.3868L46.3884 62.2886L27.1536 51.1514C26.969 51.0445 26.8555 50.8467 26.8555 50.6329L26.8694 36.1119C26.8694 35.898 26.9844 35.7003 27.1697 35.5933C27.3557 35.4864 27.5835 35.4864 27.7695 35.5948L47.8005 47.1832C47.9866 47.2916 48.1001 47.4893 48.1001 47.7032L48.0862 61.4932C48.0862 61.7086 47.9719 61.9063 47.7866 62.0132L47.1553 62.378C47.0623 62.4307 46.959 62.4586 46.855 62.4586ZM28.0552 50.2886L46.8491 61.168L46.8865 61.1461L46.8997 48.0489L28.0676 37.1534L28.0552 50.2886Z\" fill=\"black\"/>\\n<path d=\"M61.327 29.1053C61.593 29.2588 61.5945 29.5086 61.3302 29.662L56.1598 32.6639C55.8955 32.8174 55.4638 32.8173 55.1979 32.6639L53.2708 31.5523C53.0047 31.3989 53.0033 31.1491 53.2676 30.9956L58.438 27.9938C58.7023 27.8403 59.1339 27.8403 59.3999 27.9938L61.327 29.1053Z\" fill=\"black\"/>\\n<path d=\"M67.9946 30.8757C68.2606 31.0291 68.262 31.279 67.9978 31.4324L61.0309 35.4773C60.7666 35.6308 60.3349 35.6308 60.0689 35.4773L58.1419 34.3658C57.8758 34.2123 57.8744 33.9625 58.1387 33.8091L65.1056 29.7641C65.3698 29.6107 65.8014 29.6107 66.0675 29.7641L67.9946 30.8757Z\" fill=\"black\"/>\\n<path d=\"M58.124 25.1817C58.39 25.3352 58.3913 25.5849 58.127 25.7384L51.1602 29.7833C50.8959 29.9367 50.4643 29.9368 50.1983 29.7833L48.2711 28.6717C48.0052 28.5183 48.0068 28.2703 48.2711 28.1168L55.2379 24.0719C55.5022 23.9185 55.9308 23.9167 56.1968 24.0701L58.124 25.1817Z\" fill=\"black\"/>\\n<path d=\"M56.5109 38.9786C56.4091 38.9786 56.3058 38.9522 56.2113 38.8965L49.4093 34.959C49.1222 34.7935 49.024 34.4273 49.1903 34.1402C49.3558 33.8531 49.7213 33.752 50.0099 33.9219L56.8119 37.8594C57.099 38.0249 57.1971 38.3912 57.0309 38.6783C56.9196 38.8702 56.7181 38.9786 56.5109 38.9786Z\" fill=\"black\"/>\\n<path d=\"M46.8498 33.3858C46.7479 33.3858 46.6447 33.3595 46.5495 33.3038L43.0258 31.2633C42.7394 31.0978 42.6413 30.7315 42.8075 30.4444C42.9723 30.1573 43.3378 30.0563 43.6278 30.2262L47.1515 32.2667C47.4379 32.4322 47.536 32.7999 47.3698 33.0855C47.2584 33.2774 47.057 33.3858 46.8498 33.3858Z\" fill=\"black\"/>\\n<path d=\"M52.5091 41.3106C52.4073 41.3106 52.3041 41.2842 52.2096 41.2285L39.0245 33.5952C38.7374 33.4297 38.6393 33.0635 38.8055 32.7764C38.9711 32.4907 39.3373 32.3882 39.6251 32.5581L52.8102 40.1914C53.0973 40.357 53.1954 40.7232 53.0292 41.0103C52.9178 41.2022 52.7164 41.3106 52.5091 41.3106Z\" fill=\"black\"/>\\n<path d=\"M48.5033 43.6426C48.4015 43.6426 48.2982 43.6162 48.2037 43.5606L35.0187 35.9273C34.7316 35.7618 34.6334 35.3955 34.7997 35.1084C34.9652 34.8213 35.3307 34.7203 35.6193 34.8902L48.8043 42.5235C49.0914 42.689 49.1896 43.0552 49.0233 43.3423C48.912 43.5342 48.7106 43.6426 48.5033 43.6426Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\"},children:[\"Lack of Resources and Expertise \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"strong\",{children:\"to Manage Compliance.\"})})]})})},UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:[\"Lack of Resources and Expertise \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif'},children:\"to Manage Compliance.\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"120%\"},children:[\"Lack of Resources and Expertise \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif'},children:\"to Manage Compliance.\"})]})}),className:\"framer-oxsmhg\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Bold\",\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uwa5od\",\"data-framer-name\":\"Frame 222\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qrnt9k\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:102,intrinsicWidth:103,svg:'<svg width=\"103\" height=\"102\" viewBox=\"0 0 103 102\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M89.6201 25.5747C89.2029 25.3429 88.6619 25.312 88.0439 25.5439L82.2024 27.7387C81.6003 27.9551 81.0593 27.9551 80.6262 27.7078L74.0898 23.9055C74.5229 24.1528 75.0632 24.1682 75.666 23.9363L81.5075 21.7415C82.1255 21.5097 82.6665 21.5406 83.0837 21.788L89.6201 25.5747Z\" fill=\"#00E6E9\"/>\\n<path d=\"M81.3768 28.4956C80.919 28.4956 80.5711 28.3674 80.3272 28.2282L73.7867 24.424C73.501 24.2578 73.4036 23.8923 73.5684 23.6059C73.7347 23.3195 74.098 23.2214 74.3865 23.3847C74.6634 23.5444 75.0215 23.54 75.4493 23.3767L81.2955 21.1801C82.2777 20.8103 82.9735 21.0278 83.3887 21.2717L89.9197 25.0554C90.2047 25.2202 90.3028 25.5842 90.1409 25.8706C89.9791 26.1569 89.6194 26.2609 89.3279 26.0991C88.9749 25.9043 88.5494 25.9965 88.2535 26.1057L82.4117 28.3007C82.0191 28.4414 81.6749 28.4956 81.3768 28.4956ZM76.1334 24.4013L80.9263 27.1889C81.1907 27.3391 81.5526 27.3354 81.9979 27.1743L87.5694 25.081L82.7816 22.3073C82.4359 22.1015 82.0125 22.1923 81.7173 22.3037L76.1334 24.4013Z\" fill=\"black\"/>\\n<path d=\"M82.9065 10.9505L76.9571 7.59632C76.401 7.27179 75.6593 7.36452 74.9018 7.79726C74.3148 8.13735 73.7277 8.6783 73.2177 9.38933L68.3963 16.0511C67.8862 16.7467 67.2992 17.3031 66.7122 17.6431C66.3259 17.8595 65.9237 17.9987 65.5533 18.0295C65.2439 18.045 64.9353 18.0914 64.595 18.1377C64.1929 18.1841 63.8533 18.1223 63.5598 17.9522L57.0234 14.15C57.3169 14.32 57.6723 14.3818 58.0586 14.3355C58.3982 14.289 58.7075 14.2427 59.032 14.2272C59.4032 14.1963 59.7895 14.0572 60.1909 13.8408C60.7779 13.5007 61.3657 12.9598 61.8599 12.2642L66.6813 5.58698C67.1913 4.87604 67.7783 4.335 68.3654 4.01048C69.1229 3.56218 69.8646 3.46944 70.4358 3.79406L76.3851 7.16358L82.9065 10.9505Z\" fill=\"#00E6E9\"/>\\n<path d=\"M64.349 18.7522C63.9476 18.7522 63.5821 18.6585 63.2599 18.4717L56.7237 14.669L56.7223 14.6683C56.4359 14.502 56.3385 14.1351 56.5055 13.8487C56.6703 13.5623 57.038 13.4612 57.3251 13.6304C57.5008 13.7337 57.7308 13.771 57.9879 13.7403C58.3951 13.6831 58.6932 13.6429 59.0038 13.6282C59.2506 13.607 59.5524 13.5037 59.9061 13.3125C60.4181 13.0159 60.944 12.5171 61.371 11.9165L66.1954 5.23539C66.7469 4.46635 67.3973 3.86064 68.0756 3.48564C69.0255 2.91948 69.9747 2.84111 70.7328 3.2725L76.6815 6.64164L83.2081 10.4319C83.4938 10.5975 83.5919 10.9622 83.4278 11.2486C83.2645 11.5335 82.8998 11.6346 82.6127 11.4734L76.6632 8.11894C76.3102 7.9124 75.7799 7.9871 75.1991 8.31816C74.6703 8.62504 74.1525 9.11723 73.7049 9.73906L68.8827 16.4026C68.3194 17.1717 67.6735 17.7789 67.0135 18.1619C66.5338 18.4307 66.0489 18.5904 65.6036 18.627C65.3341 18.6409 65.0858 18.6761 64.8185 18.7127C64.8141 18.7134 64.6676 18.7332 64.6632 18.7339C64.5563 18.7464 64.4515 18.7522 64.349 18.7522ZM59.3246 14.7935L63.8619 17.4339C64.0428 17.5386 64.2552 17.5723 64.527 17.5415C64.9583 17.4822 65.2411 17.4441 65.5238 17.4302C65.7757 17.409 66.1009 17.2984 66.4195 17.1197C66.922 16.8282 67.4545 16.3213 67.9122 15.6966L72.7316 9.0374C73.2757 8.28007 73.9225 7.67143 74.6007 7.27812C74.7377 7.20048 74.8732 7.13163 75.0079 7.07304L70.1402 4.3162C69.6429 4.03276 69.0072 4.32719 68.6717 4.52714C68.1327 4.82524 67.6185 5.30937 67.1695 5.93632L62.3465 12.616C61.817 13.3601 61.1747 13.9644 60.4913 14.3599C60.0687 14.5884 59.6871 14.7298 59.3246 14.7935Z\" fill=\"black\"/>\\n<path d=\"M29.6432 83.2099L29.4734 83.5963L26.275 90.7218C25.4715 92.4993 25.5952 94.2304 26.5836 94.8023L20.0472 91C19.0581 90.4281 18.9351 88.7124 19.7386 86.9194L22.937 79.7939L23.1068 79.4075C23.6938 78.0938 23.8025 76.7954 23.3694 75.9607C23.2456 75.6671 23.1068 75.3889 22.968 75.0797C22.8292 74.7242 22.5968 74.4769 22.3342 74.3069L28.8706 78.1092C29.1339 78.2638 29.3655 78.5265 29.5044 78.8821C29.6432 79.1911 29.7828 79.4693 29.9065 79.763C30.3389 80.5977 30.231 81.896 29.6432 83.2099Z\" fill=\"#00E6E9\"/>\\n<path d=\"M26.5826 95.4024C26.4808 95.4024 26.3775 95.3768 26.283 95.3218C26.2801 95.3204 26.2779 95.3189 26.2757 95.3174L19.7454 91.5184C18.4717 90.7823 18.2432 88.7894 19.191 86.6741L22.5572 79.1668C23.0713 78.0162 23.1783 76.8948 22.837 76.2371C22.7454 76.0254 22.6685 75.8614 22.5901 75.6936L22.4202 75.3252C22.3287 75.0931 22.1976 74.9334 22.0079 74.8111C21.7347 74.6346 21.6519 74.2713 21.8226 73.9937C21.9925 73.7146 22.3514 73.6246 22.6356 73.7886L29.1724 77.5906C29.5687 77.8235 29.8843 78.2044 30.063 78.6644L30.2095 78.9771C30.296 79.1631 30.3809 79.3433 30.4593 79.5301C30.9515 80.4771 30.8592 81.9581 30.1927 83.4515L26.8221 90.9668C26.0875 92.5928 26.2757 93.9273 26.8814 94.2818L26.8851 94.284C27.1714 94.4502 27.2681 94.8172 27.1026 95.1036C26.9913 95.2955 26.7899 95.4024 26.5826 95.4024ZM24.0403 75.9939C24.3941 76.9388 24.263 78.2908 23.6544 79.6524L20.2859 87.1648C19.5557 88.7959 19.7432 90.1311 20.3475 90.4805L25.1536 93.2769C25.0892 92.45 25.2759 91.4751 25.7286 90.4747L29.094 82.9681C29.0948 82.9673 29.0948 82.9659 29.0955 82.9651C29.6082 81.8189 29.7144 80.6976 29.3731 80.0391C29.2808 79.8238 29.2024 79.6575 29.1226 79.4861L28.9571 79.128C28.8633 78.8899 28.7293 78.7222 28.5667 78.6263L24.0403 75.9939Z\" fill=\"black\"/>\\n<path d=\"M48.2491 97.8008L41.7127 93.9985L41.5271 92.8547L40.2293 85.3583C40.1214 84.74 39.843 84.2918 39.4258 84.0444L45.9622 87.8468C46.3794 88.094 46.6578 88.5423 46.7657 89.1606L48.0643 96.657L48.2491 97.8008Z\" fill=\"#00E6E9\"/>\\n<path d=\"M48.2478 98.4009C48.1438 98.4009 48.0398 98.3738 47.946 98.3196L41.4092 94.5168C41.2539 94.4267 41.1477 94.2715 41.1184 94.0942L40.9331 92.9509L39.6367 85.4611C39.5605 85.0224 39.3862 84.7192 39.1189 84.561C38.834 84.3925 38.7395 84.0256 38.9072 83.7407C39.0742 83.4565 39.4404 83.3628 39.726 83.5261L46.2622 87.3281C46.8408 87.6716 47.2173 88.2685 47.355 89.0573L48.8403 97.7051C48.8769 97.9343 48.7788 98.1643 48.5876 98.2954C48.4858 98.3657 48.3672 98.4009 48.2478 98.4009ZM42.258 93.6225L47.4509 96.6438L46.1728 89.2632C46.0967 88.8244 45.9216 88.5212 45.6543 88.363L40.8752 85.5827L42.258 93.6225Z\" fill=\"black\"/>\\n<path d=\"M60.9034 9.25018C60.3631 8.94112 59.6207 8.98744 58.8179 9.45112L50.4578 14.2736C49.0514 15.0928 47.8464 16.9631 47.5831 18.7096L46.5788 25.9742C45.9299 27.2726 45.4048 28.3082 44.7401 29.6065C44.4156 29.9311 44.1221 30.2557 43.8135 30.5957C43.4423 30.9976 43.0409 31.3067 42.6546 31.5386C42.0517 31.8786 41.4798 32.0178 40.9697 31.8941L36.1023 30.8276C35.5923 30.7039 35.0052 30.8431 34.4182 31.1831C33.6758 31.6159 32.9348 32.3732 32.3629 33.347L26.4754 43.5483C25.4711 45.2949 25.3316 47.1807 26.151 48.0617L29.5501 51.6475C30.1378 52.2813 30.2608 53.4405 29.8745 54.708C29.7048 55.2181 29.5659 55.6972 29.4263 56.1918C29.0559 57.4902 28.2372 58.7112 27.248 59.4686L21.4224 64.0128C20.0318 65.1102 19.0117 67.1041 19.0276 68.7271L19.0426 78.3411C19.0577 79.253 19.3671 79.9177 19.9081 80.2268L13.3717 76.4245C12.8465 76.1153 12.5221 75.4662 12.5221 74.5542L12.4904 64.9248C12.4753 63.3018 13.4954 61.3079 14.9011 60.2105L20.7116 55.6818C21.7001 54.9089 22.5195 53.6878 22.8907 52.3895C23.0295 51.8949 23.1684 51.4157 23.3389 50.9056C23.7252 49.6382 23.6014 48.4944 23.0295 47.8607L19.6146 44.2593C18.7952 43.3783 18.9498 41.4926 19.939 39.7615L25.8265 29.5447C26.3977 28.5709 27.1401 27.8135 27.8811 27.3808C28.4689 27.0407 29.0559 26.917 29.5659 27.0252L34.4333 28.0917C34.9434 28.2154 35.5304 28.0763 36.1174 27.7363C36.5037 27.5044 36.9059 27.1953 37.2763 26.7934C37.5857 26.4688 37.8792 26.1288 38.2037 25.8197C38.8684 24.5058 39.3935 23.4702 40.0424 22.1719L41.0474 14.9073C41.31 13.1607 42.515 11.2905 43.9214 10.4713L52.2807 5.64886C53.085 5.18509 53.826 5.13877 54.367 5.44792L60.9034 9.25018Z\" fill=\"#2E46C0\"/>\\n<path d=\"M19.9072 80.8265C19.8061 80.8265 19.7043 80.8009 19.6098 80.7474C19.6018 80.743 19.5937 80.7379 19.5856 80.7335L13.07 76.9432C12.3288 76.5074 11.9223 75.6593 11.9223 74.554L11.8908 64.9271C11.874 63.1304 12.9843 60.9464 14.5319 59.7371L20.343 55.2086C21.2446 54.504 21.9814 53.3878 22.3139 52.2247C22.4545 51.7237 22.5966 51.2359 22.7702 50.7152C23.0837 49.6854 23.0141 48.7398 22.5842 48.263L19.1799 44.6727C18.1794 43.5968 18.279 41.4566 19.4186 39.4637L25.3066 29.2449C25.9152 28.2086 26.7209 27.3641 27.5786 26.8631C28.3015 26.4449 29.031 26.3006 29.6901 26.4376L34.5615 27.5062C34.913 27.5904 35.3518 27.4857 35.8176 27.2169C36.1904 26.9935 36.5353 26.7122 36.8356 26.387L37.1433 26.0567C37.33 25.8538 37.5175 25.651 37.7145 25.4583L37.8039 25.2818C38.3913 24.1217 38.8784 23.16 39.4621 21.9918L40.4538 14.825C40.7424 12.8988 42.0739 10.8524 43.6201 9.95296L51.9814 5.12923C52.9423 4.57625 53.9194 4.50081 54.665 4.92708L61.2055 8.73201C61.4912 8.89827 61.5886 9.26375 61.4238 9.55012C61.2582 9.8365 60.895 9.93538 60.6057 9.77132C60.2416 9.56258 59.6982 9.63582 59.1181 9.97053L50.7575 14.7935C49.5234 15.5128 48.4123 17.2354 48.1765 18.7991L47.173 26.056C47.1643 26.1212 47.1452 26.1834 47.1159 26.242C46.4663 27.5428 45.9396 28.5799 45.2739 29.88C45.2453 29.9356 45.2087 29.9869 45.164 30.0308C44.8674 30.3282 44.5971 30.6256 44.3159 30.9346C43.8757 31.4122 43.4421 31.7659 42.9638 32.0531C42.1838 32.4932 41.4682 32.6331 40.8288 32.4771L35.9743 31.4136C35.6235 31.3323 35.184 31.4334 34.7197 31.7022C34.0385 32.0992 33.3852 32.7913 32.8798 33.6512L26.9956 43.848C26.1364 45.3421 25.9621 46.9776 26.5905 47.6529L29.986 51.2344C30.7294 52.0365 30.9008 53.3988 30.4489 54.8834C30.2768 55.399 30.1413 55.8692 30.0036 56.3548C29.6015 57.7647 28.708 59.1058 27.613 59.9444L21.7917 64.4862C20.5451 65.4691 19.6142 67.2906 19.6274 68.721L19.6428 78.3407C19.6538 79.0094 19.8493 79.4935 20.1943 79.6993L20.2097 79.7081C20.4953 79.8743 20.5927 80.2398 20.4279 80.5262C20.3166 80.7188 20.1152 80.8265 19.9072 80.8265ZM29.1987 27.5875C28.8911 27.5875 28.538 27.6944 28.1813 27.9002C27.5104 28.2921 26.8403 29.0025 26.3444 29.8485L20.4594 40.0614C19.6069 41.5526 19.4326 43.1822 20.0544 43.8509L23.4645 47.4478C24.197 48.2586 24.3603 49.6121 23.9135 51.0806C23.7407 51.5963 23.6044 52.0665 23.4689 52.5513C23.0683 53.9525 22.1762 55.2987 21.082 56.1541L15.2702 60.6834C14.0141 61.6641 13.0773 63.4857 13.0905 64.919L13.122 74.5518C13.122 75.2074 13.3242 75.7003 13.6765 75.9075L18.4614 78.6908C18.4511 78.5809 18.4445 78.4674 18.4431 78.3509L18.4277 68.7276C18.4108 66.9376 19.5139 64.7542 21.0512 63.5421L26.8791 58.9952C27.7807 58.3045 28.5161 57.1964 28.8493 56.0267C28.9914 55.525 29.1328 55.0372 29.3056 54.5186C29.6169 53.494 29.5422 52.5213 29.1101 52.0555L25.7153 48.4747C24.7082 47.3914 24.8085 45.2447 25.9555 43.2496L31.8427 33.0477C32.4528 32.0091 33.2592 31.1639 34.1162 30.6644C34.8625 30.233 35.5986 30.0887 36.2438 30.2447L41.0983 31.3082C41.4484 31.3917 41.8666 31.2943 42.3603 31.0159C42.7258 30.7962 43.0715 30.5142 43.3725 30.1883C43.697 29.8316 43.9636 29.5386 44.2485 29.2501C44.8776 28.0211 45.3845 27.022 45.9982 25.7938L46.9892 18.6278C47.2844 16.6707 48.5859 14.6698 50.1562 13.755L58.5183 8.93123C58.6318 8.86604 58.7453 8.80745 58.8588 8.75545L54.0651 5.96638C53.7033 5.76057 53.1621 5.83308 52.5812 6.16853L44.2214 10.9915C42.9865 11.71 41.8762 13.4327 41.6411 14.9964L40.6369 22.254C40.6281 22.3192 40.6091 22.3814 40.5798 22.44C39.9748 23.6507 39.4775 24.6329 38.874 25.8238L38.7392 26.0904C38.7084 26.1512 38.6674 26.2069 38.6176 26.2537C38.4118 26.45 38.2185 26.6602 38.0258 26.8697L37.7109 27.2074C37.3403 27.6102 36.906 27.9632 36.4262 28.2511C35.6747 28.6854 34.9431 28.8333 34.2927 28.6751L29.4382 27.6109C29.362 27.5948 29.2822 27.5875 29.1987 27.5875Z\" fill=\"black\"/>\\n<path d=\"M88.0543 25.5379C89.4559 25.0124 90.4758 25.8318 90.4804 27.4534L90.5077 37.0808C90.5123 38.7023 89.4805 40.6953 88.0806 41.799L82.2725 46.3117C81.277 47.1024 80.4303 48.3751 80.0683 49.6745C79.9511 50.1057 79.8242 50.5425 79.6769 50.991C79.2561 52.3131 79.3677 53.498 79.9625 54.1313L83.3622 57.7449C84.1753 58.6155 84.052 60.5041 83.0591 62.2247L77.1488 72.4642C76.5897 73.433 75.845 74.1921 75.0924 74.6267C74.509 74.9636 73.9207 75.1051 73.4105 74.9979L68.5554 73.8945C68.0586 73.785 67.4794 73.918 66.8954 74.2552C66.4918 74.4883 66.0858 74.819 65.7032 75.2349C65.3878 75.5761 65.0928 75.8941 64.7773 76.2126C63.8113 77.1907 63.1337 78.5475 62.9492 79.8126L61.9324 87.1125C61.6902 88.8425 60.4801 90.734 59.0691 91.5488L48.2462 97.7991L48.0655 96.654L46.7591 89.1624C46.5883 88.1025 45.8849 87.5432 44.9368 87.6705C44.6207 87.7168 44.3044 87.7517 43.9882 87.7753C43.6049 87.8017 43.2 87.9393 42.7991 88.1709C42.2189 88.5059 41.6467 89.038 41.158 89.7164L36.2854 96.4376C35.7775 97.133 35.1941 97.668 34.6144 98.0027C33.8677 98.434 33.1276 98.5324 32.5648 98.2115L26.6159 94.8207C25.5967 94.262 25.4631 92.5219 26.2681 90.7168L29.4695 83.5977L29.6368 83.2058C30.226 81.8887 30.3306 80.5902 29.9037 79.7578C29.7742 79.4691 29.635 79.186 29.5055 78.8746C29.1373 77.9969 28.2969 77.6985 27.29 78.0641L21.4754 80.2636C20.0738 80.7777 19.0534 79.9699 19.0488 78.3484L19.0215 68.721C19.0169 67.0994 20.0294 65.1063 21.4294 64.0138L27.247 59.4729C28.2329 58.7104 29.0599 57.4832 29.4219 56.1951C29.5588 55.6958 29.7054 55.2136 29.8718 54.7086C30.2639 53.4372 30.1319 52.2867 29.557 51.6533L26.1472 48.057C25.3346 47.1746 25.4777 45.2974 26.4706 43.5541L32.3611 33.3487C32.9304 32.3749 33.6724 31.6138 34.4207 31.1817C35.0025 30.8457 35.5887 30.7087 36.0994 30.8264L40.9743 31.8956C41.4722 32.01 42.0584 31.8772 42.6477 31.5369C43.0411 31.3097 43.4359 30.99 43.8068 30.5893C44.1216 30.2598 44.4172 29.9301 44.7326 29.6117C45.4012 28.3055 45.9318 27.2722 46.58 25.9778L47.5872 18.7062C47.8396 16.9589 49.0497 15.0902 50.4607 14.2754L58.8166 9.44979C60.2276 8.63496 61.4443 9.1022 61.7058 10.5527L62.7502 16.6395C62.9414 17.699 63.6443 18.2585 64.5929 18.131C64.9289 18.0846 65.2446 18.0386 65.5608 18.0263C65.9329 17.998 66.3265 17.8623 66.7194 17.6354C67.3077 17.2957 67.8937 16.7514 68.4016 16.0564L73.2246 9.3866C73.733 8.68035 74.3217 8.13882 74.9062 7.80127C75.6577 7.36727 76.4027 7.2697 76.9649 7.59L82.9138 10.9581C83.9132 11.5508 84.0468 13.2683 83.2413 15.0851L79.8732 22.6184C79.2941 23.9069 79.1691 25.2059 79.5863 26.0212C79.7358 26.3438 79.8846 26.6553 80.0238 26.9725C80.392 27.8389 81.2425 28.0974 82.2102 27.7316L88.0543 25.5379Z\" fill=\"white\"/>\\n<path d=\"M90.4799 27.458C90.4799 25.8351 89.4598 25.0159 88.0541 25.5414L82.2126 27.7362C81.2393 28.0917 80.3897 27.8444 80.0185 26.9789C79.8797 26.6542 79.7408 26.3451 79.5861 26.0206C79.1689 25.2013 79.2926 23.903 79.8797 22.6201L83.2478 15.0928C84.0514 13.2689 83.9126 11.5532 82.9083 10.9504L76.9589 7.59627C76.4028 7.27174 75.6611 7.36448 74.9036 7.79721C74.3166 8.13731 73.7296 8.67825 73.2195 9.38929L71.6433 11.5686C76.1093 18.8642 78.6898 27.4735 78.6898 36.701C78.6898 63.0236 57.7209 84.3536 31.8379 84.3536C30.9416 84.3536 30.0452 84.3227 29.1639 84.2764L26.2749 90.7217C25.4713 92.5147 25.595 94.2613 26.6144 94.8178L32.5638 98.2181C33.1357 98.5273 33.8615 98.4346 34.6191 98.0018C35.191 97.6617 35.778 97.1363 36.2881 96.4407L41.1555 89.717C41.6497 89.0369 42.2216 88.5115 42.7935 88.1714C43.1949 87.9396 43.6122 87.8004 43.9834 87.7696C44.3079 87.7541 44.6165 87.7232 44.9409 87.6768C45.8841 87.5377 46.5948 88.1096 46.7646 89.1606L48.0631 96.6571L48.248 97.8009L59.0647 91.5564C60.4863 90.7372 61.692 88.8361 61.9387 87.1049L62.9437 79.8094C63.1293 78.542 63.8084 77.1973 64.7825 76.208C65.0911 75.8989 65.3853 75.5743 65.7098 75.2342C66.0803 74.817 66.4975 74.4923 66.8989 74.2605C67.4867 73.9205 68.0579 73.7813 68.5528 73.8895L73.4051 75.0024C73.9144 75.1106 74.5022 74.956 75.0892 74.6315C75.846 74.1987 76.5884 73.4258 77.1445 72.4675L83.063 62.2198C84.0514 60.5042 84.1751 58.6184 83.3565 57.7374L79.9566 54.1361C79.3696 53.5023 79.261 52.3122 79.679 50.9983C79.8178 50.5501 79.9566 50.1018 80.0653 49.6691C80.4357 48.3707 81.2702 47.1034 82.2745 46.3151L88.0851 41.8017C89.4756 40.6888 90.5108 38.695 90.5108 37.0874L90.4799 27.458Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M33.3128 99.003C32.937 99.003 32.584 98.9129 32.2669 98.732L26.3189 95.3423C25.0115 94.6253 24.7617 92.6214 25.7205 90.4725L29.0845 82.971C29.6016 81.816 29.7085 80.6939 29.3694 80.0318L29.2163 79.6978C29.1277 79.5066 29.0376 79.3118 28.9519 79.1053C28.6494 78.3831 27.9917 78.4475 27.4951 78.6285L21.6878 80.825C20.8521 81.1319 20.0633 81.0674 19.4634 80.6499C18.8115 80.1958 18.4519 79.3792 18.449 78.3501L18.4219 68.7225C18.416 66.9185 19.5257 64.7388 21.0601 63.5406L26.8777 58.9996C27.7713 58.3089 28.5235 57.1729 28.8443 56.0325C28.9834 55.5271 29.1321 55.0357 29.302 54.5215C29.6155 53.5027 29.543 52.5308 29.1123 52.0569L25.7117 48.4703C24.7163 47.3885 24.8159 45.2476 25.949 43.2576L31.8421 33.0484C32.4522 32.0054 33.2608 31.1587 34.1206 30.6622C34.856 30.2381 35.5877 30.0923 36.2337 30.2417L41.1035 31.3096C41.4456 31.3872 41.8858 31.284 42.3472 31.0174C42.6973 30.8152 43.0401 30.534 43.3667 30.1817L43.7315 29.7942C43.8999 29.6133 44.0676 29.4331 44.2405 29.2566L44.3262 29.0889C44.9202 27.9288 45.4131 26.9664 45.999 25.7974L46.9929 18.6241C47.2705 16.7007 48.6028 14.6551 50.1614 13.7557L58.5161 8.93046C59.4177 8.40898 60.312 8.31083 61.0357 8.64628C61.6941 8.9517 62.1424 9.59111 62.2962 10.4466L63.3413 16.5381C63.4336 17.0494 63.7068 17.6419 64.5132 17.5364C64.916 17.4808 65.2266 17.439 65.5371 17.4266C65.7898 17.4068 66.1018 17.2991 66.419 17.116C66.9463 16.8113 67.4641 16.3221 67.9168 15.7024L72.7383 9.0352C73.2825 8.28007 73.9285 7.6729 74.606 7.28178C75.5772 6.72075 76.5205 6.6475 77.2617 7.06865L83.2097 10.4356C84.4959 11.1995 84.7295 13.2085 83.7898 15.3282L80.4207 22.8633C79.916 23.9869 79.7989 25.1185 80.1204 25.7483L80.2478 26.0208C80.3592 26.2588 80.469 26.4932 80.573 26.7312C80.8843 27.4644 81.5999 27.3201 81.9983 27.1707L87.843 24.9764C88.6685 24.6658 89.4551 24.7244 90.0572 25.1412C90.7141 25.5953 91.0774 26.4156 91.0803 27.4519L91.1074 37.0796C91.1126 38.8704 89.9956 41.0538 88.4517 42.2703L82.6406 46.7857C81.7354 47.5049 80.9693 48.6746 80.6463 49.8355C80.5276 50.2727 80.398 50.7188 80.2471 51.178C79.9043 52.2561 79.9629 53.2559 80.3994 53.7203L83.7993 57.334C84.8093 58.4165 84.7185 60.5501 83.5781 62.5247L77.669 72.764C77.072 73.7981 76.2635 74.6434 75.3919 75.1465C74.6602 75.5691 73.9314 75.72 73.2869 75.5852L68.4229 74.48C68.0904 74.4075 67.6546 74.5108 67.1953 74.7752C66.8372 74.9817 66.4834 75.2732 66.145 75.6409C65.8235 75.9888 65.5239 76.3111 65.2046 76.6348C64.3338 77.5159 63.7127 78.7361 63.5435 79.8992L62.5261 87.1956C62.2581 89.1175 60.9302 91.1668 59.3694 92.0684L48.5464 98.3182C48.375 98.417 48.167 98.4266 47.9876 98.3401C47.8096 98.2552 47.6843 98.0874 47.6536 97.8926L47.4727 96.7478L46.1682 89.2654C46.084 88.7454 45.8181 88.1551 45.0169 88.2649C44.6946 88.3125 44.3643 88.3484 44.0347 88.3741C43.7454 88.3938 43.4239 88.503 43.0994 88.6905C42.5816 88.9893 42.0791 89.4654 41.6441 90.0674L36.7713 96.7903C36.2241 97.5381 35.5825 98.1365 34.9138 98.5225C34.3609 98.8418 33.8167 99.003 33.3128 99.003ZM28.0921 77.313C28.9739 77.313 29.6983 77.7832 30.0586 78.6424C30.1392 78.8357 30.2234 79.0159 30.3054 79.1946L30.4512 79.5132C30.9463 80.4771 30.8518 81.9595 30.1846 83.4515L30.022 83.833L26.8155 90.9632C26.1563 92.4419 26.1951 93.906 26.9048 94.295L32.8623 97.6897C33.2095 97.8912 33.7405 97.815 34.314 97.4832C34.8391 97.18 35.3533 96.6958 35.8015 96.0835L40.6721 89.3643C41.2039 88.6267 41.836 88.0342 42.4995 87.6512C42.9881 87.3692 43.4751 87.2095 43.9475 87.1773C44.2442 87.1546 44.5467 87.1216 44.8491 87.0769C46.1214 86.9048 47.1321 87.7046 47.3518 89.0669L48.7024 96.8423L58.7688 91.0298C60.0154 90.3091 61.1199 88.5894 61.3382 87.0301L62.3555 79.73C62.5613 78.3186 63.3069 76.8479 64.3506 75.7911C64.6612 75.4776 64.9519 75.1641 65.2632 74.8279C65.6829 74.3709 66.1319 74.0025 66.5962 73.7351C67.325 73.3147 68.0471 73.1697 68.6851 73.3089L73.5432 74.4126C73.8816 74.4859 74.3262 74.3753 74.792 74.1072C75.4739 73.7139 76.1433 73.0057 76.6297 72.1641L82.5388 61.9248C83.4727 60.3069 83.4676 58.7373 82.9234 58.1543L79.5249 54.542C78.7727 53.7415 78.616 52.3462 79.1052 50.8089C79.251 50.3658 79.3748 49.9388 79.489 49.5169C79.8838 48.1004 80.784 46.7278 81.8987 45.8423L87.7119 41.3255C88.9666 40.3374 89.9114 38.5122 89.9077 37.0826L89.8806 27.4549C89.8784 26.8331 89.6946 26.3489 89.3753 26.1285C89.0288 25.8904 88.5813 25.9805 88.2649 26.0999L82.4209 28.2935C81.1179 28.785 79.9607 28.3587 79.4715 27.2073C79.374 26.9839 79.2678 26.7583 79.1609 26.5291L79.0423 26.2742C78.5559 25.325 78.6585 23.8587 79.3257 22.3726L82.6934 14.8404C83.357 13.3448 83.3203 11.8968 82.6077 11.4734L76.6692 8.11235C76.3169 7.91093 75.7844 7.98857 75.2058 8.32109C74.6748 8.62797 74.1577 9.11796 73.7117 9.73759L68.888 16.4078C68.3357 17.1636 67.6905 17.7671 67.0196 18.1546C66.5413 18.4314 66.0659 18.5896 65.6067 18.6248C65.3123 18.6365 65.0398 18.6753 64.7527 18.7149C63.3955 18.8907 62.4082 18.1209 62.1599 16.7469L61.1148 10.6546C61.0569 10.3338 60.9075 9.90971 60.5303 9.73466C60.1751 9.5706 59.6602 9.6541 59.116 9.96977L50.7613 14.795C49.5154 15.5142 48.4065 17.2325 48.1809 18.7918L47.1739 26.0596C47.1651 26.1248 47.146 26.1878 47.1167 26.2464C46.5088 27.4593 46.0056 28.4429 45.3948 29.636L45.2666 29.8851C45.2388 29.94 45.2022 29.9905 45.159 30.0345C44.9715 30.2234 44.7906 30.4175 44.6089 30.6123L44.2405 31.0042C43.8384 31.4378 43.4019 31.7945 42.9478 32.056C42.2124 32.4808 41.4851 32.6287 40.8406 32.48L35.9707 31.4122C35.625 31.3301 35.1812 31.4349 34.7205 31.7015C34.0481 32.0896 33.3772 32.8001 32.8792 33.6512L26.9898 43.8545C26.1416 45.3443 25.9688 46.9776 26.5891 47.6507L29.992 51.2403C30.7324 52.0562 30.8987 53.4148 30.4453 54.8855C30.2783 55.3916 30.1348 55.8641 30.0008 56.354C29.6067 57.7537 28.7146 59.0955 27.6138 59.9473L21.7984 64.4869C20.5532 65.4588 19.6172 67.2788 19.6216 68.7188L19.6487 78.3472C19.6509 78.9734 19.8281 79.4414 20.1489 79.6648C20.4976 79.908 20.951 79.8179 21.2688 79.7007L27.0777 77.5035C27.43 77.3753 27.772 77.313 28.0921 77.313Z\" fill=\"black\"/>\\n<path d=\"M54.6793 30.66C55.8919 29.96 57.1069 29.9186 57.8581 30.8052L73.2065 48.9517C74.8534 50.8995 73.0588 55.7674 70.0515 57.5036L39.5078 75.138C36.5063 76.8709 34.6841 74.0912 36.3148 70.2511L51.5159 34.4668C52.2568 32.7188 53.4667 31.3601 54.6793 30.66Z\" fill=\"#FFD63C\"/>\\n<path d=\"M70.0528 57.5065L39.5053 75.1412C36.5065 76.8719 34.6864 74.0894 36.3125 70.2477L37.5732 67.2713C45.6073 69.9194 55.5735 66.4432 61.8396 58.1405C65.6813 53.0531 67.3971 47.1226 67.054 41.677L73.2082 48.9502C74.8493 50.8972 73.059 55.7684 70.0528 57.5065Z\" fill=\"#F4C531\"/>\\n<path d=\"M37.7949 76.2664C37.1658 76.2664 36.5967 76.0605 36.1323 75.6497C34.9129 74.5701 34.7671 72.3589 35.7617 70.0166L50.9632 34.2327C51.719 32.4492 52.9641 30.9573 54.3784 30.1406C55.9348 29.2412 57.4055 29.3452 58.3152 30.4168L73.6638 48.564C74.3479 49.3733 74.5852 50.6162 74.3325 52.0657C73.9143 54.4614 72.2774 56.9114 70.3511 58.0232L39.8076 75.6577C39.1052 76.0635 38.4204 76.2664 37.7949 76.2664ZM54.979 31.1792C53.8028 31.8589 52.7151 33.1751 52.0676 34.7014L36.8662 70.4854C35.9683 72.5999 36.2503 74.1511 36.9277 74.751C37.4492 75.2109 38.2586 75.1641 39.207 74.6191L69.7505 56.9846C71.3911 56.0369 72.7886 53.9297 73.1504 51.8591C73.3408 50.7664 73.198 49.8713 72.7476 49.3389L57.3997 31.1924C56.6738 30.3362 55.4661 30.9001 54.979 31.1792Z\" fill=\"black\"/>\\n<path d=\"M55.3856 55.8684C56.3227 55.3274 57.0838 55.768 57.0868 56.8449C57.0899 57.9289 56.3338 59.2383 55.3967 59.7794C54.4533 60.324 53.6925 59.8904 53.6895 58.8064C53.6864 57.7295 54.4423 56.4131 55.3856 55.8684Z\" fill=\"black\"/>\\n<path d=\"M55.3358 39.1905C56.6861 38.4109 57.7628 39.1163 57.6623 40.7285L57.0309 51.1276C56.9722 52.1621 56.2468 53.3544 55.3774 53.8564C54.5018 54.3619 53.7782 54.0061 53.7076 53.0463L53.0194 43.4091C52.9103 41.9179 53.9793 39.9736 55.3358 39.1905Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\"},children:[\"Vulnerability to Data Breaches\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif'},children:\" and Cybersecurity Threats.\"})]})})},UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:[\"Vulnerability to Data Breaches \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif'},children:\"and Cybersecurity Threats.\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"120%\"},children:[\"Vulnerability to Data Breaches \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif'},children:\"and Cybersecurity Threats.\"})]})}),className:\"framer-1tkbhsl\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Bold\",\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j6pn97\",\"data-framer-name\":\"CTA banner\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ydwdc\",\"data-framer-name\":\"blue banner\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-i7j6v\",\"data-framer-name\":\"bg blur circle\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:786,intrinsicWidth:828,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1287.55+80+-7.5+334-283),pixelHeight:786,pixelWidth:828,sizes:\"370px\",src:\"https://framerusercontent.com/images/91scEQZJnmcPAUAII7lIgCY.png\",srcSet:\"https://framerusercontent.com/images/91scEQZJnmcPAUAII7lIgCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/91scEQZJnmcPAUAII7lIgCY.png 828w\"}},UfxwKg5CD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:786,intrinsicWidth:828,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2436.12+60+614-225),pixelHeight:786,pixelWidth:828,sizes:\"311px\",src:\"https://framerusercontent.com/images/91scEQZJnmcPAUAII7lIgCY.png\",srcSet:\"https://framerusercontent.com/images/91scEQZJnmcPAUAII7lIgCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/91scEQZJnmcPAUAII7lIgCY.png 828w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:786,intrinsicWidth:828,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+1308.55+80+-7.5+334-292),pixelHeight:786,pixelWidth:828,sizes:\"370px\",src:\"https://framerusercontent.com/images/91scEQZJnmcPAUAII7lIgCY.png\",srcSet:\"https://framerusercontent.com/images/91scEQZJnmcPAUAII7lIgCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/91scEQZJnmcPAUAII7lIgCY.png 828w\"},className:\"framer-1a6b6g6\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pexj6k\",\"data-framer-name\":\"content-left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mo04ks\",\"data-framer-name\":\"Frame 1000005911\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"HIPAA Compliance Health Check \u2014 Done For You in 24 hours.\"})})},UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"HIPAA Compliance Health Check \u2014 Done For You in 24 hours.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"HIPAA Compliance Health Check \u2014 Done For You in 24 hours.\"})}),className:\"framer-1rz4dnz\",\"data-framer-name\":\"Headline\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"100% free\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"100% free\"})}),className:\"framer-drikz9\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ef8vvw\",children:[/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/09ecee4e-b798-4f6f-95d6-b132e958055f/submit\",className:\"framer-19c61z4\",nodeId:\"dIDnUhQ53\",redirectUrl:\"https://outlook.office365.com/book/UEMSecure@uemsecure.com/\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-gpq132\",\"data-framer-name\":\"input\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-r1z0ml\",inputName:\"Email\",placeholder:\"Your email\",required:true,type:\"email\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{y:(componentViewport?.y||0)+0+1287.55+80+-7.5+40.3584+0+172+0+0+0},UfxwKg5CD:{y:(componentViewport?.y||0)+0+2436.12+60+50+0+0+199.9342+0+0+0+62}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+10+1308.55+80+-7.5+-64.7791+0+382.275+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cogt9d-container\",nodeId:\"rS7xSwGab\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button3,{height:\"100%\",id:\"rS7xSwGab\",layoutId:\"rS7xSwGab\",style:{height:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"TbxfIfGcs\",success:\"m87qMvQ9X\"},\"WeQbbvHEc\"),width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"No commitment, no credit card required.\"})}),className:\"framer-lbudxh\",\"data-framer-name\":\"No commitment, no credit card required.\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1keisqk\",\"data-framer-name\":\"testimonial\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-arkkdh\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2lsZGEgRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Gilda Display\", \"Gilda Display Placeholder\", serif',\"--framer-font-size\":\"172.22px\",\"--framer-line-height\":\"53.02%\",\"--framer-text-color\":\"rgb(46, 70, 192)\"},children:\"\u201C\"})}),className:\"framer-2o65cr\",\"data-framer-name\":\"quotemarks\",fonts:[\"GF;Gilda Display-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-em3pso\",\"data-framer-name\":\"Frame 1000005918\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEl0YWxpYw==\",\"--framer-font-family\":'\"Glacial Indifference Italic\", \"Glacial Indifference Italic Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"rgb(33, 33, 34)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Dmitri from Compava was great. He was able to set up a HIPAA-compliant Microsoft workplace for the group mental health practice that I own by developing a secure tenant and enrolling multiple PCs. Communication was clear and efficient. \"})}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"He was very flexible with his schedule and understanding when reschedules were required due to the care we provide our clients. I look forward to continued opportunities to work with Dmitri as we move forward with accreditation applications.\"})})]})}),fonts:[\"CUSTOM;Glacial Indifference Italic\",\"CUSTOM;Glacial Indifference Bold\"]},UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"Dmitri from Compava was great. He was able to set up a HIPAA-compliant Microsoft workplace for the group mental health practice that I own by developing a secure tenant and enrolling multiple PCs. Communication was clear and efficient. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"He was very flexible with his schedule and understanding when reschedules were required due to the care we provide our clients. I look forward to continued opportunities to work with Dmitri as we move forward with accreditation applications.\"})})]})}),fonts:[\"CUSTOM;Glacial Indifference Regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"rgb(33, 33, 34)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\"},children:\"Dmitri from Compava was great. He was able to set up a HIPAA-compliant Microsoft workplace for the group mental health practice that I own by developing a secure tenant and enrolling multiple PCs. Communication was clear and efficient. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"He was very flexible with his schedule and understanding when reschedules were required due to the care we provide our clients. I look forward to continued opportunities to work with Dmitri as we move forward with accreditation applications.\"})})]})}),className:\"framer-1o7189j\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Regular\",\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-avmcph\",\"data-framer-name\":\"Frame 1000005934\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\"},children:\"Robert\"})}),className:\"framer-1yzob6j\",\"data-framer-name\":\"Name Surname\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\"},children:\"Mindful Possibilities\"})}),className:\"framer-1c8gfl2\",\"data-framer-name\":\"Company\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1te0ewf\",\"data-framer-name\":\"Value Proposition\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vn90n5\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1eyjzag\",\"data-framer-name\":\"Pc\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 370 327\"><g transform=\"translate(0 1.026)\"><path d=\"M 0 0 L 369.086 0 L 369.086 325.974 L 0 325.974 Z\" fill=\"transparent\"></path><path d=\"M 37.447 120.21 C 36.426 121.284 34.574 121.904 33.188 122.377 C 32.297 122.68 32.197 122.882 31.316 122.438 C 31.404 121.684 31.473 120.937 31.766 120.227 C 32.814 117.681 35.266 117.389 37.503 116.371 C 44.444 113.214 40.548 106.567 42.717 100.974 C 43.734 100.784 43.779 100.888 44.705 101.191 C 46.166 103.274 45.338 107.721 46.389 110.495 C 49.021 112.116 52.533 108.552 55.51 108.491 L 56.038 109.185 C 54.779 112.882 48.474 114.395 46.188 118.002 C 46.116 118.119 46.045 118.236 45.974 118.354 C 45.902 118.645 45.826 118.934 45.761 119.226 C 45.078 122.262 46.444 127.245 44.341 129.666 C 43.213 129.764 43.254 129.793 42.352 129.115 C 41.537 126.308 42.4 122.455 39.855 120.558 Z M 279.739 47.7 C 278.719 48.774 276.867 49.394 275.479 49.866 C 274.59 50.169 274.488 50.371 273.607 49.928 C 273.696 49.173 273.766 48.426 274.058 47.716 C 275.106 45.17 277.558 44.878 279.795 43.86 C 286.736 40.702 282.84 34.056 285.009 28.463 C 286.025 28.273 286.071 28.376 286.998 28.68 C 288.459 30.762 287.631 35.209 288.68 37.984 C 291.311 39.606 294.825 36.04 297.803 35.98 L 298.331 36.674 C 297.071 40.372 290.767 41.885 288.481 45.492 C 288.407 45.607 288.337 45.726 288.265 45.844 C 288.195 46.135 288.119 46.423 288.053 46.716 C 287.371 49.75 288.737 54.735 286.633 57.155 C 285.506 57.253 285.546 57.281 284.643 56.604 C 283.829 53.796 284.692 49.945 282.147 48.047 Z\" fill=\"rgb(250,211,0)\"></path><path d=\"M 251.402 50.4 C 252.605 52.071 253.223 53.445 253.365 55.514 C 253.959 64.147 253.47 73.13 253.47 81.805 L 253.48 134.16 L 253.475 168.157 C 253.481 173.098 254.062 179.913 253.293 184.68 C 252.634 188.762 250.46 192.71 247.095 195.118 C 242.86 198.149 237.156 200.449 232.47 202.9 L 200.187 219.797 C 196.748 221.59 191.284 223.615 188.533 226.275 C 188.382 227.388 189.132 228.858 189.562 229.887 L 189.007 230.457 C 188.598 229.146 188.26 227.776 187.562 226.583 L 186.898 226.545 L 186.484 226.242 C 187.87 225.3 189.613 224.591 191.116 223.819 L 200.795 218.809 L 231.835 202.599 C 236.275 200.274 240.982 198.172 245.302 195.654 C 249.125 193.425 251.566 189.994 252.572 185.682 C 253.543 181.527 252.919 176.406 252.878 172.124 L 252.841 152.352 L 252.83 87.323 L 252.779 66.058 C 252.769 62.469 252.932 58.792 252.71 55.213 C 252.604 53.507 252.009 52.376 251.097 50.953 Z\" fill=\"rgb(64,68,93)\"></path><path d=\"M 255.401 218.502 C 260.906 215.353 266.544 212.467 272.066 209.353 C 279.427 205.201 286.781 200.71 294.508 197.284 C 303.283 202.943 312.422 208.113 321.426 213.39 C 326.833 216.558 332.203 220.162 337.889 222.781 L 337.84 233.681 C 330.592 238.137 322.843 241.927 315.332 245.929 C 309.534 249.019 303.717 252.527 297.724 255.183 C 288.779 250.515 279.828 245.843 271.201 240.588 C 265.518 238.633 259.588 234.473 254.363 231.427 C 254.167 227.873 253.23 222.23 254.425 218.872 Z\" fill=\"rgb(40,49,223)\"></path><path d=\"M 255.698 218.868 C 256.5 218.458 257.639 217.535 258.512 217.922 C 261.655 219.312 299.013 241.391 299.132 241.523 C 304.142 240.836 329.178 226.457 336.883 223.115 C 336.931 226.417 337.034 229.731 336.856 233.031 C 331.568 237.033 324.903 239.913 319.06 243.049 C 312.029 246.822 304.958 251.082 297.654 254.25 C 297.576 250.438 297.293 246.452 297.98 242.69 C 296.351 243.183 293.626 241.279 292.152 240.553 C 291.211 239.344 288.342 238.112 286.974 237.319 C 282.385 234.662 257.073 221.67 255.698 218.868 Z\" fill=\"rgb(254,254,254)\"></path><path d=\"M 293.329 199.152 C 295.761 199.303 329.219 219.57 335.087 222.843 C 323.398 228.472 312.009 234.953 300.192 240.242 C 297.603 240.316 263.079 220.247 258.498 217.762 C 269.668 211.232 281.561 204.541 293.329 199.152 Z\" fill=\"rgb(254,254,254)\"></path><path d=\"M 284.124 221.999 C 283.529 218.944 283.381 216.132 285.137 213.421 C 286.423 211.435 288.358 210.06 290.68 209.6 C 294.648 208.815 300.026 210.781 303.219 213.161 C 305.126 214.581 306.613 216.498 306.979 218.905 C 307.374 221.508 306.419 224.005 304.851 226.048 C 302.773 228.761 299.158 231.482 295.661 231.815 C 293.907 231.983 291.997 231.172 290.729 229.961 C 290.59 229.828 290.486 229.662 290.366 229.511 C 287.665 228.067 286.167 225.981 284.648 223.37 Z\" fill=\"rgb(250,211,0)\"></path><path d=\"M 98.494 284.714 C 98.595 287.293 98.583 289.868 98.572 292.449 C 89.848 297.762 81.01 302.886 72.064 307.817 C 69.001 309.517 65.779 311.707 62.544 313.026 C 63.089 310.533 62.776 307.495 62.754 304.935 C 68.812 301.126 75.186 297.803 81.4 294.259 C 87.022 291.052 92.628 287.442 98.494 284.714 Z\" fill=\"rgb(254,254,254)\"></path><path d=\"M 187.755 73.525 C 199.111 68.249 210.45 61.086 221.402 54.888 C 226.036 52.265 230.672 49.427 235.581 47.352 C 237.215 46.662 238.81 46.158 240.601 46.129 C 244.446 46.067 248.663 47.689 251.402 50.4 L 251.097 50.953 C 252.009 52.376 252.603 53.506 252.71 55.213 C 252.932 58.792 252.769 62.469 252.778 66.058 L 252.83 87.323 L 252.841 152.351 L 252.878 172.124 C 252.919 176.405 253.541 181.527 252.572 185.681 C 251.566 189.994 249.123 193.425 245.302 195.654 C 240.982 198.172 236.275 200.274 231.835 202.598 L 200.795 218.809 L 191.116 223.819 C 189.613 224.59 187.869 225.3 186.483 226.242 L 186.897 226.544 L 187.562 226.583 C 188.26 227.776 188.598 229.146 189.007 230.457 L 189.562 229.887 C 193.626 241.054 198.697 240.897 207.731 246.526 C 208.698 247.129 208.856 248.321 209.706 249.033 C 212.09 251.028 215.934 252.806 218.789 254.167 C 218.877 254.209 218.966 254.249 219.055 254.289 C 223.833 251.735 234.957 244.926 239.408 243.84 C 241.475 243.334 243.514 243.46 245.545 244.055 C 251.177 245.71 259.512 251.965 264.781 255.162 C 268.275 257.284 272.736 259.44 275.88 261.975 C 277.137 262.483 278.223 263.309 279.339 264.068 C 280.471 264.787 281.529 265.65 282.601 266.455 C 282.757 268.828 282.712 271.183 282.645 273.557 C 282.231 273.84 281.81 274.113 281.384 274.378 C 277.097 277.042 272.203 279.094 267.737 281.479 L 228.977 301.797 C 217.939 307.618 207.022 313.655 195.943 319.404 C 192.502 321.19 189.046 323.678 185.444 325.058 C 182.358 326.24 178.68 326.181 175.489 325.432 C 173.985 325.079 172.468 324.605 171.058 323.969 C 165.124 321.288 159.393 317.684 153.666 314.561 C 148.834 311.926 142.828 309.252 138.468 306 C 137.527 305.298 136.957 304.587 136.345 303.588 C 136.312 301.53 136.39 299.479 136.464 297.422 C 139.741 295.301 143.528 293.661 147.001 291.868 L 166.36 281.796 C 183.654 272.735 200.661 263.008 218.293 254.618 C 215.098 252.883 211.685 251.251 208.704 249.173 C 198.194 254.476 187.806 260.092 177.394 265.59 C 173.495 267.648 165.433 272.607 161.495 273.477 C 157.776 274.298 137.634 261.539 133.429 258.921 L 133.453 255.607 C 126.972 258.779 120.683 262.516 114.328 265.945 C 111.311 267.573 108.112 269.492 104.882 270.629 C 103.559 271.095 102.019 271.505 100.609 271.277 C 97.995 270.856 86.502 263.276 84.925 260.843 C 84.109 259.584 84.244 257.338 84.208 255.864 C 83.957 245.836 84.203 235.743 84.222 225.708 L 84.193 174.821 L 84.21 148.198 C 84.221 143.642 83.684 138.211 84.651 133.775 C 85.494 129.905 87.58 126.076 90.524 123.433 C 95.082 119.343 107.234 113.637 113.157 110.493 C 120.395 106.573 127.61 102.613 134.806 98.613 C 141.733 94.832 148.78 91.211 155.429 86.949 C 155.363 84.587 155.458 82.444 156.213 80.179 C 157.888 75.151 161.485 71.857 166.107 69.521 C 166.708 66.992 167.613 64.911 169.662 63.173 C 170.7 62.292 171.998 61.651 173.39 61.812 C 175.256 62.025 176.352 63.317 177.455 64.696 C 180.294 68.248 185.032 69.721 187.755 73.527 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 146.682 248.254 C 147.393 248.835 149.783 255.453 150.512 256.961 C 151.56 259.1 152.71 261.188 153.957 263.217 C 156.398 267.124 159.285 270.225 162.855 273.111 C 158.856 272.704 156.206 271.424 152.769 269.403 C 146.559 265.731 139.954 262.479 134.047 258.339 L 134.157 255.182 C 138.371 252.944 142.546 250.634 146.682 248.254 Z\" fill=\"rgb(122,144,253)\"></path><path d=\"M 187.859 74.076 C 192.73 71.86 197.342 69.127 202.009 66.518 L 221.21 55.734 C 226.588 52.664 232.221 48.766 238.193 47.047 C 241.371 46.133 244.576 46.939 247.415 48.479 C 241.21 50.398 229.056 58.008 222.993 61.376 C 211.626 67.692 199.975 73.582 188.894 80.395 C 188.889 82.392 189.008 84.483 188.801 86.466 C 188.182 82.327 189.076 78.175 187.859 74.076 Z M 155.593 87.523 L 155.611 94.984 C 150.622 96.384 144.605 100.534 139.959 103.12 L 111.577 118.891 C 110.413 119.531 106.603 121.981 105.579 122.058 C 104.304 122.351 103.321 122.953 102.214 123.614 C 100.335 122.442 97.835 121.821 96.199 120.357 C 102.439 116.835 108.799 113.58 115.084 110.151 L 136.265 98.347 C 142.744 94.785 149.255 91.34 155.593 87.524 Z\" fill=\"rgb(185,187,251)\"></path><path d=\"M 168.827 65.244 C 169.946 63.974 171.278 62.695 173.064 62.565 C 174.152 62.486 175.041 62.938 175.828 63.657 C 176.407 64.186 177.321 64.954 177.543 65.71 L 177.171 65.675 L 176.565 66.105 C 180.688 68.101 184.992 70.763 187.688 74.577 C 188.519 79.449 188.471 85.14 188.202 90.066 C 179.693 96.003 169.88 100.72 160.587 105.308 C 160.055 105.683 159.264 105.998 158.625 106.109 C 157.937 106.228 157.589 105.955 157.057 105.577 C 156.109 103.651 156.147 86.666 156.34 83.59 C 156.426 82.354 156.669 81.135 157.066 79.962 C 158.794 74.71 162.59 72.038 167.367 69.723 C 167.641 68.086 168 66.698 168.827 65.245 Z\" fill=\"rgb(254,254,254)\"></path><path d=\"M 169.472 67.523 C 171.016 65.575 171.761 64.382 174.124 63.364 C 175.206 64.049 176.367 64.659 177.172 65.675 L 176.566 66.105 C 175.672 65.96 174.467 65.757 173.652 66.251 C 173.28 66.478 173.298 66.802 173.182 67.19 C 173.634 69.207 174.985 70.706 175.705 72.619 C 174.958 73.37 174.296 74.19 173.275 74.542 C 172.559 74.459 172.224 74.392 171.743 73.819 C 171.134 73.096 170.631 72.176 170.121 71.375 C 169.443 69.945 169.314 69.115 169.472 67.523 Z\" fill=\"rgb(40,49,223)\"></path><path d=\"M 186.897 226.545 L 187.561 226.583 C 188.258 227.776 188.597 229.146 189.007 230.458 C 190.466 233.765 192.154 236.978 194.788 239.508 C 195.75 240.433 196.841 241.314 197.989 241.991 C 199.957 243.153 207.82 246.528 208.528 248.386 C 206.872 249.889 200.267 252.806 197.94 254.042 C 190.349 258.126 182.722 262.145 175.062 266.098 C 171.061 268.182 167.084 270.443 162.962 272.274 C 155.693 267.794 150.369 255.762 147.499 247.857 C 156.721 242.511 166.374 237.742 175.775 232.702 C 179.408 230.754 183.54 228.926 186.897 226.545 Z\" fill=\"rgb(254,254,254)\"></path><g><defs><linearGradient id=\"idss10261294752_16g-1052956097\" x1=\"1\" x2=\"0\" y1=\"0.45465112618541487\" y2=\"0.5453488738145851\"><stop offset=\"0\" stop-color=\"rgb(109,119,248)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(142,146,248)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 96.357 268.579 C 96.32 268.552 96.281 268.525 96.245 268.497 C 93.207 266.143 87.429 263.867 85.62 260.511 C 84.907 259.189 84.936 256.949 84.887 255.457 C 84.678 249.068 84.887 242.611 84.892 236.214 L 84.892 198.194 L 84.862 158.926 C 84.859 151.977 84.664 144.962 84.906 138.017 C 84.977 136.008 85.083 134.003 85.714 132.082 C 87.528 126.55 91.094 122.942 96.2 120.357 C 97.836 121.821 100.335 122.441 102.214 123.614 C 100.377 125.637 98.662 127.7 97.391 130.137 C 96.021 132.765 95.404 135.42 95.19 138.365 C 94.708 145.048 95.07 151.97 95.08 158.68 L 95.096 196.969 L 95.101 240.199 C 95.101 248.076 94.699 256.194 95.235 264.048 C 95.339 265.568 95.913 267.127 96.357 268.579 Z\" fill=\"url(#idss10261294752_16g-1052956097)\"></path></g><path d=\"M 247.412 48.477 C 248.779 49.12 250.09 49.781 251.096 50.953 C 252.006 52.376 252.602 53.506 252.709 55.213 C 252.931 58.792 252.767 62.469 252.777 66.058 L 252.829 87.323 L 252.839 152.352 L 252.877 172.124 C 252.917 176.405 253.54 181.527 252.57 185.682 C 251.564 189.994 249.122 193.425 245.3 195.654 C 240.98 198.172 236.273 200.274 231.834 202.598 L 200.794 218.809 L 191.114 223.819 C 189.612 224.59 187.868 225.3 186.482 226.242 C 180.516 229.104 174.79 232.63 168.948 235.754 L 127.131 258.272 C 120.075 262.1 112.989 266.577 105.607 269.714 C 104.209 270.309 102.807 270.851 101.258 270.624 C 99.888 270.422 98.106 269.582 97.295 268.425 C 96.134 266.771 95.9 264.539 95.796 262.569 C 95.317 253.537 95.794 244.298 95.793 235.246 L 95.762 180.694 L 95.733 153.196 C 95.709 147.705 95.194 141.661 96.083 136.242 C 97.122 129.929 100.519 125.716 105.577 122.058 C 106.601 121.981 110.411 119.531 111.575 118.891 L 139.957 103.118 C 144.603 100.534 150.62 96.384 155.609 94.984 C 155.598 97.301 155.649 99.619 155.67 101.937 C 149.841 104.551 144.342 107.742 138.748 110.81 L 119.763 121.089 C 116.663 122.765 106.434 127.486 104.57 129.438 C 102.597 131.504 101.148 135.239 100.791 138.048 C 100.213 142.586 100.499 147.375 100.513 151.948 L 100.557 174.633 L 100.724 251.902 C 111.329 245.984 122.096 240.44 132.821 234.752 C 147.366 226.866 161.998 219.141 176.714 211.578 C 200.6 198.942 224.661 186.639 248.891 174.675 L 248.783 98.483 L 248.801 73.992 C 248.805 70.057 248.954 66.062 248.793 62.132 C 248.752 61.124 248.659 60.112 248.294 59.163 C 247.928 58.212 247.312 57.415 246.333 57.053 C 245.472 56.736 244.864 56.921 244.037 57.212 C 239.594 58.772 235.201 61.777 231.088 64.064 L 204.923 78.44 C 200.043 81.149 194.197 84.935 189.076 86.877 L 188.798 86.466 C 189.005 84.483 188.886 82.392 188.891 80.395 C 199.972 73.581 211.623 67.692 222.99 61.376 C 229.053 58.007 241.207 50.397 247.412 48.477 Z\" fill=\"rgb(254,254,254)\"></path><path d=\"M 176.753 217.099 C 177.186 217.182 177.157 217.162 177.603 217.309 C 178.314 217.541 178.85 218.107 179.136 218.788 C 179.68 220.084 179.272 221.55 178.691 222.752 C 177.764 224.672 176.627 225.722 174.642 226.449 C 174.239 226.309 173.846 226.143 173.465 225.95 C 172.773 225.584 172.329 224.954 172.117 224.212 C 171.739 222.888 172.083 221.519 172.716 220.336 C 173.698 218.501 174.788 217.675 176.753 217.099 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 176.263 218.061 C 176.35 218.063 176.437 218.059 176.523 218.067 C 177.049 218.116 177.549 218.32 177.872 218.748 C 178.417 219.47 178.44 220.291 178.247 221.143 C 177.814 223.065 176.777 224.344 175.197 225.432 C 174.629 225.41 174.273 225.272 173.844 224.889 C 173.444 224.531 173.293 224.119 173.295 223.578 C 173.306 221.469 174.905 219.524 176.263 218.061 Z\" fill=\"rgb(40,49,223)\"></path><path d=\"M 233.707 247.65 C 234.657 246.199 236.56 245.416 238.16 244.869 C 241.265 243.808 245.088 243.822 248.057 245.349 C 248.903 245.785 249.474 246.142 249.784 247.037 L 250.803 247.041 C 252.594 248.095 260.07 252.143 260.672 253.569 L 260.666 254.067 C 261.493 253.809 261.616 253.96 262.402 254.262 C 265.711 256.389 269.765 258.159 272.725 260.697 L 273.715 261.263 C 274.431 261.521 275.138 261.806 275.879 261.977 C 277.136 262.483 278.223 263.31 279.338 264.07 C 279.792 265.143 281.012 265.818 281.864 266.573 C 282.316 268.679 282.197 270.966 282.107 273.111 C 279.352 275.621 272.288 278.525 268.646 280.445 L 228.364 301.537 L 195.218 319.137 C 192.158 320.731 189.219 322.77 186.099 324.206 C 183.958 325.191 181.666 325.464 179.335 325.369 C 176.632 325.26 174.037 324.571 171.552 323.52 C 165.077 320.778 158.826 316.715 152.682 313.268 C 148.602 310.978 144.289 308.993 140.262 306.648 C 139.603 306.263 139.001 305.789 138.474 305.239 C 136.521 303.168 136.874 300.56 136.951 297.945 C 143.304 294.7 149.621 291.385 155.901 287.999 C 160.358 285.594 164.999 282.825 169.675 280.918 C 170.431 280.23 171.541 279.786 172.448 279.305 C 175.829 277.753 178.934 275.703 182.403 274.252 C 182.793 273.638 184.141 273.251 184.798 272.979 L 185.78 272.455 C 188.453 270.166 192.651 268.48 195.765 266.803 C 200.223 265.107 204.69 262.34 208.943 260.115 C 211.337 258.447 216.842 255.668 219.646 254.813 C 220.132 254.665 220.447 254.568 220.86 254.249 L 220.783 253.946 L 221.056 254.195 C 224.722 251.738 228.78 249.571 232.675 247.499 C 232.998 247.526 233.419 247.5 233.707 247.65 Z\" fill=\"rgb(185,187,251)\"></path><path d=\"M 233.706 247.65 C 234.657 246.199 236.56 245.416 238.16 244.869 C 241.265 243.808 245.086 243.822 248.057 245.349 C 248.903 245.785 249.474 246.142 249.784 247.037 C 246.652 248.605 243.417 250.348 240.535 252.34 Z M 208.594 260.803 C 210.563 261.39 214.744 264.315 216.476 265.679 C 213.051 267.641 209.129 269.215 205.99 271.611 C 203.339 269.696 200.391 268.063 197.597 266.356 C 201.381 265 205.045 262.703 208.594 260.803 Z M 149.218 291.959 C 151.416 292.417 156.663 296.155 158.809 297.441 C 155.968 299.337 152.714 300.569 149.843 302.489 C 148.784 302.707 141.609 298.307 140.011 297.498 C 142.791 295.313 146.133 293.685 149.218 291.959 Z M 182.403 274.251 C 182.794 273.638 184.142 273.25 184.8 272.979 C 187.386 274.857 190.295 276.25 192.885 278.123 C 189.76 280.533 185.829 282.354 182.371 284.269 C 179.654 282.639 176.667 281.098 174.298 278.978 C 176.507 277.75 180.741 275.926 182.403 274.251 Z M 195.766 266.802 C 198.138 266.544 202.995 270.442 205.086 271.803 C 201.354 273.843 197.534 275.834 193.92 278.073 C 191.239 276.189 188.315 274.525 185.781 272.455 C 188.454 270.166 192.652 268.479 195.766 266.802 Z M 161.129 285.803 C 163.591 286.717 167.875 289.624 169.985 291.252 C 166.58 293.414 162.835 294.977 159.472 297.207 C 157.574 295.752 152.094 293.318 151.106 291.628 C 151.628 290.302 159.42 286.715 161.129 285.803 Z M 172.448 279.304 C 174.485 279.387 179.774 283.388 181.715 284.655 C 178.228 286.576 174.006 288.421 170.942 290.936 C 168.016 289.076 164.791 287.489 162.021 285.416 C 164.038 284.315 168.23 282.533 169.676 280.917 C 170.431 280.23 171.541 279.785 172.448 279.304 Z M 159.482 297.863 C 162.749 300.135 166.624 301.923 170.106 303.879 C 167.171 305.894 163.963 307.483 160.805 309.111 C 157.638 308.281 153.028 305.043 150.583 302.944 C 153.226 300.82 156.557 299.567 159.482 297.863 Z M 262.402 254.261 C 265.711 256.388 269.765 258.159 272.725 260.696 C 270.792 261.787 263.797 266.27 262.201 266.363 C 260.806 264.297 254.788 261.121 252.38 259.614 C 255.707 257.863 258.894 255.628 262.402 254.261 Z M 181.962 298.181 C 185.282 300.267 188.953 302.172 191.954 304.7 C 188.573 306.494 185.204 308.418 181.721 310 C 178.202 308.733 174.605 305.963 171.47 303.872 C 175.036 302.293 178.532 300.071 181.962 298.181 Z M 250.803 247.04 C 252.595 248.094 260.07 252.142 260.672 253.569 L 260.666 254.066 C 257.806 256.108 254.389 257.369 251.496 259.441 C 248.139 257.067 244.645 254.878 241.193 252.644 C 244.319 250.698 247.796 249.124 250.803 247.04 Z M 170.818 291.492 C 174.316 293.173 177.859 295.641 181.124 297.765 C 177.697 299.674 174.248 301.544 170.779 303.376 C 167.292 301.321 163.757 299.35 160.176 297.463 Z M 193.664 278.608 C 195.03 278.556 202.073 283.928 203.655 285.052 C 200.349 287.102 196.882 288.936 193.544 290.947 C 192.16 290.795 185.21 285.682 183.49 284.602 C 186.917 282.665 190.309 280.666 193.664 278.608 Z M 239.561 266.665 C 242.712 269.034 246.131 271.115 249.467 273.212 C 245.738 275.259 241.893 277.083 238.156 279.114 C 237.298 279.131 230.077 273.515 228.743 272.661 C 232.325 270.627 236.06 268.838 239.561 266.665 Z M 217.03 266.105 C 220.454 267.881 224.085 270.281 227.194 272.568 C 223.666 274.498 220.15 276.451 216.646 278.426 L 216.243 278.55 C 212.965 276.501 209.83 274.135 206.667 271.905 C 210.173 270.066 213.629 268.131 217.03 266.105 Z M 227.891 273.048 C 229.694 273.313 235.514 278.252 237.358 279.651 C 233.863 281.724 230.301 283.822 226.666 285.637 C 223.539 283.399 220.399 281.178 217.246 278.976 C 220.671 276.83 224.349 275 227.891 273.048 Z M 205.777 272.296 C 207.074 272.521 214.054 277.785 215.463 278.922 C 211.942 280.999 208.253 282.859 204.622 284.739 C 203.74 284.758 196.354 279.224 195.023 278.242 C 198.656 276.383 202.206 274.278 205.777 272.296 Z M 193.667 291.505 C 196.777 294.028 200.467 295.787 203.624 298.267 C 200.051 300.275 196.361 302.074 192.777 304.068 C 190.695 303.443 184.922 299.193 182.718 297.765 C 186.385 295.722 190.113 293.741 193.667 291.505 Z M 182.717 284.769 C 185.861 287.124 189.276 289.185 192.499 291.444 C 189.012 293.58 185.356 295.473 181.767 297.435 C 178.583 295.086 174.986 293.097 171.59 291.059 C 175.289 288.942 179.056 286.949 182.717 284.769 Z M 228.988 259.425 C 232.033 261.994 235.796 264.033 239.092 266.315 C 235.285 268.099 231.596 270.205 227.9 272.209 C 224.765 269.833 221.156 268.04 217.941 265.747 C 221.59 263.584 225.419 261.729 228.988 259.425 Z M 240.458 253.04 C 241.893 253.345 249.096 258.512 250.489 259.748 C 246.896 261.828 243.239 263.768 239.681 265.915 C 236.39 263.597 232.995 261.419 229.635 259.206 C 233.166 257.037 236.907 255.193 240.458 253.04 Z M 240.441 266.413 C 243.865 263.857 248.018 261.918 251.741 259.811 C 254.803 262.061 258.66 264.993 262.2 266.363 C 258.027 268.196 253.97 270.686 249.96 272.871 C 246.903 270.562 243.497 268.737 240.441 266.413 Z M 208.944 260.115 C 211.338 258.446 216.843 255.667 219.647 254.812 C 220.133 254.665 220.448 254.567 220.861 254.247 L 220.784 253.946 L 221.058 254.193 C 224.723 251.737 228.781 249.57 232.676 247.498 C 234.581 249.664 237.499 250.827 239.636 252.762 C 236.1 255.021 232.296 256.862 228.647 258.933 C 226.845 257.564 223.437 255.156 221.277 254.729 L 221.165 255.026 C 223.317 256.632 225.868 257.582 228.043 259.206 L 217.123 265.375 C 214.605 263.352 211.642 261.884 208.944 260.115 Z M 216.534 279.224 C 219.541 281.608 222.948 283.5 225.811 286.073 C 218.689 290.023 211.605 294.237 204.279 297.792 C 201.044 295.749 197.831 293.671 194.642 291.557 L 194.575 291.389 C 195.465 290.009 202.662 286.451 204.416 285.494 C 207.158 287.531 210.527 289.067 213.14 291.18 C 213.281 291.293 213.405 291.425 213.537 291.547 L 213.577 291.409 L 213.81 291.492 C 212.784 289.637 207.283 286.724 205.257 285.286 C 209.037 283.303 212.795 281.282 216.534 279.224 Z\" fill=\"rgb(40,49,223)\"></path><path d=\"M 273.715 261.263 C 274.431 261.52 275.138 261.805 275.88 261.975 C 277.137 262.483 278.223 263.309 279.339 264.07 C 279.792 265.142 281.012 265.817 281.864 266.573 C 265.069 275.757 247.757 284.086 230.815 293.002 L 203.667 307.587 C 199.095 310.063 194.594 312.701 189.926 314.993 C 186.944 316.458 183.27 318.647 179.937 318.962 C 178.151 319.13 175.987 318.517 174.31 317.876 C 168.3 315.578 162.674 311.905 157.052 308.804 C 150.956 305.44 144.696 302.556 139.078 298.436 C 138.982 298.367 138.876 298.314 138.773 298.253 L 139.119 297.96 C 139.981 298.043 140.987 299.084 141.754 299.533 C 144.348 301.047 147.185 302.264 149.825 303.732 C 153.409 305.725 156.854 307.939 160.473 309.875 C 164.066 308.44 167.447 306.294 170.798 304.373 C 174.314 306.572 177.87 308.707 181.464 310.777 C 188.741 307.722 195.612 303.192 202.597 299.5 C 226.392 286.924 249.606 273.239 273.715 261.263 Z M 244.135 57.922 C 244.941 57.867 245.786 57.764 246.448 58.324 C 247.421 59.147 247.676 60.372 247.771 61.589 C 247.939 63.762 247.686 66.077 247.708 68.276 C 247.74 75.395 247.732 82.514 247.682 89.633 L 247.822 139.899 C 247.789 151.272 247.302 162.783 247.819 174.143 C 209.868 193.041 172.226 212.552 134.908 232.67 C 123.779 238.657 112.416 244.116 101.491 250.481 L 101.559 174.916 L 101.491 152.306 C 101.47 148.135 101.28 143.895 101.53 139.734 C 101.645 137.832 101.939 136.077 102.651 134.292 C 103.234 132.831 104.263 130.554 105.505 129.588 C 108.707 127.093 116.024 123.903 119.999 121.744 C 131.717 115.376 143.365 108.198 155.586 102.862 C 155.713 103.778 155.839 104.757 156.161 105.628 C 156.421 106.332 156.788 106.669 157.45 107.004 C 158.556 107.102 159.484 106.612 160.456 106.141 C 164.793 104.033 186.544 92.918 188.405 90.578 C 188.951 89.891 188.969 89.052 189.331 88.29 C 189.914 87.063 239.405 60.201 244.135 57.922 Z\" fill=\"rgb(40,49,223)\"></path><path d=\"M 49.124 214.641 C 48.551 212.833 47.501 211.38 46.072 210.145 C 41.372 206.088 34.335 205.196 28.358 205.62 C 23.623 205.956 17.74 207.256 14.509 211.097 C 13.926 211.788 13.152 212.812 13.236 213.745 L 13.495 213.766 C 17.125 209.523 23.018 207.458 28.449 207.023 C 35.59 206.45 41.661 208.355 47.086 213.053 C 47.731 213.611 48.358 214.259 49.123 214.641 Z\" fill=\"rgb(249,206,46)\"></path><path d=\"M 49.123 214.64 C 48.358 214.258 47.731 213.611 47.086 213.053 C 41.661 208.355 35.589 206.45 28.448 207.022 C 23.017 207.458 17.125 209.523 13.494 213.764 L 13.235 213.745 C 12.518 214.571 12.277 215.736 12.343 216.821 C 12.385 217.573 12.568 218.212 12.96 218.85 L 13.574 219.225 C 14.176 217.35 17.61 215.224 19.285 214.367 C 24.947 211.464 32.635 211.179 38.63 213.152 C 42.434 214.405 45.557 216.733 48.387 219.532 C 49.363 217.931 49.511 216.443 49.123 214.64 Z\" fill=\"rgb(216,168,4)\"></path><path d=\"M 48.387 219.532 C 45.557 216.733 42.434 214.405 38.63 213.152 C 32.635 211.179 24.949 211.464 19.286 214.367 C 17.611 215.225 14.177 217.35 13.575 219.225 C 13.509 220.141 13.715 220.541 14.344 221.266 C 17.555 224.969 24.675 226.343 29.306 226.528 C 34.947 226.755 42.249 225.595 46.576 221.608 C 47.258 220.979 47.829 220.27 48.387 219.532 Z\" fill=\"rgb(29,37,174)\"></path><path d=\"M 50.57 227.563 C 51.705 224.359 52.34 221.033 52.631 217.65 C 49.156 223.3 45.191 226.215 38.728 227.732 C 31.278 229.481 20.916 228.656 14.408 224.495 C 12.795 223.462 10.176 221.165 9.85 219.158 C 9.844 219.102 9.847 219.044 9.844 218.985 C 8.934 221.771 10.35 225.909 11.235 228.634 L 11.33 228.902 C 12.544 232.94 14.317 238.237 17.343 241.207 C 17.481 241.653 17.573 241.81 17.939 242.098 C 18.779 243.818 22.046 245.156 23.766 245.737 C 28.837 247.449 34.793 247.249 39.602 244.804 C 40.97 244.109 42.187 243.236 43.39 242.292 C 47.457 238.293 48.944 232.874 50.57 227.563 Z\" fill=\"rgb(249,206,46)\"></path><path d=\"M 59.19 251.241 C 60.847 249.23 62.086 246.633 62.494 244.048 C 63.032 240.61 62.05 237.193 60.002 234.419 C 58.26 232.062 53.464 227.974 50.57 227.563 C 50.643 227.649 50.713 227.736 50.789 227.82 C 51.758 228.89 53.693 229.557 54.923 230.384 C 57.88 232.37 62.008 237.196 62.006 240.989 C 62.006 244.092 60.231 246.737 58.054 248.785 C 50.375 256.007 37.99 257.585 27.861 257.196 C 20.061 256.896 9.053 254.372 3.513 248.411 C 1.628 246.382 0.659 243.913 0.785 241.125 C 0.911 238.237 2.484 235.079 4.625 233.164 C 6.657 231.345 9.077 230.348 11.329 228.902 L 11.234 228.634 C 7.703 229.504 3.751 232.657 1.854 235.749 C 0.036 238.712 -0.425 242.811 0.387 246.172 C 0.747 247.669 1.38 248.963 2.488 250.033 C 0.928 253.002 0.166 256.551 1.166 259.828 C 2.383 263.817 5.818 266.634 9.367 268.498 C 17.681 272.864 28.385 273.391 37.224 270.547 C 44.84 268.097 54.204 264.066 58.016 256.538 C 58.907 254.778 59.289 253.215 59.19 251.241 Z\" fill=\"rgb(173,176,246)\"></path><path d=\"M 50.57 227.563 C 48.942 232.874 47.457 238.293 43.39 242.292 C 42.187 243.236 40.969 244.109 39.602 244.804 C 34.793 247.249 28.837 247.449 23.766 245.737 C 22.045 245.156 18.779 243.818 17.939 242.098 C 17.572 241.81 17.481 241.653 17.342 241.207 C 14.317 238.237 12.543 232.94 11.329 228.902 C 9.077 230.348 6.657 231.345 4.625 233.164 C 2.484 235.079 0.911 238.237 0.785 241.125 C 0.659 243.913 1.628 246.382 3.513 248.411 C 9.052 254.372 20.063 256.896 27.86 257.196 C 37.989 257.585 50.375 256.007 58.055 248.785 C 60.232 246.737 62.005 244.092 62.007 240.989 C 62.007 237.196 57.88 232.37 54.923 230.384 C 53.693 229.557 51.758 228.89 50.789 227.82 C 50.713 227.736 50.643 227.649 50.57 227.563 Z\" fill=\"rgb(254,254,254)\"></path><path d=\"M 17.342 241.207 C 16.768 241.579 16.607 241.71 16.484 242.407 C 16.159 244.219 17.04 246.573 18.149 247.983 C 20.621 251.124 25.553 252.765 29.372 253.184 C 33.506 253.639 38.622 252.805 41.948 250.126 C 43.273 249.057 44.232 247.595 44.442 245.868 C 44.546 244.987 44.505 243.713 43.896 243.008 C 43.761 242.858 43.619 242.715 43.469 242.579 C 43.291 243.903 43.081 245.095 42.351 246.25 C 40.594 249.031 37.244 250.808 34.107 251.464 C 29.988 252.327 24.84 251.521 21.304 249.17 C 19.377 247.887 17.978 245.949 17.61 243.617 C 17.495 242.873 17.527 242.717 17.939 242.098 C 17.572 241.81 17.48 241.653 17.342 241.207 Z\" fill=\"rgb(173,176,246)\"></path><path d=\"M 17.938 242.098 C 17.527 242.717 17.495 242.873 17.61 243.617 C 17.977 245.95 19.377 247.887 21.304 249.17 C 24.838 251.521 29.987 252.327 34.107 251.465 C 37.243 250.808 40.594 249.031 42.35 246.25 C 43.081 245.095 43.291 243.903 43.469 242.579 L 43.389 242.292 C 42.186 243.236 40.969 244.109 39.601 244.804 C 34.792 247.249 28.836 247.449 23.766 245.737 C 22.045 245.156 18.778 243.818 17.938 242.098 Z\" fill=\"rgb(35,44,213)\"></path><path d=\"M 366.55 145.404 C 366.183 145.646 365.818 145.887 365.45 146.126 C 364.779 146.58 364.089 147.065 363.383 147.561 C 360.937 149.28 358.312 151.127 355.733 152.206 C 355.142 152.602 354.591 153.057 354.09 153.562 C 353.641 156.578 353.784 162.175 353.904 166.833 C 353.951 168.663 353.994 170.347 353.996 171.673 L 354.09 212.064 C 355.5 211.202 357.078 210.34 358.698 209.454 C 362.346 207.46 366.212 205.346 368.867 202.851 C 368.872 194.049 368.932 185.245 369.044 176.442 L 369.054 175.83 L 369.029 143.811 C 368.192 144.322 367.37 144.863 366.55 145.404 Z\" fill=\"rgb(35,44,213)\"></path><path d=\"M 322.175 114.062 C 324.425 115.014 326.496 116.405 328.59 117.656 L 340.726 124.969 C 346.72 128.507 364.873 137.721 369.087 142.044 C 368.184 142.929 367.127 143.588 366.078 144.281 C 362.191 146.699 358.012 149.007 354.288 151.652 C 354.124 151.751 353.858 151.923 353.68 151.978 C 353.564 152.014 353.438 152.019 353.317 152.031 C 351.782 152.183 329.433 138.259 325.824 136.202 C 318.984 132.302 312.023 128.617 305.187 124.714 C 310.655 121.336 316.481 116.648 322.175 114.062 Z\" fill=\"rgb(173,176,246)\"></path><path d=\"M 330.953 123.009 C 331.031 123.017 331.11 123.021 331.19 123.031 C 333.743 123.362 338.514 125.958 340.095 128.134 C 341.453 130.004 341.089 131.773 340.77 133.899 C 340.24 134.581 339.823 134.593 339.017 134.857 C 337.735 134.781 336.475 134.483 335.294 133.979 C 332.402 132.751 329.31 130.736 328.173 127.647 C 327.865 126.81 327.814 125.881 328.22 125.069 C 328.836 123.835 329.674 123.379 330.953 123.009 Z\" fill=\"rgb(254,254,254)\"></path><path d=\"M 331.648 124.824 C 332.084 124.851 332.565 124.917 332.98 125.058 C 334.544 125.588 337.368 127.776 337.933 129.299 C 338.267 130.199 338.058 131.302 337.72 132.164 C 335.948 132 334.401 131.332 332.904 130.374 C 331.987 129.788 330.972 128.763 330.812 127.636 C 330.656 126.535 331.035 125.702 331.648 124.824 Z\" fill=\"rgb(210,146,0)\"></path><path d=\"M 302.754 125.378 C 306.759 126.747 312.713 130.897 316.6 133.1 L 334.495 143.336 C 340.5 146.704 346.668 149.943 352.351 153.846 C 352.309 166.21 352.371 178.574 352.533 190.936 C 352.575 195.398 352.593 199.861 352.588 204.323 C 352.593 206.538 352.8 208.896 352.523 211.091 C 352.484 211.402 352.362 211.395 352.124 211.575 C 342.581 206.533 333.448 200.566 324.149 195.085 C 317.882 191.391 311.216 188.136 305.115 184.207 C 304.306 183.686 302.369 182.441 302.022 181.54 C 301.713 180.739 301.437 132.836 301.808 128.118 C 301.895 127.021 302.166 126.308 302.754 125.378 Z\" fill=\"rgb(35,44,213)\"></path><path d=\"M 326.015 154.161 C 326.564 153.788 327.079 153.452 327.69 153.182 C 330.547 153.777 334.171 156.612 336.691 158.138 C 336.667 160.367 336.021 166.859 337.48 168.37 C 339.985 169.933 342.557 171.361 345.138 172.793 C 345.136 174.561 345.749 181.266 344.452 182.344 C 344.008 182.713 343.432 182.784 342.883 182.904 C 342.871 179.82 342.929 176.739 343.059 173.658 C 341.665 172.82 340.12 172.027 338.868 170.992 C 337.339 170.245 335.982 169.395 334.589 168.416 C 334.388 165.343 334.502 162.188 334.473 159.105 C 331.828 157.233 328.998 155.43 326.015 154.161 Z\" fill=\"rgb(29,37,174)\"></path><path d=\"M 326.016 154.161 C 328.999 155.43 331.829 157.233 334.474 159.105 C 334.503 162.188 334.389 165.343 334.59 168.416 C 335.982 169.395 337.34 170.245 338.869 170.992 C 340.12 172.027 341.665 172.82 343.06 173.658 C 342.931 176.738 342.872 179.821 342.884 182.904 C 339.902 181.694 337.328 179.603 334.393 178.241 C 334.196 180.401 334.512 182.729 334.009 184.84 C 333.825 185.61 333.644 185.842 332.963 186.204 C 330.728 185.933 326.894 182.596 324.944 181.267 C 324.75 178.305 324.759 175.33 324.72 172.364 C 322.075 170.557 319.126 169.257 316.636 167.21 C 316.591 165.275 316.444 163.257 316.599 161.328 C 316.67 160.435 316.777 159.681 317.477 159.079 C 319.323 158.757 323.399 162.15 325.121 163.254 C 325.255 160.918 324.518 155.956 326.016 154.161 Z\" fill=\"rgb(249,206,46)\"></path><path d=\"M 211.979 1.176 C 205.355 4.032 201.932 6.694 198.765 8.883 L 197.54 9.493 L 197.533 9.498 L 197.524 9.504 L 149.312 40.637 L 149.288 40.653 L 149.263 40.666 L 147.87 41.403 C 133.04 49.26 120.315 56.003 113.701 70.902 C 108.112 83.497 108.157 96.943 113.087 109.783 C 120.504 129.102 138.912 143.9 157.489 152.056 C 158.349 152.433 159.283 152.863 160.263 153.315 L 160.269 153.317 C 162.967 154.559 166.032 155.969 169.062 156.995 C 172.049 158.006 174.926 158.616 177.336 158.365 C 177.849 158.046 178.638 157.331 179.669 156.234 C 180.755 155.079 182.053 153.56 183.49 151.782 C 186.362 148.227 189.765 143.664 193.084 138.978 C 196.403 134.292 199.634 129.49 202.164 125.456 C 203.428 123.439 204.515 121.619 205.349 120.104 C 206.189 118.577 206.752 117.397 206.992 116.648 L 207.014 116.582 L 207.048 116.522 C 208.41 114.155 209.793 111.801 211.196 109.458 L 211.197 109.457 C 213.661 105.316 216.112 101.195 218.352 96.934 C 223.172 87.769 228.764 75.78 233.119 63.511 C 237.477 51.229 240.577 38.724 240.457 28.506 C 240.372 21.317 238.391 15.234 233.211 10.18 L 233.189 10.159 L 233.169 10.136 L 230.982 7.565 L 230.976 7.557 L 230.969 7.55 C 229.768 6.049 221.915 2.528 220.238 1.726 C 220.238 1.726 216.281 -0.252 213.631 0.625 C 210.981 1.503 211.979 1.176 211.979 1.176 Z\" fill=\"rgb(250,211,0)\" stroke-width=\"1.32\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\"></path><path d=\"M 142.901 79.726 L 176.005 105.71 L 196.078 54.547\" fill=\"transparent\" stroke-width=\"13.21\" stroke=\"rgb(40,49,223)\" stroke-miterlimit=\"10\"></path></g></svg>',svgContentId:10261294752,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oxkfc2\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"HIPAA Compliant Workplace in Days\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-line-height\":\"110%\"},children:\"HIPAA Compliant Workplace in Days\"})}),className:\"framer-ho9yf5\",\"data-framer-name\":\"Headline\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"We deliver a secure HIPAA-compliant workplace for healthcare businesses in as little as couple of days, without the hassle of in-house resources.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"133.02%\"},children:\"We deliver a secure HIPAA-compliant workplace for healthcare businesses in as little as couple of days, without the hassle of in-house resources.\"})}),className:\"framer-16wcuvl\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q0mpck\",\"data-framer-name\":\"Our Benefits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e48b88\",\"data-framer-name\":\"Frame 204\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Benefits of our Services\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Benefits of our Services\"})}),className:\"framer-17qx8bz\",\"data-framer-name\":\"Headline\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nqbhc1\",\"data-framer-name\":\"text container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wrptie\",\"data-framer-name\":\"list\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v81zcz\",\"data-framer-name\":\"Frame 224\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ixcb7n\",\"data-framer-name\":\"timer_14669484\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:102,intrinsicWidth:102,svg:'<svg width=\"102\" height=\"102\" viewBox=\"0 0 102 102\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M74.0993 8.89856C78.9725 6.08236 82.9318 8.34042 82.9476 13.9457L83.0758 59.2063C83.0917 64.8116 79.1582 71.6308 74.2849 74.447L34.9327 97.1881C30.0589 100.005 26.1002 97.7463 26.0843 92.141L25.9561 46.8804C25.9402 41.2751 29.8733 34.4562 34.747 31.6397L74.0993 8.89856Z\" fill=\"white\"/>\\n<path d=\"M83.0781 59.208C83.0935 64.818 79.1633 71.628 74.2883 74.448L34.9287 97.188C30.0537 100.008 26.0935 97.743 26.0781 92.148L26.0635 85.308C27.9238 85.548 29.8281 85.653 31.7485 85.653C57.3687 85.653 78.1284 65.8379 78.1284 41.403C78.1284 30.528 74.0181 20.568 67.2087 12.8729L74.0935 8.898C78.9685 6.07799 82.9287 8.34301 82.9434 13.953L83.0781 59.208Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M30.9708 99.0046C30.0274 99.0046 29.1514 98.7827 28.3736 98.3352C26.5191 97.2681 25.4922 95.0693 25.4834 92.1426L25.3545 46.8818C25.3384 41.0972 29.4166 34.0264 34.4454 31.1208L73.7984 8.37915C76.3545 6.89966 78.7935 6.677 80.6568 7.75146C82.5127 8.81934 83.5381 11.0181 83.5469 13.9441L83.6758 59.2048C83.6919 64.9895 79.6138 72.061 74.585 74.9666L35.232 97.7075C33.7408 98.5696 32.2906 99.0046 30.9708 99.0046ZM74.399 9.41772L35.0459 32.1594C30.3482 34.8738 26.5396 41.4766 26.5557 46.8789L26.6846 92.1396C26.6905 94.6196 27.5035 96.4507 28.9727 97.2952C30.4507 98.1462 32.4605 97.9229 34.6314 96.6689L73.9844 73.928C78.6822 71.2136 82.4908 64.6101 82.4747 59.2078L82.3457 13.947C82.3399 11.4678 81.5269 9.63672 80.0591 8.7915C78.5796 7.9397 76.5669 8.16602 74.399 9.41772Z\" fill=\"black\"/>\\n<path d=\"M18.9239 42.7923L19.0518 88.0498C19.0664 90.8436 20.049 92.7965 21.6295 93.723L28.6506 97.7997C27.0694 96.8875 26.0868 94.9204 26.0868 92.1408L25.9589 46.8833C25.9533 44.5666 26.6292 42.0428 27.7606 39.6778L20.7325 35.5828C19.597 37.9489 18.9176 40.4743 18.9239 42.7923Z\" fill=\"#2E46C0\"/>\\n<path d=\"M28.6509 98.3997C28.5484 98.3997 28.4458 98.3741 28.3506 98.3199C28.3506 98.3192 28.3506 98.3192 28.3492 98.3184L28.3404 98.3133L21.3282 94.2418C19.4883 93.1629 18.4673 90.9656 18.4512 88.0528L18.3223 42.7943C18.3164 40.4666 18.9624 37.8834 20.1914 35.3236C20.2632 35.1719 20.3951 35.0584 20.5562 35.0093C20.7159 34.9603 20.8902 34.98 21.0337 35.0643L28.0621 39.1592C28.3316 39.3167 28.4371 39.6551 28.3023 39.9363C27.1553 42.3328 26.5533 44.7344 26.5591 46.8819L26.6866 92.1397C26.6866 94.6029 27.4834 96.4229 28.9336 97.2703L28.9497 97.2799L28.9527 97.2813C29.2383 97.4476 29.3365 97.8138 29.1709 98.1002C29.0596 98.2928 28.8575 98.3997 28.6509 98.3997ZM19.5235 42.7913L19.6524 88.0484C19.6641 90.5189 20.4756 92.3507 21.9331 93.2054L26.0933 95.6217C25.6949 94.6343 25.4854 93.4625 25.4854 92.1412L25.358 46.8848C25.3536 44.7103 25.9146 42.3138 26.9869 39.921L21 36.4339C20.0274 38.6334 19.5176 40.8196 19.5235 42.7913Z\" fill=\"black\"/>\\n<path d=\"M73.3528 4.19187C71.7437 3.2653 69.522 3.39363 67.073 4.81906L27.725 27.5547C24.8698 29.2009 22.3401 32.2309 20.7324 35.583L27.7605 39.6781C29.364 36.3243 31.8889 33.2925 34.7454 31.6457L74.0934 8.89578C76.557 7.48461 78.7787 7.35637 80.3739 8.28285L73.3528 4.19187Z\" fill=\"#FFD63C\"/>\\n<path d=\"M27.7614 40.2779C27.6559 40.2779 27.5519 40.2508 27.4596 40.1966L20.4313 36.1016C20.1603 35.9442 20.0563 35.6058 20.1925 35.3238C21.9284 31.7057 24.5651 28.6851 27.4259 27.035L66.7731 4.29989C69.3263 2.81234 71.7726 2.58895 73.652 3.6722L73.6549 3.67367L80.6745 7.76351L80.6759 7.76424C80.963 7.93124 81.0597 8.29818 80.8927 8.58456C80.7257 8.87093 80.361 8.96835 80.0724 8.80135L80.071 8.80062C78.5944 7.94442 76.5788 8.16415 74.3932 9.41659L35.0461 32.1649C32.3903 33.6964 29.9323 36.5294 28.3034 39.9366C28.2301 40.0882 28.0983 40.2025 27.9372 40.2515C27.88 40.2691 27.82 40.2779 27.7614 40.2779ZM21.5197 35.3473L27.5094 38.8365C29.238 35.4747 31.7399 32.6856 34.4455 31.1256L73.7941 8.37655C74.9806 7.69686 76.1379 7.28378 77.2248 7.14169L73.0529 4.71224C71.5646 3.85311 69.5461 4.07284 67.3752 5.33773L28.0265 28.0743C25.4982 29.5318 23.1486 32.1641 21.5197 35.3473Z\" fill=\"black\"/>\\n<path d=\"M54.4332 30.1044C65.449 23.7281 74.399 28.8205 74.4348 41.4893C74.4707 54.1803 65.5788 69.6211 54.563 75.9974C43.5659 82.3628 34.6346 77.2385 34.5987 64.5475C34.5629 51.8787 43.4362 36.4698 54.4332 30.1044Z\" fill=\"#00E6E9\"/>\\n<path d=\"M74.433 41.4813C74.4588 54.1831 65.5749 69.6215 54.5534 75.9983C46.6735 80.5677 39.8497 79.2254 36.6309 73.4166C37.97 73.6489 39.3091 73.7779 40.6997 73.7779C55.6354 73.7779 67.7381 59.9919 67.7381 43.0044C67.7381 37.2988 66.3733 31.9549 64.0044 27.3853C70.2101 27.695 74.4072 32.8067 74.433 41.4813Z\" fill=\"#00E6E9\"/>\\n<path d=\"M45.6388 79.3403C43.6437 79.3403 41.7965 78.8738 40.1617 77.9348C36.2037 75.6599 34.0138 70.9058 33.9962 64.5491C33.9596 51.7178 42.9918 36.033 54.1305 29.5855C59.6705 26.3774 64.9088 25.8706 68.8829 28.155C72.8307 30.4241 75.0148 35.1592 75.0323 41.488C75.069 54.3435 66.0206 70.0576 54.8614 76.5168C51.6197 78.3926 48.4806 79.3403 45.6388 79.3403ZM54.7311 30.624C43.9235 36.8796 35.1608 52.0972 35.1974 64.5461C35.2135 70.4561 37.1881 74.8418 40.7594 76.894C44.338 78.9521 49.1339 78.4468 54.2609 75.4783C65.0875 69.2109 73.8678 53.9641 73.8312 41.491C73.815 35.6089 71.8448 31.2415 68.2853 29.1951C64.6964 27.134 59.8844 27.6409 54.7311 30.624Z\" fill=\"black\"/>\\n<path d=\"M55.568 41.5872C56.3179 41.1531 56.9503 41.4874 56.9528 42.3511L56.9754 50.334C56.976 50.566 57.1555 50.7317 57.3806 50.7855C58.1469 50.9685 58.6481 51.7141 58.6514 52.8893C58.6569 54.8224 57.2928 57.1637 55.6147 58.135C54.605 58.7195 53.7071 58.6742 53.1544 58.1063C52.9913 57.9387 52.756 57.8672 52.5538 57.9842L48.6285 60.2563C47.8789 60.6902 47.27 60.3423 47.2676 59.4786C47.2651 58.6148 47.87 57.5506 48.6197 57.1167L52.762 54.719C52.8508 54.6676 52.9169 54.5881 52.9534 54.492C53.2311 53.7628 53.6357 53.0504 54.1355 52.448C54.2023 52.3675 54.2394 52.2688 54.2391 52.1641L54.2158 43.9353C54.2134 43.0716 54.8303 42.0141 55.568 41.5872Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-102m9pe\",\"data-framer-name\":\"Frame 1000005913\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\"},children:\"Rapid Delivery in as little as 2 days\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\"},children:\"Rapid Delivery in as little as 2 days\"})}),className:\"framer-1pscjq6\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"No more worrying about falling behind on regulations or facing penalties. We handle everything, so you can stay focused on delivering patient care.\"})}),className:\"framer-1iz6x75\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-143h61e\",\"data-framer-name\":\"Frame 225\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nkxw2p\",\"data-framer-name\":\"wrench_14669518\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:102,intrinsicWidth:102,svg:'<svg width=\"102\" height=\"102\" viewBox=\"0 0 102 102\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M26.0787 18.2731C24.1821 17.1731 21.544 17.3208 18.6417 18.9956C12.8867 22.3123 8.21988 30.3413 8.23639 36.9417C8.23639 40.2256 9.40712 42.5243 11.2872 43.6079L6.65341 40.9316C4.77331 39.848 3.60258 37.5328 3.60258 34.249C3.58608 27.665 8.23639 19.6195 14.0079 16.3028C16.9102 14.6446 19.5483 14.4803 21.4449 15.5804L26.0787 18.2731Z\" fill=\"#FFD63C\"/>\\n<path d=\"M29.1187 24.937C29.1467 31.5391 24.4744 39.5757 18.7113 42.8907C15.8015 44.5621 13.1715 44.7015 11.2692 43.6011L6.65296 40.9268C4.77837 39.8543 3.60355 37.5283 3.60355 34.2552C3.58955 27.667 8.2335 19.6164 14.0109 16.3014C16.9067 14.6439 19.5504 14.4768 21.453 15.5771L25.9852 18.2235C27.9155 19.2821 29.1187 21.6081 29.1187 24.937Z\" fill=\"#FFD63C\"/>\\n<path d=\"M14.0371 44.9152C12.9224 44.9152 11.8868 44.6516 10.9698 44.1206L6.35404 41.4465C4.22562 40.2292 3.00394 37.6071 3.00394 34.2556C2.98929 27.4653 7.79398 19.1772 13.7134 15.781C16.7251 14.0569 19.5786 13.7976 21.7539 15.0581L26.2891 17.7058C28.4952 18.915 29.7183 21.4851 29.7198 24.9348C29.7476 31.7104 24.9444 39.9985 19.0103 43.4109C17.2701 44.4106 15.5782 44.9152 14.0371 44.9152ZM18.707 15.4719C17.3741 15.4719 15.877 15.9253 14.3111 16.8225C8.72415 20.0268 4.19046 27.8469 4.20511 34.2541C4.20511 37.1655 5.2056 39.4074 6.95169 40.4065L11.5703 43.082C13.3706 44.125 15.8023 43.8708 18.4126 42.3708C24.0127 39.1504 28.5464 31.3303 28.5186 24.9392C28.5186 24.9384 28.5186 24.9377 28.5186 24.937C28.5186 21.9443 27.5166 19.747 25.6973 18.7495L21.1504 16.0952C20.4312 15.6792 19.6065 15.4719 18.707 15.4719Z\" fill=\"black\"/>\\n<path d=\"M18.6443 18.991C24.4096 15.6767 29.1043 18.3337 29.1231 24.93C29.1419 31.5333 24.4776 39.5705 18.7123 42.8848C12.947 46.1991 8.25226 43.5421 8.23345 36.9388C8.21467 30.3425 12.8789 22.3053 18.6443 18.991Z\" fill=\"white\"/>\\n<path d=\"M14.0254 44.9165C12.9195 44.9165 11.8956 44.6564 10.9859 44.1328C8.83404 42.8913 7.64312 40.3373 7.63287 36.9404C7.61383 30.1625 12.4185 21.8774 18.3453 18.4709C21.3467 16.746 24.1973 16.489 26.3712 17.7436C28.523 18.9843 29.7139 21.5361 29.7242 24.9287C29.7432 31.7094 24.9385 39.9975 19.0118 43.4047C17.2642 44.4096 15.5679 44.9165 14.0254 44.9165ZM23.3287 18.1603C21.9971 18.1603 20.503 18.6137 18.9429 19.5109C13.3502 22.7263 8.815 30.5434 8.83404 36.9374C8.84136 39.8884 9.81988 42.0739 11.5865 43.0927C13.378 44.1269 15.8038 43.8676 18.4141 42.3647C24.0069 39.1486 28.542 31.3286 28.523 24.9316C28.5157 21.9851 27.5386 19.801 25.772 18.7829C25.0513 18.3669 24.2266 18.1603 23.3287 18.1603Z\" fill=\"black\"/>\\n<path d=\"M92.9989 75.9597C92.4047 77.6959 89.7583 78.1031 88.547 76.8355C89.5539 78.3681 89.1449 80.6383 87.8063 81.9328C86.3287 83.3348 84.068 83.6921 82.0774 83.2695C80.0868 82.8662 78.3199 81.7983 76.6417 80.6613L76.6187 80.6383C77.5561 83.5153 75.2067 86.9456 72.1861 87.1223C70.8204 87.2144 69.4779 86.7228 68.1816 86.2311C61.2492 83.6498 54.3399 81.0647 47.4305 78.4603C47.4267 78.4603 47.4189 78.4603 47.4152 78.4565C47.3611 78.5333 47.3033 78.6063 47.2454 78.6716C46.4468 79.5666 45.1005 79.6934 43.812 79.5243C43.4994 79.5013 43.2062 79.459 42.9169 79.3899C41.9756 79.1902 41.0575 78.9674 40.1393 78.7023C39.5607 78.5448 39.0013 78.3681 38.4418 78.1645C38.3724 78.1645 38.33 78.1453 38.2606 78.1223C37.6356 77.8995 37.0068 77.6537 36.405 77.4078C36.2468 77.3425 36.1118 77.2964 35.9574 77.2081C35.3055 76.9392 34.6805 76.6511 34.0556 76.34C26.9148 72.8867 20.8272 67.1595 17.1122 60.1416C16.3097 58.6012 15.569 56.9534 15.3915 55.2363C15.0984 52.4975 16.1516 49.6435 15.3453 47.0161C15.1215 46.3247 14.8091 45.7024 14.4502 45.0994C13.7559 43.9393 12.8839 42.8945 12.1664 41.7805C11.8308 41.2658 11.5183 40.7319 11.2946 40.1519C11.1596 39.8407 11.0708 39.5066 11.0052 39.1493C10.9821 38.9726 10.959 38.7921 10.959 38.5923C11.1596 32.577 15.3915 25.4899 20.561 22.4823C21.9691 21.7025 23.3347 21.2569 24.5191 21.2339H24.5885C24.7891 21.2339 24.9897 21.2569 25.1904 21.28C25.2135 21.28 25.2598 21.28 25.2829 21.303C27.0267 21.4336 28.7049 22.102 30.3405 22.7512C35.3749 24.7563 40.4325 26.7844 44.9963 29.7038C52.6077 34.5821 58.4677 41.7997 65.9673 46.8817C72.2092 51.1377 79.5043 53.8573 85.1443 58.8471C86.6219 60.1608 88.0763 61.8547 88.0069 63.8368C87.9413 65.4424 86.2168 66.9136 84.7856 66.6678C87.2238 67.8701 89.442 69.4987 91.2976 71.4578C92.4395 72.6831 93.535 74.3541 92.9989 75.9597Z\" fill=\"white\"/>\\n<path d=\"M93.0007 75.9554C92.4126 77.6964 89.755 78.1003 88.5521 76.8329C89.5589 78.365 89.1395 80.6353 87.8104 81.9306C86.3282 83.3374 84.0755 83.6856 82.0756 83.2678C80.0893 82.8638 78.3264 81.8053 76.6482 80.6632L76.6195 80.6353C77.5573 83.5186 75.207 86.9449 72.1852 87.1258C70.8287 87.2095 69.4859 86.722 68.1847 86.2346C61.2464 83.6437 54.3362 81.0672 47.4259 78.4624C47.4259 78.4624 47.4259 78.4624 47.4116 78.4624C47.3556 78.5321 47.2996 78.6018 47.2435 78.6714C46.4464 79.5628 45.1036 79.6883 43.8168 79.521C43.4951 79.507 43.2014 79.4652 42.9213 79.3957C41.9705 79.1867 41.0607 78.964 40.1379 78.6992C39.5642 78.5461 39.0048 78.365 38.4454 78.17C38.375 78.17 38.3334 78.1421 38.263 78.1281C37.6339 77.9054 37.0042 77.6546 36.4024 77.4038C36.2487 77.3482 36.1087 77.2925 35.955 77.209C35.3116 76.9442 34.6825 76.6518 34.0528 76.3453C26.9185 72.891 20.8333 67.1665 17.1128 60.1467C16.3151 58.6005 15.574 56.957 15.3923 55.2299C15.0986 52.5 16.1477 49.6446 15.3499 47.0121C15.1259 46.3296 14.8049 45.7027 14.4551 45.1039C13.7557 43.9338 12.8883 42.8891 12.1745 41.775C11.8391 41.2596 11.5174 40.7303 11.2934 40.1453C11.1677 39.8389 11.0693 39.5046 11.0133 39.1425C10.9853 38.9753 10.958 38.7943 10.958 38.5994C11.1677 32.5822 15.3923 25.4926 20.5676 22.4841C21.0014 22.2335 21.4494 22.0244 21.8688 21.8574C13.5453 38.2789 22.0642 60.1885 41.5648 71.5958C58.4071 81.4571 78.1304 80.3568 89.867 70.0775C90.3704 70.5093 90.8464 70.9691 91.2938 71.4564C92.4413 72.6822 93.5321 74.3536 93.0007 75.9554Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M71.8564 87.7336C70.4531 87.7336 69.0864 87.2158 67.9702 86.7925C61.1689 84.2598 54.3867 81.7227 47.6045 79.1672C46.7725 80.0161 45.4336 80.3457 43.7358 80.1194C43.4238 80.0967 43.0972 80.0505 42.7778 79.9729C41.7891 79.7642 40.8662 79.5364 39.9756 79.2793C39.4146 79.127 38.8638 78.9534 38.313 78.7556C38.2236 78.7432 38.1548 78.7197 38.1035 78.7029C37.4268 78.4612 36.7896 78.2129 36.1787 77.9631C35.9399 77.8672 35.8066 77.813 35.6602 77.728C35.0654 77.4885 34.4268 77.1948 33.7896 76.877C26.4287 73.3167 20.3145 67.4719 16.5835 60.4224C15.8071 58.9312 14.9883 57.1594 14.7964 55.2983C14.666 54.0862 14.7861 52.8652 14.9019 51.6838C15.0571 50.0974 15.2051 48.5989 14.773 47.1919C14.5898 46.6272 14.3232 46.0566 13.9365 45.4062C13.5586 44.7742 13.1235 44.1765 12.6929 43.5818C12.3384 43.0925 11.9854 42.6062 11.6631 42.1052C11.373 41.6614 11.0024 41.0586 10.7358 40.3679C10.604 40.0647 10.4985 39.7043 10.4165 39.2583C10.3857 39.0269 10.3594 38.821 10.3594 38.5925C10.5674 32.3691 14.9165 25.0735 20.2603 21.9636C21.7939 21.1155 23.2588 20.6584 24.5083 20.6343C24.7866 20.6431 25.0371 20.6584 25.2627 20.6841C25.2964 20.6885 25.3345 20.6965 25.377 20.7083C27.1904 20.854 28.9014 21.5337 30.5552 22.1914C35.5225 24.1689 40.6509 26.2109 45.3208 29.1985C49.3242 31.7642 52.8896 35.0073 56.3364 38.1436C59.4858 41.0088 62.7437 43.9714 66.3062 46.3855C68.7773 48.0701 71.4683 49.5415 74.0698 50.9639C78.0205 53.1238 82.106 55.3569 85.5425 58.3972C86.8989 59.6035 88.6919 61.4807 88.6069 63.8582C88.5688 64.8235 88.04 65.8071 87.1919 66.4934C86.981 66.6633 86.7598 66.8083 86.5342 66.9255C88.4604 68.0505 90.2051 69.4312 91.7344 71.0454C93.4644 72.9021 94.0811 74.6189 93.5698 76.1497C93.5684 76.1511 93.5684 76.1526 93.5684 76.1541C93.2388 77.1172 92.373 77.8394 91.2524 78.0862C90.7104 78.207 90.1597 78.2056 89.6558 78.0928C89.896 79.5818 89.3848 81.2415 88.2246 82.3643C86.7217 83.7888 84.3208 84.3579 81.9551 83.8562C80.3145 83.5244 78.8159 82.7605 77.4258 81.8904C77.4419 83.0256 77.0845 84.2034 76.3887 85.2244C75.3867 86.6943 73.8281 87.6274 72.2227 87.7219C72.1011 87.73 71.978 87.7336 71.8564 87.7336ZM47.5708 77.8767C47.5957 77.8826 47.6191 77.8899 47.6426 77.8987C54.5522 80.5032 61.4604 83.0879 68.3921 85.6689C69.5566 86.1106 70.8691 86.6064 72.1479 86.5244C73.3901 86.4512 74.603 85.7129 75.397 84.5483C76.188 83.3889 76.4312 81.9966 76.0503 80.8247C75.9639 80.5625 76.0679 80.2761 76.3022 80.1296C76.5381 79.9846 76.8384 80.0154 77.0376 80.208C78.8232 81.4143 80.4155 82.3203 82.1982 82.6814C84.1904 83.1047 86.1782 82.6521 87.394 81.4978C88.5718 80.3589 88.8662 78.4136 88.0474 77.1655C87.876 76.9062 87.9316 76.5598 88.1748 76.3665C88.415 76.1731 88.7666 76.1951 88.9819 76.4214C89.4316 76.8916 90.2241 77.0872 90.9946 76.9143C91.7021 76.759 92.2383 76.3306 92.4316 75.7681C92.8799 74.4197 91.8252 72.9028 90.8599 71.8665C89.0493 69.9556 86.915 68.3867 84.5215 67.2061C84.2534 67.0742 84.1245 66.7659 84.2153 66.4824C84.3076 66.1982 84.5933 66.0239 84.8877 66.0767C85.3652 66.1528 85.938 65.9639 86.4375 65.5603C87.0205 65.0886 87.3838 64.4353 87.4087 63.8127C87.4585 62.3911 86.6133 60.9541 84.7471 59.2952C81.4116 56.345 77.3877 54.1448 73.4941 52.0171C70.8662 50.5801 68.1489 49.0947 65.6309 47.3779C61.9995 44.9163 58.7095 41.9243 55.5293 39.0312C52.1177 35.928 48.5918 32.72 44.6733 30.2092C40.1001 27.2832 35.0259 25.2632 30.1187 23.3091C28.5278 22.6763 26.8887 22.0251 25.2393 21.9014C25.1865 21.897 25.1353 21.8867 25.0869 21.8691C24.8921 21.8494 24.7412 21.834 24.5903 21.834C23.4756 21.8545 22.2041 22.2603 20.8521 23.0073C15.8408 25.9238 11.7539 32.7808 11.5591 38.6123C11.5605 38.7639 11.5811 38.9185 11.6016 39.0701C11.6616 39.3953 11.7407 39.6721 11.8462 39.9131C12.0322 40.3921 12.2827 40.8601 12.6709 41.4519C12.9829 41.9382 13.3228 42.407 13.6641 42.8779C14.1079 43.4888 14.5649 44.1201 14.9663 44.791C15.4014 45.5227 15.7031 46.1702 15.9185 46.8308C16.4224 48.4773 16.2568 50.167 16.0957 51.801C15.9814 52.9736 15.873 54.0811 15.9888 55.1731C16.1602 56.8357 16.9233 58.4778 17.6455 59.8643C21.2563 66.6868 27.1787 72.3469 34.3184 75.8003C34.9365 76.1079 35.5488 76.3899 36.1875 76.6536C36.3516 76.7422 36.4365 76.7737 36.5273 76.8103C37.2261 77.0952 37.8486 77.3376 38.4639 77.5581C38.5342 77.5581 38.5825 77.5771 38.6484 77.6006C39.1919 77.7983 39.7368 77.9712 40.2993 78.1243C41.1709 78.3748 42.0659 78.5959 43.043 78.8032C43.3169 78.8684 43.5791 78.9058 43.8589 78.9263C44.8374 79.053 46.1133 79.042 46.7988 78.2729C46.8384 78.2275 46.8838 78.1711 46.9263 78.1111C47.0347 77.9573 47.2104 77.8628 47.3994 77.8569C47.458 77.8577 47.5166 77.8621 47.5708 77.8767Z\" fill=\"black\"/>\\n<path d=\"M88.5469 77.4343C88.3653 77.4343 88.1866 77.3523 88.0679 77.197C88.0196 77.1347 83.0303 70.8256 60.501 62.5676C60.1905 62.4533 60.0308 62.1091 60.1436 61.7978C60.2579 61.4858 60.5992 61.3261 60.9141 61.4411C83.8946 69.864 88.8282 76.2104 89.0274 76.477C89.2251 76.7414 89.1709 77.115 88.9073 77.3142C88.7989 77.3955 88.6729 77.4343 88.5469 77.4343Z\" fill=\"black\"/>\\n<path d=\"M76.6309 81.2524C76.4317 81.2524 76.2369 81.1527 76.1226 80.9726C76.0801 80.9045 71.5699 74.0585 52.4668 67.0558C52.1563 66.9416 51.9966 66.5973 52.1094 66.286C52.2237 65.974 52.565 65.8151 52.8799 65.9294C72.4576 73.1056 76.9576 80.0439 77.1407 80.3361C77.315 80.6159 77.23 80.9843 76.9502 81.1601C76.8506 81.2223 76.7408 81.2524 76.6309 81.2524Z\" fill=\"black\"/>\\n<path d=\"M84.8207 67.2851C84.6889 67.2851 84.5556 67.2419 84.4443 67.1525C84.3505 67.0763 74.8935 59.5251 64.9575 57.0597C64.6367 56.9799 64.4404 56.6547 64.5195 56.3332C64.6 56.0124 64.9208 55.8139 65.2475 55.8952C75.4443 58.4257 85.1005 66.1403 85.1972 66.2179C85.455 66.4259 85.496 66.8039 85.288 67.0617C85.1694 67.2089 84.9951 67.2851 84.8207 67.2851Z\" fill=\"black\"/>\\n<path d=\"M47.244 79.2715C47.1049 79.2715 46.9643 79.2231 46.8515 79.125C46.601 78.9082 46.5731 78.5288 46.7899 78.2783C46.8178 78.2476 46.8456 78.2139 46.872 78.1794C47.1386 76.7358 46.9833 74.8909 46.4574 73.3184C45.914 71.8096 44.9721 70.3557 43.6654 69.0103C42.3998 67.6772 40.9144 66.6768 39.4965 65.7935C39.202 65.6492 38.8666 65.4697 38.5311 65.291C38.0697 65.0442 37.6098 64.7981 37.1337 64.5769L36.9462 64.4949C34.8236 63.575 33.1962 62.0171 32.3656 60.1084C31.9481 59.1863 31.393 57.4607 32.2382 55.9592C32.3993 55.6699 32.7641 55.5681 33.0556 55.7307C33.3441 55.8933 33.4467 56.2595 33.2841 56.5481C32.6981 57.5881 33.1347 58.8977 33.4467 59.5862C34.1747 61.2583 35.581 62.595 37.4237 63.394L37.6259 63.4827C38.1356 63.7192 38.6161 63.9749 39.0966 64.2327C39.4232 64.4062 39.7484 64.5813 40.0824 64.7476C41.5458 65.6558 43.1732 66.7493 44.5311 68.179C45.9535 69.6423 46.9848 71.2412 47.5912 72.925C48.2138 74.7861 48.3705 76.8962 48.016 78.583C47.9882 78.7148 47.9179 78.8291 47.8226 78.9126C47.7816 78.9661 47.7392 79.0166 47.6981 79.0649C47.5795 79.2012 47.411 79.2715 47.244 79.2715Z\" fill=\"black\"/>\\n<path d=\"M43.793 79.5344C43.4953 79.5117 43.1976 79.4661 42.8999 79.3976C39.8314 78.7593 36.8546 77.7332 34.0381 76.3424C34.1526 75.9775 34.3358 75.6584 34.4961 75.3164C34.6792 74.9288 34.9083 74.5411 35.2287 74.2447C35.4807 73.9939 35.7784 73.8343 36.0761 73.6975C37.5645 73.0592 39.3048 73.3328 40.839 73.8571C41.4344 74.0624 42.0068 74.2903 42.5335 74.6552C43.0373 75.02 43.4724 75.5216 43.6556 76.1143C43.7701 76.4564 43.7701 76.844 43.793 77.2089C43.8387 77.984 43.8846 78.7593 43.793 79.5344Z\" fill=\"white\"/>\\n<path d=\"M43.7919 80.1345C43.7773 80.1345 43.7612 80.1338 43.7465 80.1331C43.4184 80.1082 43.0917 80.0584 42.7651 79.9822C39.6625 79.3377 36.6318 78.2932 33.7724 76.8811C33.5072 76.75 33.3769 76.4453 33.4648 76.1634C33.5585 75.8653 33.6904 75.5935 33.8266 75.3196L33.9526 75.0611C34.2133 74.5095 34.4902 74.1104 34.8212 73.8042C35.1318 73.4937 35.5038 73.2996 35.8246 73.1524C37.2426 72.5452 38.9916 72.5913 41.0322 73.2893C41.6371 73.4981 42.2773 73.7486 42.8749 74.1616C43.3539 74.5081 43.9677 75.0904 44.2284 75.937C44.3456 76.2879 44.3647 76.6643 44.3808 76.9969L44.391 77.1734C44.4379 77.9578 44.4877 78.7686 44.3881 79.6057C44.3515 79.9097 44.0937 80.1345 43.7919 80.1345ZM34.8051 76.0484C37.4257 77.2928 40.1869 78.2207 43.0214 78.8103C43.0961 78.8272 43.1679 78.8426 43.2411 78.8565C43.2572 78.3196 43.225 77.7762 43.1928 77.2451L43.1825 77.0562C43.1694 76.7764 43.1562 76.512 43.0873 76.3047C42.954 75.8777 42.6347 75.469 42.1821 75.1416C41.7397 74.8355 41.246 74.6326 40.6425 74.4239C38.8935 73.8269 37.4345 73.7676 36.3124 74.2495C36.0898 74.3513 35.8451 74.4781 35.6518 74.6699C35.4203 74.8845 35.2314 75.1658 35.038 75.573L34.9018 75.8535C34.8696 75.9187 34.8373 75.9832 34.8051 76.0484Z\" fill=\"black\"/>\\n<path d=\"M81.8264 21.5325L81.8122 28.1135C81.8122 28.3258 81.6707 28.5523 81.3591 28.7361L70.5505 35.0058C70.2673 35.1756 70.1113 35.4021 70.1113 35.6286L70.1255 29.0474C70.1255 28.8211 70.2815 28.5946 70.5789 28.4248L81.373 22.1553C81.6849 21.9711 81.8264 21.759 81.8264 21.5325Z\" fill=\"#FFD63C\"/>\\n<path d=\"M70.1113 36.229C69.7803 36.229 69.5107 35.9602 69.5107 35.6292C69.5107 35.6284 69.5107 35.6299 69.5107 35.6292L69.5239 29.0461C69.5239 28.5957 69.8008 28.179 70.2812 27.9043L81.0713 21.637C81.165 21.5813 81.2104 21.5352 81.2266 21.5146C81.2354 21.1917 81.5005 20.9331 81.8257 20.9331C82.1567 20.9331 82.4263 21.2019 82.4263 21.533L82.4131 28.1152C82.4131 28.5576 82.1392 28.9729 81.6631 29.2534L70.8525 35.5251C70.7559 35.5823 70.7207 35.6313 70.7104 35.6482C70.7017 35.9705 70.4365 36.229 70.1113 36.229ZM81.2236 22.9363L70.8804 28.9436C70.7485 29.019 70.7207 29.0769 70.7192 29.0769L70.7134 34.2178L81.0566 28.217C81.1665 28.1526 81.2104 28.0969 81.2178 28.0808L81.2236 22.9363Z\" fill=\"black\"/>\\n<path d=\"M59.5137 35.6386L59.4951 42.2145C59.4953 42.1242 59.4727 42.0334 59.4267 41.9455C58.8549 40.8531 58.571 39.7221 58.5742 38.592L58.5929 32.0161C58.5897 33.1462 58.8736 34.2772 59.4454 35.3696C59.4914 35.4575 59.514 35.5483 59.5137 35.6386Z\" fill=\"white\"/>\\n<path d=\"M59.4956 42.8145C59.1646 42.8145 58.895 42.5457 58.895 42.2146C58.2813 41.0486 57.9707 39.8262 57.9737 38.5906L57.9927 32.0149C57.9942 31.6838 58.2622 31.4165 58.5933 31.4165C58.9243 31.4172 59.1939 31.6868 59.1939 32.0178C59.1909 33.0571 59.4546 34.0913 59.9776 35.0911C60.0684 35.2683 60.1153 35.4514 60.1153 35.6389L60.0962 42.2161C60.0947 42.5471 59.8267 42.8145 59.4956 42.8145Z\" fill=\"black\"/>\\n<path d=\"M98.3981 32.1333L98.3697 38.7143C98.3697 41.644 96.4434 44.5735 92.5762 46.8096C87.2641 49.8949 79.6431 50.8715 72.8715 49.6968C72.3192 49.5976 71.7243 49.6826 71.3135 49.9231L71.3277 43.3422C71.7385 43.1016 72.3334 43.0168 72.886 43.1158C79.6569 44.2904 87.2782 43.3281 92.6045 40.2429C96.4576 37.9925 98.3843 35.077 98.3981 32.1333Z\" fill=\"#00E6E9\"/>\\n<path d=\"M78.5571 50.7803C76.625 50.7803 74.6768 50.6192 72.7681 50.2881C72.355 50.2164 71.9023 50.2742 71.6167 50.4405C71.4321 50.5511 71.2021 50.5518 71.0146 50.4441C70.8286 50.3365 70.7129 50.1373 70.7129 49.9219L70.7261 43.3411C70.7275 43.1287 70.8403 42.9324 71.0234 42.8248C71.5596 42.5127 72.2979 42.4007 72.9907 42.5252C79.8608 43.7169 87.2627 42.6439 92.3032 39.7237C95.8276 37.6648 97.7803 34.9717 97.7979 32.1402V32.1307C97.8008 31.7981 98.0176 31.5293 98.4014 31.5337C98.7324 31.5352 99.0005 31.8047 98.999 32.1365L98.9697 38.7173C98.9697 41.9979 96.8047 45.0572 92.876 47.3292C89.0146 49.5718 83.8481 50.7803 78.5571 50.7803ZM72.4077 49.0562C72.5967 49.0562 72.7886 49.0723 72.9775 49.1067C79.8374 50.2984 87.2334 49.2188 92.2739 46.2913C95.8174 44.242 97.7686 41.5511 97.7686 38.7144L97.7803 36.263C96.7578 37.9417 95.1084 39.4747 92.9067 40.7608C87.6289 43.8172 79.918 44.9466 72.7827 43.7066C72.4883 43.6553 72.1821 43.6685 71.9258 43.7396L71.9155 49.0943C72.0752 49.0687 72.2407 49.0562 72.4077 49.0562Z\" fill=\"black\"/>\\n<path d=\"M71.3326 43.3472L71.3184 49.914L51.8406 61.2219C48.4832 63.175 43.0296 63.175 39.6438 61.2219C37.9298 60.2455 37.0801 58.9434 37.0939 57.6555L37.1084 51.0746C37.1084 52.3624 37.9582 53.6645 39.658 54.6411C43.0438 56.594 48.4974 56.594 51.869 54.6411L71.3326 43.3472Z\" fill=\"#F4C531\"/>\\n<path d=\"M45.7527 63.2744C43.4353 63.2744 41.115 62.7631 39.344 61.7421C37.5158 60.7006 36.4758 59.2079 36.4934 57.6486L36.508 51.0729C36.5095 50.7419 36.7776 50.4745 37.1086 50.4745C37.4397 50.4745 37.7092 50.7433 37.7092 51.0744C37.7092 52.1891 38.5281 53.2995 39.9563 54.1213C43.1672 55.9714 48.3747 55.9721 51.5681 54.122L71.03 42.8281C71.2175 42.7211 71.4446 42.7197 71.6321 42.8281C71.8181 42.935 71.9323 43.1335 71.9323 43.3488L71.9192 49.915C71.9177 50.1281 71.8049 50.3251 71.6203 50.4321L52.1423 61.7407C50.3845 62.7631 48.07 63.2744 45.7527 63.2744ZM37.7019 53.8664L37.6946 57.6567C37.6814 58.7722 38.5002 59.8803 39.9416 60.7006C43.154 62.5544 48.3557 62.5544 51.5388 60.7036L70.7195 49.5678L70.7297 44.3903L52.1701 55.1606C48.5857 57.2348 42.9592 57.237 39.3572 55.1613C38.6994 54.7827 38.1443 54.3454 37.7019 53.8664Z\" fill=\"black\"/>\\n<path d=\"M97.8498 30.3978C98.0854 30.5337 98.2499 30.7165 98.2908 30.9352C98.8776 34.2585 96.9856 37.6912 92.6007 40.237C87.2813 43.3255 79.6601 44.2959 72.8833 43.1221C72.333 43.023 71.7383 43.1064 71.334 43.3412L51.8623 54.6465C48.5017 56.5976 43.0387 56.5976 39.6562 54.6465C36.2737 52.6954 36.2558 49.5131 39.6074 47.5672L59.07 36.2672C59.4744 36.0324 59.6076 35.6828 59.4437 35.3699C57.3931 31.4519 59.0451 27.0383 64.3645 23.9499C68.7494 21.404 74.6749 20.2979 80.4284 20.6318C80.8063 20.6547 81.1229 20.7494 81.3582 20.8851C81.9259 21.2126 82.0224 21.779 81.3745 22.1552L70.5739 28.426C70.2595 28.6086 70.0986 28.859 70.127 29.1146L70.9031 35.6566C70.9359 35.8784 71.1061 36.078 71.3627 36.226C71.6194 36.374 71.9624 36.4705 72.3413 36.4862L83.6664 36.9244C84.1082 36.94 84.5404 36.8461 84.8548 36.6635L95.6554 30.3927C96.3033 30.0165 97.2824 30.0705 97.8498 30.3978Z\" fill=\"#2E46C0\"/>\\n<path d=\"M45.7666 56.6976C43.4492 56.6976 41.1274 56.1871 39.3564 55.1661C37.521 54.107 36.5088 52.6598 36.5059 51.0909C36.5044 49.5338 37.4976 48.0983 39.3052 47.0487L58.7686 35.7482C58.8711 35.6888 58.9092 35.6354 58.915 35.6215C56.6284 31.2833 58.6016 26.6024 64.0625 23.431C68.3926 20.9173 74.3647 19.6796 80.4629 20.0326C80.9155 20.0597 81.3286 20.1747 81.6582 20.3658C82.1431 20.6449 82.4229 21.0704 82.4229 21.5319C82.4243 21.7963 82.3276 22.2958 81.6758 22.6744L70.8755 28.9447C70.7466 29.0194 70.7217 29.0765 70.7217 29.0773L71.4995 35.5856C71.5068 35.5856 71.5522 35.642 71.6621 35.7049C71.8423 35.8097 72.0986 35.8756 72.3667 35.8859L83.6899 36.3246C84.0034 36.3444 84.3389 36.2704 84.5527 36.1451L95.353 29.8741C96.147 29.4142 97.3496 29.4156 98.1494 29.8785C98.5566 30.1122 98.8086 30.4396 98.8818 30.8248C99.5381 34.5506 97.3584 38.1681 92.9023 40.7557C87.6304 43.8158 79.9224 44.9488 72.7812 43.7132C72.3638 43.6385 71.917 43.6964 71.6357 43.8597L52.1636 55.1647C50.4028 56.1871 48.0869 56.6976 45.7666 56.6976ZM78.4077 21.173C73.2515 21.173 68.3296 22.3419 64.666 24.4681C59.8159 27.2843 58.02 31.3544 59.9756 35.0912C60.2935 35.6984 60.0444 36.3956 59.3706 36.786L39.9087 48.0858C38.4863 48.912 37.7041 49.9784 37.7056 51.0887C37.707 52.2115 38.5068 53.2904 39.957 54.1261C43.1636 55.9784 48.3711 55.9784 51.5601 54.1276L71.0322 42.8226C71.5625 42.5143 72.2935 42.4073 72.9907 42.5319C79.8579 43.7213 87.2612 42.6432 92.2988 39.7186C96.2949 37.3976 98.2637 34.235 97.7012 31.0394C97.6968 31.0343 97.6587 30.9808 97.5503 30.9178C97.5503 30.9178 97.5488 30.9178 97.5488 30.9171C97.168 30.6974 96.418 30.6402 95.9565 30.912L85.1562 37.1822C84.7432 37.4232 84.2144 37.5499 83.646 37.5243L72.3184 37.0856C71.8496 37.0665 71.416 36.9486 71.063 36.7457C70.6353 36.5004 70.3672 36.1437 70.3101 35.743L69.5308 29.1857C69.4766 28.6832 69.7534 28.2071 70.2734 27.9069L81.0723 21.6366C81.1704 21.5802 81.2129 21.5326 81.2246 21.5128C81.2041 21.5267 81.1646 21.4667 81.0591 21.4051C80.8906 21.3085 80.6548 21.2462 80.3911 21.2308C79.729 21.192 79.0654 21.173 78.4077 21.173Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11bwdlq\",\"data-framer-name\":\"Frame 1000005912\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"Done-For-You Service\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"Done-For-You Service\"})}),className:\"framer-1wmupc6\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"Means you don\u2019t need to hire in-house experts or waste time trying to navigate complex regulations. We do all the heavy lifting for you.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"Means you don\u2019t need to hire in-house experts or waste time trying to navigate complex regulations. We do all the heavy lifting for you.\"})}),className:\"framer-1q19nzg\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d3njwa\",\"data-framer-name\":\"Frame 226\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-u0q62r\",\"data-framer-name\":\"laptop-security_14669470\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:102,intrinsicWidth:102,svg:'<svg width=\"102\" height=\"102\" viewBox=\"0 0 102 102\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M60.6007 6.86978C62.8909 5.54757 64.7494 6.60685 64.7568 9.23829L64.8403 38.6672C64.8478 41.3085 63.0013 44.5069 60.7112 45.8291L15.6544 72.0185C13.3643 73.3407 11.4816 72.1195 11.4741 69.4782L11.3906 40.0493C11.3832 37.4178 13.2385 34.2144 15.5286 32.8922L60.6007 6.86978Z\" fill=\"white\"/>\\n<path d=\"M64.8429 38.6631C64.8429 41.3055 62.9963 44.5035 60.7141 45.8247L15.6571 72.024C13.3603 73.3451 11.4836 72.114 11.4685 69.4716L11.4385 56.3194C15.222 57.4605 19.2757 58.076 23.4947 58.076C44.3037 58.076 61.1793 43.1673 61.1793 24.7753C61.1793 19.1001 59.5727 13.7701 56.7352 9.10076L60.5939 6.86371C62.8911 5.54248 64.7528 6.6085 64.7528 9.23593L64.8429 38.6631Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M96.2936 63.0327L96.2805 69.6019C96.2667 70.4615 95.7026 71.3213 94.5744 71.9796L49.7995 98.0008C47.5158 99.3308 43.8215 99.3308 41.5241 98.0008L15.9061 83.2236C14.7641 82.552 14.1865 81.6788 14.1865 80.819L14.2 74.2364C14.2 75.1097 14.7775 75.9829 15.933 76.6546L41.5378 91.4317C43.835 92.7617 47.5424 92.7617 49.8129 91.4317L94.5875 65.4105C95.7295 64.7522 96.2936 63.8925 96.2936 63.0327Z\" fill=\"#00E6E9\"/>\\n<path d=\"M45.6037 92.425C44.1331 92.4131 42.6654 92.0849 41.5378 91.4321L15.933 76.655C14.7775 75.9833 14.2 75.11 14.2 74.2368L14.1865 80.8194C14.1865 81.6792 14.7641 82.5523 15.9061 83.224L41.5241 98.0012C42.6566 98.6568 44.1288 98.9859 45.6037 98.9952L45.6037 92.425Z\" fill=\"#2E46C0\"/>\\n<path d=\"M94.5649 60.6189C96.8637 61.946 96.8671 64.0901 94.5919 65.4123L49.8127 91.4352C47.5375 92.7574 43.8359 92.7624 41.5371 91.4353L15.9262 76.6487C13.6363 75.3267 13.6326 73.1824 15.9078 71.8602L60.6871 45.8374C62.9623 44.5152 66.6641 44.5103 68.954 45.8324L94.5649 60.6189Z\" fill=\"white\"/>\\n<path d=\"M94.6004 65.4177L49.8139 91.4368C47.5322 92.758 43.8384 92.758 41.5416 91.4368L15.9279 76.6481C13.6307 75.3268 13.6307 73.1799 15.9129 71.8586L17.6393 70.8527C25.0865 80.5817 40.1004 85.5813 55.9097 82.4735C72.1097 79.2905 84.3459 68.5406 87.1837 56.3494L94.5704 60.6133C96.8676 61.9495 96.8676 64.0965 94.6004 65.4177Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M5.70905 36.7445L5.78973 66.1778C5.78973 67.481 6.25972 68.4079 6.99864 68.8378L12.7463 72.2581C12.0107 71.8469 11.4722 70.7856 11.4722 69.4826L11.3915 40.0492C11.3856 38.8881 11.7572 37.6232 12.3554 36.4512L6.67953 33.1423C6.07835 34.3155 5.70315 35.582 5.70905 36.7445Z\" fill=\"#F4C531\"/>\\n<path d=\"M57.8736 3.28144C57.1213 2.83818 56.0734 2.90534 54.9183 3.56358L9.8479 29.5848C8.57241 30.3276 7.44123 31.6587 6.68066 33.1429L12.3566 36.4517C13.1152 34.9659 14.2463 33.633 15.5304 32.8895L60.6007 6.86832C61.7559 6.21008 62.7903 6.14284 63.5427 6.58618L57.8736 3.28144Z\" fill=\"#FFD63C\"/>\\n<path d=\"M13.8755 73.159C13.3716 73.159 12.8955 73.036 12.4678 72.7899C11.4585 72.2098 10.877 71.0028 10.8726 69.4794L10.7891 40.0507C10.7818 37.1869 12.7315 33.8148 15.2276 32.3719L60.2993 6.35046C61.6031 5.59899 62.8614 5.49206 63.8399 6.05602C64.8125 6.6156 65.3516 7.74499 65.356 9.23767L65.4395 38.6664C65.4483 41.5345 63.503 44.9095 61.0113 46.3495L15.9556 72.538C15.2407 72.951 14.5332 73.159 13.8755 73.159ZM60.8999 7.3905L15.8281 33.412C13.7041 34.6381 11.9829 37.6146 11.9903 40.0477L12.0738 69.4764C12.0767 70.559 12.4385 71.3881 13.0669 71.7499C13.6616 72.0941 14.4761 72.0062 15.3535 71.4994L60.4092 45.3109C62.5303 44.0863 64.2471 41.1068 64.2383 38.6693L64.1548 9.2406C64.1519 8.1947 63.8281 7.43298 63.2422 7.09606C62.6519 6.75622 61.8198 6.86022 60.8999 7.3905Z\" fill=\"black\"/>\\n<path d=\"M45.6631 99.6035C44.0664 99.6035 42.4683 99.2432 41.2202 98.5195L15.6016 83.7437C14.3184 82.9878 13.583 81.9243 13.583 80.8198L13.5962 74.2354C13.5977 73.9043 13.8657 73.6362 14.1968 73.6362C14.5278 73.6377 14.7974 73.9058 14.7974 74.2368C14.7974 74.9238 15.3057 75.5991 16.2314 76.1367L41.834 90.9111C43.9624 92.1431 47.4048 92.146 49.5068 90.9141L94.2827 64.8926C95.188 64.3696 95.686 63.7119 95.689 63.0381V63.0308C95.6904 62.6997 95.9585 62.4316 96.2896 62.4316C96.6206 62.4331 96.8901 62.7012 96.8901 63.0322V63.041L96.877 69.6035C96.8594 70.73 96.1475 71.7554 94.873 72.498L50.0972 98.5195C48.8564 99.2432 47.2598 99.6035 45.6631 99.6035ZM14.7915 76.582L14.7842 80.8213C14.7842 81.4878 15.3027 82.1748 16.2065 82.7065L41.8208 97.481C43.9419 98.7114 47.3843 98.71 49.4937 97.4824L94.2695 71.4609C95.166 70.938 95.6655 70.2744 95.6758 69.5933L95.6846 65.3716C95.4502 65.5708 95.1821 65.7583 94.8848 65.9312L50.1118 91.9497C47.6377 93.3999 43.7368 93.3984 41.2334 91.9512L15.6294 77.1753C15.3159 76.9922 15.0361 76.7944 14.7915 76.582Z\" fill=\"black\"/>\\n<path d=\"M45.6001 99.5962C45.5986 99.5962 45.5972 99.5962 45.5957 99.5962C43.9507 99.5845 42.3965 99.2022 41.2202 98.5195L15.6016 83.7437C14.3184 82.9878 13.583 81.9243 13.583 80.8198L13.5962 74.2354C13.5977 73.9043 13.8657 73.6362 14.1968 73.6362C14.5278 73.6377 14.7974 73.9058 14.7974 74.2368C14.7974 74.9238 15.3057 75.5991 16.2314 76.1367L41.834 90.9111C42.8301 91.4883 44.1689 91.8135 45.6045 91.8237C45.9341 91.8267 46.2007 92.0947 46.2007 92.4243V98.9956C46.2007 99.1553 46.1362 99.3091 46.0234 99.4219C45.9106 99.5332 45.7583 99.5962 45.6001 99.5962ZM14.7915 76.582L14.7842 80.8213C14.7842 81.4878 15.3027 82.1748 16.2065 82.7065L41.8208 97.481C42.6792 97.979 43.791 98.2881 44.9995 98.3731V93.0029C43.583 92.9136 42.2632 92.5474 41.2334 91.9497L15.6294 77.1753C15.3159 76.9922 15.0361 76.7944 14.7915 76.582Z\" fill=\"black\"/>\\n<path d=\"M45.6812 93.037C44.0845 93.037 42.4863 92.6766 41.2368 91.9559L15.627 77.1698C14.3247 76.4169 13.6069 75.3812 13.6055 74.2518C13.604 73.1268 14.3145 72.0927 15.6064 71.3427L60.3853 45.3197C62.8682 43.8768 66.7632 43.8754 69.2549 45.3124L94.8662 60.1C96.1714 60.8544 96.8921 61.8929 96.8936 63.0223C96.8965 64.1473 96.1861 65.1801 94.8941 65.9315L50.1152 91.9545C48.8745 92.6752 47.2793 93.037 45.6812 93.037ZM64.8237 45.4369C63.4336 45.4369 62.0449 45.743 60.9888 46.3568L16.21 72.3798C15.3032 72.9071 14.8052 73.5707 14.8052 74.2504C14.8066 74.9344 15.312 75.601 16.2275 76.1298L41.8374 90.9159C43.96 92.142 47.4038 92.1434 49.5117 90.9174L94.2905 64.8944C95.1973 64.3671 95.6953 63.7035 95.6939 63.0238C95.6924 62.3397 95.1856 61.6703 94.2656 61.14L68.6543 46.3524C67.5967 45.7416 66.2095 45.4369 64.8237 45.4369Z\" fill=\"black\"/>\\n<path d=\"M12.7472 72.8587C12.6476 72.8587 12.5465 72.8338 12.4542 72.7811C12.4219 72.7635 12.3912 72.7459 12.3604 72.7254L6.69443 69.3534C5.74082 68.7997 5.19004 67.641 5.19004 66.1776L5.10944 36.7459C5.10361 35.5433 5.4625 34.203 6.14805 32.8685C6.22275 32.722 6.35459 32.6122 6.51279 32.5667C6.671 32.5199 6.83945 32.5389 6.98301 32.6239L12.6593 35.933C12.9347 36.0941 13.0372 36.4413 12.8922 36.724C12.3077 37.868 11.9884 39.0472 11.9942 40.0462L12.0748 69.4808C12.0748 70.6219 12.5245 71.4071 12.9874 71.703L13.0533 71.7425C13.336 71.911 13.4312 72.2743 13.2672 72.5584C13.1559 72.7503 12.9537 72.8587 12.7472 72.8587ZM6.94346 33.9906C6.52891 34.9515 6.30625 35.9095 6.31064 36.7416L6.39121 66.1761C6.39121 67.203 6.72227 67.9823 7.30234 68.3192L10.9791 70.5077C10.9103 70.181 10.8736 69.8368 10.8736 69.4823L10.7931 40.0506C10.7887 39.0018 11.0582 37.8504 11.5768 36.6917L6.94346 33.9906Z\" fill=\"black\"/>\\n<path d=\"M12.3577 37.0521C12.2523 37.0521 12.1482 37.0242 12.056 36.97L6.37969 33.661C6.1043 33.4998 6.00176 33.1527 6.14678 32.8685C6.99346 31.2161 8.23272 29.8304 9.54669 29.0657L54.6185 3.04279C55.9441 2.28986 57.2068 2.19172 58.1795 2.76447L63.8294 6.05891C63.8353 6.06184 63.8397 6.06476 63.8455 6.06769C63.847 6.06769 63.847 6.06916 63.8484 6.06916C64.1341 6.23762 64.2293 6.60383 64.0608 6.88947C63.8924 7.17365 63.5276 7.27033 63.242 7.1048L63.2273 7.09601C62.6458 6.76057 61.8167 6.8675 60.8982 7.38898L15.8309 33.409C14.7044 34.0609 13.6336 35.2694 12.8924 36.7239C12.8177 36.8704 12.6858 36.9803 12.5262 37.0272C12.472 37.0433 12.4148 37.0521 12.3577 37.0521ZM7.48858 32.9183L12.1277 35.6224C12.951 34.2147 14.0599 33.0487 15.2303 32.3704L60.3006 6.34748C60.6111 6.1717 60.9188 6.03107 61.2205 5.92561L57.5731 3.80012C57.5716 3.80012 57.5716 3.79865 57.5701 3.79865C56.9857 3.45295 56.1492 3.55256 55.2161 4.0843L10.1487 30.1043C9.15997 30.6785 8.20928 31.6893 7.48858 32.9183Z\" fill=\"black\"/>\\n<path d=\"M43.2709 69.6328C43.0644 69.6328 42.8637 69.5259 42.7524 69.334C42.5854 69.0469 42.6835 68.6807 42.9692 68.5137L55.5961 61.1763C55.8818 61.0093 56.2495 61.106 56.4165 61.3931C56.5834 61.6802 56.4853 62.0464 56.1997 62.2134L43.5727 69.5508C43.4775 69.6065 43.3735 69.6328 43.2709 69.6328Z\" fill=\"black\"/>\\n<path d=\"M53.267 81.7396C52.9271 81.7396 52.7082 81.6638 52.6582 81.638L42.6818 75.8784C42.1941 75.5968 42.1931 74.8932 42.68 74.6103L62.8752 62.8735C62.9205 62.8508 63.137 62.7773 63.4715 62.7773C63.8091 62.7773 64.0264 62.8516 64.0764 62.8774L74.0552 68.6393C74.5429 68.9209 74.5439 69.6245 74.057 69.9074L53.8618 81.6435C53.8165 81.6669 53.6008 81.7396 53.267 81.7396Z\" fill=\"#2E46C0\"/>\\n<path d=\"M74.0607 69.9069L53.8671 81.6478C53.822 81.6628 53.5966 81.7378 53.2663 81.7378C52.921 81.7378 52.711 81.6628 52.6509 81.6327L42.6815 75.8824C42.5165 75.7923 42.3963 75.6422 42.3516 75.4771C45.0087 76.468 48.0415 77.0235 51.2847 77.0235C60.6233 77.0235 68.3704 72.3241 69.7816 66.1685L74.0607 68.6458C74.5412 68.916 74.5412 69.6216 74.0607 69.9069Z\" fill=\"#2E46C0\"/>\\n<path d=\"M53.2651 82.3409C52.8506 82.3409 52.5342 82.2515 52.376 82.168L42.3799 76.398C41.9639 76.1578 41.7149 75.7271 41.7149 75.2466C41.7134 74.7662 41.9609 74.334 42.377 74.0923L62.5728 62.3545C62.9566 62.1626 64.0449 62.1846 64.3496 62.3443L74.3545 68.1187C74.772 68.3604 75.0195 68.7925 75.0195 69.273C75.021 69.7535 74.772 70.1841 74.3574 70.4258L54.1616 82.1621C53.9976 82.25 53.6812 82.3409 53.2651 82.3409ZM52.9487 81.1104C52.9883 81.1104 53.6152 81.0957 53.6182 81.0957L73.7539 69.3887L74.0542 68.6387L73.7539 69.1587L63.7871 63.4034C63.7944 63.4151 63.6743 63.3785 63.4707 63.3785C63.2437 63.3785 63.1118 63.4239 63.1104 63.4239L42.9805 75.1294V75.3579L52.9473 81.1133C52.9458 81.1119 52.9473 81.1104 52.9487 81.1104Z\" fill=\"black\"/>\\n<path d=\"M38.1772 54.5788C38.0732 54.5788 37.9707 54.5509 37.877 54.4982C37.6924 54.3913 37.5781 54.1935 37.5767 53.9796L37.5371 39.9025C37.5371 39.6872 37.6514 39.4894 37.8374 39.381L48.2407 33.3751C48.4487 33.2565 48.7065 33.2726 48.8984 33.4132C49.0903 33.5553 49.1797 33.7985 49.1255 34.0314C47.6987 40.1295 44.4819 46.673 39.5674 53.4801C39.2627 53.9064 38.8745 54.2697 38.4761 54.4982C38.3838 54.5509 38.2798 54.5788 38.1772 54.5788ZM38.7383 40.2467L38.7734 52.5294C43.1299 46.4489 46.0962 40.6041 47.6079 35.1271L38.7383 40.2467Z\" fill=\"black\"/>\\n<path d=\"M38.0967 25.8249C38.5016 25.5911 38.9009 25.5354 39.2245 25.6981C41.6474 26.9449 44.347 26.8156 47.3642 25.0736C47.4534 25.0221 47.5432 24.969 47.633 24.9147C47.6457 24.9071 47.6582 24.8997 47.6709 24.8924C48.5343 24.3939 49.281 24.6989 49.3338 25.6734C49.4808 28.3415 49.1971 31.0981 48.5394 33.8957L38.1366 39.9018L38.0967 25.8249Z\" fill=\"#00E6E9\"/>\\n<path d=\"M38.1362 40.5018C38.0322 40.5018 37.9297 40.4739 37.8374 40.4212C37.6514 40.3143 37.5371 40.1165 37.5356 39.9026L37.4961 25.827C37.4961 25.6131 37.6104 25.4139 37.7964 25.3069C38.3911 24.9612 38.9932 24.91 39.4941 25.1619C41.8159 26.3572 44.29 26.1565 47.063 24.554L47.2622 24.4368C47.9976 24.0105 48.6421 23.9563 49.1431 24.2288C49.6162 24.4852 49.8975 24.9861 49.9326 25.6409C50.0791 28.304 49.8066 31.1268 49.124 34.033C49.0859 34.1941 48.9834 34.3318 48.8398 34.4153L38.4365 40.4212C38.3428 40.4739 38.2402 40.5018 38.1362 40.5018ZM38.6973 26.2195L38.7339 38.8641L48.0137 33.5057C48.6274 30.8016 48.8706 28.178 48.7344 25.7054C48.7227 25.49 48.6611 25.3318 48.5703 25.2835C48.481 25.2337 48.2671 25.2381 47.9712 25.4124L47.6621 25.594C44.5522 27.3914 41.6211 27.6053 38.9507 26.2312C38.8862 26.2005 38.7983 26.1961 38.6973 26.2195Z\" fill=\"black\"/>\\n<path d=\"M38.1397 39.9016L38.1796 53.9785C37.8569 54.1649 37.5339 54.2421 37.2675 54.1774C32.6185 53.118 29.2329 50.4844 27.7305 45.9114L38.1397 39.9016Z\" fill=\"#00E6E9\"/>\\n<path d=\"M37.464 54.7998C37.3483 54.7998 37.2355 54.7866 37.1256 54.7603C32.0221 53.5972 28.6662 50.6836 27.1603 46.0986C27.0709 45.8291 27.1837 45.5332 27.4298 45.3911L37.839 39.3809C38.0265 39.2754 38.2536 39.2754 38.4381 39.3809C38.6242 39.4878 38.7384 39.6855 38.7399 39.8994L38.7794 53.9766C38.7794 54.1919 38.6652 54.3896 38.4791 54.498C38.132 54.6973 37.7877 54.7998 37.464 54.7998ZM28.4596 46.1821C29.8966 50.0757 32.9025 52.5674 37.401 53.5928C37.445 53.6001 37.5021 53.6016 37.5783 53.584L37.5416 40.938L28.4596 46.1821Z\" fill=\"black\"/>\\n<path d=\"M27.7305 46.5123C27.6587 46.5123 27.5855 46.4991 27.5167 46.4727C27.3482 46.4083 27.2178 46.272 27.1607 46.1006C26.4532 43.959 26.1617 41.4366 26.2935 38.605C26.3477 37.3995 27.19 36.0269 28.2505 35.4131L28.5596 35.2403C31.3868 33.607 34.0455 30.73 36.4595 26.6915C36.8155 26.0909 37.293 25.5972 37.8013 25.3057C37.9859 25.1988 38.2129 25.2003 38.4004 25.3057C38.585 25.4127 38.6993 25.6104 38.7007 25.8243L38.7403 39.9C38.7403 40.1153 38.626 40.3131 38.44 40.4214L28.0308 46.4317C27.9385 46.4844 27.8345 46.5123 27.7305 46.5123ZM37.504 27.2833C37.4996 27.2906 37.4952 27.2979 37.4908 27.3052C34.9698 31.524 32.1661 34.543 29.1587 36.2803L28.8702 36.4415C28.1378 36.8648 27.5284 37.855 27.4918 38.6607C27.3819 41.0352 27.5811 43.168 28.0865 45.0137L37.5391 39.5557L37.504 27.2833Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4to245\",\"data-framer-name\":\"Frame 1000005914\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\"},children:\"Enhanced Protections and Peace of Mind\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\"},children:\"Enhanced Protections and Peace of Mind\"})}),className:\"framer-5h88p9\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"You\u2019ll safeguard sensitive patient information and reduce the risk of costly data breaches or cybersecurity threats. Avoid Maximum penalties of $1.5 million per year.\"})}),className:\"framer-1hs47py\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{y:(componentViewport?.y||0)+0+3114.1336+80+0+0+313+0+1335.929},UfxwKg5CD:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+4310.0996+60+0+0+165+0+1114.57}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:256,width:\"620px\",y:(componentViewport?.y||0)+10+2725.8116+80+0+0+313+0+455.993,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15ctx7j-container\",nodeId:\"MyTexng4r\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{variant:\"TalaUKiD9\"}},children:/*#__PURE__*/_jsx(TestimonialSections,{height:\"100%\",id:\"MyTexng4r\",layoutId:\"MyTexng4r\",style:{width:\"100%\"},variant:\"HHjQn9yxt\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f98ysx\",\"data-framer-name\":\"WHAT YOU GET\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-112zdso\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Here is What You Get\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Here is What You Get\"})}),className:\"framer-1x1ojqj\",\"data-framer-name\":\"Headline\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4a8n7q\",\"data-framer-name\":\"list\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xmvmik\",\"data-framer-name\":\"rapid\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-frv6tv\",\"data-framer-name\":\"target_10002790\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:102,intrinsicWidth:102,svg:'<svg width=\"102\" height=\"102\" viewBox=\"0 0 102 102\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M66.4551 7.53506C68.9821 6.07259 71.0277 7.24104 71.0359 10.152L71.2018 68.7852C71.21 71.6863 69.1776 75.2148 66.6507 76.6773L30.2076 97.7684C27.6801 99.2312 25.635 98.0625 25.6268 95.1614L25.461 36.5282C25.4527 33.6172 27.4846 30.089 30.012 28.6262L66.4551 7.53506Z\" fill=\"white\"/>\\n<path d=\"M71.1956 68.7871C71.2109 71.6821 69.1858 75.222 66.6509 76.6771L30.2158 97.7671C27.6809 99.2371 25.6411 98.067 25.6257 95.157L25.5957 84.207C28.2954 85.0171 31.116 85.4521 34.0259 85.4521C52.7305 85.4521 67.896 67.4971 67.896 45.3271C67.896 32.6671 62.9456 21.387 55.2207 14.0371L66.4561 7.54206C68.9756 6.07209 71.0308 7.24204 71.0308 10.152L71.1956 68.7871Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M28.1529 99.0028C27.6153 99.0028 27.1143 98.8739 26.6675 98.6175C25.6143 98.0125 25.0327 96.785 25.0283 95.1634L24.8613 36.5301C24.854 33.3866 26.9854 29.6864 29.7129 28.1073L66.1568 7.01498C67.5718 6.19613 68.9385 6.07748 69.9946 6.68686C71.0493 7.29184 71.6323 8.52231 71.6382 10.1512L71.8037 68.7845C71.8125 71.9222 69.6826 75.6165 66.9522 77.1971L30.5098 98.2894C29.6895 98.7625 28.8882 99.0028 28.1529 99.0028ZM66.7573 8.05502L30.3135 29.1458C27.9624 30.5067 26.0552 33.8187 26.0625 36.5272L26.2295 95.1605C26.2324 96.3367 26.6001 97.1937 27.2652 97.5775C27.9361 97.9613 28.875 97.847 29.9092 97.2493L66.3516 76.1571C68.7041 74.7962 70.6113 71.4901 70.6026 68.7874L70.437 10.1541C70.4341 8.97201 70.065 8.11068 69.397 7.7269C68.7276 7.34164 67.7871 7.45736 66.7573 8.05502Z\" fill=\"black\"/>\\n<path d=\"M64.0315 3.90866C63.1995 3.42444 62.0598 3.49173 60.7847 4.23148L24.3416 25.3212C22.7441 26.245 21.3518 27.9863 20.541 29.8779L26.2158 33.1858C27.0259 31.2965 28.4189 29.554 30.0178 28.6299L66.4602 7.5401C67.7346 6.80045 68.875 6.73316 69.707 7.21738L64.0315 3.90866Z\" fill=\"#FFD63C\"/>\\n<path d=\"M26.2141 33.7864C26.1086 33.7864 26.0046 33.7586 25.9124 33.7044L20.2376 30.3968C19.9753 30.2444 19.8684 29.9207 19.9885 29.6424C20.8792 27.5638 22.3938 25.7532 24.0403 24.8011L60.4827 3.71173C61.9036 2.88703 63.2732 2.7713 64.3323 3.38947L70.0071 6.69855C70.2942 6.86554 70.3909 7.23322 70.2239 7.51886C70.0569 7.80597 69.6921 7.90412 69.4036 7.73566C68.7297 7.34601 67.7937 7.46027 66.7595 8.05792L30.3171 29.1502C28.886 29.9764 27.5574 31.5745 26.7649 33.4217C26.6975 33.5799 26.5657 33.7015 26.4016 33.7557C26.3416 33.7762 26.2771 33.7864 26.2141 33.7864ZM21.3113 29.6336L25.9475 32.3362C26.8572 30.5198 28.2327 28.9671 29.7166 28.1102L66.1589 7.01935C66.5442 6.79669 66.9251 6.62531 67.2971 6.50666L63.7288 4.42658C63.0579 4.03693 62.1189 4.15119 61.0833 4.75031L24.6409 25.8411C23.3357 26.5955 22.117 27.9915 21.3113 29.6336Z\" fill=\"black\"/>\\n<path d=\"M19.793 33.2301L19.9534 91.8589C19.9534 93.2981 20.4639 94.3069 21.2821 94.7911L26.9576 98.0863C26.1387 97.6156 25.629 96.6068 25.629 95.1676L25.4678 36.5255C25.4627 35.4516 25.7396 34.2938 26.2149 33.1861L20.5401 29.8782C20.0648 30.9886 19.7879 32.1505 19.793 33.2301Z\" fill=\"#F4C531\"/>\\n<path d=\"M26.9566 98.6864C26.8541 98.6864 26.7515 98.66 26.6578 98.6058C26.6563 98.6058 26.6563 98.6058 26.6548 98.6044C26.6504 98.6014 26.6431 98.5985 26.6387 98.5941L20.98 95.3099C19.9297 94.6874 19.3526 93.4628 19.3526 91.8588L19.1915 33.2313C19.1871 32.1107 19.4625 30.87 19.9869 29.6424C20.0557 29.4842 20.1876 29.3627 20.3501 29.3085C20.5142 29.2543 20.6944 29.2733 20.8409 29.3597L26.5157 32.6673C26.7779 32.8197 26.8848 33.1434 26.7647 33.4217C26.3047 34.4984 26.063 35.5707 26.0674 36.5228L26.2286 95.1664C26.2286 96.3265 26.5889 97.1747 27.2437 97.5585L27.254 97.5643L27.2554 97.5658L27.2584 97.5673C27.544 97.7328 27.6421 98.099 27.4766 98.3861C27.3653 98.578 27.1631 98.6864 26.9566 98.6864ZM20.8438 30.7499C20.5435 31.6127 20.3882 32.4579 20.3926 33.2269L20.5538 91.8573C20.5538 93.0218 20.92 93.8802 21.5879 94.2758L25.1431 96.3397C25.0669 95.9779 25.0274 95.5853 25.0274 95.1678L24.8663 36.5272C24.8633 35.5619 25.0684 34.5043 25.4639 33.4437L20.8438 30.7499Z\" fill=\"black\"/>\\n<path d=\"M48.9702 37.8739C59.1964 31.9698 67.5118 36.7084 67.5451 48.4656C67.5784 60.2101 59.317 74.5193 49.0908 80.4234C38.8645 86.3276 30.549 81.589 30.5157 69.8446C30.4824 58.0873 38.7438 43.7781 48.9702 37.8739Z\" fill=\"white\"/>\\n<path d=\"M40.7789 83.5721C38.9098 83.5721 37.1769 83.1341 35.6461 82.2523C31.9664 80.1356 29.9303 75.7293 29.9142 69.8465C29.8805 57.9212 38.2931 43.3446 48.6686 37.3534C53.8263 34.3768 58.7071 33.9139 62.4088 36.0452C66.0899 38.1634 68.1275 42.5741 68.1437 48.4642C68.1773 60.3836 59.7647 74.953 49.3893 80.9427C46.3629 82.6888 43.4332 83.5721 40.7789 83.5721ZM49.2691 38.3934C39.2262 44.1927 31.0816 58.3006 31.1153 69.8436C31.13 75.2796 32.9508 79.3167 36.2452 81.2122C39.5631 83.1224 44.0221 82.658 48.7887 79.9027C58.8316 74.1048 66.9762 60.0028 66.9425 48.4671C66.9278 43.0238 65.1056 38.9808 61.8111 37.0853C58.4918 35.1751 54.0387 35.6409 49.2691 38.3934Z\" fill=\"black\"/>\\n<path d=\"M41.2728 78.2509C35.5536 78.2509 34.9183 71.9189 34.9102 69.1962C34.8821 59.3825 42.0753 46.9251 50.6171 41.9931C52.8237 40.7192 54.9563 40.0457 56.7837 40.0457C62.5045 40.0457 63.1399 46.3866 63.1479 49.1124C63.176 58.9198 55.9829 71.3719 47.4402 76.303C45.2329 77.5774 43.1002 78.2509 41.2728 78.2509Z\" fill=\"#00E6E9\"/>\\n<path d=\"M63.1464 49.1117C63.1711 58.9163 55.9821 71.3695 47.4361 76.3047C45.2318 77.5796 43.1013 78.2541 41.2753 78.2541C38.8242 78.2541 37.3106 77.0943 36.373 75.5561C45.0097 75.4739 53.7943 69.4941 58.1126 59.8375C61.0162 53.3395 61.3369 46.4467 59.5026 40.656C62.7187 42.3093 63.1384 46.8991 63.1464 49.1117Z\" fill=\"#2E46C0\"/>\\n<path d=\"M41.273 78.8508C35.0123 78.8508 34.3194 72.0994 34.3106 69.1975C34.2828 59.1956 41.6129 46.4998 50.317 41.4724C52.6168 40.1467 54.8536 39.4451 56.7843 39.4451C63.0421 39.4451 63.7393 46.2053 63.7496 49.1116C63.7774 59.1062 56.4473 71.7961 47.7418 76.8235C45.4449 78.1492 43.2081 78.8508 41.273 78.8508ZM56.7843 40.6462C55.0631 40.6462 53.0343 41.2908 50.9176 42.5125C42.5387 47.3494 35.484 59.5691 35.5118 69.1946C35.5177 71.7375 36.0933 77.6497 41.273 77.6497C42.9971 77.6497 45.026 77.0051 47.1412 75.7834C55.5201 70.9451 62.5763 58.7327 62.5484 49.1145C62.5411 46.5686 61.9625 40.6462 56.7843 40.6462Z\" fill=\"black\"/>\\n<path d=\"M44.9995 69.0743C42.0277 69.0743 41.6976 65.7841 41.6934 64.3694C41.6788 59.27 45.4164 52.7971 49.8549 50.2344C51.0014 49.5724 52.1096 49.2224 53.0591 49.2224C56.0317 49.2224 56.3618 52.5172 56.366 53.9336C56.3806 59.0296 52.643 65.4998 48.2041 68.0621C47.0572 68.7243 45.949 69.0743 44.9995 69.0743Z\" fill=\"white\"/>\\n<path d=\"M56.363 53.9362C56.3835 59.0306 52.6431 65.4994 48.2052 68.0637C47.0565 68.727 45.9486 69.0757 44.9982 69.0757C42.7758 69.0757 42.0304 67.2363 41.791 65.7183C42.7758 66.1833 43.8287 66.4363 44.9366 66.4363C49.9421 66.4363 53.997 61.2393 53.997 54.8252C53.997 52.8011 53.5935 50.8933 52.8755 49.2317C52.9371 49.2249 52.9987 49.2249 53.0601 49.2249C56.0348 49.2249 56.363 52.514 56.363 53.9362Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M44.9986 69.675C42.5625 69.675 41.1021 67.6917 41.0918 64.3708C41.0772 59.0842 44.9517 52.3723 49.5542 49.7136C50.792 49.0002 52.0035 48.6223 53.0581 48.6223C55.4942 48.6223 56.9561 50.6072 56.9663 53.9324C56.9795 59.2175 53.1036 65.9265 48.5039 68.5823C47.2662 69.2971 46.0533 69.675 44.9986 69.675ZM53.0581 49.8235C52.2144 49.8235 51.2095 50.1443 50.1548 50.7537C45.8789 53.2234 42.2784 59.4578 42.293 64.3679C42.2974 65.9016 42.6548 68.4739 44.9986 68.4739C45.8438 68.4739 46.8472 68.1516 47.9034 67.5422C52.1778 65.0754 55.7784 58.844 55.7652 53.9353C55.7608 52.4001 55.4034 49.8235 53.0581 49.8235Z\" fill=\"black\"/>\\n<path d=\"M81.397 85.2782L79.1879 86.5669C79.5345 86.3611 79.6209 85.7114 79.2421 84.9858L75.5059 77.8712L77.715 76.5825L81.4512 83.6972C81.8301 84.4228 81.7542 85.0725 81.397 85.2782Z\" fill=\"#FFD63C\"/>\\n<path d=\"M79.1881 87.1683C78.983 87.1683 78.7823 87.0613 78.671 86.8724C78.504 86.5882 78.5977 86.2205 78.8819 86.052C78.8995 86.0125 78.9434 85.7107 78.7105 85.264L74.9752 78.1492C74.8258 77.865 74.9268 77.5135 75.2052 77.3523L77.4141 76.0647C77.5562 75.9827 77.7262 75.9651 77.8814 76.0062C78.0382 76.0516 78.1715 76.16 78.2476 76.305L81.9845 83.4183C82.4971 84.4041 82.377 85.4031 81.7003 85.7972L79.4898 87.0862C79.3946 87.1419 79.2906 87.1683 79.1881 87.1683ZM76.3053 78.1009L79.774 84.7073C79.8927 84.9329 79.9762 85.1614 80.0289 85.3826L81.0777 84.7718C81.1158 84.6941 81.1436 84.4012 80.921 83.9734L77.4757 77.4168L76.3053 78.1009Z\" fill=\"black\"/>\\n<path d=\"M75.0007 76.8257L79.1975 84.822C79.8403 86.0519 79.3079 87.0864 78.3207 86.5165L71.5742 82.6213C71.0612 82.3252 70.5723 81.7924 70.2394 81.1529L64.8574 70.9695L75.0007 76.8257Z\" fill=\"white\"/>\\n<path d=\"M78.8454 87.2783C78.5818 87.2783 78.3005 87.1977 78.0207 87.0366L71.2751 83.1416C70.6628 82.7885 70.0915 82.1645 69.7077 81.4292L64.3274 71.25C64.2028 71.0141 64.2483 70.7241 64.4416 70.5381C64.6335 70.3535 64.9265 70.3169 65.1579 70.4502L75.302 76.3051C75.4001 76.3623 75.4807 76.4458 75.5334 76.5468L79.7302 84.5434C80.218 85.4765 80.1872 86.4448 79.657 86.9531C79.4314 87.1699 79.1516 87.2783 78.8454 87.2783ZM66.3606 72.5302L70.7697 80.8725C71.0481 81.4043 71.4597 81.8628 71.8742 82.1015L78.6213 85.9966C78.7766 86.0874 78.8484 86.0786 78.8469 86.0771C78.8777 86.0346 78.9641 85.6699 78.6667 85.1001L74.5505 77.2573L66.3606 72.5302Z\" fill=\"black\"/>\\n<path d=\"M81.5266 73.9859C81.0996 73.7487 80.5207 73.7772 79.8755 74.1473C78.5848 74.8969 77.5506 76.6904 77.5506 78.1803C77.5506 78.9015 77.8068 79.4139 78.2243 79.6606L47.5507 61.8335C47.133 61.5963 46.877 61.0744 46.877 60.3532C46.877 58.8634 47.9111 57.0699 49.2018 56.3202C49.847 55.9502 50.426 55.9217 50.8529 56.1684L81.5266 73.9859Z\" fill=\"white\"/>\\n<path d=\"M78.2198 79.6619L47.5502 61.8379C47.1365 61.5944 46.8809 61.0709 46.8809 60.3527C46.8809 59.8536 46.9902 59.3179 47.2093 58.8066L77.8911 76.5941C77.672 77.1176 77.5502 77.6654 77.5502 78.1767C77.5502 78.9071 77.8058 79.4184 78.2198 79.6619Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M78.2236 80.2615C78.1211 80.2615 78.0171 80.2352 77.9219 80.1795L47.248 62.3524C46.6328 62.0023 46.2754 61.2728 46.2754 60.3528C46.2754 58.6551 47.4282 56.6556 48.8989 55.8016C49.7163 55.3343 50.5161 55.2801 51.1533 55.6507L81.8271 73.4676C82.1113 73.6331 82.2095 73.9964 82.0469 74.282C81.8843 74.5692 81.5181 74.6688 81.2339 74.5106C80.979 74.3685 80.5923 74.4271 80.1733 74.6673C79.0776 75.3045 78.1504 76.9129 78.1504 78.18C78.1504 78.6502 78.2881 79.0018 78.5298 79.1453C78.814 79.3138 78.9077 79.68 78.7407 79.9642C78.6294 80.1546 78.4287 80.2615 78.2236 80.2615ZM50.2261 56.6072C50.0166 56.6072 49.769 56.6863 49.4995 56.8402C48.4038 57.4774 47.4766 59.0858 47.4766 60.3528C47.4766 60.8216 47.6143 61.1805 47.8457 61.3123L76.9507 78.2269C76.9492 78.2108 76.9492 78.1961 76.9492 78.18C76.9492 76.4822 78.102 74.4827 79.5728 73.6287C79.5977 73.6141 79.6211 73.6009 79.646 73.5877L50.5498 56.6878C50.4575 56.6351 50.3491 56.6072 50.2261 56.6072Z\" fill=\"black\"/>\\n<path d=\"M79.8739 74.1502C81.1522 73.4122 82.1977 74.0079 82.2019 75.4908C82.2061 76.9598 81.1674 78.7589 79.889 79.4969C78.5986 80.242 77.553 79.6462 77.5488 78.1773C77.5446 76.6944 78.5834 74.8953 79.8739 74.1502Z\" fill=\"white\"/>\\n<path d=\"M78.8374 80.4197C78.5122 80.4197 78.2061 80.3406 77.9307 80.1824C77.3008 79.8206 76.9522 79.1087 76.9492 78.1785C76.9448 76.4793 78.0977 74.4827 79.5742 73.6302C80.3887 73.1614 81.1841 73.1043 81.8169 73.4676C82.4497 73.8323 82.7998 74.5501 82.8027 75.4891C82.8071 77.1795 81.6602 79.1673 80.1895 80.0169C79.7236 80.285 79.2637 80.4197 78.8374 80.4197ZM80.9102 74.4344C80.6992 74.4344 80.4443 74.5135 80.1748 74.6702C79.0733 75.3045 78.146 76.91 78.1504 78.1756C78.1519 78.6517 78.2896 79.0047 78.5298 79.1424C78.773 79.286 79.1611 79.2259 79.5889 78.9769C80.6846 78.3455 81.606 76.7488 81.6016 75.492C81.6001 75.0071 81.4609 74.6483 81.2178 74.5076C81.1314 74.4578 81.0274 74.4344 80.9102 74.4344Z\" fill=\"black\"/>\\n<path d=\"M81.7231 69.2165L77.4989 72.3574L75.0154 73.7938L79.2396 70.6531C79.8849 70.1661 79.3615 68.5227 78.3754 67.9627L71.6311 64.067C71.1564 63.7871 70.6937 63.7505 70.3652 63.9453L72.8484 62.4967C73.1771 62.3018 73.6399 62.3384 74.1145 62.6184L80.8588 66.514C81.8572 67.0861 82.3806 68.7296 81.7231 69.2165Z\" fill=\"#FFD63C\"/>\\n<path d=\"M75.0149 74.3948C74.8201 74.3948 74.6282 74.2981 74.5139 74.1238C74.3382 73.8587 74.4012 73.5027 74.6575 73.3123L78.8821 70.1717C78.8865 70.1687 78.9348 70.0853 78.9217 69.8846C78.8909 69.4231 78.5598 68.7581 78.0794 68.4842L71.3294 64.5877C71.0642 64.4295 70.8094 64.3826 70.6717 64.4588L70.6658 64.4632C70.3802 64.6287 70.0125 64.532 69.847 64.2479C69.6785 63.9637 69.7737 63.596 70.0594 63.4275C70.0637 63.4261 70.0681 63.4231 70.0725 63.4202L72.5467 61.9773C73.074 61.6653 73.7566 61.7093 74.4202 62.1033L81.1585 65.9939C82.0506 66.5052 82.5647 67.5818 82.6116 68.3802C82.6438 68.9515 82.4563 69.4202 82.0799 69.6985L77.8553 72.8392L75.3152 74.3143C75.2215 74.3685 75.1175 74.3948 75.0149 74.3948ZM72.0838 63.637L78.6756 67.4427C79.5047 67.9129 80.0086 68.8929 80.1053 69.6722L81.365 68.7347C81.3826 68.7215 81.4236 68.6321 81.4134 68.449C81.3855 67.9891 81.053 67.3167 80.5594 67.034L73.8137 63.139C73.5471 62.9793 73.2923 62.9324 73.1546 63.0115L72.0838 63.637Z\" fill=\"black\"/>\\n<path d=\"M78.3745 67.9575C79.3617 68.5274 79.8865 70.1723 79.2389 70.6572L75.0104 73.7981L64.8672 67.9419L70.2892 63.9873C70.6247 63.7426 71.115 63.7662 71.628 64.0624L78.3745 67.9575Z\" fill=\"white\"/>\\n<path d=\"M75.0115 74.3991C74.9075 74.3991 74.805 74.3713 74.7112 74.3186L64.5672 68.4621C64.3914 68.3596 64.2786 68.1765 64.2684 67.9743C64.2581 67.7707 64.3504 67.5773 64.5144 67.4572L69.9373 63.5022C70.469 63.114 71.2161 63.1315 71.928 63.5417L78.6751 67.4367C79.5613 67.948 80.0725 69.0246 80.1209 69.823C80.1546 70.3928 79.9685 70.8586 79.5994 71.1369L75.3689 74.2805C75.2635 74.3581 75.1375 74.3991 75.0115 74.3991ZM65.9661 67.8835L74.9705 73.0822L78.8816 70.1745C78.889 70.1701 78.9344 70.0896 78.9226 69.8947C78.8948 69.4318 78.5638 68.758 78.0745 68.4768L71.3289 64.5817C71.0433 64.4162 70.7781 64.3723 70.6434 64.4719L65.9661 67.8835Z\" fill=\"black\"/>\\n<path d=\"M58.8047 23.7629L64.8107 20.2859Z\" fill=\"#FFD63C\"/>\\n<path d=\"M58.8055 24.3631C58.599 24.3631 58.3968 24.2547 58.2855 24.0628C58.12 23.7757 58.2181 23.4095 58.5052 23.2425L64.5111 19.7665C64.7923 19.6024 65.1644 19.7005 65.3314 19.9862C65.4969 20.2733 65.3988 20.6395 65.1117 20.8065L59.1058 24.2826C59.0121 24.3368 58.9081 24.3631 58.8055 24.3631Z\" fill=\"black\"/>\\n<path d=\"M31.666 39.4695L53.323 26.9355Z\" fill=\"#FFD63C\"/>\\n<path d=\"M31.6649 40.0693C31.4583 40.0693 31.2562 39.961 31.1449 39.7691C30.9793 39.4819 31.0775 39.1157 31.3646 38.9487L53.0223 26.4155C53.3065 26.2529 53.6756 26.3482 53.8426 26.6353C54.0081 26.9224 53.91 27.2886 53.6229 27.4556L31.9652 39.9888C31.8714 40.043 31.7674 40.0693 31.6649 40.0693Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xiay40\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"Rapid Implementation\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"Rapid Implementation\"})}),className:\"framer-1ldaq1z\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"Implemenation of HIPAA security rules\"})}),className:\"framer-1kl7ild\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ri6l60\",\"data-framer-name\":\"24/7\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1t0zbji hidden-72rtr7 hidden-13depyn\",\"data-framer-name\":\"letter_14669351\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:102,intrinsicWidth:102,svg:'<svg width=\"102\" height=\"102\" viewBox=\"0 0 102 102\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M30.8295 97.5386C30.7995 97.9136 30.9192 98.1685 31.1294 98.2886L23.7192 93.9834C23.5243 93.8785 23.4042 93.6234 23.4192 93.2334L24.2443 78.6084C24.2593 78.2634 24.1396 78.0085 23.9444 77.8884L31.3393 82.1936C31.5495 82.3135 31.6542 82.5686 31.6396 82.9136L30.8295 97.5386Z\" fill=\"#2E46C0\"/>\\n<path d=\"M31.1301 98.8896C31.029 98.8896 30.9265 98.8633 30.8327 98.8105C30.8283 98.8076 30.8239 98.8047 30.8195 98.8017L23.4177 94.5024C23.0207 94.2886 22.7966 93.8139 22.82 93.2119L23.6447 78.5752C23.6506 78.4609 23.6242 78.3979 23.614 78.3862C23.3357 78.2134 23.2536 77.8545 23.4221 77.5732C23.5905 77.292 23.9641 77.207 24.2468 77.3696L31.6413 81.6748C32.0442 81.9062 32.2639 82.3677 32.239 82.9389L31.4289 97.5727C31.4289 97.5771 31.4289 97.583 31.4275 97.5874C31.4187 97.7016 31.4348 97.7573 31.4421 97.7763C31.719 97.9463 31.8127 98.3052 31.6501 98.5879C31.5388 98.7812 31.3366 98.8896 31.1301 98.8896ZM24.8181 79.0893L24.0183 93.2676C24.0139 93.4009 24.0388 93.4756 24.049 93.4917L30.2541 97.0879L31.0407 82.8804C31.0451 82.7676 31.0246 82.706 31.0158 82.6914L24.8181 79.0893Z\" fill=\"black\"/>\\n<path d=\"M79.9563 10.0736C73.8512 6.53357 64.7461 7.29859 54.591 13.1636C36.3211 23.7087 21.5163 46.8386 21.576 64.7785C21.591 72.7886 24.561 78.4136 29.466 81.2635L22.0711 76.9735C17.1661 74.1235 14.1961 68.4835 14.1661 60.4885C14.1211 42.5336 28.9263 19.4035 47.1811 8.85846C57.3512 2.9936 66.4563 2.22858 72.561 5.76856L79.9563 10.0736Z\" fill=\"#2E46C0\"/>\\n<path d=\"M29.4654 81.8638C29.3629 81.8638 29.2589 81.8374 29.1637 81.7817L21.7691 77.4927C16.5089 74.437 13.5953 68.3989 13.5646 60.4917C13.5191 42.3716 28.4635 18.9766 46.8795 8.33888C56.8551 2.58497 66.3238 1.45704 72.86 5.24952L80.2545 9.55324C80.256 9.55324 80.256 9.55323 80.256 9.5547C80.5416 9.72169 80.6412 10.0879 80.4742 10.375C80.3072 10.6607 79.9381 10.7588 79.6554 10.5918C73.4928 7.02052 64.4679 8.15284 54.8907 13.6841C36.7926 24.1284 22.1163 47.0488 22.1764 64.7764C22.1896 72.2383 24.8849 77.9087 29.7672 80.7446C30.0528 80.9102 30.151 81.2778 29.984 81.565C29.8727 81.7568 29.672 81.8638 29.4654 81.8638ZM64.0152 4.23732C59.0758 4.23732 53.3849 5.97316 47.4801 9.37892C29.3966 19.8233 14.7203 42.751 14.7657 60.4873C14.7936 67.9507 17.4962 73.6211 22.3727 76.4556L24.7516 77.8355C22.298 74.5483 20.9855 70.0835 20.9752 64.7793C20.9151 46.6694 35.8595 23.2817 54.2901 12.6441C61.5983 8.42384 68.6398 6.68653 74.4567 7.56691L72.2579 6.28663C69.8922 4.91554 67.1002 4.23732 64.0152 4.23732Z\" fill=\"black\"/>\\n<path d=\"M54.5879 13.1609C72.8991 2.58895 87.7847 8.57778 87.8356 26.5264C87.8865 44.4971 73.0835 67.6266 54.7723 78.1986C51.2765 80.2169 47.9136 81.6183 44.7504 82.4526C44.6651 82.4773 44.5778 82.5155 44.4907 82.5657C44.3042 82.6734 44.1189 82.8368 43.9558 83.0437L32.4097 97.7344C32.2362 97.9528 32.0524 98.1126 31.8734 98.2159C31.3029 98.5453 30.7847 98.2978 30.8262 97.5352L31.6385 82.913C31.6567 82.5279 31.5216 82.253 31.2718 82.1548C25.2983 79.7065 21.5977 73.7192 21.5724 64.7834C21.5215 46.8348 36.3245 23.7053 54.5879 13.1609Z\" fill=\"white\"/>\\n<path d=\"M87.8304 26.5285C87.8905 44.4985 73.0853 67.6285 54.7704 78.2034C51.2753 80.2136 47.9153 81.6235 44.7501 82.4485C44.6604 82.4786 44.5703 82.5086 44.4952 82.5687C44.3004 82.6736 44.1202 82.8386 43.9554 83.0486L32.4052 97.7335C32.2404 97.9587 32.0452 98.1085 31.8804 98.2136C31.3102 98.5435 30.7854 98.3036 30.8304 97.5386L31.6405 82.9136C31.6552 82.5236 31.5204 82.2535 31.2655 82.1486C29.6454 81.4885 28.2054 80.5735 26.9453 79.3735C56.3751 77.6937 79.6702 55.1336 79.6702 27.5336C79.6702 20.7836 78.2753 14.3485 75.7404 8.42358C83.0902 10.1336 87.8004 16.4485 87.8304 26.5285Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M31.4025 98.9599C31.1871 98.9599 30.9821 98.9043 30.8004 98.7929C30.4049 98.5498 30.1969 98.081 30.2277 97.5039L31.0392 82.8789C31.0465 82.7397 31.0143 82.6855 31.0143 82.6855C24.5748 80.0576 20.9977 73.6914 20.9728 64.7851C20.9215 46.6679 35.8659 23.2758 54.2877 12.6411C64.2296 6.90329 73.672 5.76364 80.2052 9.5239C85.4904 12.5649 88.4142 18.603 88.4362 26.5249C88.4874 44.6538 73.5211 68.0678 55.0729 78.7187C51.6173 80.7138 48.1954 82.1655 44.9025 83.0327C44.6681 83.1572 44.5377 83.2744 44.4293 83.4135L32.882 98.1045C32.6637 98.3784 32.4264 98.5908 32.173 98.7358C31.9152 98.8852 31.6515 98.9599 31.4025 98.9599ZM54.8883 13.6811C36.799 24.124 22.1227 47.0488 22.174 64.7822C22.1974 73.1714 25.5094 79.1435 31.4992 81.6001C31.9899 81.792 32.2697 82.2959 32.2374 82.9419L31.4259 97.5698C31.4201 97.665 31.4303 97.728 31.4406 97.7617C31.4581 97.75 31.5065 97.7353 31.5739 97.6958C31.6588 97.6474 31.7892 97.5508 31.9401 97.3603L43.4845 82.6738C43.6867 82.4145 43.9313 82.1977 44.1891 82.0468C44.3239 81.9707 44.4542 81.9135 44.5817 81.8769C47.7868 81.0317 51.109 79.6211 54.4723 77.6787C72.5895 67.2197 87.2863 44.2744 87.235 26.5278C87.2145 19.0527 84.506 13.3838 79.6061 10.5639C73.4596 7.02488 64.4479 8.16013 54.8883 13.6811Z\" fill=\"black\"/>\\n<path d=\"M61.7988 42.2411L74.7356 23.1553L74.8014 46.3466L61.7988 42.2411Z\" fill=\"#00E6E9\"/>\\n<path d=\"M47.6089 50.4315L53.5296 52.303C53.8802 52.4116 54.3007 52.3244 54.7205 52.082C55.1405 51.8395 55.5599 51.4418 55.9087 50.9294L61.798 42.241L74.8005 46.3464C74.806 48.3009 73.4275 50.6885 71.7267 51.6704L37.7624 71.2797C36.0614 72.2618 34.6794 71.468 34.6738 69.5136L47.6089 50.4315Z\" fill=\"#00E6E9\"/>\\n<path d=\"M34.6074 46.3225L47.6082 50.4318L34.6732 69.5138L34.6074 46.3225Z\" fill=\"#00E6E9\"/>\\n<path d=\"M71.6402 21.3924C73.341 20.4104 74.7286 21.2011 74.7341 23.1555L61.7973 42.2413L55.9081 50.9298C55.5593 51.4422 55.1399 51.8399 54.7199 52.0824C54.3 52.3248 53.8796 52.412 53.529 52.3034L47.6082 50.4319L34.6074 46.3226C34.6019 44.3682 35.975 41.9838 37.6759 41.0017L71.6402 21.3924Z\" fill=\"#FFD63C\"/>\\n<path d=\"M69.2305 44.5877C70.3128 42.1231 70.8928 39.4557 70.8928 36.6723C70.8928 34.4784 70.5351 32.3618 69.8489 30.3612L74.7393 23.1514L74.7973 46.3466L69.2305 44.5877Z\" fill=\"#00E6E9\"/>\\n<path d=\"M74.7977 46.3466C74.8074 48.2989 73.4254 50.6861 71.7242 51.6718L37.7626 71.2815C36.0616 72.2576 34.6796 71.4651 34.6699 69.5128L41.5607 59.3553C42.421 59.4229 43.3004 59.4616 44.1897 59.4616C55.6809 59.4616 65.4714 53.2762 69.2308 44.5876L74.7977 46.3466Z\" fill=\"#00E6E9\"/>\\n<path d=\"M41.5605 59.3552L34.6696 69.5128L34.6406 57.9539C36.8249 58.669 39.1443 59.1523 41.5605 59.3552Z\" fill=\"#00E6E9\"/>\\n<path d=\"M74.7391 23.1515L69.8488 30.3614C69.1239 28.1868 68.0222 26.1476 66.6016 24.3016L71.6368 21.3926C73.3378 20.4068 74.7295 21.1993 74.7391 23.1515Z\" fill=\"#FFD63C\"/>\\n<path d=\"M74.7992 46.9477C74.7391 46.9477 74.6776 46.9374 74.619 46.9199L61.617 42.8139C61.4354 42.7568 61.2933 42.6176 61.2303 42.4389C61.1688 42.2587 61.1937 42.061 61.3006 41.9042L74.2381 22.8188C74.3875 22.6005 74.6541 22.5038 74.9105 22.5815C75.1624 22.6591 75.3338 22.8906 75.3353 23.1542L75.3997 46.3456C75.3997 46.5375 75.3089 46.7177 75.1551 46.8305C75.0496 46.9067 74.9251 46.9477 74.7992 46.9477ZM62.745 41.9116L74.1971 45.5283L74.14 25.1025L62.745 41.9116Z\" fill=\"black\"/>\\n<path d=\"M36.3843 72.3042C35.9873 72.3042 35.6152 72.2075 35.2812 72.0156C34.5063 71.5703 34.0786 70.6826 34.0742 69.5152C34.0742 69.395 34.1108 69.2764 34.1782 69.1768L47.1143 50.0943C47.2637 49.876 47.5405 49.7837 47.791 49.8584L53.7119 51.7305C53.8818 51.7847 54.144 51.7232 54.4224 51.562C54.7754 51.3599 55.127 51.0142 55.4141 50.5923L61.3027 41.9043C61.4507 41.6861 61.7305 41.5923 61.9795 41.6685L74.9814 45.7744C75.2305 45.8535 75.4004 46.085 75.4019 46.3457C75.4077 48.5269 73.9268 51.0948 72.0283 52.1905L38.0645 71.8003C37.4844 72.1343 36.9131 72.3042 36.3843 72.3042ZM35.2798 69.6895C35.3164 70.3106 35.5303 70.7749 35.8804 70.9756C36.2627 71.1968 36.8428 71.1206 37.4639 70.7603L71.4277 51.1504C72.8135 50.3506 73.9985 48.4302 74.1772 46.7793L62.0454 42.9488L56.4072 51.2661C56.0147 51.8448 55.5356 52.3062 55.023 52.6021C54.4399 52.939 53.8643 53.0342 53.3545 52.876L47.8569 51.1387L35.2798 69.6895Z\" fill=\"black\"/>\\n<path d=\"M34.6743 70.1143C34.6157 70.1143 34.5571 70.1055 34.4985 70.088C34.2466 70.0103 34.0752 69.7789 34.0737 69.5152L34.0078 46.3238C34.0078 46.1319 34.0986 45.9517 34.2524 45.8389C34.4077 45.7261 34.6069 45.6939 34.7886 45.7496L47.7905 49.8585C47.9722 49.9156 48.1143 50.0548 48.1772 50.2349C48.2388 50.4136 48.2139 50.6114 48.1069 50.7681L35.1709 69.8507C35.0566 70.0176 34.8691 70.1143 34.6743 70.1143ZM35.2104 47.1426L35.269 67.567L46.6626 50.7608L35.2104 47.1426Z\" fill=\"black\"/>\\n<path d=\"M53.8506 52.9509C53.6792 52.9509 53.5137 52.926 53.354 52.8762L34.4282 46.8952C34.1792 46.8161 34.0093 46.5847 34.0078 46.3239C34.0034 44.1413 35.4829 41.5749 37.377 40.4821L71.3408 20.8722C72.3633 20.2834 73.3521 20.2101 74.1299 20.6555C74.9048 21.1022 75.3325 21.9885 75.3369 23.1545C75.3369 23.2746 75.3003 23.3932 75.2329 23.4929L56.4068 51.2663C56.0142 51.8449 55.5352 52.3063 55.0225 52.6022C54.6226 52.8337 54.2256 52.9509 53.8506 52.9509ZM35.2324 45.8903L53.7114 51.7307C53.8814 51.7849 54.1436 51.7233 54.4219 51.5622C54.7749 51.36 55.1265 51.0143 55.4136 50.5925L74.1314 22.9802C74.0947 22.3605 73.8809 21.8976 73.5308 21.6955C73.1455 21.4758 72.5625 21.5519 71.9414 21.9123L37.9775 41.5222C36.5947 42.319 35.4126 44.2394 35.2324 45.8903Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1qfbhfi hidden-1y5d6pl\",\"data-framer-name\":\"letter_14669351\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:102,intrinsicWidth:102,svg:'<svg width=\"102\" height=\"102\" viewBox=\"0 0 102 102\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M30.8295 97.5386C30.7995 97.9136 30.9192 98.1685 31.1294 98.2886L23.7192 93.9834C23.5243 93.8785 23.4042 93.6234 23.4192 93.2334L24.2443 78.6084C24.2593 78.2634 24.1396 78.0085 23.9444 77.8884L31.3393 82.1936C31.5495 82.3135 31.6542 82.5686 31.6396 82.9136L30.8295 97.5386Z\" fill=\"#2E46C0\"/>\\n<path d=\"M31.1301 98.8896C31.029 98.8896 30.9265 98.8633 30.8327 98.8105C30.8283 98.8076 30.8239 98.8047 30.8195 98.8017L23.4177 94.5024C23.0207 94.2886 22.7966 93.8139 22.82 93.2119L23.6447 78.5752C23.6506 78.4609 23.6242 78.3979 23.614 78.3862C23.3357 78.2134 23.2536 77.8545 23.4221 77.5732C23.5905 77.292 23.9641 77.207 24.2468 77.3696L31.6413 81.6748C32.0442 81.9062 32.2639 82.3677 32.239 82.9389L31.4289 97.5727C31.4289 97.5771 31.4289 97.583 31.4275 97.5874C31.4187 97.7016 31.4348 97.7573 31.4421 97.7763C31.719 97.9463 31.8127 98.3052 31.6501 98.5879C31.5388 98.7812 31.3366 98.8896 31.1301 98.8896ZM24.8181 79.0893L24.0183 93.2676C24.0139 93.4009 24.0388 93.4756 24.049 93.4917L30.2541 97.0879L31.0407 82.8804C31.0451 82.7676 31.0246 82.706 31.0158 82.6914L24.8181 79.0893Z\" fill=\"black\"/>\\n<path d=\"M79.9563 10.0736C73.8512 6.53357 64.7461 7.29859 54.591 13.1636C36.3211 23.7087 21.5163 46.8386 21.576 64.7785C21.591 72.7886 24.561 78.4136 29.466 81.2635L22.0711 76.9735C17.1661 74.1235 14.1961 68.4835 14.1661 60.4885C14.1211 42.5336 28.9263 19.4035 47.1811 8.85846C57.3512 2.9936 66.4563 2.22858 72.561 5.76856L79.9563 10.0736Z\" fill=\"#2E46C0\"/>\\n<path d=\"M29.4654 81.8638C29.3629 81.8638 29.2589 81.8374 29.1637 81.7817L21.7691 77.4927C16.5089 74.437 13.5953 68.3989 13.5646 60.4917C13.5191 42.3716 28.4635 18.9766 46.8795 8.33888C56.8551 2.58497 66.3238 1.45704 72.86 5.24952L80.2545 9.55324C80.256 9.55324 80.256 9.55323 80.256 9.5547C80.5416 9.72169 80.6412 10.0879 80.4742 10.375C80.3072 10.6607 79.9381 10.7588 79.6554 10.5918C73.4928 7.02052 64.4679 8.15284 54.8907 13.6841C36.7926 24.1284 22.1163 47.0488 22.1764 64.7764C22.1896 72.2383 24.8849 77.9087 29.7672 80.7446C30.0528 80.9102 30.151 81.2778 29.984 81.565C29.8727 81.7568 29.672 81.8638 29.4654 81.8638ZM64.0152 4.23732C59.0758 4.23732 53.3849 5.97316 47.4801 9.37892C29.3966 19.8233 14.7203 42.751 14.7657 60.4873C14.7936 67.9507 17.4962 73.6211 22.3727 76.4556L24.7516 77.8355C22.298 74.5483 20.9855 70.0835 20.9752 64.7793C20.9151 46.6694 35.8595 23.2817 54.2901 12.6441C61.5983 8.42384 68.6398 6.68653 74.4567 7.56691L72.2579 6.28663C69.8922 4.91554 67.1002 4.23732 64.0152 4.23732Z\" fill=\"black\"/>\\n<path d=\"M54.5879 13.1609C72.8991 2.58895 87.7847 8.57778 87.8356 26.5264C87.8865 44.4971 73.0835 67.6266 54.7723 78.1986C51.2765 80.2169 47.9136 81.6183 44.7504 82.4526C44.6651 82.4773 44.5778 82.5155 44.4907 82.5657C44.3042 82.6734 44.1189 82.8368 43.9558 83.0437L32.4097 97.7344C32.2362 97.9528 32.0524 98.1126 31.8734 98.2159C31.3029 98.5453 30.7847 98.2978 30.8262 97.5352L31.6385 82.913C31.6567 82.5279 31.5216 82.253 31.2718 82.1548C25.2983 79.7065 21.5977 73.7192 21.5724 64.7834C21.5215 46.8348 36.3245 23.7053 54.5879 13.1609Z\" fill=\"white\"/>\\n<path d=\"M87.8304 26.5285C87.8905 44.4985 73.0853 67.6285 54.7704 78.2034C51.2753 80.2136 47.9153 81.6235 44.7501 82.4485C44.6604 82.4786 44.5703 82.5086 44.4952 82.5687C44.3004 82.6736 44.1202 82.8386 43.9554 83.0486L32.4052 97.7335C32.2404 97.9587 32.0452 98.1085 31.8804 98.2136C31.3102 98.5435 30.7854 98.3036 30.8304 97.5386L31.6405 82.9136C31.6552 82.5236 31.5204 82.2535 31.2655 82.1486C29.6454 81.4885 28.2054 80.5735 26.9453 79.3735C56.3751 77.6937 79.6702 55.1336 79.6702 27.5336C79.6702 20.7836 78.2753 14.3485 75.7404 8.42358C83.0902 10.1336 87.8004 16.4485 87.8304 26.5285Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M31.4025 98.9599C31.1871 98.9599 30.9821 98.9043 30.8004 98.7929C30.4049 98.5498 30.1969 98.081 30.2277 97.5039L31.0392 82.8789C31.0465 82.7397 31.0143 82.6855 31.0143 82.6855C24.5748 80.0576 20.9977 73.6914 20.9728 64.7851C20.9215 46.6679 35.8659 23.2758 54.2877 12.6411C64.2296 6.90329 73.672 5.76364 80.2052 9.5239C85.4904 12.5649 88.4142 18.603 88.4362 26.5249C88.4874 44.6538 73.5211 68.0678 55.0729 78.7187C51.6173 80.7138 48.1954 82.1655 44.9025 83.0327C44.6681 83.1572 44.5377 83.2744 44.4293 83.4135L32.882 98.1045C32.6637 98.3784 32.4264 98.5908 32.173 98.7358C31.9152 98.8852 31.6515 98.9599 31.4025 98.9599ZM54.8883 13.6811C36.799 24.124 22.1227 47.0488 22.174 64.7822C22.1974 73.1714 25.5094 79.1435 31.4992 81.6001C31.9899 81.792 32.2697 82.2959 32.2374 82.9419L31.4259 97.5698C31.4201 97.665 31.4303 97.728 31.4406 97.7617C31.4581 97.75 31.5065 97.7353 31.5739 97.6958C31.6588 97.6474 31.7892 97.5508 31.9401 97.3603L43.4845 82.6738C43.6867 82.4145 43.9313 82.1977 44.1891 82.0468C44.3239 81.9707 44.4542 81.9135 44.5817 81.8769C47.7868 81.0317 51.109 79.6211 54.4723 77.6787C72.5895 67.2197 87.2863 44.2744 87.235 26.5278C87.2145 19.0527 84.506 13.3838 79.6061 10.5639C73.4596 7.02488 64.4479 8.16013 54.8883 13.6811Z\" fill=\"black\"/>\\n<path d=\"M61.7988 42.2411L74.7356 23.1553L74.8014 46.3466L61.7988 42.2411Z\" fill=\"#00E6E9\"/>\\n<path d=\"M47.6089 50.4315L53.5296 52.303C53.8802 52.4116 54.3007 52.3244 54.7205 52.082C55.1405 51.8395 55.5599 51.4418 55.9087 50.9294L61.798 42.241L74.8005 46.3464C74.806 48.3009 73.4275 50.6885 71.7267 51.6704L37.7624 71.2797C36.0614 72.2618 34.6794 71.468 34.6738 69.5136L47.6089 50.4315Z\" fill=\"#00E6E9\"/>\\n<path d=\"M34.6074 46.3225L47.6082 50.4318L34.6732 69.5138L34.6074 46.3225Z\" fill=\"#00E6E9\"/>\\n<path d=\"M71.6402 21.3924C73.341 20.4104 74.7286 21.2011 74.7341 23.1555L61.7973 42.2413L55.9081 50.9298C55.5593 51.4422 55.1399 51.8399 54.7199 52.0824C54.3 52.3248 53.8796 52.412 53.529 52.3034L47.6082 50.4319L34.6074 46.3226C34.6019 44.3682 35.975 41.9838 37.6759 41.0017L71.6402 21.3924Z\" fill=\"#FFD63C\"/>\\n<path d=\"M69.2305 44.5877C70.3128 42.1231 70.8928 39.4557 70.8928 36.6723C70.8928 34.4784 70.5351 32.3618 69.8489 30.3612L74.7393 23.1514L74.7973 46.3466L69.2305 44.5877Z\" fill=\"#00E6E9\"/>\\n<path d=\"M74.7977 46.3466C74.8074 48.2989 73.4254 50.6861 71.7242 51.6718L37.7626 71.2815C36.0616 72.2576 34.6796 71.4651 34.6699 69.5128L41.5607 59.3553C42.421 59.4229 43.3004 59.4616 44.1897 59.4616C55.6809 59.4616 65.4714 53.2762 69.2308 44.5876L74.7977 46.3466Z\" fill=\"#00E6E9\"/>\\n<path d=\"M41.5605 59.3552L34.6696 69.5128L34.6406 57.9539C36.8249 58.669 39.1443 59.1523 41.5605 59.3552Z\" fill=\"#00E6E9\"/>\\n<path d=\"M74.7391 23.1515L69.8488 30.3614C69.1239 28.1868 68.0222 26.1476 66.6016 24.3016L71.6368 21.3926C73.3378 20.4068 74.7295 21.1993 74.7391 23.1515Z\" fill=\"#FFD63C\"/>\\n<path d=\"M74.7992 46.9477C74.7391 46.9477 74.6776 46.9374 74.619 46.9199L61.617 42.8139C61.4354 42.7568 61.2933 42.6176 61.2303 42.4389C61.1688 42.2587 61.1937 42.061 61.3006 41.9042L74.2381 22.8188C74.3875 22.6005 74.6541 22.5038 74.9105 22.5815C75.1624 22.6591 75.3338 22.8906 75.3353 23.1542L75.3997 46.3456C75.3997 46.5375 75.3089 46.7177 75.1551 46.8305C75.0496 46.9067 74.9251 46.9477 74.7992 46.9477ZM62.745 41.9116L74.1971 45.5283L74.14 25.1025L62.745 41.9116Z\" fill=\"black\"/>\\n<path d=\"M36.3843 72.3042C35.9873 72.3042 35.6152 72.2075 35.2812 72.0156C34.5063 71.5703 34.0786 70.6826 34.0742 69.5152C34.0742 69.395 34.1108 69.2764 34.1782 69.1768L47.1143 50.0943C47.2637 49.876 47.5405 49.7837 47.791 49.8584L53.7119 51.7305C53.8818 51.7847 54.144 51.7232 54.4224 51.562C54.7754 51.3599 55.127 51.0142 55.4141 50.5923L61.3027 41.9043C61.4507 41.6861 61.7305 41.5923 61.9795 41.6685L74.9814 45.7744C75.2305 45.8535 75.4004 46.085 75.4019 46.3457C75.4077 48.5269 73.9268 51.0948 72.0283 52.1905L38.0645 71.8003C37.4844 72.1343 36.9131 72.3042 36.3843 72.3042ZM35.2798 69.6895C35.3164 70.3106 35.5303 70.7749 35.8804 70.9756C36.2627 71.1968 36.8428 71.1206 37.4639 70.7603L71.4277 51.1504C72.8135 50.3506 73.9985 48.4302 74.1772 46.7793L62.0454 42.9488L56.4072 51.2661C56.0147 51.8448 55.5356 52.3062 55.023 52.6021C54.4399 52.939 53.8643 53.0342 53.3545 52.876L47.8569 51.1387L35.2798 69.6895Z\" fill=\"black\"/>\\n<path d=\"M34.6743 70.1143C34.6157 70.1143 34.5571 70.1055 34.4985 70.088C34.2466 70.0103 34.0752 69.7789 34.0737 69.5152L34.0078 46.3238C34.0078 46.1319 34.0986 45.9517 34.2524 45.8389C34.4077 45.7261 34.6069 45.6939 34.7886 45.7496L47.7905 49.8585C47.9722 49.9156 48.1143 50.0548 48.1772 50.2349C48.2388 50.4136 48.2139 50.6114 48.1069 50.7681L35.1709 69.8507C35.0566 70.0176 34.8691 70.1143 34.6743 70.1143ZM35.2104 47.1426L35.269 67.567L46.6626 50.7608L35.2104 47.1426Z\" fill=\"black\"/>\\n<path d=\"M53.8506 52.9509C53.6792 52.9509 53.5137 52.926 53.354 52.8762L34.4282 46.8952C34.1792 46.8161 34.0093 46.5847 34.0078 46.3239C34.0034 44.1413 35.4829 41.5749 37.377 40.4821L71.3408 20.8722C72.3633 20.2834 73.3521 20.2101 74.1299 20.6555C74.9048 21.1022 75.3325 21.9885 75.3369 23.1545C75.3369 23.2746 75.3003 23.3932 75.2329 23.4929L56.4068 51.2663C56.0142 51.8449 55.5352 52.3063 55.0225 52.6022C54.6226 52.8337 54.2256 52.9509 53.8506 52.9509ZM35.2324 45.8903L53.7114 51.7307C53.8814 51.7849 54.1436 51.7233 54.4219 51.5622C54.7749 51.36 55.1265 51.0143 55.4136 50.5925L74.1314 22.9802C74.0947 22.3605 73.8809 21.8976 73.5308 21.6955C73.1455 21.4758 72.5625 21.5519 71.9414 21.9123L37.9775 41.5222C36.5947 42.319 35.4126 44.2394 35.2324 45.8903Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a8zevn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"24/7 Security Operations Center (SOC) and Support\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"24/7 Security Operations Center (SOC) and Support\"})}),className:\"framer-xthnpd\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"Continuous oversight of your compliance status with real-time updates and protection against data breaches.\"})}),className:\"framer-1pojwiz\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yl46gq\",\"data-framer-name\":\"customized plan\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ddb9s1 hidden-1y5d6pl hidden-13depyn\",\"data-framer-name\":\"plan\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:102,intrinsicWidth:102,svg:'<svg width=\"102\" height=\"102\" viewBox=\"0 0 102 102\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M84.1972 8.27794C87.7005 6.25635 90.5499 7.89075 90.5613 11.9141L90.6749 51.9554C90.6863 55.9903 87.8554 60.8911 84.3522 62.9127L24.3622 97.5307C20.8592 99.5521 18.0098 97.9293 17.9984 93.8944L17.8848 53.8531C17.8734 49.8297 20.7043 44.9174 24.2073 42.896L84.1972 8.27794Z\" fill=\"white\"/>\\n<path d=\"M90.6776 51.9501C90.6926 55.985 87.8578 60.8901 84.3477 62.915L24.3627 97.535C20.8525 99.5451 18.0177 97.925 18.0027 93.8901L17.9727 82.0999C23.3124 82.415 28.8777 82.175 34.5477 81.305C66.6176 76.37 89.6727 53.2249 86.0425 29.6299C85.0376 23.0451 82.0526 17.12 77.5827 12.11L84.1975 8.28496C87.7077 6.26 90.5575 7.89495 90.5575 11.915L90.6776 51.9501Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M21.5166 99.0033C20.8077 99.0033 20.1485 98.8363 19.5625 98.4994C18.1724 97.6996 17.4048 96.0648 17.3975 93.8954L17.2832 53.8539C17.2715 49.6395 20.2422 44.4906 23.9058 42.3754L83.8955 7.75819C85.7852 6.66981 87.5972 6.50868 88.9947 7.31288C90.3848 8.11415 91.1538 9.74745 91.1612 11.9125L91.2754 51.954C91.2857 56.1698 88.3135 61.3187 84.6514 63.4325L24.6617 98.0512C23.5645 98.684 22.4937 99.0033 21.5166 99.0033ZM84.4961 8.79823L24.5064 43.4154C21.1739 45.3388 18.4727 50.0189 18.4844 53.851L18.5987 93.8925C18.6031 95.6151 19.1582 96.8822 20.1617 97.4594C21.168 98.0409 22.5552 97.8812 24.0611 97.0111L84.0508 62.3925C87.3819 60.4706 90.0845 55.789 90.0743 51.9569L89.96 11.9154C89.9556 10.1957 89.4004 8.93153 88.3955 8.35292C87.3833 7.76991 85.9976 7.93104 84.4961 8.79823Z\" fill=\"black\"/>\\n<path d=\"M82.1564 4.025C80.9939 3.35895 79.3978 3.45199 77.6461 4.47433L17.6467 39.0837C15.637 40.2479 13.8736 42.3689 12.7168 44.719L19.2633 48.5334C20.4216 46.1837 22.1918 44.06 24.2031 42.8947L84.2025 8.28531C85.9542 7.26298 87.5503 7.16993 88.6977 7.83617L82.1564 4.025Z\" fill=\"#FFD63C\"/>\\n<path d=\"M19.2636 49.1345C19.1581 49.1345 19.0541 49.1067 18.9618 49.0525L12.4155 45.238C12.143 45.0798 12.0405 44.7371 12.1781 44.4543C13.4452 41.8806 15.3276 39.7346 17.3461 38.5657L77.3461 3.95434C79.2255 2.85718 81.0434 2.69751 82.454 3.50317C82.4555 3.50464 82.457 3.5061 82.4584 3.5061L88.9989 7.31762C89.2861 7.48462 89.3827 7.85229 89.2157 8.13794C89.0487 8.42505 88.684 8.52319 88.3954 8.35473C87.4037 7.78052 85.9843 7.94165 84.5063 8.80444L24.5033 43.4143C22.6811 44.4705 20.9672 46.4333 19.8012 48.7991C19.728 48.9485 19.5961 49.0598 19.4364 49.1082C19.3808 49.1257 19.3222 49.1345 19.2636 49.1345ZM13.5112 44.488L19.0204 47.6975C20.2758 45.3801 22.0307 43.4597 23.9028 42.3757L83.9028 7.76587C84.6029 7.35718 85.2914 7.07886 85.9521 6.93091L81.8578 4.54468C80.8339 3.9602 79.4452 4.11987 77.9482 4.99292L17.9467 39.6042C16.2577 40.5813 14.6625 42.345 13.5112 44.488Z\" fill=\"black\"/>\\n<path d=\"M11.3242 50.0519L11.4483 90.0833C11.4483 92.0974 12.1613 93.507 13.2927 94.1578L19.8491 97.9689C18.7176 97.3027 18.0047 95.8929 18.0047 93.8943L17.8806 53.8474C17.8741 52.1388 18.4062 50.2759 19.2648 48.5334L12.7183 44.719C11.8585 46.4654 11.3242 48.3346 11.3242 50.0519Z\" fill=\"#2E46C0\"/>\\n<path d=\"M19.8506 98.5698C19.748 98.5698 19.644 98.5434 19.5488 98.4878L19.5459 98.4863L12.9922 94.6762C11.6123 93.8837 10.8491 92.2519 10.8491 90.0839L10.7246 50.0542C10.7246 48.3256 11.2285 46.3891 12.1821 44.4541C12.2554 44.3046 12.3872 44.1933 12.5469 44.145C12.7021 44.0966 12.8779 44.1157 13.0215 44.2006L19.5679 48.0151C19.8403 48.1733 19.9443 48.5161 19.8037 48.7988C18.9321 50.5683 18.4751 52.3129 18.4824 53.8452L18.6055 93.8925C18.6055 95.6005 19.1548 96.8632 20.1553 97.4521C20.4395 97.6206 20.5361 97.9868 20.3691 98.2724C20.2563 98.4628 20.0557 98.5698 19.8506 98.5698ZM11.9258 50.0512L12.0503 90.0825C12.0503 91.8037 12.5981 93.0664 13.5928 93.6376L17.7031 96.0268C17.5068 95.394 17.4043 94.6792 17.4043 93.894L17.2812 53.8496C17.2754 52.2836 17.6914 50.539 18.4883 48.7753L12.9849 45.5688C12.2905 47.1376 11.9258 48.6772 11.9258 50.0512Z\" fill=\"black\"/>\\n<path d=\"M43.0765 42.2725C43.3284 42.6792 43.4553 43.2062 43.4571 43.8439C43.4589 44.4864 43.3354 45.1531 43.0866 45.849C42.8378 46.5448 42.4261 47.234 41.8512 47.9213C41.2765 48.6036 40.5343 49.2098 39.6248 49.7349L37.0045 51.2477L37.0145 54.7859C37.0151 54.9969 36.949 55.2127 36.82 55.4313C36.6911 55.6498 36.5369 55.806 36.3533 55.912C36.1697 56.018 36.0151 56.04 35.8938 55.9661C35.7682 55.8945 35.7051 55.7532 35.7045 55.5423L35.6758 45.4215C35.6752 45.2106 35.7373 44.997 35.862 44.7762C35.9826 44.5577 36.1368 44.3919 36.3203 44.2859L39.6039 42.3901C40.5135 41.865 41.2567 41.6135 41.8334 41.6359C42.4103 41.6534 42.8246 41.8656 43.0765 42.2725ZM41.5549 46.5509C41.95 45.8906 42.1487 45.2428 42.1469 44.6003C42.1451 43.9627 41.9433 43.5413 41.5458 43.3387C41.144 43.1432 40.4549 43.325 39.4786 43.8887L36.9877 45.3268L37.0005 49.8239L39.4914 48.3857C40.4677 47.8221 41.1555 47.2088 41.5549 46.5509Z\" fill=\"black\"/>\\n<path d=\"M45.9922 38.6207C46.1758 38.5147 46.3304 38.5023 46.4602 38.5762C46.594 38.6478 46.6571 38.7891 46.6577 39L46.6843 48.3585L51.3907 45.6412C51.5742 45.5352 51.7288 45.5228 51.8586 45.5967C51.9883 45.6708 52.0556 45.8096 52.0562 46.0206C52.0568 46.2315 51.9905 46.4474 51.8616 46.6611C51.7327 46.8796 51.5785 47.0407 51.3949 47.1467L46.2838 50.0976C46.0376 50.2397 45.8204 50.2643 45.6446 50.1593C45.4646 50.0615 45.3763 49.8675 45.3755 49.5799L45.3477 39.7564C45.3471 39.5454 45.4091 39.3319 45.5339 39.111C45.6587 38.8901 45.8128 38.7243 45.9922 38.6207Z\" fill=\"black\"/>\\n<path d=\"M61.9291 40.0716C61.9796 40.1769 62.0049 40.2728 62.0052 40.3591C62.0058 40.57 61.9437 40.7835 61.8273 40.9948C61.7067 41.2085 61.5483 41.3671 61.3564 41.478C61.2229 41.555 61.1017 41.5866 60.9889 41.5701C60.8802 41.5464 60.7964 41.4844 60.7376 41.3742L59.7957 39.3344L54.9015 42.1601L53.9743 45.279C53.9163 45.4566 53.8331 45.6151 53.7207 45.7664C53.6125 45.9105 53.4875 46.0211 53.3539 46.0982C53.1619 46.209 53.0074 46.231 52.886 46.1571C52.7646 46.0831 52.7057 45.9394 52.7051 45.7285C52.7048 45.6422 52.7295 45.5174 52.7751 45.3567L56.4185 33.2791C56.4931 33.0392 56.601 32.8136 56.7425 32.607C56.8799 32.3981 57.0507 32.237 57.251 32.1213L57.397 32.037C57.5974 31.9214 57.7686 31.885 57.9067 31.9349C58.0447 31.9801 58.1537 32.0804 58.2334 32.2313L61.9291 40.0716ZM55.4025 40.4926L59.2869 38.25L57.3274 33.9981L55.4025 40.4926Z\" fill=\"black\"/>\\n<path d=\"M72.1894 23.4952C72.373 23.3892 72.5276 23.3768 72.6573 23.4507C72.787 23.5247 72.8543 23.6636 72.8549 23.8745L72.8829 33.746C72.8837 34.0432 72.7885 34.3528 72.6055 34.6697C72.4183 34.9891 72.1934 35.2198 71.9346 35.3691L71.7636 35.4679C71.6092 35.557 71.4631 35.6029 71.3293 35.5986C71.1955 35.5894 71.0868 35.5465 70.9988 35.4628L65.4025 29.4353L65.4279 38.3815C65.4285 38.5924 65.3622 38.8083 65.2334 39.0268C65.1044 39.2453 64.9502 39.4016 64.7667 39.5076C64.5831 39.6136 64.4327 39.6332 64.3071 39.5616C64.1815 39.49 64.1184 39.3488 64.1178 39.1378L64.0898 29.2664C64.089 28.9691 64.1801 28.6573 64.3588 28.3379C64.5418 28.0162 64.7627 27.783 65.0214 27.6336L65.2091 27.5253C65.5136 27.3495 65.7812 27.3631 66.0033 27.5614L71.5701 33.5627L71.5448 24.6309C71.5442 24.4199 71.6063 24.2064 71.7311 23.9855C71.8558 23.7646 72.0058 23.6012 72.1894 23.4952Z\" fill=\"black\"/>\\n<path d=\"M81.2348 36.2898C81.8526 35.933 82.3482 36.2156 82.3502 36.9255L82.3933 53.0195C82.3953 53.7294 81.9029 54.5827 81.2851 54.9394L77.3323 57.2222C76.7147 57.5789 76.2189 57.2964 76.2169 56.5865L76.1738 40.4925C76.1718 39.7825 76.6645 38.9292 77.282 38.5726L81.2348 36.2898Z\" fill=\"#00E6E9\"/>\\n<path d=\"M76.8262 57.9754C76.6167 57.9754 76.4175 57.9242 76.2402 57.8231C75.8447 57.5946 75.6162 57.1449 75.6148 56.5882L75.5723 40.494C75.5693 39.5697 76.1743 38.5194 76.98 38.0536L80.9336 35.7713C81.4199 35.4901 81.9238 35.4608 82.3223 35.6878C82.7192 35.9163 82.9478 36.3661 82.9492 36.9242L82.9917 53.0184C82.9946 53.9442 82.3897 54.9945 81.5825 55.4588L77.6304 57.7425C77.3609 57.8978 77.0855 57.9754 76.8262 57.9754ZM81.7158 36.7279C81.7041 36.7367 81.6397 36.7484 81.5342 36.8084L77.5806 39.0921C77.1484 39.3426 76.7705 39.9959 76.7734 40.4896L76.8159 56.5853C76.8159 56.7025 76.8379 56.7625 76.8482 56.7845C76.8599 56.7743 76.9243 56.764 77.0298 56.7025L80.9834 54.4188C81.4155 54.1698 81.7935 53.5179 81.7905 53.0228L81.7481 36.9271C81.7481 36.8099 81.7261 36.7498 81.7158 36.7279Z\" fill=\"black\"/>\\n<path d=\"M70.3977 47.6231C71.0067 47.2714 71.5112 47.5591 71.5131 48.2589L71.5486 59.2821C71.5506 59.992 71.0493 60.8503 70.4404 61.2019L66.479 63.4897C65.8701 63.8414 65.3656 63.5639 65.3636 62.854L65.3281 51.8308C65.3262 51.131 65.8274 50.2625 66.4363 49.9109L70.3977 47.6231Z\" fill=\"#FFD63C\"/>\\n<path d=\"M65.9775 64.2407C65.7681 64.2407 65.5689 64.1894 65.3901 64.0869C64.9932 63.8598 64.7647 63.4101 64.7617 62.8564L64.7266 51.832C64.7251 50.9194 65.3447 49.8471 66.1357 49.3901L70.0967 47.1035C70.5772 46.8281 71.0855 46.7973 71.4839 47.0288C71.8823 47.2573 72.1108 47.7055 72.1123 48.2578L72.1489 59.2807C72.1504 60.208 71.5439 61.2568 70.7397 61.7212L66.7788 64.0093C66.5107 64.1631 66.2368 64.2407 65.9775 64.2407ZM70.6973 48.1435L66.7363 50.4302C66.3115 50.6748 65.9263 51.3413 65.9277 51.8291L65.9629 62.852C65.9629 62.9912 65.9951 63.0469 66.001 63.0571C65.9937 63.0425 66.0669 63.0337 66.1782 62.9692L70.1392 60.6811C70.564 60.4365 70.9492 59.77 70.9478 59.2837L70.9111 48.2607C70.9111 48.1333 70.8833 48.0703 70.873 48.0586C70.8818 48.0703 70.8115 48.0776 70.6973 48.1435Z\" fill=\"black\"/>\\n<path d=\"M59.5621 58.9549C60.1707 58.6034 60.6752 58.8809 60.6772 59.5908L60.705 65.5446C60.707 66.2546 60.2058 67.1129 59.5971 67.4644L55.6354 69.7523C55.0265 70.104 54.522 69.8265 54.52 69.1165L54.4922 63.1627C54.4902 62.4528 54.9914 61.5945 55.6003 61.2428L59.5621 58.9549Z\" fill=\"#00E6E9\"/>\\n<path d=\"M55.1343 70.5044C54.9248 70.5044 54.7256 70.4531 54.5483 70.3506C54.1499 70.1235 53.9214 69.6738 53.9185 69.1186L53.8906 63.1655C53.8892 62.2368 54.4956 61.1865 55.2998 60.7221L59.2607 58.4341C59.7471 58.1543 60.2495 58.1279 60.6494 58.3564C61.0464 58.5849 61.2749 59.0332 61.2778 59.5884L61.3057 65.5415C61.3071 66.4702 60.7007 67.5205 59.8965 67.9848L55.9355 70.2715C55.6675 70.4253 55.3936 70.5044 55.1343 70.5044ZM59.8613 59.4741L55.9004 61.7622C55.4756 62.0068 55.0903 62.6733 55.0918 63.1611L55.1196 69.1128C55.1196 69.2329 55.1431 69.2915 55.1533 69.312C55.1636 69.3032 55.2266 69.2944 55.335 69.2329L59.2959 66.9448C59.7207 66.7002 60.106 66.0337 60.1045 65.5459L60.0767 59.5942C60.0767 59.4521 60.0444 59.3965 60.0386 59.3877C60.0444 59.4009 59.9727 59.4096 59.8613 59.4741Z\" fill=\"black\"/>\\n<path d=\"M26.1649 70.6844C25.9583 70.6844 25.7562 70.576 25.6449 70.3841C25.4793 70.097 25.5775 69.7293 25.8646 69.5638L46.598 57.5931C46.8851 57.4305 47.2528 57.5243 47.4183 57.8128C47.5838 58.0999 47.4857 58.4676 47.1986 58.6331L26.4652 70.6038C26.37 70.658 26.2674 70.6844 26.1649 70.6844Z\" fill=\"black\"/>\\n<path d=\"M26.1649 79.103C25.9583 79.103 25.7562 78.9946 25.6449 78.8027C25.4793 78.5156 25.5775 78.1479 25.8646 77.9824L38.6908 70.5776C38.9764 70.4135 39.3441 70.5102 39.5111 70.7973C39.6766 71.0844 39.5785 71.4521 39.2914 71.6176L26.4652 79.0224C26.37 79.0766 26.2674 79.103 26.1649 79.103Z\" fill=\"black\"/>\\n<path d=\"M42.4832 69.6826C42.2767 69.6826 42.0746 69.5742 41.9632 69.3823C41.7977 69.0952 41.8958 68.7276 42.183 68.562L46.598 66.0117C46.8851 65.8491 47.2528 65.9443 47.4183 66.2315C47.5838 66.5186 47.4857 66.8862 47.1986 67.0518L42.7835 69.6021C42.6883 69.6563 42.5858 69.6826 42.4832 69.6826Z\" fill=\"black\"/>\\n<path d=\"M26.1649 87.5214C25.9583 87.5214 25.7562 87.413 25.6449 87.2211C25.4793 86.934 25.5775 86.5663 25.8646 86.4008L30.3441 83.8154C30.6312 83.6513 30.9989 83.748 31.1644 84.0351C31.3299 84.3222 31.2318 84.6899 30.9447 84.8554L26.4652 87.4408C26.37 87.495 26.2674 87.5214 26.1649 87.5214Z\" fill=\"black\"/>\\n<path d=\"M34.4793 82.7227C34.2728 82.7227 34.0706 82.6143 33.9593 82.4224C33.7938 82.1353 33.8919 81.7676 34.179 81.6021L46.598 74.4317C46.8851 74.2691 47.2528 74.3643 47.4183 74.6514C47.5838 74.9385 47.4857 75.3062 47.1986 75.4717L34.7796 82.6421C34.6844 82.6963 34.5819 82.7227 34.4793 82.7227Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jwt4yt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"Customized Compliance Plan\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"Customized Compliance Plan\"})}),className:\"framer-15b7a3m\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"Tailored security protocols and processes designed specifically for your business, with minimal disruption to your daily operations.\"})}),className:\"framer-1x6qvhf\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-gstp3k hidden-72rtr7 hidden-1y5d6pl\",\"data-framer-name\":\"statistics_14669309\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:102,intrinsicWidth:102,svg:'<svg width=\"102\" height=\"102\" viewBox=\"0 0 102 102\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M84.1972 8.27794C87.7005 6.25635 90.5499 7.89075 90.5613 11.9141L90.6749 51.9554C90.6863 55.9903 87.8554 60.8911 84.3522 62.9127L24.3622 97.5307C20.8592 99.5521 18.0098 97.9293 17.9984 93.8944L17.8848 53.8531C17.8734 49.8297 20.7043 44.9174 24.2073 42.896L84.1972 8.27794Z\" fill=\"white\"/>\\n<path d=\"M90.6776 51.9501C90.6926 55.985 87.8578 60.8901 84.3477 62.915L24.3627 97.535C20.8525 99.5451 18.0177 97.925 18.0027 93.8901L17.9727 82.0999C23.3124 82.415 28.8777 82.175 34.5477 81.305C66.6176 76.37 89.6727 53.2249 86.0425 29.6299C85.0376 23.0451 82.0526 17.12 77.5827 12.11L84.1975 8.28496C87.7077 6.26 90.5575 7.89495 90.5575 11.915L90.6776 51.9501Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M21.5166 99.0033C20.8077 99.0033 20.1485 98.8363 19.5625 98.4994C18.1724 97.6996 17.4048 96.0648 17.3975 93.8954L17.2832 53.8539C17.2715 49.6395 20.2422 44.4906 23.9058 42.3754L83.8955 7.75819C85.7852 6.66981 87.5972 6.50868 88.9947 7.31288C90.3848 8.11415 91.1538 9.74745 91.1612 11.9125L91.2754 51.954C91.2857 56.1698 88.3135 61.3187 84.6514 63.4325L24.6617 98.0512C23.5645 98.684 22.4937 99.0033 21.5166 99.0033ZM84.4961 8.79823L24.5064 43.4154C21.1739 45.3388 18.4727 50.0189 18.4844 53.851L18.5987 93.8925C18.6031 95.6151 19.1582 96.8822 20.1617 97.4594C21.168 98.0409 22.5552 97.8812 24.0611 97.0111L84.0508 62.3925C87.3819 60.4706 90.0845 55.789 90.0743 51.9569L89.96 11.9154C89.9556 10.1957 89.4004 8.93153 88.3955 8.35292C87.3833 7.76991 85.9976 7.93104 84.4961 8.79823Z\" fill=\"black\"/>\\n<path d=\"M82.1564 4.025C80.9939 3.35895 79.3978 3.45199 77.6461 4.47433L17.6467 39.0837C15.637 40.2479 13.8736 42.3689 12.7168 44.719L19.2633 48.5334C20.4216 46.1837 22.1918 44.06 24.2031 42.8947L84.2025 8.28531C85.9542 7.26298 87.5503 7.16993 88.6977 7.83617L82.1564 4.025Z\" fill=\"#FFD63C\"/>\\n<path d=\"M19.2636 49.1345C19.1581 49.1345 19.0541 49.1067 18.9618 49.0525L12.4155 45.238C12.143 45.0798 12.0405 44.7371 12.1781 44.4543C13.4452 41.8806 15.3276 39.7346 17.3461 38.5657L77.3461 3.95434C79.2255 2.85718 81.0434 2.69751 82.454 3.50317C82.4555 3.50464 82.457 3.5061 82.4584 3.5061L88.9989 7.31762C89.2861 7.48462 89.3827 7.85229 89.2157 8.13794C89.0487 8.42505 88.684 8.52319 88.3954 8.35473C87.4037 7.78052 85.9843 7.94165 84.5063 8.80444L24.5033 43.4143C22.6811 44.4705 20.9672 46.4333 19.8012 48.7991C19.728 48.9485 19.5961 49.0598 19.4364 49.1082C19.3808 49.1257 19.3222 49.1345 19.2636 49.1345ZM13.5112 44.488L19.0204 47.6975C20.2758 45.3801 22.0307 43.4597 23.9028 42.3757L83.9028 7.76587C84.6029 7.35718 85.2914 7.07886 85.9521 6.93091L81.8578 4.54468C80.8339 3.9602 79.4452 4.11987 77.9482 4.99292L17.9467 39.6042C16.2577 40.5813 14.6625 42.345 13.5112 44.488Z\" fill=\"black\"/>\\n<path d=\"M11.3242 50.0519L11.4483 90.0833C11.4483 92.0974 12.1613 93.507 13.2927 94.1578L19.8491 97.9689C18.7176 97.3027 18.0047 95.8929 18.0047 93.8943L17.8806 53.8474C17.8741 52.1388 18.4062 50.2759 19.2648 48.5334L12.7183 44.719C11.8585 46.4654 11.3242 48.3346 11.3242 50.0519Z\" fill=\"#2E46C0\"/>\\n<path d=\"M19.8506 98.5698C19.748 98.5698 19.644 98.5434 19.5488 98.4878L19.5459 98.4863L12.9922 94.6762C11.6123 93.8837 10.8491 92.2519 10.8491 90.0839L10.7246 50.0542C10.7246 48.3256 11.2285 46.3891 12.1821 44.4541C12.2554 44.3046 12.3872 44.1933 12.5469 44.145C12.7021 44.0966 12.8779 44.1157 13.0215 44.2006L19.5679 48.0151C19.8403 48.1733 19.9443 48.5161 19.8037 48.7988C18.9321 50.5683 18.4751 52.3129 18.4824 53.8452L18.6055 93.8925C18.6055 95.6005 19.1548 96.8632 20.1553 97.4521C20.4395 97.6206 20.5361 97.9868 20.3691 98.2724C20.2563 98.4628 20.0557 98.5698 19.8506 98.5698ZM11.9258 50.0512L12.0503 90.0825C12.0503 91.8037 12.5981 93.0664 13.5928 93.6376L17.7031 96.0268C17.5068 95.394 17.4043 94.6792 17.4043 93.894L17.2812 53.8496C17.2754 52.2836 17.6914 50.539 18.4883 48.7753L12.9849 45.5688C12.2905 47.1376 11.9258 48.6772 11.9258 50.0512Z\" fill=\"black\"/>\\n<path d=\"M43.0765 42.2725C43.3284 42.6792 43.4553 43.2062 43.4571 43.8439C43.4589 44.4864 43.3354 45.1531 43.0866 45.849C42.8378 46.5448 42.4261 47.234 41.8512 47.9213C41.2765 48.6036 40.5343 49.2098 39.6248 49.7349L37.0045 51.2477L37.0145 54.7859C37.0151 54.9969 36.949 55.2127 36.82 55.4313C36.6911 55.6498 36.5369 55.806 36.3533 55.912C36.1697 56.018 36.0151 56.04 35.8938 55.9661C35.7682 55.8945 35.7051 55.7532 35.7045 55.5423L35.6758 45.4215C35.6752 45.2106 35.7373 44.997 35.862 44.7762C35.9826 44.5577 36.1368 44.3919 36.3203 44.2859L39.6039 42.3901C40.5135 41.865 41.2567 41.6135 41.8334 41.6359C42.4103 41.6534 42.8246 41.8656 43.0765 42.2725ZM41.5549 46.5509C41.95 45.8906 42.1487 45.2428 42.1469 44.6003C42.1451 43.9627 41.9433 43.5413 41.5458 43.3387C41.144 43.1432 40.4549 43.325 39.4786 43.8887L36.9877 45.3268L37.0005 49.8239L39.4914 48.3857C40.4677 47.8221 41.1555 47.2088 41.5549 46.5509Z\" fill=\"black\"/>\\n<path d=\"M45.9922 38.6207C46.1758 38.5147 46.3304 38.5023 46.4602 38.5762C46.594 38.6478 46.6571 38.7891 46.6577 39L46.6843 48.3585L51.3907 45.6412C51.5742 45.5352 51.7288 45.5228 51.8586 45.5967C51.9883 45.6708 52.0556 45.8096 52.0562 46.0206C52.0568 46.2315 51.9905 46.4474 51.8616 46.6611C51.7327 46.8796 51.5785 47.0407 51.3949 47.1467L46.2838 50.0976C46.0376 50.2397 45.8204 50.2643 45.6446 50.1593C45.4646 50.0615 45.3763 49.8675 45.3755 49.5799L45.3477 39.7564C45.3471 39.5454 45.4091 39.3319 45.5339 39.111C45.6587 38.8901 45.8128 38.7243 45.9922 38.6207Z\" fill=\"black\"/>\\n<path d=\"M61.9291 40.0716C61.9796 40.1769 62.0049 40.2728 62.0052 40.3591C62.0058 40.57 61.9437 40.7835 61.8273 40.9948C61.7067 41.2085 61.5483 41.3671 61.3564 41.478C61.2229 41.555 61.1017 41.5866 60.9889 41.5701C60.8802 41.5464 60.7964 41.4844 60.7376 41.3742L59.7957 39.3344L54.9015 42.1601L53.9743 45.279C53.9163 45.4566 53.8331 45.6151 53.7207 45.7664C53.6125 45.9105 53.4875 46.0211 53.3539 46.0982C53.1619 46.209 53.0074 46.231 52.886 46.1571C52.7646 46.0831 52.7057 45.9394 52.7051 45.7285C52.7048 45.6422 52.7295 45.5174 52.7751 45.3567L56.4185 33.2791C56.4931 33.0392 56.601 32.8136 56.7425 32.607C56.8799 32.3981 57.0507 32.237 57.251 32.1213L57.397 32.037C57.5974 31.9214 57.7686 31.885 57.9067 31.9349C58.0447 31.9801 58.1537 32.0804 58.2334 32.2313L61.9291 40.0716ZM55.4025 40.4926L59.2869 38.25L57.3274 33.9981L55.4025 40.4926Z\" fill=\"black\"/>\\n<path d=\"M72.1894 23.4952C72.373 23.3892 72.5276 23.3768 72.6573 23.4507C72.787 23.5247 72.8543 23.6636 72.8549 23.8745L72.8829 33.746C72.8837 34.0432 72.7885 34.3528 72.6055 34.6697C72.4183 34.9891 72.1934 35.2198 71.9346 35.3691L71.7636 35.4679C71.6092 35.557 71.4631 35.6029 71.3293 35.5986C71.1955 35.5894 71.0868 35.5465 70.9988 35.4628L65.4025 29.4353L65.4279 38.3815C65.4285 38.5924 65.3622 38.8083 65.2334 39.0268C65.1044 39.2453 64.9502 39.4016 64.7667 39.5076C64.5831 39.6136 64.4327 39.6332 64.3071 39.5616C64.1815 39.49 64.1184 39.3488 64.1178 39.1378L64.0898 29.2664C64.089 28.9691 64.1801 28.6573 64.3588 28.3379C64.5418 28.0162 64.7627 27.783 65.0214 27.6336L65.2091 27.5253C65.5136 27.3495 65.7812 27.3631 66.0033 27.5614L71.5701 33.5627L71.5448 24.6309C71.5442 24.4199 71.6063 24.2064 71.7311 23.9855C71.8558 23.7646 72.0058 23.6012 72.1894 23.4952Z\" fill=\"black\"/>\\n<path d=\"M81.2348 36.2898C81.8526 35.933 82.3482 36.2156 82.3502 36.9255L82.3933 53.0195C82.3953 53.7294 81.9029 54.5827 81.2851 54.9394L77.3323 57.2222C76.7147 57.5789 76.2189 57.2964 76.2169 56.5865L76.1738 40.4925C76.1718 39.7825 76.6645 38.9292 77.282 38.5726L81.2348 36.2898Z\" fill=\"#00E6E9\"/>\\n<path d=\"M76.8262 57.9754C76.6167 57.9754 76.4175 57.9242 76.2402 57.8231C75.8447 57.5946 75.6162 57.1449 75.6148 56.5882L75.5723 40.494C75.5693 39.5697 76.1743 38.5194 76.98 38.0536L80.9336 35.7713C81.4199 35.4901 81.9238 35.4608 82.3223 35.6878C82.7192 35.9163 82.9478 36.3661 82.9492 36.9242L82.9917 53.0184C82.9946 53.9442 82.3897 54.9945 81.5825 55.4588L77.6304 57.7425C77.3609 57.8978 77.0855 57.9754 76.8262 57.9754ZM81.7158 36.7279C81.7041 36.7367 81.6397 36.7484 81.5342 36.8084L77.5806 39.0921C77.1484 39.3426 76.7705 39.9959 76.7734 40.4896L76.8159 56.5853C76.8159 56.7025 76.8379 56.7625 76.8482 56.7845C76.8599 56.7743 76.9243 56.764 77.0298 56.7025L80.9834 54.4188C81.4155 54.1698 81.7935 53.5179 81.7905 53.0228L81.7481 36.9271C81.7481 36.8099 81.7261 36.7498 81.7158 36.7279Z\" fill=\"black\"/>\\n<path d=\"M70.3977 47.6231C71.0067 47.2714 71.5112 47.5591 71.5131 48.2589L71.5486 59.2821C71.5506 59.992 71.0493 60.8503 70.4404 61.2019L66.479 63.4897C65.8701 63.8414 65.3656 63.5639 65.3636 62.854L65.3281 51.8308C65.3262 51.131 65.8274 50.2625 66.4363 49.9109L70.3977 47.6231Z\" fill=\"#FFD63C\"/>\\n<path d=\"M65.9775 64.2407C65.7681 64.2407 65.5689 64.1894 65.3901 64.0869C64.9932 63.8598 64.7647 63.4101 64.7617 62.8564L64.7266 51.832C64.7251 50.9194 65.3447 49.8471 66.1357 49.3901L70.0967 47.1035C70.5772 46.8281 71.0855 46.7973 71.4839 47.0288C71.8823 47.2573 72.1108 47.7055 72.1123 48.2578L72.1489 59.2807C72.1504 60.208 71.5439 61.2568 70.7397 61.7212L66.7788 64.0093C66.5107 64.1631 66.2368 64.2407 65.9775 64.2407ZM70.6973 48.1435L66.7363 50.4302C66.3115 50.6748 65.9263 51.3413 65.9277 51.8291L65.9629 62.852C65.9629 62.9912 65.9951 63.0469 66.001 63.0571C65.9937 63.0425 66.0669 63.0337 66.1782 62.9692L70.1392 60.6811C70.564 60.4365 70.9492 59.77 70.9478 59.2837L70.9111 48.2607C70.9111 48.1333 70.8833 48.0703 70.873 48.0586C70.8818 48.0703 70.8115 48.0776 70.6973 48.1435Z\" fill=\"black\"/>\\n<path d=\"M59.5621 58.9549C60.1707 58.6034 60.6752 58.8809 60.6772 59.5908L60.705 65.5446C60.707 66.2546 60.2058 67.1129 59.5971 67.4644L55.6354 69.7523C55.0265 70.104 54.522 69.8265 54.52 69.1165L54.4922 63.1627C54.4902 62.4528 54.9914 61.5945 55.6003 61.2428L59.5621 58.9549Z\" fill=\"#00E6E9\"/>\\n<path d=\"M55.1343 70.5044C54.9248 70.5044 54.7256 70.4531 54.5483 70.3506C54.1499 70.1235 53.9214 69.6738 53.9185 69.1186L53.8906 63.1655C53.8892 62.2368 54.4956 61.1865 55.2998 60.7221L59.2607 58.4341C59.7471 58.1543 60.2495 58.1279 60.6494 58.3564C61.0464 58.5849 61.2749 59.0332 61.2778 59.5884L61.3057 65.5415C61.3071 66.4702 60.7007 67.5205 59.8965 67.9848L55.9355 70.2715C55.6675 70.4253 55.3936 70.5044 55.1343 70.5044ZM59.8613 59.4741L55.9004 61.7622C55.4756 62.0068 55.0903 62.6733 55.0918 63.1611L55.1196 69.1128C55.1196 69.2329 55.1431 69.2915 55.1533 69.312C55.1636 69.3032 55.2266 69.2944 55.335 69.2329L59.2959 66.9448C59.7207 66.7002 60.106 66.0337 60.1045 65.5459L60.0767 59.5942C60.0767 59.4521 60.0444 59.3965 60.0386 59.3877C60.0444 59.4009 59.9727 59.4096 59.8613 59.4741Z\" fill=\"black\"/>\\n<path d=\"M26.1649 70.6844C25.9583 70.6844 25.7562 70.576 25.6449 70.3841C25.4793 70.097 25.5775 69.7293 25.8646 69.5638L46.598 57.5931C46.8851 57.4305 47.2528 57.5243 47.4183 57.8128C47.5838 58.0999 47.4857 58.4676 47.1986 58.6331L26.4652 70.6038C26.37 70.658 26.2674 70.6844 26.1649 70.6844Z\" fill=\"black\"/>\\n<path d=\"M26.1649 79.103C25.9583 79.103 25.7562 78.9946 25.6449 78.8027C25.4793 78.5156 25.5775 78.1479 25.8646 77.9824L38.6908 70.5776C38.9764 70.4135 39.3441 70.5102 39.5111 70.7973C39.6766 71.0844 39.5785 71.4521 39.2914 71.6176L26.4652 79.0224C26.37 79.0766 26.2674 79.103 26.1649 79.103Z\" fill=\"black\"/>\\n<path d=\"M42.4832 69.6826C42.2767 69.6826 42.0746 69.5742 41.9632 69.3823C41.7977 69.0952 41.8958 68.7276 42.183 68.562L46.598 66.0117C46.8851 65.8491 47.2528 65.9443 47.4183 66.2315C47.5838 66.5186 47.4857 66.8862 47.1986 67.0518L42.7835 69.6021C42.6883 69.6563 42.5858 69.6826 42.4832 69.6826Z\" fill=\"black\"/>\\n<path d=\"M26.1649 87.5214C25.9583 87.5214 25.7562 87.413 25.6449 87.2211C25.4793 86.934 25.5775 86.5663 25.8646 86.4008L30.3441 83.8154C30.6312 83.6513 30.9989 83.748 31.1644 84.0351C31.3299 84.3222 31.2318 84.6899 30.9447 84.8554L26.4652 87.4408C26.37 87.495 26.2674 87.5214 26.1649 87.5214Z\" fill=\"black\"/>\\n<path d=\"M34.4793 82.7227C34.2728 82.7227 34.0706 82.6143 33.9593 82.4224C33.7938 82.1353 33.8919 81.7676 34.179 81.6021L46.598 74.4317C46.8851 74.2691 47.2528 74.3643 47.4183 74.6514C47.5838 74.9385 47.4857 75.3062 47.1986 75.4717L34.7796 82.6421C34.6844 82.6963 34.5819 82.7227 34.4793 82.7227Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-sp0cv1 hidden-72rtr7 hidden-13depyn\",\"data-framer-name\":\"statistics_14669309\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:102,intrinsicWidth:102,svg:'<svg width=\"102\" height=\"102\" viewBox=\"0 0 102 102\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M84.1972 8.27794C87.7005 6.25635 90.5499 7.89075 90.5613 11.9141L90.6749 51.9554C90.6863 55.9903 87.8554 60.8911 84.3522 62.9127L24.3622 97.5307C20.8592 99.5521 18.0098 97.9293 17.9984 93.8944L17.8848 53.8531C17.8734 49.8297 20.7043 44.9174 24.2073 42.896L84.1972 8.27794Z\" fill=\"white\"/>\\n<path d=\"M90.6776 51.9501C90.6926 55.985 87.8578 60.8901 84.3477 62.915L24.3627 97.535C20.8525 99.5451 18.0177 97.925 18.0027 93.8901L17.9727 82.0999C23.3124 82.415 28.8777 82.175 34.5477 81.305C66.6176 76.37 89.6727 53.2249 86.0425 29.6299C85.0376 23.0451 82.0526 17.12 77.5827 12.11L84.1975 8.28496C87.7077 6.26 90.5575 7.89495 90.5575 11.915L90.6776 51.9501Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M21.5166 99.0033C20.8077 99.0033 20.1485 98.8363 19.5625 98.4994C18.1724 97.6996 17.4048 96.0648 17.3975 93.8954L17.2832 53.8539C17.2715 49.6395 20.2422 44.4906 23.9058 42.3754L83.8955 7.75819C85.7852 6.66981 87.5972 6.50868 88.9947 7.31288C90.3848 8.11415 91.1538 9.74745 91.1612 11.9125L91.2754 51.954C91.2857 56.1698 88.3135 61.3187 84.6514 63.4325L24.6617 98.0512C23.5645 98.684 22.4937 99.0033 21.5166 99.0033ZM84.4961 8.79823L24.5064 43.4154C21.1739 45.3388 18.4727 50.0189 18.4844 53.851L18.5987 93.8925C18.6031 95.6151 19.1582 96.8822 20.1617 97.4594C21.168 98.0409 22.5552 97.8812 24.0611 97.0111L84.0508 62.3925C87.3819 60.4706 90.0845 55.789 90.0743 51.9569L89.96 11.9154C89.9556 10.1957 89.4004 8.93153 88.3955 8.35292C87.3833 7.76991 85.9976 7.93104 84.4961 8.79823Z\" fill=\"black\"/>\\n<path d=\"M82.1564 4.025C80.9939 3.35895 79.3978 3.45199 77.6461 4.47433L17.6467 39.0837C15.637 40.2479 13.8736 42.3689 12.7168 44.719L19.2633 48.5334C20.4216 46.1837 22.1918 44.06 24.2031 42.8947L84.2025 8.28531C85.9542 7.26298 87.5503 7.16993 88.6977 7.83617L82.1564 4.025Z\" fill=\"#FFD63C\"/>\\n<path d=\"M19.2636 49.1345C19.1581 49.1345 19.0541 49.1067 18.9618 49.0525L12.4155 45.238C12.143 45.0798 12.0405 44.7371 12.1781 44.4543C13.4452 41.8806 15.3276 39.7346 17.3461 38.5657L77.3461 3.95434C79.2255 2.85718 81.0434 2.69751 82.454 3.50317C82.4555 3.50464 82.457 3.5061 82.4584 3.5061L88.9989 7.31762C89.2861 7.48462 89.3827 7.85229 89.2157 8.13794C89.0487 8.42505 88.684 8.52319 88.3954 8.35473C87.4037 7.78052 85.9843 7.94165 84.5063 8.80444L24.5033 43.4143C22.6811 44.4705 20.9672 46.4333 19.8012 48.7991C19.728 48.9485 19.5961 49.0598 19.4364 49.1082C19.3808 49.1257 19.3222 49.1345 19.2636 49.1345ZM13.5112 44.488L19.0204 47.6975C20.2758 45.3801 22.0307 43.4597 23.9028 42.3757L83.9028 7.76587C84.6029 7.35718 85.2914 7.07886 85.9521 6.93091L81.8578 4.54468C80.8339 3.9602 79.4452 4.11987 77.9482 4.99292L17.9467 39.6042C16.2577 40.5813 14.6625 42.345 13.5112 44.488Z\" fill=\"black\"/>\\n<path d=\"M11.3242 50.0519L11.4483 90.0833C11.4483 92.0974 12.1613 93.507 13.2927 94.1578L19.8491 97.9689C18.7176 97.3027 18.0047 95.8929 18.0047 93.8943L17.8806 53.8474C17.8741 52.1388 18.4062 50.2759 19.2648 48.5334L12.7183 44.719C11.8585 46.4654 11.3242 48.3346 11.3242 50.0519Z\" fill=\"#2E46C0\"/>\\n<path d=\"M19.8506 98.5698C19.748 98.5698 19.644 98.5434 19.5488 98.4878L19.5459 98.4863L12.9922 94.6762C11.6123 93.8837 10.8491 92.2519 10.8491 90.0839L10.7246 50.0542C10.7246 48.3256 11.2285 46.3891 12.1821 44.4541C12.2554 44.3046 12.3872 44.1933 12.5469 44.145C12.7021 44.0966 12.8779 44.1157 13.0215 44.2006L19.5679 48.0151C19.8403 48.1733 19.9443 48.5161 19.8037 48.7988C18.9321 50.5683 18.4751 52.3129 18.4824 53.8452L18.6055 93.8925C18.6055 95.6005 19.1548 96.8632 20.1553 97.4521C20.4395 97.6206 20.5361 97.9868 20.3691 98.2724C20.2563 98.4628 20.0557 98.5698 19.8506 98.5698ZM11.9258 50.0512L12.0503 90.0825C12.0503 91.8037 12.5981 93.0664 13.5928 93.6376L17.7031 96.0268C17.5068 95.394 17.4043 94.6792 17.4043 93.894L17.2812 53.8496C17.2754 52.2836 17.6914 50.539 18.4883 48.7753L12.9849 45.5688C12.2905 47.1376 11.9258 48.6772 11.9258 50.0512Z\" fill=\"black\"/>\\n<path d=\"M43.0765 42.2725C43.3284 42.6792 43.4553 43.2062 43.4571 43.8439C43.4589 44.4864 43.3354 45.1531 43.0866 45.849C42.8378 46.5448 42.4261 47.234 41.8512 47.9213C41.2765 48.6036 40.5343 49.2098 39.6248 49.7349L37.0045 51.2477L37.0145 54.7859C37.0151 54.9969 36.949 55.2127 36.82 55.4313C36.6911 55.6498 36.5369 55.806 36.3533 55.912C36.1697 56.018 36.0151 56.04 35.8938 55.9661C35.7682 55.8945 35.7051 55.7532 35.7045 55.5423L35.6758 45.4215C35.6752 45.2106 35.7373 44.997 35.862 44.7762C35.9826 44.5577 36.1368 44.3919 36.3203 44.2859L39.6039 42.3901C40.5135 41.865 41.2567 41.6135 41.8334 41.6359C42.4103 41.6534 42.8246 41.8656 43.0765 42.2725ZM41.5549 46.5509C41.95 45.8906 42.1487 45.2428 42.1469 44.6003C42.1451 43.9627 41.9433 43.5413 41.5458 43.3387C41.144 43.1432 40.4549 43.325 39.4786 43.8887L36.9877 45.3268L37.0005 49.8239L39.4914 48.3857C40.4677 47.8221 41.1555 47.2088 41.5549 46.5509Z\" fill=\"black\"/>\\n<path d=\"M45.9922 38.6207C46.1758 38.5147 46.3304 38.5023 46.4602 38.5762C46.594 38.6478 46.6571 38.7891 46.6577 39L46.6843 48.3585L51.3907 45.6412C51.5742 45.5352 51.7288 45.5228 51.8586 45.5967C51.9883 45.6708 52.0556 45.8096 52.0562 46.0206C52.0568 46.2315 51.9905 46.4474 51.8616 46.6611C51.7327 46.8796 51.5785 47.0407 51.3949 47.1467L46.2838 50.0976C46.0376 50.2397 45.8204 50.2643 45.6446 50.1593C45.4646 50.0615 45.3763 49.8675 45.3755 49.5799L45.3477 39.7564C45.3471 39.5454 45.4091 39.3319 45.5339 39.111C45.6587 38.8901 45.8128 38.7243 45.9922 38.6207Z\" fill=\"black\"/>\\n<path d=\"M61.9291 40.0716C61.9796 40.1769 62.0049 40.2728 62.0052 40.3591C62.0058 40.57 61.9437 40.7835 61.8273 40.9948C61.7067 41.2085 61.5483 41.3671 61.3564 41.478C61.2229 41.555 61.1017 41.5866 60.9889 41.5701C60.8802 41.5464 60.7964 41.4844 60.7376 41.3742L59.7957 39.3344L54.9015 42.1601L53.9743 45.279C53.9163 45.4566 53.8331 45.6151 53.7207 45.7664C53.6125 45.9105 53.4875 46.0211 53.3539 46.0982C53.1619 46.209 53.0074 46.231 52.886 46.1571C52.7646 46.0831 52.7057 45.9394 52.7051 45.7285C52.7048 45.6422 52.7295 45.5174 52.7751 45.3567L56.4185 33.2791C56.4931 33.0392 56.601 32.8136 56.7425 32.607C56.8799 32.3981 57.0507 32.237 57.251 32.1213L57.397 32.037C57.5974 31.9214 57.7686 31.885 57.9067 31.9349C58.0447 31.9801 58.1537 32.0804 58.2334 32.2313L61.9291 40.0716ZM55.4025 40.4926L59.2869 38.25L57.3274 33.9981L55.4025 40.4926Z\" fill=\"black\"/>\\n<path d=\"M72.1894 23.4952C72.373 23.3892 72.5276 23.3768 72.6573 23.4507C72.787 23.5247 72.8543 23.6636 72.8549 23.8745L72.8829 33.746C72.8837 34.0432 72.7885 34.3528 72.6055 34.6697C72.4183 34.9891 72.1934 35.2198 71.9346 35.3691L71.7636 35.4679C71.6092 35.557 71.4631 35.6029 71.3293 35.5986C71.1955 35.5894 71.0868 35.5465 70.9988 35.4628L65.4025 29.4353L65.4279 38.3815C65.4285 38.5924 65.3622 38.8083 65.2334 39.0268C65.1044 39.2453 64.9502 39.4016 64.7667 39.5076C64.5831 39.6136 64.4327 39.6332 64.3071 39.5616C64.1815 39.49 64.1184 39.3488 64.1178 39.1378L64.0898 29.2664C64.089 28.9691 64.1801 28.6573 64.3588 28.3379C64.5418 28.0162 64.7627 27.783 65.0214 27.6336L65.2091 27.5253C65.5136 27.3495 65.7812 27.3631 66.0033 27.5614L71.5701 33.5627L71.5448 24.6309C71.5442 24.4199 71.6063 24.2064 71.7311 23.9855C71.8558 23.7646 72.0058 23.6012 72.1894 23.4952Z\" fill=\"black\"/>\\n<path d=\"M81.2348 36.2898C81.8526 35.933 82.3482 36.2156 82.3502 36.9255L82.3933 53.0195C82.3953 53.7294 81.9029 54.5827 81.2851 54.9394L77.3323 57.2222C76.7147 57.5789 76.2189 57.2964 76.2169 56.5865L76.1738 40.4925C76.1718 39.7825 76.6645 38.9292 77.282 38.5726L81.2348 36.2898Z\" fill=\"#00E6E9\"/>\\n<path d=\"M76.8262 57.9754C76.6167 57.9754 76.4175 57.9242 76.2402 57.8231C75.8447 57.5946 75.6162 57.1449 75.6148 56.5882L75.5723 40.494C75.5693 39.5697 76.1743 38.5194 76.98 38.0536L80.9336 35.7713C81.4199 35.4901 81.9238 35.4608 82.3223 35.6878C82.7192 35.9163 82.9478 36.3661 82.9492 36.9242L82.9917 53.0184C82.9946 53.9442 82.3897 54.9945 81.5825 55.4588L77.6304 57.7425C77.3609 57.8978 77.0855 57.9754 76.8262 57.9754ZM81.7158 36.7279C81.7041 36.7367 81.6397 36.7484 81.5342 36.8084L77.5806 39.0921C77.1484 39.3426 76.7705 39.9959 76.7734 40.4896L76.8159 56.5853C76.8159 56.7025 76.8379 56.7625 76.8482 56.7845C76.8599 56.7743 76.9243 56.764 77.0298 56.7025L80.9834 54.4188C81.4155 54.1698 81.7935 53.5179 81.7905 53.0228L81.7481 36.9271C81.7481 36.8099 81.7261 36.7498 81.7158 36.7279Z\" fill=\"black\"/>\\n<path d=\"M70.3977 47.6231C71.0067 47.2714 71.5112 47.5591 71.5131 48.2589L71.5486 59.2821C71.5506 59.992 71.0493 60.8503 70.4404 61.2019L66.479 63.4897C65.8701 63.8414 65.3656 63.5639 65.3636 62.854L65.3281 51.8308C65.3262 51.131 65.8274 50.2625 66.4363 49.9109L70.3977 47.6231Z\" fill=\"#FFD63C\"/>\\n<path d=\"M65.9775 64.2407C65.7681 64.2407 65.5689 64.1894 65.3901 64.0869C64.9932 63.8598 64.7647 63.4101 64.7617 62.8564L64.7266 51.832C64.7251 50.9194 65.3447 49.8471 66.1357 49.3901L70.0967 47.1035C70.5772 46.8281 71.0855 46.7973 71.4839 47.0288C71.8823 47.2573 72.1108 47.7055 72.1123 48.2578L72.1489 59.2807C72.1504 60.208 71.5439 61.2568 70.7397 61.7212L66.7788 64.0093C66.5107 64.1631 66.2368 64.2407 65.9775 64.2407ZM70.6973 48.1435L66.7363 50.4302C66.3115 50.6748 65.9263 51.3413 65.9277 51.8291L65.9629 62.852C65.9629 62.9912 65.9951 63.0469 66.001 63.0571C65.9937 63.0425 66.0669 63.0337 66.1782 62.9692L70.1392 60.6811C70.564 60.4365 70.9492 59.77 70.9478 59.2837L70.9111 48.2607C70.9111 48.1333 70.8833 48.0703 70.873 48.0586C70.8818 48.0703 70.8115 48.0776 70.6973 48.1435Z\" fill=\"black\"/>\\n<path d=\"M59.5621 58.9549C60.1707 58.6034 60.6752 58.8809 60.6772 59.5908L60.705 65.5446C60.707 66.2546 60.2058 67.1129 59.5971 67.4644L55.6354 69.7523C55.0265 70.104 54.522 69.8265 54.52 69.1165L54.4922 63.1627C54.4902 62.4528 54.9914 61.5945 55.6003 61.2428L59.5621 58.9549Z\" fill=\"#00E6E9\"/>\\n<path d=\"M55.1343 70.5044C54.9248 70.5044 54.7256 70.4531 54.5483 70.3506C54.1499 70.1235 53.9214 69.6738 53.9185 69.1186L53.8906 63.1655C53.8892 62.2368 54.4956 61.1865 55.2998 60.7221L59.2607 58.4341C59.7471 58.1543 60.2495 58.1279 60.6494 58.3564C61.0464 58.5849 61.2749 59.0332 61.2778 59.5884L61.3057 65.5415C61.3071 66.4702 60.7007 67.5205 59.8965 67.9848L55.9355 70.2715C55.6675 70.4253 55.3936 70.5044 55.1343 70.5044ZM59.8613 59.4741L55.9004 61.7622C55.4756 62.0068 55.0903 62.6733 55.0918 63.1611L55.1196 69.1128C55.1196 69.2329 55.1431 69.2915 55.1533 69.312C55.1636 69.3032 55.2266 69.2944 55.335 69.2329L59.2959 66.9448C59.7207 66.7002 60.106 66.0337 60.1045 65.5459L60.0767 59.5942C60.0767 59.4521 60.0444 59.3965 60.0386 59.3877C60.0444 59.4009 59.9727 59.4096 59.8613 59.4741Z\" fill=\"black\"/>\\n<path d=\"M26.1649 70.6844C25.9583 70.6844 25.7562 70.576 25.6449 70.3841C25.4793 70.097 25.5775 69.7293 25.8646 69.5638L46.598 57.5931C46.8851 57.4305 47.2528 57.5243 47.4183 57.8128C47.5838 58.0999 47.4857 58.4676 47.1986 58.6331L26.4652 70.6038C26.37 70.658 26.2674 70.6844 26.1649 70.6844Z\" fill=\"black\"/>\\n<path d=\"M26.1649 79.103C25.9583 79.103 25.7562 78.9946 25.6449 78.8027C25.4793 78.5156 25.5775 78.1479 25.8646 77.9824L38.6908 70.5776C38.9764 70.4135 39.3441 70.5102 39.5111 70.7973C39.6766 71.0844 39.5785 71.4521 39.2914 71.6176L26.4652 79.0224C26.37 79.0766 26.2674 79.103 26.1649 79.103Z\" fill=\"black\"/>\\n<path d=\"M42.4832 69.6826C42.2767 69.6826 42.0746 69.5742 41.9632 69.3823C41.7977 69.0952 41.8958 68.7276 42.183 68.562L46.598 66.0117C46.8851 65.8491 47.2528 65.9443 47.4183 66.2315C47.5838 66.5186 47.4857 66.8862 47.1986 67.0518L42.7835 69.6021C42.6883 69.6563 42.5858 69.6826 42.4832 69.6826Z\" fill=\"black\"/>\\n<path d=\"M26.1649 87.5214C25.9583 87.5214 25.7562 87.413 25.6449 87.2211C25.4793 86.934 25.5775 86.5663 25.8646 86.4008L30.3441 83.8154C30.6312 83.6513 30.9989 83.748 31.1644 84.0351C31.3299 84.3222 31.2318 84.6899 30.9447 84.8554L26.4652 87.4408C26.37 87.495 26.2674 87.5214 26.1649 87.5214Z\" fill=\"black\"/>\\n<path d=\"M34.4793 82.7227C34.2728 82.7227 34.0706 82.6143 33.9593 82.4224C33.7938 82.1353 33.8919 81.7676 34.179 81.6021L46.598 74.4317C46.8851 74.2691 47.2528 74.3643 47.4183 74.6514C47.5838 74.9385 47.4857 75.3062 47.1986 75.4717L34.7796 82.6421C34.6844 82.6963 34.5819 82.7227 34.4793 82.7227Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kgans9\",\"data-framer-name\":\"hipaa compliance\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1t0opox hidden-1y5d6pl\",\"data-framer-name\":\"approved-document_14669375\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:102,intrinsicWidth:102,svg:'<svg width=\"102\" height=\"102\" viewBox=\"0 0 102 102\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M72.1482 7.30527C75.4195 5.41657 78.0892 6.92633 78.0998 10.6853L78.2591 66.8842C78.2698 70.6431 75.6174 75.2256 72.3461 77.1143L35.8529 98.1836C32.5816 100.072 29.922 98.5567 29.9113 94.7978L29.752 38.5989C29.7413 34.84 32.3837 30.2633 35.655 28.3746L72.1482 7.30527Z\" fill=\"white\"/>\\n<path d=\"M78.2549 66.8798C78.2706 70.6402 75.6224 75.231 72.348 77.1113L35.8564 98.1851C32.5816 100.065 29.9181 98.5612 29.9181 94.8007L29.8867 86.1049C32.66 86.998 35.5745 87.468 38.567 87.468C57.9328 87.468 73.6325 67.6006 73.6325 43.0797C73.6325 31.0621 69.8722 20.157 63.7147 12.1818L72.1441 7.30902C75.4189 5.41312 78.0824 6.93299 78.0981 10.6933L78.2549 66.8798Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M33.1958 99.5996C32.5279 99.6003 31.9053 99.4414 31.3516 99.1235C30.0428 98.3698 29.3191 96.8347 29.3133 94.8L29.1543 38.6006C29.1426 34.6565 31.9251 29.8364 35.3565 27.8559L71.8501 6.78634C73.6336 5.75656 75.3438 5.60568 76.6629 6.36667C77.9717 7.1196 78.6961 8.65255 78.7019 10.6843L78.8609 66.883C78.8726 70.8264 76.0857 75.6494 72.6485 77.6342L36.1556 98.7031C35.1236 99.2993 34.1165 99.5996 33.1958 99.5996ZM74.8106 7.08957C74.1009 7.08957 73.2967 7.33639 72.4507 7.82492L35.9571 28.8945C32.8567 30.6838 30.3438 35.0366 30.354 38.5976L30.513 94.7971C30.5181 96.3857 31.0279 97.5524 31.95 98.0827C32.8794 98.6181 34.1597 98.4672 35.555 97.6645L72.0479 76.5957C75.1534 74.802 77.6714 70.4463 77.6612 66.886L77.5022 10.6872C77.4971 9.10226 76.9866 7.93698 76.0645 7.4067C75.6961 7.1943 75.2735 7.08957 74.8106 7.08957Z\" fill=\"black\"/>\\n<path d=\"M23.7403 35.0972L23.8968 91.2994C23.9128 93.1639 24.5708 94.48 25.6204 95.1067L31.6432 98.5922C30.5775 97.9811 29.9195 96.6649 29.9195 94.8004L29.7474 38.5982C29.7474 36.7476 30.3896 34.7016 31.4278 32.8746L25.4123 29.384C24.3741 31.2117 23.7327 33.2557 23.7403 35.0972Z\" fill=\"#2E46C0\"/>\\n<path d=\"M31.6427 99.1919C31.5416 99.1919 31.439 99.1662 31.3453 99.1128C31.3372 99.1076 31.3292 99.1032 31.3211 99.0988L25.3204 95.6257C24.0299 94.8552 23.3143 93.3222 23.2967 91.3044L23.1407 35.0984C23.1326 33.2219 23.7537 31.0884 24.8912 29.0874C24.9703 28.9482 25.1014 28.8464 25.2559 28.8047C25.4097 28.7651 25.5753 28.7849 25.7137 28.8647L31.7291 32.3554C32.014 32.521 32.1121 32.885 31.9495 33.1714C30.9161 34.9885 30.347 36.9162 30.347 38.5979L30.5191 94.7981C30.5191 96.3742 31.0186 97.5315 31.9254 98.0617L31.9437 98.0727C32.2301 98.2383 32.3282 98.6045 32.1634 98.8916C32.0521 99.0842 31.8507 99.1919 31.6427 99.1919ZM25.6463 30.2131C24.7945 31.8728 24.3338 33.5866 24.3404 35.094L24.4964 91.2978C24.5103 92.8769 25.0186 94.0481 25.9283 94.5915L29.5662 96.6965C29.4029 96.1303 29.3194 95.4946 29.3194 94.8003L29.1473 38.6001C29.1473 36.8752 29.668 34.9431 30.6224 33.101L25.6463 30.2131Z\" fill=\"black\"/>\\n<path d=\"M70.369 3.4001C69.2879 2.77343 67.7838 2.85175 66.1386 3.8075L29.6471 24.8814C27.9827 25.837 26.4851 27.495 25.4121 29.384L31.4276 32.8745C32.4983 30.9894 33.9909 29.3373 35.6541 28.3825L72.1453 7.30865C73.7905 6.35291 75.2946 6.25881 76.3756 6.88558L70.369 3.4001Z\" fill=\"#FFD63C\"/>\\n<path d=\"M31.4278 33.4749C31.3231 33.4749 31.2191 33.4478 31.1268 33.3943L25.1114 29.9036C24.8265 29.7381 24.7284 29.3741 24.891 29.0877C26.0687 27.0135 27.6522 25.3348 29.3485 24.3614L65.8385 3.28813C67.5955 2.2686 69.3563 2.12065 70.6703 2.8809L76.6768 6.3665C76.9632 6.53349 77.0614 6.90043 76.8951 7.18681C76.7288 7.47172 76.3604 7.56987 76.0748 7.40507L76.0733 7.40361C75.1497 6.86967 73.8277 7.02421 72.4471 7.82768L35.9542 28.9017C34.4417 29.7703 33.0201 31.2864 31.9493 33.1717C31.8702 33.3108 31.7391 33.4126 31.5846 33.4544C31.5333 33.4683 31.4806 33.4749 31.4278 33.4749ZM26.2386 29.1697L31.2154 32.0584C32.3514 30.2295 33.8053 28.7522 35.3551 27.8623L71.8451 6.78984C72.4749 6.42363 73.096 6.16728 73.6937 6.02299L70.0682 3.91948C69.1373 3.37822 67.8145 3.52763 66.4405 4.32597L29.9476 25.4007C28.5721 26.191 27.2706 27.5166 26.2386 29.1697Z\" fill=\"black\"/>\\n<path d=\"M64.1593 5.80872C65.7098 4.91349 66.9744 5.62261 66.9795 7.40436L67.0052 16.4854C67.0103 18.2671 65.7539 20.4432 64.2033 21.3384L45.2364 32.289C43.6958 33.1784 42.4312 32.4579 42.4261 30.6761L42.4004 21.5951C42.3954 19.8133 43.6518 17.6487 45.1923 16.7593L64.1593 5.80872Z\" fill=\"#00E6E9\"/>\\n<path d=\"M43.9863 33.2728C43.6157 33.2728 43.2671 33.1835 42.9536 33.0033C42.23 32.5865 41.8294 31.7604 41.8264 30.6778L41.8008 21.5965C41.7949 19.597 43.1529 17.2438 44.8931 16.2396L63.8592 5.28991C64.8091 4.74132 65.7305 4.67174 66.4585 5.08849C67.1785 5.50304 67.5769 6.32482 67.5791 7.40294L67.6055 16.4842C67.6114 18.4903 66.249 20.8509 64.5037 21.858L45.5369 32.8085C45.0022 33.1175 44.4749 33.2728 43.9863 33.2728ZM65.4251 6.02233C65.1431 6.02233 64.8098 6.12633 64.4597 6.32848L45.4929 17.2789C44.1372 18.0611 42.9961 20.0372 43.0005 21.5936L43.0261 30.6749C43.0283 31.3019 43.2195 31.7714 43.552 31.9632C43.8867 32.1559 44.3914 32.0856 44.9363 31.7699L63.9031 20.8194C65.2639 20.0336 66.4102 18.0502 66.4058 16.4872L66.3794 7.40587C66.378 6.78331 66.1883 6.31749 65.8594 6.12853C65.7364 6.05748 65.5891 6.02233 65.4251 6.02233Z\" fill=\"black\"/>\\n<path d=\"M38.5703 19.3704L38.6017 28.4581C38.6017 29.3356 38.9154 29.9622 39.4165 30.2599L43.2555 32.4848C42.7383 32.1871 42.4254 31.5604 42.4254 30.683L42.394 21.5954C42.394 20.8465 42.6232 20.0351 42.9935 19.2752L39.1694 17.0496C38.7998 17.8096 38.5703 18.6214 38.5703 19.3704Z\" fill=\"#FFD63C\"/>\\n<path d=\"M43.2532 33.0851C43.1514 33.0851 43.0488 33.0595 42.9543 33.0053C42.9536 33.0045 42.9536 33.0045 42.9529 33.0045L42.9507 33.0031C42.95 33.0031 42.95 33.0023 42.9492 33.0023L39.1135 30.7794C38.4038 30.3568 38.0002 29.5123 38.0002 28.4584L37.9688 19.3727C37.9688 19.372 37.9688 19.3712 37.9688 19.3705C37.9688 18.567 38.1965 17.6742 38.6279 16.7872C38.7012 16.6371 38.8337 16.5243 38.9927 16.4752C39.1523 16.4269 39.3245 16.4452 39.4695 16.5309L43.2935 18.7567C43.5652 18.9149 43.6685 19.2555 43.5315 19.5382C43.1785 20.2611 42.9924 20.973 42.9924 21.5956L43.0239 30.6806C43.0239 31.3134 43.2122 31.7689 43.5535 31.9652L43.5549 31.966C43.8413 32.1322 43.9387 32.4992 43.7732 32.7855C43.6619 32.9782 43.4604 33.0851 43.2532 33.0851ZM39.1685 19.3705L39.2 28.4562C39.2 29.0788 39.3904 29.5475 39.7214 29.7445L41.8337 30.9691C41.8271 30.8754 41.8242 30.7802 41.8242 30.6828L41.7927 21.5978C41.7927 20.9467 41.9414 20.2392 42.2263 19.5236L39.4526 17.91C39.2659 18.4242 39.1685 18.9208 39.1685 19.3705Z\" fill=\"black\"/>\\n<path d=\"M62.3384 3.38901C61.8212 3.09131 61.1158 3.13826 60.3324 3.59261L41.3583 14.5291C40.4666 15.0477 39.679 15.9976 39.168 17.0497L42.9921 19.2753C43.5051 18.2229 44.2965 17.2726 45.1974 16.754L64.1554 5.80189C64.9388 5.36313 65.6442 5.31618 66.1614 5.61388L62.3384 3.38901Z\" fill=\"#FFD63C\"/>\\n<path d=\"M42.9925 19.8752C42.8877 19.8752 42.783 19.8481 42.6907 19.7939L38.8667 17.5681C38.595 17.4099 38.4917 17.0693 38.6287 16.7873C39.2168 15.5781 40.1016 14.5659 41.0574 14.0107L60.0337 3.0727C60.983 2.52192 61.9109 2.44941 62.6382 2.86909C62.639 2.86982 62.6397 2.86982 62.6404 2.87055L66.4637 5.09565C66.75 5.26191 66.8467 5.62885 66.6812 5.91523C66.5142 6.20087 66.148 6.29829 65.8623 6.13422C65.5218 5.9372 65.0201 6.00605 64.4488 6.32538L45.4981 17.2736C44.7364 17.7123 44.0201 18.5378 43.5315 19.5383C43.4583 19.6884 43.3265 19.8012 43.1668 19.8496C43.1097 19.8671 43.0511 19.8752 42.9925 19.8752ZM39.972 16.8232L42.7596 18.4455C43.3316 17.4882 44.0896 16.7001 44.8982 16.2343L63.8555 5.28242C63.9522 5.22822 64.0489 5.17841 64.1441 5.13447L62.0391 3.90912C61.6985 3.71137 61.2005 3.78388 60.6343 4.11127L41.6587 15.0493C41.0325 15.4133 40.4349 16.0454 39.972 16.8232Z\" fill=\"black\"/>\\n<path d=\"M49.8962 19.8404C50.2895 19.6133 50.6524 19.5559 50.9428 19.6442C51.3533 19.769 51.6187 20.1849 51.6205 20.8239C51.6236 21.9164 50.8568 23.2446 49.9074 23.7927C48.9566 24.3417 48.1847 23.9018 48.1816 22.8093C48.1798 22.1704 48.442 21.4501 48.8505 20.8524C49.1396 20.4294 49.5021 20.0679 49.8962 19.8404Z\" fill=\"black\"/>\\n<path d=\"M59.4977 14.2984C59.8911 14.0713 60.254 14.0139 60.5444 14.1022C60.9548 14.227 61.2203 14.6429 61.2221 15.2819C61.2252 16.3744 60.4584 17.7026 59.5089 18.2508C58.5581 18.7997 57.7863 18.3599 57.7832 17.2673C57.7814 16.6285 58.0435 15.9081 58.4521 15.3104C58.7412 14.8874 59.1037 14.5259 59.4977 14.2984Z\" fill=\"black\"/>\\n<path d=\"M39.1652 45.2181C38.958 45.2181 38.7558 45.1104 38.6452 44.9185C38.479 44.6314 38.5778 44.2644 38.8642 44.0989L69.8742 26.1949C70.1628 26.0286 70.529 26.1282 70.6938 26.4139C70.8601 26.701 70.7612 27.0679 70.4748 27.2334L39.4648 45.1375C39.3703 45.1924 39.267 45.2181 39.1652 45.2181Z\" fill=\"black\"/>\\n<path d=\"M39.1652 55.554C38.958 55.554 38.7558 55.4463 38.6452 55.2544C38.479 54.9673 38.5778 54.6004 38.8642 54.4349L69.8742 36.5301C70.1628 36.3638 70.529 36.4634 70.6938 36.7491C70.8601 37.0362 70.7612 37.4031 70.4748 37.5686L39.4648 55.4734C39.3703 55.5284 39.267 55.554 39.1652 55.554Z\" fill=\"black\"/>\\n<path d=\"M39.1672 65.8896C38.9599 65.8896 38.7578 65.7819 38.6472 65.5901C38.4809 65.3029 38.5798 64.936 38.8662 64.7705L69.8762 46.8664C70.1648 46.6994 70.531 46.8005 70.6958 47.0854C70.862 47.3725 70.7631 47.7395 70.4768 47.905L39.4668 65.809C39.3723 65.864 39.269 65.8896 39.1672 65.8896Z\" fill=\"black\"/>\\n<path d=\"M39.1672 76.2248C38.9599 76.2248 38.7578 76.1171 38.6472 75.9252C38.4809 75.6381 38.5798 75.2712 38.8662 75.1057L69.8762 57.2009C70.1648 57.0346 70.531 57.1335 70.6958 57.4199C70.862 57.707 70.7631 58.0739 70.4768 58.2395L39.4668 76.1442C39.3723 76.1992 39.269 76.2248 39.1672 76.2248Z\" fill=\"black\"/>\\n<path d=\"M39.1652 86.5602C38.958 86.5602 38.7558 86.4525 38.6452 86.2606C38.479 85.9735 38.5778 85.6066 38.8642 85.441L69.8742 67.537C70.1628 67.3722 70.529 67.4703 70.6938 67.756C70.8601 68.0431 70.7612 68.41 70.4748 68.5756L39.4648 86.4796C39.3703 86.5345 39.267 86.5602 39.1652 86.5602Z\" fill=\"black\"/>\\n<path d=\"M54.6283 40.6968C62.1388 36.3607 68.2582 39.8411 68.2827 48.478C68.3072 57.1148 62.2274 67.6384 54.717 71.9746C47.2006 76.3142 41.0812 72.8337 41.0567 64.1969C41.0322 55.5601 47.112 45.0364 54.6283 40.6968Z\" fill=\"#FFD63C\"/>\\n<path d=\"M68.2841 48.4778C68.3053 57.1098 62.2301 67.6437 54.7179 71.9755C48.5795 75.5256 43.3599 73.8456 41.6484 68.3939C43.2438 68.8376 44.9342 69.07 46.6882 69.07C56.8839 69.07 65.1462 61.0191 65.1462 51.0769C65.1462 46.3647 63.2866 42.0645 60.2119 38.8526C64.9561 38.5673 68.2735 42.1279 68.2841 48.4778Z\" fill=\"#F4C531\"/>\\n<path d=\"M48.6068 74.4486C47.2034 74.4486 45.9027 74.119 44.7513 73.4562C41.9945 71.8697 40.4696 68.5819 40.4571 64.1984C40.4315 55.3837 46.6541 44.6083 54.3285 40.1778C58.1678 37.9601 61.8094 37.6195 64.5875 39.2169C67.3451 40.8033 68.87 44.0919 68.8824 48.4769C68.908 57.2916 62.6883 68.0655 55.0177 72.4938C52.7684 73.7924 50.5858 74.4486 48.6068 74.4486ZM60.7298 39.4264C58.9632 39.4264 56.9879 40.0277 54.929 41.2164C47.5865 45.4557 41.6326 55.7638 41.6568 64.1954C41.6678 68.1329 42.9796 71.0524 45.3497 72.4161C47.7388 73.7924 50.96 73.451 54.4171 71.4552C61.7559 67.2181 67.7069 56.9115 67.6827 48.4799C67.6717 44.5416 66.3599 41.6215 63.9884 40.2569C63.0245 39.7018 61.9251 39.4264 60.7298 39.4264Z\" fill=\"black\"/>\\n<path d=\"M54.6467 47.3178C58.9777 44.8173 62.5066 46.8244 62.5207 51.805C62.5349 56.7856 59.0289 62.8542 54.6978 65.3548C50.3634 67.8573 46.8345 65.8502 46.8204 60.8696C46.8062 55.889 50.3122 49.8203 54.6467 47.3178Z\" fill=\"#00E6E9\"/>\\n<path d=\"M51.1734 67.0357C50.3216 67.0357 49.5284 66.835 48.8245 66.43C47.1524 65.4676 46.2281 63.4937 46.2207 60.8709C46.2061 55.7066 49.8521 49.3932 54.347 46.7982C56.6446 45.4718 58.8353 45.2755 60.5162 46.2437C62.1883 47.2061 63.1133 49.1808 63.1207 51.8036C63.136 56.9679 59.4922 63.2799 54.9981 65.8741C53.6607 66.6461 52.3599 67.0357 51.1734 67.0357ZM54.9476 47.8368C50.7837 50.2413 47.4073 56.0868 47.4205 60.868C47.427 63.044 48.1375 64.6502 49.4229 65.3892C50.72 66.1378 52.4866 65.9393 54.3975 64.8355C58.5599 62.4325 61.9349 56.5877 61.9209 51.8065C61.9151 49.6297 61.2032 48.0235 59.9178 47.2838C58.6228 46.5404 56.8584 46.7359 54.9476 47.8368Z\" fill=\"black\"/>\\n<path d=\"M51.3105 58.9873L53.8573 59.5304L57.146 51.7654\" fill=\"#00E6E9\"/>\\n<path d=\"M53.8577 60.1299C53.8167 60.1299 53.7742 60.1255 53.7324 60.1167L51.1858 59.574C50.8621 59.5051 50.6548 59.1865 50.7244 58.8621C50.7932 58.5376 51.1118 58.3369 51.4363 58.4006L53.4981 58.8401L56.594 51.5312C56.7222 51.2244 57.0767 51.0801 57.3799 51.2126C57.6853 51.3415 57.8281 51.6938 57.6985 51.9985L54.4099 59.7637C54.3147 59.9892 54.095 60.1299 53.8577 60.1299Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-a0fxo1 hidden-72rtr7 hidden-13depyn\",\"data-framer-name\":\"approved-document_14669375\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:102,intrinsicWidth:102,svg:'<svg width=\"102\" height=\"102\" viewBox=\"0 0 102 102\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M72.1482 7.30527C75.4195 5.41657 78.0892 6.92633 78.0998 10.6853L78.2591 66.8842C78.2698 70.6431 75.6174 75.2256 72.3461 77.1143L35.8529 98.1836C32.5816 100.072 29.922 98.5567 29.9113 94.7978L29.752 38.5989C29.7413 34.84 32.3837 30.2633 35.655 28.3746L72.1482 7.30527Z\" fill=\"white\"/>\\n<path d=\"M78.2549 66.8798C78.2706 70.6402 75.6224 75.231 72.348 77.1113L35.8564 98.1851C32.5816 100.065 29.9181 98.5612 29.9181 94.8007L29.8867 86.1049C32.66 86.998 35.5745 87.468 38.567 87.468C57.9328 87.468 73.6325 67.6006 73.6325 43.0797C73.6325 31.0621 69.8722 20.157 63.7147 12.1818L72.1441 7.30902C75.4189 5.41312 78.0824 6.93299 78.0981 10.6933L78.2549 66.8798Z\" fill=\"#E9EDF4\"/>\\n<path d=\"M33.1958 99.5996C32.5279 99.6003 31.9053 99.4414 31.3516 99.1235C30.0428 98.3698 29.3191 96.8347 29.3133 94.8L29.1543 38.6006C29.1426 34.6565 31.9251 29.8364 35.3565 27.8559L71.8501 6.78634C73.6336 5.75656 75.3438 5.60568 76.6629 6.36667C77.9717 7.1196 78.6961 8.65255 78.7019 10.6843L78.8609 66.883C78.8726 70.8264 76.0857 75.6494 72.6485 77.6342L36.1556 98.7031C35.1236 99.2993 34.1165 99.5996 33.1958 99.5996ZM74.8106 7.08957C74.1009 7.08957 73.2967 7.33639 72.4507 7.82492L35.9571 28.8945C32.8567 30.6838 30.3438 35.0366 30.354 38.5976L30.513 94.7971C30.5181 96.3857 31.0279 97.5524 31.95 98.0827C32.8794 98.6181 34.1597 98.4672 35.555 97.6645L72.0479 76.5957C75.1534 74.802 77.6714 70.4463 77.6612 66.886L77.5022 10.6872C77.4971 9.10226 76.9866 7.93698 76.0645 7.4067C75.6961 7.1943 75.2735 7.08957 74.8106 7.08957Z\" fill=\"black\"/>\\n<path d=\"M23.7403 35.0972L23.8968 91.2994C23.9128 93.1639 24.5708 94.48 25.6204 95.1067L31.6432 98.5922C30.5775 97.9811 29.9195 96.6649 29.9195 94.8004L29.7474 38.5982C29.7474 36.7476 30.3896 34.7016 31.4278 32.8746L25.4123 29.384C24.3741 31.2117 23.7327 33.2557 23.7403 35.0972Z\" fill=\"#2E46C0\"/>\\n<path d=\"M31.6427 99.1919C31.5416 99.1919 31.439 99.1662 31.3453 99.1128C31.3372 99.1076 31.3292 99.1032 31.3211 99.0988L25.3204 95.6257C24.0299 94.8552 23.3143 93.3222 23.2967 91.3044L23.1407 35.0984C23.1326 33.2219 23.7537 31.0884 24.8912 29.0874C24.9703 28.9482 25.1014 28.8464 25.2559 28.8047C25.4097 28.7651 25.5753 28.7849 25.7137 28.8647L31.7291 32.3554C32.014 32.521 32.1121 32.885 31.9495 33.1714C30.9161 34.9885 30.347 36.9162 30.347 38.5979L30.5191 94.7981C30.5191 96.3742 31.0186 97.5315 31.9254 98.0617L31.9437 98.0727C32.2301 98.2383 32.3282 98.6045 32.1634 98.8916C32.0521 99.0842 31.8507 99.1919 31.6427 99.1919ZM25.6463 30.2131C24.7945 31.8728 24.3338 33.5866 24.3404 35.094L24.4964 91.2978C24.5103 92.8769 25.0186 94.0481 25.9283 94.5915L29.5662 96.6965C29.4029 96.1303 29.3194 95.4946 29.3194 94.8003L29.1473 38.6001C29.1473 36.8752 29.668 34.9431 30.6224 33.101L25.6463 30.2131Z\" fill=\"black\"/>\\n<path d=\"M70.369 3.4001C69.2879 2.77343 67.7838 2.85175 66.1386 3.8075L29.6471 24.8814C27.9827 25.837 26.4851 27.495 25.4121 29.384L31.4276 32.8745C32.4983 30.9894 33.9909 29.3373 35.6541 28.3825L72.1453 7.30865C73.7905 6.35291 75.2946 6.25881 76.3756 6.88558L70.369 3.4001Z\" fill=\"#FFD63C\"/>\\n<path d=\"M31.4278 33.4749C31.3231 33.4749 31.2191 33.4478 31.1268 33.3943L25.1114 29.9036C24.8265 29.7381 24.7284 29.3741 24.891 29.0877C26.0687 27.0135 27.6522 25.3348 29.3485 24.3614L65.8385 3.28813C67.5955 2.2686 69.3563 2.12065 70.6703 2.8809L76.6768 6.3665C76.9632 6.53349 77.0614 6.90043 76.8951 7.18681C76.7288 7.47172 76.3604 7.56987 76.0748 7.40507L76.0733 7.40361C75.1497 6.86967 73.8277 7.02421 72.4471 7.82768L35.9542 28.9017C34.4417 29.7703 33.0201 31.2864 31.9493 33.1717C31.8702 33.3108 31.7391 33.4126 31.5846 33.4544C31.5333 33.4683 31.4806 33.4749 31.4278 33.4749ZM26.2386 29.1697L31.2154 32.0584C32.3514 30.2295 33.8053 28.7522 35.3551 27.8623L71.8451 6.78984C72.4749 6.42363 73.096 6.16728 73.6937 6.02299L70.0682 3.91948C69.1373 3.37822 67.8145 3.52763 66.4405 4.32597L29.9476 25.4007C28.5721 26.191 27.2706 27.5166 26.2386 29.1697Z\" fill=\"black\"/>\\n<path d=\"M64.1593 5.80872C65.7098 4.91349 66.9744 5.62261 66.9795 7.40436L67.0052 16.4854C67.0103 18.2671 65.7539 20.4432 64.2033 21.3384L45.2364 32.289C43.6958 33.1784 42.4312 32.4579 42.4261 30.6761L42.4004 21.5951C42.3954 19.8133 43.6518 17.6487 45.1923 16.7593L64.1593 5.80872Z\" fill=\"#00E6E9\"/>\\n<path d=\"M43.9863 33.2728C43.6157 33.2728 43.2671 33.1835 42.9536 33.0033C42.23 32.5865 41.8294 31.7604 41.8264 30.6778L41.8008 21.5965C41.7949 19.597 43.1529 17.2438 44.8931 16.2396L63.8592 5.28991C64.8091 4.74132 65.7305 4.67174 66.4585 5.08849C67.1785 5.50304 67.5769 6.32482 67.5791 7.40294L67.6055 16.4842C67.6114 18.4903 66.249 20.8509 64.5037 21.858L45.5369 32.8085C45.0022 33.1175 44.4749 33.2728 43.9863 33.2728ZM65.4251 6.02233C65.1431 6.02233 64.8098 6.12633 64.4597 6.32848L45.4929 17.2789C44.1372 18.0611 42.9961 20.0372 43.0005 21.5936L43.0261 30.6749C43.0283 31.3019 43.2195 31.7714 43.552 31.9632C43.8867 32.1559 44.3914 32.0856 44.9363 31.7699L63.9031 20.8194C65.2639 20.0336 66.4102 18.0502 66.4058 16.4872L66.3794 7.40587C66.378 6.78331 66.1883 6.31749 65.8594 6.12853C65.7364 6.05748 65.5891 6.02233 65.4251 6.02233Z\" fill=\"black\"/>\\n<path d=\"M38.5703 19.3704L38.6017 28.4581C38.6017 29.3356 38.9154 29.9622 39.4165 30.2599L43.2555 32.4848C42.7383 32.1871 42.4254 31.5604 42.4254 30.683L42.394 21.5954C42.394 20.8465 42.6232 20.0351 42.9935 19.2752L39.1694 17.0496C38.7998 17.8096 38.5703 18.6214 38.5703 19.3704Z\" fill=\"#FFD63C\"/>\\n<path d=\"M43.2532 33.0851C43.1514 33.0851 43.0488 33.0595 42.9543 33.0053C42.9536 33.0045 42.9536 33.0045 42.9529 33.0045L42.9507 33.0031C42.95 33.0031 42.95 33.0023 42.9492 33.0023L39.1135 30.7794C38.4038 30.3568 38.0002 29.5123 38.0002 28.4584L37.9688 19.3727C37.9688 19.372 37.9688 19.3712 37.9688 19.3705C37.9688 18.567 38.1965 17.6742 38.6279 16.7872C38.7012 16.6371 38.8337 16.5243 38.9927 16.4752C39.1523 16.4269 39.3245 16.4452 39.4695 16.5309L43.2935 18.7567C43.5652 18.9149 43.6685 19.2555 43.5315 19.5382C43.1785 20.2611 42.9924 20.973 42.9924 21.5956L43.0239 30.6806C43.0239 31.3134 43.2122 31.7689 43.5535 31.9652L43.5549 31.966C43.8413 32.1322 43.9387 32.4992 43.7732 32.7855C43.6619 32.9782 43.4604 33.0851 43.2532 33.0851ZM39.1685 19.3705L39.2 28.4562C39.2 29.0788 39.3904 29.5475 39.7214 29.7445L41.8337 30.9691C41.8271 30.8754 41.8242 30.7802 41.8242 30.6828L41.7927 21.5978C41.7927 20.9467 41.9414 20.2392 42.2263 19.5236L39.4526 17.91C39.2659 18.4242 39.1685 18.9208 39.1685 19.3705Z\" fill=\"black\"/>\\n<path d=\"M62.3384 3.38901C61.8212 3.09131 61.1158 3.13826 60.3324 3.59261L41.3583 14.5291C40.4666 15.0477 39.679 15.9976 39.168 17.0497L42.9921 19.2753C43.5051 18.2229 44.2965 17.2726 45.1974 16.754L64.1554 5.80189C64.9388 5.36313 65.6442 5.31618 66.1614 5.61388L62.3384 3.38901Z\" fill=\"#FFD63C\"/>\\n<path d=\"M42.9925 19.8752C42.8877 19.8752 42.783 19.8481 42.6907 19.7939L38.8667 17.5681C38.595 17.4099 38.4917 17.0693 38.6287 16.7873C39.2168 15.5781 40.1016 14.5659 41.0574 14.0107L60.0337 3.0727C60.983 2.52192 61.9109 2.44941 62.6382 2.86909C62.639 2.86982 62.6397 2.86982 62.6404 2.87055L66.4637 5.09565C66.75 5.26191 66.8467 5.62885 66.6812 5.91523C66.5142 6.20087 66.148 6.29829 65.8623 6.13422C65.5218 5.9372 65.0201 6.00605 64.4488 6.32538L45.4981 17.2736C44.7364 17.7123 44.0201 18.5378 43.5315 19.5383C43.4583 19.6884 43.3265 19.8012 43.1668 19.8496C43.1097 19.8671 43.0511 19.8752 42.9925 19.8752ZM39.972 16.8232L42.7596 18.4455C43.3316 17.4882 44.0896 16.7001 44.8982 16.2343L63.8555 5.28242C63.9522 5.22822 64.0489 5.17841 64.1441 5.13447L62.0391 3.90912C61.6985 3.71137 61.2005 3.78388 60.6343 4.11127L41.6587 15.0493C41.0325 15.4133 40.4349 16.0454 39.972 16.8232Z\" fill=\"black\"/>\\n<path d=\"M49.8962 19.8404C50.2895 19.6133 50.6524 19.5559 50.9428 19.6442C51.3533 19.769 51.6187 20.1849 51.6205 20.8239C51.6236 21.9164 50.8568 23.2446 49.9074 23.7927C48.9566 24.3417 48.1847 23.9018 48.1816 22.8093C48.1798 22.1704 48.442 21.4501 48.8505 20.8524C49.1396 20.4294 49.5021 20.0679 49.8962 19.8404Z\" fill=\"black\"/>\\n<path d=\"M59.4977 14.2984C59.8911 14.0713 60.254 14.0139 60.5444 14.1022C60.9548 14.227 61.2203 14.6429 61.2221 15.2819C61.2252 16.3744 60.4584 17.7026 59.5089 18.2508C58.5581 18.7997 57.7863 18.3599 57.7832 17.2673C57.7814 16.6285 58.0435 15.9081 58.4521 15.3104C58.7412 14.8874 59.1037 14.5259 59.4977 14.2984Z\" fill=\"black\"/>\\n<path d=\"M39.1652 45.2181C38.958 45.2181 38.7558 45.1104 38.6452 44.9185C38.479 44.6314 38.5778 44.2644 38.8642 44.0989L69.8742 26.1949C70.1628 26.0286 70.529 26.1282 70.6938 26.4139C70.8601 26.701 70.7612 27.0679 70.4748 27.2334L39.4648 45.1375C39.3703 45.1924 39.267 45.2181 39.1652 45.2181Z\" fill=\"black\"/>\\n<path d=\"M39.1652 55.554C38.958 55.554 38.7558 55.4463 38.6452 55.2544C38.479 54.9673 38.5778 54.6004 38.8642 54.4349L69.8742 36.5301C70.1628 36.3638 70.529 36.4634 70.6938 36.7491C70.8601 37.0362 70.7612 37.4031 70.4748 37.5686L39.4648 55.4734C39.3703 55.5284 39.267 55.554 39.1652 55.554Z\" fill=\"black\"/>\\n<path d=\"M39.1672 65.8896C38.9599 65.8896 38.7578 65.7819 38.6472 65.5901C38.4809 65.3029 38.5798 64.936 38.8662 64.7705L69.8762 46.8664C70.1648 46.6994 70.531 46.8005 70.6958 47.0854C70.862 47.3725 70.7631 47.7395 70.4768 47.905L39.4668 65.809C39.3723 65.864 39.269 65.8896 39.1672 65.8896Z\" fill=\"black\"/>\\n<path d=\"M39.1672 76.2248C38.9599 76.2248 38.7578 76.1171 38.6472 75.9252C38.4809 75.6381 38.5798 75.2712 38.8662 75.1057L69.8762 57.2009C70.1648 57.0346 70.531 57.1335 70.6958 57.4199C70.862 57.707 70.7631 58.0739 70.4768 58.2395L39.4668 76.1442C39.3723 76.1992 39.269 76.2248 39.1672 76.2248Z\" fill=\"black\"/>\\n<path d=\"M39.1652 86.5602C38.958 86.5602 38.7558 86.4525 38.6452 86.2606C38.479 85.9735 38.5778 85.6066 38.8642 85.441L69.8742 67.537C70.1628 67.3722 70.529 67.4703 70.6938 67.756C70.8601 68.0431 70.7612 68.41 70.4748 68.5756L39.4648 86.4796C39.3703 86.5345 39.267 86.5602 39.1652 86.5602Z\" fill=\"black\"/>\\n<path d=\"M54.6283 40.6968C62.1388 36.3607 68.2582 39.8411 68.2827 48.478C68.3072 57.1148 62.2274 67.6384 54.717 71.9746C47.2006 76.3142 41.0812 72.8337 41.0567 64.1969C41.0322 55.5601 47.112 45.0364 54.6283 40.6968Z\" fill=\"#FFD63C\"/>\\n<path d=\"M68.2841 48.4778C68.3053 57.1098 62.2301 67.6437 54.7179 71.9755C48.5795 75.5256 43.3599 73.8456 41.6484 68.3939C43.2438 68.8376 44.9342 69.07 46.6882 69.07C56.8839 69.07 65.1462 61.0191 65.1462 51.0769C65.1462 46.3647 63.2866 42.0645 60.2119 38.8526C64.9561 38.5673 68.2735 42.1279 68.2841 48.4778Z\" fill=\"#F4C531\"/>\\n<path d=\"M48.6068 74.4486C47.2034 74.4486 45.9027 74.119 44.7513 73.4562C41.9945 71.8697 40.4696 68.5819 40.4571 64.1984C40.4315 55.3837 46.6541 44.6083 54.3285 40.1778C58.1678 37.9601 61.8094 37.6195 64.5875 39.2169C67.3451 40.8033 68.87 44.0919 68.8824 48.4769C68.908 57.2916 62.6883 68.0655 55.0177 72.4938C52.7684 73.7924 50.5858 74.4486 48.6068 74.4486ZM60.7298 39.4264C58.9632 39.4264 56.9879 40.0277 54.929 41.2164C47.5865 45.4557 41.6326 55.7638 41.6568 64.1954C41.6678 68.1329 42.9796 71.0524 45.3497 72.4161C47.7388 73.7924 50.96 73.451 54.4171 71.4552C61.7559 67.2181 67.7069 56.9115 67.6827 48.4799C67.6717 44.5416 66.3599 41.6215 63.9884 40.2569C63.0245 39.7018 61.9251 39.4264 60.7298 39.4264Z\" fill=\"black\"/>\\n<path d=\"M54.6467 47.3178C58.9777 44.8173 62.5066 46.8244 62.5207 51.805C62.5349 56.7856 59.0289 62.8542 54.6978 65.3548C50.3634 67.8573 46.8345 65.8502 46.8204 60.8696C46.8062 55.889 50.3122 49.8203 54.6467 47.3178Z\" fill=\"#00E6E9\"/>\\n<path d=\"M51.1734 67.0357C50.3216 67.0357 49.5284 66.835 48.8245 66.43C47.1524 65.4676 46.2281 63.4937 46.2207 60.8709C46.2061 55.7066 49.8521 49.3932 54.347 46.7982C56.6446 45.4718 58.8353 45.2755 60.5162 46.2437C62.1883 47.2061 63.1133 49.1808 63.1207 51.8036C63.136 56.9679 59.4922 63.2799 54.9981 65.8741C53.6607 66.6461 52.3599 67.0357 51.1734 67.0357ZM54.9476 47.8368C50.7837 50.2413 47.4073 56.0868 47.4205 60.868C47.427 63.044 48.1375 64.6502 49.4229 65.3892C50.72 66.1378 52.4866 65.9393 54.3975 64.8355C58.5599 62.4325 61.9349 56.5877 61.9209 51.8065C61.9151 49.6297 61.2032 48.0235 59.9178 47.2838C58.6228 46.5404 56.8584 46.7359 54.9476 47.8368Z\" fill=\"black\"/>\\n<path d=\"M51.3105 58.9873L53.8573 59.5304L57.146 51.7654\" fill=\"#00E6E9\"/>\\n<path d=\"M53.8577 60.1299C53.8167 60.1299 53.7742 60.1255 53.7324 60.1167L51.1858 59.574C50.8621 59.5051 50.6548 59.1865 50.7244 58.8621C50.7932 58.5376 51.1118 58.3369 51.4363 58.4006L53.4981 58.8401L56.594 51.5312C56.7222 51.2244 57.0767 51.0801 57.3799 51.2126C57.6853 51.3415 57.8281 51.6938 57.6985 51.9985L54.4099 59.7637C54.3147 59.9892 54.095 60.1299 53.8577 60.1299Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11hpe0k\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"HIPAA Compliance Health Check\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"HIPAA Compliance Health Check\"})}),className:\"framer-woc0bs\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"Ensuring your healthcare business meets all regulatory requirements in as little as 2 weeks.\"})}),className:\"framer-omych9\",\"data-framer-name\":\"Big Paragraph\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{height:49,y:(componentViewport?.y||0)+0+5179.0626+80+1919.952},UfxwKg5CD:{height:64,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+5985.6696+60+1566.536}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,y:(componentViewport?.y||0)+10+3910.8046+80+703.738,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fnwl0y-container\",nodeId:\"v6xIn6TJc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{DLLP47kIC:\"Book a 30min Free Call\",height:\"100%\",id:\"v6xIn6TJc\",layoutId:\"v6xIn6TJc\",style:{height:\"100%\"},variant:\"FKwnxt_2a\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4vplq8\",\"data-framer-name\":\"PROCESS\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"Process Breakdown\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\"},children:\"Process Breakdown\"})}),className:\"framer-cdx32v\",\"data-framer-name\":\"Process Breakdown\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yrme78\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zg7736\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b6odgc\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1huiptg\",\"data-framer-name\":\"Frame 1000005924\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(33, 33, 34)\"},children:\"HIPAA Compliance Health Check\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"rgb(33, 33, 34)\"},children:\"HIPAA Compliance Health Check\"})}),className:\"framer-1vdd93z\",\"data-framer-name\":\"HIPAA Compliance Health Check\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"This is a core step in any compliance-related process to evaluate the current status and identify gaps.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\"},children:\"This is a core step in any compliance-related process to evaluate the current status and identify gaps.\"})}),className:\"framer-3pkg3r\",\"data-framer-name\":\"This is a core step in any compliance-related process to evaluate the current status and identify gaps.\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-m3ygss\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:262,intrinsicWidth:259,svg:'<svg width=\"259\" height=\"262\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-29\" y=\"-1\" width=\"288\" height=\"263\"><path d=\"M-28.28-.125H259v262.046H-28.28V-.125Z\" fill=\"#fff\"/></mask><g mask=\"url(#b)\"><path d=\"M38.663 108.498c1.007.516 2.086 1.216 3.205 1.414 1.033-2.085-3.509-3.304-4.565-4.446-1.034-1.118-.222-3.578-.658-4.993l-.5-.088c.444 1.147.167 3.064.186 4.331.415.515.719.728.77 1.4l-.375.669c-.165.384-.18.227-.129.453.645.345 1.55.743 2.066 1.26Z\" fill=\"#C9C664\"/><path d=\"m35.361 99.343-.514.265c-.237 1.483-.067 3.139-.063 4.646-1.568-.857-3.07-1.86-4.903-1.942l-.422.198c-.041.506.069.676.387 1.07.53.653 2.672 1.799 3.512 1.942.5.348 1.252.74 1.406 1.364.282 1.14-.494 3.752.452 4.533.191.158.52.288.735.391.13-.232.215-.391.282-.652.051-1.192-.071-2.826.366-3.92-.052-.226-.036-.069.128-.454l.377-.668c-.053-.672-.356-.885-.771-1.4-.02-1.267.258-3.184-.186-4.331-.344-.278-.547-.674-.786-1.042ZM63 18.11c-.02-1.494.211-3.496-.163-4.918-.484-.054-.899-.085-1.352-.276-.546 1.018-.356 3.215-.39 4.382-1.298-.445-2.888-1.196-4.275-1.04l-.182.289c1.285 1.256 3.167 1.71 4.574 2.806.007 1.562-.318 4.514.37 5.874l.265.044.02-.216c.04-.344.021-.216.13-.597l.477.285c.198.083.383.103.595.136.743-.878.442-3.263.421-4.445.748.425 1.494.78 2.288 1.11.445.33.83.545 1.34.766l.527-.095c.139-.345.21-.286.055-.575-.51-.955-3.529-2.426-4.7-3.53Zm50.161-8.466-1.108-.2c-.369.26-.538.473-.606.94-.141.959.11 2.182.111 3.18-.073.029-.142.068-.218.086-1.205.3-3.52-1.19-4.429-.322.11.463.343.6.736.841.918.564 2.428 1.44 3.456 1.666 1.476 1.746-.365 5.278 1.07 6.574.523-.066.884-.333 1.317-.608-.126-1.453.025-3.024.053-4.488a39.431 39.431 0 0 1 2.988 1.705l.695.28.438-.313-.403-.162a7.85 7.85 0 0 0-.223-.736c-.546-1.457-2.382-2.072-3.68-2.654-.013-1.7-.044-3.4-.093-5.1.011-.227-.061-.466-.104-.69Zm114.372 148.094c.453.478 1.275.755 1.891.966.396.135.44.225.832.027-.04-.336-.07-.67-.2-.986-.466-1.136-1.555-1.266-2.548-1.72-3.083-1.409-1.353-4.374-2.316-6.869-.452-.085-.472-.039-.883.097-.649.929-.282 2.913-.748 4.15-1.168.723-2.729-.867-4.051-.893l-.235.309c.56 1.649 3.359 2.324 4.375 3.933l.096.157c.031.13.065.259.094.389.303 1.354-.304 3.578.63 4.657.501.044.483.057.884-.245.362-1.253-.021-2.971 1.109-3.817l1.07-.155Z\" fill=\"#FAD300\"/><path d=\"M64.224 45.769c-.888 1.233-1.344 2.248-1.449 3.774-.438 6.37-.077 13-.077 19.4l-.007 38.636.003 25.088c-.005 3.645-.433 8.675.135 12.192.486 3.012 2.09 5.926 4.572 7.702 3.125 2.237 7.334 3.935 10.79 5.743l23.82 12.469c2.537 1.324 6.569 2.818 8.598 4.781.112.821-.442 1.906-.759 2.665l.409.421c.303-.968.552-1.979 1.066-2.858l.491-.029.305-.223c-1.022-.696-2.309-1.22-3.417-1.789l-7.142-3.697-22.902-11.962c-3.275-1.715-6.749-3.266-9.936-5.124-2.82-1.645-4.621-4.177-5.364-7.36-.715-3.066-.256-6.845-.226-10.004l.028-14.591.008-47.987.038-15.692c.007-2.649-.114-5.362.05-8.002.079-1.26.518-2.094 1.19-3.145l-.224-.408Z\" fill=\"#40445D\"/><path d=\"M208.463 70.96c-.633.17-1.119.631-1.629 1.026l-.063 5.243c-1.198.026-2.136.08-3.239.624-1.43.702-2.496 1.784-2.953 3.337-.911 3.095.297 7.07 1.792 9.802 2.123 3.877 5.387 6.869 9.652 8.108 1.625.122 3.817-.274 5.184-1.159 1.496-.968 2.278-2.583 2.593-4.298 1.018-5.531-1.961-9.887-4.923-14.176 0-1.688-.041-3.376-.124-5.062-1.947-1.306-4.239-2.285-6.29-3.445Z\" fill=\"#2831DF\"/><path d=\"m212.213 73.676-2.946-1.598c-.06 2.32-.092 4.641-.096 6.963.831.578 1.673 1.14 2.526 1.687.343-2.345.031-4.71.516-7.052Z\" fill=\"#FEFEFE\"/><path d=\"M209.171 79.041c-1.602-.76-3.551-1.32-5.296-.708-1.137.399-1.958 1.288-2.433 2.378-1.142 2.62-.441 6.008.646 8.549 1.503 3.514 4.382 7.189 8.022 8.631 1.509.598 3.252.776 4.754.06a4.326 4.326 0 0 0 1.099-.744 4.502 4.502 0 0 0 .586-.666 4.244 4.244 0 0 0 .439-.77c.061-.136.114-.275.16-.415 1.035-3.126-.114-7.053-1.604-9.851-.864-1.623-2.31-3.733-3.847-4.777a78.873 78.873 0 0 1-2.526-1.687Z\" fill=\"#FAD300\"/><path d=\"M43.23 173.193c-2.581-1.462-5.225-2.802-7.814-4.249-3.452-1.928-6.9-4.014-10.523-5.605-4.114 2.628-8.4 5.029-12.621 7.48-2.535 1.472-5.053 3.145-7.72 4.361l.024 5.063c3.398 2.07 7.032 3.83 10.553 5.689 2.719 1.434 5.446 3.063 8.256 4.297 4.194-2.168 8.391-4.337 12.436-6.778 2.665-.908 5.445-2.84 7.895-4.255.092-1.651.532-4.271-.029-5.831l-.458-.172Z\" fill=\"#2831DF\"/><path d=\"M42.99 173.37c-.376-.19-.908-.616-1.317-.438-1.47.643-18.951 10.847-19.007 10.908-2.344-.318-14.06-6.963-17.665-8.508-.022 1.527-.07 3.058.013 4.583 2.474 1.85 5.593 3.181 8.327 4.63 3.29 1.744 6.599 3.712 10.017 5.177.036-1.762.168-3.604-.153-5.343.762.228 2.038-.652 2.727-.988.44-.558 1.783-1.127 2.423-1.494 2.148-1.228 13.992-7.232 14.635-8.527Z\" fill=\"#FEFEFE\"/><path d=\"M25.186 164.002c-1.139.071-16.81 9.596-19.558 11.134 5.475 2.645 10.81 5.692 16.343 8.177 1.213.035 17.384-9.397 19.529-10.565-5.232-3.069-10.802-6.214-16.314-8.746Z\" fill=\"#FEFEFE\"/><path d=\"M29.532 174.692c.28-1.432.349-2.75-.475-4.021-.605-.931-1.513-1.576-2.604-1.791-1.862-.368-4.388.553-5.887 1.669-.895.666-1.593 1.565-1.765 2.693-.186 1.22.263 2.391.998 3.349.977 1.271 2.674 2.546 4.316 2.703.824.078 1.72-.301 2.316-.869.065-.062.113-.141.17-.211 1.268-.677 1.972-1.655 2.685-2.879l.246-.643Zm131.48-146.865c-.843.017-1.706.128-2.312.784-.4.433-.667.977-.736 1.563-.408 3.46-.101 7.267-.09 10.761.029 6.56.013 13.12-.048 19.68 1.634-1.437 3.206-2.935 5.205-3.847 2.579.844 4.92 2.32 7.298 3.606 3.959 2.146 7.902 4.318 11.832 6.516.928.474 2.065 1.212 3.144 1.128.931-.072 1.448-.75 2.024-1.397.145-3.117.504-20.37-.139-22.297-.35-1.047-1.026-2.214-1.881-2.928-2.363-1.972-5.775-3.17-8.49-4.667-5.292-2.915-10.412-6.175-15.807-8.902Z\" fill=\"#FAD300\"/><path d=\"M171.325 38.969c-.394-.02-.56.01-.904.207-.91 1.67.315 3.024-.056 4.613-.132.564-.278.588-.75.837-1.702.075-3.326-1.02-4.79-1.79-.064 1.082-.033 2.167-.021 3.252 1.206 1.25 2.925 1.913 4.162 3.153 1.745 1.748 1.419 4.369 1.395 6.633.719.49 1.441.865 2.232 1.228.243.063.491.111.737.165.836-1.13.392-3.998.372-5.401 1.916.312 3.696 1.282 5.562 1.837a32.321 32.321 0 0 0-.082-3.05c-1.356-1.082-3.052-1.77-4.331-2.933-1.553-1.413-1.118-4.813-1.169-6.744a7.97 7.97 0 0 0-2.357-2.007Z\" fill=\"#FEFEFE\"/><path d=\"M203.108 202.163c-3.235 1.477-6.304 3.481-9.373 5.276-5.806 3.395-11.606 6.877-17.474 10.156.33 2.362.192 4.811.189 7.192l20.091 11.449c2.405 1.34 4.784 2.964 7.278 4.117l.065.141c.111.018.222.07.333.053.404-.061 21.281-12.778 23.633-14.127.596-.372 1.225-.726 1.771-1.167-.316-2.417-.493-5.363-.027-7.765-2.876-2.224-6.426-3.896-9.603-5.673-5.654-3.162-11.335-6.306-16.883-9.652Z\" fill=\"#2831DF\"/><path d=\"M177.042 218.677c-.075 1.904-.066 3.804-.058 5.709a523.12 523.12 0 0 0 19.558 11.34c2.261 1.255 4.638 2.871 7.024 3.844-.402-1.839-.17-4.082-.154-5.971-4.47-2.81-9.173-5.262-13.758-7.877-4.147-2.367-8.284-5.031-12.612-7.045Zm25.784-15.876c-3.536 1.518-8.255 4.779-11.702 6.802-4.729 2.774-9.812 5.274-14.307 8.411 3.649 1.864 7.177 3.99 10.737 6.018a1653.324 1653.324 0 0 0 15.542 8.713c.138.024.273.086.412.073.696-.066 23.104-13.556 25.545-15.061-5.591-3.639-11.607-6.823-17.438-10.071-2.901-1.615-5.767-3.522-8.789-4.885Z\" fill=\"#FEFEFE\"/><path d=\"M203.318 206.318c-.073-.003-.146-.01-.219-.008-.644.019-1.224.234-1.802.507-2.783 1.319-15.477 8.697-17.384 10.663l.008.43c.422.768.974 1.3 1.675 1.823 2.143 1.596 4.86 2.791 7.191 4.112 3.469 1.966 6.847 4.087 10.327 6.032 2.41-.948 18.661-10.833 19.523-12.31-1.44-1.778-16.574-10.158-19.319-11.249Z\" fill=\"#FAD300\"/><path d=\"M111.184 62.835c-8.378-3.894-16.744-9.18-24.825-13.754-3.42-1.936-6.84-4.03-10.462-5.56-1.205-.51-2.382-.882-3.704-.904-2.836-.045-5.948 1.152-7.969 3.152l.225.408c-.672 1.05-1.111 1.884-1.19 3.145-.164 2.64-.043 5.353-.05 8.002l-.039 15.692-.007 47.987-.028 14.591c-.03 3.159-.49 6.938.226 10.004.742 3.182 2.544 5.715 5.364 7.359 3.187 1.858 6.66 3.41 9.936 5.125l22.901 11.962 7.142 3.697c1.109.569 2.396 1.093 3.418 1.789l-.306.222-.49.029c-.514.88-.763 1.891-1.066 2.859l-.409-.422c-2.999 8.242-6.74 8.126-13.405 12.28-.713.445-.83 1.324-1.458 1.85-1.76 1.472-4.595 2.784-6.701 3.788-.065.032-.131.061-.197.091-3.525-1.885-11.732-6.91-15.016-7.712-1.525-.373-3.03-.28-4.528.16-4.156 1.221-10.305 5.836-14.193 8.196-2.578 1.565-5.869 3.156-8.189 5.027-.927.375-1.729.984-2.552 1.545-.835.531-1.616 1.167-2.406 1.761-.116 1.752-.083 3.489-.033 5.241.306.208.616.41.93.606 3.163 1.965 6.774 3.48 10.069 5.24l28.598 14.993c8.144 4.296 16.199 8.75 24.373 12.993 2.538 1.318 5.089 3.154 7.746 4.172 2.277.873 4.991.829 7.345.276 1.11-.26 2.229-.609 3.269-1.08 4.379-1.978 8.607-4.637 12.833-6.942 3.565-1.945 7.996-3.918 11.213-6.317.695-.519 1.114-1.043 1.566-1.78.024-1.519-.033-3.033-.087-4.55-2.418-1.566-5.213-2.776-7.775-4.099l-14.283-7.432c-12.76-6.687-25.308-13.864-38.317-20.056 2.357-1.28 4.875-2.485 7.075-4.018 7.754 3.914 15.418 8.058 23.101 12.114 2.876 1.519 8.825 5.179 11.73 5.821 2.744.606 17.605-8.809 20.708-10.741l-.019-2.446c4.783 2.34 9.423 5.098 14.111 7.629 2.227 1.201 4.587 2.617 6.97 3.456.976.344 2.113.646 3.153.478 1.928-.31 10.408-5.904 11.572-7.7.602-.928.502-2.585.529-3.673.184-7.401.004-14.848-.011-22.253l.022-37.552-.013-19.646c-.009-3.362.389-7.37-.325-10.644-.622-2.855-2.161-5.681-4.334-7.631-3.363-3.018-12.328-7.228-16.699-9.55a1663.807 1663.807 0 0 1-15.972-8.765c-5.112-2.79-10.31-5.463-15.216-8.608.049-1.743-.022-3.325-.578-4.996-1.236-3.71-3.891-6.14-7.301-7.864-.443-1.867-1.111-3.403-2.622-4.685-.766-.65-1.724-1.123-2.752-1.005-1.376.158-2.185 1.111-2.998 2.13-2.095 2.62-5.591 3.707-7.6 6.515Z\" fill=\"#000\"/><path d=\"M141.488 191.772c-.525.429-2.288 5.313-2.826 6.426a55.33 55.33 0 0 1-2.542 4.617c-1.801 2.882-3.931 5.171-6.565 7.301 2.951-.301 4.906-1.246 7.441-2.737 4.583-2.71 9.456-5.11 13.815-8.164l-.082-2.33a311.227 311.227 0 0 1-9.241-5.113Z\" fill=\"#7A90FD\"/><path d=\"M111.109 63.24c-3.594-1.635-6.997-3.652-10.44-5.577l-14.168-7.957c-3.967-2.267-8.123-5.143-12.53-6.41-2.344-.676-4.709-.08-6.804 1.055 4.578 1.416 13.546 7.032 18.02 9.518 8.386 4.66 16.982 9.007 25.158 14.034.004 1.474-.084 3.017.069 4.48.456-3.053-.203-6.118.695-9.143Zm23.804 9.924-.014 5.506c3.682 1.032 8.121 4.096 11.549 6.002l20.94 11.64c.859.471 3.67 2.279 4.426 2.337.941.216 1.666.66 2.483 1.147 1.386-.865 3.23-1.322 4.437-2.403-4.604-2.6-9.295-5.001-13.933-7.532l-15.628-8.71c-4.78-2.629-9.584-5.17-14.26-7.987Z\" fill=\"#B9BBFB\"/><path d=\"M125.149 56.724c-.826-.938-1.809-1.882-3.127-1.978-.802-.058-1.458.275-2.039.806-.427.39-1.102.958-1.265 1.516l.274-.027.447.318c-3.042 1.473-6.217 3.437-8.206 6.252-.613 3.595-.578 7.794-.38 11.43 6.278 4.38 13.519 7.862 20.376 11.247a3.92 3.92 0 0 0 1.447.59c.507.088.764-.114 1.156-.392.7-1.42.673-13.955.529-16.225a10.636 10.636 0 0 0-.535-2.677c-1.275-3.876-4.075-5.847-7.6-7.556-.203-1.207-.467-2.231-1.077-3.304Z\" fill=\"#FEFEFE\"/><path d=\"M124.674 58.405c-1.139-1.438-1.689-2.319-3.432-3.07-.799.506-1.655.956-2.249 1.706l.447.317c.66-.107 1.549-.257 2.149.108.275.167.262.406.348.693-.333 1.489-1.33 2.594-1.861 4.007.55.553 1.038 1.159 1.792 1.418.528-.061.775-.11 1.131-.533.449-.534.82-1.213 1.196-1.803.5-1.056.596-1.668.479-2.843Z\" fill=\"#2831DF\"/><path d=\"m111.816 175.752-.49.03c-.514.879-.763 1.89-1.066 2.858-1.077 2.441-2.323 4.812-4.266 6.679-.709.682-1.514 1.332-2.361 1.832-1.453.857-7.254 3.348-7.776 4.719 1.222 1.109 6.095 3.262 7.811 4.174a1112.233 1112.233 0 0 0 16.881 8.896c2.952 1.538 5.886 3.207 8.927 4.558 5.364-3.306 9.292-12.185 11.409-18.018-6.805-3.946-13.927-7.465-20.863-11.184-2.68-1.437-5.728-2.786-8.206-4.544Z\" fill=\"#FEFEFE\"/><path d=\"M178.618 206.772c.028-.021.056-.04.083-.062 2.241-1.736 6.505-3.416 7.84-5.892.525-.976.504-2.629.54-3.729.155-4.715-.001-9.48-.003-14.201v-28.056l.022-28.977c.002-5.129.145-10.305-.033-15.43-.052-1.483-.131-2.962-.596-4.38-1.339-4.082-3.969-6.744-7.737-8.652-1.207 1.08-3.051 1.538-4.437 2.403 1.356 1.493 2.62 3.015 3.558 4.814 1.011 1.94 1.467 3.898 1.624 6.071.356 4.932.089 10.041.082 14.992l-.012 28.254-.004 31.901c.001 5.813.296 11.804-.099 17.599-.077 1.122-.5 2.272-.828 3.345Z\" fill=\"url(#c)\"/><path d=\"M67.166 44.35c-1.008.475-1.976.962-2.717 1.827-.672 1.05-1.112 1.884-1.19 3.145-.164 2.64-.044 5.353-.051 8.002l-.038 15.692-.008 47.987-.028 14.591c-.03 3.159-.489 6.938.226 10.004.743 3.183 2.545 5.715 5.365 7.36 3.187 1.858 6.66 3.409 9.936 5.124l22.901 11.963 7.142 3.696c1.109.569 2.395 1.093 3.417 1.789 4.403 2.111 8.627 4.714 12.937 7.019l30.854 16.616c5.206 2.826 10.434 6.129 15.88 8.445 1.032.438 2.066.837 3.209.67 1.011-.148 2.326-.768 2.924-1.622.856-1.221 1.029-2.868 1.106-4.321.354-6.665.002-13.483.003-20.163l.022-40.256.021-20.292c.019-4.052.399-8.512-.258-12.511-.766-4.658-3.272-7.768-7.004-10.466-.756-.058-3.567-1.866-4.426-2.337l-20.941-11.64c-3.427-1.906-7.867-4.97-11.548-6.002.008 1.709-.029 3.42-.045 5.13 4.301 1.93 8.358 4.284 12.486 6.548l14.007 7.585c2.287 1.237 9.834 4.721 11.209 6.162 1.456 1.524 2.525 4.281 2.789 6.353.427 3.349.215 6.883.204 10.257l-.032 16.74-.123 57.02c-7.825-4.367-15.768-8.459-23.682-12.656a1657.578 1657.578 0 0 0-32.384-17.101 2146.138 2146.138 0 0 0-53.254-27.232l.08-56.224-.013-18.073c-.004-2.904-.113-5.852.005-8.752.03-.744.1-1.49.369-2.192.27-.701.724-1.289 1.447-1.556.635-.234 1.084-.098 1.694.117 3.278 1.152 6.519 3.368 9.553 5.057L98.516 66.46c3.599 1.999 7.913 4.793 11.692 6.226l.205-.304c-.153-1.463-.065-3.006-.069-4.48-8.176-5.028-16.772-9.373-25.159-14.034-4.473-2.486-13.44-8.102-18.019-9.518Z\" fill=\"#FEFEFE\"/><path d=\"M119.302 168.783c-.32.06-.298.046-.628.154-.524.171-.919.589-1.131 1.092-.401.956-.1 2.037.328 2.925.684 1.416 1.524 2.191 2.988 2.728.295-.11.59-.219.868-.368.511-.27.839-.735.995-1.283.279-.977.025-1.987-.442-2.86-.725-1.354-1.528-1.963-2.978-2.388Z\" fill=\"#000\"/><path d=\"M119.662 169.492c-.064.001-.128-.001-.191.005-.389.036-.758.187-.996.502-.402.533-.419 1.139-.277 1.768.32 1.418 1.085 2.362 2.25 3.164.42-.015.682-.117.999-.4.295-.264.407-.568.405-.967-.008-1.556-1.189-2.993-2.19-4.072Z\" fill=\"#2831DF\"/><path d=\"M77.28 191.327c-.7-1.071-2.105-1.648-3.286-2.052-2.291-.784-5.11-.773-7.302.354-.624.321-1.045.585-1.274 1.245l-.752.003c-1.322.778-6.838 3.766-7.28 4.818l.003.367c-.61-.19-.702-.078-1.28.143-2.442 1.57-5.433 2.877-7.617 4.75l-.73.417c-.529.19-1.05.401-1.598.527-.927.374-1.729.984-2.552 1.544-.334.792-1.234 1.29-1.863 1.848-.333 1.554-.245 3.241-.18 4.824 2.033 1.853 7.245 3.995 9.932 5.412l29.721 15.565 24.456 12.987c2.258 1.177 4.426 2.682 6.728 3.741 1.579.727 3.271.928 4.99.859 1.995-.081 3.91-.589 5.743-1.365 4.777-2.024 9.389-5.022 13.922-7.565 3.01-1.69 6.193-3.155 9.164-4.886a6.003 6.003 0 0 0 1.319-1.04c1.441-1.528 1.181-3.452 1.124-5.381a709.42 709.42 0 0 1-13.982-7.341c-3.288-1.774-6.712-3.817-10.163-5.224-.557-.508-1.376-.836-2.045-1.191-2.495-1.146-4.785-2.658-7.345-3.729-.288-.452-1.283-.739-1.768-.939l-.724-.387c-1.973-1.689-5.07-2.933-7.367-4.171-3.289-1.252-6.585-3.293-9.723-4.935-1.766-1.231-5.828-3.282-7.897-3.912-.358-.11-.591-.181-.895-.417l.056-.223-.202.183c-2.704-1.813-5.698-3.412-8.572-4.941-.238.02-.549.001-.76.112Z\" fill=\"#B9BBFB\"/><path d=\"M77.281 191.327c-.701-1.071-2.105-1.648-3.286-2.052-2.291-.784-5.11-.773-7.302.354-.625.321-1.046.585-1.274 1.245 2.31 1.157 4.697 2.443 6.824 3.914l5.038-3.461Zm18.529 9.706c-1.452.433-4.537 2.592-5.816 3.599 2.528 1.447 5.421 2.608 7.737 4.377 1.956-1.414 4.131-2.619 6.193-3.878-2.792-1.001-5.496-2.696-8.114-4.098Zm43.806 22.991c-1.621.339-5.493 3.097-7.076 4.046 2.096 1.399 4.497 2.308 6.615 3.725.782.161 6.076-3.086 7.255-3.683-2.052-1.613-4.518-2.815-6.794-4.088Zm-24.483-13.067c-.289-.453-1.283-.739-1.768-.939-1.909 1.386-4.055 2.414-5.966 3.796 2.306 1.778 5.206 3.122 7.758 4.535 2.004-1.202 4.208-2.34 5.956-3.904-1.63-.906-4.753-2.252-5.98-3.488Zm-9.86-5.497c-1.75-.191-5.333 2.687-6.876 3.691 2.754 1.505 5.572 2.974 8.238 4.627 1.978-1.39 4.136-2.619 6.006-4.147-1.973-1.689-5.07-2.933-7.368-4.171Zm25.556 14.022c-1.816.674-4.977 2.819-6.534 4.021 2.512 1.594 5.276 2.749 7.757 4.394 1.401-1.074 5.444-2.87 6.173-4.117-.386-.978-6.135-3.625-7.396-4.298Zm-8.352-4.796c-1.503.061-5.405 3.013-6.837 3.949 2.572 1.417 5.688 2.778 7.948 4.635 2.159-1.374 4.539-2.545 6.582-4.074-1.488-.813-4.581-2.127-5.648-3.32-.557-.507-1.376-.835-2.045-1.19Zm9.567 13.694c-2.411 1.678-5.27 2.997-7.839 4.44 2.166 1.487 4.533 2.66 6.863 3.861 2.337-.613 5.738-3.002 7.541-4.551-1.949-1.567-4.407-2.492-6.565-3.75Zm-75.935-32.174c-2.441 1.569-5.433 2.876-7.617 4.749 1.427.804 6.588 4.113 7.765 4.181 1.03-1.524 5.47-3.868 7.247-4.981-2.456-1.291-4.807-2.941-7.395-3.949Zm59.347 32.41c-2.45 1.539-5.158 2.945-7.373 4.81 2.495 1.323 4.981 2.744 7.551 3.911 2.596-.934 5.25-2.979 7.563-4.522-2.632-1.165-5.21-2.804-7.741-4.199Zm-50.791-37.739c-1.322.777-6.838 3.765-7.28 4.818l.003.367c2.11 1.507 4.632 2.437 6.766 3.966 2.477-1.751 5.055-3.367 7.602-5.015-2.306-1.437-4.872-2.598-7.09-4.136Zm59.014 32.803c-2.58 1.24-5.194 3.061-7.603 4.628a384.517 384.517 0 0 0 7.632 4.141 187.346 187.346 0 0 1 7.823-4.363l-7.852-4.406Zm-16.854-9.508c-1.007-.038-6.204 3.926-7.37 4.755 2.438 1.513 4.997 2.866 7.459 4.351 1.022-.112 6.149-3.885 7.418-4.683a245.525 245.525 0 0 1-7.507-4.423Zm-33.865-8.814c-2.326 1.749-4.848 3.284-7.31 4.833 2.751 1.51 5.588 2.856 8.346 4.354.633.014 5.96-4.131 6.945-4.761-2.643-1.501-5.399-2.821-7.981-4.426Zm16.624-.412c-2.526 1.311-5.205 3.082-7.5 4.77a667.497 667.497 0 0 1 7.784 4.322l.297.092c2.419-1.513 4.732-3.259 7.066-4.903a162.768 162.768 0 0 1-7.647-4.281Zm-8.014 5.124c-1.33.194-5.624 3.839-6.985 4.872 2.578 1.53 5.208 3.078 7.889 4.417a738.042 738.042 0 0 1 6.95-4.915c-2.527-1.584-5.24-2.934-7.854-4.374Zm16.317-.556c-.957.166-6.107 4.05-7.146 4.89 2.598 1.532 5.32 2.905 7.999 4.292.65.014 6.1-4.07 7.082-4.794-2.681-1.372-5.3-2.926-7.935-4.388Zm8.935 14.175c-2.295 1.862-5.017 3.16-7.347 4.99 2.637 1.482 5.359 2.81 8.004 4.281 1.535-.462 5.795-3.598 7.421-4.651-2.706-1.508-5.456-2.97-8.078-4.62Zm8.08-4.971c-2.32 1.738-4.84 3.259-7.218 4.926 2.573 1.576 5.271 2.973 7.919 4.42 2.349-1.732 5.003-3.2 7.508-4.704-2.728-1.562-5.508-3.033-8.209-4.642Zm-34.139-18.701c-2.246 1.896-5.022 3.4-7.454 5.084 2.808 1.316 5.53 2.871 8.257 4.35 2.313-1.754 4.976-3.077 7.348-4.769-2.692-1.596-5.518-2.966-8.15-4.665Zm-8.465-4.713c-1.059.225-6.374 4.038-7.401 4.95 2.651 1.535 5.349 2.966 7.974 4.551 2.428-1.71 4.932-3.317 7.412-4.95-2.605-1.601-5.366-2.961-7.985-4.551Zm.015 9.868c-2.528-1.885-5.592-3.317-8.339-4.871-2.259 1.66-5.104 3.824-7.716 4.835 3.079 1.353 6.072 3.19 9.03 4.803 2.256-1.705 4.769-3.051 7.025-4.767Zm23.237-4.647c-1.765-1.231-5.827-3.282-7.896-3.913-.358-.109-.591-.181-.895-.416l.056-.223-.202.183c-2.704-1.813-5.698-3.412-8.572-4.941-1.405 1.598-3.558 2.456-5.135 3.884 2.61 1.667 5.416 3.026 8.108 4.554 1.329-1.011 3.844-2.787 5.438-3.103l.082.22c-1.587 1.185-3.47 1.886-5.075 3.085l8.058 4.552c1.857-1.493 4.044-2.577 6.034-3.882Zm-5.599 14.101c-2.22 1.76-4.733 3.156-6.845 5.055 5.255 2.914 10.482 6.024 15.887 8.648a384.864 384.864 0 0 0 7.11-4.602l.049-.123c-.656-1.019-5.966-3.644-7.26-4.351-2.024 1.503-4.51 2.637-6.437 4.196-.104.084-.196.181-.293.272l-.03-.103-.172.062c.758-1.37 4.817-3.519 6.311-4.58a467.51 467.51 0 0 1-8.32-4.474Z\" fill=\"#2831DF\"/><path d=\"M47.76 201.372c-.528.19-1.05.4-1.597.526-.927.374-1.729.984-2.552 1.545-.334.792-1.234 1.29-1.863 1.848 12.392 6.777 25.164 12.923 37.664 19.503l20.03 10.762c3.374 1.828 6.695 3.775 10.139 5.466 2.201 1.081 4.911 2.696 7.371 2.928 1.318.124 2.914-.328 4.152-.801 4.433-1.696 8.584-4.406 12.732-6.695 4.498-2.481 9.117-4.61 13.261-7.65.071-.052.15-.09.225-.135l-.255-.217c-.635.062-1.377.83-1.943 1.161-1.915 1.118-4.008 2.015-5.956 3.099-2.644 1.47-5.185 3.105-7.856 4.532-2.651-1.058-5.146-2.641-7.617-4.059a253.574 253.574 0 0 1-7.87 4.726c-5.369-2.255-10.439-5.598-15.592-8.322-17.556-9.281-34.684-19.379-52.473-28.217ZM69.586 51.32c-.594-.041-1.218-.116-1.706.296-.718.608-.907 1.512-.977 2.41-.124 1.604.063 3.312.046 4.934a1384.54 1384.54 0 0 0 .02 15.76l-.104 37.093c.025 8.393.384 16.888.003 25.271a2889.305 2889.305 0 0 1 83.307 43.189c8.211 4.418 16.595 8.446 24.655 13.143l-.05-55.761.05-16.686c.016-3.078.157-6.207-.028-9.277-.085-1.403-.302-2.699-.827-4.016-.43-1.078-1.19-2.758-2.106-3.471-2.362-1.842-7.761-4.195-10.693-5.789-8.646-4.698-17.241-9.995-26.257-13.933-.094.676-.187 1.398-.425 2.04-.191.52-.462.769-.951 1.016-.816.073-1.5-.289-2.217-.637-3.2-1.555-19.248-9.757-20.622-11.484-.403-.507-.415-1.126-.683-1.689-.43-.904-36.945-20.727-40.435-22.409Z\" fill=\"#2831DF\"/><path d=\"M110.209 89.486c-1.553-1.072-3.083-2.162-4.857-2.837-2.864-1.092-6.16-1.025-8.934.302-.822.394-1.573.82-1.892 1.696l-1.211 1.19c-2.469 2.408-3.406 5.308-3.446 8.697-.112 9.567 5.794 23.315 10.265 31.818 1.631 3.101 3.499 6.04 5.237 9.076.967 3.017 11.667 18.262 13.916 19.512 2.831.335 6.846-1.813 9.406-2.937 8.641-3.794 17.239-10.691 20.712-19.737 2.307-6.012 2.331-12.32-.291-18.23-3.206-7.224-9.354-11.05-16.494-13.837-.775-5.331-4.168-10.422-8.116-13.977-2.329-2.099-5.637-4.12-8.883-3.882-2.349.171-3.929 1.45-5.412 3.146Z\" fill=\"#FAD300\"/><path d=\"M98.158 86.86c-1.47.302-2.462.894-3.633 1.787l-1.212 1.19c.16.05.316.18.482.151.711-.126 2.474-1.233 3.33-1.576.413-.106.828-.18 1.248-.254l-.897-.048-.165-.21.12-.463.741-.326-.014-.251Z\" fill=\"#FEFEFE\"/><path d=\"M108.758 89.332c-.524-.34-1.051-.68-1.601-.977-2.711-1.465-5.956-2.403-8.998-1.495l.015.251-.742.326-.12.464.165.21.897.048c-.42.074-.835.147-1.248.253 1.949.08 4.084.028 5.953.63 1.41.455 2.765 1.26 4.192 1.627.443.114.594.14.92-.224.242-.27.436-.775.567-1.113Z\" fill=\"#F0EDAE\"/><path d=\"M110.209 89.486c-1.553-1.072-3.083-2.162-4.857-2.837-2.864-1.092-6.16-1.025-8.934.302-.822.394-1.573.82-1.892 1.696 1.171-.894 2.163-1.485 3.634-1.787 3.041-.908 6.287.03 8.997 1.494.55.297 1.077.637 1.601.978.562.304.813.382 1.162.932-.034.74-1.126 1.681-.782 2.258l-.021-.219.353.058.909-2.292c1.268-.22 1.937-1.456 3.174-1.858 1.573-.512 3.594.465 4.896-.79 5.324 1.892 9.362 6.767 11.745 11.749.816 1.704 1.43 3.491 1.997 5.29l.324.216c1.899 1.243 4.088 2.13 6.064 3.263 5.529 3.17 9.589 8.087 10.98 14.403 1.405 6.379-.017 13.263-3.515 18.733-5.745 8.984-16.373 15.128-26.536 17.71-3.623-3.84-6.747-8.26-9.651-12.658-1.405-2.128-2.769-4.845-4.486-6.699.967 3.017 11.667 18.262 13.916 19.512 2.831.335 6.846-1.813 9.406-2.937 8.641-3.794 17.239-10.691 20.712-19.737 2.307-6.012 2.331-12.32-.291-18.23-3.206-7.224-9.354-11.05-16.494-13.837-.775-5.331-4.168-10.422-8.116-13.977-2.329-2.099-5.637-4.12-8.883-3.882-2.349.171-3.929 1.45-5.412 3.146Z\" fill=\"#000\"/><path d=\"M118.449 87.42c-1.858-.587-3.673-.795-5.477.118-1.097.554-1.977 1.48-2.593 2.532 1.268-.22 1.937-1.456 3.174-1.859 1.573-.511 3.594.466 4.896-.79Z\" fill=\"#F0EDAE\"/><path d=\"M113.777 103.827c-.324.113-.712.219-.957.479-1.176 1.249-.591 6.257-.609 7.927-2.239-1.075-4.6-3.044-7.043-3.529-.496-.098-.816-.046-1.248.225a2.264 2.264 0 0 0-.447 1.258c-.103 1.342.041 2.766.059 4.115.01 2.319.005 4.637-.014 6.956 2.758 1.724 5.894 3.053 8.826 4.471l.007 10.853c1.477 1.067 3.283 1.769 4.896 2.614 1.757.921 3.48 2.029 5.287 2.838.5.224 1.027.318 1.566.387l.382-.269c.711-1.159.267-8.131.24-9.94 2 1.159 5.168 3.337 7.364 3.816.65.142.974.015 1.515-.342.913-1.472.371-9.744.273-11.868-2.945-1.87-6.389-3.022-9.145-5.165-.184-2.643.476-5.734-.31-8.269-.231-.744-.653-1.369-1.288-1.826-1.206-.872-2.903-1.412-4.249-2.054-1.733-.826-3.416-1.764-5.105-2.677Z\" fill=\"#000\"/><path d=\"M121.992 130.477c.087 2.115.634 9.026-.005 10.71.234.176.473.37.725.52.369.219.651.416 1.079.299.802-1.737.245-7.763.195-9.993-.687-.478-1.415-.926-1.994-1.536Zm11.235-6.264c-.645-.461-1.378-.826-2.069-1.214-.519 3.028.522 9.596-.348 11.902.477.286.965.628 1.518.737.388.076.227.099.556-.127.833-2.192.461-8.737.343-11.298Z\" fill=\"#2831DF\"/><path d=\"M121.842 108.612c-1.849-.851-6.211-3.378-7.656-3.778-.432-.119-.605-.056-1.019.065-1.255 1.436-.586 6.442-.534 8.348-2.077-1.035-5.91-3.985-8.114-3.904-.416.274-.56.432-.657.939-.266 1.382.062 8.665.06 10.75 2.872 1.615 5.94 2.835 8.803 4.466.168 3.6.087 7.214.064 10.818 2.943 1.784 6.191 3.161 9.199 4.871.639-1.684.092-8.595.005-10.71 1.577.148 7.191 3.551 8.817 4.424.87-2.306-.171-8.874.348-11.903-2.322-1.399-4.793-2.612-7.194-3.871-.035-2.505.648-6.755-.252-8.99-.358-.887-1.058-1.149-1.87-1.525Z\" fill=\"#7A90FD\"/><path d=\"M123.962 119.128c-.035-2.506.648-6.756-.252-8.991-.357-.886-1.057-1.149-1.87-1.525.055 2.117-.236 9.88.477 11.331.73-.001 1.108-.343 1.645-.815Z\" fill=\"#2831DF\"/></g></g><defs><linearGradient id=\"c\" x1=\"170.799\" y1=\"151.018\" x2=\"190.704\" y2=\"152.715\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#6D77F8\"/><stop offset=\"1\" stop-color=\"#8E92F8\"/></linearGradient><clipPath id=\"a\"><path fill=\"#fff\" transform=\"matrix(-1 0 0 1 259 0)\" d=\"M0 0h259v262H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x3h5v7\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a4viqa\",\"data-framer-name\":\"Frame 1000005926\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(33, 33, 34)\"},children:\"Compliance Documentation and Reporting\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"rgb(33, 33, 34)\"},children:\"Compliance Documentation and Reporting\"})}),className:\"framer-o39u80\",\"data-framer-name\":\"Compliance Documentation and Reporting\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"Documentation is a key requirement in regulatory environments, ensuring businesses can demonstrate compliance.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\"},children:\"Documentation is a key requirement in regulatory environments, ensuring businesses can demonstrate compliance.\"})}),className:\"framer-1xm8x6a\",\"data-framer-name\":\"Documentation is a key requirement in regulatory environments, ensuring businesses can demonstrate compliance.\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cmzzq\",\"data-framer-name\":\"-------------------------------------------------- (2) 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:255,intrinsicWidth:315,svg:'<svg width=\"315\" height=\"255\" viewBox=\"0 0 315 255\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_183_1154)\">\\n<path d=\"M180.277 214.271L180.136 213.577C179.442 212.752 178.726 212.386 177.674 212.183C177.932 212.925 178.419 213.224 178.991 213.743C179.036 215.113 179.618 219.054 178.821 220.025C178.59 220.307 178.264 220.556 177.986 220.793L179.671 220.497C179.778 218.912 179.773 217.326 179.85 215.74C179.881 215.108 179.796 214.708 180.277 214.271Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M256.004 111.933L255.559 111.801L255.263 112.09C255.264 112.603 255.271 113.027 255.091 113.519C255.198 114.267 255.3 115.016 255.396 115.766C255.163 117.467 254.84 118.757 253.479 119.927C253.743 120.348 253.964 120.489 254.375 120.743C254.66 120.574 254.954 120.396 255.187 120.158C256.443 118.873 256.249 116.214 256.3 114.516L256.394 114.295L256.432 113.344L256.004 111.933Z\" fill=\"#232CD5\"/>\\n<path d=\"M281.881 98.1084L281.545 98.5215C281.642 99.1938 281.836 99.7642 282.075 100.399C281.214 102.553 280.383 104.75 280.253 107.093C281.054 106.486 281.645 105.607 282.113 104.729C282.901 103.25 283.824 100.954 283.219 99.2843C282.954 98.5544 282.535 98.4029 281.881 98.1084Z\" fill=\"#232CD5\"/>\\n<path d=\"M107.508 227.301C106.483 227.899 105.568 228.596 105.245 229.796C105.018 230.636 105.137 231.347 105.457 232.137C105.806 232.355 106.171 232.553 106.457 232.853C107.106 232.538 107.759 232.235 108.228 231.666C108.74 231.045 109.066 230.246 108.967 229.434C108.841 228.401 108.313 227.892 107.508 227.301Z\" fill=\"#232CD5\"/>\\n<path d=\"M25.8652 177.745C24.0519 177.184 20.9028 175.841 19.0766 176.774C18.7378 176.947 18.5151 177.218 18.4216 177.582C18.2119 178.392 18.7636 179.325 19.2024 179.97C19.809 180.862 20.4704 181.824 21.19 182.627C21.3706 181.674 21.803 180.42 22.358 179.626C22.8839 178.871 23.7454 178.164 24.6617 177.986L25.8652 177.745Z\" fill=\"url(#paint0_linear_183_1154)\"/>\\n<path d=\"M275.152 102.199C273.377 102.432 271.879 103.471 270.378 104.375C267.211 105.983 264.06 107.62 260.924 109.288C259.299 110.136 257.501 110.886 256.004 111.933L256.431 113.344L256.394 114.295C258.372 114.238 271.017 106.37 274.392 105.333C274.915 105.066 275.172 104.879 275.395 104.34L275.202 103.906L275.152 102.199Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M107.51 227.3C106.87 226.775 106.118 226.23 105.613 225.573C104.547 224.187 103.765 221.652 101.681 221.837C100.486 221.943 99.5476 222.756 98.8458 223.668C97.5581 225.343 96.5446 228.027 96.8928 230.161C97.0154 230.912 97.4374 231.559 97.8562 232.177L98.6032 232.306C100.632 231.683 103.317 232.464 105.459 232.137C105.139 231.347 105.02 230.636 105.246 229.796C105.57 228.596 106.484 227.899 107.51 227.3Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M282.163 97.0154C282.128 96.9409 282.092 96.8668 282.058 96.7924C281.796 96.219 281.924 95.8907 281.367 95.5229C279.768 95.695 277.572 97.7008 276.578 98.9045C276.253 99.2949 275.988 99.7224 275.783 100.187C275.548 100.853 275.303 101.507 275.154 102.199L275.203 103.906L275.396 104.34C275.173 104.879 274.917 105.066 274.394 105.333C274.228 105.971 274.15 106.626 274.489 107.23C274.944 108.041 275.983 108.411 276.844 108.588C276.927 108.606 277.012 108.62 277.096 108.636C276.536 110.724 277.048 120.099 277.049 122.897L277.081 155.046C277.075 161.554 277.205 168.093 276.837 174.592C276.818 176.308 276.817 178.025 276.832 179.742C273.974 180.437 270.766 181.369 269.111 184.024C268.622 184.809 268.331 185.715 268.183 186.624C270.189 189.416 272.3 191.009 275.764 191.596C279.338 192.202 283.461 191.665 286.459 189.522C287.51 188.771 288.277 187.821 289.027 186.783C288.997 186.022 288.856 185.258 288.536 184.561C287.514 182.334 285.364 181.222 283.18 180.413C282.203 180.075 281.185 179.895 280.174 179.688C280.25 177.958 280.261 176.227 280.208 174.496C279.95 172.156 280.105 169.67 280.091 167.314C280.07 163.522 279.991 159.734 280.013 155.942L280.149 123.803C280.162 120.769 279.815 108.804 280.254 107.093C280.383 104.75 281.214 102.553 282.076 100.399C281.837 99.7643 281.643 99.1939 281.545 98.5216L281.881 98.1085L282.163 97.0154Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M275.781 100.187C275.546 100.853 275.301 101.507 275.152 102.199L275.201 103.906L275.394 104.34C275.171 104.879 274.914 105.066 274.392 105.333C274.226 105.971 274.147 106.626 274.487 107.23C274.942 108.041 275.98 108.411 276.841 108.588C276.925 108.606 277.01 108.62 277.094 108.636C277.295 108.355 277.364 108.191 277.431 107.843C277.919 105.316 277.673 102.809 276.249 100.642L275.781 100.187Z\" fill=\"#232CD5\"/>\\n<path d=\"M21.4105 183.449C19.936 184.468 15.4995 186.634 15.2317 188.571C15.1736 188.998 15.2704 189.311 15.564 189.628C17.2289 191.445 30.7869 199.213 33.9844 201.155L75.9571 226.625C81.0758 229.688 86.0898 233.268 91.3778 236.016C93.0495 236.884 94.5699 237.168 96.4451 237.161C98.5153 237.153 100.678 236.762 102.727 236.887C104.457 236.993 107.613 239.451 109.223 237.965C109.675 237.548 109.755 236.892 109.731 236.308C109.697 235.509 109.305 234.939 108.705 234.439C108.005 233.853 107.122 233.474 106.458 232.853C106.173 232.553 105.808 232.355 105.459 232.137C103.318 232.464 100.633 231.683 98.6034 232.306C97.5202 232.742 96.2709 232.968 95.1135 232.733C92.4816 232.198 78.4084 222.904 74.7701 220.707C69.5021 217.526 63.9914 214.544 58.8732 211.139C58.2414 210.719 57.8232 210.281 57.3863 209.664C57.3457 209.676 57.3057 209.691 57.2641 209.7C56.48 209.865 54.1066 208.229 53.3131 207.79C53.1116 207.693 52.912 207.591 52.7143 207.486C50.7061 206.42 48.763 205.054 46.83 203.85L33.5327 195.52C30.4804 193.628 26.3568 191.861 23.7272 189.504C22.9722 188.827 22.2914 187.585 22.0204 186.631C21.73 185.609 21.7751 184.603 22.2785 183.662L21.4105 183.449Z\" fill=\"#ADB0F6\"/>\\n<path d=\"M33.4866 177.598C31.3248 176.784 29.2598 176.828 27.1658 177.808C26.9238 177.921 26.9948 177.88 26.8173 178.001C24.9847 179.018 22.9681 180.858 22.3066 182.904C22.2131 183.189 22.2227 183.374 22.2776 183.662C21.7742 184.603 21.7291 185.609 22.0195 186.631C22.2905 187.585 22.9713 188.827 23.7263 189.504C26.3559 191.86 30.4795 193.628 33.5318 195.519L46.8291 203.85C48.7621 205.053 50.7052 206.42 52.7134 207.486C52.9111 207.591 53.1107 207.692 53.3122 207.79C52.2717 204.466 53.7359 201.17 55.7489 198.49C56.2962 197.762 57.1938 196.881 57.4761 196.034L56.8182 195.451C57.0454 195.422 57.4219 195.548 57.6426 195.608C57.7136 195.627 57.7839 195.648 57.8546 195.668L59.1068 194.963C59.7796 194.576 60.2784 194.489 61.0547 194.414C58.909 192.932 56.5527 191.635 54.3244 190.275C47.4083 186.052 40.2527 182.041 33.4866 177.598Z\" fill=\"#232CD5\"/>\\n<path d=\"M14.3892 128.228C11.4401 130.957 8.43616 134.612 8.2587 138.814C8.11996 142.08 9.76548 145.043 11.9499 147.363C17.5318 153.288 27.4825 155.475 35.4005 155.654C43.2669 155.833 53.1218 154.253 58.9479 148.597C61.244 146.368 62.6814 143.286 62.7182 140.068C62.7546 136.854 61.0236 134.17 58.8169 131.969C57.9348 131.089 56.9655 130.096 55.8921 129.451C55.6362 130.838 55.18 132.247 54.8141 133.613C53.8555 137.19 53.0182 140.956 49.8003 143.195C45.6571 146.078 39.6564 146.892 34.7714 145.956C31.619 145.351 27.6181 143.688 25.8144 140.866C25.2078 139.914 24.5625 138.13 24.8368 136.998C21.6973 136.358 18.0029 134.678 15.9508 132.127C15.1861 131.174 14.2569 129.47 14.3892 128.228Z\" fill=\"#ADB0F6\"/>\\n<path d=\"M61.0554 194.414C60.2791 194.489 59.7802 194.576 59.1075 194.963L57.8553 195.669C57.7846 195.648 57.7143 195.627 57.6433 195.608C57.4226 195.548 57.0461 195.422 56.8189 195.451L57.4768 196.034C57.1945 196.881 56.2969 197.762 55.7496 198.49C53.7366 201.17 52.2724 204.466 53.3129 207.79C54.1063 208.229 56.4798 209.864 57.2639 209.7C57.3055 209.691 57.3455 209.676 57.3861 209.664C57.823 210.281 58.2412 210.719 58.8729 211.139C63.9912 214.544 69.5019 217.526 74.7699 220.707C78.4081 222.904 92.4814 232.198 95.1133 232.733C96.2707 232.968 97.52 232.742 98.6032 232.306L97.8562 232.177C97.1193 232.19 96.3862 232.174 95.697 231.882C94.5748 231.407 93.7508 230.455 93.3636 229.309C92.6934 227.326 93.178 224.889 94.1579 223.087C94.9881 221.561 96.3775 220.189 98.0889 219.725C99.9435 219.222 101.019 219.848 102.562 220.764C102.433 220.625 102.3 220.49 102.168 220.352C99.8402 217.908 95.5983 215.922 92.6857 214.089C88.4715 211.436 84.3573 208.631 80.1505 205.972C76.619 203.74 72.9449 201.668 69.5235 199.273C69.348 198.422 68.9946 197.736 68.4261 197.073C66.7299 195.095 63.5176 194.613 61.0554 194.414Z\" fill=\"#232CD5\"/>\\n<path d=\"M61.0545 194.414C60.2781 194.489 59.7793 194.576 59.1066 194.963L57.8544 195.669C57.7837 195.648 57.7133 195.627 57.6424 195.608C57.4217 195.548 57.0451 195.422 56.818 195.451L57.4759 196.034C57.1936 196.881 56.2959 197.762 55.7487 198.49C53.7357 201.17 52.2714 204.466 53.312 207.79C54.1054 208.229 56.4789 209.864 57.2629 209.7C57.3046 209.691 57.3446 209.676 57.3852 209.664C56.8773 208.366 56.8457 206.985 57.0909 205.627C57.6608 202.469 59.5218 200.06 62.1128 198.272C65.1557 199.954 67.9935 201.867 70.9723 203.645C75.6334 206.429 80.3061 209.095 84.8913 212.017L85.0801 211.837L84.7264 212.054L84.88 211.58C82.0103 209.324 76.9166 206.763 73.588 204.77C69.852 202.533 66.2002 199.698 62.1779 198.028C63.2724 197.586 64.3439 197.299 65.4955 197.043C66.9068 197.602 68.2206 198.497 69.5226 199.273C69.347 198.422 68.9937 197.736 68.4252 197.073C66.729 195.095 63.5166 194.613 61.0545 194.414Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M242.544 207.344L242.001 207.59C237.138 208.888 232.691 212.133 228.384 214.688C224.592 216.937 220.777 219.152 217.01 221.441L218.198 221.654C215.938 223.017 208.289 226.951 207.058 228.742C206.8 229.13 206.594 229.489 206.401 229.912C203.543 228.649 200.77 226.769 198.076 225.182C192.058 221.684 186.124 218.047 180.277 214.271C179.796 214.708 179.88 215.108 179.849 215.74C179.773 217.326 179.777 218.912 179.67 220.497L177.985 220.793C176.542 221.031 174.509 222.814 173.392 223.735C179.098 227.292 185.099 230.542 190.959 233.853C196.252 236.843 201.456 239.959 206.885 242.709C210.709 240.66 244.467 221.255 244.982 220.541C245.117 220.355 245.023 220.072 244.957 219.878C244.627 218.909 242.793 218.097 241.929 217.678C242.373 216.877 242.787 216.037 243.128 215.187C243.877 213.318 244.492 210.419 243.662 208.532C243.423 208.049 242.942 207.698 242.544 207.344Z\" fill=\"#ADB0F6\"/>\\n<path d=\"M179.69 221.968C179.226 221.609 179.095 221.654 178.525 221.625L178.092 221.841C178.13 222.266 178.216 222.443 178.558 222.717C178.89 222.984 179.338 223.192 179.711 223.399L179.69 221.968Z\" fill=\"#B48900\"/>\\n<path d=\"M242.546 207.344L242.002 207.59C237.139 208.888 232.693 212.133 228.385 214.688C224.594 216.937 220.779 219.152 217.011 221.441L218.2 221.654C219.174 220.776 238.779 209.315 239.753 208.987C240.522 208.729 241.182 208.943 241.863 209.313C242.517 210.252 242.728 210.67 242.604 211.799C242.713 212.234 242.694 212.311 243.035 212.591C243.387 211.311 243.06 209.692 243.664 208.532C243.425 208.049 242.944 207.698 242.546 207.344Z\" fill=\"#D09B09\"/>\\n<path d=\"M242.604 211.799C241.993 213.847 241.365 216.239 239.878 217.847C237.781 220.115 234.032 221.651 231.382 223.244C226.636 226.095 221.855 228.838 217.083 231.641C213.786 233.577 210.55 235.588 207.185 237.409C206.914 237.554 206.64 237.693 206.362 237.824C202.104 235.671 198.085 233.002 193.966 230.589C189.221 227.808 184.136 225.197 179.69 221.968L179.711 223.399C182.169 224.594 184.541 226.116 186.908 227.488C193.335 231.215 199.696 235.213 206.269 238.664C210.629 236.535 214.799 233.73 219.002 231.297C223.454 228.708 227.885 226.084 232.296 223.426C234.439 222.159 236.689 221.009 238.767 219.638C241.236 218.009 242.438 215.43 243.035 212.591C242.694 212.311 242.713 212.234 242.604 211.799Z\" fill=\"#D09B09\"/>\\n<path d=\"M206.338 237.121C206.385 237.118 206.434 237.129 206.478 237.112C207.341 236.773 208.314 235.985 209.124 235.49C211.4 234.093 213.686 232.713 215.982 231.349C221.974 227.811 228.164 224.598 234 220.808C235.332 219.944 236.798 219.282 238.045 218.287C239.334 217.259 240.5 215.651 241.108 214.121C241.491 213.158 241.738 210.808 241.285 209.847C240.429 209.735 239.514 210.191 238.755 210.554C234.703 212.493 230.767 215.043 226.915 217.363L212.877 225.7C212.028 226.209 208.382 228.677 207.699 228.812C207.489 228.854 207.272 228.766 207.059 228.742C206.802 229.13 206.595 229.489 206.402 229.912C203.544 228.649 200.772 226.769 198.078 225.182C192.059 221.684 186.126 218.047 180.278 214.271C179.797 214.708 179.882 215.108 179.851 215.74C179.774 217.326 179.778 218.912 179.672 220.497C179.763 220.71 179.866 221.088 180.001 221.261C181.004 222.551 184.962 224.452 186.453 225.327L199.034 232.771C201.44 234.18 204.077 235.499 206.338 237.121Z\" fill=\"#F9F9F9\"/>\\n<path d=\"M212.256 189.565C205.287 193.267 198.657 197.603 191.896 201.664C187.717 204.173 183.247 206.418 179.174 209.068C178.373 209.59 177.524 210.132 176.976 210.928L177.054 211.196L177.674 212.183C178.726 212.386 179.442 212.752 180.136 213.578L180.277 214.271C186.125 218.047 192.059 221.684 198.077 225.182C200.771 226.769 203.544 228.649 206.402 229.912C206.595 229.489 206.801 229.13 207.059 228.742C208.29 226.951 215.939 223.017 218.199 221.655L217.011 221.441C220.778 219.152 224.593 216.938 228.385 214.689C232.692 212.133 237.139 208.888 242.002 207.59L242.545 207.344C238.595 205.634 234.868 202.986 231.201 200.744C226.975 198.159 222.664 195.723 218.411 193.185C216.406 191.988 214.369 190.546 212.256 189.565Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M206.183 228.08C202.875 226.523 199.659 224.422 196.519 222.547L178.624 211.731C178.182 211.467 177.588 211.064 177.054 211.196L177.674 212.183C178.726 212.386 179.442 212.752 180.136 213.578L180.277 214.271C186.125 218.047 192.058 221.684 198.077 225.182C200.771 226.769 203.544 228.649 206.402 229.912C206.595 229.489 206.801 229.13 207.059 228.742C208.29 226.951 215.939 223.017 218.199 221.655L217.011 221.441C214.12 223.775 209.457 225.958 206.183 228.08Z\" fill=\"#D09B09\"/>\\n<path d=\"M194.804 202.595C194.362 202.554 193.914 202.507 193.469 202.499C191.42 202.461 190.34 203.476 188.947 204.795C196.36 205.994 206.629 212.401 212.964 216.54C214.244 215.684 215.463 214.721 216.697 213.799C218.314 212.591 219.938 211.367 221.367 209.938C220.684 209.182 219.952 208.538 219.171 207.886C217.009 209.096 214.981 210.514 212.93 211.9C206.853 208.781 201.528 204.339 194.804 202.595Z\" fill=\"#F9F9F9\"/>\\n<path d=\"M255.263 112.09L255.096 111.921C255.062 111.615 255.106 111.691 254.983 111.476C254.586 110.783 254.426 110.273 254.356 109.473C254.019 105.628 254.306 101.578 254.298 97.7098L254.268 74.2157C254.28 69.8689 254.847 64.761 253.718 60.578C253.649 60.314 253.57 60.053 253.48 59.7949C253.391 59.5371 253.292 59.2832 253.182 59.0331C253.073 58.7828 252.954 58.5372 252.826 58.2964C252.697 58.0556 252.56 57.8202 252.413 57.5903C252.266 57.3602 252.11 57.1361 251.946 56.9181C251.781 56.7002 251.609 56.4891 251.427 56.2848C251.247 56.0803 251.058 55.8832 250.862 55.6935C250.665 55.504 250.461 55.3223 250.251 55.1485C248.113 53.4183 245.428 52.0567 243.068 50.6249L226.455 40.6965C204.544 27.4295 182.517 14.3585 160.373 1.48356C156.341 -0.848671 156.081 -0.372042 152.093 1.77715C151.387 2.15742 150.721 2.56766 149.937 2.76263C149.889 2.77456 149.841 2.7839 149.793 2.79454C151.03 3.19125 152.154 3.73008 153.294 4.34657C156.41 6.03202 183.066 21.5433 183.393 22.0112C185.246 23.3915 187.348 24.4949 189.322 25.7002C194.478 28.8465 199.729 31.8258 204.89 34.9647C206.328 35.8387 208.773 36.876 209.947 37.9437C210.816 37.7948 211.563 38.4223 212.271 38.896C216.022 41.2547 219.879 43.3935 223.674 45.6716C226.26 47.2243 228.766 48.9098 231.372 50.4309C235.615 52.9088 240.677 55.0795 244.318 58.3911C245.957 59.8823 247.082 61.5645 247.585 63.7433C248.262 66.6756 247.824 71.8444 247.815 74.9914L247.733 97.8442L247.729 131.758C247.801 141.962 248.009 152.205 247.78 162.406C247.734 164.433 247.592 166.421 247.185 168.411C248.535 167.714 249.796 166.704 251.025 165.817C251.487 165.45 251.951 165.055 252.351 164.621C253.375 163.508 254.02 161.992 254.248 160.507C254.512 158.782 254.366 156.859 254.366 155.115L254.371 145.57C254.378 137.33 254.765 128.962 254.375 120.743C253.964 120.489 253.743 120.348 253.48 119.927C254.841 118.757 255.163 117.467 255.396 115.766C255.3 115.016 255.198 114.267 255.091 113.519C255.271 113.027 255.264 112.603 255.263 112.09Z\" fill=\"#6F7FF4\"/>\\n<path d=\"M255.091 113.519C254.851 112.846 254.845 112.658 254.258 112.216C253.698 112.143 253.351 112.217 252.884 112.553C251.708 113.399 251.128 114.942 250.959 116.33C250.842 117.29 250.907 118.362 251.538 119.145C251.927 119.628 252.314 119.889 252.94 119.923C253.12 119.933 253.3 119.929 253.48 119.927C254.841 118.757 255.163 117.467 255.396 115.766C255.3 115.016 255.198 114.267 255.091 113.519Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M304.623 199.675C304.68 193.719 305.946 186.675 301.453 181.991C296.299 176.618 287.443 174.693 280.206 174.496C280.259 176.227 280.248 177.958 280.173 179.688C281.183 179.895 282.202 180.075 283.178 180.412C285.362 181.222 287.512 182.334 288.534 184.561C288.854 185.258 288.995 186.021 289.026 186.783C288.276 187.821 287.508 188.771 286.457 189.522C283.459 191.665 279.336 192.202 275.762 191.596C272.298 191.009 270.187 189.416 268.181 186.623C268.33 185.715 268.621 184.809 269.109 184.024C270.764 181.369 273.972 180.437 276.83 179.741C276.815 178.025 276.817 176.308 276.836 174.592C269.778 175.251 261.312 177.338 256.568 183.039C254.421 185.621 254.141 188.043 254.225 191.291C254.228 194.44 253.741 201.381 254.616 203.951C255.025 205.149 255.801 206.217 256.692 207.103C261.996 212.381 272.55 213.851 279.79 213.771C287.003 213.692 296.479 212.146 301.743 206.825C303.384 205.166 304.682 202.983 304.656 200.591C304.652 200.285 304.641 199.98 304.623 199.675Z\" fill=\"#232CD5\"/>\\n<path d=\"M304.465 194.444L304.539 191.107C300.426 197.445 296.419 199.821 289.012 201.409C281.923 202.928 276.112 202.783 268.999 201.488C272.101 203.064 278.542 203.079 282.04 202.853C283.323 202.77 286.119 201.823 287.151 202.314L287.246 203.18C284.466 205.051 274.178 203.968 270.802 203.312L270.554 203.406L270.491 203.29L269.638 203.208C273.574 204.346 277.919 204.703 282.007 204.418C287.962 204.002 296.018 202.17 300.748 198.46C302.226 197.301 303.248 195.839 304.465 194.444Z\" fill=\"#1D25AE\"/>\\n<path d=\"M268.182 186.624C268.027 188.476 268.131 189.859 269.418 191.341C271.402 193.623 275.096 194.549 277.999 194.668C281.082 194.796 284.983 194.069 287.304 191.879C288.433 190.815 289.069 189.505 289.097 187.951C289.104 187.563 289.063 187.169 289.027 186.783C288.277 187.821 287.509 188.771 286.458 189.522C283.46 191.665 279.337 192.202 275.763 191.596C272.299 191.009 270.188 189.416 268.182 186.624Z\" fill=\"#D09B09\"/>\\n<path d=\"M226.611 160.84C226.679 163.315 227.329 167.967 225.323 169.878C223.111 171.984 219.58 173.57 216.945 175.122L203.297 183.211L156.172 211.045C152.122 213.405 148.135 215.874 144.098 218.255C141.719 219.657 139.264 221.258 136.676 222.235C134.673 222.74 132.798 222.831 130.857 222.003C127.531 220.583 124.331 218.273 121.223 216.402L103.963 206.115C86.1244 195.576 68.133 185.306 49.9883 175.303C49.8183 175.472 49.8825 175.43 49.7066 175.538C49.1433 175.885 48.0934 176.393 47.7765 176.973C47.3783 177.702 47.864 178.727 48.1024 179.452C50.5078 181.75 58.5735 185.67 61.9989 187.57L82.6776 199.254L119.291 220.703C122.466 222.542 129.098 226.941 132.081 227.899C134.103 228.549 136.504 228.323 138.444 227.483C140.28 226.687 142.059 225.529 143.794 224.524L153.724 218.692C159.854 215.078 166.161 211.739 172.373 208.265C182.738 202.483 193.235 196.95 203.864 191.666C208.149 189.574 212.623 187.863 216.887 185.731C221.063 183.644 224.896 180.935 229.095 178.868C234.7 181.474 237.266 184.726 243.991 184.961C245.399 185.01 246.875 184.93 248.239 184.551C251.349 183.688 258.831 179.606 261.169 177.392C261.978 176.626 262.789 175.594 262.765 174.425C262.699 171.194 253.484 168.093 251.14 165.93C251.101 165.893 251.063 165.854 251.024 165.817C249.794 166.704 248.533 167.714 247.183 168.411C246.354 168.855 245.437 169.393 244.521 169.621C243.651 169.838 242.789 169.767 241.94 169.502C238.366 168.389 230.331 163.004 226.611 160.84Z\" fill=\"#ADB0F6\"/>\\n<path d=\"M59.1587 96.6444C56.7352 92.3669 52.1232 89.6763 47.496 88.3689C40.273 86.3277 31.2515 87.2087 24.7242 90.8597C21.6041 92.6038 18.8325 95.0669 17.8452 98.6157C17.6451 99.3269 17.3483 100.691 17.7613 101.336C17.8226 101.431 17.8935 101.518 17.9613 101.608C17.7935 102.086 17.5967 102.613 17.8226 103.108C17.9097 103.302 18.0581 103.467 18.1904 103.629C17.8484 104.571 18.3808 109.929 18.897 110.895C19.0229 111.133 19.0164 111.102 19.2003 111.329C18.768 112.237 19.0712 114.802 19.4907 115.738C19.5907 115.96 19.6036 115.96 19.7391 116.119C16.9901 117.775 14.9316 120.014 14.1314 123.184C13.7281 124.774 13.6571 126.735 14.3895 128.227C14.2572 129.47 15.1865 131.174 15.9512 132.127C18.0033 134.678 21.6977 136.358 24.8371 136.998C24.5629 138.13 25.2082 139.914 25.8148 140.866C27.6184 143.688 31.6194 145.351 34.7717 145.955C39.6567 146.892 45.6575 146.078 49.8007 143.195C53.0185 140.956 53.8558 137.19 54.8144 133.613C55.1803 132.247 55.6366 130.837 55.8924 129.451C57.4531 124.078 58.5166 118.569 59.5291 113.073C59.6669 111.663 60.0437 110.312 60.1147 108.881L60.278 108.889C60.097 104.374 61.2572 100.951 59.1587 96.6444Z\" fill=\"#232CD5\"/>\\n<path d=\"M23.7109 133.137C23.6012 133.022 23.5754 132.999 23.4657 132.858C22.6946 131.853 21.6879 127.9 21.8879 126.582C21.1265 127.794 18.9227 128.066 17.5869 128.407L17.4934 128.844C17.6547 129.407 17.8612 129.897 18.2064 130.374C19.4486 132.093 21.7137 132.831 23.7109 133.137Z\" fill=\"#ADB0F6\"/>\\n<path d=\"M20.7639 120.337C19.0699 121.014 17.9245 122.106 17.2308 123.809C16.7791 124.914 16.5952 126.748 17.1695 127.869C17.2856 128.097 17.3954 128.243 17.5857 128.407C18.9215 128.066 21.1253 127.794 21.8867 126.582C21.1575 125.25 20.3638 121.766 20.7639 120.337Z\" fill=\"#F9F9F9\"/>\\n<path d=\"M58.7715 97.5562C56.4081 93.1228 52.6201 90.4761 47.8383 89.0436C41.0145 86.9998 31.9737 87.6827 25.7303 91.0442C22.7263 92.6617 19.6934 95.1818 18.706 98.571C18.4705 99.3806 18.3705 100.167 18.4898 101.007C18.4221 101.989 18.4543 102.774 19.0061 103.615C18.9964 103.894 18.9932 103.986 19.0836 104.236C20.0773 107.015 23.32 109.151 25.8335 110.382C32.9384 113.86 41.7146 114.317 49.1861 111.755C52.8469 110.499 56.9379 108.169 58.656 104.524C59.7582 102.186 59.6253 99.9355 58.7715 97.5562Z\" fill=\"#F9F9F9\"/>\\n<path d=\"M21.6058 99.1738C21.1347 99.4252 20.5991 99.8229 20.0635 99.8306C19.4795 100.878 19.586 102.36 19.9377 103.473C20.07 103.891 20.2345 104.13 20.5507 104.425L20.3991 103.925C20.5733 103.165 21.1057 102.762 21.6445 102.243C21.4122 101.861 21.2928 101.438 21.2025 101.002C21.0444 100.251 21.1767 99.7897 21.6058 99.1738Z\" fill=\"#1D25AE\"/>\\n<path d=\"M57.2227 104.13C58.131 102.182 58.1103 99.8383 57.4279 97.8213C56.2754 94.4156 53.1882 92.093 50.0813 90.5552C44.0651 87.5771 36.3617 87.6126 30.0764 89.7392C26.2464 91.0353 22.3875 93.3698 20.558 97.1223C20.1547 97.9473 19.7417 98.9267 20.0643 99.8303C20.5999 99.8225 21.1356 99.4249 21.6066 99.1735C21.1775 99.7894 21.0452 100.251 21.2033 101.002C21.2937 101.438 21.413 101.861 21.6454 102.243L21.968 101.839C21.8228 101.195 22.0906 100.762 22.423 100.229C23.5813 98.3852 26.1722 96.4136 28.305 95.9631C28.5889 95.6196 28.8696 95.6276 29.2891 95.5135C29.8247 95.0617 30.4345 95.0285 31.1024 94.9277C31.6284 94.4066 32.5898 94.4017 33.29 94.3302C35.0227 93.3051 38.901 93.6915 40.9015 93.7111C42.4825 93.8142 44.0777 94.0192 45.6045 94.4613C46.1633 94.6479 46.7874 94.8 47.3152 95.0566C48.9617 95.5751 50.4195 96.1107 51.8014 97.1642C53.3044 98.5873 54.384 100.046 55.311 101.895C55.6133 102.878 55.7288 103.791 55.815 104.812C55.4623 105.418 55.1245 106.042 54.7353 106.626C51.4323 110.231 46.7415 111.905 41.9404 112.366C40.5336 112.501 38.9591 112.408 37.591 112.719C40.8595 113.325 45.1589 112.494 48.2522 111.399C51.8989 110.107 55.5271 107.718 57.2227 104.13Z\" fill=\"#232CD5\"/>\\n<path d=\"M56.0508 100.515C55.7594 99.8753 55.4461 99.2563 55.0673 98.6636C52.7164 94.9869 48.2435 92.6124 44.0606 91.7539C38.4654 90.6054 31.1604 91.1632 26.3206 94.3623C24.9332 95.2805 21.9454 97.507 21.6066 99.1738C21.1775 99.7896 21.0452 100.251 21.2033 101.002C21.2936 101.438 21.413 101.861 21.6453 102.243L21.968 101.84C21.8228 101.195 22.0906 100.762 22.4229 100.229C23.5813 98.3855 26.1722 96.4139 28.3049 95.9633C28.5889 95.6198 28.8696 95.6279 29.289 95.5138C29.8246 95.062 30.4345 95.0288 31.1024 94.9279C31.6283 94.4068 32.5898 94.402 33.29 94.3304C35.0226 93.3053 38.901 93.6917 40.9014 93.7114C42.4824 93.8145 44.0776 94.0194 45.6045 94.4616C46.1633 94.6482 46.7873 94.8003 47.3152 95.0568C48.9617 95.5753 50.4195 96.1109 51.8014 97.1644C53.3043 98.5876 54.3839 100.046 55.3109 101.896C55.5758 101.445 55.811 100.979 56.0508 100.515Z\" fill=\"#010172\"/>\\n<path d=\"M40.9029 93.711C38.9025 93.6914 35.0241 93.305 33.2915 94.3301C32.5913 94.4016 31.6298 94.4065 31.1039 94.9276C30.436 95.0284 29.8261 95.0616 29.2905 95.5134C28.8711 95.6275 28.5904 95.6195 28.3064 95.963C26.1737 96.4135 23.5828 98.3851 22.4244 100.229C22.0921 100.762 21.8243 101.195 21.9695 101.839L21.6468 102.243C21.108 102.762 20.5756 103.165 20.4014 103.925L20.553 104.425C20.4852 105.244 21.166 106.049 21.6823 106.645C24.8637 110.323 31.462 112.458 36.176 112.719C36.6493 112.741 37.1214 112.741 37.5925 112.719C38.9605 112.408 40.5351 112.501 41.9419 112.366C46.743 111.905 51.4338 110.231 54.7368 106.625C55.1259 106.042 55.4637 105.418 55.8164 104.812C55.7303 103.791 55.6147 102.878 55.3124 101.895C54.3854 100.046 53.3058 98.5872 51.8029 97.1641C50.4209 96.1106 48.9632 95.575 47.3167 95.0565C46.7888 94.7999 46.1648 94.6478 45.606 94.4612C44.0791 94.0191 42.4839 93.8141 40.9029 93.711Z\" fill=\"#F9F9F9\"/>\\n<path d=\"M27.2949 100.679C26.5109 100.607 25.5816 100.732 24.8492 101.012L24.9105 101.428C25.0783 101.574 25.0492 101.591 25.2783 101.613C26.0075 101.682 26.7432 101.086 27.2949 100.679Z\" fill=\"#F6EBAD\"/>\\n<path d=\"M38.3275 96.2603C38.2695 96.2754 38.2114 96.2915 38.1533 96.3057C36.9143 96.6151 35.1494 96.1829 34.0878 96.9944C34.7493 97.6537 35.927 97.5745 36.8078 97.5738L37.1466 97.5719C37.7629 97.1719 38.4179 97.5567 39.0664 97.1271C38.8233 96.8363 38.5771 96.5473 38.3275 96.2603Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M38.45 102.953C38.3823 102.992 38.3113 103.022 38.25 103.071C37.4659 103.72 36.2689 104.019 35.6784 104.762L35.8462 105.085L37.0432 105.352L37.0884 105.635L37.3691 105.696C38.2371 105.409 38.9243 104.78 39.6406 104.228L38.45 102.953Z\" fill=\"#F6EBAD\"/>\\n<path d=\"M33.2891 94.3301C32.5889 94.4016 31.6274 94.4065 31.1015 94.9276C30.4336 95.0284 29.8237 95.0616 29.2881 95.5134C28.8687 95.6275 28.588 95.6195 28.304 95.963C29.3978 96.3349 30.1141 96.5099 30.782 97.5183L30.582 97.662L29.5656 97.2869L29.5205 97.5202C29.7108 98.068 29.7173 98.4738 30.2335 98.7693L30.6465 98.565C30.7078 98.3194 30.7659 98.0761 30.8111 97.827C30.8659 97.5356 32.1856 97.4261 32.547 97.1254L32.4728 96.8763C31.9565 96.5286 31.7758 96.457 31.1595 96.4615C31.1466 96.4615 31.1337 96.4686 31.1208 96.4722C31.3467 96.1638 31.6113 95.8618 31.7016 95.4815C31.7597 95.2376 31.6274 95.1815 31.4887 94.9997L31.7403 95.0461L32.0404 94.7877L32.192 94.9237C32.121 95.3861 32.0856 95.7861 32.121 96.2534C32.476 95.5859 32.6244 94.993 33.1794 94.4361C33.2149 94.4 33.2536 94.3652 33.2891 94.3301Z\" fill=\"#F6EBAD\"/>\\n<path d=\"M31.1016 94.9277C30.4337 95.0286 29.8238 95.0618 29.2882 95.5136C29.7077 95.9503 29.8626 96.1137 30.4563 96.2078C30.966 95.7811 30.9402 95.5568 31.1016 94.9277Z\" fill=\"#F7EA92\"/>\\n<path d=\"M45.6055 94.4612C44.0787 94.019 42.4835 93.8141 40.9024 93.7109C40.9283 93.7667 40.9508 93.8231 40.9799 93.8785C41.3735 94.6951 42.8771 95.3136 42.89 95.9629C42.1511 96.26 41.5897 95.5743 40.8831 95.8505C40.0764 96.2936 39.444 96.2127 38.5664 96.1379L38.3276 96.26C38.5772 96.5471 38.8235 96.836 39.0665 97.1269C38.418 97.5565 37.763 97.1717 37.1467 97.5717C38.1857 97.7799 39.2634 97.5987 40.3088 97.4982C40.5959 98.4234 40.8379 99.2426 40.8798 100.218C41.8478 100.688 41.893 101.376 43.1352 101.44C43.2223 101.328 43.3508 101.213 43.3766 101.072L44.3726 100.221C43.8973 99.6783 44.3126 99.5304 44.1074 99.0196C43.9448 98.6142 42.9803 98.3748 42.719 97.7686C43.0739 97.3077 43.5863 97.1582 44.1064 96.9423C43.9535 96.6497 43.8748 96.4276 43.8218 96.1018L44.42 96.0825C44.33 95.65 43.4985 95.5163 43.232 94.9433L43.4818 94.5952C43.7196 94.5543 43.9086 94.5433 44.148 94.5836C44.6743 94.6722 44.9614 94.6958 45.4719 94.5124C45.5167 94.4966 45.5609 94.4783 45.6055 94.4612Z\" fill=\"#F6EBAD\"/>\\n<path d=\"M43.375 101.073C43.1885 100.485 43.4444 100.11 43.2305 99.5878C42.7045 99.2611 42.2883 99.1972 41.6656 99.36C41.1783 99.487 41.117 99.8115 40.8783 100.219C41.8462 100.688 41.8914 101.377 43.1336 101.44C43.2208 101.328 43.3492 101.214 43.375 101.073Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M47.3167 95.0566C46.7888 94.8001 46.1648 94.648 45.606 94.4614C45.5614 94.4785 45.5172 94.4969 45.4724 94.5127C44.9619 94.696 44.6748 94.6725 44.1485 94.5839C43.9091 94.5436 43.72 94.5546 43.4822 94.5955L43.2325 94.9435C43.499 95.5165 44.3305 95.6503 44.4205 96.0827L43.8223 96.1021C43.8752 96.4279 43.954 96.6499 44.1069 96.9425C43.5868 97.1585 43.0744 97.308 42.7195 97.7688C42.9808 98.375 43.9452 98.6145 44.1079 99.0199C44.3131 99.5307 43.8978 99.6786 44.3731 100.222C44.7028 100.595 44.7109 100.795 44.7599 101.269C45.6669 101.461 46.6675 101.534 47.5483 101.748C47.6193 101.765 47.6823 101.806 47.749 101.835C49.3697 102.373 52.414 105.546 53.421 106.969C53.1322 107.214 52.8341 107.451 52.5147 107.656C47.0747 111.152 39.209 111.597 33.0043 110.295C29.5745 109.575 24.7185 108.021 22.7439 104.845C22.1792 103.939 21.7113 102.913 21.9695 101.839L21.6468 102.243C21.108 102.762 20.5756 103.165 20.4014 103.925L20.553 104.425C20.4852 105.244 21.166 106.049 21.6823 106.646C24.8637 110.323 31.462 112.459 36.176 112.719C36.6493 112.741 37.1214 112.741 37.5925 112.719C38.9605 112.408 40.5351 112.501 41.9419 112.366C46.743 111.905 51.4338 110.231 54.7368 106.626C55.1259 106.042 55.4637 105.418 55.8164 104.812C55.7303 103.791 55.6147 102.878 55.3124 101.895C54.3854 100.046 53.3058 98.5874 51.8029 97.1643C50.4209 96.1108 48.9632 95.5752 47.3167 95.0566Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M51.8008 97.1643C50.4188 96.1108 48.9611 95.5752 47.3146 95.0566C47.7873 95.503 48.2264 95.9297 48.632 96.4411C49.0056 96.9126 49.3754 97.2268 49.9813 97.3438C50.4908 97.4424 51.2836 97.241 51.8008 97.1643Z\" fill=\"#F6EBAD\"/>\\n<path d=\"M48.3477 99.3594C44.4935 98.8173 46.5856 98.4709 44.278 97.0455C44.2206 97.0101 44.1621 96.9765 44.1041 96.9424C43.584 97.1583 43.0716 97.3078 42.7167 97.7687C42.978 98.3749 43.9424 98.6143 44.105 99.0197C44.3102 99.5305 43.895 99.6784 44.3703 100.221C44.7 100.595 44.7081 100.795 44.7571 101.269C45.1421 100.717 45.6051 100.274 46.0826 99.8048C46.5805 99.4174 47.7127 99.4338 48.3477 99.3594Z\" fill=\"#F7EA92\"/>\\n<path d=\"M54.0474 106.398C54.2358 106.141 54.4381 105.884 54.5394 105.578C54.6769 105.163 54.6462 105.125 54.4655 104.753C53.9912 104.717 53.5453 104.662 53.0775 104.575C51.3358 103.117 49.4537 101.357 48.349 99.3594C47.714 99.4338 46.5818 99.4174 46.0839 99.8048C45.6064 100.274 45.1434 100.717 44.7584 101.269C45.6654 101.461 46.666 101.533 47.5468 101.748C47.6178 101.765 47.6807 101.805 47.7475 101.834C49.3682 102.373 52.4125 105.546 53.4195 106.969L54.0474 106.398Z\" fill=\"#F6EBAD\"/>\\n<path d=\"M46.0831 99.8047C45.6056 100.274 45.1426 100.717 44.7576 101.269C45.6646 101.46 46.6652 101.533 47.546 101.748C47.617 101.765 47.6799 101.805 47.7467 101.834C47.9929 101.797 48.2123 101.73 48.4501 101.659L48.4766 101.292C47.8258 100.605 46.9159 100.233 46.0831 99.8047Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M149.792 2.79443C148.474 3.16568 147.419 3.68389 146.75 4.95716C146.188 6.02547 146.077 7.33741 146.026 8.52561C145.87 12.1807 145.999 15.8839 146.004 19.5442L146.023 40.2713L145.978 109.175C143.786 108.157 141.78 107.612 139.421 108.493C136.901 109.435 134.497 111.228 132.2 112.633L118.435 121.116L87.9866 139.426C78.5208 145.237 69.1273 151.281 59.4799 156.786C55.9888 158.765 51.8494 160.567 48.8565 163.253C47.189 165.114 47.2329 168.049 47.3742 170.417C47.4542 171.758 47.7733 173.48 48.7968 174.422C49.162 174.759 49.5679 175.041 49.9886 175.303C68.1333 185.305 86.1247 195.576 103.963 206.115L121.223 216.402C124.331 218.273 127.532 220.583 130.857 222.003C132.799 222.831 134.674 222.74 136.676 222.235C139.264 221.258 141.719 219.657 144.098 218.255C148.136 215.873 152.123 213.405 156.172 211.045L203.297 183.211L216.946 175.122C219.58 173.57 223.112 171.984 225.323 169.877C227.33 167.967 226.679 163.315 226.612 160.84C230.331 163.004 238.366 168.389 241.94 169.502C242.789 169.767 243.651 169.838 244.521 169.621C245.437 169.393 246.354 168.855 247.184 168.411C247.59 166.421 247.733 164.433 247.778 162.406C248.007 152.205 247.799 141.962 247.728 131.758L247.732 97.8441L247.813 74.9913C247.822 71.8443 248.26 66.6755 247.583 63.7432C247.08 61.5644 245.955 59.8822 244.316 58.391C240.676 55.0794 235.613 52.9087 231.37 50.4308C228.765 48.9097 226.258 47.2242 223.672 45.6715C219.877 43.3934 216.021 41.2546 212.269 38.8959C211.562 38.4222 210.815 37.7947 209.946 37.9436C208.772 36.8759 206.326 35.8386 204.889 34.9646C199.727 31.8257 194.476 28.8464 189.321 25.7001C187.347 24.4948 185.244 23.3914 183.392 22.0111C183.064 21.5432 156.409 6.03192 153.292 4.34647C152.153 3.72997 151.029 3.19114 149.792 2.79443Z\" fill=\"#232CD5\"/>\\n<path d=\"M96.3022 183.441C95.6976 183.472 95.0416 183.53 94.4576 183.693C93.6048 183.931 92.7623 184.37 92.3519 185.193C92.0986 185.7 92.0922 186.254 92.2835 186.783C93.0273 188.844 99.2806 191.747 101.404 192.756C101.671 192.749 101.938 192.73 102.203 192.698C102.468 192.666 102.732 192.621 102.993 192.564C103.254 192.508 103.513 192.439 103.768 192.358C104.023 192.278 104.273 192.185 104.52 192.081C105.012 191.868 105.536 191.509 105.705 190.971C105.903 190.341 105.667 189.673 105.334 189.136C104.257 187.405 98.3582 183.994 96.3022 183.441Z\" fill=\"#F9F9F9\"/>\\n<path d=\"M145.979 109.175C143.787 108.156 141.781 107.612 139.423 108.493C136.902 109.435 134.499 111.228 132.201 112.633L118.436 121.115L87.9878 139.426C78.5221 145.237 69.1286 151.281 59.4812 156.786C60.6482 157.215 61.6849 157.887 62.7423 158.529C69.9952 154.391 76.9949 149.781 84.0927 145.387L120.76 122.913C126.211 119.595 131.585 115.846 137.182 112.82C140.628 110.956 142.298 111.442 145.461 113.478C145.938 113.786 146.496 114.238 147.044 114.38C147.126 114.401 147.21 114.418 147.293 114.438C146.117 112.587 145.945 111.312 145.979 109.175Z\" fill=\"url(#paint1_linear_183_1154)\"/>\\n<path d=\"M48.8578 163.253C47.1903 165.114 47.2342 168.05 47.3755 170.417C47.4555 171.758 47.7747 173.48 48.7981 174.422C49.1634 174.759 49.5693 175.041 49.99 175.303C68.1347 185.306 86.1261 195.577 103.964 206.116L121.224 216.403C124.333 218.273 127.533 220.583 130.859 222.003C132.8 222.831 134.675 222.74 136.678 222.235C136.808 221.931 136.917 221.614 136.966 221.285C137.139 220.125 137.425 216.899 136.716 215.949L135.357 215.86C133.964 216.194 132.586 216.081 131.213 215.677C128.58 214.902 120.96 209.727 117.992 208.028C105.889 201.041 93.8396 193.961 81.8452 186.788L62.501 175.422C58.9824 173.367 55.3839 171.401 51.9179 169.261C50.9147 168.642 49.2192 167.718 48.6784 166.632C48.0902 165.45 48.4732 164.417 48.8578 163.253Z\" fill=\"#1D25AE\"/>\\n<path d=\"M147.299 115.061C145.041 113.72 142.276 111.732 139.489 112.464C137.645 112.947 132.935 116.347 131.105 117.488L113.595 128.359L78.2842 150.007C73.3824 153.025 68.2629 155.806 63.5089 159.046C81.2581 169.212 98.9488 179.479 116.581 189.847L134.06 200.393C136.181 201.667 138.228 203.282 140.465 204.32C142.224 205.136 143.996 205.397 145.895 204.891C148.553 204.182 151.335 201.946 153.693 200.484C157.988 197.819 162.255 195.046 166.592 192.459L205.588 169.245C209.602 166.833 213.77 164.598 217.721 162.101C218.417 161.661 219.354 161.102 219.753 160.364C220.168 159.598 219.935 158.678 219.651 157.912C219.565 157.678 219.461 157.456 219.356 157.231C218.166 156.881 214.942 154.575 213.616 153.776L199.45 145.381L175.846 131.581C166.261 126.194 156.745 120.688 147.299 115.061Z\" fill=\"#F9F9F9\"/>\\n<path d=\"M119.696 133.428C119.282 133.468 119.143 133.592 118.836 133.864L118.855 134.201C120.318 136.019 142.567 148.487 146.565 150.837L168.943 163.989C173.887 166.919 178.78 169.929 183.806 172.72C183.962 172.697 183.895 172.72 184.054 172.628C184.467 172.391 184.478 172.416 184.594 171.976C183.787 170.83 168.106 162.117 165.742 160.739L135.117 142.658C130.01 139.624 124.583 136.787 119.696 133.428Z\" fill=\"#ADB0F6\"/>\\n<path d=\"M104.559 142.88L104.201 142.845C103.79 143.034 103.774 143.012 103.587 143.419C104.656 144.81 123.063 155.1 126.058 156.836L168.794 181.641C169.085 181.737 169.381 181.733 169.685 181.752L169.754 181.602L169.522 181.126L169.695 181.233C169.29 180.556 168.442 179.977 167.787 179.55C167.144 179.13 166.387 178.836 165.72 178.431C160.92 175.514 155.948 172.924 151.119 170.063C135.701 160.827 120.181 151.766 104.559 142.88Z\" fill=\"#ADB0F6\"/>\\n<path d=\"M97.3297 147.9C97.1313 147.93 96.889 148.027 96.6957 148.087L96.5731 148.453C96.8277 148.949 97.2033 149.247 97.6659 149.552C99.5374 150.785 101.599 151.836 103.544 152.956L115.355 159.76L139.868 173.922C147.131 178.069 154.48 182.122 161.625 186.465C161.685 186.45 161.748 186.444 161.805 186.42C162.201 186.258 162.423 186.035 162.588 185.662C160.963 184.267 158.64 183.246 156.77 182.15L140.993 173.1L112.349 156.53C107.385 153.656 102.459 150.442 97.3297 147.9Z\" fill=\"#ADB0F6\"/>\\n<path d=\"M112.54 138.247C112.049 138.222 111.85 138.202 111.418 138.48L111.379 138.813C111.787 139.381 112.351 139.736 112.933 140.107C119.437 144.251 126.31 147.889 132.936 151.833C147.264 160.362 161.603 169.005 176.163 177.135L176.453 177.179C176.863 176.981 176.937 176.945 177.188 176.57C176.906 176.058 176.29 175.711 175.797 175.416C174.524 174.654 173.148 174.068 171.875 173.307L127.162 146.939C122.293 144.043 117.344 141.248 112.54 138.247Z\" fill=\"#ADB0F6\"/>\\n<path d=\"M134.077 123.712C133.694 123.881 133.524 124.055 133.256 124.373C133.701 125.206 135.392 126.049 136.219 126.571C144.157 131.581 152.388 136.179 160.49 140.922L179.882 152.514L191.811 159.51C194.112 160.86 196.559 162.128 198.715 163.698C198.848 163.692 198.904 163.7 199.04 163.634C199.47 163.428 199.632 163.176 199.711 162.739C197.101 160.964 194.248 159.484 191.515 157.905C187.854 155.791 184.237 153.595 180.605 151.432C165.003 142.348 149.493 133.107 134.077 123.712Z\" fill=\"#ADB0F6\"/>\\n<path d=\"M126.741 128.593C126.304 128.774 126.099 128.872 125.79 129.249C125.849 129.377 125.875 129.527 125.967 129.634C126.542 130.308 151.87 144.94 154.289 146.358C166.577 153.559 178.699 161.08 191.078 168.119C191.119 168.116 191.161 168.12 191.2 168.109C191.699 167.964 191.772 167.926 191.998 167.49C191.692 166.907 191.186 166.621 190.645 166.272C185.356 162.866 179.693 159.853 174.256 156.665L149.762 142.165C142.08 137.682 134.274 133.318 126.741 128.593Z\" fill=\"#ADB0F6\"/>\\n<path d=\"M183.103 29.4499C176.821 26.041 170.619 22.4948 164.495 18.8113C161.144 16.8297 154.044 12.0308 150.728 11.0547C150.172 11.3167 149.937 11.5861 149.73 12.1871C148.967 14.3953 149.425 25.2882 149.419 28.457L149.405 64.9239L149.405 94.1521C149.406 99.1556 149.234 104.218 149.446 109.213C150.258 110.642 151.094 111.425 152.45 112.333C158.511 116.394 164.965 119.779 171.185 123.568C187.941 133.78 204.791 143.836 221.733 153.736L234.093 161.098C236.316 162.414 238.558 164.217 241.069 164.901C241.429 164.998 241.729 165.033 242.1 165.038C242.643 164.643 242.759 163.801 242.861 163.172C243.435 159.602 243.041 155.437 243.028 151.807L242.968 129.323L242.947 90.7745C242.967 83.7465 243.276 76.6151 242.959 69.6042C242.897 68.2326 242.667 66.8778 241.819 65.746C241.394 65.1789 240.766 64.7383 240.182 64.3464C235.831 61.4261 231.12 58.8937 226.622 56.1925C221.698 53.2351 216.862 50.0595 211.852 47.2545L211.048 46.8855C210.393 46.4807 209.849 46.2119 209.503 45.491L209.809 40.8398C209.977 39.9381 209.912 38.8681 209.948 37.9436C208.774 36.8759 206.328 35.8385 204.891 34.9645C199.73 31.8257 194.478 28.8463 189.323 25.7C187.349 24.4948 185.246 23.3913 183.394 22.0111L183.1 24.419C183.078 26.0958 183.041 27.7735 183.103 29.4499Z\" fill=\"#F9F9F9\"/>\\n<path d=\"M183.391 22.0112L183.097 24.4192C183.076 26.0959 183.038 27.7737 183.1 29.4501C183.072 30.9248 182.344 33.3875 183.438 34.5097C184.918 36.0282 187.343 37.1877 189.157 38.3114C193.32 40.9276 197.502 43.5117 201.704 46.0638C204.275 47.6039 207.186 48.9749 209.511 50.8533C209.797 50.8756 210.075 50.8753 210.361 50.8746C211.302 49.9284 211.038 48.145 211.045 46.8856C210.391 46.4808 209.847 46.2121 209.501 45.4912L209.806 40.8399C209.974 39.9382 209.91 38.8683 209.946 37.9437C208.771 36.8761 206.326 35.8387 204.889 34.9647C199.727 31.8258 194.476 28.8465 189.321 25.7002C187.346 24.4949 185.244 23.3915 183.391 22.0112Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M211.045 46.8857C210.391 46.4809 209.847 46.2121 209.501 45.4912C209.639 47.2688 209.545 49.0716 209.511 50.8534C209.797 50.8756 210.075 50.8753 210.361 50.8747C211.302 49.9285 211.038 48.1451 211.045 46.8857Z\" fill=\"#A29878\"/>\\n<path d=\"M183.393 22.0112L183.099 24.4192C185.823 25.4079 189.428 28.015 191.978 29.5432C197.812 33.0579 203.673 36.5256 209.563 39.9466C209.655 40.2469 209.746 40.5318 209.808 40.8399C209.976 39.9382 209.911 38.8683 209.947 37.9437C208.773 36.8761 206.327 35.8387 204.89 34.9647C199.729 31.8258 194.478 28.8465 189.322 25.7002C187.348 24.4949 185.245 23.3915 183.393 22.0112Z\" fill=\"#A29878\"/>\\n<path d=\"M215.65 102.363C215.773 102.284 215.896 102.204 216.016 102.119C216.835 101.534 217.122 100.822 217.281 99.8534C217.887 96.1638 217.23 90.1652 217.21 86.2161C217.188 81.9339 217.663 75.6265 217.107 71.6256C216.867 69.9002 216.164 68.0932 215.122 66.692C214.629 66.0281 214.051 65.4274 213.373 64.9514C209.149 61.9898 204.406 59.6022 200.019 56.8774C195.151 53.8017 190.25 50.7816 185.314 47.8172C183.02 46.4131 180.775 44.8804 178.414 43.5949C177.821 43.2717 177.263 43.0548 176.584 42.9742C175.758 42.8763 174.857 43.001 174.204 43.5588C173.256 44.3703 173.044 46.1801 172.981 47.3677C172.741 51.8681 173.024 56.4952 173.025 61.0095C173.027 64.8213 172.493 72.4548 173.27 75.7947C173.715 77.7061 174.624 79.037 175.917 80.4769C184.125 85.1359 192.173 90.1484 200.257 95.0249C204.123 97.3572 208.175 100.281 212.339 101.976C213.511 102.453 214.405 102.639 215.65 102.363Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M185.067 56.2236C183.591 56.2733 182.11 56.8098 180.721 57.2636C182.081 59.765 183.922 62.0576 185.455 64.4653C188.797 69.714 192.012 75.0787 195.522 80.2166C197.913 79.5119 200.3 78.7932 202.683 78.0603C204.286 77.5692 205.874 76.9418 207.457 76.3859C206.076 74.2128 204.507 72.1233 203.033 70.0095C200.665 70.3376 198.356 71.0279 196.05 71.6395C192.178 66.6641 189.034 61.1243 185.067 56.2236Z\" fill=\"#232CD5\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_183_1154\" x1=\"20.7931\" y1=\"180.802\" x2=\"21.5716\" y2=\"176.807\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DD9A00\"/>\\n<stop offset=\"1\" stop-color=\"#F6C803\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_183_1154\" x1=\"111.048\" y1=\"142.581\" x2=\"97.0802\" y2=\"125.922\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#586CEE\"/>\\n<stop offset=\"1\" stop-color=\"#4649FF\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_183_1154\">\\n<rect width=\"315\" height=\"254\" fill=\"white\" transform=\"matrix(-1 0 0 1 315 0.125)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xxelx9\",\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-35wx9l\",\"data-framer-name\":\"Frame 427319797\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(33, 33, 34)\"},children:\"Customized Compliance Plan Development\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"rgb(33, 33, 34)\"},children:\"Customized Compliance Plan Development\"})}),className:\"framer-mbrufd\",\"data-framer-name\":\"Customized Compliance Plan Development\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"Based on creating tailored solutions for clients as highlighted in your uploaded content\u200B\u200B.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\"},children:\"Based on creating tailored solutions for clients as highlighted in your uploaded content\u200B\u200B.\"})}),className:\"framer-p15n34\",\"data-framer-name\":\"Based on creating tailored solutions for clients as highlighted in your uploaded content\u200B\u200B.\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ce3twy\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:256,intrinsicWidth:356,svg:'<svg width=\"356\" height=\"256\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M326.964 149.225c-1.665.622-9.533 5.453-10.767 6.7-.943.954-.79 7.295-.715 8.821.051 1.049.268 1.349 1.025 2.034 1.421-.267 10.136-5.599 11.421-6.834.061-2.868.3-5.866.081-8.724-.08-1.04-.247-1.321-1.045-1.997Z\" fill=\"#F9CE2E\"/><path d=\"M322.765 157.624c-.592.04-1.143.155-1.556.621-.531.6-.485 1.36-.454 2.108.597-.006 1.188-.048 1.624-.511.565-.6.451-1.469.386-2.218Z\" fill=\"#1D25AE\"/><path d=\"M27.932 141.211c2.373-1.922 8.711-4.322 10.119-6.645.211-.345.277-.759.315-1.153.209-2.053-.094-4.192.076-6.29.029-.377.145-.914.022-1.272-.35-1.01-.909-1.452-1.82-1.919a9.9 9.9 0 0 0-.395.183c-.96.465-9.463 5.44-9.927 6.052-.091.121-.1.288-.151.432-.098.138-.348.396-.395.545-.36 1.128-.35 6.967-.151 8.269.098.63.224 1.277.792 1.651.413.271.871.347 1.348.209.056-.017.113-.042.167-.062Z\" fill=\"#F9CE2E\"/><path d=\"M33.524 131.711c-.382-.064-.755-.161-1.111.047-.452.263-.594.56-.739 1.032.168.656.215.646.73 1.033.03.016.062.045.1.05.445.069.53-.068.84-.342.268-.674.28-1.106.18-1.82Z\" fill=\"#1D25AE\"/><path d=\"M49.633 104.106c2.124-1.575 10.89-5.82 11.404-7.608.404-1.401.536-8.446-.117-9.672-.41-.148-.52-.084-.94.05-1.519.484-12.14 6.398-12.726 7.526-.098.147-.335.41-.382.568-.329 1.101-.313 7.046-.063 8.279.022.118.085.287.12.392.24.419.444.599.82.885.82.186 1.19.015 1.884-.42Z\" fill=\"#F9CE2E\"/><path d=\"M55.382 94.554c-.237.017-.303.01-.546.085-.395.12-.758.575-.94.92-.196.377-.244.807-.076 1.203.145.35.353.344.681.499.29-.031.569-.098.808-.275.36-.266.632-.803.629-1.25 0-.585-.168-.77-.556-1.182Z\" fill=\"#1D25AE\"/><path d=\"M172.762 9.926c-.648-.547-1.33-.73-2.18-.673-.898.06-1.739.447-2.516.876-2.492 1.375-4.909 2.936-7.373 4.37a924.772 924.772 0 0 0-26.054 15.58L106.034 47.16l-14.177 8.59c-1.573.955-3.886 1.97-5.18 3.217 1.588-.014 4.262-.833 5.711-1.54 4.552-2.216 8.801-5.09 13.087-7.764 4.572-2.853 9.235-5.59 13.831-8.412 2.352-1.445 4.785-2.74 7.15-4.162 4.461-2.681 8.857-5.47 13.329-8.132 2.365-1.407 4.799-2.708 7.127-4.177 4.432-2.797 21.883-14.09 25.85-14.855Z\" fill=\"#232CD5\"/><path d=\"M276.691 126.084c-.312 4.548.082 9.182-.059 13.748-2.345 1.34-5.07 2.816-5.767 5.654-.355 1.448-.226 3.046.593 4.315 2.298 3.558 7.692 5.585 11.65 6.344 7.52 1.444 16.687.347 23.067-4.069 2.019-1.398 3.851-3.352 4.336-5.83.366-1.872-.111-3.49-1.191-5.011a26.61 26.61 0 0 0-.276-.383c-.04-.743-.024-1.542-.194-2.267-.181 3.008.818 6.263-1.239 8.834-2.613 3.268-8.353 5.061-12.358 5.487-5.01.533-12.137-.748-16.095-4.043-.981-.817-1.752-1.853-2.09-3.095-.589-2.167-.272-4.741-.25-6.968.043-4.198.245-8.536-.127-12.716ZM86.302 194.208c-.923.355-3.368 1.034-3.834 1.918-.1.19-.083.466-.093.675-.022.439-.046.76-.37 1.086-.424.426-.974.793-1.457 1.154 2.102 2.028 5.396 3.441 7.932 4.949l16.119 9.597c3.683 2.186 7.222 4.859 11.074 6.727 3.518-.752 6.854-3.375 9.946-5.164 3.8-2.198 7.7-4.236 11.476-6.466 4.41-2.604 8.91-5.623 13.622-7.646-.366-.648-.835-1.329-1.109-2.016l.837-.495c.142-.476.138-.496-.032-.963-.457-.206-.571-.281-1.085-.235-.893 1.23-28.127 16.884-31.271 18.294-4.464-1.57-8.771-4.694-12.833-7.093-6.365-3.758-12.924-7.394-19.058-11.52.17-.919.129-1.87.136-2.802Z\" fill=\"#ADB0F6\"/><path d=\"M86.167 197.01c-.064.627-.171.93.104 1.506 1.938 1.458 4.093 2.669 6.16 3.934a482.155 482.155 0 0 0 13.349 7.841c3.693 2.131 8.197 5.423 12.23 6.596 3.244-1.303 6.304-3.326 9.32-5.081a1417.851 1417.851 0 0 1 15.262-8.701c2.315-1.322 4.627-2.927 7.016-4.083l.838-.495c.142-.476.137-.495-.033-.963-.456-.206-.571-.281-1.084-.235-.893 1.231-28.128 16.884-31.272 18.294-4.464-1.569-8.77-4.693-12.833-7.092-6.365-3.759-12.924-7.394-19.057-11.521Z\" fill=\"#232CD5\"/><path d=\"M179.494 196.225c-.379.165-.557.388-.837.679-.094 1.326-1.347 2.984-1.787 4.354.377.859 2.221 1.839 3.054 2.372 7.272 4.658 14.938 8.789 22.432 13.081 6.562 3.758 12.999 7.728 19.579 11.459 4.321-2.111 8.376-4.843 12.556-7.219 8.762-4.982 17.702-9.907 26.148-15.405a20.71 20.71 0 0 0 1.576-1.081c.671-.516 1.038-1.228 1.122-2.07.04-.408.111-.57-.155-.892-4.282 3.002-9.015 5.377-13.525 8.007l-17.871 10.508c-1.809 1.056-5.786 4.009-7.483 4.438-6.256-3.152-12.172-7.137-18.22-10.67a497.438 497.438 0 0 1-17.741-10.636c-2.607-1.612-5.55-3.142-7.888-5.099-.709-.593-.881-.931-.96-1.826Z\" fill=\"#ADB0F6\"/><path d=\"M289.415 211.406c-1.065 1.389-2.49 2.916-3.242 4.484.625.188 1.272.075 1.913.022 1.406-.45 3.05-.404 4.519-.827-.654-1.717-1.336-2.599-2.84-3.623l-.35-.056Z\" fill=\"#232CD5\"/><path d=\"M293.197 207.043c-1.629 1.291-2.999 2.356-3.782 4.363l.351.056c1.503 1.024 2.186 1.906 2.84 3.623a351.278 351.278 0 0 1 4.808-2.27c-.054-1.501-.352-2.385-1.158-3.658l-.149-.033c-.848-.879-1.83-1.521-2.91-2.081Z\" fill=\"#F9CE2E\"/><path d=\"M338.768 182.276c-.823 1.191-3.47 2.365-4.833 2.877.545 1.104.74 2.88 1.388 3.767-.645.853-34.871 22.518-37.91 23.895a356.96 356.96 0 0 0-4.808 2.27c-1.469.424-3.113.377-4.519.827-.488 2.26-3.465 3.473-3.863 5.581l.316.136c1.643-.312 3.23-1.507 4.793-2.127 2.04-.81 4.197-1.178 6.172-2.197 4.948-2.553 9.675-5.83 14.4-8.774 2.261-1.409 4.614-2.668 6.891-4.053a790.7 790.7 0 0 0 13.727-8.65c2.538-1.615 7.521-4.171 9.553-5.888.199-.455.372-.856.281-1.361-.143-.784-.728-1.154-1.322-1.605-1.069.631-2.179 1.407-3.379 1.745 1.171-1.162 3.672-1.919 4.06-3.689.221-1.008-.422-1.953-.947-2.754Z\" fill=\"#ADB0F6\"/><path d=\"M335.191 179.318c-8.852 6.057-18.069 11.637-26.895 17.723-3.123 1.906-6.116 4.046-9.185 6.041-1.832 1.192-4.395 2.423-5.915 3.961 1.079.56 2.061 1.202 2.91 2.081l.149.033c.805 1.273 1.103 2.156 1.157 3.658 3.039-1.378 37.265-23.042 37.91-23.895-.648-.887-.843-2.663-1.388-3.767 1.363-.512 4.01-1.687 4.833-2.877.525.801 1.168 1.746.947 2.754-.388 1.77-2.889 2.527-4.06 3.689 1.2-.339 2.309-1.114 3.378-1.745.724-.638 1.147-1.077 1.205-2.071.072-1.252-.575-2.29-1.407-3.171-1.047-1.106-2.286-1.747-3.639-2.414Z\" fill=\"#232CD5\"/><path d=\"M338.768 182.276c-.75-.905-1.656-2.025-2.903-2.17-1.746-.202-3.711 1.618-5.061 2.595 1.26.657 2.209 1.368 3.13 2.452 1.364-.512 4.011-1.686 4.834-2.877Z\" fill=\"#F9F9F9\"/><path d=\"M333.34 185.291c-.611-.665-1.332-1.625-2.255-1.831-.663-.149-1.318.124-1.896.423-3.296 1.702-6.387 4.126-9.426 6.255-3.169 2.219-6.508 4.341-9.805 6.367-.6.369-.947.701-1.662.536-3.123 1.906-6.116 4.046-9.185 6.041-1.832 1.192-4.395 2.423-5.915 3.961 1.079.56 2.061 1.202 2.91 2.081l.149.033c4.132-3.021 8.742-5.542 13.053-8.315 8.026-5.162 15.96-10.456 24.032-15.551Z\" fill=\"#6F7FF4\"/><path d=\"M154.192 227.708c-1.742-.951-3.527-1.966-5.2-3.036-2.239-1.434-5.871-4.541-8.325-4.989.027.919.024 1.855.1 2.771-1.026.6-2.702 1.306-3.083 2.488.366 1.505 4.29 3.45 5.68 4.293l18.261 10.856c2.956 1.798 7.603 5.107 10.608 6.364 1.892.792 4.224 1.331 6.259.848 2.445-.579 4.682-2.159 6.849-3.368a420.756 420.756 0 0 0 10.456-6.024c1.171-.698 2.52-1.166 3.637-1.94.457-.317.901-.703 1.199-1.177.334-.53.309-1.218.164-1.808-.015-.059-.037-.116-.055-.175.014-1.821.086-3.656-.137-5.467-.358 1.168-.792 1.932-1.7 2.788.001.4.068.67-.202 1.006-.234.291-13.858 8.534-15.188 9.237-.996.526-2.203 1.137-3.329 1.296-1.63.231-3.647-.533-5.111-1.194-2.689-1.212-5.275-3.054-7.805-4.576-4.38-2.634-8.954-5.172-13.078-8.193Z\" fill=\"#ADB0F6\"/><path d=\"M154.194 227.708c-1.742-.951-3.527-1.966-5.2-3.036-2.239-1.434-5.871-4.541-8.325-4.989.026.919.024 1.855.099 2.771 1.918 2.187 10.555 6.835 13.565 8.689a700.944 700.944 0 0 0 16.373 9.952c1.755 1.049 3.439 2.236 5.228 3.223.759.419 1.979 1.172 2.853 1.218.897.047 2.166-.468 2.976-.856 1.906-.912 17.553-10.145 18.458-11.132.204-.223.374-.475.522-.737.014-1.821.087-3.656-.136-5.467-.358 1.168-.792 1.932-1.7 2.788.001.4.068.67-.202 1.006-.234.291-13.858 8.534-15.188 9.237-.996.526-2.204 1.137-3.329 1.296-1.63.231-3.647-.533-5.112-1.194-2.689-1.212-5.274-3.054-7.805-4.576-4.379-2.634-8.954-5.172-13.077-8.193Z\" fill=\"#1D25AE\"/><path d=\"M79.695 25.799c-1.573-.995-2.798-1.588-4.726-1.135-4.626 1.088-9.007 6.45-11.292 10.32-1.837 3.108-3.895 7.976-2.885 11.654.514 1.868 1.808 2.533 3.402 3.383.196.103.385.202.584.294.66.55 1.496.97 2.31 1.243 2.28.763 4.73.136 6.807-.918 4.853-2.464 8.725-7.764 10.357-12.862.886-2.765 1.485-6.519.02-9.197-1.082-1.975-2.62-2.199-4.577-2.782Z\" fill=\"#F9CE2E\"/><path d=\"M79.695 25.799c-1.573-.995-2.798-1.588-4.725-1.135-4.627 1.088-9.008 6.45-11.293 10.32-1.837 3.108-3.895 7.976-2.885 11.654.514 1.868 1.808 2.533 3.402 3.383.196.103.385.202.584.294-.331-.425-.65-.854-.896-1.335-1.449-2.83-.414-6.47.464-9.306 2.814.389 5.634.726 8.46 1.011l.279.032c.592.063 1.042.116 1.509-.263.735-3.31 1.161-10.054 1.265-13.527 1.193-.673 2.5-.913 3.836-1.128Z\" fill=\"#1D25AE\"/><path d=\"M75.137 27.253c-2.927.502-6.307 4.743-7.91 7.023-.851 1.211-2.05 2.832-2.276 4.326l.12.2c2.814.185 5.643.543 8.43.972 1.284-2.794.585-9.102 1.636-12.521Z\" fill=\"#F9CE2E\"/><path d=\"M241.007 74.285c-.146-.542-.164-1.137-.223-1.696a416.537 416.537 0 0 0-.102 8.659c-4.475 2.402-8.758 5.227-13.113 7.842-4.069 2.444-8.386 4.747-12.251 7.488l.262.29c2.626-1.317 25.119-14.758 25.489-15.72.587-1.523.142-4.34.158-6.033 6.081 3.434 12.241 6.864 18.237 10.437-1.963 1.221-4.351 2.374-6.073 3.894 3.092 2.02 6.335 3.801 9.555 5.608 2.052-1.267 4.187-2.47 6.184-3.819 5.845 3.242 11.482 6.858 17.325 10.094.709.393 2.329.924 2.815 1.482.1.115.153.263.23.395l-.002.576c-1.079.794-2.865.983-4.163 1.349-3.764 1.059-7.344 3.67-8.689 7.42l.44-.005a8.95 8.95 0 0 1 .98-1.989c2.519-3.744 7.382-5.155 11.578-5.974l.221.106c.015 1.014.003 2.036.051 3.048.034 4.989-.204 10.05.053 15.024l4.247.067c4.516-.199 8.891-1.8 12.294-4.779.394.014.433.017.752.245.717-.705 1.217-1.751 1.73-2.616l.054-.268c.087-.327.172-.66.212-.997.186-1.585-.475-3.275-1.412-4.534-2.995-4.022-8.474-5.556-13.193-6.264.026-2.466.579-13.642-.414-14.893-.464-.585-1.39-.82-2.103-.874-.619-.047-1.173.143-1.615.58-.544.536-.814 1.3-.949 2.036-.464 2.53-.089 8.957-.081 11.917-12.946-7.243-25.695-14.87-38.566-22.25-3.324-1.906-6.553-4.02-9.918-5.846Z\" fill=\"#6F7FF4\"/><path d=\"M309.047 115.411c-.475-2.266-.29-3.886-1.935-5.816-2.95-3.46-8.117-5.081-12.507-5.441l-.217 3.603c4.108.34 9.425 1.489 12.236 4.787.71.833 1.189 1.75 1.117 2.869-.068 1.038-.573 1.862-1.231 2.636.395.014.434.017.753.246.717-.706 1.217-1.752 1.73-2.617l.054-.267Z\" fill=\"#C09605\"/><path d=\"M260.108 85.984c-1.681.6-4.087 2.408-5.779 3.358 2.658 1.838 5.601 3.3 8.373 4.963 1.197-.12 4.741-2.702 5.898-3.425-2.799-1.686-5.684-3.225-8.492-4.896Z\" fill=\"#F9F9F9\"/><path d=\"M294.231 90.57c-.3.255-.621.508-.954.718-.972.615-2.07.177-3.093-.072-.342 1.183-.14 2.843-.134 4.088.019 3.947.393 8.338-.108 12.244l-.027.189c.034 4.989-.204 10.05.053 15.024l4.248.067.041-14.848c-.257-5.794.345-11.638-.026-17.41Z\" fill=\"#ADB0F6\"/><path d=\"m294.387 107.757-.13.223-.042 14.848c4.516-.199 8.891-1.8 12.294-4.779.657-.774 1.163-1.598 1.23-2.636.072-1.119-.407-2.036-1.116-2.869-2.811-3.298-8.129-4.447-12.236-4.787Z\" fill=\"#1D25AE\"/><path d=\"M36.414 166.995a2.03 2.03 0 0 0-.944.721c-2.604 3.432-3.377 9.222-2.72 13.374.653 4.153 2.767 7.385 6.185 9.833 5.29 3.79 12.916 4.99 19.257 3.953 8.137-1.33 15.19-4.651 21.051-10.476 1.213-1.205 2.462-2.408 3.46-3.801 2.116-2.953 2.155-6.615.98-9.952-.327-.929-.957-1.895-1.105-2.86a63.29 63.29 0 0 1-.181-1.291c-.03 2.764-.088 5.567.2 8.321l-.09.159c-.703 1.273-1.136 2.622-1.944 3.852-1.99 3.027-6.41 5.209-9.784 6.223-4.671 1.404-9.816 1.269-14.528.138-.91-.218-2.068-.457-2.876-.943-.176-.106-.205-.149-.331-.28-1.512-.312-3.03-1.5-4.226-2.43-.07-.042-.142-.08-.212-.126-2.714-1.833-3.178-5.088-3.648-8.032l-.288-.144-.694.459a134.69 134.69 0 0 1-3.213 1.443 7.158 7.158 0 0 1-2.443-1.045c-.7-.466-1.487-1.173-1.644-2.029-.584-1.137-.622-3.863-.262-5.067Z\" fill=\"url(#b)\"/><path d=\"m82.594 174.816-.089.16c-.703 1.273-1.135 2.622-1.944 3.852-1.99 3.027-6.41 5.209-9.784 6.223-4.671 1.404-9.816 1.269-14.528.138-.91-.219-2.068-.458-2.876-.943-.176-.106-.205-.149-.331-.281-1.512-.311-3.03-1.5-4.226-2.429l-.023.29c.111.351.281.535.54.791 3.311 3.29 9.58 4.609 14.08 4.487 5.646-.152 12.756-2.038 16.73-6.292 1.55-1.66 2.518-3.707 2.451-5.996Z\" fill=\"#6F7FF4\"/><path d=\"m254.182 135.186-59.943 35.248a1010.476 1010.476 0 0 0-15.571 9.391c-3.057 1.867-6.297 4.207-9.619 5.561-2.468 1.006-4.816.611-7.369.226-3.997-1.297-7.577-3.802-11.151-5.955a739.435 739.435 0 0 0-9.452-5.558c-2.008 1.572-4.304 2.775-6.437 4.174 3.489 2.228 7.309 3.88 10.905 5.923 2.985 1.696 5.843 3.917 9.001 5.259 2.195.932 4.656 1.441 7.022 1.681 3.019.305 6 .179 8.803-1.052 3.6-1.582 7.043-4.185 10.469-6.157 11.299-6.506 22.343-13.369 33.544-20.028l26.094-15.349c4.049-2.366 10.186-5.464 13.708-8.324a86.418 86.418 0 0 1-.004-5.04ZM84.584 111.015c-2.374 2.012-5.57 3.532-8.265 5.14-3.038 1.813-23.468 13.851-24.017 14.812 2.108 1.568 8.421 3.698 9.807 5.629l-.086.304c5.772-.221 12.868.927 17.267 4.918 1.702 1.545 2.931 3.685 3.048 6.012.027.547.015 1.097.005 1.644l.391.23.242-.88c.422-.183.68-.188 1.122-.018.908.35 1.765 1.057 2.603 1.551l6.511 3.812 26.046 15.348c2.508 1.478 10.412 5.704 12.002 7.405 1.894-.736 4.782-3.499 6.271-4.921-3.539-2.296-7.281-4.297-10.916-6.437l-23.16-13.453a732.375 732.375 0 0 1-9.275-5.39c-1.836-1.081-3.9-2.096-5.5-3.504-.088-1.647-.026-3.31-.008-4.96-.682-.109-1.213-.224-1.815-.57-.817-.659-1.47-1.348-2.141-2.155-.293-2.82-.099-5.822-.1-8.667l-.032-15.85Z\" fill=\"#ADB0F6\"/><path d=\"M174.182 210.756c-2.036-1.352-7.329-5.534-9.74-5.152-.893.142-1.867.622-2.662 1.036-2.65 1.379-5.157 3.137-7.738 4.652-3.598 2.113-7.676 4.125-10.988 6.658-.844.515-1.723.986-2.387 1.733 2.454.448 6.086 3.555 8.326 4.989 1.672 1.07 3.457 2.085 5.199 3.036 4.124 3.021 8.699 5.559 13.078 8.193 2.53 1.522 5.116 3.364 7.805 4.576 1.464.661 3.481 1.424 5.111 1.194 1.126-.159 2.333-.77 3.329-1.296 1.33-.703 14.955-8.946 15.189-9.237.269-.336.202-.606.201-1.006.908-.856 1.342-1.62 1.7-2.788-1.811-1.921-10.091-6.4-12.827-8.11-4.469-2.793-8.887-6.127-13.596-8.478Z\" fill=\"#F9CE2E\"/><path d=\"M169.141 223.575c-.403.511-.743 1.028-.855 1.679a2.744 2.744 0 0 0 .493 2.13c1.07 1.482 3.173 2.27 4.936 2.509 2.135.29 4.761-.084 6.485-1.458.755-.602 1.464-1.533 1.503-2.532.033-.831-.337-1.49-.893-2.076.03 1.084.12 1.995-.671 2.856-.244.264-.536.479-.827.688-.96.419-1.858.701-2.9.846-1.008.037-2.053.044-3.049-.122-1.44-.24-3.176-.733-4.017-2.016-.577-.882-.44-1.523-.205-2.504Z\" fill=\"#C09605\"/><path d=\"M180.809 223.827c-1.881-1.753-3.999-2.817-6.632-2.743-1.86.053-3.419.766-4.698 2.113-.117.123-.227.251-.339.378-.235.981-.372 1.622.205 2.504.841 1.284 2.577 1.776 4.017 2.016.996.166 2.041.159 3.049.123 1.041-.146 1.94-.428 2.9-.847.291-.209.583-.424.826-.688.792-.861.702-1.772.672-2.856Z\" fill=\"#F9F9F9\"/><path d=\"M174.182 210.756c-2.036-1.352-7.329-5.534-9.739-5.152-.894.142-1.868.622-2.663 1.036-2.65 1.379-5.156 3.137-7.737 4.652-3.598 2.113-7.676 4.125-10.988 6.658-.845.515-1.723.986-2.387 1.733 2.454.448 6.086 3.555 8.325 4.989 1.673 1.07 3.458 2.085 5.2 3.036 4.123 3.021 8.698 5.559 13.077 8.193 2.531 1.522 5.116 3.364 7.805 4.576 1.465.661 3.482 1.424 5.112 1.194 1.125-.159 2.333-.77 3.329-1.296 1.33-.703 14.954-8.946 15.188-9.237.27-.336.203-.606.202-1.006l-10.125 5.808c-2.603 1.514-5.48 3.633-8.358 4.5-1.021.307-2.31.493-3.338.139-2.525-.869-5.57-3.309-7.855-4.773-2.705-1.732-5.508-3.264-8.238-4.944-2.309-1.42-4.539-3.052-6.932-4.322l-.178-.093c-3.017-1.918-7.52-4.312-10.117-6.526-.564-.482-.522-.761-.6-1.457.416.072.804.12 1.179.325a140.916 140.916 0 0 1 9.034 5.397c1.457-1.212 3.071-2.207 4.66-3.236 5.145-3.716 10.9-6.602 16.144-10.194Z\" fill=\"#232CD5\"/><path d=\"M169.431 209.958c-1.726.616-7.972 3.841-9.106 5.039-.286.302-.208.271-.194.647l.429.118c1.436-.765 9.329-4.403 9.723-5.082l-.852-.722Z\" fill=\"#F9CE2E\"/><path d=\"M289.916 107.737c-.048-1.012-.036-2.034-.051-3.048l-.221-.106c-4.196.819-9.059 2.23-11.578 5.974a8.958 8.958 0 0 0-.98 1.99l-.44.004c-.455 2.004.114 10.665.045 13.533.372 4.18.169 8.518.127 12.716-.023 2.227-.34 4.801.25 6.968.337 1.242 1.108 2.278 2.089 3.094 3.958 3.296 11.086 4.577 16.095 4.044 4.005-.426 9.745-2.219 12.358-5.487 2.057-2.571 1.058-5.826 1.24-8.834-.137-2.967-.038-5.986-.046-8.958-.012-4.652-.07-9.303.188-13.949-.513.865-1.013 1.911-1.73 2.616-.319-.228-.358-.231-.753-.245-3.402 2.979-7.777 4.58-12.293 4.779l-4.247-.067c-.257-4.974-.019-10.035-.053-15.024Z\" fill=\"#232CD5\"/><path d=\"M289.643 104.583c-4.195.819-9.058 2.23-11.578 5.974a8.998 8.998 0 0 0-.979 1.99c-.518 1.176-.356 2.799.101 3.986 1.004 2.607 3.761 4.326 6.233 5.337 5.711 2.336 12.604 2.473 18.315.059 2.068-.875 3.939-2.043 5.527-3.635-.319-.228-.359-.231-.753-.245-3.402 2.979-7.778 4.58-12.293 4.779l-4.248-.067c-2.538-.054-5.63-1.067-7.856-2.264-1.653-.889-3.51-2.289-4.012-4.192-.279-1.056-.01-2.086.579-2.984 2.218-3.383 7.29-4.746 11.015-5.533l-.051-3.205Z\" fill=\"#F9CE2E\"/><path d=\"M289.916 107.737c-.048-1.012-.036-2.034-.051-3.048l-.221-.106.05 3.205c-3.724.787-8.796 2.15-11.015 5.533-.588.898-.857 1.928-.578 2.984.502 1.903 2.359 3.303 4.012 4.192 2.225 1.197 5.318 2.21 7.856 2.264-.257-4.974-.019-10.035-.053-15.024Z\" fill=\"#1D25AE\"/><path d=\"M224.745 182.481c-1.634.08-28.169 15.997-32.155 18.191 1.795 1.274 3.809 2.328 5.685 3.493 5.633 3.496 11.386 6.857 17.106 10.212 2.719 1.594 5.484 3.094 8.133 4.808.293.215.503.238.86.281 2.658-1.25 5.211-2.912 7.732-4.42l11.996-7.158c3.176-1.878 8.578-4.471 11.199-6.598a7.45 7.45 0 0 0-.24-.265l-.132-.138c-2.298-2.406-6.99-4.71-9.968-6.514a554.925 554.925 0 0 0-20.216-11.892Z\" fill=\"#ADB0F6\"/><path d=\"M118.568 171.043c-3.342 1.676-31.78 17.899-32.26 18.921-.023.048-.031.101-.047.151l.042 4.093c-.008.932.033 1.883-.137 2.802 6.134 4.126 12.693 7.762 19.058 11.52 4.062 2.399 8.369 5.524 12.833 7.093 3.144-1.41 30.378-17.064 31.271-18.294-.529-1.572-.286-3.78-.307-5.44.001-.368-.022-.743-.126-1.099-.897-3.086-13.381-9.703-16.546-11.575-.389-.168-.716-.398-1.069-.629-.317-.289-.762-.49-1.136-.708-3.854-2.286-7.694-4.597-11.576-6.835Z\" fill=\"#F9CE2E\"/><path d=\"M82.342 149.474c.01-.547.022-1.097-.005-1.644-.116-2.327-1.345-4.467-3.048-6.012-4.399-3.991-11.495-5.139-17.266-4.918-5.404.408-11.6 1.932-15.286 6.208-1.632 1.893-2.648 4.205-2.421 6.732.107 1.189.114 3.906 1.004 4.743l-.044.484c-.872.519-1.875.813-2.709 1.372-1.91.446-4.907 1.65-5.965 3.416a.942.942 0 0 0-.148.509c-.49 1.311-.505 5.343-.041 6.631-.36 1.204-.322 3.93.262 5.067.158.856.943 1.563 1.644 2.029.764.509 1.547.84 2.443 1.045a135.77 135.77 0 0 0 3.213-1.443l.694-.459.288.143c.47 2.945.934 6.2 3.648 8.032.07.046.142.085.212.127 1.196.929 2.714 2.118 4.226 2.429.126.131.155.175.331.281.808.485 1.967.724 2.876.943 4.712 1.131 9.857 1.266 14.528-.138 3.375-1.014 7.795-3.196 9.784-6.223.809-1.23 1.24-2.579 1.944-3.853l.09-.159c-.288-2.753-.23-5.556-.2-8.32-.2-4.446-.024-8.979-.03-13.434.47-1.162.436-2.134.367-3.358l-.391-.23Z\" fill=\"#232CD5\"/><path d=\"M45.275 155.067c-.87.52-1.874.813-2.708 1.372-.047.511-.025.858.297 1.294.268.364.735.603 1.177.622.218.009.449-.017.663-.034.347-.968.401-2.223.571-3.254Zm-.315 14.101c-.915.287-2.24.604-3.014 1.168-.06.453-.12.526.161.91.161.215.363.33.584.472.735-.019 1.345.151 2.099.026.42-.546.202-1.88.17-2.576Z\" fill=\"#1D25AE\"/><path d=\"M45.028 160.429c-1.093.378-3.251 1.132-3.977 2.017-.49 1.033-.386 6.129.031 7.282.098.274.164.384.439.505.107.047.306.08.426.103.773-.564 2.099-.881 3.014-1.168-.123-.387 0-.61.133-.976-.685-1.059-.587-5.991-.256-7.279.038-.148.133-.354.19-.484Z\" fill=\"#F9F9F9\"/><path d=\"M78.05 155.181a12.025 12.025 0 0 0 1.678-1.589c1.444-1.693 2.392-3.694 2.164-5.961-.254-2.527-1.866-4.625-3.817-6.152-4.833-3.784-12.142-4.876-18.123-4.091-4.924.646-10.551 2.848-13.613 6.935-.606.81-1.174 1.565-1.026 2.602-.69.746-.735 1.898-.688 2.878.073 1.436.682 3.346 1.692 4.392.754 2.099 3.933 4.067 5.858 4.97.458.214.94.412 1.42.569 1.948 1.259 5.46 1.617 7.727 1.731 6.976.353 14.107-1.333 19.401-6.113.604-.696 1.115-1.532 1.643-2.29.47-1.162.436-2.134.367-3.358l-.391-.23c-.36 1.906-1.305 2.723-1.842 4.308-4.337 4.414-10.432 6.239-16.524 6.393-5.4.137-11.129-1.082-15.128-4.944-.561-.545-1.373-1.338-1.385-2.156 1.243.332 1.786 2.081 3.188 2.51.404.982 2.821 1.982 3.774 2.384 5.499 2.318 12.945 2.186 18.422-.109 1.104-.463 2.236-1.032 3.228-1.705.7-.28 1.325-.6 1.975-.974Z\" fill=\"#F9CE2E\"/><path d=\"M78.051 155.181c-.102-2.679 1.374-2.96-.264-6.139-1.508-2.926-4.416-4.601-7.473-5.552-5.434-1.692-12.302-1.381-17.365 1.321-3.428 1.827-4.826 4.052-5.908 7.673.107.322.164.365.423.591 1.243.332 1.786 2.081 3.187 2.51-.372-1.425-.126-3.303.616-4.566 1.616-2.766 5.504-4.406 8.487-5.1 4.703-1.095 10.535-.333 14.654 2.243 1.244.778 2.51 1.865 2.884 3.34.388 1.533-.227 3.192-1.085 4.467-.042.063-.087.124-.13.186a15.15 15.15 0 0 0 1.974-.974Z\" fill=\"#997505\"/><path d=\"M76.076 156.156c.044-.063.089-.124.131-.187.858-1.275 1.472-2.934 1.084-4.467-.373-1.475-1.639-2.562-2.883-3.34-4.12-2.576-9.951-3.338-14.654-2.243-2.983.694-6.871 2.334-8.487 5.1-.742 1.263-.988 3.141-.616 4.566.404.982 2.822 1.982 3.775 2.385 5.498 2.317 12.945 2.186 18.422-.11 1.103-.463 2.236-1.032 3.228-1.704Z\" fill=\"#C09605\"/><path d=\"M256.899 146.837c-5.817 3.696-11.971 6.974-17.97 10.372-3.805 2.154-7.631 4.649-11.577 6.504-.327.154-.328.261-.51.56l.34 3.05.259.128c3.473 1.741 6.789 4.047 10.156 6.001l23.018 13.411c3.333 1.975 6.717 4.397 10.196 6.06.934.447 2.153.998 3.177.635 3.21-1.137 6.399-3.585 9.341-5.311a705.826 705.826 0 0 0 14.117-8.462c2.087-1.265 4.346-2.44 6.342-3.833l.028-.575c-.492-.717-41.987-25.578-46.917-28.54Z\" fill=\"#232CD5\"/><path d=\"m256.944 147.331-18.365 10.572c-3.522 2.013-7.081 3.919-10.557 6.016 5.02 2.779 9.873 5.866 14.792 8.816l16.75 9.902c4.322 2.582 8.619 5.303 13.081 7.638.445.132.846.149 1.278-.029 2.705-1.112 5.477-3.116 7.996-4.631 6.288-3.781 12.781-7.995 19.319-11.286-1.41-1.117-3.074-2.034-4.602-2.995-3.582-2.252-7.218-4.394-10.846-6.569l-28.846-17.434Z\" fill=\"#F9F9F9\"/><path d=\"M210.906 26.29c-.48.258-.643.532-.97.946-.164.208-.108.138-.385.288-1.759.032-3.246.863-4.472 2.095-.496.498-1.171 1.32-1.192 2.059-.002.048.009.095.013.143-.083.306-.15.87-.354 1.098-1.149 1.285-3.161 2.29-4.628 3.198-3.877 2.4-9.389 5.375-12.838 7.997-.299 9.326-.184 18.692-.207 28.022-.12.71-.125 1.319-.763 1.77-2.311 1.632-7.842 5.313-10.287 6.261.022.473-.099 1.107.306 1.43 1.495 1.191 5.148 2.435 7.042 3.505l18.191 10.501c2.333 1.326 4.684 2.85 7.096 4.014.31-.155.183-.122.499-.172 2.381-.379 4.478-.984 6.582-2.173l1.041-.403-.262-.29c3.865-2.741 8.182-5.044 12.251-7.488 4.355-2.616 8.638-5.44 13.112-7.843.005-2.886.039-5.772.103-8.658.058.558.077 1.153.223 1.695.45-2.067.201-4.714.225-6.847a574.938 574.938 0 0 0-.21-21.817c-2.499-2.067-5.666-3.29-8.482-4.874-3.385-1.903-6.706-4.012-9.97-6.117l-.246-.637c.26-.702.227-1.448.084-2.178-.481-2.458-4.163-3.933-6.332-4.514-.538-.144-1.438-.162-1.865-.5-.057-.046-.111-.095-.167-.143-.037.33-.015.522.086.837-.584 1.128-.766 2.372-1.37 3.509.184-1.372.631-2.77.962-4.116l-2.541-.026-.275-.573Z\" fill=\"#1D25AE\"/><path d=\"M203.827 33.55c-1.538.712-2.969 1.807-4.408 2.713l-8.116 5.01c-1.26.773-3.475 1.814-4.501 2.672-.161.135-.193.225-.281.39l.205.452c.313.12.653.271.981.337.651.132 14.486-8.515 16.089-9.752.298-.541.106-1.234.031-1.823Zm18.714 1.283c-.448.602-.634 1.314-.872 2.018 2.767 1.155 6.986 4.588 10.113 6.288 2.114 1.093 4.549 2.685 6.938 2.962.516.06.491.032.903-.283-.612-1.56-5.022-3.517-6.597-4.394-3.519-2.131-7.277-4.004-10.485-6.591Z\" fill=\"#F9CE2E\"/><path d=\"M185.873 72.136c-.12.709-.125 1.319-.763 1.769-2.311 1.633-7.842 5.314-10.287 6.262.022.473-.099 1.107.306 1.43 1.495 1.191 5.148 2.435 7.042 3.505l18.191 10.501c2.333 1.326 4.684 2.85 7.096 4.014.311-.155.183-.122.5-.172 2.38-.379 4.477-.984 6.581-2.173-3.335-1.541-6.495-3.72-9.722-5.499l-11.919-6.71c-2.336-1.317-4.837-2.485-7.025-4.036a774.935 774.935 0 0 1 0-8.89Z\" fill=\"#ADB0F6\"/><path d=\"M210.906 26.29c-.48.258-.643.532-.97.946-.164.208-.108.138-.385.288-1.759.032-3.246.863-4.472 2.095-.496.498-1.171 1.32-1.192 2.059-.002.048.009.095.013.143.152 1.477.85 2.45 1.992 3.372 2.516 2.028 6.42 2.66 9.558 2.309 1.725-.193 3.205-.631 4.789-1.325l.419.342c-3.157 2.15-6.621 2.247-10.317 2.106.059 3.035.296 6.08.54 9.106.115 1.423.375 2.922.354 4.342 1.951.293 4.898.256 6.554-.919 1.842-1.306 1.977-3.763 2.309-5.798.586-2.672.942-5.392 1.493-8.073l.224-.086-.146-.346c.238-.704.423-1.415.872-2.018l.029-.203-.246-.637c.26-.702.227-1.448.084-2.178-.481-2.458-4.163-3.933-6.332-4.514-.538-.144-1.438-.162-1.865-.5-.057-.046-.111-.095-.167-.143-.037.33-.015.522.086.837-.584 1.128-.766 2.372-1.37 3.509.184-1.372.631-2.77.962-4.116l-2.541-.026-.275-.573Z\" fill=\"#232CD5\"/><path d=\"M210.907 26.29c-.48.258-.644.532-.97.946-.165.208-.109.138-.386.288.097.733.365 1.43.45 2.157-1.181-.142-2.041-.186-3.147.354-.631.554-1.031 1.03-1.09 1.897-.057.845.287 1.515.813 2.144 1.961 1.737 4.06 2.294 6.66 2.147 1.337-.076 2.658-.285 3.975-.521 1.117-.313 2.365-.724 3.06-1.714a2.188 2.188 0 0 0 .36-1.8c-.377-1.582-2.043-2.594-3.371-3.333-.941-.599-1.781-.874-2.903-.848l-.228-.512c-.584 1.128-.766 2.372-1.369 3.509.184-1.372.63-2.77.962-4.116l-2.541-.026-.275-.573Z\" fill=\"#1D25AE\"/><path d=\"M210.907 26.29c-.48.258-.644.532-.97.946-.165.208-.109.138-.386.288.097.733.365 1.43.45 2.157l.164.229.296-.379c.553.457.821 1.37.884 2.065.021.236.028.115-.177.387-.399-.208-.528-.59-.72-.973l.014-.012-.273.31.39-.226-.28.232c.416.806.812 1.627 1.354 2.358.125-.801.359-1.703.333-2.51-.388-1.396-.333-2.973-.804-4.3l-.275-.573Z\" fill=\"#C09605\"/><path d=\"M204.104 35.799c-5.14 3.41-10.824 6.137-15.856 9.662 3.478 2.14 7.008 4.19 10.593 6.148 3.784 2.318 7.826 4.262 11.559 6.643 1.297.78 2.651 1.485 3.974 2.221 2.542-1.297 4.961-3.003 7.429-4.451l15.961-9.292c-1.862-1.173-4.016-2.09-5.979-3.1-3.621-1.859-6.806-3.87-9.97-6.433l-.224.086c-.551 2.681-.907 5.4-1.493 8.073-.332 2.035-.467 4.491-2.309 5.798-1.655 1.175-4.603 1.212-6.554.919-1.274-.354-2.661-.655-3.724-1.484-1.813-1.413-1.755-4.538-2.01-6.66l-1.397-8.13Zm36.455 9.795c-5.163 3.277-10.603 6.157-15.892 9.227-3.368 1.956-6.605 4.162-10.015 6.043l.037 26.087c0 2.28-.386 7.744.062 9.573l.261.153.307-.1c3.865-2.74 8.182-5.042 12.251-7.487 4.355-2.615 8.638-5.44 13.112-7.842.005-2.887.039-5.773.103-8.659l-.025-16.819c-.007-3.358.13-6.834-.201-10.176Zm-54.047-.454c-.186.238-.24.518-.258.816-.208 3.414.112 7.01.114 10.444l-.083 24.301c3.852 1.941 7.592 4.168 11.335 6.308l16.229 9.316c.66-.854.3-31.69.252-35.459-9.354-4.94-18.275-10.722-27.589-15.725Z\" fill=\"#F9CE2E\"/><path d=\"M256.29 127.823c-8.908-5.271-17.885-10.508-26.917-15.563-1.598 1.458-4.836 2.769-6.792 3.837l-13.561 7.562c-2.177 1.206-4.486 2.257-6.577 3.601l21.627 15.589c-5.773 2.136-11.509 4.153-16.926 7.106-6.069 3.308-12.042 9.338-18.724 10.941-2.61-1.036-4.635-2.624-7.024-4.021-2.31.888-11.993-6.891-14.916-6.995-7.403 4.097-14.926 8.141-22.078 12.661-6.833-4.489-13.957-8.506-20.996-12.656l-30.187-17.668c-1.694.922-3.172 1.789-4.551 3.149 1.019.705 2.431 1.294 3.152 2.297a35.936 35.936 0 0 1-2.943-1.626c-.047.731-.045 1.507-.206 2.22-.018 1.65-.08 3.313.008 4.96 1.6 1.408 3.665 2.423 5.5 3.504a732.375 732.375 0 0 0 9.275 5.39l23.16 13.453c3.635 2.14 7.377 4.141 10.916 6.437-1.489 1.422-4.377 4.185-6.271 4.921l-.89.78-.226.176c.375.218.819.419 1.136.708.353.231.68.461 1.069.629.863-.143 1.536-.531 2.291-.942 2.134-1.399 4.43-2.602 6.437-4.174a744.43 744.43 0 0 1 9.453 5.558c3.574 2.153 7.154 4.658 11.15 5.955 2.554.385 4.901.78 7.37-.226 3.321-1.354 6.562-3.694 9.618-5.561a1010.572 1010.572 0 0 1 15.572-9.391l59.942-35.248c1.236-.758 1.944-1.4 2.34-2.827.31-1.114.352-3.516-.231-4.536Z\" fill=\"#6F7FF4\"/><path d=\"M256.29 127.823a2962.48 2962.48 0 0 0-49.424 29.198l-23.713 14.37c-4.377 2.646-8.755 5.823-13.462 7.834-2.007.857-4.028.949-6.142.427a13.278 13.278 0 0 1-2.123-.714c.039 2.218.3 4.464.253 6.674 2.554.385 4.901.78 7.37-.226 3.321-1.354 6.562-3.694 9.618-5.561a1010.572 1010.572 0 0 1 15.572-9.391l59.942-35.248c1.236-.758 1.944-1.4 2.34-2.827.31-1.114.352-3.516-.231-4.536Z\" fill=\"#232CD5\"/><path d=\"M88.878 136.038c-.048.73-.046 1.506-.207 2.22-.017 1.649-.08 3.312.008 4.959 1.6 1.408 3.665 2.423 5.501 3.504 3.078 1.82 6.17 3.616 9.274 5.39l23.161 13.453c3.635 2.14 7.377 4.141 10.916 6.437-1.489 1.422-4.378 4.186-6.272 4.921l-.889.78-.226.176c.374.218.819.42 1.136.708.352.231.68.462 1.069.629.863-.143 1.536-.531 2.291-.942 2.134-1.399 4.429-2.601 6.437-4.174a751.454 751.454 0 0 1 9.452 5.559c3.574 2.153 7.154 4.657 11.151 5.954.047-2.21-.215-4.456-.253-6.674-1.95-.963-3.821-2.186-5.693-3.295-4.855-2.879-9.621-5.917-14.494-8.761l-33.988-20.17c-5.13-3.049-10.338-5.923-15.43-9.049a36.23 36.23 0 0 1-2.944-1.625Z\" fill=\"#1D25AE\"/><path d=\"M134.756 174.828c-1.19.871-2.984 2.558-4.385 2.874l-.226.176c.374.218.819.419 1.136.708 1.439-.55 2.809-1.937 4.149-2.76l-.109-.63-.565-.368Z\" fill=\"#D7D081\"/><path d=\"M139.281 173.275c-.218-.558-.978-.839-1.491-1.149-.938.975-2.137 1.738-3.035 2.702l.565.368.108.63c1.015-.971 2.641-1.819 3.853-2.551Z\" fill=\"#D1C7B1\"/><path d=\"M132.349 179.215c1.16-1.525 7.319-3.553 7.965-5.451-.351-.405-.52-.375-1.032-.489-1.213.732-2.839 1.58-3.853 2.551-1.34.823-2.709 2.209-4.149 2.76.353.231.68.461 1.069.629Z\" fill=\"#A1A5B5\"/><path d=\"m172.868 9.966-.104-.04c-3.967.766-21.418 12.058-25.85 14.855-2.328 1.469-4.762 2.77-7.128 4.177-4.471 2.661-8.868 5.45-13.328 8.132-2.365 1.421-4.798 2.717-7.15 4.162-4.596 2.822-9.259 5.56-13.831 8.412-4.286 2.675-8.535 5.547-13.087 7.765-1.45.706-4.123 1.525-5.71 1.539-1.448 1.298-1.861 2.632-1.948 4.513-.167 3.635.034 7.33.007 10.972a1124.07 1124.07 0 0 0-.142 21.415c.05 4.967.393 10.202-.012 15.147l.033 15.85c0 2.845-.194 5.847.099 8.667.67.807 1.323 1.496 2.141 2.155.602.346 1.133.461 1.815.57.16-.713.158-1.489.206-2.22a35.92 35.92 0 0 0 2.943 1.626c-.721-1.003-2.133-1.592-3.153-2.297 1.38-1.36 2.858-2.227 4.552-3.149l30.187 17.668c7.039 4.15 14.163 8.167 20.995 12.656 7.153-4.519 14.676-8.564 22.079-12.661 2.922.104 12.606 7.883 14.916 6.995 2.388 1.397 4.414 2.985 7.024 4.021 6.682-1.603 12.654-7.632 18.724-10.941 5.417-2.953 11.152-4.97 16.925-7.106l-21.626-15.589c2.09-1.344 4.399-2.395 6.577-3.601l13.56-7.562c1.957-1.068 5.195-2.379 6.793-3.837L207.46 99.617c-2.413-1.164-4.763-2.688-7.096-4.014l-18.191-10.5c-1.895-1.07-5.547-2.315-7.043-3.506-.404-.323-.283-.957-.305-1.43.252-4.937.043-9.999.038-14.946l-.031-29.422.013-15.656c.002-2.408.369-5.624-.201-7.948-.245-1-.915-1.708-1.776-2.229Z\" fill=\"#232CD5\"/><path d=\"M128.25 38.717c-.924.275-1.725.586-2.286 1.4-.168.626-.086.906.15 1.501 1.003-.317 1.929-.612 2.517-1.546.084-.73-.005-.759-.381-1.355Z\" fill=\"#F9F9F9\"/><path d=\"m172.867 9.966-.104-.04c-3.966.766-21.418 12.058-25.85 14.855-2.327 1.469-4.761 2.77-7.127 4.177-4.472 2.661-8.868 5.45-13.329 8.132-2.365 1.421-4.798 2.717-7.15 4.162-4.595 2.822-9.259 5.56-13.83 8.412-4.286 2.675-8.535 5.547-13.087 7.765-1.45.706-4.124 1.525-5.71 1.539-1.449 1.298-1.862 2.632-1.948 4.513-.168 3.635.033 7.33.006 10.972a1124.07 1124.07 0 0 0-.141 21.415c.049 4.967.393 10.202-.013 15.147l.033 15.85c0 2.845-.194 5.847.099 8.667.671.807 1.324 1.496 2.142 2.155-.315-2.488-.165-5.123-.156-7.631l.026-11.649.066-38.025c.038-3.526.13-7.06.073-10.584-.036-2.259-.361-4.776-.073-7.015.207-1.607 1.353-2.534 2.047-3.904l.074-.149c1.117-.196 2.377-.155 3.43-.585 1.617-.66 3.234-1.802 4.743-2.7 4.315-2.566 8.525-5.303 12.831-7.887 8.822-5.292 17.747-10.415 26.54-15.757 7.582-4.605 15.022-9.446 22.691-13.91a386.051 386.051 0 0 0 8.099-4.826c1.202-.727 2.603-1.803 3.898-2.299.49-.187 1.076-.204 1.596-.362l.124-.438Z\" fill=\"#1D25AE\"/><path d=\"M185.557 98.78c-5.306 3.03-10.918 5.863-15.966 9.293 5.456 3.746 11.536 6.982 17.318 10.208 5.54-3.047 10.903-6.426 16.501-9.362-2.737-1.851-5.635-3.373-8.511-4.988-3.101-1.742-6.173-3.53-9.342-5.15Z\" fill=\"#F9CE2E\"/><path d=\"M186.929 124.724c-3.499-1.898-6.914-3.957-10.397-5.885a1040.062 1040.062 0 0 0-17.509-9.402c-2.433 1.03-6.967 4.276-8.659 4.818-2.498 1.773-5.292 3.2-7.914 4.791l-13.755 8.449c-3.735 2.272-7.601 4.476-11.177 6.992 3.895 2.618 8.191 4.791 12.279 7.1 4.613 2.605 9.133 5.371 13.738 7.991 2.927-1.254 5.638-2.981 8.379-4.589 1.195-.701 2.519-1.589 3.815-2.076 2.023.917 3.878 2.409 5.702 3.668 1.633 1.127 3.318 2.168 5.008 3.209 1.133-.409 2.249-1.072 3.373-1.547 2.364 2 4.817 3.808 7.343 5.596 1.397.99 2.94 1.931 4.242 3.036 2.389 1.398 4.414 2.985 7.024 4.021 6.682-1.603 12.654-7.632 18.724-10.941 5.417-2.953 11.153-4.97 16.925-7.106l-21.626-15.588c-2.176-1.347-4.235-2.959-6.375-4.374-2.63.86-5.186 2.081-7.772 3.083-.389-.737-.632-.861-1.368-1.246Z\" fill=\"#F9F9F9\"/><path d=\"M186.929 124.724c-3.319 2.14-23.303 12.664-24.285 13.978 2.772-1.085 6.227-3.219 8.879-4.678 5.808-3.197 10.528-5.726 16.774-8.054-.39-.737-.633-.861-1.368-1.246ZM160.282 140.3c-1.418.968-3.052 1.767-4.552 2.613 2.022.917 3.878 2.409 5.701 3.668 1.634 1.127 3.319 2.168 5.009 3.209 1.133-.409 2.249-1.073 3.372-1.547-2.907-2.776-5.875-6.185-9.53-7.943Z\" fill=\"#1D25AE\"/><path d=\"M188.802 132.847c-2.644-.268-6.37.042-8.628 1.61-.655.454-1.228 1.096-1.353 1.907-.136.877.256 1.715.785 2.394 2.135 2.737 5.947 3.771 9.223 4.221 3.081.163 5.57-.417 8.587.663.275-.685.62-1.418.78-2.139.32-1.433-.078-2.935-.876-4.141-1.841-2.779-5.399-3.96-8.518-4.515Z\" fill=\"#F9CE2E\"/><path d=\"M168.231 18.73c-2.24 1.171-4.386 2.684-6.544 4.008a1066.44 1066.44 0 0 0-15.051 9.346 3140.354 3140.354 0 0 1-39.319 23.955c-5.098 3.085-10.035 6.458-15.212 9.406.348 6.962.093 14.044.154 21.017.21 14.621.265 29.243.163 43.865 1.062-.005 13.684-8.16 15.606-9.329l47.854-28.697c4.073-2.45 8.26-4.72 12.294-7.231l-.003-43.47c.017-7.625.183-15.244.058-22.87Z\" fill=\"#2831DF\"/><path d=\"M136.313 62.12c2.291-1.12 4.483-2.607 6.689-3.892 1.263-.735 2.804-1.384 3.931-2.306.296-.242.504-.553.692-.882l-.284-.462c-2.396.695-9.292 5.33-11.773 6.948-1.493.87-3.555 1.807-4.632 3.174l.016.251c1.792-.216 3.849-1.875 5.361-2.832Z\" fill=\"#6F7FF4\"/><path d=\"M147.399 45.76c-1.103.252-22.321 13.072-23.586 14.307-.407.397-.263 1.316-.246 1.85a1023.037 1023.037 0 0 0 18.016-10.94c1.533-.953 4.359-2.357 5.572-3.591.412-.42.255-1.075.244-1.627Z\" fill=\"#ADB0F6\"/><path d=\"M160.291 42.977c-2.862 1.154-5.775 3.625-8.33 5.397l.044 7.776c2.872-1.264 5.641-3.285 8.298-4.962l-.012-8.21Z\" fill=\"#F9CE2E\"/><path d=\"M160.149 31.994c-2.876 1.482-5.691 3.437-8.432 5.157.036 2.798-.155 5.73.156 8.501 2.779-1.655 5.657-3.213 8.309-5.064.013-2.865.002-5.73-.033-8.594Z\" fill=\"#232CD5\"/><path d=\"M160.417 53.683c-2.948 1.297-5.754 3.17-8.419 4.96l.049 10.052a277.472 277.472 0 0 0 8.371-4.776l-.001-10.236Zm.024 12.917c-2.433.845-6.165 3.36-8.282 4.89.053 4.29.013 8.583.1 12.874 1.302-.267 6.649-4 8.171-4.968l.011-12.797Z\" fill=\"#F9CE2E\"/><path d=\"M147.359 65.08c-1.536.851-3.022 1.921-4.524 2.842-3.456 2.118-6.903 4.203-10.333 6.367-8.687 5.48-17.448 10.948-26.347 16.077l.134 2.974c13.553-8.63 27.345-16.874 40.997-25.341.055-.972.058-1.946.073-2.919Z\" fill=\"#ADB0F6\"/></g><defs><linearGradient id=\"b\" x1=\"77.286\" y1=\"161.732\" x2=\"38.296\" y2=\"190.681\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#D1DCED\"/><stop offset=\"1\" stop-color=\"#C1C9FB\"/></linearGradient><clipPath id=\"a\"><path fill=\"#fff\" transform=\"matrix(-1 0 0 1 356 0)\" d=\"M0 0h356v256H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-azmv95\",\"data-framer-name\":\"4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xbll47\",\"data-framer-name\":\"Frame 1000005927\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(33, 33, 34)\"},children:\"Implementation of Security and Privacy Measures\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"rgb(33, 33, 34)\"},children:\"Implementation of Security and Privacy Measures\"})}),className:\"framer-9kua11\",\"data-framer-name\":\"Implementation of Security and Privacy Measures\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"A direct response to handling compliance needs by putting necessary security measures in place.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\"},children:\"A direct response to handling compliance needs by putting necessary security measures in place.\"})}),className:\"framer-12j46ku\",\"data-framer-name\":\"A direct response to handling compliance needs by putting necessary security measures in place.\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ni0akm\",\"data-framer-name\":\"svg 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:219,intrinsicWidth:300,svg:'<svg width=\"300\" height=\"219\" viewBox=\"0 0 300 219\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_183_1315)\">\\n<path d=\"M136.166 177.618C136.461 176.697 136.722 175.776 136.669 174.799C136.614 173.803 136.175 172.949 135.435 172.294L135.178 173.287C135.407 174.759 135.951 176.148 136.166 177.618Z\" fill=\"#F9F9F9\"/>\\n<path d=\"M261.388 92.3296C260.27 94.9238 259.571 98.0587 258.811 100.789C259.5 101.1 260.144 101.31 260.879 101.484C261.77 101.451 262.548 101.396 263.256 100.796C263.758 99.8142 261.807 93.7085 261.388 92.3296Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M39.9339 82.106L39.4891 82.3343C38.854 81.9241 38.0715 80.9452 37.348 80.8597L37.1122 81.0395C37.5142 81.4964 38.2296 81.6805 38.4869 82.2087C37.0988 83.5084 35.1158 84.169 33.5348 85.1938C32.9667 85.562 32.4683 86.0417 31.9002 86.4045C30.7988 87.1091 29.6251 87.7153 28.5211 88.4479C27.7011 88.9931 26.9401 89.6554 26.0692 90.1136C25.5118 90.4055 24.9035 90.6348 24.2685 90.6063C22.6687 90.5343 12.502 84.2087 10.7066 82.9001C12.2313 81.7902 22.6338 75.4923 22.8884 74.9053C22.4409 74.8427 21.6665 75.4664 21.2109 75.6928C19.7853 76.4041 18.4375 77.3839 17.0949 78.2499C14.9539 79.6323 12.8155 80.9835 10.6315 82.2958C10.4493 82.4058 10.3716 82.5478 10.2859 82.7362C10.3636 83.3033 10.7227 83.5801 11.1541 83.9087C12.5341 84.9582 14.2866 85.6916 15.798 86.5595C18.1883 87.9336 20.5491 89.5138 23.0117 90.7386C23.4806 90.9715 23.9067 91.1405 24.4346 91.1938C25.7905 90.8103 29.9869 87.787 30.7426 87.9144C31.0883 87.9729 31.71 88.3883 32.0262 88.57C36.7665 91.2901 41.4292 94.1258 46.2526 96.7009C47.9783 97.623 49.897 98.8426 51.8049 99.3167C52.9154 99.5927 54.1137 99.4186 55.2027 99.1194C56.9767 98.6324 71.3698 90.023 72.226 88.7705C72.2973 88.6664 72.2986 88.6141 72.3203 88.5042C71.656 87.135 69.7213 86.928 68.8158 85.7601C63.7791 88.4395 58.9267 91.7731 54.0687 94.7824C51.0607 93.0274 48.0399 91.294 45.0065 89.5823C43.5434 88.7559 41.2041 87.8107 40.0438 86.6323C40.0089 86.5743 39.9741 86.5177 39.9419 86.4584C39.4944 85.6067 39.6391 83.0082 39.9339 82.106Z\" fill=\"#F9F9F9\"/>\\n<path d=\"M262.795 161.764C261.335 161.096 259.927 160.048 258.546 159.212C255.128 157.17 251.744 155.07 248.397 152.913L248.257 153.048C246.736 154.507 243.365 155.544 243.353 158.022C243.352 158.065 243.358 158.109 243.361 158.152L243.62 158.184L243.48 158.323C245.122 159.768 260.503 169.458 262.296 169.364C263.397 169.306 281.048 159.205 281.842 157.854C281.919 157.722 281.916 157.689 281.939 157.557C280.271 155.895 277.614 155.496 275.866 153.943C273.496 155.342 271.14 156.764 268.797 158.208C266.881 159.41 264.898 160.933 262.795 161.764Z\" fill=\"#F9F9F9\"/>\\n<path d=\"M190.705 177.336C189.733 177.915 187.212 178.841 186.926 180.019C186.795 180.554 187.166 181.353 187.52 181.74C187.904 182.16 212.495 196.911 214.665 197.983C215.322 198.307 216.025 198.395 216.749 198.392C217.631 198.388 218.323 198.107 219.096 197.717C223.871 195.308 228.449 192.252 233.084 189.566C235.562 188.131 243.725 183.941 245.333 182.338C245.831 181.842 246.243 181.163 246.205 180.434C246.176 179.891 245.89 179.464 245.474 179.135C244.773 178.582 243.818 178.292 242.955 178.131C240.641 179.889 237.769 181.187 235.264 182.681C231.722 184.812 228.154 186.899 224.56 188.941C222.687 190.026 220.847 191.257 218.887 192.174C218.235 192.478 217.714 192.561 216.997 192.595C216.373 192.546 215.886 192.458 215.316 192.177C211.652 190.367 207.911 187.764 204.351 185.649C200.079 183.112 194.601 180.292 190.705 177.336Z\" fill=\"#F9F9F9\"/>\\n<path d=\"M77.9758 64.5059C77.8364 65.7584 77.8528 67.0235 77.8399 68.2825C75.5726 69.7652 73.1914 71.0423 70.9025 72.4845C81.7855 79.3751 93.1709 85.4735 104.184 92.1587C105.579 91.4924 106.913 90.5814 108.238 89.7825L116.028 85.07C119.415 83.0283 123.183 81.178 126.379 78.8705C124.705 77.8746 123.155 76.6609 121.473 75.6628C119.39 74.4259 116.884 73.3659 114.96 71.9301C114.77 71.788 114.658 71.6492 114.51 71.4654C108.723 75.061 102.864 78.5341 96.9335 81.885C95.2313 81.0753 93.6088 80.0379 91.9798 79.0883C87.3895 76.4121 82.7716 73.4074 77.99 71.1061C78.0296 68.9059 78.0249 66.7058 77.9758 64.5059Z\" fill=\"#F9F9F9\"/>\\n<path d=\"M54.5761 37.1416C53.2923 38.0847 51.8988 38.9062 50.5555 39.7623C50.2447 40.4663 50.5287 45.7914 50.5325 47.0334C49.0236 46.1015 47.5243 45.1541 46.0344 44.1912C45.343 44.6707 43.4565 45.6785 43.151 46.4191C43.0545 46.5517 42.9232 46.6652 42.8589 46.8172C42.5615 47.5355 42.8053 58.9418 42.7142 60.7614C43.0384 61.0784 43.1992 61.0894 43.628 61.2029C44.6731 62.3622 47.5778 63.7853 49.0597 64.5095L54.4574 67.5391C55.4789 66.883 56.4961 66.227 57.4881 65.5254L58.5731 64.8685C59.8291 64.0996 61.0971 63.4236 62.4163 62.7732C63.2417 62.1862 64.2592 61.7191 65.1445 61.2145C65.0939 60.3159 65.0135 59.4167 64.947 58.5192C64.8353 57.0451 65.1488 51.9704 64.4757 51.102C62.8263 50.3025 61.226 49.3072 59.6204 48.4158C59.6416 45.6158 59.6409 42.8158 59.6182 40.0159L54.5761 37.1416Z\" fill=\"#232CD5\"/>\\n<path d=\"M43.1506 46.4189C43.0541 46.5516 42.9228 46.665 42.8585 46.817C42.5611 47.5353 42.8049 58.9416 42.7138 60.7612C43.0381 61.0782 43.1989 61.0893 43.6276 61.2027C44.6727 62.362 47.5775 63.7851 49.0593 64.5093C49.0433 59.8465 49.0808 55.1839 49.1719 50.5218C48.0062 49.78 43.5633 47.3456 43.1506 46.4189Z\" fill=\"#6F7FF4\"/>\\n<path d=\"M54.575 37.1416C53.2912 38.0847 51.8978 38.9062 50.5545 39.7623C52.0307 40.9291 53.8432 41.591 55.4149 42.6131C55.4146 44.6246 55.1236 55.1883 55.5706 56.1271C58.5871 54.6552 61.6232 52.8795 64.4746 51.102C62.8253 50.3025 61.225 49.3072 59.6193 48.4158C59.6406 45.6158 59.6398 42.8158 59.6171 40.0159L54.575 37.1416Z\" fill=\"#1D25AE\"/>\\n<path d=\"M51.3125 113.325C50.8738 111.94 50.0691 110.825 48.9745 109.88C45.373 106.771 39.9815 106.088 35.4019 106.412C31.7736 106.669 27.2663 107.666 24.7903 110.609C24.3428 111.139 23.7506 111.923 23.8149 112.638L24.0132 112.654C26.7947 109.403 31.31 107.82 35.4715 107.487C40.9435 107.049 45.5954 108.508 49.7516 112.108C50.2457 112.536 50.7259 113.032 51.3125 113.325Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M51.3129 113.324C50.7263 113.032 50.2461 112.536 49.752 112.108C45.5958 108.508 40.9439 107.048 35.4719 107.487C31.3104 107.82 26.7951 109.403 24.0136 112.654L23.8153 112.638C23.266 113.272 23.0811 114.165 23.132 114.996C23.1641 115.572 23.3035 116.062 23.6036 116.55L24.0752 116.839C24.5361 115.402 27.1676 113.773 28.4512 113.115C32.7896 110.891 38.6795 110.672 43.2725 112.184C46.188 113.144 48.581 114.928 50.7494 117.073C51.4967 115.846 51.6098 114.706 51.3129 113.324Z\" fill=\"#D8A804\"/>\\n<path d=\"M50.748 117.073C48.5796 114.928 46.1867 113.144 43.2712 112.184C38.6782 110.672 32.7882 110.891 28.4498 113.115C27.1663 113.773 24.5348 115.402 24.0739 116.839C24.023 117.541 24.1811 117.847 24.6634 118.402C27.1234 121.241 32.5792 122.293 36.1271 122.435C40.4495 122.608 46.0447 121.719 49.3594 118.665C49.882 118.183 50.3198 117.639 50.748 117.073Z\" fill=\"#1D25AE\"/>\\n<path d=\"M52.4209 123.228C53.2907 120.773 53.7765 118.223 54 115.631C51.3375 119.961 48.299 122.194 43.3469 123.357C37.6392 124.698 29.6993 124.065 24.7124 120.876C23.477 120.085 21.47 118.325 21.2207 116.787C21.2154 116.743 21.2181 116.699 21.2154 116.655C20.5187 118.789 21.6039 121.96 22.2819 124.048L22.3542 124.254C23.2841 127.348 24.6427 131.407 26.9606 133.684C27.0678 134.025 27.1375 134.146 27.4189 134.366C28.062 135.684 30.5648 136.71 31.8832 137.155C35.7688 138.467 40.3323 138.314 44.0168 136.441C45.0646 135.908 45.9971 135.239 46.9189 134.514C50.0357 131.45 51.174 127.297 52.4209 123.228Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M59.0256 141.373C60.2956 139.832 61.2452 137.842 61.5561 135.86C61.9693 133.227 61.2168 130.607 59.6473 128.482C58.3126 126.676 54.6382 123.543 52.4205 123.228C52.4765 123.294 52.5306 123.361 52.5885 123.425C53.3305 124.245 54.8135 124.756 55.7559 125.389C58.0213 126.912 61.1844 130.61 61.1833 133.517C61.1823 135.894 59.8231 137.922 58.155 139.491C52.2712 145.025 42.7811 146.234 35.0208 145.937C29.0451 145.707 20.6094 143.773 16.3648 139.205C14.9204 137.649 14.1782 135.758 14.2747 133.62C14.3711 131.408 15.577 128.987 17.2169 127.52C18.7738 126.127 20.6282 125.362 22.3539 124.254L22.2815 124.048C19.575 124.715 16.547 127.131 15.0946 129.501C13.7012 131.772 13.3475 134.913 13.9692 137.489C14.2452 138.636 14.7302 139.627 15.5797 140.448C14.3845 142.723 13.8003 145.442 14.5667 147.954C15.4993 151.011 18.1307 153.169 20.8506 154.598C27.2202 157.944 35.4227 158.347 42.1943 156.168C48.0306 154.29 55.2058 151.202 58.1261 145.432C58.8083 144.084 59.1015 142.885 59.0256 141.373Z\" fill=\"#ADB0F6\"/>\\n<path d=\"M52.4208 123.228C51.1739 127.297 50.0356 131.45 46.9188 134.515C45.997 135.239 45.0645 135.908 44.0167 136.441C40.3322 138.314 35.7687 138.467 31.8831 137.155C30.5647 136.71 28.0619 135.684 27.4188 134.367C27.1374 134.146 27.0677 134.025 26.9605 133.684C24.6426 131.407 23.284 127.348 22.3541 124.254C20.6284 125.362 18.7741 126.127 17.2172 127.52C15.5772 128.987 14.3714 131.408 14.2749 133.62C14.1784 135.758 14.9207 137.649 16.3651 139.205C20.6097 143.773 29.0453 145.707 35.021 145.937C42.7814 146.234 52.2715 145.025 58.1553 139.491C59.8234 137.922 61.1825 135.894 61.1836 133.517C61.1847 130.61 58.0216 126.912 55.7562 125.389C54.8137 124.756 53.3308 124.245 52.5888 123.425C52.5309 123.361 52.4768 123.294 52.4208 123.228Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M26.9607 133.684C26.5212 133.969 26.3979 134.069 26.3041 134.604C26.0549 135.992 26.7302 137.796 27.5796 138.876C29.4742 141.283 33.2526 142.541 36.1788 142.862C39.3462 143.21 43.2665 142.572 45.8149 140.519C46.8305 139.7 47.5648 138.579 47.7255 137.255C47.8059 136.58 47.7738 135.605 47.3075 135.064C47.2057 134.947 47.0931 134.841 46.9806 134.735C46.8439 135.75 46.6831 136.663 46.1231 137.548C44.7779 139.679 42.2107 141.041 39.8071 141.544C36.6504 142.206 32.7059 141.588 29.9967 139.786C28.5202 138.803 27.4484 137.318 27.167 135.531C27.0786 134.96 27.1027 134.84 27.4189 134.367C27.1375 134.146 27.0678 134.025 26.9607 133.684Z\" fill=\"#ADB0F6\"/>\\n<path d=\"M27.4188 134.367C27.1026 134.84 27.0785 134.96 27.1669 135.531C27.4483 137.318 28.5201 138.803 29.9966 139.786C32.7058 141.588 36.6503 142.206 39.8069 141.545C42.2106 141.041 44.7778 139.679 46.123 137.549C46.683 136.663 46.8438 135.75 46.9805 134.735L46.9188 134.515C45.997 135.239 45.0645 135.908 44.0167 136.441C40.3322 138.315 35.7687 138.467 31.8831 137.155C30.5647 136.71 28.0619 135.684 27.4188 134.367Z\" fill=\"#232CD5\"/>\\n<path d=\"M66.7594 59.4452C66.2101 59.0441 65.6406 58.5713 64.9466 58.519C65.0131 59.4166 65.0934 60.3157 65.1441 61.2144C64.2587 61.7189 63.2412 62.186 62.4159 62.773C61.0967 63.4234 59.8287 64.0994 58.5727 64.8684L57.4877 65.5252C56.4957 66.2268 55.4785 66.8829 54.457 67.5389L49.0593 64.5094C47.5774 63.7851 44.6726 62.362 43.6276 61.2028C43.6115 61.7868 43.5391 62.0033 43.9786 62.4464C45.9348 64.4188 51.7824 67.0672 54.4851 68.506C55.889 67.5084 57.2827 66.436 58.7477 65.5349C60.2848 64.8344 61.7921 64.1256 63.264 63.2933C64.5814 62.6006 65.9657 61.9537 67.1654 61.0653L67.1228 60.8974C66.6509 60.9109 66.1841 60.9055 65.7122 60.888L65.4426 60.4696C65.4413 59.9864 65.4123 59.967 65.7127 59.598L66.1578 59.6527C66.7315 59.9834 67.2803 60.2818 67.7474 60.7626L68.5398 60.764L68.6499 61.0206C67.9077 61.8297 66.795 62.4081 65.8716 63.0022C62.2428 65.3374 57.4949 67.5982 54.2078 70.0313C51.9801 68.651 40.8648 62.6774 40.0502 61.62C39.5464 62.6682 39.541 80.8618 39.9349 82.106C39.6402 83.0081 39.4955 85.6067 39.943 86.4584C39.9751 86.5177 40.01 86.5743 40.0448 86.6322C41.2051 87.8106 43.5445 88.7559 45.0076 89.5822C48.041 91.2939 51.0617 93.0273 54.0698 94.7823C58.9278 91.773 63.7801 88.4394 68.8169 85.76C68.9943 85.0158 69.0966 61.3834 68.961 60.9809C68.8088 60.5303 67.2187 59.7274 66.7594 59.4452Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M53.8282 158.757C53.8469 160.248 53.8866 161.741 53.8298 163.231C53.7979 164.448 53.3405 168.529 54.1139 169.37C55.2975 170.656 63.6259 174.984 65.965 176.304L76.9681 182.633L92.8249 192.007C94.926 193.224 97.0486 194.656 99.2389 195.69C100.779 196.416 101.867 196.525 103.566 196.402C104.513 196.333 105.487 196.165 106.357 195.768C109.193 194.471 111.806 192.653 114.518 191.117C117.695 189.318 133.926 180.682 135.258 179.148C135.657 178.688 135.913 178.165 136.168 177.618C135.953 176.148 135.409 174.759 135.181 173.287L135.437 172.295C135.42 171.155 135.441 170.025 135.491 168.886L114.849 180.815C111.814 182.558 108.364 185.003 105.116 186.198C103.827 186.672 102.156 186.774 100.826 186.422C98.3659 185.773 95.8491 183.824 93.6877 182.474C90.3234 180.372 86.9132 178.095 83.3556 176.347C81.9863 175.33 80.3616 174.494 78.8953 173.613C76.6213 172.247 74.3597 170.787 71.9828 169.609C68.7795 167.493 65.5023 165.5 62.1513 163.63C59.3229 162.066 56.4044 160.743 53.8282 158.757Z\" fill=\"#ADB0F6\"/>\\n<path d=\"M53.8276 158.757C53.8464 160.248 53.8861 161.741 53.8292 163.231C55.5952 164.904 58.2159 166.098 60.3232 167.322C63.6937 169.267 67.0538 171.231 70.4036 173.213L79.0917 178.383C80.6022 179.293 82.1361 180.372 83.7176 181.14L83.8991 181.276C86.1034 182.896 88.8557 184.191 91.2315 185.574C94.2558 187.335 97.8728 189.938 101.077 191.144C102.053 191.511 102.846 191.596 103.869 191.418C104.127 191.371 104.38 191.306 104.628 191.222C104.877 191.138 105.118 191.037 105.351 190.918C106.675 190.251 107.933 189.416 109.225 188.686L120.842 181.967C125.167 179.453 129.715 177.172 133.922 174.476C134.44 174.144 134.828 173.803 135.18 173.287L135.437 172.295C135.419 171.155 135.441 170.025 135.49 168.886L114.848 180.815C111.813 182.558 108.364 185.003 105.115 186.198C103.827 186.672 102.155 186.774 100.826 186.422C98.3653 185.773 95.8486 183.824 93.6871 182.474C90.3228 180.372 86.9126 178.095 83.3551 176.347C81.9858 175.33 80.3611 174.494 78.8948 173.613C76.6208 172.247 74.3591 170.787 71.9822 169.609C68.7789 167.493 65.5018 165.5 62.1507 163.63C59.3223 162.066 56.4039 160.743 53.8276 158.757Z\" fill=\"#1D25AE\"/>\\n<path d=\"M72.4754 170.669C71.9979 170.582 71.7966 170.502 71.3309 170.664C71.1222 171.066 71.1543 171.233 71.1634 171.678C72.7284 173.511 80.2409 177.166 82.8391 178.841C83.1427 178.455 83.1802 178.374 83.2539 177.888C83.0221 177.322 82.6609 177.093 82.1839 176.746L72.4754 170.669Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M239.806 131.438C238.145 132.775 236.078 133.338 234.255 134.402C227.934 138.147 221.575 141.827 215.179 145.443L186.497 162.057C182.525 164.348 178.582 166.788 174.527 168.923C173.522 169.451 172.598 169.842 171.453 169.918C169.645 170.039 167.985 169.801 166.343 169.015C162.816 167.327 159.476 165.027 156.04 163.128C144.573 156.791 133.278 150.163 121.901 143.666C111.473 137.796 101.094 131.84 90.7637 125.797C86.4829 123.306 79.807 119.937 76.1895 116.779C75.1079 117.098 73.9458 118.185 73.4042 119.169C72.9931 119.915 72.9264 120.651 73.2131 121.455C73.4637 122.157 74.8453 122.959 75.4592 123.347C77.6384 124.723 79.9817 125.906 82.2246 127.179C85.1868 128.884 88.1304 130.621 91.0555 132.39L143.715 162.925C146.333 164.439 161.443 172.797 162.401 174.171C163.256 173.668 164.113 173.11 165.019 172.709C166.222 173.212 167.317 173.815 167.842 175.098C168.015 175.522 168.082 176 168.086 176.456C170.038 177.004 172.059 176.92 173.899 176.039C179.264 173.471 184.325 169.974 189.486 167.001C191.935 165.591 194.456 164.311 196.911 162.911C203.893 158.929 210.754 154.73 217.729 150.745L235.33 140.566C237.333 139.388 239.415 138.31 241.384 137.079C241.86 136.782 242.83 136.304 243.009 135.789C243.057 133.906 240.886 132.904 239.891 131.557C239.862 131.518 239.835 131.477 239.806 131.438Z\" fill=\"#F9F9F9\"/>\\n<path d=\"M242.95 171.063C242.937 170.879 242.932 170.653 242.876 170.474C242.757 170.1 242.551 169.905 242.244 169.678C240.439 168.345 238.233 167.276 236.302 166.107L220.414 156.611C218.449 155.419 216.998 154.901 214.729 155.524C212.495 156.137 207.841 159.281 205.667 160.539C200.937 163.277 195.835 165.807 191.409 169.02C190.996 169.32 190.658 169.62 190.398 170.069C190.362 171.635 189.946 176.025 190.707 177.337C194.603 180.292 200.081 183.113 204.352 185.649C207.913 187.764 211.653 190.368 215.318 192.177C215.887 192.459 216.375 192.547 216.998 192.595C217.715 192.562 218.236 192.479 218.889 192.174C220.849 191.258 222.689 190.027 224.562 188.941C228.156 186.899 231.724 184.813 235.266 182.682C237.77 181.187 240.642 179.89 242.957 178.132L242.95 171.063Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M217.365 165.239C214.622 164.869 211.312 165.26 208.965 166.832C207.764 167.637 206.713 168.826 206.465 170.299C206.274 171.438 206.574 172.584 207.266 173.503C208.62 175.303 211.159 176.119 213.285 176.442C216.13 176.835 219.231 176.553 221.751 175.064C223.052 174.295 224.195 173.134 224.552 171.615C224.809 170.523 224.573 169.419 223.944 168.5C222.503 166.394 219.722 165.65 217.365 165.239Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M264.306 101.909C263.409 102.759 262.545 103.535 261.23 103.542C259.999 103.549 259.052 102.814 258.244 101.971L258.257 114.684C255.473 116.662 252.371 118.359 249.477 120.178C248.284 120.928 246.85 121.669 245.878 122.703C245.447 123.161 245.406 123.934 245.354 124.545C245.073 127.857 245.306 131.369 245.307 134.7C245.308 140.064 245.169 145.477 245.371 150.835L245.475 150.926C246.366 151.723 247.378 152.3 248.398 152.913C251.745 155.07 255.128 157.17 258.547 159.212C259.928 160.048 261.336 161.096 262.796 161.764C264.899 160.933 266.882 159.41 268.798 158.208C271.141 156.764 273.497 155.342 275.867 153.943C277.192 153.112 278.5 152.253 279.789 151.367C279.995 148.632 280.263 126.312 279.796 124.67C279.546 123.788 265.832 115.805 264.223 114.798C264.2 110.501 264.227 106.205 264.306 101.909Z\" fill=\"#232CD5\"/>\\n<path d=\"M258.239 116.17C254.29 118.81 250.156 121.16 246.279 123.914C251.642 127.445 257.195 130.695 262.707 133.984C267.766 130.923 272.782 127.791 277.754 124.588C273.237 121.878 268.75 119.117 264.294 116.308C264.302 118.839 264.152 121.475 264.42 123.989C264.626 125.136 264.709 125.808 264.01 126.816C263.986 126.851 263.959 126.884 263.933 126.918C262.661 127.759 261.532 127.849 260.074 127.553C259.853 127.508 259.64 127.448 259.423 127.384C259.068 127.109 258.694 126.832 258.413 126.477C257.829 125.742 258.073 124.872 258.168 124.003C258.48 121.491 258.248 118.709 258.239 116.17Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M265.124 127.405C265.289 127.214 265.455 127.017 265.571 126.79C265.799 126.341 265.774 125.662 265.585 125.201C265.342 124.608 265.006 124.235 264.422 123.989C264.628 125.136 264.711 125.808 264.012 126.816C263.988 126.851 263.961 126.884 263.935 126.918C264.33 127.081 264.724 127.258 265.124 127.405Z\" fill=\"#D8A804\"/>\\n<path d=\"M258.168 124.003C257.537 124.481 256.977 124.908 256.884 125.749C256.837 126.172 256.942 126.58 257.219 126.907C257.544 127.289 258.028 127.563 258.502 127.701C258.936 127.671 259.37 127.794 259.793 127.879L259.375 127.607L259.423 127.384C259.068 127.109 258.694 126.832 258.413 126.477C257.829 125.742 258.073 124.872 258.168 124.003Z\" fill=\"#D8A804\"/>\\n<path d=\"M278.464 125.67C273.325 128.691 268.33 132.038 263.291 135.23L263.246 151.357C263.235 154.187 263.043 157.155 263.303 159.971C265.573 159.115 267.922 157.179 269.992 155.861C272.833 154.061 275.706 152.311 278.609 150.612C278.614 142.325 278.884 133.943 278.464 125.67Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M246.692 125.924C246.228 126.644 246.47 147.491 246.468 150.215C248.157 151.542 250.238 152.606 252.078 153.727C255.339 155.705 258.579 157.717 261.798 159.763C262.314 157.553 262.027 154.25 262.034 151.931L262.009 135.227C256.984 131.991 251.878 128.89 246.692 125.924Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M135.49 168.886C135.415 168.708 135.399 168.651 135.31 168.498C135.098 168.132 134.765 167.887 134.416 167.663C124.071 160.996 113.147 155.12 102.522 148.913L94.4316 144.165C92.1048 142.774 89.5752 140.803 86.9678 140.062C84.79 139.442 82.8829 140.265 81.0112 141.345C76.4211 143.995 71.9613 146.902 67.4037 149.616C64.632 151.261 61.8755 152.931 59.1342 154.627C57.6861 155.523 56.1276 156.382 54.7824 157.427C54.266 157.829 54.0002 158.12 53.8276 158.757C56.4039 160.743 59.3223 162.066 62.1507 163.63C65.5018 165.5 68.7789 167.493 71.9822 169.609C74.3591 170.787 76.6208 172.247 78.8948 173.613C80.3611 174.494 81.9858 175.33 83.3551 176.347C86.9126 178.095 90.3228 180.372 93.6871 182.474C95.8486 183.824 98.3653 185.773 100.826 186.422C102.155 186.774 103.827 186.672 105.115 186.198C108.364 185.003 111.813 182.558 114.848 180.815L135.49 168.886Z\" fill=\"#232CD5\"/>\\n<path d=\"M86.652 142.812C85.9491 142.754 85.2419 142.698 84.5449 142.846C83.7981 143.004 83.024 143.355 82.3519 143.713C78.9342 145.532 75.6398 147.776 72.3049 149.763C68.5341 152.011 64.57 154.122 60.9232 156.56C60.3702 156.93 59.9066 157.325 59.5346 157.885C59.5515 158.312 59.5772 158.66 59.8956 158.977C60.9656 160.043 63.0512 160.868 64.3792 161.642C68.1123 163.817 71.8537 165.987 75.5543 168.217L92.9286 178.91C95.1075 180.231 97.2611 181.695 99.5147 182.88C100.603 183.452 101.414 183.721 102.645 183.752C102.664 183.747 102.682 183.741 102.701 183.736C105.389 182.976 108.185 180.731 110.586 179.276C114.2 177.086 117.873 175.004 121.506 172.849C124.274 171.207 126.973 169.408 129.883 168.028C118.88 161.886 108.207 155.098 97.2662 148.834C93.9565 146.939 90.09 144.191 86.652 142.812Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M93.3074 153.291C89.9962 152.974 86.4035 153.591 83.5767 155.418C82.0236 156.423 80.5706 157.898 80.2105 159.787C79.9205 161.307 80.3171 162.906 81.1947 164.165C82.7867 166.45 85.736 167.424 88.3465 167.855C91.8234 168.264 96.0547 168.015 98.9152 165.734C100.316 164.617 101.356 162.986 101.542 161.174C101.719 159.455 101.15 157.836 100.062 156.521C98.2965 154.387 95.9826 153.529 93.3074 153.291Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M87.8412 155.288C85.7192 155.917 83.9466 157.348 82.0494 158.452L84.9048 160.312C85.6704 160.775 86.4652 161.197 87.2472 161.633L88.9375 161.113C87.8024 158.898 87.345 157.806 87.8412 155.288Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M97.6081 157.55C96.0217 157.67 89.1741 161.854 87.8361 163.098L87.8728 163.412C88.3557 163.923 88.8807 164.148 89.5072 164.427C89.6414 164.445 89.7759 164.465 89.9113 164.475C91.5936 164.596 97.625 160.632 98.9075 159.462C99.1945 159.2 99.2623 159.168 99.2695 158.787C98.7888 158.232 98.2309 157.915 97.6081 157.55Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M220.332 42.4824C209.826 36.5157 199.374 30.4529 188.978 24.2939L169.637 13.2407L157.302 5.99842C154.863 4.56533 152.284 2.89208 149.68 1.79751C148.043 1.1094 146.753 0.863585 145.023 1.34955C143.001 1.91745 139.098 3.47642 138.009 5.40276C137.564 6.18925 137.495 7.42694 137.462 8.31828C137.278 13.1607 137.44 18.0723 137.442 22.9209L137.453 51.3503L137.442 64.7985C137.43 67.2119 137.157 70.0032 137.55 72.3778C136.405 73.2882 134.96 73.9769 133.687 74.7111C131.258 76.1114 128.822 77.4979 126.377 78.8705C123.181 81.1779 119.413 83.0283 116.026 85.07L108.237 89.7825C106.912 90.5814 105.577 91.4924 104.182 92.1586C98.2832 95.5089 92.5114 99.0861 86.6429 102.49C83.0762 104.559 78.4809 106.779 75.3127 109.231C74.748 109.668 74.2619 110.244 74.0695 110.949C74.0251 111.112 74.0141 111.21 73.9838 111.386C73.8557 112.987 73.9302 114.291 75.0428 115.576C75.4046 115.994 75.7993 116.387 76.1886 116.779C79.8062 119.937 86.4821 123.305 90.7629 125.797C101.093 131.84 111.472 137.796 121.9 143.666C133.277 150.163 144.572 156.791 156.039 163.128C159.475 165.027 162.816 167.327 166.342 169.015C167.984 169.801 169.644 170.039 171.452 169.918C172.598 169.842 173.522 169.451 174.526 168.922C178.581 166.788 182.524 164.347 186.497 162.057L215.178 145.443C221.574 141.827 227.933 138.147 234.254 134.402C236.077 133.338 238.144 132.775 239.806 131.437C240.033 131.22 240.244 130.988 240.44 130.742C240.636 130.496 240.814 130.238 240.975 129.967C241.805 128.569 241.941 127.182 242.035 125.588C242.254 121.882 242.076 118.095 242.06 114.379L242.028 94.5383L242.094 71.2473C242.098 68.2561 242.493 61.4706 241.784 58.795C241.269 56.8544 240.372 55.0906 238.957 53.6669C236.491 51.1851 232.738 49.6234 229.709 47.9086C226.572 46.1189 223.447 44.3102 220.332 42.4824Z\" fill=\"#232CD5\"/>\\n<path d=\"M228.342 56.9648C227.931 56.9894 227.724 57.0816 227.367 57.267C227.147 57.6217 227.024 57.8209 227.092 58.2521C227.245 59.23 228.012 60.0181 228.751 60.5995C229.192 60.4838 229.606 60.3714 229.859 59.9556C229.883 59.9176 229.904 59.8787 229.923 59.8386C229.943 59.7985 229.96 59.7575 229.975 59.7154C229.991 59.6735 230.004 59.631 230.015 59.5879C230.026 59.5446 230.034 59.5009 230.041 59.4567C230.047 59.4126 230.051 59.3683 230.053 59.3238C230.055 59.2792 230.055 59.2347 230.053 59.1901C230.05 59.1455 230.045 59.1012 230.038 59.0572C230.031 59.0132 230.022 58.9696 230.01 58.9265C229.76 57.9645 229.155 57.4557 228.342 56.9648Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M223.466 53.8818C223.094 54.0142 222.769 54.1638 222.516 54.484C222.259 54.8101 222.211 55.2675 222.29 55.6648C222.474 56.5952 223.14 57.2542 223.875 57.7817C224.295 57.728 224.601 57.6906 224.912 57.3728C225.19 57.0871 225.238 56.6351 225.178 56.258C225.022 55.2742 224.195 54.4805 223.466 53.8818Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M218.101 50.4048L217.357 50.4778C217.135 50.608 216.887 50.7482 216.738 50.9649C216.47 51.3525 216.464 51.8886 216.545 52.3357C216.784 53.661 217.627 54.7733 218.687 55.5437C218.833 55.5364 218.904 55.5367 219.039 55.5178C219.518 55.4515 219.96 55.2499 220.229 54.8316C220.529 54.3647 220.529 53.7464 220.393 53.2243C220.038 51.8624 219.273 51.0686 218.101 50.4048Z\" fill=\"#D8A804\"/>\\n<path d=\"M220.025 42.8779L175.497 17.1687L159.953 8.13075C156.544 6.1319 153.045 3.78698 149.42 2.20753C148.053 1.6116 146.885 1.35905 145.402 1.79057C144.417 2.07735 143.448 2.55038 142.505 2.95791C147.382 4.82792 151.793 7.90192 156.303 10.5134L180.907 24.7511L214.115 43.7272L226.207 50.6517C228.659 52.0385 231.29 53.3314 233.636 54.8852C234.818 55.6677 235.945 57.1116 236.518 58.4102C237.094 59.7136 237.378 61.1788 237.455 62.5979C237.675 66.6034 237.506 70.7078 237.512 74.7227L237.541 96.4906C237.48 102.705 237.456 108.92 237.471 115.134C237.476 118.292 237.65 121.506 237.521 124.657C237.488 125.436 237.417 126.22 237.113 126.945C236.678 127.982 235.905 128.815 235.119 129.594C235.18 130.14 235.266 130.693 235.278 131.242L235.283 133.44C237.2 132.584 239.279 131.75 240.439 129.883C241.331 128.448 241.483 127.003 241.584 125.349C241.791 121.978 241.619 118.539 241.603 115.159L241.57 97.5814L241.586 70.6905C241.58 67.6836 241.972 61.9003 241.307 59.2128C241.247 58.9595 241.178 58.7086 241.1 58.4603C241.022 58.212 240.936 57.9666 240.841 57.7242C240.746 57.4818 240.643 57.2431 240.532 57.0081C240.42 56.773 240.301 56.5422 240.173 56.3156C240.046 56.0891 239.911 55.8672 239.768 55.6502C239.624 55.4331 239.474 55.2213 239.316 55.0149C239.159 54.8084 238.994 54.6078 238.822 54.413C238.65 54.2182 238.472 54.0297 238.287 53.8475C236.101 51.7164 233.047 50.4183 230.414 48.9243C226.933 46.9407 223.469 44.9253 220.025 42.8779Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M143.526 13.3647L143.391 13.4761L143.341 14.2068L143.121 14.2911L143.325 14.3779C143.041 33.1688 143.336 51.9659 143.175 70.7579C153.545 76.31 163.638 82.4728 173.817 88.3723C184.099 94.3322 194.528 100.07 204.865 105.937C213.467 110.82 221.985 115.863 230.674 120.587L230.882 120.651L231.09 120.468L231.083 63.8733C224.144 60.6359 217.615 56.3819 210.935 52.6319C194.652 43.3284 178.427 33.924 162.26 24.4188C156.002 20.7526 149.881 16.8641 143.526 13.3647Z\" fill=\"#2831DF\"/>\\n<path d=\"M173.566 40.8079C173.316 40.7756 173.173 40.7457 172.934 40.8521C172.735 40.9413 172.712 41.057 172.657 41.2578C172.265 42.6707 172.67 49.1669 172.66 51.1083C172.644 53.9274 172.261 63.151 172.758 65.2927C173.328 67.7435 179.51 77.1582 181.103 79.8142C182.805 82.7041 184.427 85.6393 185.968 88.6198C189.086 88.2028 194.511 87.3147 197.409 86.232C198.131 85.8913 198.836 85.4315 199.405 84.8658C200.085 84.1903 200.511 83.4372 200.673 82.4866C201.116 79.8864 200.782 76.7405 200.776 74.0848V56.7259C198.011 54.4171 193.344 52.2821 190.132 50.4598C184.573 47.3052 179.103 44.0016 173.566 40.8079Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M181.722 57.8296C181.478 57.8326 181.289 57.8568 181.055 57.9347C180.437 58.1398 179.844 58.4444 179.573 59.0754C179.254 59.819 179.503 60.7804 179.797 61.4898C180.798 63.9059 182.372 66.2163 183.603 68.534C184.504 70.2318 185.207 72.1506 186.283 73.7403C186.595 74.2012 187.065 74.7842 187.615 74.9632C188.943 75.3957 191.503 73.4999 192.62 72.8395C193.484 72.4061 194.723 71.9428 195.235 71.0908C195.371 70.235 195.089 69.5014 194.685 68.7583C194.204 67.8734 193.213 66.4627 192.203 66.2196C191.213 65.9813 188.987 67.6443 188.041 68.1801C186.864 65.2859 184.336 59.4271 181.722 57.8296Z\" fill=\"#232CD5\"/>\\n<path d=\"M141.948 77.0238C141.765 76.9799 141.756 76.9826 141.55 76.9047C139.475 76.1206 138.394 74.3277 137.551 72.3779C136.406 73.2884 134.961 73.9771 133.687 74.7113C131.259 76.1116 128.822 77.498 126.378 78.8707C123.182 81.1781 119.414 83.0285 116.027 85.0701L108.237 89.7826C106.912 90.5815 105.578 91.4925 104.183 92.1588C98.2839 95.5091 92.5121 99.0863 86.6436 102.49C83.077 104.559 78.4816 106.779 75.3134 109.231C74.7487 109.668 74.2626 110.244 74.0703 110.949C74.0258 111.112 74.0148 111.21 73.9845 111.387C74.7707 112.609 75.6438 113.805 76.856 114.637C79.4452 116.414 82.38 117.856 85.0945 119.443C92.2077 123.604 99.4019 127.592 106.542 131.696L143.907 153.128C150.074 156.733 156.29 160.251 162.554 163.682C164.717 164.857 166.781 166.462 169.232 166.97C170.672 167.268 172.074 167.059 173.429 166.516C175.119 165.839 176.707 164.785 178.275 163.865C181.026 162.251 183.753 160.591 186.518 159.001L220.247 139.784C223.335 137.996 226.406 136.179 229.459 134.333C231.16 133.316 233.006 132.065 234.82 131.28C234.696 130.534 234.442 129.79 234.238 129.062C232.483 127.712 230.116 126.565 228.082 125.707C225.415 124.438 222.819 122.834 220.253 121.364L210.513 115.904C194.456 106.947 178.629 97.5883 162.644 88.5015L151.594 82.1732C148.422 80.3458 145.316 78.4696 141.948 77.0238Z\" fill=\"#6F7FF4\"/>\\n<path d=\"M132.641 118.326C128.999 120.012 125.566 122.249 122.11 124.286C119.431 125.866 116.638 127.316 114.046 129.036C117.405 130.928 120.808 132.744 124.152 134.661C129.97 137.997 135.725 141.442 141.668 144.556C147.944 141.054 154.136 137.35 160.504 134.02C158.347 132.653 155.935 131.561 153.7 130.315C146.675 126.398 139.464 122.584 132.641 118.326Z\" fill=\"#232CD5\"/>\\n<path d=\"M141.947 77.0239C133.336 81.9156 124.86 87.1216 116.366 92.2198C113.368 94.0195 109.695 95.4957 107.105 97.8242C111.883 101.06 117.237 103.616 122.29 106.394L147.458 120.402L175.279 136.13C180.125 138.903 184.929 141.855 189.882 144.423C190.975 144.99 192.05 145.383 193.257 145.617C201.922 141.161 210.297 135.991 218.734 131.113C221.829 129.324 224.836 127.198 228.082 125.707C225.415 124.438 222.819 122.834 220.253 121.364L210.512 115.904C194.455 106.947 178.629 97.5883 162.644 88.5016L151.594 82.1733C148.422 80.3459 145.316 78.4697 141.947 77.0239Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M117.192 208.213C116.127 209.602 114.703 211.129 113.95 212.697C114.575 212.885 115.223 212.772 115.864 212.719C117.269 212.269 118.913 212.316 120.383 211.892C119.729 210.175 119.046 209.293 117.543 208.269L117.192 208.213Z\" fill=\"#232CD5\"/>\\n<path d=\"M120.975 203.85C119.345 205.141 117.976 206.206 117.193 208.213L117.543 208.269C119.047 209.293 119.729 210.175 120.383 211.893C121.98 211.124 123.583 210.367 125.191 209.623C125.137 208.121 124.839 207.237 124.034 205.964L123.885 205.931C123.036 205.052 122.054 204.41 120.975 203.85Z\" fill=\"#F9CE2E\"/>\\n<path d=\"M166.545 179.083C165.722 180.274 163.076 181.448 161.712 181.961C162.258 183.064 162.452 184.84 163.1 185.727C162.455 186.58 128.23 208.245 125.191 209.622C123.582 210.367 121.979 211.123 120.383 211.892C118.913 212.316 117.269 212.269 115.863 212.719C115.375 214.979 112.398 216.192 112 218.3L112.317 218.436C113.959 218.124 115.547 216.929 117.11 216.309C119.149 215.499 121.306 215.131 123.281 214.112C128.229 211.559 132.956 208.282 137.681 205.338C139.942 203.93 142.296 202.67 144.572 201.285C149.178 198.449 153.754 195.565 158.3 192.635C160.837 191.02 165.82 188.464 167.853 186.747C168.051 186.292 168.225 185.891 168.133 185.386C167.99 184.602 167.405 184.232 166.811 183.781C165.742 184.412 164.632 185.188 163.432 185.526C164.603 184.364 167.104 183.607 167.493 181.837C167.714 180.829 167.07 179.884 166.545 179.083Z\" fill=\"#ADB0F6\"/>\\n<path d=\"M162.968 176.125C154.116 182.182 144.899 187.762 136.074 193.848C132.95 195.754 129.957 197.894 126.889 199.889C125.056 201.081 122.493 202.312 120.973 203.85C122.053 204.41 123.035 205.052 123.883 205.931L124.032 205.964C124.837 207.237 125.135 208.12 125.19 209.622C128.228 208.244 162.454 186.58 163.099 185.727C162.451 184.84 162.257 183.064 161.711 181.96C163.075 181.448 165.721 180.274 166.544 179.083C167.069 179.884 167.713 180.829 167.492 181.837C167.103 183.607 164.602 184.364 163.431 185.526C164.631 185.188 165.741 184.412 166.81 183.781C167.533 183.143 167.956 182.704 168.014 181.711C168.087 180.458 167.44 179.42 166.607 178.539C165.56 177.433 164.322 176.792 162.968 176.125Z\" fill=\"#232CD5\"/>\\n<path d=\"M166.545 179.083C165.795 178.178 164.889 177.058 163.642 176.914C161.897 176.711 159.931 178.531 158.581 179.508C159.841 180.165 160.79 180.876 161.712 181.961C163.076 181.448 165.722 180.274 166.545 179.083Z\" fill=\"#F9F9F9\"/>\\n<path d=\"M161.117 182.098C160.506 181.433 159.786 180.474 158.862 180.267C158.2 180.119 157.544 180.391 156.966 180.69C153.67 182.392 150.58 184.816 147.54 186.945C144.372 189.164 141.032 191.286 137.735 193.312C137.135 193.681 136.788 194.013 136.074 193.848C132.95 195.754 129.957 197.894 126.889 199.889C125.056 201.081 122.493 202.312 120.973 203.85C122.053 204.41 123.035 205.052 123.883 205.931L124.032 205.964C128.164 202.943 132.774 200.422 137.085 197.65C145.112 192.487 153.045 187.193 161.117 182.098Z\" fill=\"#6F7FF4\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_183_1315\">\\n<rect width=\"300\" height=\"218\" fill=\"white\" transform=\"matrix(-1 0 0 1 300 0.125)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fs8li5\",\"data-framer-name\":\"5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v3b75z\",\"data-framer-name\":\"Frame 427319803\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(33, 33, 34)\"},children:\"Employee Training and Awareness\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"rgb(33, 33, 34)\"},children:\"Employee Training and Awareness\"})}),className:\"framer-1f3k6ty\",\"data-framer-name\":\"Employee Training and Awareness\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"Training staff is a recognized part of compliance frameworks, helping to prevent human errors.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\"},children:\"Training staff is a recognized part of compliance frameworks, helping to prevent human errors.\"})}),className:\"framer-b7xdoq\",\"data-framer-name\":\"Training staff is a recognized part of compliance frameworks, helping to prevent human errors.\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:250,intrinsicWidth:297,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7308.0146+60+85.2+0+1840-917+40),pixelHeight:250,pixelWidth:297,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UDexmKbQ7S4VeKU2gcjDsMwZs.svg\"}},UfxwKg5CD:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:250,intrinsicWidth:297,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7736.2056+60+174+0+0+0+2289.952+0+0),pixelHeight:250,pixelWidth:297,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UDexmKbQ7S4VeKU2gcjDsMwZs.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:250,intrinsicWidth:297,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+4832.5426+80+85.2+0+1840-917+0),pixelHeight:250,pixelWidth:297,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UDexmKbQ7S4VeKU2gcjDsMwZs.svg\"},className:\"framer-1yldoux\",\"data-framer-name\":\"Group 1000005871\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t88rd8\",\"data-framer-name\":\"6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y0j0as\",\"data-framer-name\":\"Frame 427319805\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(33, 33, 34)\"},children:\"24/7 Monitoring, Support, and Update\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-color\":\"rgb(33, 33, 34)\"},children:\"24/7 Monitoring, Support, and Update\"})}),className:\"framer-1lmchrp\",\"data-framer-name\":\"24/7 Monitoring, Support, and Update\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\",\"--framer-text-alignment\":\"center\"},children:\"Drawn from the need for long-term value creation in compliance and supported by your content on continuous oversight\u200B.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Glacial Indifference Regular\", \"Glacial Indifference Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"133.02%\"},children:\"Drawn from the need for long-term value creation in compliance and supported by your content on continuous oversight\u200B.\"})}),className:\"framer-tftzsn\",\"data-framer-name\":\"Drawn from the need for long-term value creation in compliance and supported by your content on continuous oversight\u200B.\",fonts:[\"CUSTOM;Glacial Indifference Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1q7839v\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:286,intrinsicWidth:286,svg:'<svg width=\"286\" height=\"286\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M136.515 144.708c.309.014.631.028.935.097.809.185 1.591.736 1.983 1.474a2.435 2.435 0 0 1 .201.511 2.481 2.481 0 0 1 .088.818 2.531 2.531 0 0 1-.176.802c-.363.941-1.075 1.362-1.943 1.778a5.185 5.185 0 0 1-.817-.054c-.802-.137-1.626-.552-2.05-1.273-.336-.57-.38-1.243-.217-1.876.281-1.091 1.089-1.72 1.996-2.277Z\" fill=\"#F9CE2E\"/><path d=\"M160.28 166.069c1.387.794 2.843 1.485 4.268 2.21-1.371 1.158-2.851 2.128-4.401 3.025-1.384-.24-3.093-1.457-4.346-2.128 1.524-.993 2.999-2.05 4.479-3.107Zm25.945 8.026c1.339.327 3.281 1.838 4.52 2.573-1.718.904-3.379 1.952-5.048 2.946-.78.067-3.673-1.874-4.48-2.33 1.697-1.007 3.345-2.124 5.008-3.189Zm4.766 2.845c.903.018 3.476 2.01 4.395 2.593-1.665.944-3.283 1.909-4.862 2.992a76.16 76.16 0 0 0-4.786-2.616l5.253-2.969Zm41.389 31.111c1.548.518 3.17 1.793 4.561 2.662-1.434 1.15-3.413 1.998-5.033 2.894l-4.463-2.738c1.624-.994 3.236-1.96 4.935-2.818Zm-35.655-34.269c1.501.703 3.02 1.688 4.419 2.585-1.511 1.164-3.233 2.089-4.869 3.068-1.582-.867-3.126-1.825-4.681-2.741 1.742-.901 3.432-1.93 5.131-2.912Zm35.076 27.392c1.644.74 3.306 2.031 4.879 2.966-1.587 1.037-3.377 1.758-5.11 2.51-.929.091-3.719-1.949-4.611-2.478 1.521-1.12 3.219-2.034 4.842-2.998Zm3.891-2.177c.644-.283 1.251-.554 1.834-.955 1.601.939 3.217 1.861 4.797 2.834a82.803 82.803 0 0 1-3.334 1.731c-.706.37-1.43.721-2.106 1.144-1.481-.944-3.01-1.855-4.447-2.861.954-.506 2.551-1.102 3.256-1.893Zm-33.399-8.89c1.438.614 2.802 1.622 4.13 2.451-1.374 1.345-3.318 2.326-4.984 3.281l-4.64-2.711c1.842-.986 3.665-2.012 5.494-3.021Zm-21.403-18.882c1.565.312 3.61 1.817 5.03 2.605l-4.765 2.995c-.055.025-.106.059-.164.077-.85.248-3.982-1.926-4.813-2.417l4.712-3.26Zm10.459-.398c1.742.596 3.47 1.826 5.056 2.763-1.548 1.104-3.3 1.948-5.009 2.771-.713.146-4.081-2.115-4.888-2.588a74.333 74.333 0 0 1 4.841-2.946Zm-16.856-9.722c1.682.679 3.341 1.792 4.925 2.691-1.687 1.164-3.485 2.154-5.261 3.174a156.398 156.398 0 0 1-4.848-2.762c1.678-1.113 3.442-2.094 5.184-3.103Zm.855 7.077c1.779.809 3.481 1.913 5.238 2.794-1.505 1.17-3.153 2.132-4.776 3.127-1.123-.142-4.17-2.255-5.232-2.931a145.298 145.298 0 0 1 4.77-2.99Zm20.293 11.634c.874-.085 4.559 2.286 5.54 2.844-1.65.847-3.289 1.715-4.917 2.604l-.363.156c-1.482-.023-3.81-1.875-5.067-2.67 1.537-1.087 3.177-1.998 4.807-2.934Zm31.15 24.832a261.32 261.32 0 0 0 5.361 3.03l-4.941 2.801c-1.295.126-4.132-2.072-5.309-2.854 1.57-1.059 3.268-1.995 4.889-2.977Zm5.348-9.832c1.634.976 3.442 1.906 4.947 3.065-.432.415-.913.76-1.394 1.116-1.161.193-2.466 1.19-3.586 1.641l-5.346-3.126 1.286-.59c1.374-.683 2.756-1.352 4.093-2.106Zm-6.109 2.898c1.319.342 4.196 2.403 5.535 3.184l-4.696 2.798-.348.05a33.235 33.235 0 0 1-5.041-3.269c1.491-.955 3.035-1.844 4.55-2.763Zm-18.184-17.301c1.37.78 3.263 1.567 4.43 2.582.336.293.338.364.372.783-.89 1.15-3.035 1.91-4.346 2.551-1.159-.225-4.345-2.397-5.282-3.242l4.826-2.674Zm-22.192-13.026c1.794.615 3.8 2.138 5.459 3.122a138.594 138.594 0 0 0-4.97 2.98c-1.831-.785-3.659-2.023-5.411-3 1.618-1.083 3.225-2.145 4.922-3.102Zm-16.489-2.667a107.7 107.7 0 0 0 5.797 3.193c-1.579 1-3.152 2.008-4.72 3.026a532.695 532.695 0 0 0-5.963-3.318c1.672-.913 3.301-1.841 4.886-2.901Zm50.666 22.9c1.639.422 4.156 2.354 5.653 3.275-1.566 1.044-3.198 1.957-4.872 2.813-1.904-.66-3.969-2.275-5.682-3.346 1.719-.748 3.32-1.742 4.901-2.742Zm-5.34 3.079c1.144.195 4.223 2.503 5.403 3.248a70.57 70.57 0 0 0-4.865 2.969c-1.911-.904-3.768-2.167-5.599-3.238l5.061-2.979Zm11.723 20.173c1.778.618 3.643 2.112 5.23 3.137-1.808.996-3.597 1.965-5.602 2.508-1.914-.368-3.649-1.512-5.324-2.462 1.933-.997 3.809-2.102 5.696-3.183Zm-61.213-42.335c1.963 1.171 3.975 2.271 5.962 3.4-1.661.829-3.268 1.75-4.882 2.667-.012.007-.023.018-.037.021-.974.223-4.657-2.401-5.71-3.046a532.954 532.954 0 0 0 4.667-3.042Zm14.735-4.39c1.613.175 4.101 2.17 5.5 3.039-1.587 1.099-3.294 2.076-4.934 3.099-1.919-.829-3.718-2.158-5.613-3.1a318.153 318.153 0 0 1 5.047-3.038Zm40.521 29.935a384.951 384.951 0 0 1 5.534 3.371c-1.626 1.026-3.279 1.99-5.03 2.787-1.659-.423-3.934-2.138-5.384-3.107 1.566-1.096 3.248-2.055 4.88-3.051Zm-65.832-31.567 5.341 3.313c-.824.763-3.483 2.987-4.52 3.006l-5.695-3.264c1.523-1.136 3.211-2.141 4.874-3.055Zm71.511 28.544c1.964.995 3.856 2.427 5.747 3.587a61.332 61.332 0 0 1-5.033 2.581c-1.372-.241-4.315-2.488-5.656-3.31a250.279 250.279 0 0 1 4.942-2.858Zm-29.368-4.183c.959.06 4.453 2.399 5.506 3.003-1.814.949-3.596 1.965-5.387 2.958-1.053.065-4.445-2.461-5.505-3.194 1.78-.949 3.59-1.847 5.386-2.767Zm5.057-10.285c1.915 1.249 3.92 2.375 5.888 3.537-1.503 1.032-3.269 1.833-4.884 2.687-1.526-.248-4.558-2.428-5.969-3.258 1.682-.942 3.319-1.964 4.965-2.966Z\" fill=\"#232CD5\"/><path d=\"M280.65 128.243c.828-.14 1.456-.222 2.239.162 1.194.584 2.09 1.764 2.516 3.003.314.902.381 1.924-.073 2.791-.332.636-.737.93-1.401 1.163-1.216.235-2.108-.443-3.172-.888-.603-1.012-1.41-2.252-1.428-3.466-.019-1.209.545-1.932 1.319-2.765Z\" fill=\"#F9CE2E\"/><path d=\"M213.617 183.892c2.004 1.045 3.935 2.287 5.877 3.447-1.533 1.074-3.165 1.964-4.801 2.866-2.11-1.074-4.148-2.35-6.175-3.571 1.632-1.005 3.419-1.811 5.099-2.742Zm-5.565 3.157c1.172.188 4.822 2.699 6.057 3.429l-5.124 2.876c-1.997-.594-4.248-2.375-5.997-3.498 1.713-.9 3.408-1.805 5.064-2.807Zm12.658 13.778a208.482 208.482 0 0 0 5.816 3.491c-1.655 1.052-3.369 2.024-5.056 3.022-2.014-.865-3.969-2.182-5.876-3.276 1.638-1.166 3.403-2.184 5.116-3.237Z\" fill=\"#232CD5\"/><path d=\"m4.015 157.093.281-.107c1.283 1.509 2.517 3.033 3.633 4.671l-3.668 4.744c-1.053-1.765-2.564-3.325-3.907-4.871 1.163-1.456 2.319-3.159 3.661-4.437Zm-3.499 15.82c.889-1.908 2.476-3.56 3.822-5.164 1.111 1.703 2.316 3.314 3.55 4.928-1.03 1.644-2.193 3.436-3.674 4.713l-.548-.139c-.96-1.508-1.973-2.99-3.15-4.338Z\" fill=\"#F9CE2E\"/><path d=\"M148.977 165.879c2.016.802 4.09 2.262 5.992 3.345a209.684 209.684 0 0 0-5.436 3.335c-1.392-.224-4.417-2.405-5.777-3.218 1.643-1.255 3.486-2.333 5.221-3.462Zm52.426 17.18c.992-.032 5.335 3.038 6.461 3.721-1.72.996-3.463 1.951-5.228 2.864-2.17-.915-4.536-2.554-6.527-3.827 1.744-.974 3.472-1.938 5.294-2.758Zm-20.664-5.536c1.292.335 5.44 3.063 6.911 3.912-1.618.952-3.333 1.787-4.993 2.666-.131.056-.202.096-.354.112-.937.095-5.401-2.945-6.483-3.617 1.583-1.125 3.239-2.103 4.919-3.073Zm37.604 28.798c2.543.933 5.058 2.998 7.475 4.307-1.812 1.14-3.749 2.138-5.614 3.192-2.524-1.425-5.157-2.774-7.559-4.396a209.073 209.073 0 0 1 5.698-3.103Zm-30.392-24.603c2.899 1.351 5.684 3.187 8.452 4.804-1.671 1.185-3.704 1.917-5.449 3.034l-8.44-4.906c1.832-.933 3.628-1.952 5.437-2.932Zm-21.795-6.714 5.158-2.827c1.396.898 2.862 1.692 4.305 2.511-.457.352-.857.733-1.267 1.14a8.273 8.273 0 0 0 1.496-.902c1.502.829 2.998 1.674 4.513 2.481-1.636.995-3.266 2-4.89 3.015a342.718 342.718 0 0 0-4.048-2.38l-5.267-3.038Zm-6.437-15.611c.8-.034 7.741 4.449 9.081 5.158-1.58 1.039-3.289 1.928-4.936 2.858-3.149-1.439-6.046-3.353-9.024-5.105 1.57-1.041 3.253-1.956 4.879-2.911Zm5.644-3.423c1.72-.021 7.185 3.829 8.888 4.874a402.682 402.682 0 0 0-5.276 3.077c-1.339-.083-7.11-3.984-8.612-4.895 1.618-1.083 3.332-2.051 5-3.056Zm-10.037 13.528c1.934.584 6.638 3.655 8.498 4.818-1.81 1.118-3.702 2.135-5.547 3.196-.982.04-7.205-3.988-8.556-4.792 1.92-.956 3.759-2.129 5.605-3.222Zm-44.671 11.819c.837.984.9 2.388 1.879 3.393 2.717 2.791 9.04 4.628 12.244 7.227l-.315.066a23.451 23.451 0 0 0-3.279-.378 23.448 23.448 0 0 0-3.299.089c-1.237.126-2.581.408-3.821.345-.937-.047-1.839-.361-2.466-1.086-1.81-2.095-1.07-7.026-.943-9.656Zm131.908 19.853c1.686.403 3.916 2.219 5.377 3.185-3.17 2.402-7.139 4.358-10.659 6.223-1.568-1.271-3.365-2.239-5.095-3.269-.228-.233-.155-.087-.182-.452 1.441-.57 4.509-2.643 6.012-2.023.75.31 1.484.884 2.176 1.312.734.454 1.518 1.029 2.377 1.187l.114-.113-.045.063-.24-.355-.184.32-.186-.041.061-.492a506.927 506.927 0 0 0-4.844-2.801 240.44 240.44 0 0 0 5.318-2.744Zm-35.66-8.337c4.559 2.491 8.921 5.286 13.446 7.827a157.28 157.28 0 0 1-5.136 3.103c-1.075-.233-11.574-6.66-13.334-7.66a179.935 179.935 0 0 0 5.024-3.27Z\" fill=\"#232CD5\"/><path d=\"M264.756 86.091c.85.024 1.74.012 2.526.385 1.051.498 1.907 1.408 2.257 2.525.268.857.204 1.763-.231 2.552-.677 1.224-1.91 1.686-3.172 2.056.189.954.29 2.222.089 3.178.447.186.911.372 1.34.597 1.008.526 1.795 1.55 2.09 2.646.219.818.134 1.781-.341 2.496-.683 1.025-1.758 1.516-2.919 1.767-.039.175 0 .078-.158.27a29.102 29.102 0 0 1-1.124-.421c-1.149-.463-2.075-1.36-2.526-2.525-.356-.924-.359-1.917.097-2.806.719-1.4 1.825-1.669 3.209-2.067.106-.871.353-2.241-.04-3.05-1.188-.58-2.218-1.248-3.041-2.31-.441-.566-.773-1.27-.639-2.005.182-1.006 1.06-2.084 1.898-2.62.259-.166.435-.24.609-.508.03-.05.049-.107.076-.16Z\" fill=\"#F9CE2E\"/><path d=\"m94.975 234.178.056.119c.622 1.347.968 2.733 1.685 4.068 2.154 4.013 6.478 7.026 10.648 8.617 8.084 3.084 17.691 2.864 25.549-.725 4.831-2.206 8.365-5.639 10.217-10.668.131-.355.23-.701.439-1.019.008 4.748-1.047 8.508-4.444 11.942-5.103 5.155-12.786 7.461-19.906 7.488-6.836.025-14.59-2.171-19.506-7.139-3.63-3.667-4.793-7.65-4.738-12.683Zm-83.621-25.906a6.682 6.682 0 0 0 1.674 1.441c2.672 1.652 5.522 3.091 8.26 4.64 4.015 2.272 7.978 4.637 11.973 6.942a271.85 271.85 0 0 1 6.71 3.938c1.586.969 3.177 2.084 4.837 2.911.839.419 1.744.567 2.67.65 1.05.093 2.134.039 3.185-.038 4.793-1.191 13.71-6.999 18.342-9.719 5.603-3.29 11.351-6.446 16.697-10.146-.007 1.239.19 2.922-.742 3.896-1.534 1.603-31.093 18.938-33.358 19.606-1.882.413-4.061.421-5.887-.25-2.854-1.048-6.714-3.95-9.488-5.549-7.56-4.357-15.69-8.601-23.001-13.312-.534-.344-1.248-.753-1.497-1.368-.024-.061-.042-.125-.064-.187-.38-1.052-.292-2.341-.311-3.455Zm152.987-33.622c1.417.514 2.919 1.599 4.24 2.366 3.941 2.291 7.804 4.698 11.721 7.025 3.031 1.801 6.149 3.454 9.184 5.25 9.474 5.607 18.859 11.296 28.439 16.728l-5.674 3.185c-1.286-.64-2.516-1.486-3.769-2.201-3.863-2.205-7.657-4.498-11.492-6.748-12.813-7.515-25.551-15.289-38.646-22.296 1.969-1.158 3.984-2.23 5.997-3.309Zm78.227-121.308c.811-.527 1.615-1.075 2.441-1.58l.018 21.851c2.343 1.228 17.701 10.406 18.426 11.405-1.633-.28-15.3-9.518-18.433-10.987a1483.02 1483.02 0 0 0-.121 18.021c-2.616 2.46-6.958 4.376-10.082 6.287l-.064-27.563c-.005-3.207-.363-9.492.063-12.358a7.393 7.393 0 0 1 1.122-.926c2.267-.949 4.587-2.767 6.63-4.15Zm-72.173 99.751c.947.039 1.955.684 2.765 1.129 5.207 2.862 10.289 6.007 15.433 8.986a1931.771 1931.771 0 0 1 36.442 21.288c4.775 2.816 9.509 5.702 14.31 8.474 3.643 2.103 8.649 4.721 11.895 7.238.456.353.425.621.497 1.145-.425 1.41-2.356 2.164-3.539 2.936-2.093-2.401-12.584-7.916-16.079-10.027l-65.728-38.807c1.315-.815 2.67-1.578 4.004-2.362Z\" fill=\"#232CD5\"/><path d=\"M101.879 218.833c-.022 3.784.039 7.59-.088 11.371.191 4.158.158 6.196 3.461 9.179 4.191 3.785 10.663 4.809 16.103 4.48 4.572-.277 9.783-1.763 12.888-5.353.998-1.154 1.766-2.457 2.493-3.792.464-2.65.229-4.827.15-7.491a560.42 560.42 0 0 1-.103-7.558c3.395 2.665 6.261 5.375 6.835 9.9.179 1.413.275 3.633-.047 5.001-.209.318-.309.664-.439 1.019-1.852 5.029-5.387 8.462-10.217 10.668-7.859 3.589-17.466 3.809-25.55.725-4.17-1.591-8.494-4.604-10.648-8.617-.716-1.335-1.062-2.72-1.684-4.068l-.057-.119c-.136-1.295-.057-2.804.061-4.104.442-4.841 3.27-8.215 6.842-11.241Z\" fill=\"#ADB0F6\"/><path d=\"M101.79 230.204c.192 4.158.158 6.196 3.462 9.179 4.191 3.785 10.662 4.809 16.102 4.48 4.573-.277 9.783-1.762 12.889-5.353.997-1.154 1.766-2.457 2.492-3.792-.025.362-.047.741-.128 1.096-.56 2.444-2.494 4.39-4.536 5.695-5.604 3.582-12.53 4.124-18.908 2.652-4.097-.946-8.179-2.859-10.462-6.552-1.542-2.494-1.585-4.604-.911-7.405Z\" fill=\"#D29200\"/><path d=\"M119.747 194.41c3.909.233 7.863 1.218 10.803 3.966 1.756 1.642 2.827 3.806 2.905 6.226.067 2.068-.7 3.958-2.12 5.45-3.096 3.252-8.166 4.364-12.48 4.444-3.674-.2-7.447-1.081-10.356-3.451-1.785-1.454-3.18-3.423-3.369-5.777-.177-2.198.806-4.438 2.249-6.054 3.322-3.718 7.653-4.519 12.368-4.804Z\" fill=\"#F9CE2E\"/><path d=\"M213.042 31.462c1.535.65 2.948 1.6 4.377 2.453l8.28 4.99c4.09 2.414 16.475 8.702 19.351 11.652-.616.604-1.337 1.054-2.053 1.527-2.652 1.65-5.503 3.225-8.044 5.03-.112.067-.294.185-.415.222-.08.025-.165.028-.248.036-1.048.103-16.296-9.398-18.759-10.802-4.666-2.661-9.415-5.176-14.08-7.84 3.731-2.304 7.706-5.503 11.591-7.268Z\" fill=\"#ADB0F6\"/><path d=\"M219.03 37.567c.054.006.108.009.162.016 1.742.225 4.997 1.997 6.076 3.482.926 1.276.678 2.483.46 3.934-.361.465-.646.474-1.196.654a7.624 7.624 0 0 1-2.54-.6c-1.973-.838-4.083-2.212-4.859-4.321-.21-.571-.244-1.205.032-1.759.421-.841.992-1.153 1.865-1.406Z\" fill=\"#FEFEFE\"/><path d=\"M219.504 38.806c.298.019.626.064.909.16 1.068.361 2.995 1.854 3.38 2.894.228.614.085 1.367-.145 1.955-1.209-.112-2.265-.568-3.286-1.221-.626-.4-1.318-1.1-1.428-1.87-.107-.75.153-1.319.57-1.918Z\" fill=\"#D29200\"/><path d=\"M168.141 190.564c1.762.005 3.223.667 4.746 1.499 3.434 1.875 6.751 4.012 10.149 5.959 2.908 1.667 6.195 3.2 8.879 5.201.531.395.775.632.965 1.272-.349.812-13.236 7.739-15.003 8.681-.21.07-.421.135-.634.195-.737.201-1.578.373-2.33.161-2.943-.833-6.115-3.172-8.76-4.717l-9.228-5.311c-1.088-.639-3.143-1.558-3.42-2.88-.084-.406-.066-.834.162-1.181.674-1.032 11.265-7.506 12.909-8.341a6.302 6.302 0 0 1 1.565-.538Z\" fill=\"#232CD5\"/><path d=\"M133.389 196.602c3.012.987 8.036 4.463 11.039 6.147l40.704 23.198c5.588 3.228 11.003 7.123 16.777 9.981a7.895 7.895 0 0 0 3.674.826c1.563-.018 3.053-.46 4.451-1.14 3.988-1.942 7.78-4.621 11.642-6.826 11.098-6.338 22.237-12.588 33.207-19.144 2.632-1.572 5.739-2.641 7.878-4.902 1.669-1.767 1.837-2.827 1.782-5.213.168.187.25.311.317.558.302 1.074.457 3.277-.11 4.257.077.128.144.228.195.365.372 1.023.195 2.734-.286 3.671-.548 1.059-1.472 1.894-2.453 2.544-1.62 1.072-3.393 1.951-5.066 2.945-6.065 3.607-12.264 6.958-18.372 10.484l-18.873 11.023c-3.019 1.775-8.139 5.351-11.247 6.21-1.911.527-5.081.291-6.956-.42-2.319-.878-4.52-2.343-6.65-3.603a648.196 648.196 0 0 0-10.646-6.252l-47.191-26.442c-.343-3.498-1.428-5.7-3.816-8.267Z\" fill=\"#232CD5\"/><path d=\"M169.158 143.183c-1.855-1.641-2.809-3.784-2.965-6.246-.196-3.088.011-6.271.031-9.367l.146-18.922c.031-4.873.036-9.746.017-14.62-.011-2.651-.182-5.414.033-8.049.091-1.123.356-2.432 1.092-3.317.509-.612 1.213-.837 1.988-.894.698-.05 1.375.042 2.011.338 2.143.999 4.135 2.516 6.173 3.728l12.627 7.427 38.446 23.011c4.874 2.899 9.683 6.06 14.643 8.794a584.698 584.698 0 0 1 11.443-6.647c2.059-1.184 4.177-2.586 6.352-3.532-5.755 3.549-11.686 6.773-17.438 10.321 5.442 3.852 11.467 7.035 17.158 10.517 2.013 1.232 4.444 2.358 6.129 4.024.116.117.227.237.332.363a7.6 7.6 0 0 1 .305.386 6.6 6.6 0 0 1 .89 1.746c.05.156.096.313.137.473.038.159.071.32.097.482.372 2.237.073 4.794.04 7.074l-.107 11.982c-.067 6.118-.241 12.238-.262 18.356-.015 4.199.223 8.567-.131 12.745-.113 1.319-.247 2.187-1.063 3.263-.747.985-1.91 1.815-3.175 1.906-.56.04-1.087-.16-1.596-.368.765-.373 1.456-.922 1.864-1.686.442-.822.625-1.851.671-2.778.192-4.032-.147-8.148-.134-12.191l.122-22.511c.024-4.093.712-10.928-.39-14.673-.497-1.686-1.579-2.734-2.956-3.742-3.686-2.694-8.317-5.042-12.254-7.421l-26.68-16.048c-15.016-8.955-29.869-18.194-45.116-26.754-2.349-1.32-4.559-2.966-6.924-4.216-.734-.387-1.355-.634-2.161-.392-.741 2.886-.273 11.506-.307 15.035-.089 8.171-.118 16.342-.086 24.512-.016 4.437-.271 9.014-.009 13.434.095 1.62.413 2.951 1.007 4.457Z\" fill=\"#1E2251\"/><path d=\"M101.889 206.242c.361 2.792 2.054 4.883 4.235 6.561 4.728 3.633 10.768 4.824 16.603 4.042 4.716-.633 9.324-2.761 12.246-6.626.679-.898 1.257-1.861 1.821-2.835-.04 4.044-.306 8.259-.011 12.284.017 2.52.051 5.039.103 7.559.079 2.664.314 4.841-.15 7.491-.727 1.335-1.495 2.638-2.493 3.792-3.105 3.59-8.316 5.076-12.888 5.353-5.44.328-11.912-.695-16.103-4.48-3.303-2.983-3.27-5.021-3.461-9.179.126-3.781.066-7.587.088-11.371-.01-4.189-.119-8.405.01-12.591Z\" fill=\"#F9CE2E\"/><path d=\"M27.246 89.106c.55-2.897.998-5.461 2.406-8.108 1.298-2.441 3.044-4.652 5.27-6.3 4.07-3.013 8.828-5.318 13.146-7.973a1519.37 1519.37 0 0 1 34.973-21.031c4.187-2.492 8.362-5.062 12.507-7.623 3.27-2.021 7.062-5.049 10.774-6.042 2.748-.735 10.409 4.97 13.093 6.607-1.148.024-1.986.196-3.037.667-3.823 1.712-7.443 4.248-11.031 6.41l-20.911 12.66c-2.308 1.402-4.841 3.306-7.322 4.322-.915.593-1.827 1.182-2.777 1.718-7.053 4.99-14.699 9.244-22.072 13.736-3.483 2.122-7.21 3.878-10.166 6.746a20.437 20.437 0 0 0-3.437 4.354 20.308 20.308 0 0 0-1.735 3.788 20.8 20.8 0 0 0-.402 1.332c-2.644-1.47-6.509-4.553-9.279-5.263Z\" fill=\"#ADB0F6\"/><path d=\"M71.714 64.393c-.306-.107-.62-.215-.91-.358-.665-.326-1.018-.999-1.25-1.671-.537-1.56-.01-3.635.705-5.077 1.382-2.79 3.482-4.37 6.386-5.328.818.307 1.5.689 2.239 1.148-2.853.716-5.318 1.676-6.936 4.333-.974 1.597-1.266 4.213-.668 6.027.108.328.263.628.434.926Z\" fill=\"#F9CE2E\"/><path d=\"M78.884 53.107c.658.577.734.984.797 1.842.267 3.667-1.016 4.865-2.567 7.747-.916.592-1.827 1.181-2.778 1.717-.867.089-1.751.015-2.621-.02a5.023 5.023 0 0 1-.435-.925c-.598-1.815-.305-4.43.668-6.028 1.619-2.657 4.084-3.616 6.936-4.333Z\" fill=\"#FEFEFE\"/><path d=\"M75.9 56.377c.397.13.701.227.954.58a1.4 1.4 0 0 1 .22 1.047c-.21 1.26-1.332 2.163-2.328 2.822-.45-.196-.87-.371-1.137-.806a1.634 1.634 0 0 1-.141-1.374c.395-1.19 1.364-1.788 2.432-2.269Zm123.891-17.193c2.732.934 6.794 3.767 9.447 5.27l12.209 6.984c4.098 2.299 8.306 4.51 12.183 7.173-.028 8.437.014 16.874.125 25.31.028 3.046.041 6.09.037 9.136.004 1.511.146 3.12-.044 4.619-.026.211-.11.207-.272.33-6.511-3.441-12.743-7.513-19.087-11.254-4.276-2.52-8.824-4.741-12.987-7.423-.552-.355-1.874-1.205-2.11-1.82-.211-.546-.4-33.235-.147-36.455.059-.749.244-1.236.646-1.87Z\" fill=\"#232CD5\"/><path d=\"M215.662 58.826c.375-.255.726-.484 1.143-.668 1.949.406 4.422 2.34 6.141 3.382-.016 1.52-.457 5.95.539 6.982 1.709 1.067 3.464 2.041 5.225 3.018-.002 1.207.416 5.782-.468 6.518-.303.252-.696.3-1.071.382-.008-2.104.032-4.207.121-6.31-.952-.57-2.006-1.112-2.86-1.819-1.043-.51-1.97-1.09-2.92-1.757-.137-2.097-.059-4.251-.078-6.355-1.805-1.277-3.736-2.507-5.772-3.373Z\" fill=\"#1D25AE\"/><path d=\"M215.662 58.826c2.035.866 3.967 2.096 5.771 3.373.019 2.104-.058 4.258.079 6.355.95.668 1.876 1.247 2.92 1.757.853.707 1.908 1.248 2.859 1.82a138.288 138.288 0 0 0-.12 6.31c-2.035-.826-3.791-2.253-5.793-3.183-.135 1.474.081 3.063-.263 4.503-.126.526-.248.684-.713.931-1.525-.184-4.141-2.461-5.472-3.369-.132-2.02-.126-4.05-.152-6.075-1.805-1.233-3.817-2.12-5.516-3.517-.031-1.321-.131-2.698-.025-4.015.049-.61.122-1.123.598-1.534 1.261-.22 4.041 2.096 5.216 2.849.092-1.594-.412-4.98.611-6.205Z\" fill=\"#F9CE2E\"/><path d=\"M61.824 192.716c8.625-5.82 17.87-10.822 26.753-16.242a1502.552 1502.552 0 0 1 38.183-22.825c2.054-1.184 3.981-2.613 6.052-3.763.497-.276.997-.649 1.568-.573-.634.947-14.961 9.051-17.294 10.443l-31.534 19.048-11.771 7.073c-3.886 2.304-7.822 4.54-11.517 7.149 4.988 3.218 10.402 6.007 15.558 8.973 2.275 1.309 5.154 2.618 7.027 4.457.444.436.662.999.776 1.607a5.8 5.8 0 0 1 .077.828c-5.346 3.699-11.094 6.855-16.697 10.145-4.632 2.72-13.549 8.529-18.342 9.72-1.05.076-2.135.131-3.186.037-.925-.082-1.83-.231-2.669-.649-1.66-.828-3.251-1.943-4.836-2.912a271.814 271.814 0 0 0-6.71-3.937c-3.996-2.306-7.959-4.67-11.974-6.942-2.738-1.549-5.588-2.988-8.26-4.64a6.722 6.722 0 0 1-1.674-1.441c.029-.172.033-.222.074-.376a2.993 2.993 0 0 1 .9-1.473c2.449-2.249 11.518-6.903 14.956-8.828l-14.723-8.461c-2.566-1.463-5.764-2.758-7.917-4.769-1.422-1.328-.917-5.347-.978-7.114l.549.139-.013 5.283c.433.779.84 1.409 1.558 1.969 2.33 1.816 5.335 3.138 7.92 4.594l14.058 8.027c3.219-2.018 6.543-3.862 9.797-5.823 2.714-1.635 5.577-3.694 8.527-4.853 1.113-.437 2.486-.776 3.674-.506 2.364.538 9.306 5.202 12.088 6.635Z\" fill=\"#ADB0F6\"/><path d=\"m38.04 203.657.007 1.585c.076 2.167.667 3.918 2.26 5.432 2.382 2.262 6.082 3.018 9.266 2.9 2.903-.108 5.996-1.028 8.01-3.232.839-.92 1.27-1.884 1.61-3.066.104-.829.162-1.666.236-2.498.105.177.197.328.252.529.403 1.494.291 3.073-.515 4.41-1.376 2.28-4.245 3.795-6.753 4.419-3.54.881-8.187.543-11.335-1.42-1.748-1.089-3.08-2.863-3.515-4.894-.28-1.309-.276-3.023.477-4.165Z\" fill=\"#232CD5\"/><path d=\"M38.04 203.657c.612-2.383 1.632-4.038 3.781-5.303 3.023-1.78 6.97-2.128 10.327-1.239 2.542.673 5.046 2.023 6.368 4.386.57 1.018.787 2.127.912 3.277-.074.832-.132 1.669-.235 2.498-.34 1.181-.772 2.146-1.612 3.066-2.012 2.204-5.105 3.124-8.009 3.232-3.184.118-6.884-.638-9.265-2.9-1.594-1.514-2.185-3.266-2.26-5.432l-.008-1.585Z\" fill=\"#F9CE2E\"/><path d=\"M169.16 143.183c-.594-1.506-.912-2.837-1.008-4.457-.261-4.42-.007-8.997.01-13.434-.032-8.171-.004-16.341.086-24.512.034-3.53-.434-12.149.307-15.035.806-.242 1.427.005 2.161.392 2.365 1.25 4.575 2.896 6.924 4.216 15.247 8.56 30.1 17.799 45.116 26.754l26.679 16.048c3.938 2.379 8.569 4.727 12.255 7.421 1.377 1.008 2.459 2.056 2.955 3.742 1.103 3.745.415 10.58.39 14.672l-.121 22.512c-.013 4.043.326 8.159.134 12.191-.046.927-.229 1.956-.671 2.778-.408.764-1.1 1.313-1.864 1.686-2.389-1.872-5.46-3.365-8.08-4.916l-15.47-9.204-54.865-32.062c-4.965-2.96-10.048-5.699-14.938-8.792Z\" fill=\"#232CD5\"/><path d=\"m210.166 120.64 2.147-.672c2.989 3.394 6.046 6.707 9.512 9.623 1.503 1.265 7.031 4.605 7.703 5.497l-.158.538c-3.483-.013-10.83-6.41-13.312-8.929-1.966-1.997-3.616-4.395-5.892-6.057Z\" fill=\"#FEFEFE\"/><path d=\"M229.526 135.088c1.234-.118 2.866 1.072 3.882 1.672-.085 6.121.884 15.374-3.813 19.925-1.529 1.482-3.261 2.07-5.32 2.412.59-.409 1.135-.871 1.634-1.387 4.785-4.897 3.517-15.693 3.46-22.084l.157-.538Z\" fill=\"#1E2251\"/><path d=\"m197.837 116.856.168-.294c1.209.338 2.339 1.306 3.45 1.909 2.103 1.141 4.302 1.821 6.632 2.318l2.079-.148c2.276 1.661 3.926 4.059 5.892 6.056 2.482 2.52 9.829 8.916 13.312 8.929.057 6.391 1.325 17.187-3.46 22.084-.499.516-1.044.979-1.634 1.387-3.364 1.47-7.187 1.57-10.801 1.919-2.088-2.387-4.327-4.641-6.435-7.01-7.894-8.87-9.38-18.113-9.332-29.516.011-2.542-.02-5.095.129-7.634Z\" fill=\"#F9CE2E\"/><path d=\"m197.838 116.856.168-.294c1.209.338 2.339 1.306 3.45 1.909 2.103 1.141 4.302 1.821 6.632 2.318-1.606.389-3.011.624-4.646.247-2.314-.535-4.344-2.202-5.604-4.18Zm12.894 14.74c1.793.606 3.666 1.808 5.371 2.669l.021 5.618c1.367 1.101 3.181 1.893 4.734 2.716v5.581c-1.799-.738-3.35-1.879-4.913-3.012-.059 1.754.383 4.559-.178 6.167l-.339-.054c-1.566-.974-3.108-1.993-4.66-2.99l-.017-5.626-5.186-2.749c-.193-2.146-.221-4.303-.264-6.456 1.894.964 3.705 2.27 5.491 3.425a358.709 358.709 0 0 1-.06-5.289Z\" fill=\"#FEFEFE\"/><path d=\"M77.114 62.695c2.48-1.016 5.013-2.92 7.322-4.322l20.911-12.66c3.588-2.162 7.207-4.699 11.031-6.41 1.05-.47 1.888-.643 3.037-.667 1.773.845 3.069 1.931 3.735 3.87.289.84.335 1.742.373 2.622.162 3.726.08 7.487.092 11.216l.03 20.528.007 12.654c.003 2.579.125 5.241-.12 7.81-.203 2.14-.889 4.308-1.893 6.206-.826 1.562-1.916 3.04-3.238 4.217-1.91 1.702-4.379 2.955-6.566 4.269a897.672 897.672 0 0 0-13.658 8.253c-2.24 1.368-4.649 2.601-6.69 4.264-.586 1.325-1.739 2.3-2.753 3.302 1.135.628 2.166 1.326 3.21 2.096 2.715 1.609 4.691 4.869 5.442 7.875.561 2.246.782 5.483.31 7.765-.935 4.173-2.917 6.926-6.549 9.229-6.966 4.416-16.568 5.037-24.51 3.206-4.275-.986-9.053-3.214-11.435-7.09a9.187 9.187 0 0 1-1.292-3.556c-1.93-.32-9.89 7.039-14.036 6.873-1.191-.048-2.146-.588-3.151-1.162-2.572-1.345-8.248-3.546-9.217-6.401-.779-2.292-.276-8.643-.311-11.422-4.07 2.3-8.074 4.719-12.13 7.044-2.743 1.572-5.976 3.066-8.417 5.051-1 .814-1.809 1.665-2.164 2.943-.592 2.129-.177 4.505-.187 6.688l-.281.106c-.117-2.046-.33-4.638.115-6.639.316-1.419 1.462-2.612 2.562-3.5 1.907-1.539 4.43-2.687 6.557-3.931a896.788 896.788 0 0 0 13.943-8.24c.044-15.219.446-30.459.053-45.676 2.77.71 6.634 3.793 9.279 5.263a20.346 20.346 0 0 1 2.883-6.294 20.338 20.338 0 0 1 2.69-3.18c2.957-2.868 6.684-4.624 10.167-6.746 7.373-4.492 15.019-8.746 22.071-13.736.95-.536 1.862-1.125 2.778-1.718Z\" fill=\"#232CD5\"/><path d=\"M87.022 127.23c1.53-.814 2.991-1.77 4.464-2.685-.586 1.325-1.738 2.3-2.753 3.302l-1.712-.617Z\" fill=\"#ADB0F6\"/><path d=\"M116.1 45.425c.577-.234 1.266-.535 1.872-.2.56.308.71.935.801 1.516.331 2.11.067 4.442.051 6.58l.01 11.4.039 24.596c-.024 3.118.286 6.387-.081 9.478-.182 1.537-.869 2.997-1.809 4.217-.765.991-1.827 1.716-2.863 2.396-4.299 2.82-8.849 5.21-13.225 7.893l-32.207 19.647c-3.717 2.268-22.15 14.167-25.003 14.625-.554-.218-.654-.408-1.02-.862 2.89-1.186 5.607-3.05 8.272-4.669 4.711-2.862 9.377-5.808 14.113-8.627a2023.852 2023.852 0 0 0 32.534-19.708c3.226-1.952 6.42-3.959 9.661-5.885 2.304-1.37 4.81-2.646 6.956-4.253 1.369-1.026 2.809-3.168 3.044-4.88.059-.437.116-.87.139-1.31.146-2.736-.022-5.545-.018-8.289l.053-18.01c.032-5.093.02-10.187-.034-15.28-.019-2.61.139-5.37-.18-7.953-.129-1.043-.394-1.633-1.105-2.422Z\" fill=\"url(#a)\"/><path d=\"M86.466 127.596c1.375.369 4.898 2.331 5.477 2.347 2.716 1.609 4.692 4.869 5.443 7.876.56 2.245.781 5.482.31 7.764l-.15-1.46c-1.8 4.645-4.71 7.19-9.242 9.2-7.4 3.282-17.514 3.538-25.06.612-4.113-1.594-6.321-3.611-8.861-7.113 2.253-1.143 4.358-2.684 6.524-3.998.034 2.057-.454 5.511.674 7.261.564.4 1.132.629 1.825.715.401.049.771-.147 1.117-.326 2.245-1.166 4.389-2.712 6.569-4.013 3.412-2.037 9.703-5.417 12.496-7.807.785-1.539.299-7.596.395-9.691.803-.458 1.634-1.009 2.483-1.367Z\" fill=\"#ADB0F6\"/><path d=\"M116.099 45.425c.711.79.977 1.379 1.106 2.422.319 2.583.16 5.343.18 7.952.054 5.094.065 10.188.033 15.282l-.053 18.01c-.004 2.743.165 5.552.019 8.287-.024.44-.08.874-.14 1.31-.235 1.714-1.674 3.856-3.044 4.882-2.145 1.606-4.652 2.882-6.956 4.252-3.24 1.926-6.435 3.933-9.66 5.885a2022.972 2022.972 0 0 1-32.535 19.708c-4.736 2.819-9.401 5.765-14.112 8.627-2.665 1.619-5.383 3.483-8.273 4.669a4.296 4.296 0 0 1-.485-.668c-.343-.623-.294-1.682-.313-2.38-.2-7.798.042-15.656.006-23.461-.036-7.993-.364-16.105-.03-24.083.046-1.101.191-2.223.543-3.271.6-1.791 2.002-3.573 3.5-4.701 2.178-1.639 4.783-2.919 7.133-4.309 4.78-2.82 9.537-5.68 14.271-8.576l34.369-20.917a290.39 290.39 0 0 0 7.623-4.727c2.235-1.442 4.436-3 6.818-4.193Z\" fill=\"#FEFEFE\"/><path d=\"M83.644 74.87c.712.354 1.386.817 2.064 1.235 1.333 1.843 0 5.151.683 7.322 1.844-.942 4.21-3.19 6.297-3.31.897-.052 1.442.507 2.07 1.053.63 1.337.305 11.897-.19 13.24-1.144 3.11-5.702 4.645-8.32 6.385.011 2.871.754 8.882-1.398 11.02-1.398 1.388-8.377 5.706-10.237 6.401-.129-.043-.335-.078-.43-.175-.62-.362-1.176-.721-1.73-1.183l-.035-.43c-.153-2.642-.071-5.329-.081-7.977-2.145 1.414-4.447 3.189-6.794 4.237-.623.278-.85.268-1.481.016l-1.674-1.046-.01-14.213c3.236-1.854 6.234-4.104 9.517-5.87.24-3.074.22-6.17.253-9.251 2.044-2.705 8.337-5.709 11.496-7.455Z\" fill=\"#F9CE2E\"/><defs><linearGradient id=\"a\" x1=\"91.162\" y1=\"41.965\" x2=\"77.092\" y2=\"151.366\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#000060\"/><stop offset=\"1\" stop-color=\"#161FA0\"/></linearGradient></defs></svg>',withExternalLayout:true})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-134d92c hidden-13depyn\",\"data-framer-name\":\"line\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kdnamt\",\"data-framer-name\":\"Group 427319799\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-125dymq\",\"data-framer-name\":\"Ellipse 389\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2xhY2lhbCBJbmRpZmZlcmVuY2UtcmVndWxhcg==\",\"--framer-font-family\":'\"Glacial Indifference\", \"Glacial Indifference Placeholder\", sans-serif',\"--framer-font-size\":\"22.18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1\"})}),className:\"framer-1dfbbul\",\"data-framer-name\":\"1\",fonts:[\"GF;Glacial Indifference-regular\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-orbjf0\",\"data-framer-name\":\"Line 158\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:204,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"204\" viewBox=\"-1 -1 4 204\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1\" y1=\"0.433105\" x2=\"1.00001\" y2=\"201.433\" stroke=\"#1C2F8F\" stroke-dasharray=\"10 10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gb1iyk\",\"data-framer-name\":\"Group 427319800\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uhgb9g\",\"data-framer-name\":\"Ellipse 389\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2xhY2lhbCBJbmRpZmZlcmVuY2UtcmVndWxhcg==\",\"--framer-font-family\":'\"Glacial Indifference\", \"Glacial Indifference Placeholder\", sans-serif',\"--framer-font-size\":\"22.18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2\"})}),className:\"framer-1427sk3\",\"data-framer-name\":\"2\",fonts:[\"GF;Glacial Indifference-regular\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ilp2bp\",\"data-framer-name\":\"Line 160\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:204,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"204\" viewBox=\"-1 -1 4 204\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1\" y1=\"0.320801\" x2=\"1.00001\" y2=\"201.321\" stroke=\"#1C2F8F\" stroke-dasharray=\"10 10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rusaqy\",\"data-framer-name\":\"Group 427319801\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pdqlsq\",\"data-framer-name\":\"Ellipse 389\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2xhY2lhbCBJbmRpZmZlcmVuY2UtcmVndWxhcg==\",\"--framer-font-family\":'\"Glacial Indifference\", \"Glacial Indifference Placeholder\", sans-serif',\"--framer-font-size\":\"22.18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"3\"})}),className:\"framer-oq56xu\",\"data-framer-name\":\"3\",fonts:[\"GF;Glacial Indifference-regular\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1faaiek\",\"data-framer-name\":\"Line 161\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:204,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"204\" viewBox=\"-1 -1 4 204\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1\" y1=\"0.208984\" x2=\"1.00001\" y2=\"201.209\" stroke=\"#1C2F8F\" stroke-dasharray=\"10 10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rqa2to\",\"data-framer-name\":\"Group 427319802\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k6ypyv\",\"data-framer-name\":\"Ellipse 389\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2xhY2lhbCBJbmRpZmZlcmVuY2UtcmVndWxhcg==\",\"--framer-font-family\":'\"Glacial Indifference\", \"Glacial Indifference Placeholder\", sans-serif',\"--framer-font-size\":\"22.18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4\"})}),className:\"framer-1ckbv9e\",\"data-framer-name\":\"4\",fonts:[\"GF;Glacial Indifference-regular\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8kom93\",\"data-framer-name\":\"Line 162\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:204,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"204\" viewBox=\"-1 -1 4 204\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1\" y1=\"0.0966797\" x2=\"1.00001\" y2=\"201.097\" stroke=\"#1C2F8F\" stroke-dasharray=\"10 10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tf9wrc\",\"data-framer-name\":\"Group 427319803\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q69gnw\",\"data-framer-name\":\"Ellipse 389\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2xhY2lhbCBJbmRpZmZlcmVuY2UtcmVndWxhcg==\",\"--framer-font-family\":'\"Glacial Indifference\", \"Glacial Indifference Placeholder\", sans-serif',\"--framer-font-size\":\"22.18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"5\"})}),className:\"framer-1uqf8ny\",\"data-framer-name\":\"5\",fonts:[\"GF;Glacial Indifference-regular\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-94sff6\",\"data-framer-name\":\"Line 163\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:204,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"204\" viewBox=\"-1 -1 4 204\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1\" y1=\"0.984863\" x2=\"1.00001\" y2=\"201.985\" stroke=\"#1C2F8F\" stroke-dasharray=\"10 10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vzbz6\",\"data-framer-name\":\"Group 427319804\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gk271u\",\"data-framer-name\":\"Ellipse 389\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2xhY2lhbCBJbmRpZmZlcmVuY2UtcmVndWxhcg==\",\"--framer-font-family\":'\"Glacial Indifference\", \"Glacial Indifference Placeholder\", sans-serif',\"--framer-font-size\":\"22.18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"6\"})}),className:\"framer-2qhpt\",\"data-framer-name\":\"6\",fonts:[\"GF;Glacial Indifference-regular\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u0z2a2\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfxwKg5CD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Why Our Clients Trust Us\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dsYWNpYWwgSW5kaWZmZXJlbmNlIEJvbGQ=\",\"--framer-font-family\":'\"Glacial Indifference Bold\", \"Glacial Indifference Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Why Our Clients Trust Us\"})}),className:\"framer-1g4rx7p\",\"data-framer-name\":\"Headline\",fonts:[\"CUSTOM;Glacial Indifference Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8qiqdd-container hidden-72rtr7 hidden-1y5d6pl\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ugyhT501j\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgb(46, 70, 192)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:.15,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:0},gap:50,height:\"100%\",id:\"ugyhT501j\",layoutId:\"ugyhT501j\",padding:10,paddingBottom:0,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:20,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:227,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-i09m1w-container\",inComponentSlot:true,nodeId:\"B86JS_88D\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{Be6ZwRkEX:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Compava is an outstanding company. \",/*#__PURE__*/_jsx(\"strong\",{children:\"They helped our organization get set up for Intune and Azure from stage zero to one hundred percent\"}),\". They were always just a Teams call away and provided help whenever needed. I highly recommend working with Compava.\"]})}),CRhT9BITK:\"Koffi \",height:\"100%\",id:\"B86JS_88D\",layoutId:\"B86JS_88D\",TOJoosQQB:\"Phlenu Inc\",variant:\"M_eAdHvhd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:227,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x520es-container\",inComponentSlot:true,nodeId:\"swojYQPAi\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{Be6ZwRkEX:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Dmitri from Compava is really, really good. Not only is he a rock-solid technical architect, he is an executive-level consultant. \"}),\"He handles himself very well with IT and business leadership\u2014he asks good questions, he's polite but firm when making recommendations.\"]})}),CRhT9BITK:\"Christopher\",height:\"100%\",id:\"swojYQPAi\",layoutId:\"swojYQPAi\",TOJoosQQB:\"CloudSolvers\",variant:\"M_eAdHvhd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:227,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kqnfi2-container\",inComponentSlot:true,nodeId:\"XjyraBUIW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{Be6ZwRkEX:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Very pleasant to communicate with, extremely helpful, \"}),\"and patient with last minute requests. Has executed flawlessly.\"]})}),CRhT9BITK:\"Andrew\",height:\"100%\",id:\"XjyraBUIW\",layoutId:\"XjyraBUIW\",TOJoosQQB:\"Hologram Consultants\",variant:\"M_eAdHvhd\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"start\"},style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14vfyow-container hidden-13depyn\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ILTgl42Vp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgb(46, 70, 192)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:.15,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:80},gap:40,height:\"100%\",id:\"ILTgl42Vp\",layoutId:\"ILTgl42Vp\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:20,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:227,width:\"500px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-b69fib-container\",inComponentSlot:true,nodeId:\"MWYJr8Vp5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{Be6ZwRkEX:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:'\"Dmitri from Compava is really, really good. Not only is he a rock-solid technical architect, he is an executive-level consultant. '}),\"He handles himself very well with IT and business leadership\u2014he asks good questions, he's polite but firm when making recommendations, and he is persuasive. When he doesn't know the answer to a specific question, he is quick to research and get back to you. He even worked pretty much all day on a Saturday to help a client debug a thorny deployment issue.\\\"\"]})}),CRhT9BITK:\"Christopher\",height:\"100%\",id:\"MWYJr8Vp5\",layoutId:\"MWYJr8Vp5\",TOJoosQQB:\"CloudSolvers\",variant:\"Ry2KaRwat\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:227,width:\"500px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o5szix-container\",inComponentSlot:true,nodeId:\"iOFc8CjCA\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{Be6ZwRkEX:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Compava is an outstanding company. \",/*#__PURE__*/_jsx(\"strong\",{children:\"They helped our organization get set up for Intune and Azure from stage zero to one hundred percent\"}),\". They were always just a Teams call away and provided help whenever needed. I highly recommend working with Compava.\"]})}),CRhT9BITK:\"Koffi \",height:\"100%\",id:\"iOFc8CjCA\",layoutId:\"iOFc8CjCA\",TOJoosQQB:\"Phlenu Inc\",variant:\"Ry2KaRwat\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:227,width:\"500px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-m8gyvw-container\",inComponentSlot:true,nodeId:\"CMDx0ksRm\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{Be6ZwRkEX:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Very pleasant to communicate with, extremely helpful, \"}),\"and patient with last minute requests. Has executed flawlessly\"]})}),CRhT9BITK:\"Andrew\",height:\"100%\",id:\"CMDx0ksRm\",layoutId:\"CMDx0ksRm\",TOJoosQQB:\"Hologram Consultants\",variant:\"Ry2KaRwat\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{y:(componentViewport?.y||0)+0+10254.2146},UfxwKg5CD:{y:(componentViewport?.y||0)+0+11873.6336}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:699,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+10+7794.7426,children:/*#__PURE__*/_jsx(Container,{className:\"framer-44o9ob-container\",\"data-framer-name\":\"FOOTER\",name:\"FOOTER\",nodeId:\"BVELrqnyo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{variant:\"eh6jqT1cf\"},UfxwKg5CD:{variant:\"GTRAFEITt\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"BVELrqnyo\",layoutId:\"BVELrqnyo\",name:\"FOOTER\",style:{width:\"100%\"},variant:\"ZX9o2dzmJ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:\"100vw\",y:.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ji2og3-container\",\"data-framer-name\":\"HEADER\",layoutScroll:true,name:\"HEADER\",nodeId:\"Pvjupkkyr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tlyY7QMqp:{variant:\"eI9YpS8zm\"},UfxwKg5CD:{variant:\"jprW2Z3ps\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"Pvjupkkyr\",layoutId:\"Pvjupkkyr\",name:\"HEADER\",style:{height:\"100%\",width:\"100%\"},variant:\"BOu_WvEUc\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lJs5z.framer-lux5qc, .framer-lJs5z .framer-lux5qc { display: block; }\",\".framer-lJs5z.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 1120px; }\",\".framer-lJs5z .framer-1p918r { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: 95%; z-index: 1; }\",\".framer-lJs5z .framer-1h25k6v { align-content: center; align-items: center; background: radial-gradient(77.22221593466386% 289.10165172814266% at 41.99721370319135% 100.00000040088537%, #2e46c0 0%, rgb(9, 23, 94) 100%); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-h9o6xi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 1100px; }\",\".framer-lJs5z .framer-li2nuf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-19n931c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 526px; }\",\".framer-lJs5z .framer-uvz9un { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-1xdcnqt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-72y2l8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-1qla2a6 { align-content: center; align-items: center; background-color: #2e46c0; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: min-content; }\",\".framer-lJs5z .framer-tph4y1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre; width: auto; }\",\".framer-lJs5z .framer-e05wsn, .framer-lJs5z .framer-1ldaq1z, .framer-lJs5z .framer-1kl7ild, .framer-lJs5z .framer-xthnpd, .framer-lJs5z .framer-1pojwiz, .framer-lJs5z .framer-15b7a3m, .framer-lJs5z .framer-1x6qvhf, .framer-lJs5z .framer-woc0bs, .framer-lJs5z .framer-omych9 { --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-lJs5z .framer-ndhagt { --framer-paragraph-spacing: 0px; flex: none; height: 56px; opacity: 0.8; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lJs5z .framer-je223p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lJs5z .framer-i2bkwd, .framer-lJs5z .framer-gpq132 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",'.framer-lJs5z .framer-1xx3ppd, .framer-lJs5z .framer-r1z0ml { --framer-input-background: #ffffff; --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 12px; --framer-input-border-radius-bottom-right: 12px; --framer-input-border-radius-top-left: 12px; --framer-input-border-radius-top-right: 12px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Glacial Indifference Regular\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 17px; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #696969; flex: 1 0 0px; height: 1px; position: relative; width: 196px; }',\".framer-lJs5z .framer-l51sw-container, .framer-lJs5z .framer-cogt9d-container { flex: none; height: 50px; position: relative; width: auto; }\",\".framer-lJs5z .framer-1ls0s95 { -webkit-mask: radial-gradient(55.00000000000001% 54% at 47% 42.3%, #000000 69.17856137387388%, rgba(0, 0, 0, 0) 100%) add; aspect-ratio: 1.4978448275862069 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 359px); mask: radial-gradient(55.00000000000001% 54% at 47% 42.3%, rgba(0,0,0,1) 69.17856137387388%, rgba(0, 0, 0, 0) 100%) add; mix-blend-mode: lighten; position: relative; width: 538px; }\",\".framer-lJs5z .framer-q62vhs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-zd7chk, .framer-lJs5z .framer-jlovwz, .framer-lJs5z .framer-lbudxh, .framer-lJs5z .framer-1yzob6j, .framer-lJs5z .framer-1c8gfl2, .framer-lJs5z .framer-cdx32v { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-lJs5z .framer-1m3rbfy, .framer-lJs5z .framer-1mf7729, .framer-lJs5z .framer-9ac6nv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-lJs5z .framer-18sjmz7 { background-color: #ffffff; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 82px; overflow: hidden; position: relative; width: 107px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lJs5z .framer-1t0a3o7 { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 66px; left: calc(51.02040816326533% - 86px / 2); overflow: visible; position: absolute; top: calc(49.315068493150704% - 66px / 2); width: 86px; }\",\".framer-lJs5z .framer-1t00boi { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 81px; overflow: visible; position: relative; width: 88px; }\",\".framer-lJs5z .framer-1g7czjj { aspect-ratio: 3.9916666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); overflow: visible; position: relative; width: 206px; }\",\".framer-lJs5z .framer-16t1qmc { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 8px 0px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-lJs5z .framer-1k8mr3p { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-lJs5z .framer-7hthuo { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 465px 80px 465px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-pluap6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1000px; }\",\".framer-lJs5z .framer-qunn1g, .framer-lJs5z .framer-18hlwfn, .framer-lJs5z .framer-uwa5od { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lJs5z .framer-1w1rr8k, .framer-lJs5z .framer-1ile8g8, .framer-lJs5z .framer-qrnt9k { aspect-ratio: 1.0098039215686274 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 82px); position: relative; width: 83px; }\",\".framer-lJs5z .framer-1tnk66l, .framer-lJs5z .framer-oxsmhg, .framer-lJs5z .framer-1tkbhsl { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 269px; word-break: break-word; word-wrap: break-word; }\",\".framer-lJs5z .framer-1j6pn97 { align-content: center; align-items: center; background-color: #f8f8f8; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 479px; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-12ydwdc { background-color: #2e46c0; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: none; gap: 104px; height: 334px; overflow: hidden; position: relative; width: 1048px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lJs5z .framer-i7j6v { -webkit-filter: blur(96.1500015258789px); aspect-ratio: 1 / 1; background-color: #132477; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(96.1500015258789px); flex: none; height: var(--framer-aspect-ratio-supported, 703px); left: -78px; opacity: 0.6; position: absolute; top: -170px; width: 703px; }\",\".framer-lJs5z .framer-1a6b6g6 { aspect-ratio: 1.0534351145038168 / 1; bottom: -59px; flex: none; height: var(--framer-aspect-ratio-supported, 351px); left: 614px; overflow: visible; position: absolute; width: 370px; }\",\".framer-lJs5z .framer-1pexj6k { 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: 93px; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translateY(-50%); width: 48%; }\",\".framer-lJs5z .framer-mo04ks { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-1rz4dnz, .framer-lJs5z .framer-drikz9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 502px; word-break: break-word; word-wrap: break-word; }\",\".framer-lJs5z .framer-ef8vvw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lJs5z .framer-19c61z4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lJs5z .framer-1keisqk { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 110px 456px 80px 456px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-arkkdh { --border-bottom-width: 1px; --border-color: #eaeeff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #f8faff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; overflow: visible; padding: 32px; position: relative; width: 620px; }\",\".framer-lJs5z .framer-2o65cr { --framer-paragraph-spacing: 0px; flex: none; height: 93px; left: calc(50.00000000000002% - 62px / 2); position: absolute; top: -7px; white-space: pre-wrap; width: 62px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-lJs5z .framer-em3pso { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-1o7189j { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 556px; word-break: break-word; word-wrap: break-word; }\",\".framer-lJs5z .framer-avmcph { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lJs5z .framer-1te0ewf { align-content: center; align-items: center; background-color: #f8f8f8; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 456px 80px 456px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-vn90n5 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; gap: 52px; height: 331px; overflow: visible; position: relative; width: 1000px; }\",\".framer-lJs5z .framer-1eyjzag { flex: none; height: 327px; left: 58px; position: absolute; top: 0px; width: 370px; }\",\".framer-lJs5z .framer-1oxkfc2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 49%; transform: translateY(-50%); width: 49%; }\",\".framer-lJs5z .framer-ho9yf5, .framer-lJs5z .framer-16wcuvl { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 504px; word-break: break-word; word-wrap: break-word; }\",\".framer-lJs5z .framer-q0mpck { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 208px 80px 208px; position: relative; width: 1200px; }\",\".framer-lJs5z .framer-e48b88 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-lJs5z .framer-17qx8bz, .framer-lJs5z .framer-1x1ojqj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1022px; word-break: break-word; word-wrap: break-word; }\",\".framer-lJs5z .framer-1nqbhc1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lJs5z .framer-wrptie { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-1v81zcz, .framer-lJs5z .framer-143h61e, .framer-lJs5z .framer-1d3njwa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 282px; }\",\".framer-lJs5z .framer-ixcb7n, .framer-lJs5z .framer-1nkxw2p, .framer-lJs5z .framer-u0q62r { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 82px); position: relative; width: 82px; }\",\".framer-lJs5z .framer-102m9pe, .framer-lJs5z .framer-11bwdlq, .framer-lJs5z .framer-4to245 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-1pscjq6, .framer-lJs5z .framer-1iz6x75, .framer-lJs5z .framer-1wmupc6, .framer-lJs5z .framer-1q19nzg, .framer-lJs5z .framer-5h88p9, .framer-lJs5z .framer-1hs47py { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 282px; word-break: break-word; word-wrap: break-word; }\",\".framer-lJs5z .framer-15ctx7j-container { flex: none; height: auto; position: relative; width: 620px; }\",\".framer-lJs5z .framer-1f98ysx { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 456px 80px 456px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-112zdso { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lJs5z .framer-4a8n7q { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-lJs5z .framer-1xmvmik, .framer-lJs5z .framer-ri6l60, .framer-lJs5z .framer-1yl46gq, .framer-lJs5z .framer-kgans9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-lJs5z .framer-frv6tv, .framer-lJs5z .framer-1qfbhfi, .framer-lJs5z .framer-1ddb9s1, .framer-lJs5z .framer-gstp3k, .framer-lJs5z .framer-1t0opox { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); position: relative; width: 70px; }\",\".framer-lJs5z .framer-1xiay40, .framer-lJs5z .framer-a8zevn, .framer-lJs5z .framer-jwt4yt, .framer-lJs5z .framer-11hpe0k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-1t0zbji, .framer-lJs5z .framer-sp0cv1, .framer-lJs5z .framer-a0fxo1 { flex: none; height: 102px; position: relative; width: 102px; }\",\".framer-lJs5z .framer-fnwl0y-container { flex: none; height: 58px; position: relative; width: auto; }\",\".framer-lJs5z .framer-4vplq8 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-yrme78 { flex: none; height: 1840px; overflow: hidden; position: relative; width: 896px; }\",\".framer-lJs5z .framer-zg7736 { bottom: 0px; flex: none; left: calc(50.00000000000002% - 895px / 2); overflow: hidden; position: absolute; top: 0px; width: 895px; }\",\".framer-lJs5z .framer-1b6odgc { flex: none; height: 262px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 816px; }\",\".framer-lJs5z .framer-1huiptg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 78px; width: 340px; }\",\".framer-lJs5z .framer-1vdd93z, .framer-lJs5z .framer-9kua11 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 340px; word-break: break-word; word-wrap: break-word; }\",\".framer-lJs5z .framer-3pkg3r, .framer-lJs5z .framer-p15n34, .framer-lJs5z .framer-1f3k6ty, .framer-lJs5z .framer-b7xdoq, .framer-lJs5z .framer-1lmchrp, .framer-lJs5z .framer-tftzsn { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 348px; word-break: break-word; word-wrap: break-word; }\",\".framer-lJs5z .framer-m3ygss { aspect-ratio: 0.9885496183206107 / 1; bottom: 0px; flex: none; left: 518px; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 259px); }\",\".framer-lJs5z .framer-x3h5v7 { bottom: 345px; flex: none; height: 254px; left: 0px; overflow: visible; position: absolute; width: 833px; }\",\".framer-lJs5z .framer-1a4viqa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 66px; width: 356px; }\",\".framer-lJs5z .framer-o39u80, .framer-lJs5z .framer-1xm8x6a { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 356px; word-break: break-word; word-wrap: break-word; }\",\".framer-lJs5z .framer-1cmzzq { flex: none; height: 255px; left: 518px; position: absolute; top: 0px; width: 315px; }\",\".framer-lJs5z .framer-xxelx9 { flex: none; height: 256px; left: 0px; overflow: visible; position: absolute; top: 321px; width: 893px; }\",\".framer-lJs5z .framer-35wx9l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; left: 545px; overflow: visible; padding: 0px; position: absolute; top: 55px; width: 348px; }\",\".framer-lJs5z .framer-mbrufd { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 336px; word-break: break-word; word-wrap: break-word; }\",\".framer-lJs5z .framer-1ce3twy { aspect-ratio: 1.390625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 256px); left: 0px; position: absolute; top: 0px; width: 356px; }\",\".framer-lJs5z .framer-azmv95 { flex: none; height: 218px; left: 0px; overflow: visible; position: absolute; top: 636px; width: 817px; }\",\".framer-lJs5z .framer-xbll47 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 48%; transform: translateY(-50%); width: 340px; }\",\".framer-lJs5z .framer-12j46ku { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 322px; word-break: break-word; word-wrap: break-word; }\",\".framer-lJs5z .framer-ni0akm { flex: none; height: 219px; left: 517px; position: absolute; top: 0px; width: 300px; }\",\".framer-lJs5z .framer-fs8li5 { bottom: 668px; flex: none; height: 249px; left: 0px; overflow: visible; position: absolute; right: 0px; }\",\".framer-lJs5z .framer-1v3b75z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; left: 499px; overflow: visible; padding: 0px; position: absolute; top: 60px; width: 396px; }\",\".framer-lJs5z .framer-1yldoux { bottom: -1px; flex: none; left: 36px; position: absolute; top: 0px; width: 297px; }\",\".framer-lJs5z .framer-1t88rd8 { bottom: 0px; flex: none; height: 286px; left: 0px; overflow: visible; position: absolute; width: 835px; }\",\".framer-lJs5z .framer-1y0j0as { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 52%; transform: translateY(-50%); width: 334px; }\",\".framer-lJs5z .framer-1q7839v { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 286px); left: 77px; position: absolute; top: -2px; width: 286px; }\",\".framer-lJs5z .framer-134d92c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: flex-start; left: 49%; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 65px; }\",\".framer-lJs5z .framer-kdnamt, .framer-lJs5z .framer-1gb1iyk, .framer-lJs5z .framer-1rusaqy, .framer-lJs5z .framer-rqa2to, .framer-lJs5z .framer-tf9wrc, .framer-lJs5z .framer-1vzbz6 { flex: none; height: 42px; overflow: visible; position: relative; width: 42px; }\",\".framer-lJs5z .framer-125dymq, .framer-lJs5z .framer-uhgb9g, .framer-lJs5z .framer-pdqlsq, .framer-lJs5z .framer-1k6ypyv, .framer-lJs5z .framer-q69gnw, .framer-lJs5z .framer-gk271u { aspect-ratio: 1.0000002732069995 / 1; background-color: #1c2f8f; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 42px); left: 0px; position: absolute; top: 0px; width: 42px; }\",\".framer-lJs5z .framer-1dfbbul, .framer-lJs5z .framer-1427sk3, .framer-lJs5z .framer-oq56xu, .framer-lJs5z .framer-1ckbv9e, .framer-lJs5z .framer-2qhpt { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 51%; position: absolute; top: 51%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-lJs5z .framer-orbjf0, .framer-lJs5z .framer-ilp2bp, .framer-lJs5z .framer-1faaiek, .framer-lJs5z .framer-8kom93, .framer-lJs5z .framer-94sff6 { flex: none; height: 204px; position: relative; width: 4px; }\",\".framer-lJs5z .framer-1uqf8ny { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 52%; position: absolute; top: 51%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-lJs5z .framer-1u0z2a2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px 60px 80px 60px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-1g4rx7p { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1240px; word-break: break-word; word-wrap: break-word; }\",\".framer-lJs5z .framer-8qiqdd-container { flex: none; height: auto; position: relative; width: 335px; }\",\".framer-lJs5z .framer-i09m1w-container, .framer-lJs5z .framer-1x520es-container, .framer-lJs5z .framer-1kqnfi2-container, .framer-lJs5z .framer-b69fib-container, .framer-lJs5z .framer-1o5szix-container, .framer-lJs5z .framer-m8gyvw-container { height: auto; position: relative; width: auto; }\",\".framer-lJs5z .framer-14vfyow-container { flex: none; height: 504px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-lJs5z .framer-44o9ob-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-lJs5z .framer-ji2og3-container { flex: none; height: 95px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 1px; width: 100%; z-index: 10; }\",'.framer-lJs5z[data-border=\"true\"]::after, .framer-lJs5z [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 768px) and (max-width: 1119px) { .framer-lJs5z.framer-72rtr7 { padding: 0px; width: 768px; } .framer-lJs5z .framer-1p918r { padding: 77px 0px 0px 0px; width: 100%; } .framer-lJs5z .framer-1h25k6v { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; } .framer-lJs5z .framer-h9o6xi { padding: 0px 0px 0px 40px; width: 80%; } .framer-lJs5z .framer-19n931c { gap: 22px; width: 423px; } .framer-lJs5z .framer-1xx3ppd, .framer-lJs5z .framer-r1z0ml { width: 133px; } .framer-lJs5z .framer-1ls0s95 { height: var(--framer-aspect-ratio-supported, 142px); width: 212px; } .framer-lJs5z .framer-1m3rbfy { gap: 10px; width: 100%; } .framer-lJs5z .framer-1mf7729, .framer-lJs5z .framer-sp0cv1 { order: 0; } .framer-lJs5z .framer-18sjmz7 { aspect-ratio: 1.3424657534246576 / 1; height: var(--framer-aspect-ratio-supported, 75px); order: 0; width: 100px; } .framer-lJs5z .framer-1t0a3o7 { height: 54px; left: calc(50.00000000000002% - 76px / 2); top: calc(50.66666666666669% - 54px / 2); width: 76px; } .framer-lJs5z .framer-9ac6nv { order: 1; } .framer-lJs5z .framer-1t00boi { height: 56px; width: 81px; } .framer-lJs5z .framer-7hthuo { padding: 60px 465px 80px 465px; } .framer-lJs5z .framer-pluap6 { gap: 32px; } .framer-lJs5z .framer-qunn1g { width: 250px; } .framer-lJs5z .framer-1w1rr8k, .framer-lJs5z .framer-1ile8g8, .framer-lJs5z .framer-qrnt9k { height: var(--framer-aspect-ratio-supported, 74px); width: 75px; } .framer-lJs5z .framer-1tnk66l, .framer-lJs5z .framer-oxsmhg, .framer-lJs5z .framer-1tkbhsl, .framer-lJs5z .framer-e48b88, .framer-lJs5z .framer-17qx8bz, .framer-lJs5z .framer-1pscjq6, .framer-lJs5z .framer-1iz6x75, .framer-lJs5z .framer-1wmupc6, .framer-lJs5z .framer-1q19nzg, .framer-lJs5z .framer-5h88p9, .framer-lJs5z .framer-1hs47py, .framer-lJs5z .framer-112zdso, .framer-lJs5z .framer-yrme78, .framer-lJs5z .framer-1vdd93z, .framer-lJs5z .framer-3pkg3r, .framer-lJs5z .framer-1xm8x6a, .framer-lJs5z .framer-mbrufd, .framer-lJs5z .framer-p15n34, .framer-lJs5z .framer-9kua11, .framer-lJs5z .framer-12j46ku, .framer-lJs5z .framer-1f3k6ty, .framer-lJs5z .framer-b7xdoq, .framer-lJs5z .framer-1lmchrp, .framer-lJs5z .framer-tftzsn { width: 100%; } .framer-lJs5z .framer-18hlwfn, .framer-lJs5z .framer-uwa5od { width: 200px; } .framer-lJs5z .framer-12ydwdc { gap: 0px; width: 716px; } .framer-lJs5z .framer-i7j6v { aspect-ratio: unset; bottom: -184px; height: unset; left: 0px; top: -185px; } .framer-lJs5z .framer-1a6b6g6 { aspect-ratio: unset; bottom: -68px; height: 351px; left: unset; right: -8px; } .framer-lJs5z .framer-1pexj6k { left: 65px; width: 328px; } .framer-lJs5z .framer-mo04ks { height: 148px; width: 59%; } .framer-lJs5z .framer-1rz4dnz { width: 339px; } .framer-lJs5z .framer-1keisqk { padding: 100px 0px 80px 0px; } .framer-lJs5z .framer-1te0ewf { padding: 60px 456px 60px 456px; } .framer-lJs5z .framer-vn90n5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: center; padding: 0px; } .framer-lJs5z .framer-1eyjzag { left: unset; order: 0; position: relative; top: unset; } .framer-lJs5z .framer-1oxkfc2 { order: 1; position: relative; right: unset; top: unset; transform: unset; } .framer-lJs5z .framer-q0mpck { padding: 80px 100px 80px 100px; width: 100%; } .framer-lJs5z .framer-1nqbhc1 { gap: 105px; } .framer-lJs5z .framer-wrptie { align-content: center; align-items: center; flex-direction: column; gap: 44px; } .framer-lJs5z .framer-1v81zcz, .framer-lJs5z .framer-143h61e, .framer-lJs5z .framer-1d3njwa, .framer-lJs5z .framer-o39u80 { max-width: 350px; width: 100%; } .framer-lJs5z .framer-1f98ysx { padding: 80px 100px 80px 100px; } .framer-lJs5z .framer-1x1ojqj { order: 0; width: 100%; } .framer-lJs5z .framer-4a8n7q { align-content: center; align-items: center; align-self: unset; flex-direction: column; gap: 32px; order: 1; width: 100%; } .framer-lJs5z .framer-1xmvmik { flex: none; max-width: 350px; order: 3; width: 100%; } .framer-lJs5z .framer-1xiay40 { gap: 10px; } .framer-lJs5z .framer-ri6l60 { flex: none; max-width: 350px; order: 0; width: 100%; } .framer-lJs5z .framer-1yl46gq { flex: none; max-width: 350px; order: 1; width: 100%; } .framer-lJs5z .framer-jwt4yt { order: 3; } .framer-lJs5z .framer-kgans9 { flex: none; max-width: 350px; order: 2; width: 100%; } .framer-lJs5z .framer-fnwl0y-container { height: 49px; } .framer-lJs5z .framer-4vplq8 { padding: 60px 0px 0px 0px; } .framer-lJs5z .framer-zg7736 { bottom: unset; height: 1840px; left: 0px; right: -1px; width: unset; } .framer-lJs5z .framer-1b6odgc { left: -2px; right: -3px; top: -10px; width: unset; } .framer-lJs5z .framer-1huiptg { left: 102px; max-width: 260px; top: 50%; transform: translateY(-50%); width: 260px; } .framer-lJs5z .framer-m3ygss { left: 461px; } .framer-lJs5z .framer-x3h5v7 { bottom: 339px; right: -6px; width: unset; } .framer-lJs5z .framer-1a4viqa { left: 100px; max-width: 260px; top: 50%; transform: translateY(-50%); width: 260px; } .framer-lJs5z .framer-1cmzzq { height: 196px; left: 453px; top: calc(53.93700787401578% - 196px / 2); width: 242px; } .framer-lJs5z .framer-xxelx9 { right: -6px; width: unset; } .framer-lJs5z .framer-35wx9l { left: 459px; max-width: 260px; top: 50%; transform: translateY(-50%); width: 32%; } .framer-lJs5z .framer-1ce3twy { height: var(--framer-aspect-ratio-supported, 191px); left: 83px; width: 266px; } .framer-lJs5z .framer-azmv95 { right: 0px; width: unset; } .framer-lJs5z .framer-xbll47 { bottom: -17px; left: 90px; max-width: 260px; top: unset; transform: unset; width: 100%; } .framer-lJs5z .framer-ni0akm { height: 177px; left: 453px; top: calc(50.00000000000002% - 177px / 2); width: 242px; } .framer-lJs5z .framer-1v3b75z { left: 459px; max-width: 260px; top: 50%; transform: translateY(-50%); width: 260px; } .framer-lJs5z .framer-1yldoux { bottom: unset; height: 170px; left: 90px; top: calc(50.20080321285143% - 170px / 2); width: 202px; } .framer-lJs5z .framer-1t88rd8 { bottom: -40px; right: -24px; width: unset; } .framer-lJs5z .framer-1y0j0as { left: 461px; max-width: 260px; right: unset; top: 50%; width: 260px; } .framer-lJs5z .framer-1q7839v { height: var(--framer-aspect-ratio-supported, 280px); left: 48px; top: 50%; transform: translateY(-50%); width: 280px; } .framer-lJs5z .framer-134d92c { top: 78px; transform: translateX(-50%); } .framer-lJs5z .framer-q69gnw { height: var(--framer-aspect-ratio-supported, 41px); } .framer-lJs5z .framer-1u0z2a2 { gap: 24px; padding: 100px 60px 80px 60px; }}\",\"@media (max-width: 767px) { .framer-lJs5z.framer-72rtr7 { padding: 0px; width: 375px; } .framer-lJs5z .framer-1p918r { padding: 0px; width: 100%; } .framer-lJs5z .framer-1h25k6v { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; order: 0; padding: 23px 0px 63px 0px; } .framer-lJs5z .framer-h9o6xi { gap: 16px; padding: 80px 40px 0px 40px; width: 100%; } .framer-lJs5z .framer-li2nuf, .framer-lJs5z .framer-je223p, .framer-lJs5z .framer-19c61z4 { flex-direction: column; } .framer-lJs5z .framer-19n931c { align-content: center; align-items: center; gap: 23px; padding: 28px 20px 28px 20px; width: 100%; } .framer-lJs5z .framer-1xdcnqt { align-content: center; align-items: center; } .framer-lJs5z .framer-72y2l8 { justify-content: center; overflow: visible; } .framer-lJs5z .framer-ndhagt { height: auto; } .framer-lJs5z .framer-i2bkwd, .framer-lJs5z .framer-gpq132 { width: 281px; } .framer-lJs5z .framer-1xx3ppd, .framer-lJs5z .framer-1rz4dnz, .framer-lJs5z .framer-r1z0ml, .framer-lJs5z .framer-arkkdh, .framer-lJs5z .framer-1o7189j, .framer-lJs5z .framer-avmcph, .framer-lJs5z .framer-ho9yf5, .framer-lJs5z .framer-16wcuvl, .framer-lJs5z .framer-17qx8bz, .framer-lJs5z .framer-1v81zcz, .framer-lJs5z .framer-1pscjq6, .framer-lJs5z .framer-1iz6x75, .framer-lJs5z .framer-143h61e, .framer-lJs5z .framer-1wmupc6, .framer-lJs5z .framer-1q19nzg, .framer-lJs5z .framer-1d3njwa, .framer-lJs5z .framer-5h88p9, .framer-lJs5z .framer-1hs47py, .framer-lJs5z .framer-1x1ojqj, .framer-lJs5z .framer-1vdd93z, .framer-lJs5z .framer-3pkg3r, .framer-lJs5z .framer-o39u80, .framer-lJs5z .framer-1xm8x6a, .framer-lJs5z .framer-mbrufd, .framer-lJs5z .framer-p15n34, .framer-lJs5z .framer-9kua11, .framer-lJs5z .framer-12j46ku, .framer-lJs5z .framer-1f3k6ty, .framer-lJs5z .framer-b7xdoq, .framer-lJs5z .framer-1lmchrp, .framer-lJs5z .framer-tftzsn { width: 100%; } .framer-lJs5z .framer-1ls0s95 { height: var(--framer-aspect-ratio-supported, 239px); width: 358px; } .framer-lJs5z .framer-q62vhs { gap: 20px; padding: 80px 0px 30px 0px; } .framer-lJs5z .framer-zd7chk, .framer-lJs5z .framer-jlovwz, .framer-lJs5z .framer-cdx32v { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-lJs5z .framer-1m3rbfy { flex-direction: column; gap: 0px; width: 100%; } .framer-lJs5z .framer-1mf7729 { gap: 10px; padding: 0px 30px 0px 30px; width: 100%; } .framer-lJs5z .framer-1t0a3o7 { height: 60px; left: calc(50.00000000000002% - 78px / 2); top: calc(50.68493150684934% - 60px / 2); width: 78px; } .framer-lJs5z .framer-9ac6nv { flex-direction: column; gap: 10px; padding: 0px 30px 0px 30px; width: 100%; } .framer-lJs5z .framer-1t00boi { height: 63px; width: 75px; } .framer-lJs5z .framer-1g7czjj { height: var(--framer-aspect-ratio-supported, 51px); } .framer-lJs5z .framer-16t1qmc { padding: 16px 8px 10px 8px; } .framer-lJs5z .framer-7hthuo { gap: 40px; padding: 30px 30px 60px 30px; } .framer-lJs5z .framer-pluap6 { align-content: center; align-items: center; flex-direction: column; gap: 28px; padding: 0px 30px 0px 30px; width: 100%; } .framer-lJs5z .framer-1j6pn97 { flex-direction: row; height: min-content; padding: 60px 20px 60px 20px; } .framer-lJs5z .framer-12ydwdc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 614px; justify-content: flex-start; padding: 50px 20px 0px 20px; width: 1px; } .framer-lJs5z .framer-i7j6v { height: var(--framer-aspect-ratio-supported, 335px); left: 50%; top: -35px; transform: translateX(-50%); width: 335px; z-index: 0; } .framer-lJs5z .framer-1a6b6g6 { bottom: -70px; height: var(--framer-aspect-ratio-supported, 295px); left: -8px; width: 311px; z-index: 1; } .framer-lJs5z .framer-1pexj6k { align-content: center; align-items: center; left: unset; position: relative; top: unset; transform: unset; width: 100%; } .framer-lJs5z .framer-mo04ks { align-content: center; align-items: center; padding: 0px 30px 0px 30px; } .framer-lJs5z .framer-drikz9 { white-space: pre; width: auto; } .framer-lJs5z .framer-ef8vvw { align-content: center; align-items: center; width: 100%; } .framer-lJs5z .framer-1keisqk { gap: 53px; padding: 80px 20px 60px 20px; } .framer-lJs5z .framer-2o65cr { aspect-ratio: 0.6666666666666666 / 1; height: var(--framer-aspect-ratio-supported, 48px); left: 45%; top: -2px; transform: translateX(-50%); width: 32px; } .framer-lJs5z .framer-1te0ewf { padding: 40px 0px 60px 0px; } .framer-lJs5z .framer-vn90n5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: center; padding: 0px 30px 0px 30px; width: 100%; } .framer-lJs5z .framer-1eyjzag { left: unset; position: relative; top: unset; } .framer-lJs5z .framer-1oxkfc2 { position: relative; right: unset; top: unset; transform: unset; width: 100%; } .framer-lJs5z .framer-q0mpck { padding: 60px 0px 80px 0px; width: 100%; } .framer-lJs5z .framer-e48b88 { gap: 33px; width: 100%; } .framer-lJs5z .framer-1nqbhc1 { align-content: flex-start; align-items: flex-start; padding: 0px 20px 0px 20px; width: 100%; } .framer-lJs5z .framer-wrptie { flex-direction: column; gap: 26px; order: 0; } .framer-lJs5z .framer-15ctx7j-container { order: 1; width: 100%; } .framer-lJs5z .framer-1f98ysx { padding: 60px 20px 60px 20px; } .framer-lJs5z .framer-112zdso { gap: 32px; width: 100%; } .framer-lJs5z .framer-4a8n7q { align-self: unset; flex-direction: column; gap: 32px; width: 100%; } .framer-lJs5z .framer-1xmvmik { flex: none; justify-content: flex-start; order: 0; width: 100%; } .framer-lJs5z .framer-1xiay40 { align-content: flex-start; align-items: flex-start; } .framer-lJs5z .framer-ri6l60 { flex: none; justify-content: flex-start; order: 1; width: 100%; } .framer-lJs5z .framer-1yl46gq { flex: none; justify-content: flex-start; order: 2; width: 100%; } .framer-lJs5z .framer-jwt4yt { order: 3; } .framer-lJs5z .framer-gstp3k { order: 0; } .framer-lJs5z .framer-kgans9 { flex: none; justify-content: flex-start; order: 3; width: 100%; } .framer-lJs5z .framer-fnwl0y-container { height: 64px; width: 100%; } .framer-lJs5z .framer-4vplq8 { padding: 60px 0px 0px 0px; } .framer-lJs5z .framer-yrme78 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-lJs5z .framer-zg7736 { align-content: flex-start; align-items: flex-start; bottom: unset; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; left: unset; padding: 0px 30px 0px 30px; position: relative; top: unset; width: 100%; } .framer-lJs5z .framer-1b6odgc, .framer-lJs5z .framer-xxelx9, .framer-lJs5z .framer-azmv95 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: unset; padding: 0px; position: relative; top: unset; width: 100%; } .framer-lJs5z .framer-1huiptg, .framer-lJs5z .framer-1a4viqa, .framer-lJs5z .framer-35wx9l, .framer-lJs5z .framer-1v3b75z { left: unset; order: 1; position: relative; top: unset; width: 100%; } .framer-lJs5z .framer-m3ygss { bottom: unset; height: var(--framer-aspect-ratio-supported, 262px); left: unset; order: 0; position: relative; top: unset; width: 259px; } .framer-lJs5z .framer-x3h5v7, .framer-lJs5z .framer-1t88rd8 { align-content: center; align-items: center; bottom: unset; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: unset; padding: 0px; position: relative; width: 100%; } .framer-lJs5z .framer-1cmzzq, .framer-lJs5z .framer-ni0akm, .framer-lJs5z .framer-1q7839v { left: unset; order: 0; position: relative; top: unset; } .framer-lJs5z .framer-1ce3twy { height: var(--framer-aspect-ratio-supported, 231px); left: unset; order: 0; position: relative; top: unset; width: 323px; } .framer-lJs5z .framer-xbll47 { left: unset; order: 1; position: relative; top: unset; transform: unset; width: 100%; } .framer-lJs5z .framer-fs8li5 { align-content: center; align-items: center; bottom: unset; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: unset; padding: 0px; position: relative; right: unset; width: 100%; } .framer-lJs5z .framer-1yldoux { bottom: unset; height: 250px; left: unset; order: 0; position: relative; top: unset; } .framer-lJs5z .framer-1y0j0as { order: 1; position: relative; right: unset; top: unset; transform: unset; width: 100%; } .framer-lJs5z .framer-1u0z2a2 { gap: 24px; padding: 60px 20px 60px 20px; } .framer-lJs5z .framer-1g4rx7p { order: 0; width: 100%; } .framer-lJs5z .framer-8qiqdd-container { order: 1; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7737\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tlyY7QMqp\":{\"layout\":[\"fixed\",\"auto\"]},\"UfxwKg5CD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-lJs5z\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7737,width:1120};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Glacial Indifference Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/jBQUgOgXaPObB1tyMOietr0Zo1I.woff2\"},{family:\"Glacial Indifference Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/60Aw8wjQGpXV3Hqwiwt6wLaQQU.woff2\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NZ67QOF3FXYLOR27ABJOZVKKBKNRMKMF/EHBFE55HTLOOJHTZSLD54GSL3EBTAFNQ/DI2GHUWG3WKRXISSCTNDMTWKWZC25UIW.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"},{family:\"Gilda Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/gildadisplay/v19/t5tmIRoYMoaYG0WEOh7HwMeR7TzFrpOHYh4.woff2\",weight:\"400\"},{family:\"Glacial Indifference Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/jqy78CfQS17G3xiMgW1V66op1ek.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...Button3Fonts,...TestimonialSectionsFonts,...ButtonFonts,...TestimonialFonts,...CarouselFonts,...FooterFonts,...HeaderFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"7737\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tlyY7QMqp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UfxwKg5CD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1120\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "n", "isNumber", "t", "isEasingList", "wrap", "e", "n", "o", "getEasingForSegment", "mix", "noopReturn", "t", "progress", "e", "n", "fillOffset", "o", "s", "mix", "defaultOffset", "interpolate", "f", "r", "clamp", "getEasingForSegment", "isString", "t", "e", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "n", "createGeneratorEasing", "e", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "Z", "createAxisInfo", "createScrollInfo", "X", "updateAxisInfo", "progress", "velocityPerSecond", "updateScrollInfo", "calcInset", "Y", "J", "resolveEdge", "isString", "isNumber", "Q", "resolveOffset", "ee", "resolveOffsets", "interpolate", "defaultOffset", "measure", "createOnScrollHandler", "scrubAnimation", "noopReturn", "te", "ne", "oe", "getEventTarget", "scroll", "__rest", "listener", "dispatchPointerEvent", "e", "n", "dispatchViewEvent", "se", "o", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "clamp", "t", "e", "n", "progress", "t", "e", "n", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "borderRadiusControl", "ControlType", "usePadding", "props", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "se", "paddingControl", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText", "css", "FramernCPRdoOor", "withCSS", "nCPRdoOor_default", "addPropertyControls", "ControlType", "addFonts", "Button3Fonts", "getFonts", "nCPRdoOor_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "formVariants", "form", "currentVariant", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "FormContainer", "formState", "l", "FormPlainTextInput2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Link", "SVG", "css", "FramercNhYFFMuz", "withCSS", "cNhYFFMuz_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "css", "FramereeUfuxFie", "withCSS", "eeUfuxFie_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "company", "height", "id", "name1", "text", "width", "props", "u", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "CRhT9BITK", "TOJoosQQB", "Be6ZwRkEX", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "RichText", "css", "FramerQGQrMD_qy", "withCSS", "QGQrMD_qy_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "DLLP47kIC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText", "SVG", "css", "FramerUe_hxuiwA", "withCSS", "Ue_hxuiwA_default", "addPropertyControls", "ControlType", "addFonts", "Button3Fonts", "getFonts", "nCPRdoOor_default", "TestimonialSectionsFonts", "eeUfuxFie_default", "ButtonFonts", "Ue_hxuiwA_default", "TestimonialFonts", "QGQrMD_qy_default", "CarouselFonts", "Carousel", "FooterFonts", "cNhYFFMuz_default", "HeaderFonts", "MxLnDFSPF_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "formVariants", "form", "variants", "currentVariant", "transformTemplate1", "_", "transformTemplate2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "x", "RichText", "FormContainer", "formState", "l", "FormPlainTextInput2", "ComponentViewportProvider", "Container", "getLoadingLazyAtYPosition", "Image2", "SVG", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
