{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/cG7qN4UxpQVvu7SoP7H6/6iLKv2DXs9ZrVaBMx71o/nawJXCFLT.js", "ssg:https://framerusercontent.com/modules/eobtkAbmwTeaRoUttfdM/IVnXP0TuUCiPwg4pruru/oBkz2q2f5.js", "ssg:https://framerusercontent.com/modules/wDlsLCsgc7ashWZtWkmf/tMxBofrA5pqiCQoM5OTX/YWo9Uc8PZ.js", "ssg:https://framerusercontent.com/modules/zMpOq1VAPN7iCt7L7gaf/wqXx9tgTTPNjBbV5PHLK/NyZ59OgXS.js", "ssg:https://framerusercontent.com/modules/2SuDvnDTrSpAs2MLH2kK/vr2CfhFlZfPIZ5csSz8c/rd_Telec1.js", "ssg:https://framerusercontent.com/modules/3NRjEeBnU0wOXlPeuKpy/ImbNQbGbcDXcskZSOymg/ZobC2_5vE.js", "ssg:https://framerusercontent.com/modules/caEa8x50RcX1smSP2ZaU/05PrWxIyISM02TesLlP1/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", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx}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/wX6PLWtAR1Phgiwmjbne/KYMKFMT0CC9Ibdw5ajb0/P2CqzcWhb.js\";const cycleOrder=[\"QAJvkXJ1m\",\"jv9UqRcDA\"];const serializationHash=\"framer-3qQU7\";const variantClassNames={jv9UqRcDA:\"framer-v-15je4jp\",QAJvkXJ1m:\"framer-v-126vn55\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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={Active:\"jv9UqRcDA\",Inactive:\"QAJvkXJ1m\"};const getProps=({height,id,title,width,...props})=>{return{...props,kCh3xRGWK:title??props.kCh3xRGWK??\"NoCode\",variant:humanReadableVariantMap[props.variant]??props.variant??\"QAJvkXJ1m\"};};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,kCh3xRGWK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QAJvkXJ1m\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-126vn55\",className,classNames),\"data-framer-name\":\"Inactive\",layoutDependency:layoutDependency,layoutId:\"QAJvkXJ1m\",ref:refBinding,style:{...style},...addPropertyOverrides({jv9UqRcDA:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-ct12m9\",\"data-styles-preset\":\"P2CqzcWhb\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(161, 161, 161))\"},children:\"NoCode\"})}),className:\"framer-1ydr7hk\",\"data-framer-name\":\"We blend a strategic approach with studio-caliber creativity.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AZfdhz29K\",style:{\"--extracted-1of0zx5\":\"rgb(161, 161, 161)\"},text:kCh3xRGWK,variants:{jv9UqRcDA:{\"--extracted-1of0zx5\":\"var(--token-2e23fdd7-250e-4b3e-9ebe-8c2fc833f3b5, rgb(142, 132, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jv9UqRcDA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-ct12m9\",\"data-styles-preset\":\"P2CqzcWhb\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-2e23fdd7-250e-4b3e-9ebe-8c2fc833f3b5, rgb(142, 132, 255)))\"},children:\"NoCode\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3qQU7.framer-1s97ytp, .framer-3qQU7 .framer-1s97ytp { display: block; }\",\".framer-3qQU7.framer-126vn55 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3qQU7 .framer-1ydr7hk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3qQU7.framer-126vn55 { gap: 0px; } .framer-3qQU7.framer-126vn55 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3qQU7.framer-126vn55 > :first-child { margin-left: 0px; } .framer-3qQU7.framer-126vn55 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 67\n * @framerIntrinsicWidth 211\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"jv9UqRcDA\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"kCh3xRGWK\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernawJXCFLT=withCSS(Component,css,\"framer-3qQU7\");export default FramernawJXCFLT;FramernawJXCFLT.displayName=\"Services Scroll Animation\";FramernawJXCFLT.defaultProps={height:67,width:211};addPropertyControls(FramernawJXCFLT,{variant:{options:[\"QAJvkXJ1m\",\"jv9UqRcDA\"],optionTitles:[\"Inactive\",\"Active\"],title:\"Variant\",type:ControlType.Enum},kCh3xRGWK:{defaultValue:\"NoCode\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramernawJXCFLT,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernawJXCFLT\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"67\",\"framerVariables\":\"{\\\"kCh3xRGWK\\\":\\\"title\\\"}\",\"framerIntrinsicWidth\":\"211\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jv9UqRcDA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nawJXCFLT.map", "// Generated by Framer (c587182)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const enabledGestures={TOJwu49aV:{hover:true}};const serializationHash=\"framer-b1bi8\";const variantClassNames={TOJwu49aV:\"framer-v-sezcjg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,title,width,...props})=>{var _ref;return{...props,e7Q9QxIo_:(_ref=title!==null&&title!==void 0?title:props.e7Q9QxIo_)!==null&&_ref!==void 0?_ref:\"See More\",J_7NHWGmo:link!==null&&link!==void 0?link:props.J_7NHWGmo};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,e7Q9QxIo_,J_7NHWGmo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"TOJwu49aV\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:J_7NHWGmo,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-sezcjg\",className,classNames)} framer-hwk7au`,\"data-border\":true,\"data-framer-name\":\"default\",layoutDependency:layoutDependency,layoutId:\"TOJwu49aV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(254, 255, 254)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{\"TOJwu49aV-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({\"TOJwu49aV-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(254, 255, 254))\"},children:\"See More\"})}),className:\"framer-s7lbm3\",\"data-framer-name\":\"Button Text Large\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"kn4lFe_OF\",style:{\"--extracted-r6o4lv\":\"rgb(254, 255, 254)\"},text:e7Q9QxIo_,variants:{\"TOJwu49aV-hover\":{\"--extracted-r6o4lv\":\"var(--token-3864de58-9c2a-419c-b7af-a93f76ca6f06, rgb(11, 12, 14))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"TOJwu49aV-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3864de58-9c2a-419c-b7af-a93f76ca6f06, rgb(11, 12, 14)))\"},children:\"See More\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6w86jp-container\",layoutDependency:layoutDependency,layoutId:\"DvLrCTtOJ-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowForwardIos\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"DvLrCTtOJ\",layoutId:\"DvLrCTtOJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"TOJwu49aV-hover\":{color:\"var(--token-1e6aa030-b9a6-4d7d-9eed-12ec3ce25c6d, rgb(46, 50, 56))\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-b1bi8.framer-hwk7au, .framer-b1bi8 .framer-hwk7au { display: block; }\",\".framer-b1bi8.framer-sezcjg { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-b1bi8 .framer-s7lbm3 { flex: none; height: 20px; position: relative; white-space: pre; width: auto; }\",\".framer-b1bi8 .framer-6w86jp-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-b1bi8.framer-sezcjg { gap: 0px; } .framer-b1bi8.framer-sezcjg > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-b1bi8.framer-sezcjg > :first-child { margin-left: 0px; } .framer-b1bi8.framer-sezcjg > :last-child { margin-right: 0px; } }\",\".framer-b1bi8.framer-v-sezcjg.hover.framer-sezcjg { gap: 10px; }\",\".framer-b1bi8.framer-v-sezcjg.hover .framer-s7lbm3 { order: 0; }\",\".framer-b1bi8.framer-v-sezcjg.hover .framer-6w86jp-container { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-b1bi8.framer-v-sezcjg.hover.framer-sezcjg { gap: 0px; } .framer-b1bi8.framer-v-sezcjg.hover.framer-sezcjg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-b1bi8.framer-v-sezcjg.hover.framer-sezcjg > :first-child { margin-left: 0px; } .framer-b1bi8.framer-v-sezcjg.hover.framer-sezcjg > :last-child { margin-right: 0px; } }\",'.framer-b1bi8[data-border=\"true\"]::after, .framer-b1bi8 [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 44\n * @framerIntrinsicWidth 139\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"FuWczo157\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"e7Q9QxIo_\":\"title\",\"J_7NHWGmo\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroBkz2q2f5=withCSS(Component,css,\"framer-b1bi8\");export default FrameroBkz2q2f5;FrameroBkz2q2f5.displayName=\"Button Outline\";FrameroBkz2q2f5.defaultProps={height:44,width:139};addPropertyControls(FrameroBkz2q2f5,{e7Q9QxIo_:{defaultValue:\"See More\",displayTextArea:false,title:\"Title\",type:ControlType.String},J_7NHWGmo:{title:\"Link\",type:ControlType.Link}});addFonts(FrameroBkz2q2f5,[{explicitInter:true,fonts:[{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"}]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroBkz2q2f5\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"e7Q9QxIo_\\\":\\\"title\\\",\\\"J_7NHWGmo\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"44\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FuWczo157\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"139\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oBkz2q2f5.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"N3wtRtUSx\",\"LL2r1xIv6\",\"n5iMicGEs\",\"EK6RPmCRd\",\"GQekPuiTx\",\"USSVwG4OD\",\"qNhl2zNxM\",\"qql8DLIYR\",\"zC1S207td\"];const serializationHash=\"framer-hzOA0\";const variantClassNames={EK6RPmCRd:\"framer-v-1dfvsi3\",GQekPuiTx:\"framer-v-1ygkp4p\",LL2r1xIv6:\"framer-v-h2x5d9\",N3wtRtUSx:\"framer-v-10g1clz\",n5iMicGEs:\"framer-v-1ur64h8\",qNhl2zNxM:\"framer-v-l21z8i\",qql8DLIYR:\"framer-v-n5cjru\",USSVwG4OD:\"framer-v-12o5p6\",zC1S207td:\"framer-v-ipnoih\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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={celarbit:\"zC1S207td\",culture:\"EK6RPmCRd\",descript:\"USSVwG4OD\",framer:\"N3wtRtUSx\",gumroad:\"n5iMicGEs\",miro:\"qql8DLIYR\",monzo:\"qNhl2zNxM\",plaid:\"LL2r1xIv6\",splunk:\"GQekPuiTx\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"N3wtRtUSx\"};};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:\"N3wtRtUSx\",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-10g1clz\",className,classNames),\"data-framer-name\":\"framer\",layoutDependency:layoutDependency,layoutId:\"N3wtRtUSx\",ref:refBinding,style:{...style},...addPropertyOverrides({EK6RPmCRd:{\"data-framer-name\":\"culture\"},GQekPuiTx:{\"data-framer-name\":\"splunk\"},LL2r1xIv6:{\"data-framer-name\":\"plaid\"},n5iMicGEs:{\"data-framer-name\":\"gumroad\"},qNhl2zNxM:{\"data-framer-name\":\"monzo\"},qql8DLIYR:{\"data-framer-name\":\"miro\"},USSVwG4OD:{\"data-framer-name\":\"descript\"},zC1S207td:{\"data-framer-name\":\"celarbit\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rrcckl\",\"data-framer-name\":\"frame\",layoutDependency:layoutDependency,layoutId:\"hqfQ7Nq36\"})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hzOA0.framer-1yw7spd, .framer-hzOA0 .framer-1yw7spd { display: block; }\",\".framer-hzOA0.framer-10g1clz { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 5px 0px 5px 0px; position: relative; width: min-content; }\",\".framer-hzOA0 .framer-rrcckl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; min-width: 135px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hzOA0.framer-v-h2x5d9 .framer-rrcckl { min-width: 118px; }\",\".framer-hzOA0.framer-v-1ur64h8 .framer-rrcckl, .framer-hzOA0.framer-v-l21z8i .framer-rrcckl { min-width: 148px; }\",\".framer-hzOA0.framer-v-1dfvsi3 .framer-rrcckl { min-width: 201px; }\",\".framer-hzOA0.framer-v-1ygkp4p .framer-rrcckl { min-width: 108px; }\",\".framer-hzOA0.framer-v-12o5p6 .framer-rrcckl { min-width: 145px; }\",\".framer-hzOA0.framer-v-n5cjru .framer-rrcckl { min-width: 96px; }\",\".framer-hzOA0.framer-v-ipnoih .framer-rrcckl { min-width: 150px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 58\n * @framerIntrinsicWidth 135\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"LL2r1xIv6\":{\"layout\":[\"auto\",\"auto\"]},\"n5iMicGEs\":{\"layout\":[\"auto\",\"auto\"]},\"EK6RPmCRd\":{\"layout\":[\"auto\",\"auto\"]},\"GQekPuiTx\":{\"layout\":[\"auto\",\"auto\"]},\"USSVwG4OD\":{\"layout\":[\"auto\",\"auto\"]},\"qNhl2zNxM\":{\"layout\":[\"auto\",\"auto\"]},\"qql8DLIYR\":{\"layout\":[\"auto\",\"auto\"]},\"zC1S207td\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerYWo9Uc8PZ=withCSS(Component,css,\"framer-hzOA0\");export default FramerYWo9Uc8PZ;FramerYWo9Uc8PZ.displayName=\"Case Study Logo\";FramerYWo9Uc8PZ.defaultProps={height:58,width:135};addPropertyControls(FramerYWo9Uc8PZ,{variant:{options:[\"N3wtRtUSx\",\"LL2r1xIv6\",\"n5iMicGEs\",\"EK6RPmCRd\",\"GQekPuiTx\",\"USSVwG4OD\",\"qNhl2zNxM\",\"qql8DLIYR\",\"zC1S207td\"],optionTitles:[\"framer\",\"plaid\",\"gumroad\",\"culture\",\"splunk\",\"descript\",\"monzo\",\"miro\",\"celarbit\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerYWo9Uc8PZ,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYWo9Uc8PZ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"135\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LL2r1xIv6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"n5iMicGEs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EK6RPmCRd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GQekPuiTx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"USSVwG4OD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qNhl2zNxM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qql8DLIYR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zC1S207td\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"58\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YWo9Uc8PZ.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/9M0uFwjpgXadqVZWubCf/SLcE321zrmRwy1DZRiZO/XaExpWSGI.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/A1wI93YaW0nI0ajwG5da/9yQfDRn1ktHnnle5oWDB/y0PDKT17k.js\";import ButtonOutline from\"https://framerusercontent.com/modules/eobtkAbmwTeaRoUttfdM/IVnXP0TuUCiPwg4pruru/oBkz2q2f5.js\";import CaseStudyLogo from\"https://framerusercontent.com/modules/wDlsLCsgc7ashWZtWkmf/tMxBofrA5pqiCQoM5OTX/YWo9Uc8PZ.js\";const CaseStudyLogoFonts=getFonts(CaseStudyLogo);const ButtonOutlineFonts=getFonts(ButtonOutline);const CaseStudyLogoControls=getPropertyControls(CaseStudyLogo);const cycleOrder=[\"MMKDzSd2V\",\"ljAqJrB6p\",\"ZOKxY9qPW\",\"ElRJoD_lE\"];const serializationHash=\"framer-h7cc5\";const variantClassNames={ElRJoD_lE:\"framer-v-ol4nov\",ljAqJrB6p:\"framer-v-1f001xa\",MMKDzSd2V:\"framer-v-1eib2dj\",ZOKxY9qPW:\"framer-v-1016l6k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={celarbit:\"zC1S207td\",culture:\"EK6RPmCRd\",descript:\"USSVwG4OD\",framer:\"N3wtRtUSx\",gumroad:\"n5iMicGEs\",miro:\"qql8DLIYR\",monzo:\"qNhl2zNxM\",plaid:\"LL2r1xIv6\",splunk:\"GQekPuiTx\"};const humanReadableVariantMap={\"closed-mobile\":\"ElRJoD_lE\",\"opened-mobile\":\"ZOKxY9qPW\",closed:\"ljAqJrB6p\",opened:\"MMKDzSd2V\"};const getProps=({category,height,id,imageBg,link,logo,tap,title,width,...props})=>{return{...props,DImposwh6:humanReadableEnumMap[logo]??logo??props.DImposwh6??\"N3wtRtUSx\",gKViWC83g:category??props.gKViWC83g??\"CRYPTO\",jpEWoGfmm:link??props.jpEWoGfmm,N8gCO_Sg9:imageBg??props.N8gCO_Sg9,ug4pzbQjD:tap??props.ug4pzbQjD,variant:humanReadableVariantMap[props.variant]??props.variant??\"MMKDzSd2V\",WmZa67Jxj:title??props.WmZa67Jxj??\"Shift Markets \u2014 Become Crypto Capable\"};};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,WmZa67Jxj,gKViWC83g,ug4pzbQjD,N8gCO_Sg9,jpEWoGfmm,DImposwh6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MMKDzSd2V\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1omjgai=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(ug4pzbQjD){const res=await ug4pzbQjD(...args);if(res===false)return false;}});const onMouseLeavek24cyq=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"ljAqJrB6p\");});const onMouseEnteregim8c=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"MMKDzSd2V\");});const onMouseLeaverday9z=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});await delay(()=>setVariant(\"ljAqJrB6p\"),100);});const onTap1eg6paw=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(ug4pzbQjD){const res=await ug4pzbQjD(...args);if(res===false)return false;}setVariant(\"ElRJoD_lE\");});const onTap1vl5f7c=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(ug4pzbQjD){const res=await ug4pzbQjD(...args);if(res===false)return false;}setVariant(\"ZOKxY9qPW\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"ElRJoD_lE\")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(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\"},className:cx(scopingClassNames,\"framer-1eib2dj\",className,classNames),\"data-framer-name\":\"opened\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MMKDzSd2V\",onMouseLeave:onMouseLeavek24cyq,onTap:onTap1omjgai,ref:refBinding,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({ElRJoD_lE:{\"data-framer-name\":\"closed-mobile\",onMouseLeave:undefined,onTap:onTap1vl5f7c},ljAqJrB6p:{\"data-framer-name\":\"closed\",background:{alt:\"\",fit:\"fill\",positionX:\"center\",positionY:\"center\"},onMouseEnter:onMouseEnteregim8c,onMouseLeave:onMouseLeaverday9z,onTap:undefined},ZOKxY9qPW:{\"data-framer-name\":\"opened-mobile\",onMouseLeave:undefined,onTap:onTap1eg6paw}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h7200i\",layoutDependency:layoutDependency,layoutId:\"bjRFoFLQS\",style:{backgroundColor:\"rgba(46, 50, 56, 0.4)\",opacity:1},variants:{ljAqJrB6p:{opacity:0},ZOKxY9qPW:{opacity:1}}})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||300)*.5000000000000002-165)),sizes:\"580px\",...toResponsiveImage(N8gCO_Sg9)},className:\"framer-10e22sr\",layoutDependency:layoutDependency,layoutId:\"hCYRViXf9\",...addPropertyOverrides({ZOKxY9qPW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||345)*.5000000000000002-165)),sizes:\"580px\",...toResponsiveImage(N8gCO_Sg9)}}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gh0dvv\",\"data-framer-name\":\"top\",layoutDependency:layoutDependency,layoutId:\"K7OMBmsoj\",style:{opacity:1},variants:{ljAqJrB6p:{opacity:0},ZOKxY9qPW:{opacity:1}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gq5a1d\",\"data-framer-name\":\"category+logo\",layoutDependency:layoutDependency,layoutId:\"NvY7Of8d6\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eoyitq\",\"data-border\":true,\"data-framer-name\":\"category\",layoutDependency:layoutDependency,layoutId:\"zflTHRB4h\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(254, 255, 254)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-tqj1rd\",\"data-styles-preset\":\"y0PDKT17k\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254)))\"},children:\"CRYPTO\"})}),className:\"framer-nqb5kz\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rfbdjo5aq\",style:{\"--extracted-r6o4lv\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},text:gKViWC83g,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bc2ve8\",\"data-framer-name\":\"text\",layoutDependency:layoutDependency,layoutId:\"Zw0Ba6IKR\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-exe562\",\"data-styles-preset\":\"XaExpWSGI\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254)))\"},children:\"Shift Markets \u2014 Become Crypto Capable\"})}),className:\"framer-shkdqt\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ySwv3o220\",style:{\"--extracted-1lwpl3i\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},text:WmZa67Jxj,verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t2zgw8\",\"data-framer-name\":\"down\",layoutDependency:layoutDependency,layoutId:\"nfwf7rsvS\",style:{opacity:1},variants:{ljAqJrB6p:{opacity:0},ZOKxY9qPW:{opacity:1}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dnd77e\",layoutDependency:layoutDependency,layoutId:\"jFl85rR8f\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j97kdo-container\",layoutDependency:layoutDependency,layoutId:\"MEX_FwRmb-container\",nodeId:\"MEX_FwRmb\",rendersWithMotion:true,scopeId:\"NyZ59OgXS\",children:/*#__PURE__*/_jsx(CaseStudyLogo,{height:\"100%\",id:\"MEX_FwRmb\",layoutId:\"MEX_FwRmb\",variant:DImposwh6,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+30+(0+86.2+((componentViewport?.height||300)-60-144.2)/1*1)+7,...addPropertyOverrides({ZOKxY9qPW:{y:(componentViewport?.y||0)+30+(0+86.2+((componentViewport?.height||345)-60-220.2)/1*1)+0+90}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1u30e9e-container\",layoutDependency:layoutDependency,layoutId:\"SjwcGQEEI-container\",nodeId:\"SjwcGQEEI\",rendersWithMotion:true,scopeId:\"NyZ59OgXS\",children:/*#__PURE__*/_jsx(ButtonOutline,{e7Q9QxIo_:\"See More\",height:\"100%\",id:\"SjwcGQEEI\",J_7NHWGmo:jpEWoGfmm,layoutId:\"SjwcGQEEI\",width:\"100%\"})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-h7cc5.framer-13j2lbt, .framer-h7cc5 .framer-13j2lbt { display: block; }\",\".framer-h7cc5.framer-1eib2dj { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; height: 300px; justify-content: space-between; overflow: hidden; padding: 30px; position: relative; width: 540px; will-change: var(--framer-will-change-override, transform); }\",\".framer-h7cc5 .framer-h7200i { flex: none; height: 100%; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 100%; z-index: 0; }\",\".framer-h7cc5 .framer-10e22sr { flex: none; height: 330px; left: calc(50.00000000000002% - 580px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 330px / 2); width: 580px; z-index: 0; }\",\".framer-h7cc5 .framer-1gh0dvv { 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%; z-index: 1; }\",\".framer-h7cc5 .framer-1gq5a1d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-h7cc5 .framer-eoyitq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: min-content; }\",\".framer-h7cc5 .framer-nqb5kz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-h7cc5 .framer-1bc2ve8 { 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-end; overflow: visible; padding: 0px; position: relative; width: 324px; }\",\".framer-h7cc5 .framer-shkdqt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-h7cc5 .framer-1t2zgw8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-h7cc5 .framer-dnd77e { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-h7cc5 .framer-j97kdo-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-h7cc5 .framer-1u30e9e-container { flex: none; height: auto; position: relative; width: auto; z-index: 10; }\",\".framer-h7cc5.framer-v-1f001xa.framer-1eib2dj { cursor: unset; width: 184px; }\",\".framer-h7cc5.framer-v-1016l6k.framer-1eib2dj { height: 345px; padding: 30px 20px 30px 20px; width: 330px; }\",\".framer-h7cc5.framer-v-1016l6k .framer-1gq5a1d { gap: unset; justify-content: space-between; }\",\".framer-h7cc5.framer-v-1016l6k .framer-eoyitq { order: 0; }\",\".framer-h7cc5.framer-v-1016l6k .framer-1bc2ve8 { width: 100%; }\",\".framer-h7cc5.framer-v-1016l6k .framer-1t2zgw8 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; justify-content: flex-start; }\",\".framer-h7cc5.framer-v-1016l6k .framer-dnd77e { flex: none; width: 100%; }\",\".framer-h7cc5.framer-v-ol4nov.framer-1eib2dj { padding: 30px 20px 30px 20px; width: 184px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-h7cc5[data-border=\"true\"]::after, .framer-h7cc5 [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 300\n * @framerIntrinsicWidth 540\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ljAqJrB6p\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZOKxY9qPW\":{\"layout\":[\"fixed\",\"fixed\"]},\"ElRJoD_lE\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"WmZa67Jxj\":\"title\",\"gKViWC83g\":\"category\",\"ug4pzbQjD\":\"tap\",\"N8gCO_Sg9\":\"imageBg\",\"jpEWoGfmm\":\"link\",\"DImposwh6\":\"logo\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerNyZ59OgXS=withCSS(Component,css,\"framer-h7cc5\");export default FramerNyZ59OgXS;FramerNyZ59OgXS.displayName=\"Case Study Hero\";FramerNyZ59OgXS.defaultProps={height:300,width:540};addPropertyControls(FramerNyZ59OgXS,{variant:{options:[\"MMKDzSd2V\",\"ljAqJrB6p\",\"ZOKxY9qPW\",\"ElRJoD_lE\"],optionTitles:[\"opened\",\"closed\",\"opened-mobile\",\"closed-mobile\"],title:\"Variant\",type:ControlType.Enum},WmZa67Jxj:{defaultValue:\"Shift Markets \u2014 Become Crypto Capable\",displayTextArea:false,title:\"Title\",type:ControlType.String},gKViWC83g:{defaultValue:\"CRYPTO\",displayTextArea:false,title:\"Category\",type:ControlType.String},ug4pzbQjD:{title:\"Tap\",type:ControlType.EventHandler},N8gCO_Sg9:{title:\"Image-bg\",type:ControlType.ResponsiveImage},jpEWoGfmm:{title:\"Link\",type:ControlType.Link},DImposwh6:CaseStudyLogoControls?.[\"variant\"]&&{...CaseStudyLogoControls[\"variant\"],defaultValue:\"N3wtRtUSx\",description:undefined,hidden:undefined,title:\"Logo\"}});addFonts(FramerNyZ59OgXS,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...CaseStudyLogoFonts,...ButtonOutlineFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNyZ59OgXS\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ljAqJrB6p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZOKxY9qPW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ElRJoD_lE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"300\",\"framerVariables\":\"{\\\"WmZa67Jxj\\\":\\\"title\\\",\\\"gKViWC83g\\\":\\\"category\\\",\\\"ug4pzbQjD\\\":\\\"tap\\\",\\\"N8gCO_Sg9\\\":\\\"imageBg\\\",\\\"jpEWoGfmm\\\":\\\"link\\\",\\\"DImposwh6\\\":\\\"logo\\\"}\",\"framerIntrinsicWidth\":\"540\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lJiBfW8lvcL42lBeEi2F/QL2rEgvbtYhgCj0O7uMA/Hg20czbCq.js\";const MaterialFonts=getFonts(Material);const enabledGestures={e5U7kWPb4:{hover:true}};const cycleOrder=[\"e5U7kWPb4\"];const serializationHash=\"framer-4h3Ru\";const variantClassNames={e5U7kWPb4:\"framer-v-c77t6e\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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(React.Fragment);const getProps=({height,icon,id,link,title,width,...props})=>{return{...props,R0KHc5S63:title??props.R0KHc5S63??\"See Project\",TGP1vXX1t:icon??props.TGP1vXX1t??true,WNK4HAV8n:link??props.WNK4HAV8n};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,R0KHc5S63,WNK4HAV8n,TGP1vXX1t,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"e5U7kWPb4\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:WNK4HAV8n,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-c77t6e\",className,classNames)} framer-1sboeka`,\"data-framer-name\":\"default\",layoutDependency:layoutDependency,layoutId:\"e5U7kWPb4\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref??ref1,style:{backgroundColor:\"var(--token-5cf2e08a-4f1b-408b-9dc3-5a148dd20ab9, rgb(77, 64, 239))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"inset 0px 0.3010936508871964px 1.505468254435982px -0.8333333333333333px rgba(255, 255, 255, 0.2), inset 0px 1.1442666516217286px 5.7213332581086425px -1.6666666666666665px rgba(255, 255, 255, 0.2), inset 0px 5px 25px -2.5px rgba(255, 255, 255, 0.2), inset 0px -0.48174984141951427px 0.67444977798732px -1px rgba(0, 0, 0, 0.14699), inset 0px -1.8308266425947657px 2.563157299632672px -2px rgba(0, 0, 0, 0.13856), inset 0px -8px 11.2px -3px rgba(0, 0, 0, 0.1)\",...style},variants:{\"e5U7kWPb4-hover\":{backgroundColor:\"var(--token-08633ce2-794d-47e8-9f1d-c93f863e9c58, rgb(62, 54, 166))\",boxShadow:\"none\"}},...addPropertyOverrides({\"e5U7kWPb4-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9v250i\",\"data-styles-preset\":\"Hg20czbCq\",children:\"Schedule consultation\"})}),className:\"framer-1w42b26\",\"data-framer-name\":\"Button Text Large\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HjLc5KLWC\",text:R0KHc5S63,verticalAlignment:\"top\",withExternalLayout:true}),TGP1vXX1t&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-idxfj1-container\",layoutDependency:layoutDependency,layoutId:\"t0r3Rfa17-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowForwardIos\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"t0r3Rfa17\",layoutId:\"t0r3Rfa17\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4h3Ru.framer-1sboeka, .framer-4h3Ru .framer-1sboeka { display: block; }\",\".framer-4h3Ru.framer-c77t6e { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 16px 32px 16px 32px; position: relative; text-decoration: none; width: min-content; }\",\".framer-4h3Ru .framer-1w42b26 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-4h3Ru .framer-idxfj1-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4h3Ru.framer-c77t6e { gap: 0px; } .framer-4h3Ru.framer-c77t6e > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-4h3Ru.framer-c77t6e > :first-child { margin-left: 0px; } .framer-4h3Ru.framer-c77t6e > :last-child { margin-right: 0px; } }\",\".framer-4h3Ru.framer-v-c77t6e.hover.framer-c77t6e { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4h3Ru.framer-v-c77t6e.hover.framer-c77t6e { gap: 0px; } .framer-4h3Ru.framer-v-c77t6e.hover.framer-c77t6e > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-4h3Ru.framer-v-c77t6e.hover.framer-c77t6e > :first-child { margin-left: 0px; } .framer-4h3Ru.framer-v-c77t6e.hover.framer-c77t6e > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 54\n * @framerIntrinsicWidth 186\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"W1U74ryd7\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"R0KHc5S63\":\"title\",\"WNK4HAV8n\":\"link\",\"TGP1vXX1t\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerrd_Telec1=withCSS(Component,css,\"framer-4h3Ru\");export default Framerrd_Telec1;Framerrd_Telec1.displayName=\"Button - See Project\";Framerrd_Telec1.defaultProps={height:54,width:186};addPropertyControls(Framerrd_Telec1,{R0KHc5S63:{defaultValue:\"See Project\",displayTextArea:false,title:\"Title\",type:ControlType.String},WNK4HAV8n:{title:\"Link\",type:ControlType.Link},TGP1vXX1t:{defaultValue:true,title:\"Icon\",type:ControlType.Boolean}});addFonts(Framerrd_Telec1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...MaterialFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerrd_Telec1\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"186\",\"framerIntrinsicHeight\":\"54\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"W1U74ryd7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"R0KHc5S63\\\":\\\"title\\\",\\\"WNK4HAV8n\\\":\\\"link\\\",\\\"TGP1vXX1t\\\":\\\"icon\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lJiBfW8lvcL42lBeEi2F/QL2rEgvbtYhgCj0O7uMA/Hg20czbCq.js\";const MaterialFonts=getFonts(Material);const enabledGestures={BUXJ4umMN:{hover:true},E9pvABALt:{hover:true},i276LZJox:{hover:true}};const cycleOrder=[\"BUXJ4umMN\",\"i276LZJox\",\"E9pvABALt\"];const serializationHash=\"framer-gvLXg\";const variantClassNames={BUXJ4umMN:\"framer-v-41ix11\",E9pvABALt:\"framer-v-1mta01a\",i276LZJox:\"framer-v-18xxo9r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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(React.Fragment);const humanReadableVariantMap={default:\"BUXJ4umMN\",huge:\"E9pvABALt\",small:\"i276LZJox\"};const getProps=({height,icon,id,link,title,width,...props})=>{return{...props,R0KHc5S63:title??props.R0KHc5S63??\"Schedule consultation\",TGP1vXX1t:icon??props.TGP1vXX1t??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"BUXJ4umMN\",WNK4HAV8n:link??props.WNK4HAV8n};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,R0KHc5S63,WNK4HAV8n,TGP1vXX1t,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BUXJ4umMN\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:WNK4HAV8n,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-41ix11\",className,classNames)} framer-co5e52`,\"data-framer-name\":\"default\",layoutDependency:layoutDependency,layoutId:\"BUXJ4umMN\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref??ref1,style:{backgroundColor:\"var(--token-5cf2e08a-4f1b-408b-9dc3-5a148dd20ab9, rgb(77, 64, 239))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"inset 0px 0.3010936508871964px 1.505468254435982px -0.8333333333333333px rgba(255, 255, 255, 0.2), inset 0px 1.1442666516217286px 5.7213332581086425px -1.6666666666666665px rgba(255, 255, 255, 0.2), inset 0px 5px 25px -2.5px rgba(255, 255, 255, 0.2), inset 0px -0.48174984141951427px 0.67444977798732px -1px rgba(0, 0, 0, 0.14699), inset 0px -1.8308266425947657px 2.563157299632672px -2px rgba(0, 0, 0, 0.13856), inset 0px -8px 11.2px -3px rgba(0, 0, 0, 0.1)\",...style},variants:{\"BUXJ4umMN-hover\":{backgroundColor:\"var(--token-08633ce2-794d-47e8-9f1d-c93f863e9c58, rgb(62, 54, 166))\",boxShadow:\"none\"},\"E9pvABALt-hover\":{backgroundColor:\"var(--token-08633ce2-794d-47e8-9f1d-c93f863e9c58, rgb(62, 54, 166))\"},\"i276LZJox-hover\":{backgroundColor:\"var(--token-08633ce2-794d-47e8-9f1d-c93f863e9c58, rgb(62, 54, 166))\",boxShadow:\"none\"},E9pvABALt:{borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999}},...addPropertyOverrides({\"BUXJ4umMN-hover\":{\"data-framer-name\":undefined},\"E9pvABALt-hover\":{\"data-framer-name\":undefined},\"i276LZJox-hover\":{\"data-framer-name\":undefined},E9pvABALt:{\"data-framer-name\":\"huge\"},i276LZJox:{\"data-framer-name\":\"small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9v250i\",\"data-styles-preset\":\"Hg20czbCq\",children:\"Schedule consultation\"})}),className:\"framer-161l052\",\"data-framer-name\":\"Button Text Large\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I217:6774;217:6769\",text:R0KHc5S63,variants:{E9pvABALt:{\"--extracted-r6o4lv\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({E9pvABALt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Schedule consultation\"})}),fonts:[\"GF;Instrument Sans-500\"]}},baseVariant,gestureVariant)}),TGP1vXX1t&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-t0zeia-container\",layoutDependency:layoutDependency,layoutId:\"DAHwWCYhH-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowForwardIos\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"DAHwWCYhH\",layoutId:\"DAHwWCYhH\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gvLXg.framer-co5e52, .framer-gvLXg .framer-co5e52 { display: block; }\",\".framer-gvLXg.framer-41ix11 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 20px 32px 20px 32px; position: relative; text-decoration: none; width: min-content; }\",\".framer-gvLXg .framer-161l052 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gvLXg .framer-t0zeia-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gvLXg.framer-41ix11 { gap: 0px; } .framer-gvLXg.framer-41ix11 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-gvLXg.framer-41ix11 > :first-child { margin-left: 0px; } .framer-gvLXg.framer-41ix11 > :last-child { margin-right: 0px; } }\",\".framer-gvLXg.framer-v-18xxo9r.framer-41ix11 { padding: 16px 32px 16px 32px; }\",\".framer-gvLXg.framer-v-1mta01a.framer-41ix11 { gap: 16px; height: 100px; padding: 0px 64px 0px 64px; }\",\".framer-gvLXg.framer-v-1mta01a .framer-t0zeia-container { height: 24px; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gvLXg.framer-v-1mta01a.framer-41ix11 { gap: 0px; } .framer-gvLXg.framer-v-1mta01a.framer-41ix11 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-gvLXg.framer-v-1mta01a.framer-41ix11 > :first-child { margin-left: 0px; } .framer-gvLXg.framer-v-1mta01a.framer-41ix11 > :last-child { margin-right: 0px; } }\",\".framer-gvLXg.framer-v-41ix11.hover.framer-41ix11, .framer-gvLXg.framer-v-18xxo9r.hover.framer-41ix11 { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gvLXg.framer-v-41ix11.hover.framer-41ix11 { gap: 0px; } .framer-gvLXg.framer-v-41ix11.hover.framer-41ix11 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-gvLXg.framer-v-41ix11.hover.framer-41ix11 > :first-child { margin-left: 0px; } .framer-gvLXg.framer-v-41ix11.hover.framer-41ix11 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gvLXg.framer-v-18xxo9r.hover.framer-41ix11 { gap: 0px; } .framer-gvLXg.framer-v-18xxo9r.hover.framer-41ix11 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-gvLXg.framer-v-18xxo9r.hover.framer-41ix11 > :first-child { margin-left: 0px; } .framer-gvLXg.framer-v-18xxo9r.hover.framer-41ix11 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 62\n * @framerIntrinsicWidth 279\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"i276LZJox\":{\"layout\":[\"auto\",\"auto\"]},\"E9pvABALt\":{\"layout\":[\"auto\",\"fixed\"]},\"Gt_F9wHZK\":{\"layout\":[\"auto\",\"auto\"]},\"fY2piRwvX\":{\"layout\":[\"auto\",\"auto\"]},\"ZJ5ob9DJj\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"R0KHc5S63\":\"title\",\"WNK4HAV8n\":\"link\",\"TGP1vXX1t\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZobC2_5vE=withCSS(Component,css,\"framer-gvLXg\");export default FramerZobC2_5vE;FramerZobC2_5vE.displayName=\"Button\";FramerZobC2_5vE.defaultProps={height:62,width:279};addPropertyControls(FramerZobC2_5vE,{variant:{options:[\"BUXJ4umMN\",\"i276LZJox\",\"E9pvABALt\"],optionTitles:[\"default\",\"small\",\"huge\"],title:\"Variant\",type:ControlType.Enum},R0KHc5S63:{defaultValue:\"Schedule consultation\",displayTextArea:false,title:\"Title\",type:ControlType.String},WNK4HAV8n:{title:\"Link\",type:ControlType.Link},TGP1vXX1t:{defaultValue:true,title:\"Icon\",type:ControlType.Boolean}});addFonts(FramerZobC2_5vE,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-QfwmS0v3_7Y.woff2\",weight:\"500\"}]},...MaterialFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZobC2_5vE\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"62\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"i276LZJox\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"E9pvABALt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Gt_F9wHZK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fY2piRwvX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZJ5ob9DJj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"279\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"R0KHc5S63\\\":\\\"title\\\",\\\"WNK4HAV8n\\\":\\\"link\\\",\\\"TGP1vXX1t\\\":\\\"icon\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2f96024)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import Testimonial from\"#framer/local/canvasComponent/AE4M3VgMI/AE4M3VgMI.js\";import ServicesScrollAnimation from\"#framer/local/canvasComponent/nawJXCFLT/nawJXCFLT.js\";import PrimaryCTA from\"#framer/local/canvasComponent/Nvt7CrHCq/Nvt7CrHCq.js\";import CaseStudyCard from\"#framer/local/canvasComponent/NxjXTvbkj/NxjXTvbkj.js\";import CaseStudyHero from\"#framer/local/canvasComponent/NyZ59OgXS/NyZ59OgXS.js\";import ButtonSeeProject from\"#framer/local/canvasComponent/rd_Telec1/rd_Telec1.js\";import SectionFooter from\"#framer/local/canvasComponent/Vwo_Ma58Z/Vwo_Ma58Z.js\";import Navbar from\"#framer/local/canvasComponent/YVlg7kpib/YVlg7kpib.js\";import Button from\"#framer/local/canvasComponent/ZobC2_5vE/ZobC2_5vE.js\";import Projects,{enumToDisplayNameFunctions}from\"#framer/local/collection/AJnD61nr6/AJnD61nr6.js\";import*as sharedStyle1 from\"#framer/local/css/CaLJ2s_oj/CaLJ2s_oj.js\";import*as sharedStyle from\"#framer/local/css/iaLeXzIFn/iaLeXzIFn.js\";import*as sharedStyle3 from\"#framer/local/css/Kl87dOv4A/Kl87dOv4A.js\";import*as sharedStyle6 from\"#framer/local/css/P2CqzcWhb/P2CqzcWhb.js\";import*as sharedStyle5 from\"#framer/local/css/pijwjBtqA/pijwjBtqA.js\";import*as sharedStyle2 from\"#framer/local/css/W9pJwpmaQ/W9pJwpmaQ.js\";import*as sharedStyle4 from\"#framer/local/css/wAMp8FIQR/wAMp8FIQR.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const MotionDivWithFX=withFX(motion.div);const PrimaryCTAFonts=getFonts(PrimaryCTA);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const CaseStudyHeroFonts=getFonts(CaseStudyHero);const TickerFonts=getFonts(Ticker);const ContainerWithFX=withFX(Container);const ServicesScrollAnimationFonts=getFonts(ServicesScrollAnimation);const ServicesScrollAnimationWithVariantAppearEffect=withVariantAppearEffect(ServicesScrollAnimation);const ImageWithFX=withFX(Image);const CaseStudyCardFonts=getFonts(CaseStudyCard);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ButtonFonts=getFonts(Button);const TestimonialFonts=getFonts(Testimonial);const SectionFooterFonts=getFonts(SectionFooter);const ButtonSeeProjectFonts=getFonts(ButtonSeeProject);const breakpoints={D3JxvGUhN:\"(min-width: 1920px)\",M1RXdqpUt:\"(min-width: 810px) and (max-width: 1279px)\",Req0o9njW:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1280px) and (max-width: 1919px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-89mVM\";const variantClassNames={D3JxvGUhN:\"framer-v-1gyl5n4\",M1RXdqpUt:\"framer-v-csppip\",Req0o9njW:\"framer-v-1j4pctm\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-50};const transition1={damping:60,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:-50};const transition2={damping:60,delay:.3,mass:1,stiffness:500,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:-50};const transition3={damping:60,delay:.4,mass:1,stiffness:500,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:-50};const transition4={bounce:0,delay:.6,duration:1,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition5={damping:40,delay:.6,mass:1,stiffness:200,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition6={damping:30,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:50};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:25};const transition7={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:25};const animation12={opacity:.5,rotate:2,rotateX:0,rotateY:4,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition8={damping:60,delay:.1,mass:3,stiffness:400,type:\"spring\"};const animation13={opacity:.5,rotate:2,rotateX:0,rotateY:4,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:100};const animation14={opacity:0,rotate:2,rotateX:0,rotateY:4,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition9={damping:50,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation15={opacity:0,rotate:2,rotateX:0,rotateY:4,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:100};const transition10={damping:30,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:50};const transition11={damping:30,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:0};const animation18={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation19={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const transition12={damping:30,delay:.5,mass:1,stiffness:400,type:\"spring\"};const animation20={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:0};const animation21={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Full:\"D3JxvGUhN\",Phone:\"Req0o9njW\",Tablet:\"M1RXdqpUt\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const transition13={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const cursor={component:ButtonSeeProject,transition:transition13,variant:\"i276LZJox\"};const cursor1={component:ButtonSeeProject,transition:transition13,variant:\"e5U7kWPb4\"};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,hbL_Cf5VaJxILy1e1V,UAJGIWsM4JxILy1e1V,IdLDCVSHSJxILy1e1V,idJxILy1e1V,hbL_Cf5VaEuLni1WGl,UAJGIWsM4EuLni1WGl,IdLDCVSHSEuLni1WGl,idEuLni1WGl,hbL_Cf5VaoJV6Mlfvh,UAJGIWsM4oJV6Mlfvh,IdLDCVSHSoJV6Mlfvh,idoJV6Mlfvh,hbL_Cf5VaeOgoHkKwC,UAJGIWsM4eOgoHkKwC,IdLDCVSHSeOgoHkKwC,ideOgoHkKwC,hbL_Cf5VayPpaROCuq,UAJGIWsM4yPpaROCuq,IdLDCVSHSyPpaROCuq,idyPpaROCuq,hbL_Cf5VaJqqmqgulP,UAJGIWsM4JqqmqgulP,IdLDCVSHSJqqmqgulP,idJqqmqgulP,hbL_Cf5VaJSeO3pOrU,UAJGIWsM4JSeO3pOrU,IdLDCVSHSJSeO3pOrU,idJSeO3pOrU,hbL_Cf5VaFXcmFyx5P,UAJGIWsM4FXcmFyx5P,IdLDCVSHSFXcmFyx5P,idFXcmFyx5P,hbL_Cf5VasfKHt4pwD,UAJGIWsM4sfKHt4pwD,IdLDCVSHSsfKHt4pwD,idsfKHt4pwD,hbL_Cf5VaxQOlfrOb9,UAJGIWsM4xQOlfrOb9,IdLDCVSHSxQOlfrOb9,idxQOlfrOb9,JAos2VVaawxqWgP7ZW,UAJGIWsM4wxqWgP7ZW,hbL_Cf5VawxqWgP7ZW,QWf4CTQamwxqWgP7ZW,Jk4_v3X35wxqWgP7ZW,Io8_TJm7IwxqWgP7ZW,wO4N2oDaRwxqWgP7ZW,zzdbSkpFBwxqWgP7ZW,IdLDCVSHSwxqWgP7ZW,idwxqWgP7ZW,JAos2VVaaSAScVFvRf,UAJGIWsM4SAScVFvRf,hbL_Cf5VaSAScVFvRf,QWf4CTQamSAScVFvRf,Jk4_v3X35SAScVFvRf,Io8_TJm7ISAScVFvRf,wO4N2oDaRSAScVFvRf,zzdbSkpFBSAScVFvRf,IdLDCVSHSSAScVFvRf,idSAScVFvRf,JAos2VVaaafBoAKSwv,UAJGIWsM4afBoAKSwv,hbL_Cf5VaafBoAKSwv,QWf4CTQamafBoAKSwv,Jk4_v3X35afBoAKSwv,Io8_TJm7IafBoAKSwv,wO4N2oDaRafBoAKSwv,zzdbSkpFBafBoAKSwv,IdLDCVSHSafBoAKSwv,idafBoAKSwv,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"WEM34FbJ0\");const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Req0o9njW\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Req0o9njW\")return false;return true;};const elementId1=useRouteElementId(\"hg6M3lLKH\");const ref2=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"M1RXdqpUt\",\"Req0o9njW\"].includes(baseVariant))return false;return true;};const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const elementId2=useRouteElementId(\"g1xn4RwIX\");const ref7=React.useRef(null);const elementId3=useRouteElementId(\"DW5qkDhtJ\");const elementId4=useRouteElementId(\"khEnb5Sxq\");const elementId5=useRouteElementId(\"FbNKkQFFK\");const elementId6=useRouteElementId(\"M9ysZ9dDz\");const elementId7=useRouteElementId(\"LnPuSG6vw\");const ref8=React.useRef(null);const ref9=React.useRef(null);const ref10=React.useRef(null);const elementId8=useRouteElementId(\"wxqWgP7ZW\");const ref11=React.useRef(null);const elementId9=useRouteElementId(\"SAScVFvRf\");const elementId10=useRouteElementId(\"afBoAKSwv\");const elementId11=useRouteElementId(\"mj7JsnLhO\");const ref12=React.useRef(null);useCustomCursors({\"18l8fz8\":cursor,mz9fbx:cursor1});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-1crzo47\",\"data-framer-name\":\"hero-section\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xbevfb\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yn8d5q-container\",nodeId:\"IevqyAgzb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D3JxvGUhN:{oR4d5hZXf:resolvedLinks[3]},M1RXdqpUt:{oR4d5hZXf:resolvedLinks[1]},Req0o9njW:{oR4d5hZXf:resolvedLinks[2],variant:\"smZDatMRc\"}},children:/*#__PURE__*/_jsx(Navbar,{daL2KYDfn:\"rgb(36, 41, 48)\",height:\"100%\",id:\"IevqyAgzb\",layoutId:\"IevqyAgzb\",oR4d5hZXf:resolvedLinks[0],style:{width:\"100%\"},variant:\"QI0M3grD1\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wb54bd\",\"data-framer-name\":\"Hero-content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16y955e\",\"data-framer-name\":\"content-txt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5vfd6x\",\"data-framer-name\":\"Top-txt\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ce53bt\",\"data-framer-name\":\"above-txt\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fa041o\",\"data-styles-preset\":\"iaLeXzIFn\",style:{\"--framer-text-color\":\"var(--token-3864de58-9c2a-419c-b7af-a93f76ca6f06, rgb(11, 12, 14))\"},children:\"B2B Marketing Agency\"})}),className:\"framer-qpznpx\",\"data-framer-name\":\"NoCode Digital Product Design Agency\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u7s1ni\",\"data-framer-name\":\"heading\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0dlbm92YSBCbGFjaw==\",\"--framer-font-family\":'\"Genova Black\", \"Genova Black Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1e6aa030-b9a6-4d7d-9eed-12ec3ce25c6d, rgb(46, 50, 56))\",\"--framer-text-transform\":\"uppercase\"},children:\"Growth so powerful, your competitors will wonder what you\u2019re hiding.\"})}),fonts:[\"CUSTOM;Genova Black\"]},Req0o9njW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0dlbm92YSBCbGFjaw==\",\"--framer-font-family\":'\"Genova Black\", \"Genova Black Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1e6aa030-b9a6-4d7d-9eed-12ec3ce25c6d, rgb(46, 50, 56))\",\"--framer-text-transform\":\"uppercase\"},children:\"Growth so powerful, your competitors will wonder what you\u2019re hiding.\"})}),fonts:[\"CUSTOM;Genova Black\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-uagqvs\",\"data-styles-preset\":\"CaLJ2s_oj\",children:\"Growth so powerful, your competitors will wonder what you\u2019re hiding.\"})}),className:\"framer-ptx6gs\",\"data-framer-name\":\"Our Priority is Attending to the Demands of Your Clientele.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1evo4d3\",\"data-framer-name\":\"text\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2c4wpv\",\"data-styles-preset\":\"W9pJwpmaQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"We\u2019re on a mission to eliminate guesswork from B2B growth, empowering ambitious brands to dominate their industries with clarity, precision, and confidence.\"})}),className:\"framer-1d7qh14\",\"data-framer-name\":\"A well-known NoCode company and Framer Partner, Nicey is situated in Novi Sad, Serbia. By developing the newest web experiences, we propel our clients quickly into the future.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mE3TAyWxh\"},implicitPathVariables:undefined},{href:{webPageId:\"mE3TAyWxh\"},implicitPathVariables:undefined},{href:{webPageId:\"mE3TAyWxh\"},implicitPathVariables:undefined},{href:{webPageId:\"mE3TAyWxh\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{y:(componentViewport?.y||0)+0+0+0+0+0+112+80+0+0+476.8},Req0o9njW:{y:(componentViewport?.y||0)+0+0+0+0+0+112+40+0+0+456.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+0+0+0+0+112+80+0+0+478,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-hzz46f-container\",\"data-framer-appear-id\":\"hzz46f\",initial:animation5,nodeId:\"FIScIj2wN\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D3JxvGUhN:{mYl3ezxvd:resolvedLinks1[3]},M1RXdqpUt:{mYl3ezxvd:resolvedLinks1[1],variant:\"jpLTpp8Mu\"},Req0o9njW:{mYl3ezxvd:resolvedLinks1[2],variant:\"jpLTpp8Mu\"}},children:/*#__PURE__*/_jsx(PrimaryCTA,{b3PvGG8Dd:\"rgb(255, 255, 255)\",height:\"100%\",id:\"FIScIj2wN\",layoutId:\"FIScIj2wN\",mYl3ezxvd:resolvedLinks1[0],Spx9YjtKA:\"var(--token-5cf2e08a-4f1b-408b-9dc3-5a148dd20ab9, rgb(255, 3, 41))\",uyCAOtHs5:\"Start a project\",variant:\"QSiOvZ7w7\",Wbpt_yg8r:\"rgb(255, 255, 255)\",width:\"100%\"})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-103drnh-container hidden-72rtr7 hidden-csppip hidden-1gyl5n4\",\"data-framer-name\":\"Ticker-Mobile\",isAuthoredByUser:true,isModuleExternal:true,name:\"Ticker-Mobile\",nodeId:\"J7OiXMSIr\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:12,height:\"100%\",hoverFactor:1,id:\"J7OiXMSIr\",layoutId:\"J7OiXMSIr\",name:\"Ticker-Mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-u55bex\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JxILy1e1V\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"JxILy1e1V\",name:\"hbL_Cf5Va\",type:\"Identifier\"},{collection:\"JxILy1e1V\",name:\"UAJGIWsM4\",type:\"Identifier\"},{collection:\"JxILy1e1V\",name:\"IdLDCVSHS\",type:\"Identifier\"},{collection:\"JxILy1e1V\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({hbL_Cf5Va:hbL_Cf5VaJxILy1e1V,id:idJxILy1e1V,IdLDCVSHS:IdLDCVSHSJxILy1e1V,UAJGIWsM4:UAJGIWsM4JxILy1e1V},index)=>{hbL_Cf5VaJxILy1e1V??=\"\";IdLDCVSHSJxILy1e1V??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JxILy1e1V-${idJxILy1e1V}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IdLDCVSHS:IdLDCVSHSJxILy1e1V},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSJxILy1e1V},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:341,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hgwsmv-container\",inComponentSlot:true,nodeId:\"IoPpZU6Hw\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudyHero,{DImposwh6:\"qNhl2zNxM\",gKViWC83g:enumToDisplayNameFunctions[\"UAJGIWsM4\"]?.(UAJGIWsM4JxILy1e1V,activeLocale),height:\"100%\",id:\"IoPpZU6Hw\",jpEWoGfmm:resolvedLinks2[0],layoutId:\"IoPpZU6Hw\",N8gCO_Sg9:addImageAlt({pixelHeight:1920,pixelWidth:1080,src:\"https://framerusercontent.com/images/rU1dnULoXADQLxxSDrZMmCQpQ.jpg\",srcSet:\"https://framerusercontent.com/images/rU1dnULoXADQLxxSDrZMmCQpQ.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/rU1dnULoXADQLxxSDrZMmCQpQ.jpg 1080w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"ZOKxY9qPW\",width:\"100%\",WmZa67Jxj:hbL_Cf5VaJxILy1e1V})})})})})},idJxILy1e1V);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cskga5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"EuLni1WGl\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"EuLni1WGl\",name:\"hbL_Cf5Va\",type:\"Identifier\"},{collection:\"EuLni1WGl\",name:\"UAJGIWsM4\",type:\"Identifier\"},{collection:\"EuLni1WGl\",name:\"IdLDCVSHS\",type:\"Identifier\"},{collection:\"EuLni1WGl\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({hbL_Cf5Va:hbL_Cf5VaEuLni1WGl,id:idEuLni1WGl,IdLDCVSHS:IdLDCVSHSEuLni1WGl,UAJGIWsM4:UAJGIWsM4EuLni1WGl},index1)=>{hbL_Cf5VaEuLni1WGl??=\"\";IdLDCVSHSEuLni1WGl??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`EuLni1WGl-${idEuLni1WGl}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IdLDCVSHS:IdLDCVSHSEuLni1WGl},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSEuLni1WGl},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rhbh7-container\",inComponentSlot:true,nodeId:\"pkhIbpPSu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudyHero,{DImposwh6:\"LL2r1xIv6\",gKViWC83g:enumToDisplayNameFunctions[\"UAJGIWsM4\"]?.(UAJGIWsM4EuLni1WGl,activeLocale),height:\"100%\",id:\"pkhIbpPSu\",jpEWoGfmm:resolvedLinks3[0],layoutId:\"pkhIbpPSu\",N8gCO_Sg9:addImageAlt({pixelHeight:1920,pixelWidth:1080,src:\"https://framerusercontent.com/images/CvBx7eJl0zrIzEjW83BF1UcE.png\",srcSet:\"https://framerusercontent.com/images/CvBx7eJl0zrIzEjW83BF1UcE.png?scale-down-to=1024 576w,https://framerusercontent.com/images/CvBx7eJl0zrIzEjW83BF1UcE.png 1080w\"},\"\"),style:{height:\"100%\"},variant:\"ZOKxY9qPW\",width:\"100%\",WmZa67Jxj:hbL_Cf5VaEuLni1WGl})})})})})},idEuLni1WGl);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8q6dcj\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"oJV6Mlfvh\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"oJV6Mlfvh\",name:\"hbL_Cf5Va\",type:\"Identifier\"},{collection:\"oJV6Mlfvh\",name:\"UAJGIWsM4\",type:\"Identifier\"},{collection:\"oJV6Mlfvh\",name:\"IdLDCVSHS\",type:\"Identifier\"},{collection:\"oJV6Mlfvh\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({hbL_Cf5Va:hbL_Cf5VaoJV6Mlfvh,id:idoJV6Mlfvh,IdLDCVSHS:IdLDCVSHSoJV6Mlfvh,UAJGIWsM4:UAJGIWsM4oJV6Mlfvh},index2)=>{hbL_Cf5VaoJV6Mlfvh??=\"\";IdLDCVSHSoJV6Mlfvh??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`oJV6Mlfvh-${idoJV6Mlfvh}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IdLDCVSHS:IdLDCVSHSoJV6Mlfvh},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSoJV6Mlfvh},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:338,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19z4ma4-container\",inComponentSlot:true,nodeId:\"VvM9l9IQK\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudyHero,{DImposwh6:\"EK6RPmCRd\",gKViWC83g:enumToDisplayNameFunctions[\"UAJGIWsM4\"]?.(UAJGIWsM4oJV6Mlfvh,activeLocale),height:\"100%\",id:\"VvM9l9IQK\",jpEWoGfmm:resolvedLinks4[0],layoutId:\"VvM9l9IQK\",N8gCO_Sg9:addImageAlt({pixelHeight:1920,pixelWidth:1080,src:\"https://framerusercontent.com/images/yQ7ZA5fX1gMszo0ePMRYBSa8.png\",srcSet:\"https://framerusercontent.com/images/yQ7ZA5fX1gMszo0ePMRYBSa8.png?scale-down-to=1024 576w,https://framerusercontent.com/images/yQ7ZA5fX1gMszo0ePMRYBSa8.png 1080w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"ZOKxY9qPW\",width:\"100%\",WmZa67Jxj:hbL_Cf5VaoJV6Mlfvh})})})})})},idoJV6Mlfvh);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1grp5k5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"eOgoHkKwC\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"eOgoHkKwC\",name:\"hbL_Cf5Va\",type:\"Identifier\"},{collection:\"eOgoHkKwC\",name:\"UAJGIWsM4\",type:\"Identifier\"},{collection:\"eOgoHkKwC\",name:\"IdLDCVSHS\",type:\"Identifier\"},{collection:\"eOgoHkKwC\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({hbL_Cf5Va:hbL_Cf5VaeOgoHkKwC,id:ideOgoHkKwC,IdLDCVSHS:IdLDCVSHSeOgoHkKwC,UAJGIWsM4:UAJGIWsM4eOgoHkKwC},index3)=>{hbL_Cf5VaeOgoHkKwC??=\"\";IdLDCVSHSeOgoHkKwC??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`eOgoHkKwC-${ideOgoHkKwC}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IdLDCVSHS:IdLDCVSHSeOgoHkKwC},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSeOgoHkKwC},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i0661e-container\",inComponentSlot:true,nodeId:\"hQInM5HvQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudyHero,{DImposwh6:\"GQekPuiTx\",gKViWC83g:enumToDisplayNameFunctions[\"UAJGIWsM4\"]?.(UAJGIWsM4eOgoHkKwC,activeLocale),height:\"100%\",id:\"hQInM5HvQ\",jpEWoGfmm:resolvedLinks5[0],layoutId:\"hQInM5HvQ\",N8gCO_Sg9:addImageAlt({pixelHeight:1920,pixelWidth:1080,src:\"https://framerusercontent.com/images/JRVMfCtYY7uALZ4iJr1ytwXhE.png\",srcSet:\"https://framerusercontent.com/images/JRVMfCtYY7uALZ4iJr1ytwXhE.png?scale-down-to=1024 576w,https://framerusercontent.com/images/JRVMfCtYY7uALZ4iJr1ytwXhE.png 1080w\"},\"\"),style:{height:\"100%\"},variant:\"ZOKxY9qPW\",width:\"100%\",WmZa67Jxj:hbL_Cf5VaeOgoHkKwC})})})})})},ideOgoHkKwC);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12r93pc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"yPpaROCuq\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"yPpaROCuq\",name:\"hbL_Cf5Va\",type:\"Identifier\"},{collection:\"yPpaROCuq\",name:\"UAJGIWsM4\",type:\"Identifier\"},{collection:\"yPpaROCuq\",name:\"IdLDCVSHS\",type:\"Identifier\"},{collection:\"yPpaROCuq\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({hbL_Cf5Va:hbL_Cf5VayPpaROCuq,id:idyPpaROCuq,IdLDCVSHS:IdLDCVSHSyPpaROCuq,UAJGIWsM4:UAJGIWsM4yPpaROCuq},index4)=>{hbL_Cf5VayPpaROCuq??=\"\";IdLDCVSHSyPpaROCuq??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`yPpaROCuq-${idyPpaROCuq}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IdLDCVSHS:IdLDCVSHSyPpaROCuq},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSyPpaROCuq},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xszddg-container\",inComponentSlot:true,nodeId:\"mX3e0u9GW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudyHero,{DImposwh6:\"USSVwG4OD\",gKViWC83g:enumToDisplayNameFunctions[\"UAJGIWsM4\"]?.(UAJGIWsM4yPpaROCuq,activeLocale),height:\"100%\",id:\"mX3e0u9GW\",jpEWoGfmm:resolvedLinks6[0],layoutId:\"mX3e0u9GW\",N8gCO_Sg9:addImageAlt({pixelHeight:1920,pixelWidth:1080,src:\"https://framerusercontent.com/images/YVrKdodc7UCmUu3mScMIRUXRDRA.png\",srcSet:\"https://framerusercontent.com/images/YVrKdodc7UCmUu3mScMIRUXRDRA.png?scale-down-to=1024 576w,https://framerusercontent.com/images/YVrKdodc7UCmUu3mScMIRUXRDRA.png 1080w\"},\"\"),style:{height:\"100%\"},variant:\"ZOKxY9qPW\",width:\"100%\",WmZa67Jxj:hbL_Cf5VayPpaROCuq})})})})})},idyPpaROCuq);})})})})})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pel4za-container hidden-1j4pctm\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FhdIRimLU\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{hoverFactor:1}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:15,overflow:true},gap:12,height:\"100%\",hoverFactor:.5,id:\"FhdIRimLU\",layoutId:\"FhdIRimLU\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12n55g1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JqqmqgulP\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"JqqmqgulP\",name:\"hbL_Cf5Va\",type:\"Identifier\"},{collection:\"JqqmqgulP\",name:\"UAJGIWsM4\",type:\"Identifier\"},{collection:\"JqqmqgulP\",name:\"IdLDCVSHS\",type:\"Identifier\"},{collection:\"JqqmqgulP\",name:\"id\",type:\"Identifier\"}]},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({hbL_Cf5Va:hbL_Cf5VaJqqmqgulP,id:idJqqmqgulP,IdLDCVSHS:IdLDCVSHSJqqmqgulP,UAJGIWsM4:UAJGIWsM4JqqmqgulP},index5)=>{hbL_Cf5VaJqqmqgulP??=\"\";IdLDCVSHSJqqmqgulP??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JqqmqgulP-${idJqqmqgulP}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IdLDCVSHS:IdLDCVSHSJqqmqgulP},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSJqqmqgulP},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12uwp3b-container\",inComponentSlot:true,nodeId:\"p2UlvWV76\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudyHero,{DImposwh6:\"qNhl2zNxM\",gKViWC83g:enumToDisplayNameFunctions[\"UAJGIWsM4\"]?.(UAJGIWsM4JqqmqgulP,activeLocale),height:\"100%\",id:\"p2UlvWV76\",jpEWoGfmm:resolvedLinks7[0],layoutId:\"p2UlvWV76\",N8gCO_Sg9:addImageAlt({pixelHeight:1920,pixelWidth:1080,src:\"https://framerusercontent.com/images/rU1dnULoXADQLxxSDrZMmCQpQ.jpg\",srcSet:\"https://framerusercontent.com/images/rU1dnULoXADQLxxSDrZMmCQpQ.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/rU1dnULoXADQLxxSDrZMmCQpQ.jpg 1080w\"},\"\"),style:{height:\"100%\"},variant:\"ljAqJrB6p\",width:\"100%\",WmZa67Jxj:hbL_Cf5VaJqqmqgulP})})})})})},idJqqmqgulP);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8wkyg0\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JSeO3pOrU\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"JSeO3pOrU\",name:\"hbL_Cf5Va\",type:\"Identifier\"},{collection:\"JSeO3pOrU\",name:\"UAJGIWsM4\",type:\"Identifier\"},{collection:\"JSeO3pOrU\",name:\"IdLDCVSHS\",type:\"Identifier\"},{collection:\"JSeO3pOrU\",name:\"id\",type:\"Identifier\"}]},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({hbL_Cf5Va:hbL_Cf5VaJSeO3pOrU,id:idJSeO3pOrU,IdLDCVSHS:IdLDCVSHSJSeO3pOrU,UAJGIWsM4:UAJGIWsM4JSeO3pOrU},index6)=>{hbL_Cf5VaJSeO3pOrU??=\"\";IdLDCVSHSJSeO3pOrU??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JSeO3pOrU-${idJSeO3pOrU}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IdLDCVSHS:IdLDCVSHSJSeO3pOrU},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSJSeO3pOrU},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13x3o3y-container\",inComponentSlot:true,nodeId:\"d1OyZ9MNW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudyHero,{DImposwh6:\"LL2r1xIv6\",gKViWC83g:enumToDisplayNameFunctions[\"UAJGIWsM4\"]?.(UAJGIWsM4JSeO3pOrU,activeLocale),height:\"100%\",id:\"d1OyZ9MNW\",jpEWoGfmm:resolvedLinks8[0],layoutId:\"d1OyZ9MNW\",N8gCO_Sg9:addImageAlt({pixelHeight:1920,pixelWidth:1080,src:\"https://framerusercontent.com/images/CvBx7eJl0zrIzEjW83BF1UcE.png\",srcSet:\"https://framerusercontent.com/images/CvBx7eJl0zrIzEjW83BF1UcE.png?scale-down-to=1024 576w,https://framerusercontent.com/images/CvBx7eJl0zrIzEjW83BF1UcE.png 1080w\"},\"\"),style:{height:\"100%\"},variant:\"ljAqJrB6p\",width:\"100%\",WmZa67Jxj:hbL_Cf5VaJSeO3pOrU})})})})})},idJSeO3pOrU);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f6tm7i\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FXcmFyx5P\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"FXcmFyx5P\",name:\"hbL_Cf5Va\",type:\"Identifier\"},{collection:\"FXcmFyx5P\",name:\"UAJGIWsM4\",type:\"Identifier\"},{collection:\"FXcmFyx5P\",name:\"IdLDCVSHS\",type:\"Identifier\"},{collection:\"FXcmFyx5P\",name:\"id\",type:\"Identifier\"}]},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({hbL_Cf5Va:hbL_Cf5VaFXcmFyx5P,id:idFXcmFyx5P,IdLDCVSHS:IdLDCVSHSFXcmFyx5P,UAJGIWsM4:UAJGIWsM4FXcmFyx5P},index7)=>{hbL_Cf5VaFXcmFyx5P??=\"\";IdLDCVSHSFXcmFyx5P??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FXcmFyx5P-${idFXcmFyx5P}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IdLDCVSHS:IdLDCVSHSFXcmFyx5P},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSFXcmFyx5P},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i9z92a-container\",inComponentSlot:true,nodeId:\"qPZMDLtB3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudyHero,{DImposwh6:\"EK6RPmCRd\",gKViWC83g:enumToDisplayNameFunctions[\"UAJGIWsM4\"]?.(UAJGIWsM4FXcmFyx5P,activeLocale),height:\"100%\",id:\"qPZMDLtB3\",jpEWoGfmm:resolvedLinks9[0],layoutId:\"qPZMDLtB3\",N8gCO_Sg9:addImageAlt({pixelHeight:1920,pixelWidth:1080,src:\"https://framerusercontent.com/images/yQ7ZA5fX1gMszo0ePMRYBSa8.png\",srcSet:\"https://framerusercontent.com/images/yQ7ZA5fX1gMszo0ePMRYBSa8.png?scale-down-to=1024 576w,https://framerusercontent.com/images/yQ7ZA5fX1gMszo0ePMRYBSa8.png 1080w\"},\"\"),style:{height:\"100%\"},variant:\"ljAqJrB6p\",width:\"100%\",WmZa67Jxj:hbL_Cf5VaFXcmFyx5P})})})})})},idFXcmFyx5P);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dpbwlo\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"sfKHt4pwD\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"sfKHt4pwD\",name:\"hbL_Cf5Va\",type:\"Identifier\"},{collection:\"sfKHt4pwD\",name:\"UAJGIWsM4\",type:\"Identifier\"},{collection:\"sfKHt4pwD\",name:\"IdLDCVSHS\",type:\"Identifier\"},{collection:\"sfKHt4pwD\",name:\"id\",type:\"Identifier\"}]},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({hbL_Cf5Va:hbL_Cf5VasfKHt4pwD,id:idsfKHt4pwD,IdLDCVSHS:IdLDCVSHSsfKHt4pwD,UAJGIWsM4:UAJGIWsM4sfKHt4pwD},index8)=>{hbL_Cf5VasfKHt4pwD??=\"\";IdLDCVSHSsfKHt4pwD??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`sfKHt4pwD-${idsfKHt4pwD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IdLDCVSHS:IdLDCVSHSsfKHt4pwD},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSsfKHt4pwD},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aoofdc-container\",inComponentSlot:true,nodeId:\"HCuF1YZv3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudyHero,{DImposwh6:\"GQekPuiTx\",gKViWC83g:enumToDisplayNameFunctions[\"UAJGIWsM4\"]?.(UAJGIWsM4sfKHt4pwD,activeLocale),height:\"100%\",id:\"HCuF1YZv3\",jpEWoGfmm:resolvedLinks10[0],layoutId:\"HCuF1YZv3\",N8gCO_Sg9:addImageAlt({pixelHeight:1920,pixelWidth:1080,src:\"https://framerusercontent.com/images/JRVMfCtYY7uALZ4iJr1ytwXhE.png\",srcSet:\"https://framerusercontent.com/images/JRVMfCtYY7uALZ4iJr1ytwXhE.png?scale-down-to=1024 576w,https://framerusercontent.com/images/JRVMfCtYY7uALZ4iJr1ytwXhE.png 1080w\"},\"\"),style:{height:\"100%\"},variant:\"ljAqJrB6p\",width:\"100%\",WmZa67Jxj:hbL_Cf5VasfKHt4pwD})})})})})},idsfKHt4pwD);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u2x8fu\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"xQOlfrOb9\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"xQOlfrOb9\",name:\"hbL_Cf5Va\",type:\"Identifier\"},{collection:\"xQOlfrOb9\",name:\"UAJGIWsM4\",type:\"Identifier\"},{collection:\"xQOlfrOb9\",name:\"IdLDCVSHS\",type:\"Identifier\"},{collection:\"xQOlfrOb9\",name:\"id\",type:\"Identifier\"}]},children:(collection9,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9?.map(({hbL_Cf5Va:hbL_Cf5VaxQOlfrOb9,id:idxQOlfrOb9,IdLDCVSHS:IdLDCVSHSxQOlfrOb9,UAJGIWsM4:UAJGIWsM4xQOlfrOb9},index9)=>{hbL_Cf5VaxQOlfrOb9??=\"\";IdLDCVSHSxQOlfrOb9??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`xQOlfrOb9-${idxQOlfrOb9}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IdLDCVSHS:IdLDCVSHSxQOlfrOb9},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSxQOlfrOb9},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qi40ug-container\",inComponentSlot:true,nodeId:\"ZWUEaTQUK\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CaseStudyHero,{DImposwh6:\"USSVwG4OD\",gKViWC83g:enumToDisplayNameFunctions[\"UAJGIWsM4\"]?.(UAJGIWsM4xQOlfrOb9,activeLocale),height:\"100%\",id:\"ZWUEaTQUK\",jpEWoGfmm:resolvedLinks11[0],layoutId:\"ZWUEaTQUK\",N8gCO_Sg9:addImageAlt({pixelHeight:1920,pixelWidth:1080,src:\"https://framerusercontent.com/images/YVrKdodc7UCmUu3mScMIRUXRDRA.png\",srcSet:\"https://framerusercontent.com/images/YVrKdodc7UCmUu3mScMIRUXRDRA.png?scale-down-to=1024 576w,https://framerusercontent.com/images/YVrKdodc7UCmUu3mScMIRUXRDRA.png 1080w\"},\"\"),style:{height:\"100%\"},variant:\"ljAqJrB6p\",width:\"100%\",WmZa67Jxj:hbL_Cf5VaxQOlfrOb9})})})})})},idxQOlfrOb9);})})})})})],speed:10,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aln3x2\",\"data-framer-name\":\"Services-wrapper\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yxxvq1\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ioq3io\",\"data-framer-name\":\"content-txt\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ec7r8a\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-amqdv5\",\"data-framer-name\":\"Top-txt\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1frg8so\",\"data-framer-name\":\"heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1kpjmgx\",\"data-styles-preset\":\"Kl87dOv4A\",style:{\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:\"What we do\"})}),className:\"framer-1mskj6l\",\"data-framer-name\":\"We blend a strategic approach with studio-caliber creativity.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12tn4wi\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2c4wpv\",\"data-styles-preset\":\"W9pJwpmaQ\",style:{\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:\"We help ambitious B2B brands grow using proven strategies and systems to achieve maximum results.\"})}),className:\"framer-1pi7rt9\",\"data-framer-name\":\"At Nicey, we specialize in creating spectacular marketing platforms that accurately reflect your distinct brand voice and increase your bottom line.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c3w0pt hidden-csppip hidden-1j4pctm\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D3JxvGUhN:{width:`max((min(${componentViewport?.width||\"100vw\"} - 220px, 1536px) - 120px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`max((min(${componentViewport?.width||\"100vw\"}, 1536px) - 64px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1193+0+0+120+0+303.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5y81pj-container\",nodeId:\"SgXZ1lXx6\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ServicesScrollAnimationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref3,target:\"jv9UqRcDA\"},{ref:ref4,target:\"QAJvkXJ1m\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"SgXZ1lXx6\",kCh3xRGWK:\"ABM\",layoutId:\"SgXZ1lXx6\",style:{width:\"100%\"},variant:\"QAJvkXJ1m\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D3JxvGUhN:{width:`max((min(${componentViewport?.width||\"100vw\"} - 220px, 1536px) - 120px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`max((min(${componentViewport?.width||\"100vw\"}, 1536px) - 64px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1193+0+0+120+0+303.2+0+83,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eoqsjn-container\",nodeId:\"QcV62n4Ie\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ServicesScrollAnimationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref4,target:\"jv9UqRcDA\"},{ref:ref5,target:\"QAJvkXJ1m\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"QcV62n4Ie\",kCh3xRGWK:\"Demand Generation\",layoutId:\"QcV62n4Ie\",style:{width:\"100%\"},variant:\"QAJvkXJ1m\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D3JxvGUhN:{width:`max((min(${componentViewport?.width||\"100vw\"} - 220px, 1536px) - 120px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`max((min(${componentViewport?.width||\"100vw\"}, 1536px) - 64px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1193+0+0+120+0+303.2+0+166,children:/*#__PURE__*/_jsx(Container,{className:\"framer-23i72-container\",nodeId:\"HD1KVp5J6\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ServicesScrollAnimationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref5,target:\"jv9UqRcDA\"},{ref:ref6,target:\"QAJvkXJ1m\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"HD1KVp5J6\",kCh3xRGWK:\"Content Marketing\",layoutId:\"HD1KVp5J6\",style:{width:\"100%\"},variant:\"QAJvkXJ1m\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D3JxvGUhN:{width:`max((min(${componentViewport?.width||\"100vw\"} - 220px, 1536px) - 120px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`max((min(${componentViewport?.width||\"100vw\"}, 1536px) - 64px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1193+0+0+120+0+303.2+0+249,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qr1v6k-container\",nodeId:\"epcsYyD9T\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ServicesScrollAnimationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref6,target:\"jv9UqRcDA\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"epcsYyD9T\",kCh3xRGWK:\"Outbound Marketing\",layoutId:\"epcsYyD9T\",style:{width:\"100%\"},variant:\"QAJvkXJ1m\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-phuqjq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{__framer__styleAppearEffectEnabled:undefined,style:{}},Req0o9njW:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bsge3f\",\"data-framer-name\":\"cards\",id:elementId2,ref:ref7,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{__framer__animate:{transition:transition9},__framer__enter:animation14,__framer__exit:animation15},Req0o9njW:{__framer__animate:{transition:transition9},__framer__enter:animation14,__framer__exit:animation15}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dwias0\",\"data-framer-name\":\"card1\",id:elementId3,ref:ref3,style:{transformPerspective:1200},children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1191.8+0+0+120+287.2+0+40+0+-17),pixelHeight:4096,pixelWidth:2731,sizes:\"412px\",src:\"https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg\",srcSet:\"https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg 2731w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:.19,background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1193+0+0+120+0+256+0+-17),pixelHeight:4096,pixelWidth:2731,sizes:\"412px\",src:\"https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg\",srcSet:\"https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg 2731w\"},className:\"framer-1wjmccd hidden-1j4pctm\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cb2nnr\",\"data-styles-preset\":\"wAMp8FIQR\",style:{\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:\"Account Based Marketing\"})}),className:\"framer-13ub3j6\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lxx76k\",\"data-framer-name\":\"txt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-2c4wpv\",\"data-styles-preset\":\"W9pJwpmaQ\",style:{\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:[\"Forget generic marketing. At \",/*#__PURE__*/_jsx(\"strong\",{children:\"Built For B2B\"}),\", we craft hyper-targeted campaigns designed specifically to capture your highest-value accounts. Our laser-focused ABM strategies combine personalised outreach, strategic messaging, and relentless execution\u2014turning your dream accounts into real revenue. Less waste, more wins\"]})}),className:\"framer-14e7p6h\",\"data-framer-name\":\"Almost before\u2026\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ngqON7lSP:\"account-based-marketing\"},unresolvedPathSlugs:{ngqON7lSP:{collectionId:\"aCE3txtKE\",collectionItemId:\"UmnEFQy52\"}},webPageId:\"TWqtgLM9L\"},motionChild:true,nodeId:\"slK8PqzVG\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:8e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1191.8+0+0+120+287.2+0+40+0+40+404),pixelHeight:6e3,pixelWidth:8e3,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1536px), 1px) - 60px)`,src:\"https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg\",srcSet:\"https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg 8000w\"}},Req0o9njW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:8e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1099.8+0+0+80+271.2+0+40+0+40+388),pixelHeight:6e3,pixelWidth:8e3,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1536px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg\",srcSet:\"https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg 8000w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:8e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1193+0+0+120+0+256+0+40+404),pixelHeight:6e3,pixelWidth:8e3,sizes:\"418px\",src:\"https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg\",srcSet:\"https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/qQYWFiPSp7YVJzNpqBrm9QSA.jpg 8000w\"},className:\"framer-3hql4w framer-lux5qc\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{__framer__animate:{transition:transition9},__framer__enter:animation14,__framer__exit:animation15},Req0o9njW:{__framer__animate:{transition:transition9},__framer__enter:animation14,__framer__exit:animation15}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cw12p0\",\"data-framer-name\":\"card2\",id:elementId4,ref:ref4,style:{transformPerspective:1200},children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1191.8+0+0+120+287.2+0+40+842+-17),pixelHeight:4032,pixelWidth:3024,sizes:\"412px\",src:\"https://framerusercontent.com/images/ap6Pmz4JpdqtaCTNYi1igp0V4.jpg\",srcSet:\"https://framerusercontent.com/images/ap6Pmz4JpdqtaCTNYi1igp0V4.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/ap6Pmz4JpdqtaCTNYi1igp0V4.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/ap6Pmz4JpdqtaCTNYi1igp0V4.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:.19,background:{alt:\"\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1193+0+0+120+0+256+1058+-17),pixelHeight:4032,pixelWidth:3024,sizes:\"412px\",src:\"https://framerusercontent.com/images/ap6Pmz4JpdqtaCTNYi1igp0V4.jpg\",srcSet:\"https://framerusercontent.com/images/ap6Pmz4JpdqtaCTNYi1igp0V4.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/ap6Pmz4JpdqtaCTNYi1igp0V4.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/ap6Pmz4JpdqtaCTNYi1igp0V4.jpg 3024w\"},className:\"framer-45ixjv hidden-1j4pctm\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qezxzk\",\"data-framer-name\":\"txt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Req0o9njW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ggat74\",\"data-styles-preset\":\"pijwjBtqA\",style:{\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:\"Demand Generation\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cb2nnr\",\"data-styles-preset\":\"wAMp8FIQR\",style:{\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:\"Demand Generation\"})}),className:\"framer-1naflpr\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2c4wpv\",\"data-styles-preset\":\"W9pJwpmaQ\",style:{\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:\"Creating lead demand for your brand using a full funnel approach with both paid and organic channels.\"})}),className:\"framer-19sy2g5\",\"data-framer-name\":\"Almost before\u2026\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ngqON7lSP:\"demand-generation\"},unresolvedPathSlugs:{ngqON7lSP:{collectionId:\"aCE3txtKE\",collectionItemId:\"FvXMIHk3K\"}},webPageId:\"TWqtgLM9L\"},motionChild:true,nodeId:\"pULypo7Jj\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1191.8+0+0+120+287.2+0+40+842+40+388),pixelHeight:4e3,pixelWidth:6e3,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1536px), 1px) - 60px)`,src:\"https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg\",srcSet:\"https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg 6000w\"}},Req0o9njW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1099.8+0+0+80+271.2+0+40+806+40+394),pixelHeight:4e3,pixelWidth:6e3,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1536px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg\",srcSet:\"https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg 6000w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1193+0+0+120+0+256+1058+40+388),pixelHeight:4e3,pixelWidth:6e3,sizes:\"418px\",src:\"https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg\",srcSet:\"https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/HDuYsZAbjy5iy4ZMpprZMjPXUw.jpg 6000w\"},className:\"framer-14yybxq framer-lux5qc\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{__framer__animate:{transition:transition9},__framer__enter:animation14,__framer__exit:animation15},Req0o9njW:{__framer__animate:{transition:transition9},__framer__enter:animation14,__framer__exit:animation15}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mc741w\",\"data-framer-name\":\"card3\",id:elementId5,ref:ref5,style:{transformPerspective:1200},children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1191.8+0+0+120+287.2+0+40+1668+-17),pixelHeight:4096,pixelWidth:2731,sizes:\"412px\",src:\"https://framerusercontent.com/images/cl8486e4loG2gGsisqzAJRq2jho.jpg\",srcSet:\"https://framerusercontent.com/images/cl8486e4loG2gGsisqzAJRq2jho.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/cl8486e4loG2gGsisqzAJRq2jho.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/cl8486e4loG2gGsisqzAJRq2jho.jpg 2731w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:.19,background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1193+0+0+120+0+256+2100+-17),pixelHeight:4096,pixelWidth:2731,sizes:\"412px\",src:\"https://framerusercontent.com/images/cl8486e4loG2gGsisqzAJRq2jho.jpg\",srcSet:\"https://framerusercontent.com/images/cl8486e4loG2gGsisqzAJRq2jho.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/cl8486e4loG2gGsisqzAJRq2jho.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/cl8486e4loG2gGsisqzAJRq2jho.jpg 2731w\"},className:\"framer-1n50j30 hidden-1j4pctm\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e4yo4e\",\"data-framer-name\":\"txt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Req0o9njW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ggat74\",\"data-styles-preset\":\"pijwjBtqA\",style:{\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:\"Content Marketing\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cb2nnr\",\"data-styles-preset\":\"wAMp8FIQR\",style:{\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:\"Content Marketing\"})}),className:\"framer-1hxc6mh\",\"data-framer-name\":\"Almost before\u2026\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2c4wpv\",\"data-styles-preset\":\"W9pJwpmaQ\",style:{\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:\"We can dial in your thought leadership strategy for Linkedin, develop content which better converts for your website or landing pages and much more!\"})}),className:\"framer-75era5\",\"data-framer-name\":\"Almost before\u2026\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ngqON7lSP:\"content-marketing\"},unresolvedPathSlugs:{ngqON7lSP:{collectionId:\"aCE3txtKE\",collectionItemId:\"dTHi0QQnL\"}},webPageId:\"TWqtgLM9L\"},motionChild:true,nodeId:\"HPBCURPP1\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1191.8+0+0+120+287.2+0+40+1668+40+388),pixelHeight:4e3,pixelWidth:6e3,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1536px), 1px) - 60px)`,src:\"https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg\",srcSet:\"https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg 6000w\"}},Req0o9njW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1099.8+0+0+80+271.2+0+40+1618+40+394),pixelHeight:4e3,pixelWidth:6e3,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1536px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg\",srcSet:\"https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg 6000w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1193+0+0+120+0+256+2100+40+388),pixelHeight:4e3,pixelWidth:6e3,sizes:\"418px\",src:\"https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg\",srcSet:\"https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/o9PSDxrsmSLP7aeunzoRuQ9YGBk.jpg 6000w\"},className:\"framer-zoa4o0 framer-lux5qc\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{__framer__animate:{transition:transition9},__framer__enter:animation14,__framer__exit:animation15},Req0o9njW:{__framer__animate:{transition:transition9},__framer__enter:animation14,__framer__exit:animation15}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18298c7\",\"data-framer-name\":\"card4\",id:elementId6,ref:ref6,style:{transformPerspective:1200},children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1191.8+0+0+120+287.2+0+40+2494+-17),pixelHeight:4096,pixelWidth:2731,sizes:\"412px\",src:\"https://framerusercontent.com/images/E6XsJlKbqEbRWc0zEVacXtT13GQ.jpg\",srcSet:\"https://framerusercontent.com/images/E6XsJlKbqEbRWc0zEVacXtT13GQ.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/E6XsJlKbqEbRWc0zEVacXtT13GQ.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/E6XsJlKbqEbRWc0zEVacXtT13GQ.jpg 2731w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:.19,background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1193+0+0+120+0+256+3142+-17),pixelHeight:4096,pixelWidth:2731,sizes:\"412px\",src:\"https://framerusercontent.com/images/E6XsJlKbqEbRWc0zEVacXtT13GQ.jpg\",srcSet:\"https://framerusercontent.com/images/E6XsJlKbqEbRWc0zEVacXtT13GQ.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/E6XsJlKbqEbRWc0zEVacXtT13GQ.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/E6XsJlKbqEbRWc0zEVacXtT13GQ.jpg 2731w\"},className:\"framer-1ljg0m7 hidden-1j4pctm\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c4rjsk\",\"data-framer-name\":\"txt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Req0o9njW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ggat74\",\"data-styles-preset\":\"pijwjBtqA\",style:{\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:\"Outbound Marketing\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cb2nnr\",\"data-styles-preset\":\"wAMp8FIQR\",style:{\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:\"Outbound Marketing\"})}),className:\"framer-1vt1fm8\",\"data-framer-name\":\"Almost before\u2026\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2c4wpv\",\"data-styles-preset\":\"W9pJwpmaQ\",style:{\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:\"Turn cold prospects into warm meetings using battle-tested data from thousands of B2B campaigns. We combine hyper-targeted email and LinkedIn outreach to book 10-30 qualified meetings monthly with decision-makers who actually need what you sell. No spray and pray - just consistent pipeline growth.\"})}),className:\"framer-gnn8f\",\"data-framer-name\":\"Almost before\u2026\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1191.8+0+0+120+287.2+0+40+2494+40+388),pixelHeight:3e3,pixelWidth:4e3,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1536px), 1px) - 60px)`,src:\"https://framerusercontent.com/images/miBIe0SyPDNFNNFx6i8OqIic3w.jpg\",srcSet:\"https://framerusercontent.com/images/miBIe0SyPDNFNNFx6i8OqIic3w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/miBIe0SyPDNFNNFx6i8OqIic3w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/miBIe0SyPDNFNNFx6i8OqIic3w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/miBIe0SyPDNFNNFx6i8OqIic3w.jpg 4000w\"}},Req0o9njW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1099.8+0+0+80+271.2+0+40+2430+40+394),pixelHeight:3e3,pixelWidth:4e3,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1536px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/miBIe0SyPDNFNNFx6i8OqIic3w.jpg\",srcSet:\"https://framerusercontent.com/images/miBIe0SyPDNFNNFx6i8OqIic3w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/miBIe0SyPDNFNNFx6i8OqIic3w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/miBIe0SyPDNFNNFx6i8OqIic3w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/miBIe0SyPDNFNNFx6i8OqIic3w.jpg 4000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1193+0+0+120+0+256+3142+40+388),pixelHeight:3e3,pixelWidth:4e3,sizes:\"418px\",src:\"https://framerusercontent.com/images/miBIe0SyPDNFNNFx6i8OqIic3w.jpg\",srcSet:\"https://framerusercontent.com/images/miBIe0SyPDNFNNFx6i8OqIic3w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/miBIe0SyPDNFNNFx6i8OqIic3w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/miBIe0SyPDNFNNFx6i8OqIic3w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/miBIe0SyPDNFNNFx6i8OqIic3w.jpg 4000w\"},className:\"framer-d63xgf\"})})]})})]})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fs6t14\",\"data-framer-name\":\"Case Study\",id:elementId7,ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10quyax\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8hg8xv\",\"data-framer-name\":\"top-txt\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xz6o43\",\"data-framer-name\":\"heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ct12m9\",\"data-styles-preset\":\"P2CqzcWhb\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1e6aa030-b9a6-4d7d-9eed-12ec3ce25c6d, rgb(46, 50, 56))\"},children:\"Case Studies\"})}),className:\"framer-j2zctv\",\"data-framer-name\":\"Featured Work\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation17,className:\"framer-ahkl9t\",\"data-framer-appear-id\":\"ahkl9t\",\"data-framer-name\":\"cards\",initial:animation18,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:69,delay:0,duration:.3,ease:[.44,0,.56,1],mass:2.3,stiffness:422,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:0}},{ref:ref10,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xnotby\",\"data-framer-name\":\"Fintech\",id:elementId8,ref:ref11,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"wxqWgP7ZW\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"wxqWgP7ZW\",name:\"JAos2VVaa\",type:\"Identifier\"},{collection:\"wxqWgP7ZW\",name:\"UAJGIWsM4\",type:\"Identifier\"},{collection:\"wxqWgP7ZW\",name:\"hbL_Cf5Va\",type:\"Identifier\"},{collection:\"wxqWgP7ZW\",name:\"QWf4CTQam\",type:\"Identifier\"},{collection:\"wxqWgP7ZW\",name:\"Jk4_v3X35\",type:\"Identifier\"},{collection:\"wxqWgP7ZW\",name:\"Io8_TJm7I\",type:\"Identifier\"},{collection:\"wxqWgP7ZW\",name:\"wO4N2oDaR\",type:\"Identifier\"},{collection:\"wxqWgP7ZW\",name:\"zzdbSkpFB\",type:\"Identifier\"},{collection:\"wxqWgP7ZW\",name:\"IdLDCVSHS\",type:\"Identifier\"},{collection:\"wxqWgP7ZW\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"wxqWgP7ZW\",name:\"UAJGIWsM4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"fdPFDL5qx\"},type:\"BinaryOperation\"}},children:(collection10,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection10?.map(({hbL_Cf5Va:hbL_Cf5VawxqWgP7ZW,id:idwxqWgP7ZW,IdLDCVSHS:IdLDCVSHSwxqWgP7ZW,Io8_TJm7I:Io8_TJm7IwxqWgP7ZW,JAos2VVaa:JAos2VVaawxqWgP7ZW,Jk4_v3X35:Jk4_v3X35wxqWgP7ZW,QWf4CTQam:QWf4CTQamwxqWgP7ZW,UAJGIWsM4:UAJGIWsM4wxqWgP7ZW,wO4N2oDaR:wO4N2oDaRwxqWgP7ZW,zzdbSkpFB:zzdbSkpFBwxqWgP7ZW},index10)=>{hbL_Cf5VawxqWgP7ZW??=\"\";QWf4CTQamwxqWgP7ZW??=\"\";Jk4_v3X35wxqWgP7ZW??=\"\";Io8_TJm7IwxqWgP7ZW??=\"\";wO4N2oDaRwxqWgP7ZW??=\"\";zzdbSkpFBwxqWgP7ZW??=\"\";IdLDCVSHSwxqWgP7ZW??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`wxqWgP7ZW-${idwxqWgP7ZW}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IdLDCVSHS:IdLDCVSHSwxqWgP7ZW},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSwxqWgP7ZW},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined},{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSwxqWgP7ZW},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined},{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSwxqWgP7ZW},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined},{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSwxqWgP7ZW},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{y:(componentViewport?.y||0)+0+5079+0+0+80+131.2+0+0+0+0},Req0o9njW:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 48px)`,y:(componentViewport?.y||0)+0+4773+0+0+60+115.2+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:564,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 64px)`,y:(componentViewport?.y||0)+0+5777+0+0+160+131.2+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jjbvgp-container\",nodeId:\"Lvd_xE1lf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D3JxvGUhN:{XQAz00h5B:resolvedLinks12[3]},M1RXdqpUt:{variant:\"GLJXCgBjp\",XQAz00h5B:resolvedLinks12[1]},Req0o9njW:{variant:\"b8C7ng8al\",XQAz00h5B:resolvedLinks12[2]}},children:/*#__PURE__*/_jsx(CaseStudyCard,{dcw4SNy5v:hbL_Cf5VawxqWgP7ZW,dHaX1RNMc:Io8_TJm7IwxqWgP7ZW,dmX6bPj5l:\"18l8fz8\",height:\"100%\",I1RstoJAm:toResponsiveImage(JAos2VVaawxqWgP7ZW),id:\"Lvd_xE1lf\",IDtwLRZ95:QWf4CTQamwxqWgP7ZW,jGI1LGOcB:enumToDisplayNameFunctions[\"UAJGIWsM4\"]?.(UAJGIWsM4wxqWgP7ZW,activeLocale),layoutId:\"Lvd_xE1lf\",lBxFOKlnd:\"var(--token-78c84348-4e7a-408b-88d2-ec1c36863a4a, rgb(246, 246, 246))\",style:{width:\"100%\"},UMIlszHET:wO4N2oDaRwxqWgP7ZW,variant:\"t9TmAn4mK\",width:\"100%\",XQAz00h5B:resolvedLinks12[0],z2K8W606D:Jk4_v3X35wxqWgP7ZW,zt1_e9LXE:zzdbSkpFBwxqWgP7ZW})})})})})})})},idwxqWgP7ZW);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:69,delay:0,duration:.3,ease:[.44,0,.56,1],mass:2.3,stiffness:422,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref10,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ijd17o\",\"data-framer-name\":\"Cybersecurity\",id:elementId9,ref:ref9,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"SAScVFvRf\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"SAScVFvRf\",name:\"JAos2VVaa\",type:\"Identifier\"},{collection:\"SAScVFvRf\",name:\"UAJGIWsM4\",type:\"Identifier\"},{collection:\"SAScVFvRf\",name:\"hbL_Cf5Va\",type:\"Identifier\"},{collection:\"SAScVFvRf\",name:\"QWf4CTQam\",type:\"Identifier\"},{collection:\"SAScVFvRf\",name:\"Jk4_v3X35\",type:\"Identifier\"},{collection:\"SAScVFvRf\",name:\"Io8_TJm7I\",type:\"Identifier\"},{collection:\"SAScVFvRf\",name:\"wO4N2oDaR\",type:\"Identifier\"},{collection:\"SAScVFvRf\",name:\"zzdbSkpFB\",type:\"Identifier\"},{collection:\"SAScVFvRf\",name:\"IdLDCVSHS\",type:\"Identifier\"},{collection:\"SAScVFvRf\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SAScVFvRf\",name:\"UAJGIWsM4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"mECIyWAGM\"},type:\"BinaryOperation\"}},children:(collection11,paginationInfo11,loadMore11)=>/*#__PURE__*/_jsx(_Fragment,{children:collection11?.map(({hbL_Cf5Va:hbL_Cf5VaSAScVFvRf,id:idSAScVFvRf,IdLDCVSHS:IdLDCVSHSSAScVFvRf,Io8_TJm7I:Io8_TJm7ISAScVFvRf,JAos2VVaa:JAos2VVaaSAScVFvRf,Jk4_v3X35:Jk4_v3X35SAScVFvRf,QWf4CTQam:QWf4CTQamSAScVFvRf,UAJGIWsM4:UAJGIWsM4SAScVFvRf,wO4N2oDaR:wO4N2oDaRSAScVFvRf,zzdbSkpFB:zzdbSkpFBSAScVFvRf},index11)=>{hbL_Cf5VaSAScVFvRf??=\"\";QWf4CTQamSAScVFvRf??=\"\";Jk4_v3X35SAScVFvRf??=\"\";Io8_TJm7ISAScVFvRf??=\"\";wO4N2oDaRSAScVFvRf??=\"\";zzdbSkpFBSAScVFvRf??=\"\";IdLDCVSHSSAScVFvRf??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`SAScVFvRf-${idSAScVFvRf}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IdLDCVSHS:IdLDCVSHSSAScVFvRf},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSSAScVFvRf},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined},{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSSAScVFvRf},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined},{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSSAScVFvRf},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined},{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSSAScVFvRf},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{y:(componentViewport?.y||0)+0+5079+0+0+80+131.2+0+612+0+0},Req0o9njW:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 48px)`,y:(componentViewport?.y||0)+0+4773+0+0+60+115.2+0+612+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:564,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 64px)`,y:(componentViewport?.y||0)+0+5777+0+0+160+131.2+0+612+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jfbvjg-container\",nodeId:\"i1jqrZpAO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D3JxvGUhN:{XQAz00h5B:resolvedLinks13[3]},M1RXdqpUt:{variant:\"GLJXCgBjp\",XQAz00h5B:resolvedLinks13[1]},Req0o9njW:{variant:\"b8C7ng8al\",XQAz00h5B:resolvedLinks13[2]}},children:/*#__PURE__*/_jsx(CaseStudyCard,{dcw4SNy5v:hbL_Cf5VaSAScVFvRf,dHaX1RNMc:Io8_TJm7ISAScVFvRf,dmX6bPj5l:\"mz9fbx\",height:\"100%\",I1RstoJAm:toResponsiveImage(JAos2VVaaSAScVFvRf),id:\"i1jqrZpAO\",IDtwLRZ95:QWf4CTQamSAScVFvRf,jGI1LGOcB:enumToDisplayNameFunctions[\"UAJGIWsM4\"]?.(UAJGIWsM4SAScVFvRf,activeLocale),layoutId:\"i1jqrZpAO\",lBxFOKlnd:\"var(--token-78c84348-4e7a-408b-88d2-ec1c36863a4a, rgb(246, 246, 246))\",style:{width:\"100%\"},UMIlszHET:wO4N2oDaRSAScVFvRf,variant:\"t9TmAn4mK\",width:\"100%\",XQAz00h5B:resolvedLinks13[0],z2K8W606D:Jk4_v3X35SAScVFvRf,zt1_e9LXE:zzdbSkpFBSAScVFvRf})})})})})})})},idSAScVFvRf);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-240kth\",\"data-framer-name\":\"Insurance\",id:elementId10,ref:ref10,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"afBoAKSwv\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"afBoAKSwv\",name:\"JAos2VVaa\",type:\"Identifier\"},{collection:\"afBoAKSwv\",name:\"UAJGIWsM4\",type:\"Identifier\"},{collection:\"afBoAKSwv\",name:\"hbL_Cf5Va\",type:\"Identifier\"},{collection:\"afBoAKSwv\",name:\"QWf4CTQam\",type:\"Identifier\"},{collection:\"afBoAKSwv\",name:\"Jk4_v3X35\",type:\"Identifier\"},{collection:\"afBoAKSwv\",name:\"Io8_TJm7I\",type:\"Identifier\"},{collection:\"afBoAKSwv\",name:\"wO4N2oDaR\",type:\"Identifier\"},{collection:\"afBoAKSwv\",name:\"zzdbSkpFB\",type:\"Identifier\"},{collection:\"afBoAKSwv\",name:\"IdLDCVSHS\",type:\"Identifier\"},{collection:\"afBoAKSwv\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"afBoAKSwv\",name:\"UAJGIWsM4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"jDa2mEXf6\"},type:\"BinaryOperation\"}},children:(collection12,paginationInfo12,loadMore12)=>/*#__PURE__*/_jsx(_Fragment,{children:collection12?.map(({hbL_Cf5Va:hbL_Cf5VaafBoAKSwv,id:idafBoAKSwv,IdLDCVSHS:IdLDCVSHSafBoAKSwv,Io8_TJm7I:Io8_TJm7IafBoAKSwv,JAos2VVaa:JAos2VVaaafBoAKSwv,Jk4_v3X35:Jk4_v3X35afBoAKSwv,QWf4CTQam:QWf4CTQamafBoAKSwv,UAJGIWsM4:UAJGIWsM4afBoAKSwv,wO4N2oDaR:wO4N2oDaRafBoAKSwv,zzdbSkpFB:zzdbSkpFBafBoAKSwv},index12)=>{hbL_Cf5VaafBoAKSwv??=\"\";QWf4CTQamafBoAKSwv??=\"\";Jk4_v3X35afBoAKSwv??=\"\";Io8_TJm7IafBoAKSwv??=\"\";wO4N2oDaRafBoAKSwv??=\"\";zzdbSkpFBafBoAKSwv??=\"\";IdLDCVSHSafBoAKSwv??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`afBoAKSwv-${idafBoAKSwv}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IdLDCVSHS:IdLDCVSHSafBoAKSwv},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSafBoAKSwv},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined},{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSafBoAKSwv},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined},{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSafBoAKSwv},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined},{href:{pathVariables:{IdLDCVSHS:IdLDCVSHSafBoAKSwv},webPageId:\"j_m5MNzRX\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{y:(componentViewport?.y||0)+0+5079+0+0+80+131.2+0+1224+0+0},Req0o9njW:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 48px)`,y:(componentViewport?.y||0)+0+4773+0+0+60+115.2+0+1224+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:564,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 64px)`,y:(componentViewport?.y||0)+0+5777+0+0+160+131.2+0+1224+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-llay1r-container\",nodeId:\"aHONUQyC4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D3JxvGUhN:{XQAz00h5B:resolvedLinks14[3]},M1RXdqpUt:{variant:\"GLJXCgBjp\",XQAz00h5B:resolvedLinks14[1]},Req0o9njW:{variant:\"b8C7ng8al\",XQAz00h5B:resolvedLinks14[2]}},children:/*#__PURE__*/_jsx(CaseStudyCard,{dcw4SNy5v:hbL_Cf5VaafBoAKSwv,dHaX1RNMc:Io8_TJm7IafBoAKSwv,dmX6bPj5l:\"mz9fbx\",height:\"100%\",I1RstoJAm:toResponsiveImage(JAos2VVaaafBoAKSwv),id:\"aHONUQyC4\",IDtwLRZ95:QWf4CTQamafBoAKSwv,jGI1LGOcB:enumToDisplayNameFunctions[\"UAJGIWsM4\"]?.(UAJGIWsM4afBoAKSwv,activeLocale),layoutId:\"aHONUQyC4\",lBxFOKlnd:\"var(--token-78c84348-4e7a-408b-88d2-ec1c36863a4a, rgb(246, 246, 246))\",style:{width:\"100%\"},UMIlszHET:wO4N2oDaRafBoAKSwv,variant:\"t9TmAn4mK\",width:\"100%\",XQAz00h5B:resolvedLinks14[0],z2K8W606D:Jk4_v3X35afBoAKSwv,zt1_e9LXE:zzdbSkpFBafBoAKSwv})})})})})})})},idafBoAKSwv);})})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"boKfBR3tb\"},implicitPathVariables:undefined},{href:{webPageId:\"boKfBR3tb\"},implicitPathVariables:undefined},{href:{webPageId:\"boKfBR3tb\"},implicitPathVariables:undefined},{href:{webPageId:\"boKfBR3tb\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{y:(componentViewport?.y||0)+0+5079+0+0+80+1983.2},Req0o9njW:{y:(componentViewport?.y||0)+0+4773+0+0+60+1951.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,y:(componentViewport?.y||0)+0+5777+0+0+160+1983.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ur84et-container\",nodeId:\"Efh1UgjtK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D3JxvGUhN:{WNK4HAV8n:resolvedLinks15[3]},M1RXdqpUt:{WNK4HAV8n:resolvedLinks15[1]},Req0o9njW:{WNK4HAV8n:resolvedLinks15[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Efh1UgjtK\",layoutId:\"Efh1UgjtK\",R0KHc5S63:\"See All Projects\",TGP1vXX1t:true,variant:\"BUXJ4umMN\",width:\"100%\",WNK4HAV8n:resolvedLinks15[0]})})})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation19,className:\"framer-j65qcg\",\"data-framer-appear-id\":\"j65qcg\",\"data-framer-name\":\"Testimonials\",id:elementId11,initial:animation18,optimized:true,ref:ref12,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11bixmm\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 60px)`,y:(componentViewport?.y||0)+0+7284.2+0+0+120+0},Req0o9njW:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 48px)`,y:(componentViewport?.y||0)+0+6906.2+0+0+60+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:458,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 64px)`,y:(componentViewport?.y||0)+0+8072.2+0+0+120+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yxmll4-container\",nodeId:\"UQnMWqlfV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{variant:\"o3mwHKCMy\"},Req0o9njW:{variant:\"o3mwHKCMy\"}},children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"UQnMWqlfV\",layoutId:\"UQnMWqlfV\",style:{width:\"100%\"},variant:\"E4OAHbhow\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{y:(componentViewport?.y||0)+0+7982.2},Req0o9njW:{y:(componentViewport?.y||0)+0+7484.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:470,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8770.2,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation20,className:\"framer-1iuqj2z-container\",\"data-framer-appear-id\":\"1iuqj2z\",initial:animation21,nodeId:\"ZFD4cY1QJ\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M1RXdqpUt:{variant:\"XSE1o8_ij\"},Req0o9njW:{variant:\"wlrwa93Vg\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"ZFD4cY1QJ\",layoutId:\"ZFD4cY1QJ\",style:{width:\"100%\"},variant:\"OAxnP_Ttd\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-89mVM.framer-lux5qc, .framer-89mVM .framer-lux5qc { display: block; }\",\".framer-89mVM.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: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-89mVM .framer-1crzo47 { align-content: flex-start; align-items: flex-start; background-color: #8e84ff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-89mVM .framer-1xbevfb { align-content: center; align-items: center; background-color: #fefffe; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-89mVM .framer-yn8d5q-container { flex: none; height: auto; position: relative; width: 100%; z-index: 9; }\",\".framer-89mVM .framer-wb54bd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-89mVM .framer-16y955e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1320px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-89mVM .framer-5vfd6x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-89mVM .framer-1ce53bt, .framer-89mVM .framer-1frg8so, .framer-89mVM .framer-12tn4wi, .framer-89mVM .framer-1xz6o43 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-89mVM .framer-qpznpx, .framer-89mVM .framer-ptx6gs, .framer-89mVM .framer-1d7qh14, .framer-89mVM .framer-1mskj6l, .framer-89mVM .framer-1pi7rt9, .framer-89mVM .framer-j2zctv { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-89mVM .framer-1u7s1ni { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1040px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-89mVM .framer-1evo4d3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 840px; padding: 0px; position: relative; width: 100%; }\",\".framer-89mVM .framer-hzz46f-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-89mVM .framer-103drnh-container, .framer-89mVM .framer-1pel4za-container { flex: none; height: 300px; position: relative; width: 100%; }\",\".framer-89mVM .framer-u55bex, .framer-89mVM .framer-1cskga5, .framer-89mVM .framer-8q6dcj, .framer-89mVM .framer-1grp5k5, .framer-89mVM .framer-12r93pc, .framer-89mVM .framer-12n55g1, .framer-89mVM .framer-8wkyg0, .framer-89mVM .framer-f6tm7i, .framer-89mVM .framer-dpbwlo, .framer-89mVM .framer-1u2x8fu { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-89mVM .framer-1hgwsmv-container { flex: none; height: 341px; position: relative; width: 330px; }\",\".framer-89mVM .framer-1rhbh7-container, .framer-89mVM .framer-i0661e-container, .framer-89mVM .framer-xszddg-container, .framer-89mVM .framer-12uwp3b-container, .framer-89mVM .framer-13x3o3y-container, .framer-89mVM .framer-1i9z92a-container, .framer-89mVM .framer-1aoofdc-container, .framer-89mVM .framer-qi40ug-container { flex: none; height: 300px; position: relative; width: auto; }\",\".framer-89mVM .framer-19z4ma4-container { flex: none; height: 338px; position: relative; width: 330px; }\",\".framer-89mVM .framer-aln3x2 { align-content: center; align-items: center; background: linear-gradient(197deg, var(--token-22ce594c-99b7-45bc-8570-d5c29963f338, #262626) 1.1920998034662671e-14%, var(--token-22ce594c-99b7-45bc-8570-d5c29963f338, rgb(38, 38, 38)) 101.44355949690332%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-89mVM .framer-1yxxvq1 { align-content: flex-start; align-items: flex-start; background: linear-gradient(233deg, #242424 0%, rgb(0, 0, 0) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1536px; overflow: visible; padding: 120px 32px 120px 32px; position: relative; width: 100%; }\",\".framer-89mVM .framer-1ioq3io { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 60px; width: 1px; z-index: 1; }\",\".framer-89mVM .framer-1ec7r8a, .framer-89mVM .framer-1c3w0pt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-89mVM .framer-amqdv5, .framer-89mVM .framer-1lxx76k, .framer-89mVM .framer-1qezxzk, .framer-89mVM .framer-1c4rjsk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-89mVM .framer-5y81pj-container, .framer-89mVM .framer-eoqsjn-container, .framer-89mVM .framer-23i72-container, .framer-89mVM .framer-1qr1v6k-container, .framer-89mVM .framer-jjbvgp-container, .framer-89mVM .framer-1jfbvjg-container, .framer-89mVM .framer-llay1r-container, .framer-89mVM .framer-yxmll4-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-89mVM .framer-phuqjq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-89mVM .framer-bsge3f { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 256px; height: min-content; justify-content: flex-start; overflow: visible; padding: 256px 0px 120px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-89mVM .framer-1dwias0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 30px 40px 30px; position: relative; width: 478px; }\",\".framer-89mVM .framer-1wjmccd { -webkit-filter: blur(10px); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 0px; filter: blur(10px); flex: none; mix-blend-mode: saturation; opacity: 0.19; overflow: hidden; position: absolute; right: -56px; top: -17px; width: 412px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-89mVM .framer-13ub3j6, .framer-89mVM .framer-14e7p6h, .framer-89mVM .framer-1naflpr, .framer-89mVM .framer-19sy2g5, .framer-89mVM .framer-1hxc6mh, .framer-89mVM .framer-75era5, .framer-89mVM .framer-1vt1fm8, .framer-89mVM .framer-gnn8f { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-89mVM .framer-3hql4w, .framer-89mVM .framer-14yybxq, .framer-89mVM .framer-zoa4o0 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 318px; overflow: hidden; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-89mVM .framer-1cw12p0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 30px 40px 30px; position: relative; width: 478px; }\",\".framer-89mVM .framer-45ixjv { -webkit-filter: blur(10px); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 0px; filter: blur(10px); flex: none; mix-blend-mode: saturation; opacity: 0.19; overflow: hidden; position: absolute; right: -65px; top: -17px; width: 412px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-89mVM .framer-1mc741w, .framer-89mVM .framer-18298c7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 40px 30px 40px 30px; position: relative; width: 478px; }\",\".framer-89mVM .framer-1n50j30, .framer-89mVM .framer-1ljg0m7 { -webkit-filter: blur(10px); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 0px; filter: blur(10px); flex: none; mix-blend-mode: saturation; opacity: 0.19; overflow: hidden; position: absolute; right: -60px; top: -17px; width: 412px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-89mVM .framer-1e4yo4e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 87%; }\",\".framer-89mVM .framer-d63xgf { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 318px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-89mVM .framer-fs6t14 { align-content: center; align-items: center; background-color: var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, #fefffe); 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%; z-index: 2; }\",\".framer-89mVM .framer-10quyax { align-content: center; align-items: center; background: linear-gradient(180deg, #fefffe 0%, rgba(254, 255, 254, 0) 100%); border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1536px; overflow: visible; padding: 160px 32px 90px 32px; position: relative; width: 100%; }\",\".framer-89mVM .framer-8hg8xv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-89mVM .framer-ahkl9t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-89mVM .framer-xnotby { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: sticky; top: 100px; width: 100%; z-index: 1; }\",\".framer-89mVM .framer-ijd17o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: sticky; top: 130px; width: 100%; z-index: 1; }\",\".framer-89mVM .framer-240kth { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: sticky; top: 170px; width: 100%; z-index: 1; }\",\".framer-89mVM .framer-1ur84et-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-89mVM .framer-j65qcg { align-content: center; align-items: center; background-color: var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, #fefffe); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-89mVM .framer-11bixmm { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1536px; overflow: visible; padding: 120px 32px 120px 32px; position: relative; width: 100%; }\",\".framer-89mVM .framer-1iuqj2z-container { flex: none; height: auto; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 810px) and (max-width: 1279px) { .framer-89mVM.framer-72rtr7 { width: 810px; } .framer-89mVM .framer-16y955e { padding: 0px 30px 0px 30px; } .framer-89mVM .framer-1yxxvq1 { flex-direction: column; gap: 48px; overflow: hidden; padding: 120px 0px 60px 0px; } .framer-89mVM .framer-1ioq3io { flex: none; gap: 32px; padding: 0px 30px 0px 30px; position: relative; top: unset; width: 100%; } .framer-89mVM .framer-phuqjq { flex: none; width: 100%; } .framer-89mVM .framer-bsge3f { align-content: flex-start; align-items: flex-start; gap: 40px; padding: 40px 30px 60px 30px; } .framer-89mVM .framer-1dwias0, .framer-89mVM .framer-1cw12p0, .framer-89mVM .framer-1mc741w, .framer-89mVM .framer-18298c7 { padding: 40px 0px 40px 0px; width: 100%; } .framer-89mVM .framer-10quyax { padding: 80px 32px 80px 32px; } .framer-89mVM .framer-11bixmm { padding: 120px 30px 120px 30px; }}\",\"@media (max-width: 809px) { .framer-89mVM.framer-72rtr7 { width: 390px; } .framer-89mVM .framer-1crzo47 { order: 0; overflow: hidden; } .framer-89mVM .framer-wb54bd { gap: 64px; padding: 40px 0px 80px 0px; } .framer-89mVM .framer-16y955e { gap: 40px; padding: 0px 24px 0px 24px; } .framer-89mVM .framer-aln3x2 { order: 1; overflow: hidden; padding: 0px; } .framer-89mVM .framer-1yxxvq1 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex-direction: column; gap: 32px; padding: 80px 24px 0px 24px; } .framer-89mVM .framer-1ioq3io { flex: none; gap: 24px; position: relative; top: unset; width: 100%; } .framer-89mVM .framer-phuqjq { flex: none; width: 100%; } .framer-89mVM .framer-bsge3f { gap: 20px; padding: 40px 0px 60px 0px; } .framer-89mVM .framer-1dwias0 { gap: 32px; justify-content: center; padding: 40px 0px 40px 0px; width: 100%; } .framer-89mVM .framer-1lxx76k, .framer-89mVM .framer-1qezxzk, .framer-89mVM .framer-1e4yo4e, .framer-89mVM .framer-1c4rjsk { gap: 16px; } .framer-89mVM .framer-1cw12p0 { justify-content: center; padding: 40px 0px 40px 0px; width: 100%; } .framer-89mVM .framer-1mc741w, .framer-89mVM .framer-18298c7 { padding: 40px 0px 40px 0px; width: 100%; } .framer-89mVM .framer-fs6t14 { order: 2; } .framer-89mVM .framer-10quyax { gap: 48px; padding: 60px 24px 60px 24px; } .framer-89mVM .framer-xnotby { top: 30px; } .framer-89mVM .framer-ijd17o { top: 50px; } .framer-89mVM .framer-240kth { top: 90px; } .framer-89mVM .framer-j65qcg { order: 3; overflow: hidden; } .framer-89mVM .framer-11bixmm { gap: 32px; padding: 60px 24px 60px 24px; } .framer-89mVM .framer-1iuqj2z-container { order: 5; }}\",\"@media (min-width: 1920px) { .framer-89mVM.framer-72rtr7 { justify-content: center; width: 1920px; } .framer-89mVM .framer-aln3x2 { background: linear-gradient(197deg, #242424 1.1920998034662671e-14%, rgb(0, 0, 0) 101.44355949690332%); padding: 0px 110px 40px 110px; } .framer-89mVM .framer-1yxxvq1 { padding: 120px 60px 120px 60px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8795\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"M1RXdqpUt\":{\"layout\":[\"fixed\",\"auto\"]},\"Req0o9njW\":{\"layout\":[\"fixed\",\"auto\"]},\"D3JxvGUhN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"WEM34FbJ0\":{\"pattern\":\":WEM34FbJ0\",\"name\":\"hero-section\"},\"hg6M3lLKH\":{\"pattern\":\":hg6M3lLKH\",\"name\":\"service\"},\"g1xn4RwIX\":{\"pattern\":\":g1xn4RwIX\",\"name\":\"section1\"},\"DW5qkDhtJ\":{\"pattern\":\":DW5qkDhtJ\",\"name\":\"nocode\"},\"khEnb5Sxq\":{\"pattern\":\":khEnb5Sxq\",\"name\":\"productdesign\"},\"FbNKkQFFK\":{\"pattern\":\":FbNKkQFFK\",\"name\":\"uiux\"},\"M9ysZ9dDz\":{\"pattern\":\":M9ysZ9dDz\",\"name\":\"product-management\"},\"LnPuSG6vw\":{\"pattern\":\":LnPuSG6vw\",\"name\":\"case-study\"},\"wxqWgP7ZW\":{\"pattern\":\":wxqWgP7ZW\",\"name\":\"card1\"},\"SAScVFvRf\":{\"pattern\":\":SAScVFvRf\",\"name\":\"card3\"},\"afBoAKSwv\":{\"pattern\":\":afBoAKSwv\",\"name\":\"card2\"},\"mj7JsnLhO\":{\"pattern\":\":mj7JsnLhO\",\"name\":\"testimonials\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-89mVM\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8795,width:1280};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Genova Black\",source:\"custom\",url:\"https://framerusercontent.com/assets/aIvNS1WPktNG1VM5LBiF12xfUKI.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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavbarFonts,...PrimaryCTAFonts,...CaseStudyHeroFonts,...TickerFonts,...ServicesScrollAnimationFonts,...CaseStudyCardFonts,...ButtonFonts,...TestimonialFonts,...SectionFooterFonts,...ButtonSeeProjectFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1280\",\"framerScrollSections\":\"{\\\"WEM34FbJ0\\\":{\\\"pattern\\\":\\\":WEM34FbJ0\\\",\\\"name\\\":\\\"hero-section\\\"},\\\"hg6M3lLKH\\\":{\\\"pattern\\\":\\\":hg6M3lLKH\\\",\\\"name\\\":\\\"service\\\"},\\\"g1xn4RwIX\\\":{\\\"pattern\\\":\\\":g1xn4RwIX\\\",\\\"name\\\":\\\"section1\\\"},\\\"DW5qkDhtJ\\\":{\\\"pattern\\\":\\\":DW5qkDhtJ\\\",\\\"name\\\":\\\"nocode\\\"},\\\"khEnb5Sxq\\\":{\\\"pattern\\\":\\\":khEnb5Sxq\\\",\\\"name\\\":\\\"productdesign\\\"},\\\"FbNKkQFFK\\\":{\\\"pattern\\\":\\\":FbNKkQFFK\\\",\\\"name\\\":\\\"uiux\\\"},\\\"M9ysZ9dDz\\\":{\\\"pattern\\\":\\\":M9ysZ9dDz\\\",\\\"name\\\":\\\"product-management\\\"},\\\"LnPuSG6vw\\\":{\\\"pattern\\\":\\\":LnPuSG6vw\\\",\\\"name\\\":\\\"case-study\\\"},\\\"wxqWgP7ZW\\\":{\\\"pattern\\\":\\\":wxqWgP7ZW\\\",\\\"name\\\":\\\"card1\\\"},\\\"SAScVFvRf\\\":{\\\"pattern\\\":\\\":SAScVFvRf\\\",\\\"name\\\":\\\"card3\\\"},\\\"afBoAKSwv\\\":{\\\"pattern\\\":\\\":afBoAKSwv\\\",\\\"name\\\":\\\"card2\\\"},\\\"mj7JsnLhO\\\":{\\\"pattern\\\":\\\":mj7JsnLhO\\\",\\\"name\\\":\\\"testimonials\\\"}}\",\"framerIntrinsicHeight\":\"8795\",\"framerColorSyntax\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M1RXdqpUt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Req0o9njW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D3JxvGUhN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "c", "i", "h", "u", "f", "l", "g", "glide", "a", "o", "d", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "createGeneratorEasing", "e", "t", "o", "getGenerator", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "i", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "dispatchViewEvent", "se", "o", "i", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "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", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "kCh3xRGWK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText", "css", "FramernawJXCFLT", "withCSS", "nawJXCFLT_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MaterialFonts", "getFonts", "Icon", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "e7Q9QxIo_", "J_7NHWGmo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText", "ComponentViewportProvider", "css", "FrameroBkz2q2f5", "withCSS", "oBkz2q2f5_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", "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", "css", "FramerYWo9Uc8PZ", "withCSS", "YWo9Uc8PZ_default", "addPropertyControls", "ControlType", "addFonts", "CaseStudyLogoFonts", "getFonts", "YWo9Uc8PZ_default", "ButtonOutlineFonts", "oBkz2q2f5_default", "CaseStudyLogoControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "toResponsiveImage", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "category", "height", "id", "imageBg", "link", "logo", "tap", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "WmZa67Jxj", "gKViWC83g", "ug4pzbQjD", "N8gCO_Sg9", "jpEWoGfmm", "DImposwh6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1omjgai", "args", "onMouseLeavek24cyq", "onMouseEnteregim8c", "onMouseLeaverday9z", "onTap1eg6paw", "onTap1vl5f7c", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerNyZ59OgXS", "withCSS", "NyZ59OgXS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MaterialFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "icon", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "R0KHc5S63", "WNK4HAV8n", "TGP1vXX1t", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText", "ComponentViewportProvider", "css", "Framerrd_Telec1", "withCSS", "rd_Telec1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MaterialFonts", "getFonts", "Icon", "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", "icon", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "R0KHc5S63", "WNK4HAV8n", "TGP1vXX1t", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText", "ComponentViewportProvider", "css", "FramerZobC2_5vE", "withCSS", "ZobC2_5vE_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavbarFonts", "getFonts", "YVlg7kpib_default", "MotionDivWithFX", "withFX", "motion", "PrimaryCTAFonts", "Nvt7CrHCq_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "CaseStudyHeroFonts", "NyZ59OgXS_default", "TickerFonts", "Ticker", "ContainerWithFX", "ServicesScrollAnimationFonts", "nawJXCFLT_default", "ServicesScrollAnimationWithVariantAppearEffect", "withVariantAppearEffect", "ImageWithFX", "Image2", "CaseStudyCardFonts", "NxjXTvbkj_default", "MotionDivWithOptimizedAppearEffect", "ButtonFonts", "ZobC2_5vE_default", "TestimonialFonts", "AE4M3VgMI_default", "SectionFooterFonts", "Vwo_Ma58Z_default", "ButtonSeeProjectFonts", "rd_Telec1_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "animation5", "animation6", "transition5", "animation7", "addImageAlt", "image", "alt", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation8", "transition6", "animation9", "animation10", "transition7", "animation11", "animation12", "transition8", "animation13", "animation14", "transition9", "animation15", "transition10", "animation16", "transition11", "animation17", "animation18", "toResponsiveImage", "value", "animation19", "transition12", "animation20", "animation21", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition13", "cursor", "cursor1", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "hbL_Cf5VaJxILy1e1V", "UAJGIWsM4JxILy1e1V", "IdLDCVSHSJxILy1e1V", "idJxILy1e1V", "hbL_Cf5VaEuLni1WGl", "UAJGIWsM4EuLni1WGl", "IdLDCVSHSEuLni1WGl", "idEuLni1WGl", "hbL_Cf5VaoJV6Mlfvh", "UAJGIWsM4oJV6Mlfvh", "IdLDCVSHSoJV6Mlfvh", "idoJV6Mlfvh", "hbL_Cf5VaeOgoHkKwC", "UAJGIWsM4eOgoHkKwC", "IdLDCVSHSeOgoHkKwC", "ideOgoHkKwC", "hbL_Cf5VayPpaROCuq", "UAJGIWsM4yPpaROCuq", "IdLDCVSHSyPpaROCuq", "idyPpaROCuq", "hbL_Cf5VaJqqmqgulP", "UAJGIWsM4JqqmqgulP", "IdLDCVSHSJqqmqgulP", "idJqqmqgulP", "hbL_Cf5VaJSeO3pOrU", "UAJGIWsM4JSeO3pOrU", "IdLDCVSHSJSeO3pOrU", "idJSeO3pOrU", "hbL_Cf5VaFXcmFyx5P", "UAJGIWsM4FXcmFyx5P", "IdLDCVSHSFXcmFyx5P", "idFXcmFyx5P", "hbL_Cf5VasfKHt4pwD", "UAJGIWsM4sfKHt4pwD", "IdLDCVSHSsfKHt4pwD", "idsfKHt4pwD", "hbL_Cf5VaxQOlfrOb9", "UAJGIWsM4xQOlfrOb9", "IdLDCVSHSxQOlfrOb9", "idxQOlfrOb9", "JAos2VVaawxqWgP7ZW", "UAJGIWsM4wxqWgP7ZW", "hbL_Cf5VawxqWgP7ZW", "QWf4CTQamwxqWgP7ZW", "Jk4_v3X35wxqWgP7ZW", "Io8_TJm7IwxqWgP7ZW", "wO4N2oDaRwxqWgP7ZW", "zzdbSkpFBwxqWgP7ZW", "IdLDCVSHSwxqWgP7ZW", "idwxqWgP7ZW", "JAos2VVaaSAScVFvRf", "UAJGIWsM4SAScVFvRf", "hbL_Cf5VaSAScVFvRf", "QWf4CTQamSAScVFvRf", "Jk4_v3X35SAScVFvRf", "Io8_TJm7ISAScVFvRf", "wO4N2oDaRSAScVFvRf", "zzdbSkpFBSAScVFvRf", "IdLDCVSHSSAScVFvRf", "idSAScVFvRf", "JAos2VVaaafBoAKSwv", "UAJGIWsM4afBoAKSwv", "hbL_Cf5VaafBoAKSwv", "QWf4CTQamafBoAKSwv", "Jk4_v3X35afBoAKSwv", "Io8_TJm7IafBoAKSwv", "wO4N2oDaRafBoAKSwv", "zzdbSkpFBafBoAKSwv", "IdLDCVSHSafBoAKSwv", "idafBoAKSwv", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "isDisplayed", "isDisplayed1", "elementId1", "ref2", "isDisplayed2", "ref3", "ref4", "ref5", "ref6", "elementId2", "ref7", "elementId3", "elementId4", "elementId5", "elementId6", "elementId7", "ref8", "ref9", "ref10", "elementId8", "ref11", "elementId9", "elementId10", "elementId11", "ref12", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "PropertyOverrides2", "RichText", "x", "resolvedLinks1", "ChildrenCanSuspend", "AJnD61nr6_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks2", "enumToDisplayNameFunctions", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks3", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks4", "collection3", "paginationInfo3", "loadMore3", "index3", "resolvedLinks5", "collection4", "paginationInfo4", "loadMore4", "index4", "resolvedLinks6", "collection5", "paginationInfo5", "loadMore5", "index5", "resolvedLinks7", "collection6", "paginationInfo6", "loadMore6", "index6", "resolvedLinks8", "collection7", "paginationInfo7", "loadMore7", "index7", "resolvedLinks9", "collection8", "paginationInfo8", "loadMore8", "index8", "resolvedLinks10", "collection9", "paginationInfo9", "loadMore9", "index9", "resolvedLinks11", "getLoadingLazyAtYPosition", "Link", "collection10", "paginationInfo10", "loadMore10", "index10", "resolvedLinks12", "collection11", "paginationInfo11", "loadMore11", "index11", "resolvedLinks13", "collection12", "paginationInfo12", "loadMore12", "index12", "resolvedLinks14", "resolvedLinks15", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
