{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/x0F7JuXuPfliQu7hsUhb/FEqtbQrEHXWbdjPBtCXj/A0MnVXf9v.js", "ssg:https://framerusercontent.com/modules/Ac6BwQMFcc4Nxzl7Zyl0/Ho9agfnNQ3Fcjj09Kocu/Jy99SU8LV.js", "ssg:https://framerusercontent.com/modules/uJazbhujVMvcGyNNU5vV/tLmYt4QWvtYoQs26nDA2/CSKg1C1z6.js", "ssg:https://framerusercontent.com/modules/ueJLTjuc0KXkhmdYSZd6/G41FFvKUn2V3ZBGWPR2Z/KfBOVD2OO.js", "ssg:https://framerusercontent.com/modules/sXuiiX47vtEoJfuu2P2E/NmleV4roS95tFRDQRmgi/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,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (5c5ca28)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,Link,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6xeFxaGBiPQmobx1Wl0K/uRw2LH6WRmCv3irk92Uq/QWBX0Qv95.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/dBXSQK12vjUQWXAJgBdB/6FbuP0aSGbOszPseBjpt/VDGtB_OAj.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={hL7Vxu5xg:{hover:true},sXAV9RH60:{hover:true}};const cycleOrder=[\"My8uS6n1Y\",\"kXBsepMjQ\",\"TKyTiWnwZ\",\"hL7Vxu5xg\",\"sXAV9RH60\",\"NWGVZOLk4\"];const serializationHash=\"framer-TcXQs\";const variantClassNames={hL7Vxu5xg:\"framer-v-10ctzu6\",kXBsepMjQ:\"framer-v-1v5txtj\",My8uS6n1Y:\"framer-v-cg13wm\",NWGVZOLk4:\"framer-v-1ufikw6\",sXAV9RH60:\"framer-v-19de2co\",TKyTiWnwZ:\"framer-v-1ezhnjm\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Mobile Responsive\":\"kXBsepMjQ\",\"Variant 6\":\"NWGVZOLk4\",\"With Thumbnail_Horizontal\":\"sXAV9RH60\",\"With Thumbnail_Vertical\":\"hL7Vxu5xg\",Base:\"My8uS6n1Y\",Tablet:\"TKyTiWnwZ\"};const getProps=({coverImage,height,highlight,id,link,projectTitle,width,year,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,dmmQtxZHo:link!==null&&link!==void 0?link:props.dmmQtxZHo,fAN9Zkitk:(_ref=highlight!==null&&highlight!==void 0?highlight:props.fAN9Zkitk)!==null&&_ref!==void 0?_ref:\"Online magazine that provides the latest information on global fashion trends, events, lifestyle tips, and much more\",itTUqP9fX:(_ref1=coverImage!==null&&coverImage!==void 0?coverImage:props.itTUqP9fX)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/o8BCpsopBaPU0euy7A1Y8R7rpiE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/o8BCpsopBaPU0euy7A1Y8R7rpiE.png?scale-down-to=512 512w, https://framerusercontent.com/images/o8BCpsopBaPU0euy7A1Y8R7rpiE.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/o8BCpsopBaPU0euy7A1Y8R7rpiE.png 2000w\"},j9aRg9TC8:(_ref2=year!==null&&year!==void 0?year:props.j9aRg9TC8)!==null&&_ref2!==void 0?_ref2:\"2023\",kQu4cl7eA:(_ref3=projectTitle!==null&&projectTitle!==void 0?projectTitle:props.kQu4cl7eA)!==null&&_ref3!==void 0?_ref3:\"Zenith magazine website\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"My8uS6n1Y\"};};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,kQu4cl7eA,fAN9Zkitk,dmmQtxZHo,itTUqP9fX,j9aRg9TC8,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"My8uS6n1Y\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"hL7Vxu5xg-hover\",\"sXAV9RH60-hover\"].includes(gestureVariant))return true;if([\"hL7Vxu5xg\",\"sXAV9RH60\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"kXBsepMjQ\",\"NWGVZOLk4\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"hL7Vxu5xg-hover\",\"sXAV9RH60-hover\"].includes(gestureVariant))return true;if([\"kXBsepMjQ\",\"hL7Vxu5xg\",\"sXAV9RH60\",\"NWGVZOLk4\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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:transition,children:/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({sXAV9RH60:{href:dmmQtxZHo,openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-cg13wm\",className,classNames)} framer-37wkat`,\"data-framer-name\":\"Base\",layoutDependency:layoutDependency,layoutId:\"My8uS6n1Y\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-9ea1f747-e316-4d97-ae26-27318d46e2af, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{\"hL7Vxu5xg-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},\"sXAV9RH60-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},hL7Vxu5xg:{backgroundColor:\"rgba(0, 0, 0, 0)\"},kXBsepMjQ:{backgroundColor:\"rgba(0, 0, 0, 0)\"},NWGVZOLk4:{backgroundColor:\"rgba(0, 0, 0, 0)\"},sXAV9RH60:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"hL7Vxu5xg-hover\":{\"data-framer-name\":undefined},\"sXAV9RH60-hover\":{\"data-framer-name\":undefined},hL7Vxu5xg:{\"data-framer-name\":\"With Thumbnail_Vertical\"},kXBsepMjQ:{\"data-framer-name\":\"Mobile Responsive\"},NWGVZOLk4:{\"data-framer-name\":\"Variant 6\"},sXAV9RH60:{\"data-framer-name\":\"With Thumbnail_Horizontal\"},TKyTiWnwZ:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.button,{\"aria-label\":\"Read More\",className:\"framer-14z87k\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"nBI93vv8G\",style:{backgroundColor:\"var(--token-9ea1f747-e316-4d97-ae26-27318d46e2af, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:1},variants:{\"hL7Vxu5xg-hover\":{opacity:1},\"sXAV9RH60-hover\":{opacity:1},hL7Vxu5xg:{opacity:0},sXAV9RH60:{opacity:0}},...addPropertyOverrides({sXAV9RH60:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m5b6qt-container\",layoutDependency:layoutDependency,layoutId:\"Km9_c8scD-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a34e3a1a-088e-4874-b71f-929c2f4e2476, rgb(3, 7, 18))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowBendUpRight\",id:\"Km9_c8scD\",layoutId:\"Km9_c8scD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qisqcl\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"Gc0bblLOU\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{hL7Vxu5xg:{backgroundColor:\"var(--token-9ea1f747-e316-4d97-ae26-27318d46e2af, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},kXBsepMjQ:{backgroundColor:\"var(--token-9ea1f747-e316-4d97-ae26-27318d46e2af, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},NWGVZOLk4:{backgroundColor:\"var(--token-9ea1f747-e316-4d97-ae26-27318d46e2af, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},sXAV9RH60:{backgroundColor:\"var(--token-9ea1f747-e316-4d97-ae26-27318d46e2af, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10lgdvg\",\"data-framer-name\":\"Meta\",layoutDependency:layoutDependency,layoutId:\"pOu0f8bTW\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mo5olr\",layoutDependency:layoutDependency,layoutId:\"FUWIkxTfN\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e36sui\",\"data-framer-name\":\"Base Title\",layoutDependency:layoutDependency,layoutId:\"tuatFiAOx\",style:{opacity:1},variants:{\"hL7Vxu5xg-hover\":{opacity:0},\"sXAV9RH60-hover\":{opacity:0}},children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-18zqyt0\",\"data-styles-preset\":\"QWBX0Qv95\",style:{\"--framer-text-alignment\":\"left\"},children:\"Zenith magazine website\"})}),className:\"framer-dlo1en\",\"data-framer-name\":\"Zenith magazine website\",layoutDependency:layoutDependency,layoutId:\"VwojEws4Y\",text:kQu4cl7eA,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1aouv48\",\"data-styles-preset\":\"VDGtB_OAj\",children:\"Online magazine that provides the latest information on global fashion trends, events, lifestyle tips, and much more\"})}),className:\"framer-1ld0oq0\",\"data-framer-name\":\"Online magazine that provides the latest information on global fashion trends, events, lifestyle tips, and much more\",layoutDependency:layoutDependency,layoutId:\"dQHzp0ZOG\",text:fAN9Zkitk,variants:{NWGVZOLk4:{\"--extracted-r6o4lv\":\"var(--token-13ba533c-a5f1-48f4-a6a9-448b0e69a207, rgb(55, 65, 81))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NWGVZOLk4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmFsZXdheS01MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-13ba533c-a5f1-48f4-a6a9-448b0e69a207, rgb(55, 65, 81)))\"},children:\"Online magazine that provides the latest information on global fashion trends, events, lifestyle tips, and much more\"})}),fonts:[\"GF;Raleway-500\"]}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m9m7kq\",layoutDependency:layoutDependency,layoutId:\"jPS3GRXX4\"}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1aouv48\",\"data-styles-preset\":\"VDGtB_OAj\",children:\"2023\"})}),className:\"framer-18ofxij\",\"data-framer-name\":\"2023\",layoutDependency:layoutDependency,layoutId:\"o9Zp1nMi1\",text:j9aRg9TC8,verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"Project Thumbnail\",fit:\"fill\",src:\"https://framerusercontent.com/images/o8BCpsopBaPU0euy7A1Y8R7rpiE.png\",srcSet:\"https://framerusercontent.com/images/o8BCpsopBaPU0euy7A1Y8R7rpiE.png?scale-down-to=512 512w, https://framerusercontent.com/images/o8BCpsopBaPU0euy7A1Y8R7rpiE.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/o8BCpsopBaPU0euy7A1Y8R7rpiE.png 2000w\"},className:\"framer-8vofo2\",\"data-framer-name\":\"Thumbnail 1\",layoutDependency:layoutDependency,layoutId:\"td3HdV0Zy\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:24,borderTopRightRadius:24,filter:\"none\",WebkitFilter:\"none\"},variants:{\"hL7Vxu5xg-hover\":{filter:\"brightness(0.5)\",WebkitFilter:\"brightness(0.5)\"},\"sXAV9RH60-hover\":{filter:\"brightness(0.5)\",WebkitFilter:\"brightness(0.5)\"},hL7Vxu5xg:{borderBottomLeftRadius:24,borderBottomRightRadius:24},kXBsepMjQ:{borderBottomLeftRadius:24,borderBottomRightRadius:24},NWGVZOLk4:{borderBottomLeftRadius:24,borderBottomRightRadius:24},sXAV9RH60:{borderBottomLeftRadius:24,borderBottomRightRadius:24}},...addPropertyOverrides({hL7Vxu5xg:{background:{alt:\"\",fit:\"fill\",sizes:\"min(616px, 100vw)\",...toResponsiveImage(itTUqP9fX)}},kXBsepMjQ:{background:{alt:\"\",fit:\"fill\",sizes:\"min(548px, 100vw)\",...toResponsiveImage(itTUqP9fX)}},NWGVZOLk4:{background:{alt:\"\",fit:\"fill\",sizes:\"min(548px, 100vw)\",...toResponsiveImage(itTUqP9fX)}},sXAV9RH60:{background:{alt:\"\",fit:\"fill\",sizes:\"calc(min(1079px, 100vw) * 0.4588)\",...toResponsiveImage(itTUqP9fX)}}},baseVariant,gestureVariant)})]})})})})});});const css=['.framer-TcXQs[data-border=\"true\"]::after, .framer-TcXQs [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TcXQs.framer-37wkat, .framer-TcXQs .framer-37wkat { display: block; }\",\".framer-TcXQs.framer-cg13wm { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; height: 408px; justify-content: space-between; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 548px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TcXQs .framer-14z87k { flex: none; height: 120px; left: calc(50.00000000000002% - 120px / 2); overflow: visible; position: absolute; top: calc(34.09090909090911% - 120px / 2); width: 120px; z-index: 1; }\",\".framer-TcXQs .framer-1m5b6qt-container { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-TcXQs .framer-qisqcl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 328px; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 468px; }\",\".framer-TcXQs .framer-10lgdvg { 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 0px 0px 0px; position: relative; width: 100%; }\",\".framer-TcXQs .framer-mo5olr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-TcXQs .framer-1e36sui { 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 0px 0px 0px; position: relative; width: 100%; }\",\".framer-TcXQs .framer-dlo1en, .framer-TcXQs .framer-1ld0oq0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TcXQs .framer-m9m7kq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 23px; justify-content: center; min-width: 40px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-TcXQs .framer-18ofxij { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TcXQs .framer-8vofo2 { aspect-ratio: 1.3295454545454546 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TcXQs .framer-mo5olr, .framer-TcXQs .framer-1e36sui, .framer-TcXQs .framer-m9m7kq { gap: 0px; } .framer-TcXQs .framer-mo5olr > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-TcXQs .framer-mo5olr > :first-child, .framer-TcXQs .framer-1e36sui > :first-child { margin-top: 0px; } .framer-TcXQs .framer-mo5olr > :last-child, .framer-TcXQs .framer-1e36sui > :last-child { margin-bottom: 0px; } .framer-TcXQs .framer-1e36sui > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-TcXQs .framer-m9m7kq > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-TcXQs .framer-m9m7kq > :first-child { margin-left: 0px; } .framer-TcXQs .framer-m9m7kq > :last-child { margin-right: 0px; } }\",\".framer-TcXQs.framer-v-1v5txtj.framer-cg13wm, .framer-TcXQs.framer-v-1ufikw6.framer-cg13wm { gap: 16px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; }\",\".framer-TcXQs.framer-v-1v5txtj .framer-qisqcl, .framer-TcXQs.framer-v-1ufikw6 .framer-qisqcl { gap: 56px; height: min-content; justify-content: center; order: 2; padding: 24px 24px 24px 24px; width: 100%; }\",\".framer-TcXQs.framer-v-1v5txtj .framer-8vofo2, .framer-TcXQs.framer-v-1ufikw6 .framer-8vofo2 { aspect-ratio: 1.0418250950570342 / 1; height: var(--framer-aspect-ratio-supported, 526px); order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TcXQs.framer-v-1v5txtj.framer-cg13wm, .framer-TcXQs.framer-v-1v5txtj .framer-qisqcl { gap: 0px; } .framer-TcXQs.framer-v-1v5txtj.framer-cg13wm > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-TcXQs.framer-v-1v5txtj.framer-cg13wm > :first-child, .framer-TcXQs.framer-v-1v5txtj .framer-qisqcl > :first-child { margin-top: 0px; } .framer-TcXQs.framer-v-1v5txtj.framer-cg13wm > :last-child, .framer-TcXQs.framer-v-1v5txtj .framer-qisqcl > :last-child { margin-bottom: 0px; } .framer-TcXQs.framer-v-1v5txtj .framer-qisqcl > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\".framer-TcXQs.framer-v-1ezhnjm.framer-cg13wm { gap: 0px; height: min-content; justify-content: center; padding: 24px 24px 24px 24px; width: 340px; }\",\".framer-TcXQs.framer-v-1ezhnjm .framer-qisqcl { gap: 24px; height: min-content; justify-content: center; width: 100%; }\",\".framer-TcXQs.framer-v-1ezhnjm .framer-10lgdvg { align-content: flex-start; align-items: flex-start; flex-wrap: wrap; }\",\".framer-TcXQs.framer-v-1ezhnjm .framer-m9m7kq { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; flex-direction: column; height: min-content; justify-content: flex-start; min-height: 26px; min-width: unset; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TcXQs.framer-v-1ezhnjm.framer-cg13wm, .framer-TcXQs.framer-v-1ezhnjm .framer-qisqcl, .framer-TcXQs.framer-v-1ezhnjm .framer-m9m7kq { gap: 0px; } .framer-TcXQs.framer-v-1ezhnjm.framer-cg13wm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TcXQs.framer-v-1ezhnjm.framer-cg13wm > :first-child, .framer-TcXQs.framer-v-1ezhnjm .framer-qisqcl > :first-child, .framer-TcXQs.framer-v-1ezhnjm .framer-m9m7kq > :first-child { margin-top: 0px; } .framer-TcXQs.framer-v-1ezhnjm.framer-cg13wm > :last-child, .framer-TcXQs.framer-v-1ezhnjm .framer-qisqcl > :last-child, .framer-TcXQs.framer-v-1ezhnjm .framer-m9m7kq > :last-child { margin-bottom: 0px; } .framer-TcXQs.framer-v-1ezhnjm .framer-qisqcl > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-TcXQs.framer-v-1ezhnjm .framer-m9m7kq > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-TcXQs.framer-v-10ctzu6.framer-cg13wm { gap: 16px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; width: 616px; }\",\".framer-TcXQs.framer-v-10ctzu6 .framer-14z87k { order: 0; }\",\".framer-TcXQs.framer-v-10ctzu6 .framer-1m5b6qt-container, .framer-TcXQs.framer-v-19de2co .framer-1m5b6qt-container { height: 38%; left: calc(50.00000000000002% - 37.5% / 2); top: calc(50.00000000000002% - 37.5% / 2); width: 38%; }\",\".framer-TcXQs.framer-v-10ctzu6 .framer-qisqcl { gap: 32px; height: 244px; justify-content: flex-start; order: 2; padding: 40px 40px 40px 40px; width: 100%; }\",\".framer-TcXQs.framer-v-10ctzu6 .framer-8vofo2 { aspect-ratio: 0.9935483870967742 / 1; height: var(--framer-aspect-ratio-supported, 620px); order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TcXQs.framer-v-10ctzu6.framer-cg13wm, .framer-TcXQs.framer-v-10ctzu6 .framer-qisqcl { gap: 0px; } .framer-TcXQs.framer-v-10ctzu6.framer-cg13wm > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-TcXQs.framer-v-10ctzu6.framer-cg13wm > :first-child, .framer-TcXQs.framer-v-10ctzu6 .framer-qisqcl > :first-child { margin-top: 0px; } .framer-TcXQs.framer-v-10ctzu6.framer-cg13wm > :last-child, .framer-TcXQs.framer-v-10ctzu6 .framer-qisqcl > :last-child { margin-bottom: 0px; } .framer-TcXQs.framer-v-10ctzu6 .framer-qisqcl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-TcXQs.framer-v-19de2co.framer-cg13wm { flex-direction: row; gap: 24px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; text-decoration: none; width: 1079px; }\",\".framer-TcXQs.framer-v-19de2co .framer-14z87k { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 120px); left: 23%; order: 0; top: 50%; }\",\".framer-TcXQs.framer-v-19de2co .framer-qisqcl { align-self: stretch; flex: 1 0 0px; height: auto; order: 2; overflow: hidden; padding: 40px 40px 40px 40px; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TcXQs.framer-v-19de2co .framer-8vofo2 { aspect-ratio: 0.9935483870967742 / 1; height: var(--framer-aspect-ratio-supported, 498px); order: 1; width: 46%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TcXQs.framer-v-19de2co.framer-cg13wm { gap: 0px; } .framer-TcXQs.framer-v-19de2co.framer-cg13wm > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-TcXQs.framer-v-19de2co.framer-cg13wm > :first-child { margin-left: 0px; } .framer-TcXQs.framer-v-19de2co.framer-cg13wm > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TcXQs.framer-v-1ufikw6.framer-cg13wm, .framer-TcXQs.framer-v-1ufikw6 .framer-qisqcl { gap: 0px; } .framer-TcXQs.framer-v-1ufikw6.framer-cg13wm > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-TcXQs.framer-v-1ufikw6.framer-cg13wm > :first-child, .framer-TcXQs.framer-v-1ufikw6 .framer-qisqcl > :first-child { margin-top: 0px; } .framer-TcXQs.framer-v-1ufikw6.framer-cg13wm > :last-child, .framer-TcXQs.framer-v-1ufikw6 .framer-qisqcl > :last-child { margin-bottom: 0px; } .framer-TcXQs.framer-v-1ufikw6 .framer-qisqcl > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\".framer-TcXQs.framer-v-10ctzu6.hover .framer-qisqcl { gap: 0px; }\",\".framer-TcXQs.framer-v-10ctzu6.hover .framer-mo5olr, .framer-TcXQs.framer-v-19de2co.hover .framer-mo5olr { min-height: 200px; }\",\".framer-TcXQs.framer-v-10ctzu6.hover .framer-1e36sui { bottom: -173px; left: 0px; position: absolute; right: 0px; width: unset; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TcXQs.framer-v-10ctzu6.hover .framer-qisqcl { gap: 0px; } .framer-TcXQs.framer-v-10ctzu6.hover .framer-qisqcl > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TcXQs.framer-v-10ctzu6.hover .framer-qisqcl > :first-child { margin-top: 0px; } .framer-TcXQs.framer-v-10ctzu6.hover .framer-qisqcl > :last-child { margin-bottom: 0px; } }\",\".framer-TcXQs.framer-v-19de2co.hover .framer-1e36sui { bottom: -218px; left: 0px; position: absolute; right: 0px; width: unset; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 408\n * @framerIntrinsicWidth 548\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"kXBsepMjQ\":{\"layout\":[\"fixed\",\"auto\"]},\"TKyTiWnwZ\":{\"layout\":[\"fixed\",\"auto\"]},\"hL7Vxu5xg\":{\"layout\":[\"fixed\",\"auto\"]},\"sXAV9RH60\":{\"layout\":[\"fixed\",\"auto\"]},\"NWGVZOLk4\":{\"layout\":[\"fixed\",\"auto\"]},\"Mtnjl_JHD\":{\"layout\":[\"fixed\",\"auto\"]},\"QCIY4UEsP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"kQu4cl7eA\":\"projectTitle\",\"fAN9Zkitk\":\"highlight\",\"dmmQtxZHo\":\"link\",\"itTUqP9fX\":\"coverImage\",\"j9aRg9TC8\":\"year\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerA0MnVXf9v=withCSS(Component,css,\"framer-TcXQs\");export default FramerA0MnVXf9v;FramerA0MnVXf9v.displayName=\"My Works / Base\";FramerA0MnVXf9v.defaultProps={height:408,width:548};addPropertyControls(FramerA0MnVXf9v,{variant:{options:[\"My8uS6n1Y\",\"kXBsepMjQ\",\"TKyTiWnwZ\",\"hL7Vxu5xg\",\"sXAV9RH60\",\"NWGVZOLk4\"],optionTitles:[\"Base\",\"Mobile Responsive\",\"Tablet\",\"With Thumbnail_Vertical\",\"With Thumbnail_Horizontal\",\"Variant 6\"],title:\"Variant\",type:ControlType.Enum},kQu4cl7eA:{defaultValue:\"Zenith magazine website\",displayTextArea:false,title:\"Project Title\",type:ControlType.String},fAN9Zkitk:{defaultValue:\"Online magazine that provides the latest information on global fashion trends, events, lifestyle tips, and much more\",displayTextArea:false,title:\"Highlight\",type:ControlType.String},dmmQtxZHo:{title:\"Link\",type:ControlType.Link},itTUqP9fX:{__defaultAssetReference:\"data:framer/asset-reference,o8BCpsopBaPU0euy7A1Y8R7rpiE.png?originalFilename=Laptop_Mockup+2+1.png&preferredSize=auto\",title:\"Cover Image\",type:ControlType.ResponsiveImage},j9aRg9TC8:{defaultValue:\"2023\",displayTextArea:false,title:\"Year\",type:ControlType.String}});addFonts(FramerA0MnVXf9v,[{family:\"Raleway\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCKNLA3JC9c.woff2\",weight:\"500\"},...PhosphorFonts,...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerA0MnVXf9v\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"kQu4cl7eA\\\":\\\"projectTitle\\\",\\\"fAN9Zkitk\\\":\\\"highlight\\\",\\\"dmmQtxZHo\\\":\\\"link\\\",\\\"itTUqP9fX\\\":\\\"coverImage\\\",\\\"j9aRg9TC8\\\":\\\"year\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kXBsepMjQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TKyTiWnwZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hL7Vxu5xg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sXAV9RH60\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NWGVZOLk4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Mtnjl_JHD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QCIY4UEsP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"548\",\"framerIntrinsicHeight\":\"408\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e1022ef)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/6xeFxaGBiPQmobx1Wl0K/uRw2LH6WRmCv3irk92Uq/QWBX0Qv95.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/dBXSQK12vjUQWXAJgBdB/6FbuP0aSGbOszPseBjpt/VDGtB_OAj.js\";const RichTextWithFX=withFX(RichText);const ImageWithFX=withFX(Image);const cycleOrder=[\"L_2HF8W3b\",\"sbBzqTTp3\",\"RQOo_93yR\",\"dGXhyLPWQ\"];const serializationHash=\"framer-3Wtud\";const variantClassNames={dGXhyLPWQ:\"framer-v-15lp2o9\",L_2HF8W3b:\"framer-v-b1hy4p\",RQOo_93yR:\"framer-v-2wpe1b\",sbBzqTTp3:\"framer-v-xa24dz\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation={opacity:0,rotate:0,scale:1,x:-25,y:0};const transition1={delay:.3,duration:1,ease:[.8,-.01,.29,.92],type:\"tween\"};const animation1={opacity:0,rotate:0,scale:1,transition:transition1,x:-25,y:0};const transition2={delay:.5,duration:1,ease:[.8,-.01,.29,.92],type:\"tween\"};const animation2={opacity:0,rotate:0,scale:1,transition:transition2,x:-25,y:0};const transformTemplate1=(_,t)=>`perspective(1200px) ${t}`;const transition3={delay:.7,duration:1,ease:[.8,-.01,.29,.92],type:\"tween\"};const animation3={opacity:0,rotate:0,scale:1,transition:transition3,x:-25,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Full Width Mobile\":\"dGXhyLPWQ\",\"Full width\":\"sbBzqTTp3\",Base:\"L_2HF8W3b\",Horizontal:\"RQOo_93yR\"};const getProps=({climateChange,height,id,image,subtitleColor,subtitleText,titleColor,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,DT8Rv9Smb:(_ref=titleColor!==null&&titleColor!==void 0?titleColor:props.DT8Rv9Smb)!==null&&_ref!==void 0?_ref:\"var(--token-4f44d9e8-7854-4d3d-87b2-4d2b61eddf7d, rgb(3, 93, 80))\",Gz6VnEMCv:(_ref1=subtitleColor!==null&&subtitleColor!==void 0?subtitleColor:props.Gz6VnEMCv)!==null&&_ref1!==void 0?_ref1:\"var(--token-4f44d9e8-7854-4d3d-87b2-4d2b61eddf7d, rgb(3, 93, 80))\",n_Dbb6PVf:(_ref2=subtitleText!==null&&subtitleText!==void 0?subtitleText:props.n_Dbb6PVf)!==null&&_ref2!==void 0?_ref2:\"Global cooperation, bold thinking, and disruptive solutions are required if the world is to achieve net zero carbon emissions by 2050. Countries must share best practices in policy, innovators must get a chance at funding, and businesses and world leaders must keep their pledges (and make new ones). Throughout all of this, the needs of the world\u2019s poorest must be brought to the forefront \u2013 those grappling with the dramatic effects of climate change right now. Effective, smart communications is essential. Climate change is the nexus of many of the issues we work on at Newton Street, including agriculture, health innovation, and women\u2019s empowerment. We know the landscape and how to make an urgent case.\",NSi3WeNDL:image!==null&&image!==void 0?image:props.NSi3WeNDL,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"L_2HF8W3b\",YmWP_LIPl:(_ref4=climateChange!==null&&climateChange!==void 0?climateChange:props.YmWP_LIPl)!==null&&_ref4!==void 0?_ref4:\"Climate Change\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){var _restProps_transformTemplate;const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,YmWP_LIPl,DT8Rv9Smb,n_Dbb6PVf,Gz6VnEMCv,NSi3WeNDL,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"L_2HF8W3b\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapw7ozax=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"RQOo_93yR\");});var _restProps_transformTemplate1;const transforms=(_restProps_transformTemplate1=(_restProps_transformTemplate=restProps.transformTemplate)===null||_restProps_transformTemplate===void 0?void 0:_restProps_transformTemplate.call(restProps,undefined,\"\"))!==null&&_restProps_transformTemplate1!==void 0?_restProps_transformTemplate1:\"\";const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"dGXhyLPWQ\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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:transition,children:/*#__PURE__*/_jsxs(ImageWithFX,{...restProps,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,sizes:\"min(627px, 100vw)\",...toResponsiveImage(NSi3WeNDL)},className:cx(serializationHash,...sharedStyleClassNames,\"framer-b1hy4p\",className,classNames),\"data-framer-name\":\"Base\",layoutDependency:layoutDependency,layoutId:\"L_2HF8W3b\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,filter:\"saturate(1.14)\",WebkitFilter:\"saturate(1.14)\",...style},transformTemplate:(_,t)=>`${transforms} perspective(1200px) ${t}`,...addPropertyOverrides({dGXhyLPWQ:{\"data-framer-name\":\"Full Width Mobile\"},RQOo_93yR:{\"data-framer-name\":\"Horizontal\",\"data-highlight\":true,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,sizes:\"min(947px, 100vw)\",...toResponsiveImage(NSi3WeNDL)},onTap:onTapw7ozax},sbBzqTTp3:{\"data-framer-name\":\"Full width\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-iluzr2\",layoutDependency:layoutDependency,layoutId:\"s9FicxXVL\",style:{background:\"linear-gradient(180deg, rgba(3, 92, 78, 0.6) 0%, rgba(0, 200, 240, 0) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m073ux\",layoutDependency:layoutDependency,layoutId:\"NTXsks4Mt\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-18zqyt0\",\"data-styles-preset\":\"QWBX0Qv95\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--variable-reference-DT8Rv9Smb-Jy99SU8LV))\"},children:\"UI/UX Design\"})}),className:\"framer-qqemr6\",\"data-framer-name\":\"UI/UX Design\",layoutDependency:layoutDependency,layoutId:\"is8Qab1Gf\",style:{\"--extracted-a0htzi\":\"var(--variable-reference-DT8Rv9Smb-Jy99SU8LV)\",\"--variable-reference-DT8Rv9Smb-Jy99SU8LV\":DT8Rv9Smb},text:YmWP_LIPl,transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1aouv48\",\"data-styles-preset\":\"VDGtB_OAj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-Gz6VnEMCv-Jy99SU8LV))\"},children:\"Innovative interfaces that communicate with your audience and clients.\"})}),className:\"framer-128b7nq\",\"data-framer-name\":\"Innovative interfaces that communicate with your audience and clients.\",layoutDependency:layoutDependency,layoutId:\"ak9tNoANK\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-Gz6VnEMCv-Jy99SU8LV)\",\"--variable-reference-Gz6VnEMCv-Jy99SU8LV\":Gz6VnEMCv},text:n_Dbb6PVf,transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=['.framer-3Wtud[data-border=\"true\"]::after, .framer-3Wtud [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3Wtud.framer-110f36, .framer-3Wtud .framer-110f36 { display: block; }\",\".framer-3Wtud.framer-b1hy4p { 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; overflow: visible; padding: 40px 40px 40px 40px; position: relative; width: 627px; }\",\".framer-3Wtud .framer-iluzr2 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-3Wtud .framer-1m073ux { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-3Wtud .framer-qqemr6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3Wtud .framer-128b7nq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3Wtud.framer-b1hy4p, .framer-3Wtud .framer-1m073ux { gap: 0px; } .framer-3Wtud.framer-b1hy4p > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-3Wtud.framer-b1hy4p > :first-child, .framer-3Wtud .framer-1m073ux > :first-child { margin-top: 0px; } .framer-3Wtud.framer-b1hy4p > :last-child, .framer-3Wtud .framer-1m073ux > :last-child { margin-bottom: 0px; } .framer-3Wtud .framer-1m073ux > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-3Wtud.framer-v-xa24dz .framer-128b7nq, .framer-3Wtud.framer-v-15lp2o9 .framer-128b7nq { width: 100%; }\",\".framer-3Wtud.framer-v-2wpe1b.framer-b1hy4p { align-content: center; align-items: center; cursor: pointer; flex-direction: row; width: 947px; }\",\".framer-3Wtud.framer-v-2wpe1b .framer-1m073ux { align-content: center; align-items: center; flex: 1 0 0px; flex-direction: row; width: 1px; }\",\".framer-3Wtud.framer-v-2wpe1b .framer-qqemr6 { width: 50%; }\",\".framer-3Wtud.framer-v-2wpe1b .framer-128b7nq { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3Wtud.framer-v-2wpe1b.framer-b1hy4p, .framer-3Wtud.framer-v-2wpe1b .framer-1m073ux { gap: 0px; } .framer-3Wtud.framer-v-2wpe1b.framer-b1hy4p > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-3Wtud.framer-v-2wpe1b.framer-b1hy4p > :first-child, .framer-3Wtud.framer-v-2wpe1b .framer-1m073ux > :first-child { margin-left: 0px; } .framer-3Wtud.framer-v-2wpe1b.framer-b1hy4p > :last-child, .framer-3Wtud.framer-v-2wpe1b .framer-1m073ux > :last-child { margin-right: 0px; } .framer-3Wtud.framer-v-2wpe1b .framer-1m073ux > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",\".framer-3Wtud.framer-v-15lp2o9.framer-b1hy4p { gap: 24px; padding: 24px 24px 24px 24px; }\",\".framer-3Wtud.framer-v-15lp2o9 .framer-iluzr2 { order: 1; }\",\".framer-3Wtud.framer-v-15lp2o9 .framer-1m073ux { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3Wtud.framer-v-15lp2o9.framer-b1hy4p { gap: 0px; } .framer-3Wtud.framer-v-15lp2o9.framer-b1hy4p > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3Wtud.framer-v-15lp2o9.framer-b1hy4p > :first-child { margin-top: 0px; } .framer-3Wtud.framer-v-15lp2o9.framer-b1hy4p > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 472.5\n * @framerIntrinsicWidth 627\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"sbBzqTTp3\":{\"layout\":[\"fixed\",\"auto\"]},\"RQOo_93yR\":{\"layout\":[\"fixed\",\"auto\"]},\"dGXhyLPWQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"YmWP_LIPl\":\"climateChange\",\"DT8Rv9Smb\":\"titleColor\",\"n_Dbb6PVf\":\"subtitleText\",\"Gz6VnEMCv\":\"subtitleColor\",\"NSi3WeNDL\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerJy99SU8LV=withCSS(Component,css,\"framer-3Wtud\");export default FramerJy99SU8LV;FramerJy99SU8LV.displayName=\"Expertise Card\";FramerJy99SU8LV.defaultProps={height:472.5,width:627};addPropertyControls(FramerJy99SU8LV,{variant:{options:[\"L_2HF8W3b\",\"sbBzqTTp3\",\"RQOo_93yR\",\"dGXhyLPWQ\"],optionTitles:[\"Base\",\"Full width\",\"Horizontal\",\"Full Width Mobile\"],title:\"Variant\",type:ControlType.Enum},YmWP_LIPl:{defaultValue:\"Climate Change\",displayTextArea:false,title:\"Climate Change\",type:ControlType.String},DT8Rv9Smb:{defaultValue:'var(--token-4f44d9e8-7854-4d3d-87b2-4d2b61eddf7d, rgb(3, 93, 80)) /* {\"name\":\"Green Text\"} */',title:\"TitleColor\",type:ControlType.Color},n_Dbb6PVf:{defaultValue:\"Global cooperation, bold thinking, and disruptive solutions are required if the world is to achieve net zero carbon emissions by 2050. Countries must share best practices in policy, innovators must get a chance at funding, and businesses and world leaders must keep their pledges (and make new ones). Throughout all of this, the needs of the world\u2019s poorest must be brought to the forefront \u2013 those grappling with the dramatic effects of climate change right now. Effective, smart communications is essential. Climate change is the nexus of many of the issues we work on at Newton Street, including agriculture, health innovation, and women\u2019s empowerment. We know the landscape and how to make an urgent case.\",displayTextArea:false,title:\"Subtitle Text\",type:ControlType.String},Gz6VnEMCv:{defaultValue:'var(--token-4f44d9e8-7854-4d3d-87b2-4d2b61eddf7d, rgb(3, 93, 80)) /* {\"name\":\"Green Text\"} */',title:\"Subtitle Color\",type:ControlType.Color},NSi3WeNDL:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerJy99SU8LV,[...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJy99SU8LV\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sbBzqTTp3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RQOo_93yR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dGXhyLPWQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"472.5\",\"framerIntrinsicWidth\":\"627\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"YmWP_LIPl\\\":\\\"climateChange\\\",\\\"DT8Rv9Smb\\\":\\\"titleColor\\\",\\\"n_Dbb6PVf\\\":\\\"subtitleText\\\",\\\"Gz6VnEMCv\\\":\\\"subtitleColor\\\",\\\"NSi3WeNDL\\\":\\\"image\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Jy99SU8LV.map", "import{jsx as e,jsxs as t}from\"react/jsx-runtime\";import{addPropertyControls as r,ControlType as a}from\"framer\";import*as n from\"react\";let o=\"aHGdZTxCQ\",i=\"f0qKWVthD\",s=\"TLngBJ0X3\",l=\"qzJwxJcZk\",c=\"RAi61rZbz\",d=\"AMpKhwLEz\",h=\"p1bQXV_Ll\",g=\"R0HurOYl8\",p=\"Hk5Cyfs_g\",m=\"JpQZEnGoY\",u=\"XNbB_XX5z\",y=\"SNW8vkxfu\",f=\"VqRGVuxs3\",v=\"EcVGFpl0L\",w=\"WOo6rnUsP\",V=\"tI2PCmZtB\",k=\"Mo1TCZMjv\",b=\"ntnV9oTUC\",W=\"oMhfV4h52\",j=\"wfLiqA340\",S=\"RYUvgDny_\",U=\"U2NOaRvaK\",F=\"waU_1sUZj\",R=\"OY5G5ZNK7\",L=\"lAVNbWU_S\",M=\"mFziaRoDw\",E=\"OiA_9TE7W\",N=(e,t)=>{if(e&&\"object\"==typeof e)return{...e,alt:t};},A=[{index:0,id:\"AMEB3F8mU\",[o]:1,[i]:!0,[s]:!0,[l]:N({src:\"https://framerusercontent.com/images/wCKwaFYJvEbBsKMyESrbVtDOkWk.jpg\",srcSet:\"https://framerusercontent.com/images/wCKwaFYJvEbBsKMyESrbVtDOkWk.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/wCKwaFYJvEbBsKMyESrbVtDOkWk.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/wCKwaFYJvEbBsKMyESrbVtDOkWk.jpg 1200w\"},\"\"),[c]:N(void 0,\"\"),[d]:\"Unmatched Insight\",[h]:\"Discover the depth behind every story. We delve beyond the surface to bring you ideas that resonate.\",[g]:\"unmatched-insight\",[p]:\"Lille Barrow\",[m]:\"Mar - Jun 2023\",[u]:\"N\\xfcrnberg - Germany\",[y]:/*#__PURE__*/e(n.Fragment,{children:/*#__PURE__*/e(\"h2\",{children:\"The future of fashion magazine\"})}),[f]:\"Insight\",[v]:\"BRANDING\",[w]:\"FRAMER DEVELOPMENT\",[V]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"At Sportly, we believe in making fitness fun and convenient. That's why we've developed a cutting-edge mobile app and dashboard that allows you to effortlessly track and manage your sport activities. Whether you're an avid runner, a devoted cyclist, or a fitness enthusiast, Sportly has got you covered!\"}),/*#__PURE__*/e(\"p\",{children:\"With Sportly, you'll enjoy a user-friendly interface that empowers you to log your workouts, set personal goals, and monitor your achievements. Whether you prefer running, cycling, or engaging in various sports, our app provides detailed insights into your performance, distance covered, calories burned, and much more.\"})]}),[k]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"At Sportly, we believe in making fitness fun and convenient. That's why we've developed a cutting-edge mobile app and dashboard that allows you to effortlessly track and manage your sport activities. Whether you're an avid runner, a devoted cyclist, or a fitness enthusiast, Sportly has got you covered!\"}),/*#__PURE__*/e(\"p\",{children:\"With Sportly, you'll enjoy a user-friendly interface that empowers you to log your workouts, set personal goals, and monitor your achievements. Whether you prefer running, cycling, or engaging in various sports, our app provides detailed insights into your performance, distance covered, calories burned, and much more.\"})]}),[b]:/*#__PURE__*/e(n.Fragment,{children:/*#__PURE__*/e(\"h2\",{children:\"We make an impact through our work\"})}),[W]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"At Sportly, we believe in making fitness fun and convenient. That's why we've developed a cutting-edge mobile app and dashboard that allows you to effortlessly track and manage your sport activities. Whether you're an avid runner, a devoted cyclist, or a fitness enthusiast, Sportly has got you covered!\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"With Sportly, you'll enjoy a user-friendly interface that empowers you to log your workouts, set personal goals, and monitor your achievements. Whether you prefer running, cycling, or engaging in various sports, our app provides detailed insights into your performance, distance covered, calories burned, and much more.\"})]}),[j]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"$22.8M\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Total raised in funding so far\"})]}),[S]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"+24%\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Conversion rate with new design\"})]}),[U]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"~400K\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Daily users enjoying Sportly\"})]}),[F]:N({src:\"https://framerusercontent.com/images/LaBIafiFkUhlvyLEMLiMoOZeVc.jpeg\",srcSet:\"https://framerusercontent.com/images/LaBIafiFkUhlvyLEMLiMoOZeVc.jpeg?scale-down-to=512 512w, https://framerusercontent.com/images/LaBIafiFkUhlvyLEMLiMoOZeVc.jpeg 1000w\"},\"Image 1\"),[R]:N({src:\"https://framerusercontent.com/images/tZ25cLQ2gM7UxkAyWhKkaUVUDVs.jpeg\",srcSet:\"https://framerusercontent.com/images/tZ25cLQ2gM7UxkAyWhKkaUVUDVs.jpeg?scale-down-to=512 512w, https://framerusercontent.com/images/tZ25cLQ2gM7UxkAyWhKkaUVUDVs.jpeg?scale-down-to=1024 1024w, https://framerusercontent.com/images/tZ25cLQ2gM7UxkAyWhKkaUVUDVs.jpeg 1500w\"},\"Image 2\"),[L]:N({src:\"https://framerusercontent.com/images/e8ymtZ2EDQHlParYlVWU3V19YFQ.jpeg\",srcSet:\"https://framerusercontent.com/images/e8ymtZ2EDQHlParYlVWU3V19YFQ.jpeg?scale-down-to=512 512w, https://framerusercontent.com/images/e8ymtZ2EDQHlParYlVWU3V19YFQ.jpeg?scale-down-to=1024 1024w, https://framerusercontent.com/images/e8ymtZ2EDQHlParYlVWU3V19YFQ.jpeg 1500w\"},\"Image 3\"),[M]:N({src:\"https://framerusercontent.com/images/7UVWt3gioe49m4HhReVKB9WFio.jpeg\",srcSet:\"https://framerusercontent.com/images/7UVWt3gioe49m4HhReVKB9WFio.jpeg?scale-down-to=512 512w, https://framerusercontent.com/images/7UVWt3gioe49m4HhReVKB9WFio.jpeg?scale-down-to=1024 1024w, https://framerusercontent.com/images/7UVWt3gioe49m4HhReVKB9WFio.jpeg 1500w\"},\"Image 4\"),[E]:\"\"},{index:1,id:\"kDc6lgXtx\",[o]:2,[i]:!0,[s]:!0,[l]:N({src:\"https://framerusercontent.com/images/Fy7oW82j0XqRMNwJ8jXkRTlCt0.jpg\",srcSet:\"https://framerusercontent.com/images/Fy7oW82j0XqRMNwJ8jXkRTlCt0.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Fy7oW82j0XqRMNwJ8jXkRTlCt0.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Fy7oW82j0XqRMNwJ8jXkRTlCt0.jpg 1200w\"},\"\"),[c]:N(void 0,\"\"),[d]:\"Global Perspective\",[h]:\"Bridging worlds with every word. Our narratives are painted from a palette of diverse viewpoints.\",[g]:\"global-perspective\",[p]:\"Lille Barrow\",[m]:\"Mar - Jun 2023\",[u]:\"N\\xfcrnberg - Germany\",[y]:/*#__PURE__*/e(n.Fragment,{children:/*#__PURE__*/e(\"h2\",{children:\"The future of beauty product\"})}),[f]:\"Reach\",[v]:\"BRANDING\",[w]:\"FRAMER DEVELOPMENT\",[V]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"At Sportly, we believe in making fitness fun and convenient. That's why we've developed a cutting-edge mobile app and dashboard that allows you to effortlessly track and manage your sport activities. Whether you're an avid runner, a devoted cyclist, or a fitness enthusiast, Sportly has got you covered!\"}),/*#__PURE__*/e(\"p\",{children:\"With Sportly, you'll enjoy a user-friendly interface that empowers you to log your workouts, set personal goals, and monitor your achievements. Whether you prefer running, cycling, or engaging in various sports, our app provides detailed insights into your performance, distance covered, calories burned, and much more.\"})]}),[k]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"At Sportly, we believe in making fitness fun and convenient. That's why we've developed a cutting-edge mobile app and dashboard that allows you to effortlessly track and manage your sport activities. Whether you're an avid runner, a devoted cyclist, or a fitness enthusiast, Sportly has got you covered!\"}),/*#__PURE__*/e(\"p\",{children:\"With Sportly, you'll enjoy a user-friendly interface that empowers you to log your workouts, set personal goals, and monitor your achievements. Whether you prefer running, cycling, or engaging in various sports, our app provides detailed insights into your performance, distance covered, calories burned, and much more.\"})]}),[b]:/*#__PURE__*/e(n.Fragment,{children:/*#__PURE__*/e(\"h2\",{children:\"We make an impact through our work\"})}),[W]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"At Sportly, we believe in making fitness fun and convenient. That's why we've developed a cutting-edge mobile app and dashboard that allows you to effortlessly track and manage your sport activities. Whether you're an avid runner, a devoted cyclist, or a fitness enthusiast, Sportly has got you covered!\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"With Sportly, you'll enjoy a user-friendly interface that empowers you to log your workouts, set personal goals, and monitor your achievements. Whether you prefer running, cycling, or engaging in various sports, our app provides detailed insights into your performance, distance covered, calories burned, and much more.\"})]}),[j]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"$22.8M\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Total raised in funding so far\"})]}),[S]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"+24%\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Conversion rate with new design\"})]}),[U]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"~400K\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Daily users enjoying Sportly\"})]}),[F]:N({src:\"https://framerusercontent.com/images/LaBIafiFkUhlvyLEMLiMoOZeVc.jpeg\",srcSet:\"https://framerusercontent.com/images/LaBIafiFkUhlvyLEMLiMoOZeVc.jpeg?scale-down-to=512 512w, https://framerusercontent.com/images/LaBIafiFkUhlvyLEMLiMoOZeVc.jpeg 1000w\"},\"Image 1\"),[R]:N({src:\"https://framerusercontent.com/images/tZ25cLQ2gM7UxkAyWhKkaUVUDVs.jpeg\",srcSet:\"https://framerusercontent.com/images/tZ25cLQ2gM7UxkAyWhKkaUVUDVs.jpeg?scale-down-to=512 512w, https://framerusercontent.com/images/tZ25cLQ2gM7UxkAyWhKkaUVUDVs.jpeg?scale-down-to=1024 1024w, https://framerusercontent.com/images/tZ25cLQ2gM7UxkAyWhKkaUVUDVs.jpeg 1500w\"},\"Image 2\"),[L]:N({src:\"https://framerusercontent.com/images/e8ymtZ2EDQHlParYlVWU3V19YFQ.jpeg\",srcSet:\"https://framerusercontent.com/images/e8ymtZ2EDQHlParYlVWU3V19YFQ.jpeg?scale-down-to=512 512w, https://framerusercontent.com/images/e8ymtZ2EDQHlParYlVWU3V19YFQ.jpeg?scale-down-to=1024 1024w, https://framerusercontent.com/images/e8ymtZ2EDQHlParYlVWU3V19YFQ.jpeg 1500w\"},\"Image 3\"),[M]:N({src:\"https://framerusercontent.com/images/7UVWt3gioe49m4HhReVKB9WFio.jpeg\",srcSet:\"https://framerusercontent.com/images/7UVWt3gioe49m4HhReVKB9WFio.jpeg?scale-down-to=512 512w, https://framerusercontent.com/images/7UVWt3gioe49m4HhReVKB9WFio.jpeg?scale-down-to=1024 1024w, https://framerusercontent.com/images/7UVWt3gioe49m4HhReVKB9WFio.jpeg 1500w\"},\"Image 4\"),[E]:\"\"},{index:2,id:\"gNfri3Z8N\",[o]:3,[i]:!0,[s]:!0,[l]:N({src:\"https://framerusercontent.com/images/lO36EKHA20JB5Tww1NyRjk4RLM.jpg\",srcSet:\"https://framerusercontent.com/images/lO36EKHA20JB5Tww1NyRjk4RLM.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/lO36EKHA20JB5Tww1NyRjk4RLM.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/lO36EKHA20JB5Tww1NyRjk4RLM.jpg 1200w\"},\"\"),[c]:N(void 0,\"\"),[d]:\"Trusted Relationships\",[h]:\"Connecting people, amplifying impact. Our network of partners is the gateway to meaningful dialogue.\",[g]:\"trusted-relationships\",[p]:\"Lille Barrow\",[m]:\"Mar - Jun 2023\",[u]:\"N\\xfcrnberg - Germany\",[y]:/*#__PURE__*/e(n.Fragment,{children:/*#__PURE__*/e(\"h2\",{children:\"The future of POS platform\"})}),[f]:\"Relationships\",[v]:\"BRANDING\",[w]:\"FRAMER DEVELOPMENT\",[V]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"At Sportly, we believe in making fitness fun and convenient. That's why we've developed a cutting-edge mobile app and dashboard that allows you to effortlessly track and manage your sport activities. Whether you're an avid runner, a devoted cyclist, or a fitness enthusiast, Sportly has got you covered!\"}),/*#__PURE__*/e(\"p\",{children:\"With Sportly, you'll enjoy a user-friendly interface that empowers you to log your workouts, set personal goals, and monitor your achievements. Whether you prefer running, cycling, or engaging in various sports, our app provides detailed insights into your performance, distance covered, calories burned, and much more.\"})]}),[k]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"At Sportly, we believe in making fitness fun and convenient. That's why we've developed a cutting-edge mobile app and dashboard that allows you to effortlessly track and manage your sport activities. Whether you're an avid runner, a devoted cyclist, or a fitness enthusiast, Sportly has got you covered!\"}),/*#__PURE__*/e(\"p\",{children:\"With Sportly, you'll enjoy a user-friendly interface that empowers you to log your workouts, set personal goals, and monitor your achievements. Whether you prefer running, cycling, or engaging in various sports, our app provides detailed insights into your performance, distance covered, calories burned, and much more.\"})]}),[b]:/*#__PURE__*/e(n.Fragment,{children:/*#__PURE__*/e(\"h2\",{children:\"We make an impact through our work\"})}),[W]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"At Sportly, we believe in making fitness fun and convenient. That's why we've developed a cutting-edge mobile app and dashboard that allows you to effortlessly track and manage your sport activities. Whether you're an avid runner, a devoted cyclist, or a fitness enthusiast, Sportly has got you covered!\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"With Sportly, you'll enjoy a user-friendly interface that empowers you to log your workouts, set personal goals, and monitor your achievements. Whether you prefer running, cycling, or engaging in various sports, our app provides detailed insights into your performance, distance covered, calories burned, and much more.\"})]}),[j]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"$22.8M\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Total raised in funding so far\"})]}),[S]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"+24%\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Conversion rate with new design\"})]}),[U]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"~400K\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Daily users enjoying Sportly\"})]}),[F]:N(void 0,\"\"),[R]:N(void 0,\"\"),[L]:N(void 0,\"\"),[M]:N(void 0,\"\"),[E]:\"\"},{index:3,id:\"e10uKZKJB\",[o]:4,[i]:!0,[s]:!0,[l]:N({src:\"https://framerusercontent.com/images/aduelhoaulQee2ctLWl1fWmA.jpg\",srcSet:\"https://framerusercontent.com/images/aduelhoaulQee2ctLWl1fWmA.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/aduelhoaulQee2ctLWl1fWmA.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/aduelhoaulQee2ctLWl1fWmA.jpg 1200w\"},\"\"),[c]:N(void 0,\"\"),[d]:\"Authentic Engagement\",[h]:\"Real conversations, genuine voices. Connect with your audience on a level that matters.\",[g]:\"authentic-engagement\",[p]:\"\",[m]:\"\",[u]:\"N\\xfcrnberg - Germany\",[y]:/*#__PURE__*/e(n.Fragment,{children:/*#__PURE__*/e(\"h2\",{children:\"The future of fashion magazine\"})}),[f]:\"Authenticity\",[v]:\"BRANDING\",[w]:\"FRAMER DEVELOPMENT\",[V]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"At Sportly, we believe in making fitness fun and convenient. That's why we've developed a cutting-edge mobile app and dashboard that allows you to effortlessly track and manage your sport activities. Whether you're an avid runner, a devoted cyclist, or a fitness enthusiast, Sportly has got you covered!\"}),/*#__PURE__*/e(\"p\",{children:\"With Sportly, you'll enjoy a user-friendly interface that empowers you to log your workouts, set personal goals, and monitor your achievements. Whether you prefer running, cycling, or engaging in various sports, our app provides detailed insights into your performance, distance covered, calories burned, and much more.\"})]}),[k]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"At Sportly, we believe in making fitness fun and convenient. That's why we've developed a cutting-edge mobile app and dashboard that allows you to effortlessly track and manage your sport activities. Whether you're an avid runner, a devoted cyclist, or a fitness enthusiast, Sportly has got you covered!\"}),/*#__PURE__*/e(\"p\",{children:\"With Sportly, you'll enjoy a user-friendly interface that empowers you to log your workouts, set personal goals, and monitor your achievements. Whether you prefer running, cycling, or engaging in various sports, our app provides detailed insights into your performance, distance covered, calories burned, and much more.\"})]}),[b]:/*#__PURE__*/e(n.Fragment,{children:/*#__PURE__*/e(\"h2\",{children:\"We make an impact through our work\"})}),[W]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"At Sportly, we believe in making fitness fun and convenient. That's why we've developed a cutting-edge mobile app and dashboard that allows you to effortlessly track and manage your sport activities. Whether you're an avid runner, a devoted cyclist, or a fitness enthusiast, Sportly has got you covered!\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"With Sportly, you'll enjoy a user-friendly interface that empowers you to log your workouts, set personal goals, and monitor your achievements. Whether you prefer running, cycling, or engaging in various sports, our app provides detailed insights into your performance, distance covered, calories burned, and much more.\"})]}),[j]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"$22.8M\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Total raised in funding so far\"})]}),[S]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"+24%\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Conversion rate with new design\"})]}),[U]:/*#__PURE__*/t(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"~400K\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Daily users enjoying Sportly\"})]}),[F]:N({src:\"https://framerusercontent.com/images/LaBIafiFkUhlvyLEMLiMoOZeVc.jpeg\",srcSet:\"https://framerusercontent.com/images/LaBIafiFkUhlvyLEMLiMoOZeVc.jpeg?scale-down-to=512 512w, https://framerusercontent.com/images/LaBIafiFkUhlvyLEMLiMoOZeVc.jpeg 1000w\"},\"Image 1\"),[R]:N({src:\"https://framerusercontent.com/images/tZ25cLQ2gM7UxkAyWhKkaUVUDVs.jpeg\",srcSet:\"https://framerusercontent.com/images/tZ25cLQ2gM7UxkAyWhKkaUVUDVs.jpeg?scale-down-to=512 512w, https://framerusercontent.com/images/tZ25cLQ2gM7UxkAyWhKkaUVUDVs.jpeg?scale-down-to=1024 1024w, https://framerusercontent.com/images/tZ25cLQ2gM7UxkAyWhKkaUVUDVs.jpeg 1500w\"},\"Image 2\"),[L]:N({src:\"https://framerusercontent.com/images/e8ymtZ2EDQHlParYlVWU3V19YFQ.jpeg\",srcSet:\"https://framerusercontent.com/images/e8ymtZ2EDQHlParYlVWU3V19YFQ.jpeg?scale-down-to=512 512w, https://framerusercontent.com/images/e8ymtZ2EDQHlParYlVWU3V19YFQ.jpeg?scale-down-to=1024 1024w, https://framerusercontent.com/images/e8ymtZ2EDQHlParYlVWU3V19YFQ.jpeg 1500w\"},\"Image 3\"),[M]:N({src:\"https://framerusercontent.com/images/7UVWt3gioe49m4HhReVKB9WFio.jpeg\",srcSet:\"https://framerusercontent.com/images/7UVWt3gioe49m4HhReVKB9WFio.jpeg?scale-down-to=512 512w, https://framerusercontent.com/images/7UVWt3gioe49m4HhReVKB9WFio.jpeg?scale-down-to=1024 1024w, https://framerusercontent.com/images/7UVWt3gioe49m4HhReVKB9WFio.jpeg 1500w\"},\"Image 4\"),[E]:\"\"}];for(let e of A)Object.freeze(e);r(A,{aHGdZTxCQ:{defaultValue:0,displayStepper:!1,title:\"ID\",type:a.Number},f0qKWVthD:{defaultValue:!0,title:\"Featured\",type:a.Boolean},TLngBJ0X3:{defaultValue:!0,title:\"Highligted\",type:a.Boolean},qzJwxJcZk:{title:\"Cover 1\",type:a.ResponsiveImage},RAi61rZbz:{title:\"Cover 2\",type:a.ResponsiveImage},AMpKhwLEz:{defaultValue:\"\",placeholder:\"Enter Headline\",title:\"Headline\",type:a.String},p1bQXV_Ll:{defaultValue:\"\",placeholder:\"Enter subheadline\",title:\"Subheadline\",type:a.String},R0HurOYl8:{title:\"Slug\",type:a.String},Hk5Cyfs_g:{defaultValue:\"\",placeholder:\"Enter Client Name\",title:\"Client Name\",type:a.String},JpQZEnGoY:{defaultValue:\"\",title:\"Project Time Line\",type:a.String},XNbB_XX5z:{defaultValue:\"\",title:\"Location\",type:a.String},SNW8vkxfu:{defaultValue:\"\",title:\"Overview Content\",type:a.RichText},VqRGVuxs3:{defaultValue:\"\",title:\"Cat 1\",type:a.String},EcVGFpl0L:{defaultValue:\"\",title:\"Cat 2\",type:a.String},WOo6rnUsP:{defaultValue:\"\",title:\"Cat 3\",type:a.String},tI2PCmZtB:{defaultValue:\"\",title:\"Section 2\",type:a.RichText},Mo1TCZMjv:{defaultValue:\"\",title:\"Section 3\",type:a.RichText},ntnV9oTUC:{defaultValue:\"\",title:\"Section 4\",type:a.RichText},oMhfV4h52:{defaultValue:\"\",title:\"Section 5\",type:a.RichText},wfLiqA340:{defaultValue:\"\",title:\"Stat 1\",type:a.RichText},RYUvgDny_:{defaultValue:\"\",title:\"Stat 2\",type:a.RichText},U2NOaRvaK:{defaultValue:\"\",title:\"Stat 3\",type:a.RichText},waU_1sUZj:{title:\"Image 1\",type:a.ResponsiveImage},OY5G5ZNK7:{title:\"Image 2\",type:a.ResponsiveImage},lAVNbWU_S:{title:\"Image 3\",type:a.ResponsiveImage},mFziaRoDw:{title:\"Image 4\",type:a.ResponsiveImage},OiA_9TE7W:{defaultValue:\"\",title:\"Year\",type:a.String}}),A.displayName=\"Work Details\";export default A;export const enumToDisplayNameFunctions={};export const utils={async getSlugByRecordId(e,t){var r;return null===(r=A.find(t=>t.id===e))||void 0===r?void 0:r[g];},async getRecordIdBySlug(e,t){var r;return null===(r=A.find(t=>t[g]===e))||void 0===r?void 0:r.id;}};\nexport const __FramerMetadata__ = {\"exports\":{\"utils\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"data\",\"name\":\"data\",\"annotations\":{\"framerEnumToDisplayNameUtils\":\"2\",\"framerCollectionUtils\":\"1\",\"framerCollectionId\":\"CSKg1C1z6\",\"framerContractVersion\":\"1\",\"framerRecordIdKey\":\"id\",\"framerRecordIndexKey\":\"index\",\"framerRecordIncludedLocalesKey\":\"includedLocales\",\"framerData\":\"\",\"framerSlug\":\"R0HurOYl8\"}},\"enumToDisplayNameFunctions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a96673f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,PathVariablesContext,useConstant,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import WorkDetails from\"https://framerusercontent.com/modules/uJazbhujVMvcGyNNU5vV/tLmYt4QWvtYoQs26nDA2/CSKg1C1z6.js\";const cycleOrder=[\"Y6TjdF0lA\",\"hZ98Ah56t\",\"TEnf20hes\",\"llClpMUPF\",\"VCLIhdy8y\",\"ZvslR8ryt\"];const serializationHash=\"framer-HEZng\";const variantClassNames={hZ98Ah56t:\"framer-v-6872k8\",llClpMUPF:\"framer-v-1kxspdj\",TEnf20hes:\"framer-v-52dnht\",VCLIhdy8y:\"framer-v-3mh9ra\",Y6TjdF0lA:\"framer-v-abcchq\",ZvslR8ryt:\"framer-v-lkbczq\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},llClpMUPF:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},VCLIhdy8y:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},ZvslR8ryt:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};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 humanReadableVariantMap={\"Thumbail 1\":\"Y6TjdF0lA\",\"Thumbail 2\":\"hZ98Ah56t\",\"Thumbail 3\":\"TEnf20hes\",\"Thumbail 4\":\"llClpMUPF\",\"Thumbail 5\":\"VCLIhdy8y\",\"Thumbail 6\":\"ZvslR8ryt\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Y6TjdF0lA\"};};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,qzJwxJcZkDXBvueOrQ,R0HurOYl8DXBvueOrQ,idDXBvueOrQ,qzJwxJcZkwfYZ2C3CN,R0HurOYl8wfYZ2C3CN,idwfYZ2C3CN,qzJwxJcZknpHgkOtim,R0HurOYl8npHgkOtim,idnpHgkOtim,qzJwxJcZkpb_c05Efz,R0HurOYl8pb_c05Efz,idpb_c05Efz,qzJwxJcZkDtXxdFO9c,R0HurOYl8DtXxdFO9c,idDtXxdFO9c,qzJwxJcZkB2ujpj9lD,R0HurOYl8B2ujpj9lD,idB2ujpj9lD,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"Y6TjdF0lA\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isOnCanvas=useIsOnFramerCanvas();const initialVariant=useConstant(()=>variant);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"TEnf20hes\",\"llClpMUPF\",\"VCLIhdy8y\",\"ZvslR8ryt\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"VCLIhdy8y\",\"ZvslR8ryt\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"hZ98Ah56t\",\"TEnf20hes\",\"llClpMUPF\",\"VCLIhdy8y\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"TEnf20hes\",\"llClpMUPF\",\"VCLIhdy8y\",\"ZvslR8ryt\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"VCLIhdy8y\",\"ZvslR8ryt\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"ZvslR8ryt\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-abcchq\",className,classNames),\"data-framer-name\":\"Thumbail 1\",initial:isOnCanvas?variant:initialVariant,layoutDependency:layoutDependency,layoutId:\"Y6TjdF0lA\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({hZ98Ah56t:{\"data-framer-name\":\"Thumbail 2\"},llClpMUPF:{\"data-framer-name\":\"Thumbail 4\"},TEnf20hes:{\"data-framer-name\":\"Thumbail 3\"},VCLIhdy8y:{\"data-framer-name\":\"Thumbail 5\"},ZvslR8ryt:{\"data-framer-name\":\"Thumbail 6\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3c97re\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"jCHjTMbiT\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-b4u79y\",\"data-framer-name\":\"Thumbnail 1\",layoutDependency:layoutDependency,layoutId:\"DXBvueOrQ\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:WorkDetails,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{name:\"qzJwxJcZk\",type:\"Identifier\"},{name:\"R0HurOYl8\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"aHGdZTxCQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:1},type:\"BinaryOperation\"}},children:collection=>collection.map(({qzJwxJcZk:qzJwxJcZkDXBvueOrQ,R0HurOYl8:R0HurOYl8DXBvueOrQ,id:idDXBvueOrQ},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`DXBvueOrQ-${idDXBvueOrQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R0HurOYl8:R0HurOYl8DXBvueOrQ},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",sizes:\"min(548px, 100vw)\",...toResponsiveImage(qzJwxJcZkDXBvueOrQ)},className:\"framer-1ch3soe\",\"data-framer-name\":\"Thumbnail 1\",layoutDependency:layoutDependency,layoutId:\"V2mBvJk0d\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}})})},idDXBvueOrQ);})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ov2zgp\",\"data-framer-name\":\"Thumbnail 2\",layoutDependency:layoutDependency,layoutId:\"wfYZ2C3CN\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:WorkDetails,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{name:\"qzJwxJcZk\",type:\"Identifier\"},{name:\"R0HurOYl8\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"aHGdZTxCQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:2},type:\"BinaryOperation\"}},children:collection1=>collection1.map(({qzJwxJcZk:qzJwxJcZkwfYZ2C3CN,R0HurOYl8:R0HurOYl8wfYZ2C3CN,id:idwfYZ2C3CN},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`wfYZ2C3CN-${idwfYZ2C3CN}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R0HurOYl8:R0HurOYl8wfYZ2C3CN},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",sizes:\"min(548px, 100vw)\",...toResponsiveImage(qzJwxJcZkwfYZ2C3CN)},className:\"framer-ipswsa\",\"data-framer-name\":\"Thumbnail 2\",layoutDependency:layoutDependency,layoutId:\"RLEwpfIAV\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}})})},idwfYZ2C3CN);})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-pelcit\",\"data-framer-name\":\"Thumbnail 3\",layoutDependency:layoutDependency,layoutId:\"npHgkOtim\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:WorkDetails,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{name:\"qzJwxJcZk\",type:\"Identifier\"},{name:\"R0HurOYl8\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"aHGdZTxCQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:3},type:\"BinaryOperation\"}},children:collection2=>collection2.map(({qzJwxJcZk:qzJwxJcZknpHgkOtim,R0HurOYl8:R0HurOYl8npHgkOtim,id:idnpHgkOtim},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`npHgkOtim-${idnpHgkOtim}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R0HurOYl8:R0HurOYl8npHgkOtim},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",...toResponsiveImage(qzJwxJcZknpHgkOtim)},className:\"framer-c57kti\",\"data-framer-name\":\"Thumbnail 3\",layoutDependency:layoutDependency,layoutId:\"SP4sXiJJl\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({hZ98Ah56t:{background:{alt:\"\",fit:\"fill\",sizes:\"min(548px, 100vw)\",...toResponsiveImage(qzJwxJcZknpHgkOtim)}},llClpMUPF:{background:{alt:\"\",fit:\"fill\",sizes:\"min(548px, 100vw)\",...toResponsiveImage(qzJwxJcZknpHgkOtim)}},TEnf20hes:{background:{alt:\"\",fit:\"fill\",sizes:\"min(548px, 100vw)\",...toResponsiveImage(qzJwxJcZknpHgkOtim)}},VCLIhdy8y:{background:{alt:\"\",fit:\"fill\",sizes:\"min(548px, 100vw)\",...toResponsiveImage(qzJwxJcZknpHgkOtim)}}},baseVariant,gestureVariant)})})},idnpHgkOtim);})})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oxy7i\",\"data-framer-name\":\"Thumbnail 4\",layoutDependency:layoutDependency,layoutId:\"pb_c05Efz\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:WorkDetails,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{name:\"qzJwxJcZk\",type:\"Identifier\"},{name:\"R0HurOYl8\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"aHGdZTxCQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:4},type:\"BinaryOperation\"}},children:collection3=>collection3.map(({qzJwxJcZk:qzJwxJcZkpb_c05Efz,R0HurOYl8:R0HurOYl8pb_c05Efz,id:idpb_c05Efz},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`pb_c05Efz-${idpb_c05Efz}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R0HurOYl8:R0HurOYl8pb_c05Efz},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",...toResponsiveImage(qzJwxJcZkpb_c05Efz)},className:\"framer-11w7xxq\",\"data-framer-name\":\"Thumbnail 4\",layoutDependency:layoutDependency,layoutId:\"xS2xlKgVe\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({llClpMUPF:{background:{alt:\"\",fit:\"fill\",sizes:\"min(548px, 100vw)\",...toResponsiveImage(qzJwxJcZkpb_c05Efz)}},TEnf20hes:{background:{alt:\"\",fit:\"fill\",sizes:\"min(548px, 100vw)\",...toResponsiveImage(qzJwxJcZkpb_c05Efz)}},VCLIhdy8y:{background:{alt:\"\",fit:\"fill\",sizes:\"min(548px, 100vw)\",...toResponsiveImage(qzJwxJcZkpb_c05Efz)}},ZvslR8ryt:{background:{alt:\"\",fit:\"fill\",sizes:\"min(548px, 100vw)\",...toResponsiveImage(qzJwxJcZkpb_c05Efz)}}},baseVariant,gestureVariant)})})},idpb_c05Efz);})})}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-t8yx9m\",\"data-framer-name\":\"Thumbnail 5\",layoutDependency:layoutDependency,layoutId:\"DtXxdFO9c\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:WorkDetails,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{name:\"qzJwxJcZk\",type:\"Identifier\"},{name:\"R0HurOYl8\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"aHGdZTxCQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:5},type:\"BinaryOperation\"}},children:collection4=>collection4.map(({qzJwxJcZk:qzJwxJcZkDtXxdFO9c,R0HurOYl8:R0HurOYl8DtXxdFO9c,id:idDtXxdFO9c},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`DtXxdFO9c-${idDtXxdFO9c}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R0HurOYl8:R0HurOYl8DtXxdFO9c},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",...toResponsiveImage(qzJwxJcZkDtXxdFO9c)},className:\"framer-c59wwn\",\"data-framer-name\":\"Thumbnail 5\",layoutDependency:layoutDependency,layoutId:\"zDrNRIMm3\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({VCLIhdy8y:{background:{alt:\"\",fit:\"fill\",sizes:\"min(548px, 100vw)\",...toResponsiveImage(qzJwxJcZkDtXxdFO9c)}},ZvslR8ryt:{background:{alt:\"\",fit:\"fill\",sizes:\"min(548px, 100vw)\",...toResponsiveImage(qzJwxJcZkDtXxdFO9c)}}},baseVariant,gestureVariant)})})},idDtXxdFO9c);})})}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-hhxa6c\",\"data-framer-name\":\"Thumbnail 6\",layoutDependency:layoutDependency,layoutId:\"B2ujpj9lD\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:WorkDetails,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{name:\"qzJwxJcZk\",type:\"Identifier\"},{name:\"R0HurOYl8\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"aHGdZTxCQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:6},type:\"BinaryOperation\"}},children:collection5=>collection5.map(({qzJwxJcZk:qzJwxJcZkB2ujpj9lD,R0HurOYl8:R0HurOYl8B2ujpj9lD,id:idB2ujpj9lD},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`B2ujpj9lD-${idB2ujpj9lD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R0HurOYl8:R0HurOYl8B2ujpj9lD},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",...toResponsiveImage(qzJwxJcZkB2ujpj9lD)},className:\"framer-wccf90\",\"data-framer-name\":\"Thumbnail 6\",layoutDependency:layoutDependency,layoutId:\"H8L_iPO3Y\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({ZvslR8ryt:{background:{alt:\"\",fit:\"fill\",sizes:\"min(548px, 100vw)\",...toResponsiveImage(qzJwxJcZkB2ujpj9lD)}}},baseVariant,gestureVariant)})})},idB2ujpj9lD);})})})]})})})});});const css=['.framer-HEZng[data-border=\"true\"]::after, .framer-HEZng [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HEZng.framer-176m76, .framer-HEZng .framer-176m76 { display: block; }\",\".framer-HEZng.framer-abcchq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1144px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 548px; }\",\".framer-HEZng .framer-3c97re { align-content: center; align-items: center; aspect-ratio: 0.9785714285714285 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: var(--framer-aspect-ratio-supported, 560px); justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HEZng .framer-b4u79y, .framer-HEZng .framer-ov2zgp, .framer-HEZng .framer-pelcit, .framer-HEZng .framer-1oxy7i, .framer-HEZng .framer-t8yx9m, .framer-HEZng .framer-hhxa6c { 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 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HEZng .framer-1ch3soe, .framer-HEZng .framer-ipswsa { aspect-ratio: 0.9785714285714285 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 560px); position: relative; width: 100%; }\",\".framer-HEZng .framer-c57kti, .framer-HEZng .framer-11w7xxq, .framer-HEZng .framer-c59wwn, .framer-HEZng .framer-wccf90 { aspect-ratio: 0.9785714285714285 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 204px); position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HEZng.framer-abcchq, .framer-HEZng .framer-3c97re, .framer-HEZng .framer-b4u79y, .framer-HEZng .framer-ov2zgp, .framer-HEZng .framer-pelcit, .framer-HEZng .framer-1oxy7i, .framer-HEZng .framer-t8yx9m, .framer-HEZng .framer-hhxa6c { gap: 0px; } .framer-HEZng.framer-abcchq > *, .framer-HEZng .framer-3c97re > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-HEZng.framer-abcchq > :first-child, .framer-HEZng .framer-3c97re > :first-child, .framer-HEZng .framer-b4u79y > :first-child, .framer-HEZng .framer-ov2zgp > :first-child, .framer-HEZng .framer-pelcit > :first-child, .framer-HEZng .framer-1oxy7i > :first-child, .framer-HEZng .framer-t8yx9m > :first-child, .framer-HEZng .framer-hhxa6c > :first-child { margin-top: 0px; } .framer-HEZng.framer-abcchq > :last-child, .framer-HEZng .framer-3c97re > :last-child, .framer-HEZng .framer-b4u79y > :last-child, .framer-HEZng .framer-ov2zgp > :last-child, .framer-HEZng .framer-pelcit > :last-child, .framer-HEZng .framer-1oxy7i > :last-child, .framer-HEZng .framer-t8yx9m > :last-child, .framer-HEZng .framer-hhxa6c > :last-child { margin-bottom: 0px; } .framer-HEZng .framer-b4u79y > *, .framer-HEZng .framer-ov2zgp > *, .framer-HEZng .framer-pelcit > *, .framer-HEZng .framer-1oxy7i > *, .framer-HEZng .framer-t8yx9m > *, .framer-HEZng .framer-hhxa6c > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\".framer-HEZng.framer-v-6872k8.framer-abcchq, .framer-HEZng.framer-v-52dnht.framer-abcchq, .framer-HEZng.framer-v-1kxspdj.framer-abcchq, .framer-HEZng.framer-v-3mh9ra.framer-abcchq, .framer-HEZng.framer-v-lkbczq.framer-abcchq { aspect-ratio: 0.9785714285714285 / 1; height: var(--framer-aspect-ratio-supported, 560px); justify-content: center; }\",\".framer-HEZng.framer-v-6872k8 .framer-3c97re, .framer-HEZng.framer-v-52dnht .framer-3c97re { justify-content: center; }\",\".framer-HEZng.framer-v-6872k8 .framer-c57kti, .framer-HEZng.framer-v-52dnht .framer-c57kti, .framer-HEZng.framer-v-52dnht .framer-11w7xxq, .framer-HEZng.framer-v-1kxspdj .framer-c57kti, .framer-HEZng.framer-v-1kxspdj .framer-11w7xxq, .framer-HEZng.framer-v-3mh9ra .framer-c57kti, .framer-HEZng.framer-v-3mh9ra .framer-11w7xxq, .framer-HEZng.framer-v-3mh9ra .framer-c59wwn, .framer-HEZng.framer-v-lkbczq .framer-11w7xxq, .framer-HEZng.framer-v-lkbczq .framer-c59wwn, .framer-HEZng.framer-v-lkbczq .framer-wccf90 { height: var(--framer-aspect-ratio-supported, 560px); }\",\".framer-HEZng.framer-v-1kxspdj .framer-3c97re, .framer-HEZng.framer-v-3mh9ra .framer-3c97re, .framer-HEZng.framer-v-lkbczq .framer-3c97re { justify-content: flex-end; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 560\n * @framerIntrinsicWidth 548\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"hZ98Ah56t\":{\"layout\":[\"fixed\",\"fixed\"]},\"TEnf20hes\":{\"layout\":[\"fixed\",\"fixed\"]},\"llClpMUPF\":{\"layout\":[\"fixed\",\"fixed\"]},\"VCLIhdy8y\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZvslR8ryt\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerKfBOVD2OO=withCSS(Component,css,\"framer-HEZng\");export default FramerKfBOVD2OO;FramerKfBOVD2OO.displayName=\"Thumbnail\";FramerKfBOVD2OO.defaultProps={height:560,width:548};addPropertyControls(FramerKfBOVD2OO,{variant:{options:[\"Y6TjdF0lA\",\"hZ98Ah56t\",\"TEnf20hes\",\"llClpMUPF\",\"VCLIhdy8y\",\"ZvslR8ryt\"],optionTitles:[\"Thumbail 1\",\"Thumbail 2\",\"Thumbail 3\",\"Thumbail 4\",\"Thumbail 5\",\"Thumbail 6\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerKfBOVD2OO,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKfBOVD2OO\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"560\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hZ98Ah56t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TEnf20hes\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"llClpMUPF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VCLIhdy8y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZvslR8ryt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"548\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d5ca742)\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,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import MyWorksBase from\"#framer/local/canvasComponent/A0MnVXf9v/A0MnVXf9v.js\";import SectionTitle from\"#framer/local/canvasComponent/HzjOcVFMM/HzjOcVFMM.js\";import Footer from\"#framer/local/canvasComponent/J449CQlRT/J449CQlRT.js\";import ExpertiseCard from\"#framer/local/canvasComponent/Jy99SU8LV/Jy99SU8LV.js\";import Thumbnail from\"#framer/local/canvasComponent/KfBOVD2OO/KfBOVD2OO.js\";import TopNavigation from\"#framer/local/canvasComponent/S4GqzXB1q/S4GqzXB1q.js\";import WorkDetails from\"#framer/local/collection/CSKg1C1z6/CSKg1C1z6.js\";import*as sharedStyle from\"#framer/local/css/FEIZKbhzw/FEIZKbhzw.js\";import*as sharedStyle4 from\"#framer/local/css/mKhUsKTuh/mKhUsKTuh.js\";import*as sharedStyle1 from\"#framer/local/css/qt6wtz1sQ/qt6wtz1sQ.js\";import*as sharedStyle2 from\"#framer/local/css/QWBX0Qv95/QWBX0Qv95.js\";import*as sharedStyle3 from\"#framer/local/css/VDGtB_OAj/VDGtB_OAj.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopNavigationFonts=getFonts(TopNavigation);const TopNavigationWithVariantAppearEffect=withVariantAppearEffect(TopNavigation);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const SectionTitleFonts=getFonts(SectionTitle);const MyWorksBaseFonts=getFonts(MyWorksBase);const ThumbnailFonts=getFonts(Thumbnail);const ThumbnailWithVariantAppearEffect=withVariantAppearEffect(Thumbnail);const ExpertiseCardFonts=getFonts(ExpertiseCard);const ContainerWithFX=withFX(Container);const TickerFonts=getFonts(Ticker);const FooterFonts=getFonts(Footer);const breakpoints={ijxRdyeSR:\"(min-width: 810px) and (max-width: 1199px)\",mS5RmY5A1:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-dfl22\";const variantClassNames={ijxRdyeSR:\"framer-v-1uk5k4r\",mS5RmY5A1:\"framer-v-1c6bj11\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:.2,duration:1,ease:[.8,-.01,.29,.92],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-18};const transition2={delay:.6,duration:1,ease:[.8,-.01,.29,.92],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-6};const transition3={delay:.8,duration:1,ease:[.8,-.01,.29,.92],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-12};const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-25,y:0};const transition5={delay:.5,duration:1,ease:[.8,-.01,.29,.92],type:\"tween\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:-25,y:0};const transition6={delay:.7,duration:1,ease:[.8,-.01,.29,.92],type:\"tween\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:-25,y:0};const transition7={delay:.9,duration:1,ease:[.8,-.01,.29,.92],type:\"tween\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:-25,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"mS5RmY5A1\",Tablet:\"ijxRdyeSR\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,AMpKhwLEzkCf4jyXcv,p1bQXV_LlkCf4jyXcv,qzJwxJcZkkCf4jyXcv,OiA_9TE7WkCf4jyXcv,idkCf4jyXcv,R0HurOYl8kCf4jyXcv,AMpKhwLEzPC6Cy0LRa,p1bQXV_LlPC6Cy0LRa,qzJwxJcZkPC6Cy0LRa,OiA_9TE7WPC6Cy0LRa,idPC6Cy0LRa,R0HurOYl8PC6Cy0LRa,AMpKhwLEzrV9Smux_c,p1bQXV_LlrV9Smux_c,qzJwxJcZkrV9Smux_c,OiA_9TE7WrV9Smux_c,idrV9Smux_c,R0HurOYl8rV9Smux_c,AMpKhwLEzikpASBkPF,p1bQXV_LlikpASBkPF,qzJwxJcZkikpASBkPF,OiA_9TE7WikpASBkPF,idikpASBkPF,R0HurOYl8ikpASBkPF,AMpKhwLEzLVMGtWnnu,p1bQXV_LlLVMGtWnnu,OiA_9TE7WLVMGtWnnu,qzJwxJcZkLVMGtWnnu,idLVMGtWnnu,R0HurOYl8LVMGtWnnu,AMpKhwLEzA2rVuNlso,p1bQXV_LlA2rVuNlso,OiA_9TE7WA2rVuNlso,qzJwxJcZkA2rVuNlso,idA2rVuNlso,R0HurOYl8A2rVuNlso,AMpKhwLEzsPpxblU3h,p1bQXV_LlsPpxblU3h,OiA_9TE7WsPpxblU3h,qzJwxJcZksPpxblU3h,idsPpxblU3h,R0HurOYl8sPpxblU3h,AMpKhwLEzQ_JBo1SsD,p1bQXV_LlQ_JBo1SsD,OiA_9TE7WQ_JBo1SsD,qzJwxJcZkQ_JBo1SsD,idQ_JBo1SsD,R0HurOYl8Q_JBo1SsD,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-dfl22`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-dfl22`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const ref2=React.useRef(null);const elementId=useRouteElementId(\"kJgE4RS4Q\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ijxRdyeSR\")return true;return false;};const elementId1=useRouteElementId(\"kCf4jyXcv\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"PC6Cy0LRa\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"rV9Smux_c\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"ikpASBkPF\");const ref6=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ijxRdyeSR\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"mS5RmY5A1\")return false;return true;};const ref7=React.useRef(null);const ref8=React.useRef(null);const ref9=React.useRef(null);const ref10=React.useRef(null);const elementId5=useRouteElementId(\"LVMGtWnnu\");const elementId6=useRouteElementId(\"A2rVuNlso\");const elementId7=useRouteElementId(\"sPpxblU3h\");const elementId8=useRouteElementId(\"Q_JBo1SsD\");const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-74c0kb-container\",layoutScroll:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ijxRdyeSR:{QYinfe5hN:resolvedLinks[1]},mS5RmY5A1:{__framer__animateOnce:true,__framer__targets:[{ref:ref2,target:\"TnlgBLCJ5\"}],QYinfe5hN:resolvedLinks[2],variant:\"u_xaDRtJz\"}},children:/*#__PURE__*/_jsx(TopNavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"kpZL3lxGQ\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"ApJ9YHQoE\",layoutId:\"ApJ9YHQoE\",QYinfe5hN:resolvedLinks[0],style:{width:\"100%\"},variant:\"EoCd3w9Hw\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q1qpi0\",\"data-framer-name\":\"Hero Section\",id:elementId,name:\"Hero Section\",ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ydu51j\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1d1224n\",\"data-framer-appear-id\":\"1d1224n\",\"data-framer-name\":\"Above the fold\",initial:animation1,name:\"Above the fold\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17krv2n\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ijxRdyeSR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:152.5,loading:getLoadingLazyAtYPosition(181.5),pixelHeight:500,pixelWidth:305,src:\"https://framerusercontent.com/images/jnr0dM8ssqL12M6i7M6pmy5DziQ.png\"}},mS5RmY5A1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:152.5,loading:getLoadingLazyAtYPosition(150),pixelHeight:500,pixelWidth:305,src:\"https://framerusercontent.com/images/jnr0dM8ssqL12M6i7M6pmy5DziQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:152.5,loading:getLoadingLazyAtYPosition(186),pixelHeight:500,pixelWidth:305,src:\"https://framerusercontent.com/images/jnr0dM8ssqL12M6i7M6pmy5DziQ.png\"},className:\"framer-guy2yy\",\"data-framer-name\":\"newton_st_logo_seal_white\",name:\"newton_st_logo_seal_white\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y7zpyq\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ijxRdyeSR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1jleusr\",\"data-styles-preset\":\"qt6wtz1sQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5a85bb57-0def-4f57-982f-ecc740c759c1, rgb(255, 255, 255))\"},children:\"Connecting people and ideas\"})})},mS5RmY5A1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-18zqyt0\",\"data-styles-preset\":\"QWBX0Qv95\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5a85bb57-0def-4f57-982f-ecc740c759c1, rgb(255, 255, 255))\"},children:\"Connecting people and ideas\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1lykgx\",\"data-styles-preset\":\"FEIZKbhzw\",children:\"Connecting people and ideas\"})}),className:\"framer-1v3qfv0\",\"data-framer-appear-id\":\"1v3qfv0\",\"data-framer-name\":\"I\u2019m bringing ideas to life with lasting impact\",fonts:[\"Inter\"],initial:animation3,name:\"I\u2019m bringing ideas to life with lasting impact\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ijxRdyeSR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1jleusr\",\"data-styles-preset\":\"qt6wtz1sQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5a85bb57-0def-4f57-982f-ecc740c759c1, rgb(255, 255, 255))\"},children:\"that change the world\"})})},mS5RmY5A1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-18zqyt0\",\"data-styles-preset\":\"QWBX0Qv95\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5a85bb57-0def-4f57-982f-ecc740c759c1, rgb(255, 255, 255))\"},children:\"that change the world\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1lykgx\",\"data-styles-preset\":\"FEIZKbhzw\",children:\"that change the world\"})}),className:\"framer-1k1b2u4\",\"data-framer-appear-id\":\"1k1b2u4\",\"data-framer-name\":\"I\u2019m bringing ideas to life with lasting impact\",fonts:[\"Inter\"],initial:animation5,name:\"I\u2019m bringing ideas to life with lasting impact\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ijxRdyeSR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1762,intrinsicWidth:3132,loading:getLoadingLazyAtYPosition(583.4),pixelHeight:1762,pixelWidth:3132,sizes:\"calc(min(100vw, 1200px) - 80px)\",src:\"https://framerusercontent.com/images/VrZqoA6AofRJpJ6yA94IUGllPU.webp\",srcSet:\"https://framerusercontent.com/images/VrZqoA6AofRJpJ6yA94IUGllPU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/VrZqoA6AofRJpJ6yA94IUGllPU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/VrZqoA6AofRJpJ6yA94IUGllPU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/VrZqoA6AofRJpJ6yA94IUGllPU.webp 3132w\"}},mS5RmY5A1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1762,intrinsicWidth:3132,loading:getLoadingLazyAtYPosition(381),pixelHeight:1762,pixelWidth:3132,sizes:\"calc(min(100vw, 1200px) - 32px)\",src:\"https://framerusercontent.com/images/VrZqoA6AofRJpJ6yA94IUGllPU.webp\",srcSet:\"https://framerusercontent.com/images/VrZqoA6AofRJpJ6yA94IUGllPU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/VrZqoA6AofRJpJ6yA94IUGllPU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/VrZqoA6AofRJpJ6yA94IUGllPU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/VrZqoA6AofRJpJ6yA94IUGllPU.webp 3132w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation6,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1762,intrinsicWidth:3132,loading:getLoadingLazyAtYPosition(674),pixelHeight:1762,pixelWidth:3132,sizes:\"1120px\",src:\"https://framerusercontent.com/images/VrZqoA6AofRJpJ6yA94IUGllPU.webp\",srcSet:\"https://framerusercontent.com/images/VrZqoA6AofRJpJ6yA94IUGllPU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/VrZqoA6AofRJpJ6yA94IUGllPU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/VrZqoA6AofRJpJ6yA94IUGllPU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/VrZqoA6AofRJpJ6yA94IUGllPU.webp 3132w\"},className:\"framer-4tgft4\",\"data-framer-appear-id\":\"4tgft4\",initial:animation7,optimized:true,style:{transformPerspective:1200}})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-7nhla2\",\"data-framer-name\":\"Select Works\",name:\"Select Works\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u9z7zz\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ijxRdyeSR:{width:\"calc((min(100vw, 1200px) - 80px) * 0.6986)\",y:949.4},mS5RmY5A1:{width:\"calc(min(100vw, 1200px) - 32px)\",y:642}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:158,width:\"calc(min(100vw, 1200px) - 80px)\",y:1254,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y6ojqw-container\",children:/*#__PURE__*/_jsx(SectionTitle,{H8tEdxgUl:\"rgb(3, 93, 80)\",height:\"100%\",id:\"GunoqjkNm\",layoutId:\"GunoqjkNm\",style:{width:\"100%\"},width:\"100%\",WqYA1cYY4:\"Trusted by the visionaries of today\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zp4up5 hidden-72rtr7 hidden-1c6bj11\",\"data-framer-name\":\"Contents\",name:\"Contents\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6jcaje\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"kCf4jyXcv\",data:WorkDetails,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"kCf4jyXcv\",name:\"AMpKhwLEz\",type:\"Identifier\"},{collection:\"kCf4jyXcv\",name:\"p1bQXV_Ll\",type:\"Identifier\"},{collection:\"kCf4jyXcv\",name:\"qzJwxJcZk\",type:\"Identifier\"},{collection:\"kCf4jyXcv\",name:\"OiA_9TE7W\",type:\"Identifier\"},{collection:\"kCf4jyXcv\",name:\"id\",type:\"Identifier\"},{collection:\"kCf4jyXcv\",name:\"R0HurOYl8\",type:\"Identifier\"}],where:{left:{collection:\"kCf4jyXcv\",name:\"aHGdZTxCQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:1},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"AMpKhwLEz\":AMpKhwLEzkCf4jyXcv,\"p1bQXV_Ll\":p1bQXV_LlkCf4jyXcv,\"qzJwxJcZk\":qzJwxJcZkkCf4jyXcv,\"OiA_9TE7W\":OiA_9TE7WkCf4jyXcv,\"id\":idkCf4jyXcv,\"R0HurOYl8\":R0HurOYl8kCf4jyXcv},i)=>{AMpKhwLEzkCf4jyXcv!==null&&AMpKhwLEzkCf4jyXcv!==void 0?AMpKhwLEzkCf4jyXcv:AMpKhwLEzkCf4jyXcv=\"\";p1bQXV_LlkCf4jyXcv!==null&&p1bQXV_LlkCf4jyXcv!==void 0?p1bQXV_LlkCf4jyXcv:p1bQXV_LlkCf4jyXcv=\"\";OiA_9TE7WkCf4jyXcv!==null&&OiA_9TE7WkCf4jyXcv!==void 0?OiA_9TE7WkCf4jyXcv:OiA_9TE7WkCf4jyXcv=\"\";R0HurOYl8kCf4jyXcv!==null&&R0HurOYl8kCf4jyXcv!==void 0?R0HurOYl8kCf4jyXcv:R0HurOYl8kCf4jyXcv=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`kCf4jyXcv-${idkCf4jyXcv}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R0HurOYl8:R0HurOYl8kCf4jyXcv},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w2sevy-container\",children:/*#__PURE__*/_jsx(MyWorksBase,{fAN9Zkitk:p1bQXV_LlkCf4jyXcv,height:\"100%\",id:\"o2DGlKTZg\",itTUqP9fX:toResponsiveImage(qzJwxJcZkkCf4jyXcv),j9aRg9TC8:OiA_9TE7WkCf4jyXcv,kQu4cl7eA:AMpKhwLEzkCf4jyXcv,layoutId:\"o2DGlKTZg\",style:{width:\"100%\"},variant:\"NWGVZOLk4\",width:\"100%\"})})})})},idkCf4jyXcv);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qjp4dp\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"PC6Cy0LRa\",data:WorkDetails,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"PC6Cy0LRa\",name:\"AMpKhwLEz\",type:\"Identifier\"},{collection:\"PC6Cy0LRa\",name:\"p1bQXV_Ll\",type:\"Identifier\"},{collection:\"PC6Cy0LRa\",name:\"qzJwxJcZk\",type:\"Identifier\"},{collection:\"PC6Cy0LRa\",name:\"OiA_9TE7W\",type:\"Identifier\"},{collection:\"PC6Cy0LRa\",name:\"id\",type:\"Identifier\"},{collection:\"PC6Cy0LRa\",name:\"R0HurOYl8\",type:\"Identifier\"}],where:{left:{collection:\"PC6Cy0LRa\",name:\"aHGdZTxCQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:2},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"AMpKhwLEz\":AMpKhwLEzPC6Cy0LRa,\"p1bQXV_Ll\":p1bQXV_LlPC6Cy0LRa,\"qzJwxJcZk\":qzJwxJcZkPC6Cy0LRa,\"OiA_9TE7W\":OiA_9TE7WPC6Cy0LRa,\"id\":idPC6Cy0LRa,\"R0HurOYl8\":R0HurOYl8PC6Cy0LRa},i)=>{AMpKhwLEzPC6Cy0LRa!==null&&AMpKhwLEzPC6Cy0LRa!==void 0?AMpKhwLEzPC6Cy0LRa:AMpKhwLEzPC6Cy0LRa=\"\";p1bQXV_LlPC6Cy0LRa!==null&&p1bQXV_LlPC6Cy0LRa!==void 0?p1bQXV_LlPC6Cy0LRa:p1bQXV_LlPC6Cy0LRa=\"\";OiA_9TE7WPC6Cy0LRa!==null&&OiA_9TE7WPC6Cy0LRa!==void 0?OiA_9TE7WPC6Cy0LRa:OiA_9TE7WPC6Cy0LRa=\"\";R0HurOYl8PC6Cy0LRa!==null&&R0HurOYl8PC6Cy0LRa!==void 0?R0HurOYl8PC6Cy0LRa:R0HurOYl8PC6Cy0LRa=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`PC6Cy0LRa-${idPC6Cy0LRa}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R0HurOYl8:R0HurOYl8PC6Cy0LRa},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-meqd3p-container\",children:/*#__PURE__*/_jsx(MyWorksBase,{fAN9Zkitk:p1bQXV_LlPC6Cy0LRa,height:\"100%\",id:\"lPb0Ic85E\",itTUqP9fX:toResponsiveImage(qzJwxJcZkPC6Cy0LRa),j9aRg9TC8:OiA_9TE7WPC6Cy0LRa,kQu4cl7eA:AMpKhwLEzPC6Cy0LRa,layoutId:\"lPb0Ic85E\",style:{width:\"100%\"},variant:\"NWGVZOLk4\",width:\"100%\"})})})})},idPC6Cy0LRa);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5snm14\",id:elementId3,ref:ref5,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"rV9Smux_c\",data:WorkDetails,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"rV9Smux_c\",name:\"AMpKhwLEz\",type:\"Identifier\"},{collection:\"rV9Smux_c\",name:\"p1bQXV_Ll\",type:\"Identifier\"},{collection:\"rV9Smux_c\",name:\"qzJwxJcZk\",type:\"Identifier\"},{collection:\"rV9Smux_c\",name:\"OiA_9TE7W\",type:\"Identifier\"},{collection:\"rV9Smux_c\",name:\"id\",type:\"Identifier\"},{collection:\"rV9Smux_c\",name:\"R0HurOYl8\",type:\"Identifier\"}],where:{left:{collection:\"rV9Smux_c\",name:\"aHGdZTxCQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:3},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({\"AMpKhwLEz\":AMpKhwLEzrV9Smux_c,\"p1bQXV_Ll\":p1bQXV_LlrV9Smux_c,\"qzJwxJcZk\":qzJwxJcZkrV9Smux_c,\"OiA_9TE7W\":OiA_9TE7WrV9Smux_c,\"id\":idrV9Smux_c,\"R0HurOYl8\":R0HurOYl8rV9Smux_c},i)=>{AMpKhwLEzrV9Smux_c!==null&&AMpKhwLEzrV9Smux_c!==void 0?AMpKhwLEzrV9Smux_c:AMpKhwLEzrV9Smux_c=\"\";p1bQXV_LlrV9Smux_c!==null&&p1bQXV_LlrV9Smux_c!==void 0?p1bQXV_LlrV9Smux_c:p1bQXV_LlrV9Smux_c=\"\";OiA_9TE7WrV9Smux_c!==null&&OiA_9TE7WrV9Smux_c!==void 0?OiA_9TE7WrV9Smux_c:OiA_9TE7WrV9Smux_c=\"\";R0HurOYl8rV9Smux_c!==null&&R0HurOYl8rV9Smux_c!==void 0?R0HurOYl8rV9Smux_c:R0HurOYl8rV9Smux_c=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`rV9Smux_c-${idrV9Smux_c}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R0HurOYl8:R0HurOYl8rV9Smux_c},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m819m1-container\",children:/*#__PURE__*/_jsx(MyWorksBase,{fAN9Zkitk:p1bQXV_LlrV9Smux_c,height:\"100%\",id:\"Mg3GlDy35\",itTUqP9fX:toResponsiveImage(qzJwxJcZkrV9Smux_c),j9aRg9TC8:OiA_9TE7WrV9Smux_c,kQu4cl7eA:AMpKhwLEzrV9Smux_c,layoutId:\"Mg3GlDy35\",style:{width:\"100%\"},variant:\"NWGVZOLk4\",width:\"100%\"})})})})},idrV9Smux_c);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nw6bx9\",id:elementId4,ref:ref6,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ikpASBkPF\",data:WorkDetails,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"ikpASBkPF\",name:\"AMpKhwLEz\",type:\"Identifier\"},{collection:\"ikpASBkPF\",name:\"p1bQXV_Ll\",type:\"Identifier\"},{collection:\"ikpASBkPF\",name:\"qzJwxJcZk\",type:\"Identifier\"},{collection:\"ikpASBkPF\",name:\"OiA_9TE7W\",type:\"Identifier\"},{collection:\"ikpASBkPF\",name:\"id\",type:\"Identifier\"},{collection:\"ikpASBkPF\",name:\"R0HurOYl8\",type:\"Identifier\"}],where:{left:{collection:\"ikpASBkPF\",name:\"aHGdZTxCQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:4},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3.map(({\"AMpKhwLEz\":AMpKhwLEzikpASBkPF,\"p1bQXV_Ll\":p1bQXV_LlikpASBkPF,\"qzJwxJcZk\":qzJwxJcZkikpASBkPF,\"OiA_9TE7W\":OiA_9TE7WikpASBkPF,\"id\":idikpASBkPF,\"R0HurOYl8\":R0HurOYl8ikpASBkPF},i)=>{AMpKhwLEzikpASBkPF!==null&&AMpKhwLEzikpASBkPF!==void 0?AMpKhwLEzikpASBkPF:AMpKhwLEzikpASBkPF=\"\";p1bQXV_LlikpASBkPF!==null&&p1bQXV_LlikpASBkPF!==void 0?p1bQXV_LlikpASBkPF:p1bQXV_LlikpASBkPF=\"\";OiA_9TE7WikpASBkPF!==null&&OiA_9TE7WikpASBkPF!==void 0?OiA_9TE7WikpASBkPF:OiA_9TE7WikpASBkPF=\"\";R0HurOYl8ikpASBkPF!==null&&R0HurOYl8ikpASBkPF!==void 0?R0HurOYl8ikpASBkPF:R0HurOYl8ikpASBkPF=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ikpASBkPF-${idikpASBkPF}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R0HurOYl8:R0HurOYl8ikpASBkPF},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rsup8z-container\",children:/*#__PURE__*/_jsx(MyWorksBase,{fAN9Zkitk:p1bQXV_LlikpASBkPF,height:\"100%\",id:\"uzwjRbsVu\",itTUqP9fX:toResponsiveImage(qzJwxJcZkikpASBkPF),j9aRg9TC8:OiA_9TE7WikpASBkPF,kQu4cl7eA:AMpKhwLEzikpASBkPF,layoutId:\"uzwjRbsVu\",style:{width:\"100%\"},variant:\"NWGVZOLk4\",width:\"100%\"})})})})},idikpASBkPF);})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tc23yb hidden-1uk5k4r\",\"data-framer-name\":\"Works\",name:\"Works\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b9jdep-container hidden-1c6bj11\",children:/*#__PURE__*/_jsx(ThumbnailWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref7,target:\"Y6TjdF0lA\"},{ref:ref8,target:\"hZ98Ah56t\"},{ref:ref9,target:\"TEnf20hes\"},{ref:ref10,target:\"llClpMUPF\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"h5Ldz0JG7\",layoutId:\"h5Ldz0JG7\",style:{height:\"100%\",width:\"100%\"},variant:\"Y6TjdF0lA\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-53goiu\",\"data-framer-name\":\"Contents\",name:\"Contents\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e9x21z\",id:elementId5,ref:ref7,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LVMGtWnnu\",data:WorkDetails,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"LVMGtWnnu\",name:\"AMpKhwLEz\",type:\"Identifier\"},{collection:\"LVMGtWnnu\",name:\"p1bQXV_Ll\",type:\"Identifier\"},{collection:\"LVMGtWnnu\",name:\"OiA_9TE7W\",type:\"Identifier\"},{collection:\"LVMGtWnnu\",name:\"qzJwxJcZk\",type:\"Identifier\"},{collection:\"LVMGtWnnu\",name:\"id\",type:\"Identifier\"},{collection:\"LVMGtWnnu\",name:\"R0HurOYl8\",type:\"Identifier\"}],where:{left:{collection:\"LVMGtWnnu\",name:\"aHGdZTxCQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:1},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4.map(({\"AMpKhwLEz\":AMpKhwLEzLVMGtWnnu,\"p1bQXV_Ll\":p1bQXV_LlLVMGtWnnu,\"OiA_9TE7W\":OiA_9TE7WLVMGtWnnu,\"qzJwxJcZk\":qzJwxJcZkLVMGtWnnu,\"id\":idLVMGtWnnu,\"R0HurOYl8\":R0HurOYl8LVMGtWnnu},i)=>{AMpKhwLEzLVMGtWnnu!==null&&AMpKhwLEzLVMGtWnnu!==void 0?AMpKhwLEzLVMGtWnnu:AMpKhwLEzLVMGtWnnu=\"\";p1bQXV_LlLVMGtWnnu!==null&&p1bQXV_LlLVMGtWnnu!==void 0?p1bQXV_LlLVMGtWnnu:p1bQXV_LlLVMGtWnnu=\"\";OiA_9TE7WLVMGtWnnu!==null&&OiA_9TE7WLVMGtWnnu!==void 0?OiA_9TE7WLVMGtWnnu:OiA_9TE7WLVMGtWnnu=\"\";R0HurOYl8LVMGtWnnu!==null&&R0HurOYl8LVMGtWnnu!==void 0?R0HurOYl8LVMGtWnnu:R0HurOYl8LVMGtWnnu=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`LVMGtWnnu-${idLVMGtWnnu}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R0HurOYl8:R0HurOYl8LVMGtWnnu},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i97kf3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mS5RmY5A1:{itTUqP9fX:toResponsiveImage(qzJwxJcZkLVMGtWnnu),style:{width:\"100%\"},variant:\"kXBsepMjQ\"}},children:/*#__PURE__*/_jsx(MyWorksBase,{fAN9Zkitk:p1bQXV_LlLVMGtWnnu,height:\"100%\",id:\"RIxCP0IbW\",j9aRg9TC8:OiA_9TE7WLVMGtWnnu,kQu4cl7eA:AMpKhwLEzLVMGtWnnu,layoutId:\"RIxCP0IbW\",style:{height:\"100%\",width:\"100%\"},variant:\"My8uS6n1Y\",width:\"100%\"})})})})})},idLVMGtWnnu);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-axag2t\",id:elementId6,ref:ref8,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"A2rVuNlso\",data:WorkDetails,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"A2rVuNlso\",name:\"AMpKhwLEz\",type:\"Identifier\"},{collection:\"A2rVuNlso\",name:\"p1bQXV_Ll\",type:\"Identifier\"},{collection:\"A2rVuNlso\",name:\"OiA_9TE7W\",type:\"Identifier\"},{collection:\"A2rVuNlso\",name:\"qzJwxJcZk\",type:\"Identifier\"},{collection:\"A2rVuNlso\",name:\"id\",type:\"Identifier\"},{collection:\"A2rVuNlso\",name:\"R0HurOYl8\",type:\"Identifier\"}],where:{left:{collection:\"A2rVuNlso\",name:\"aHGdZTxCQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:2},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5.map(({\"AMpKhwLEz\":AMpKhwLEzA2rVuNlso,\"p1bQXV_Ll\":p1bQXV_LlA2rVuNlso,\"OiA_9TE7W\":OiA_9TE7WA2rVuNlso,\"qzJwxJcZk\":qzJwxJcZkA2rVuNlso,\"id\":idA2rVuNlso,\"R0HurOYl8\":R0HurOYl8A2rVuNlso},i)=>{AMpKhwLEzA2rVuNlso!==null&&AMpKhwLEzA2rVuNlso!==void 0?AMpKhwLEzA2rVuNlso:AMpKhwLEzA2rVuNlso=\"\";p1bQXV_LlA2rVuNlso!==null&&p1bQXV_LlA2rVuNlso!==void 0?p1bQXV_LlA2rVuNlso:p1bQXV_LlA2rVuNlso=\"\";OiA_9TE7WA2rVuNlso!==null&&OiA_9TE7WA2rVuNlso!==void 0?OiA_9TE7WA2rVuNlso:OiA_9TE7WA2rVuNlso=\"\";R0HurOYl8A2rVuNlso!==null&&R0HurOYl8A2rVuNlso!==void 0?R0HurOYl8A2rVuNlso:R0HurOYl8A2rVuNlso=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`A2rVuNlso-${idA2rVuNlso}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R0HurOYl8:R0HurOYl8A2rVuNlso},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p540kr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mS5RmY5A1:{itTUqP9fX:toResponsiveImage(qzJwxJcZkA2rVuNlso),style:{width:\"100%\"},variant:\"kXBsepMjQ\"}},children:/*#__PURE__*/_jsx(MyWorksBase,{fAN9Zkitk:p1bQXV_LlA2rVuNlso,height:\"100%\",id:\"bVTKgzud6\",j9aRg9TC8:OiA_9TE7WA2rVuNlso,kQu4cl7eA:AMpKhwLEzA2rVuNlso,layoutId:\"bVTKgzud6\",style:{height:\"100%\",width:\"100%\"},variant:\"My8uS6n1Y\",width:\"100%\"})})})})})},idA2rVuNlso);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t314dk\",id:elementId7,ref:ref9,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"sPpxblU3h\",data:WorkDetails,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"sPpxblU3h\",name:\"AMpKhwLEz\",type:\"Identifier\"},{collection:\"sPpxblU3h\",name:\"p1bQXV_Ll\",type:\"Identifier\"},{collection:\"sPpxblU3h\",name:\"OiA_9TE7W\",type:\"Identifier\"},{collection:\"sPpxblU3h\",name:\"qzJwxJcZk\",type:\"Identifier\"},{collection:\"sPpxblU3h\",name:\"id\",type:\"Identifier\"},{collection:\"sPpxblU3h\",name:\"R0HurOYl8\",type:\"Identifier\"}],where:{left:{collection:\"sPpxblU3h\",name:\"aHGdZTxCQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:3},type:\"BinaryOperation\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6.map(({\"AMpKhwLEz\":AMpKhwLEzsPpxblU3h,\"p1bQXV_Ll\":p1bQXV_LlsPpxblU3h,\"OiA_9TE7W\":OiA_9TE7WsPpxblU3h,\"qzJwxJcZk\":qzJwxJcZksPpxblU3h,\"id\":idsPpxblU3h,\"R0HurOYl8\":R0HurOYl8sPpxblU3h},i)=>{AMpKhwLEzsPpxblU3h!==null&&AMpKhwLEzsPpxblU3h!==void 0?AMpKhwLEzsPpxblU3h:AMpKhwLEzsPpxblU3h=\"\";p1bQXV_LlsPpxblU3h!==null&&p1bQXV_LlsPpxblU3h!==void 0?p1bQXV_LlsPpxblU3h:p1bQXV_LlsPpxblU3h=\"\";OiA_9TE7WsPpxblU3h!==null&&OiA_9TE7WsPpxblU3h!==void 0?OiA_9TE7WsPpxblU3h:OiA_9TE7WsPpxblU3h=\"\";R0HurOYl8sPpxblU3h!==null&&R0HurOYl8sPpxblU3h!==void 0?R0HurOYl8sPpxblU3h:R0HurOYl8sPpxblU3h=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`sPpxblU3h-${idsPpxblU3h}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R0HurOYl8:R0HurOYl8sPpxblU3h},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11qj0p-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mS5RmY5A1:{itTUqP9fX:toResponsiveImage(qzJwxJcZksPpxblU3h),style:{width:\"100%\"},variant:\"kXBsepMjQ\"}},children:/*#__PURE__*/_jsx(MyWorksBase,{fAN9Zkitk:p1bQXV_LlsPpxblU3h,height:\"100%\",id:\"FkTu2SJHp\",j9aRg9TC8:OiA_9TE7WsPpxblU3h,kQu4cl7eA:AMpKhwLEzsPpxblU3h,layoutId:\"FkTu2SJHp\",style:{height:\"100%\",width:\"100%\"},variant:\"My8uS6n1Y\",width:\"100%\"})})})})})},idsPpxblU3h);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15flmj8\",id:elementId8,ref:ref10,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Q_JBo1SsD\",data:WorkDetails,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"Q_JBo1SsD\",name:\"AMpKhwLEz\",type:\"Identifier\"},{collection:\"Q_JBo1SsD\",name:\"p1bQXV_Ll\",type:\"Identifier\"},{collection:\"Q_JBo1SsD\",name:\"OiA_9TE7W\",type:\"Identifier\"},{collection:\"Q_JBo1SsD\",name:\"qzJwxJcZk\",type:\"Identifier\"},{collection:\"Q_JBo1SsD\",name:\"id\",type:\"Identifier\"},{collection:\"Q_JBo1SsD\",name:\"R0HurOYl8\",type:\"Identifier\"}],where:{left:{collection:\"Q_JBo1SsD\",name:\"aHGdZTxCQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:4},type:\"BinaryOperation\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7.map(({\"AMpKhwLEz\":AMpKhwLEzQ_JBo1SsD,\"p1bQXV_Ll\":p1bQXV_LlQ_JBo1SsD,\"OiA_9TE7W\":OiA_9TE7WQ_JBo1SsD,\"qzJwxJcZk\":qzJwxJcZkQ_JBo1SsD,\"id\":idQ_JBo1SsD,\"R0HurOYl8\":R0HurOYl8Q_JBo1SsD},i)=>{AMpKhwLEzQ_JBo1SsD!==null&&AMpKhwLEzQ_JBo1SsD!==void 0?AMpKhwLEzQ_JBo1SsD:AMpKhwLEzQ_JBo1SsD=\"\";p1bQXV_LlQ_JBo1SsD!==null&&p1bQXV_LlQ_JBo1SsD!==void 0?p1bQXV_LlQ_JBo1SsD:p1bQXV_LlQ_JBo1SsD=\"\";OiA_9TE7WQ_JBo1SsD!==null&&OiA_9TE7WQ_JBo1SsD!==void 0?OiA_9TE7WQ_JBo1SsD:OiA_9TE7WQ_JBo1SsD=\"\";R0HurOYl8Q_JBo1SsD!==null&&R0HurOYl8Q_JBo1SsD!==void 0?R0HurOYl8Q_JBo1SsD:R0HurOYl8Q_JBo1SsD=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Q_JBo1SsD-${idQ_JBo1SsD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R0HurOYl8:R0HurOYl8Q_JBo1SsD},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i6hp11-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mS5RmY5A1:{itTUqP9fX:toResponsiveImage(qzJwxJcZkQ_JBo1SsD),style:{width:\"100%\"},variant:\"kXBsepMjQ\"}},children:/*#__PURE__*/_jsx(MyWorksBase,{fAN9Zkitk:p1bQXV_LlQ_JBo1SsD,height:\"100%\",id:\"GI1GHXKVy\",j9aRg9TC8:OiA_9TE7WQ_JBo1SsD,kQu4cl7eA:AMpKhwLEzQ_JBo1SsD,layoutId:\"GI1GHXKVy\",style:{height:\"100%\",width:\"100%\"},variant:\"My8uS6n1Y\",width:\"100%\"})})})})})},idQ_JBo1SsD);})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xbbpqn\",\"data-framer-name\":\"About me\",name:\"About me\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mqoz1v\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ijxRdyeSR:{y:1345.4},mS5RmY5A1:{width:\"calc((min(100vw, 1200px) - 32px) * 0.8184)\",y:960}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:158,width:\"calc((min(100vw, 1200px) - 80px) * 0.7018)\",y:2242,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vu44ay-container\",children:/*#__PURE__*/_jsx(SectionTitle,{H8tEdxgUl:\"rgb(3, 93, 80)\",height:\"100%\",id:\"QgcBVECj7\",layoutId:\"QgcBVECj7\",style:{width:\"100%\"},width:\"100%\",WqYA1cYY4:\"Advocating with compassion and clarity\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-169imzw\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mu0v5v\",\"data-framer-name\":\"Row 1\",name:\"Row 1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lc0yuq-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mS5RmY5A1:{DT8Rv9Smb:\"var(--token-5a85bb57-0def-4f57-982f-ecc740c759c1, rgb(255, 255, 255))\",Gz6VnEMCv:\"var(--token-5a85bb57-0def-4f57-982f-ecc740c759c1, rgb(255, 255, 255))\",variant:\"dGXhyLPWQ\"}},children:/*#__PURE__*/_jsx(ExpertiseCard,{DT8Rv9Smb:\"rgb(3, 93, 80)\",Gz6VnEMCv:\"rgb(3, 93, 80)\",height:\"100%\",id:\"zS9TQI1ht\",layoutId:\"zS9TQI1ht\",n_Dbb6PVf:\"To reach net-zero carbon emissions by 2050, global collaboration, innovative funding, and integrity in leadership are imperative. Newton Street makes a compelling case, especially for the urgent needs of those already facing climate adversity.\",NSi3WeNDL:addImageAlt({src:\"https://framerusercontent.com/images/pxKMUXaRFx591gXTLbshkdekxg.jpg\",srcSet:\"https://framerusercontent.com/images/pxKMUXaRFx591gXTLbshkdekxg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pxKMUXaRFx591gXTLbshkdekxg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pxKMUXaRFx591gXTLbshkdekxg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pxKMUXaRFx591gXTLbshkdekxg.jpg 3776w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"L_2HF8W3b\",width:\"100%\",YmWP_LIPl:\"Climate Change\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xxgzk9-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mS5RmY5A1:{NSi3WeNDL:addImageAlt({positionX:\"51.1%\",positionY:\"25.1%\",src:\"https://framerusercontent.com/images/6fNQEq28tBkvfuBlkhpahxwGGlU.png\",srcSet:\"https://framerusercontent.com/images/6fNQEq28tBkvfuBlkhpahxwGGlU.png?scale-down-to=1024 780w,https://framerusercontent.com/images/6fNQEq28tBkvfuBlkhpahxwGGlU.png 1306w\"},\"\"),variant:\"dGXhyLPWQ\"}},children:/*#__PURE__*/_jsx(ExpertiseCard,{DT8Rv9Smb:\"var(--token-5a85bb57-0def-4f57-982f-ecc740c759c1, rgb(255, 255, 255))\",Gz6VnEMCv:\"var(--token-5a85bb57-0def-4f57-982f-ecc740c759c1, rgb(255, 255, 255))\",height:\"100%\",id:\"stlJrwnvY\",layoutId:\"stlJrwnvY\",n_Dbb6PVf:\"The growing challenge of mental health underscores the need to build comprehensive support systems and reduce stigma. Newton Street integrates communications to bridge gaps in understanding and advocate for robust, accessible mental health resources. \",NSi3WeNDL:addImageAlt({src:\"https://framerusercontent.com/images/6fNQEq28tBkvfuBlkhpahxwGGlU.png\",srcSet:\"https://framerusercontent.com/images/6fNQEq28tBkvfuBlkhpahxwGGlU.png?scale-down-to=1024 780w,https://framerusercontent.com/images/6fNQEq28tBkvfuBlkhpahxwGGlU.png 1306w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"sbBzqTTp3\",width:\"100%\",YmWP_LIPl:\"Mental Health\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n2jqtp\",\"data-framer-name\":\"Row 1\",name:\"Row 1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mxdwhm-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mS5RmY5A1:{variant:\"dGXhyLPWQ\"}},children:/*#__PURE__*/_jsx(ExpertiseCard,{DT8Rv9Smb:\"var(--token-5a85bb57-0def-4f57-982f-ecc740c759c1, rgb(255, 255, 255))\",Gz6VnEMCv:\"var(--token-5a85bb57-0def-4f57-982f-ecc740c759c1, rgb(255, 255, 255))\",height:\"100%\",id:\"IWVisJFpm\",layoutId:\"IWVisJFpm\",n_Dbb6PVf:\"Decades of effort to reduce health disparities have taught us the importance of  innovation and international lesson-sharing. Newton Street is committed to fostering global health equity through public, private, and governmental collaboration.\",NSi3WeNDL:addImageAlt({src:\"https://framerusercontent.com/images/MGIeQroglCKI2QjRFCT46i0yLw.webp\",srcSet:\"https://framerusercontent.com/images/MGIeQroglCKI2QjRFCT46i0yLw.webp?scale-down-to=1024 768w,https://framerusercontent.com/images/MGIeQroglCKI2QjRFCT46i0yLw.webp 900w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"sbBzqTTp3\",width:\"100%\",YmWP_LIPl:\"Health Equity\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fdl3wq-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mS5RmY5A1:{DT8Rv9Smb:\"var(--token-5a85bb57-0def-4f57-982f-ecc740c759c1, rgb(255, 255, 255))\",Gz6VnEMCv:\"var(--token-5a85bb57-0def-4f57-982f-ecc740c759c1, rgb(255, 255, 255))\",NSi3WeNDL:addImageAlt({positionX:\"70.4%\",positionY:\"66.3%\",src:\"https://framerusercontent.com/images/tOtyHWRCM9U3TBPyEBBOZFVGE.webp\",srcSet:\"https://framerusercontent.com/images/tOtyHWRCM9U3TBPyEBBOZFVGE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/tOtyHWRCM9U3TBPyEBBOZFVGE.webp 900w\"},\"\"),variant:\"dGXhyLPWQ\"}},children:/*#__PURE__*/_jsx(ExpertiseCard,{DT8Rv9Smb:\"rgb(3, 93, 80)\",Gz6VnEMCv:\"rgb(3, 93, 80)\",height:\"100%\",id:\"H_WTJWkiZ\",layoutId:\"H_WTJWkiZ\",n_Dbb6PVf:\"In many places, poverty reduction is stalling and gender equality is backsliding, yet digital finance, shifting power structures, and better access to education and healthcare offer new hope. Newton Street highlights opportunities for the historically marginalized.\",NSi3WeNDL:addImageAlt({src:\"https://framerusercontent.com/images/tOtyHWRCM9U3TBPyEBBOZFVGE.webp\",srcSet:\"https://framerusercontent.com/images/tOtyHWRCM9U3TBPyEBBOZFVGE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/tOtyHWRCM9U3TBPyEBBOZFVGE.webp 900w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"L_2HF8W3b\",width:\"100%\",YmWP_LIPl:\"Economic Opportunity\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ptd5fn\",\"data-framer-name\":\"Row 1\",name:\"Row 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2jhvpq-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mS5RmY5A1:{NSi3WeNDL:addImageAlt({positionX:\"48.8%\",positionY:\"56.4%\",src:\"https://framerusercontent.com/images/UKiqbuCEgxsTxI8xMKhcnqOgo.webp\",srcSet:\"https://framerusercontent.com/images/UKiqbuCEgxsTxI8xMKhcnqOgo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/UKiqbuCEgxsTxI8xMKhcnqOgo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/UKiqbuCEgxsTxI8xMKhcnqOgo.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/UKiqbuCEgxsTxI8xMKhcnqOgo.webp 3540w\"},\"\"),variant:\"dGXhyLPWQ\"}},children:/*#__PURE__*/_jsx(ExpertiseCard,{DT8Rv9Smb:\"var(--token-5a85bb57-0def-4f57-982f-ecc740c759c1, rgb(255, 255, 255))\",Gz6VnEMCv:\"var(--token-5a85bb57-0def-4f57-982f-ecc740c759c1, rgb(255, 255, 255))\",height:\"100%\",id:\"kwQ_4C3R4\",layoutId:\"kwQ_4C3R4\",n_Dbb6PVf:\"With philanthropy evolving rapidly, there's an increased focus on addressing systemic inequalities and practicing inclusive decision-making. Newton Street guides givers in navigating this transformed landscape and aligning their desired impact with their core values.\",NSi3WeNDL:addImageAlt({positionX:\"50.3%\",positionY:\"69.6%\",src:\"https://framerusercontent.com/images/UKiqbuCEgxsTxI8xMKhcnqOgo.webp\",srcSet:\"https://framerusercontent.com/images/UKiqbuCEgxsTxI8xMKhcnqOgo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/UKiqbuCEgxsTxI8xMKhcnqOgo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/UKiqbuCEgxsTxI8xMKhcnqOgo.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/UKiqbuCEgxsTxI8xMKhcnqOgo.webp 3540w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"sbBzqTTp3\",width:\"100%\",YmWP_LIPl:\"Philanthropy\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oqi9x5\",\"data-framer-name\":\"About me\",name:\"About me\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ngtrdi\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ijxRdyeSR:{y:3132.4},mS5RmY5A1:{width:\"calc((min(100vw, 1200px) - 32px) * 0.8073)\",y:3798}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:158,width:\"calc(min(100vw, 1200px) - 80px)\",y:4067,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xuzoiq-container\",children:/*#__PURE__*/_jsx(SectionTitle,{H8tEdxgUl:\"rgb(3, 93, 80)\",height:\"100%\",id:\"mNMV5waUr\",layoutId:\"mNMV5waUr\",style:{width:\"100%\"},width:\"100%\",WqYA1cYY4:\"Giving voice to your work\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k7ahjh\",\"data-framer-name\":\"Why hire me\",name:\"Why hire me\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16n2mae\",\"data-framer-name\":\"Reason 1\",name:\"Reason 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x5qi5g\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-18zqyt0\",\"data-styles-preset\":\"QWBX0Qv95\",style:{\"--framer-text-alignment\":\"left\"},children:\"Crafting your narrative\\xa0\"})}),className:\"framer-nkozjy\",\"data-framer-name\":\"Proven communicative\",fonts:[\"Inter\"],name:\"Proven communicative\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aouv48\",\"data-styles-preset\":\"VDGtB_OAj\",children:\"A powerful and compelling story is essential to break through in today\u2019s distraction-heavy world. We help you create a narrative framework that communicates your mission in a way that captivates the audiences you most want to reach.\"})}),className:\"framer-numfmi\",\"data-framer-name\":\"I communicate what I struggle to make all crystal clear. I can communicate my ideas well, proven by my videos.\",fonts:[\"Inter\"],name:\"I communicate what I struggle to make all crystal clear. I can communicate my ideas well, proven by my videos.\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-133vkpd\",\"data-framer-name\":\"Reason 2\",name:\"Reason 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6a3nft\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-18zqyt0\",\"data-styles-preset\":\"QWBX0Qv95\",style:{\"--framer-text-alignment\":\"left\"},children:\"Telling your story\"})}),className:\"framer-19xumzi\",\"data-framer-name\":\"Professional Collaborative\u200B\",fonts:[\"Inter\"],name:\"Professional Collaborative\u200B\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aouv48\",\"data-styles-preset\":\"VDGtB_OAj\",children:\"We identify trends with high media interest that allow you to showcase your expertise. We position your authentic voice to shape and lead global conversations. Our services range from kindling ideas to creating the content you wish to share.\"})}),className:\"framer-8fiwst\",\"data-framer-name\":\"I can work within a team, collaborate well with developers because I\u2019m frontend-end myself, and I love feedbacks.\",fonts:[\"Inter\"],name:\"I can work within a team, collaborate well with developers because I\u2019m frontend-end myself, and I love feedbacks.\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ae88kn\",\"data-framer-name\":\"Reason 3\",name:\"Reason 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cegvk8\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-18zqyt0\",\"data-styles-preset\":\"QWBX0Qv95\",style:{\"--framer-text-alignment\":\"left\"},children:\"Managing your reputation\"})}),className:\"framer-7h5i62\",\"data-framer-name\":\"Client\u2019s Favourite\",fonts:[\"Inter\"],name:\"Client\u2019s Favourite\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1aouv48\",\"data-styles-preset\":\"VDGtB_OAj\",children:\"Reacting to a live issue is not enough. We assess your risks early on and provide steps to mitigate them. We build a crisis communications protocol, identifying gaps in your process and providing counsel during a crisis.\"})}),className:\"framer-q3y2po\",\"data-framer-name\":\"I\u2019ve been freelancing for 7 years, working directly with overseas clients and all I heard are positive reviews.\",fonts:[\"Inter\"],name:\"I\u2019ve been freelancing for 7 years, working directly with overseas clients and all I heard are positive reviews.\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xdfavk-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:0,id:\"ncCEc09rY\",layoutId:\"ncCEc09rY\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-tn4itf\",\"data-framer-name\":\"Services\",name:\"Services\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q3hgx\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wv7zuw\",\"data-framer-name\":\"Pipefy\",name:\"Pipefy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-kt4cu7\",\"data-styles-preset\":\"mKhUsKTuh\",children:\"Strategic Planning\"})}),className:\"framer-184bj0j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-119wok9\",\"data-framer-name\":\"Teamwork\",name:\"Teamwork\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-kt4cu7\",\"data-styles-preset\":\"mKhUsKTuh\",children:\"Thought Leadership\"})}),className:\"framer-1x13gze\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qszosh\",\"data-framer-name\":\"Dojo Toolkit\",name:\"Dojo Toolkit\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-kt4cu7\",\"data-styles-preset\":\"mKhUsKTuh\",children:\"Narrative Development\"})}),className:\"framer-1sam272\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16ae2a\",\"data-framer-name\":\"Django\",name:\"Django\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-kt4cu7\",\"data-styles-preset\":\"mKhUsKTuh\",children:\"Media Relations\"})}),className:\"framer-xlavcq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xwx82y\",\"data-framer-name\":\"Rackspace\",name:\"Rackspace\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-kt4cu7\",\"data-styles-preset\":\"mKhUsKTuh\",children:\"Campaign Strategy\"})}),className:\"framer-1kwmcg0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1srqoq4\",\"data-framer-name\":\"Portal\",name:\"Portal\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-kt4cu7\",\"data-styles-preset\":\"mKhUsKTuh\",children:\"Influencer Alignment\"})}),className:\"framer-1ga852o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y4ixn5\",\"data-framer-name\":\"Portal\",name:\"Portal\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-kt4cu7\",\"data-styles-preset\":\"mKhUsKTuh\",children:\"Crisis Management\"})}),className:\"framer-vw6713\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18nvjg4\",\"data-framer-name\":\"Portal\",name:\"Portal\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-kt4cu7\",\"data-styles-preset\":\"mKhUsKTuh\",children:\"Storytelling\"})}),className:\"framer-1qrrzhm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bu3m1x\",\"data-framer-name\":\"Portal\",name:\"Portal\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-kt4cu7\",\"data-styles-preset\":\"mKhUsKTuh\",children:\"Digital Strategy\"})}),className:\"framer-1akdjl0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1khyp4n\",\"data-framer-name\":\"Portal\",name:\"Portal\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-kt4cu7\",\"data-styles-preset\":\"mKhUsKTuh\",children:\"Media Training\"})}),className:\"framer-1tfdb8d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y1809d\",\"data-framer-name\":\"Portal\",name:\"Portal\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-kt4cu7\",\"data-styles-preset\":\"mKhUsKTuh\",children:\"   \"})}),className:\"framer-146hvga\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":kJgE4RS4Q\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":kJgE4RS4Q\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":kJgE4RS4Q\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-d0uhir-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ijxRdyeSR:{Ps1hi3RhX:resolvedLinks1[1],variant:\"GnCEJkI1S\"},mS5RmY5A1:{Ps1hi3RhX:resolvedLinks1[2],variant:\"PutbNumkc\"}},children:/*#__PURE__*/_jsx(Footer,{agJzdvgQw:\"hello@newtonstreet.com\",height:\"100%\",id:\"cGqct448y\",layoutId:\"cGqct448y\",Ps1hi3RhX:resolvedLinks1[0],style:{width:\"100%\"},variant:\"iv0LF1z37\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-dfl22 { background: var(--token-aad410e7-d323-4d17-ae27-305a1a3bb226, rgb(238, 238, 242)) /* {\"name\":\"Background Secondary\"} */; }`,\".framer-dfl22.framer-lux5qc, .framer-dfl22 .framer-lux5qc { display: block; }\",\".framer-dfl22.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-aad410e7-d323-4d17-ae27-305a1a3bb226, #eeeef2); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-dfl22 .framer-74c0kb-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 8; }\",\".framer-dfl22 .framer-1q1qpi0 { 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; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dfl22 .framer-1ydu51j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 16px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-dfl22 .framer-1d1224n { align-content: center; align-items: center; background-color: #035d50; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 77px; height: min-content; justify-content: flex-start; overflow: visible; padding: 70px 56px 0px 56px; position: relative; width: 100%; }\",\".framer-dfl22 .framer-17krv2n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 169px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 104px; }\",\".framer-dfl22 .framer-guy2yy { aspect-ratio: 0.61 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 169px); overflow: visible; position: relative; width: 103px; }\",\".framer-dfl22 .framer-1y7zpyq, .framer-dfl22 .framer-xbbpqn, .framer-dfl22 .framer-oqi9x5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dfl22 .framer-1v3qfv0, .framer-dfl22 .framer-1k1b2u4, .framer-dfl22 .framer-nkozjy, .framer-dfl22 .framer-numfmi, .framer-dfl22 .framer-19xumzi, .framer-dfl22 .framer-8fiwst, .framer-dfl22 .framer-7h5i62, .framer-dfl22 .framer-q3y2po { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dfl22 .framer-4tgft4 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; flex: none; height: 480px; overflow: hidden; position: relative; width: 1120px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dfl22 .framer-7nhla2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dfl22 .framer-u9z7zz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-dfl22 .framer-1y6ojqw-container, .framer-dfl22 .framer-xuzoiq-container, .framer-dfl22 .framer-d0uhir-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-dfl22 .framer-zp4up5, .framer-dfl22 .framer-169imzw { 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-dfl22 .framer-6jcaje, .framer-dfl22 .framer-1qjp4dp, .framer-dfl22 .framer-5snm14, .framer-dfl22 .framer-1nw6bx9, .framer-dfl22 .framer-e9x21z, .framer-dfl22 .framer-axag2t, .framer-dfl22 .framer-1t314dk, .framer-dfl22 .framer-15flmj8 { 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: relative; width: 100%; }\",\".framer-dfl22 .framer-w2sevy-container, .framer-dfl22 .framer-meqd3p-container, .framer-dfl22 .framer-m819m1-container, .framer-dfl22 .framer-rsup8z-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-dfl22 .framer-1tc23yb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dfl22 .framer-b9jdep-container { flex: none; height: 560px; position: sticky; top: 160px; width: 548px; will-change: transform; z-index: 1; }\",\".framer-dfl22 .framer-53goiu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-dfl22 .framer-i97kf3-container, .framer-dfl22 .framer-1p540kr-container, .framer-dfl22 .framer-11qj0p-container, .framer-dfl22 .framer-1i6hp11-container { flex: none; height: 408px; position: relative; width: 100%; }\",\".framer-dfl22 .framer-mqoz1v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 87px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 70px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-dfl22 .framer-1vu44ay-container { flex: none; height: auto; position: relative; width: 70%; }\",\".framer-dfl22 .framer-mu0v5v, .framer-dfl22 .framer-n2jqtp, .framer-dfl22 .framer-1ptd5fn, .framer-dfl22 .framer-k7ahjh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dfl22 .framer-lc0yuq-container, .framer-dfl22 .framer-1fdl3wq-container { align-self: stretch; flex: none; height: auto; position: relative; width: 56%; }\",\".framer-dfl22 .framer-xxgzk9-container { flex: 1 0 0px; height: 600px; position: relative; width: 1px; }\",\".framer-dfl22 .framer-mxdwhm-container { flex: 1 0 0px; height: 500px; position: relative; width: 1px; }\",\".framer-dfl22 .framer-2jhvpq-container { flex: 1 0 0px; height: 300px; position: relative; width: 1px; }\",\".framer-dfl22 .framer-ngtrdi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 84px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 132px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-dfl22 .framer-16n2mae, .framer-dfl22 .framer-133vkpd, .framer-dfl22 .framer-1ae88kn { align-content: flex-start; align-items: flex-start; background-color: var(--token-9ea1f747-e316-4d97-ae26-27318d46e2af, #ffffff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-dfl22 .framer-x5qi5g, .framer-dfl22 .framer-6a3nft, .framer-dfl22 .framer-cegvk8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dfl22 .framer-1xdfavk-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-dfl22 .framer-tn4itf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 0px 48px 0px; position: relative; width: min-content; }\",\".framer-dfl22 .framer-q3hgx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dfl22 .framer-wv7zuw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-dfl22 .framer-184bj0j, .framer-dfl22 .framer-1x13gze, .framer-dfl22 .framer-1sam272, .framer-dfl22 .framer-xlavcq, .framer-dfl22 .framer-1kwmcg0, .framer-dfl22 .framer-1ga852o, .framer-dfl22 .framer-vw6713, .framer-dfl22 .framer-1qrrzhm, .framer-dfl22 .framer-1akdjl0, .framer-dfl22 .framer-1tfdb8d, .framer-dfl22 .framer-146hvga { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-dfl22 .framer-119wok9, .framer-dfl22 .framer-1qszosh, .framer-dfl22 .framer-16ae2a, .framer-dfl22 .framer-1xwx82y, .framer-dfl22 .framer-1srqoq4, .framer-dfl22 .framer-y4ixn5, .framer-dfl22 .framer-18nvjg4, .framer-dfl22 .framer-1bu3m1x, .framer-dfl22 .framer-1khyp4n, .framer-dfl22 .framer-1y1809d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 48px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-dfl22.framer-72rtr7, .framer-dfl22 .framer-1q1qpi0, .framer-dfl22 .framer-1ydu51j, .framer-dfl22 .framer-1d1224n, .framer-dfl22 .framer-17krv2n, .framer-dfl22 .framer-1y7zpyq, .framer-dfl22 .framer-7nhla2, .framer-dfl22 .framer-u9z7zz, .framer-dfl22 .framer-zp4up5, .framer-dfl22 .framer-6jcaje, .framer-dfl22 .framer-1qjp4dp, .framer-dfl22 .framer-5snm14, .framer-dfl22 .framer-1nw6bx9, .framer-dfl22 .framer-1tc23yb, .framer-dfl22 .framer-53goiu, .framer-dfl22 .framer-e9x21z, .framer-dfl22 .framer-axag2t, .framer-dfl22 .framer-1t314dk, .framer-dfl22 .framer-15flmj8, .framer-dfl22 .framer-xbbpqn, .framer-dfl22 .framer-mqoz1v, .framer-dfl22 .framer-169imzw, .framer-dfl22 .framer-mu0v5v, .framer-dfl22 .framer-n2jqtp, .framer-dfl22 .framer-1ptd5fn, .framer-dfl22 .framer-oqi9x5, .framer-dfl22 .framer-ngtrdi, .framer-dfl22 .framer-k7ahjh, .framer-dfl22 .framer-16n2mae, .framer-dfl22 .framer-x5qi5g, .framer-dfl22 .framer-133vkpd, .framer-dfl22 .framer-6a3nft, .framer-dfl22 .framer-1ae88kn, .framer-dfl22 .framer-cegvk8, .framer-dfl22 .framer-tn4itf, .framer-dfl22 .framer-q3hgx, .framer-dfl22 .framer-wv7zuw, .framer-dfl22 .framer-119wok9, .framer-dfl22 .framer-1qszosh, .framer-dfl22 .framer-16ae2a, .framer-dfl22 .framer-1xwx82y, .framer-dfl22 .framer-1srqoq4, .framer-dfl22 .framer-y4ixn5, .framer-dfl22 .framer-18nvjg4, .framer-dfl22 .framer-1bu3m1x, .framer-dfl22 .framer-1khyp4n, .framer-dfl22 .framer-1y1809d { gap: 0px; } .framer-dfl22.framer-72rtr7 > *, .framer-dfl22 .framer-1y7zpyq > *, .framer-dfl22 .framer-xbbpqn > *, .framer-dfl22 .framer-oqi9x5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-dfl22.framer-72rtr7 > :first-child, .framer-dfl22 .framer-1q1qpi0 > :first-child, .framer-dfl22 .framer-1ydu51j > :first-child, .framer-dfl22 .framer-1d1224n > :first-child, .framer-dfl22 .framer-17krv2n > :first-child, .framer-dfl22 .framer-1y7zpyq > :first-child, .framer-dfl22 .framer-7nhla2 > :first-child, .framer-dfl22 .framer-u9z7zz > :first-child, .framer-dfl22 .framer-zp4up5 > :first-child, .framer-dfl22 .framer-6jcaje > :first-child, .framer-dfl22 .framer-1qjp4dp > :first-child, .framer-dfl22 .framer-5snm14 > :first-child, .framer-dfl22 .framer-1nw6bx9 > :first-child, .framer-dfl22 .framer-53goiu > :first-child, .framer-dfl22 .framer-e9x21z > :first-child, .framer-dfl22 .framer-axag2t > :first-child, .framer-dfl22 .framer-1t314dk > :first-child, .framer-dfl22 .framer-15flmj8 > :first-child, .framer-dfl22 .framer-xbbpqn > :first-child, .framer-dfl22 .framer-mqoz1v > :first-child, .framer-dfl22 .framer-169imzw > :first-child, .framer-dfl22 .framer-oqi9x5 > :first-child, .framer-dfl22 .framer-ngtrdi > :first-child, .framer-dfl22 .framer-16n2mae > :first-child, .framer-dfl22 .framer-x5qi5g > :first-child, .framer-dfl22 .framer-133vkpd > :first-child, .framer-dfl22 .framer-6a3nft > :first-child, .framer-dfl22 .framer-1ae88kn > :first-child, .framer-dfl22 .framer-cegvk8 > :first-child, .framer-dfl22 .framer-119wok9 > :first-child, .framer-dfl22 .framer-1qszosh > :first-child, .framer-dfl22 .framer-16ae2a > :first-child, .framer-dfl22 .framer-1xwx82y > :first-child, .framer-dfl22 .framer-1srqoq4 > :first-child, .framer-dfl22 .framer-y4ixn5 > :first-child, .framer-dfl22 .framer-18nvjg4 > :first-child, .framer-dfl22 .framer-1bu3m1x > :first-child, .framer-dfl22 .framer-1khyp4n > :first-child, .framer-dfl22 .framer-1y1809d > :first-child { margin-top: 0px; } .framer-dfl22.framer-72rtr7 > :last-child, .framer-dfl22 .framer-1q1qpi0 > :last-child, .framer-dfl22 .framer-1ydu51j > :last-child, .framer-dfl22 .framer-1d1224n > :last-child, .framer-dfl22 .framer-17krv2n > :last-child, .framer-dfl22 .framer-1y7zpyq > :last-child, .framer-dfl22 .framer-7nhla2 > :last-child, .framer-dfl22 .framer-u9z7zz > :last-child, .framer-dfl22 .framer-zp4up5 > :last-child, .framer-dfl22 .framer-6jcaje > :last-child, .framer-dfl22 .framer-1qjp4dp > :last-child, .framer-dfl22 .framer-5snm14 > :last-child, .framer-dfl22 .framer-1nw6bx9 > :last-child, .framer-dfl22 .framer-53goiu > :last-child, .framer-dfl22 .framer-e9x21z > :last-child, .framer-dfl22 .framer-axag2t > :last-child, .framer-dfl22 .framer-1t314dk > :last-child, .framer-dfl22 .framer-15flmj8 > :last-child, .framer-dfl22 .framer-xbbpqn > :last-child, .framer-dfl22 .framer-mqoz1v > :last-child, .framer-dfl22 .framer-169imzw > :last-child, .framer-dfl22 .framer-oqi9x5 > :last-child, .framer-dfl22 .framer-ngtrdi > :last-child, .framer-dfl22 .framer-16n2mae > :last-child, .framer-dfl22 .framer-x5qi5g > :last-child, .framer-dfl22 .framer-133vkpd > :last-child, .framer-dfl22 .framer-6a3nft > :last-child, .framer-dfl22 .framer-1ae88kn > :last-child, .framer-dfl22 .framer-cegvk8 > :last-child, .framer-dfl22 .framer-119wok9 > :last-child, .framer-dfl22 .framer-1qszosh > :last-child, .framer-dfl22 .framer-16ae2a > :last-child, .framer-dfl22 .framer-1xwx82y > :last-child, .framer-dfl22 .framer-1srqoq4 > :last-child, .framer-dfl22 .framer-y4ixn5 > :last-child, .framer-dfl22 .framer-18nvjg4 > :last-child, .framer-dfl22 .framer-1bu3m1x > :last-child, .framer-dfl22 .framer-1khyp4n > :last-child, .framer-dfl22 .framer-1y1809d > :last-child { margin-bottom: 0px; } .framer-dfl22 .framer-1q1qpi0 > *, .framer-dfl22 .framer-1ydu51j > *, .framer-dfl22 .framer-53goiu > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-dfl22 .framer-1d1224n > * { margin: 0px; margin-bottom: calc(77px / 2); margin-top: calc(77px / 2); } .framer-dfl22 .framer-17krv2n > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dfl22 .framer-7nhla2 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-dfl22 .framer-u9z7zz > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-dfl22 .framer-zp4up5 > *, .framer-dfl22 .framer-169imzw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-dfl22 .framer-6jcaje > *, .framer-dfl22 .framer-1qjp4dp > *, .framer-dfl22 .framer-5snm14 > *, .framer-dfl22 .framer-1nw6bx9 > *, .framer-dfl22 .framer-e9x21z > *, .framer-dfl22 .framer-axag2t > *, .framer-dfl22 .framer-1t314dk > *, .framer-dfl22 .framer-15flmj8 > *, .framer-dfl22 .framer-16n2mae > *, .framer-dfl22 .framer-133vkpd > *, .framer-dfl22 .framer-1ae88kn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-dfl22 .framer-1tc23yb > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-dfl22 .framer-1tc23yb > :first-child, .framer-dfl22 .framer-mu0v5v > :first-child, .framer-dfl22 .framer-n2jqtp > :first-child, .framer-dfl22 .framer-1ptd5fn > :first-child, .framer-dfl22 .framer-k7ahjh > :first-child, .framer-dfl22 .framer-tn4itf > :first-child, .framer-dfl22 .framer-q3hgx > :first-child, .framer-dfl22 .framer-wv7zuw > :first-child { margin-left: 0px; } .framer-dfl22 .framer-1tc23yb > :last-child, .framer-dfl22 .framer-mu0v5v > :last-child, .framer-dfl22 .framer-n2jqtp > :last-child, .framer-dfl22 .framer-1ptd5fn > :last-child, .framer-dfl22 .framer-k7ahjh > :last-child, .framer-dfl22 .framer-tn4itf > :last-child, .framer-dfl22 .framer-q3hgx > :last-child, .framer-dfl22 .framer-wv7zuw > :last-child { margin-right: 0px; } .framer-dfl22 .framer-mqoz1v > * { margin: 0px; margin-bottom: calc(87px / 2); margin-top: calc(87px / 2); } .framer-dfl22 .framer-mu0v5v > *, .framer-dfl22 .framer-n2jqtp > *, .framer-dfl22 .framer-1ptd5fn > *, .framer-dfl22 .framer-k7ahjh > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-dfl22 .framer-ngtrdi > * { margin: 0px; margin-bottom: calc(84px / 2); margin-top: calc(84px / 2); } .framer-dfl22 .framer-x5qi5g > *, .framer-dfl22 .framer-6a3nft > *, .framer-dfl22 .framer-cegvk8 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-dfl22 .framer-tn4itf > *, .framer-dfl22 .framer-q3hgx > * { margin: 0px; margin-left: calc(72px / 2); margin-right: calc(72px / 2); } .framer-dfl22 .framer-wv7zuw > * { margin: 0px; margin-left: calc(7.5px / 2); margin-right: calc(7.5px / 2); } .framer-dfl22 .framer-119wok9 > *, .framer-dfl22 .framer-1qszosh > *, .framer-dfl22 .framer-16ae2a > *, .framer-dfl22 .framer-1xwx82y > *, .framer-dfl22 .framer-1srqoq4 > *, .framer-dfl22 .framer-y4ixn5 > *, .framer-dfl22 .framer-18nvjg4 > *, .framer-dfl22 .framer-1bu3m1x > *, .framer-dfl22 .framer-1khyp4n > *, .framer-dfl22 .framer-1y1809d > * { margin: 0px; margin-bottom: calc(7.5px / 2); margin-top: calc(7.5px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-dfl22 { background: var(--token-aad410e7-d323-4d17-ae27-305a1a3bb226, rgb(238, 238, 242)) /* {\"name\":\"Background Secondary\"} */; } .framer-dfl22.framer-72rtr7 { width: 810px; } .framer-dfl22 .framer-1d1224n { gap: 47px; padding: 46px 0px 0px 0px; } .framer-dfl22 .framer-guy2yy { height: var(--framer-aspect-ratio-supported, 130px); width: 79px; } .framer-dfl22 .framer-4tgft4 { height: 298px; width: 100%; } .framer-dfl22 .framer-u9z7zz { gap: 52px; order: 0; padding: 68px 40px 68px 40px; } .framer-dfl22 .framer-1y6ojqw-container { width: 70%; } .framer-dfl22 .framer-mqoz1v { padding: 46px 40px 0px 40px; } .framer-dfl22 .framer-1fdl3wq-container { width: 55%; } .framer-dfl22 .framer-ngtrdi { gap: 56px; padding: 94px 40px 0px 40px; } .framer-dfl22 .framer-k7ahjh { flex-direction: column; } .framer-dfl22 .framer-16n2mae, .framer-dfl22 .framer-133vkpd, .framer-dfl22 .framer-1ae88kn { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-dfl22 .framer-1d1224n, .framer-dfl22 .framer-u9z7zz, .framer-dfl22 .framer-ngtrdi, .framer-dfl22 .framer-k7ahjh { gap: 0px; } .framer-dfl22 .framer-1d1224n > * { margin: 0px; margin-bottom: calc(47px / 2); margin-top: calc(47px / 2); } .framer-dfl22 .framer-1d1224n > :first-child, .framer-dfl22 .framer-u9z7zz > :first-child, .framer-dfl22 .framer-ngtrdi > :first-child, .framer-dfl22 .framer-k7ahjh > :first-child { margin-top: 0px; } .framer-dfl22 .framer-1d1224n > :last-child, .framer-dfl22 .framer-u9z7zz > :last-child, .framer-dfl22 .framer-ngtrdi > :last-child, .framer-dfl22 .framer-k7ahjh > :last-child { margin-bottom: 0px; } .framer-dfl22 .framer-u9z7zz > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-dfl22 .framer-ngtrdi > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-dfl22 .framer-k7ahjh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-dfl22 { background: var(--token-aad410e7-d323-4d17-ae27-305a1a3bb226, rgb(238, 238, 242)) /* {\"name\":\"Background Secondary\"} */; } .framer-dfl22.framer-72rtr7 { width: 390px; } .framer-dfl22 .framer-1q1qpi0 { flex-wrap: wrap; } .framer-dfl22 .framer-1ydu51j { padding: 16px 16px 0px 16px; } .framer-dfl22 .framer-1d1224n { gap: 28px; padding: 34px 0px 0px 0px; } .framer-dfl22 .framer-17krv2n { height: min-content; width: min-content; } .framer-dfl22 .framer-guy2yy { height: var(--framer-aspect-ratio-supported, 79px); width: 48px; } .framer-dfl22 .framer-4tgft4 { height: 229px; width: 100%; } .framer-dfl22 .framer-7nhla2 { gap: 24px; } .framer-dfl22 .framer-u9z7zz { gap: 24px; padding: 32px 16px 32px 16px; } .framer-dfl22 .framer-1tc23yb, .framer-dfl22 .framer-k7ahjh { flex-direction: column; } .framer-dfl22 .framer-53goiu { flex: none; gap: 24px; width: 100%; } .framer-dfl22 .framer-i97kf3-container, .framer-dfl22 .framer-1p540kr-container, .framer-dfl22 .framer-11qj0p-container, .framer-dfl22 .framer-1i6hp11-container { height: auto; z-index: 1; } .framer-dfl22 .framer-mqoz1v { gap: 24px; padding: 32px 16px 0px 16px; } .framer-dfl22 .framer-1vu44ay-container { width: 82%; } .framer-dfl22 .framer-mu0v5v, .framer-dfl22 .framer-n2jqtp { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-dfl22 .framer-lc0yuq-container { align-self: start; height: 500px; justify-self: start; width: 100%; } .framer-dfl22 .framer-xxgzk9-container, .framer-dfl22 .framer-2jhvpq-container { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-dfl22 .framer-mxdwhm-container { align-self: start; flex: none; justify-self: start; width: 100%; } .framer-dfl22 .framer-1fdl3wq-container { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-dfl22 .framer-1ptd5fn { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: 500px; justify-content: center; } .framer-dfl22 .framer-ngtrdi { gap: 44px; order: 0; padding: 60px 16px 0px 16px; } .framer-dfl22 .framer-xuzoiq-container { width: 81%; } .framer-dfl22 .framer-16n2mae, .framer-dfl22 .framer-133vkpd, .framer-dfl22 .framer-1ae88kn { flex: none; gap: 24px; padding: 24px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-dfl22 .framer-1d1224n, .framer-dfl22 .framer-7nhla2, .framer-dfl22 .framer-u9z7zz, .framer-dfl22 .framer-1tc23yb, .framer-dfl22 .framer-53goiu, .framer-dfl22 .framer-mqoz1v, .framer-dfl22 .framer-mu0v5v, .framer-dfl22 .framer-n2jqtp, .framer-dfl22 .framer-1ptd5fn, .framer-dfl22 .framer-ngtrdi, .framer-dfl22 .framer-k7ahjh, .framer-dfl22 .framer-16n2mae, .framer-dfl22 .framer-133vkpd, .framer-dfl22 .framer-1ae88kn { gap: 0px; } .framer-dfl22 .framer-1d1224n > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-dfl22 .framer-1d1224n > :first-child, .framer-dfl22 .framer-7nhla2 > :first-child, .framer-dfl22 .framer-u9z7zz > :first-child, .framer-dfl22 .framer-1tc23yb > :first-child, .framer-dfl22 .framer-53goiu > :first-child, .framer-dfl22 .framer-mqoz1v > :first-child, .framer-dfl22 .framer-ngtrdi > :first-child, .framer-dfl22 .framer-k7ahjh > :first-child, .framer-dfl22 .framer-16n2mae > :first-child, .framer-dfl22 .framer-133vkpd > :first-child, .framer-dfl22 .framer-1ae88kn > :first-child { margin-top: 0px; } .framer-dfl22 .framer-1d1224n > :last-child, .framer-dfl22 .framer-7nhla2 > :last-child, .framer-dfl22 .framer-u9z7zz > :last-child, .framer-dfl22 .framer-1tc23yb > :last-child, .framer-dfl22 .framer-53goiu > :last-child, .framer-dfl22 .framer-mqoz1v > :last-child, .framer-dfl22 .framer-ngtrdi > :last-child, .framer-dfl22 .framer-k7ahjh > :last-child, .framer-dfl22 .framer-16n2mae > :last-child, .framer-dfl22 .framer-133vkpd > :last-child, .framer-dfl22 .framer-1ae88kn > :last-child { margin-bottom: 0px; } .framer-dfl22 .framer-7nhla2 > *, .framer-dfl22 .framer-u9z7zz > *, .framer-dfl22 .framer-53goiu > *, .framer-dfl22 .framer-mqoz1v > *, .framer-dfl22 .framer-k7ahjh > *, .framer-dfl22 .framer-16n2mae > *, .framer-dfl22 .framer-133vkpd > *, .framer-dfl22 .framer-1ae88kn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-dfl22 .framer-1tc23yb > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-dfl22 .framer-mu0v5v > *, .framer-dfl22 .framer-mu0v5v > :first-child, .framer-dfl22 .framer-mu0v5v > :last-child, .framer-dfl22 .framer-n2jqtp > *, .framer-dfl22 .framer-n2jqtp > :first-child, .framer-dfl22 .framer-n2jqtp > :last-child, .framer-dfl22 .framer-1ptd5fn > *, .framer-dfl22 .framer-1ptd5fn > :first-child, .framer-dfl22 .framer-1ptd5fn > :last-child { margin: 0px; } .framer-dfl22 .framer-ngtrdi > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6280.2\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ijxRdyeSR\":{\"layout\":[\"fixed\",\"auto\"]},\"mS5RmY5A1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-dfl22\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6280.2,width:1200};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\"}]},...TopNavigationFonts,...SectionTitleFonts,...MyWorksBaseFonts,...ThumbnailFonts,...ExpertiseCardFonts,...TickerFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ijxRdyeSR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mS5RmY5A1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"6280.2\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "d", "f", "l", "g", "glide", "a", "u", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "createGeneratorEasing", "e", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "dispatchViewEvent", "se", "o", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transformTemplate1", "_", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "coverImage", "height", "highlight", "id", "link", "projectTitle", "width", "year", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "kQu4cl7eA", "fAN9Zkitk", "dmmQtxZHo", "itTUqP9fX", "j9aRg9TC8", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "Link", "u", "cx", "RichText2", "Image2", "css", "FramerA0MnVXf9v", "withCSS", "A0MnVXf9v_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "RichTextWithFX", "withFX", "RichText2", "ImageWithFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "animation", "transition1", "animation1", "transition2", "animation2", "transformTemplate1", "_", "transition3", "animation3", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "climateChange", "height", "id", "image", "subtitleColor", "subtitleText", "titleColor", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "_restProps_transformTemplate", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "YmWP_LIPl", "DT8Rv9Smb", "n_Dbb6PVf", "Gz6VnEMCv", "NSi3WeNDL", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapw7ozax", "args", "_restProps_transformTemplate1", "transforms", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "cx", "t", "css", "FramerJy99SU8LV", "withCSS", "Jy99SU8LV_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "o", "i", "s", "l", "c", "d", "h", "g", "p", "m", "u", "y", "f", "v", "w", "V", "k", "b", "W", "j", "S", "U", "F", "R", "L", "M", "E", "N", "e", "A", "x", "addPropertyControls", "ControlType", "CSKg1C1z6_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "QueryData", "query", "children", "data", "useQueryData", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "qzJwxJcZkDXBvueOrQ", "R0HurOYl8DXBvueOrQ", "idDXBvueOrQ", "qzJwxJcZkwfYZ2C3CN", "R0HurOYl8wfYZ2C3CN", "idwfYZ2C3CN", "qzJwxJcZknpHgkOtim", "R0HurOYl8npHgkOtim", "idnpHgkOtim", "qzJwxJcZkpb_c05Efz", "R0HurOYl8pb_c05Efz", "idpb_c05Efz", "qzJwxJcZkDtXxdFO9c", "R0HurOYl8DtXxdFO9c", "idDtXxdFO9c", "qzJwxJcZkB2ujpj9lD", "R0HurOYl8B2ujpj9lD", "idB2ujpj9lD", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "isOnCanvas", "useIsOnFramerCanvas", "initialVariant", "useConstant", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "CSKg1C1z6_default", "collection", "i", "PathVariablesContext", "Image2", "collection1", "collection2", "collection3", "collection4", "collection5", "css", "FramerKfBOVD2OO", "withCSS", "KfBOVD2OO_default", "addPropertyControls", "ControlType", "addFonts", "TopNavigationFonts", "getFonts", "S4GqzXB1q_default", "TopNavigationWithVariantAppearEffect", "withVariantAppearEffect", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ImageWithOptimizedAppearEffect", "Image2", "MotionDivWithOptimizedAppearEffect", "motion", "SectionTitleFonts", "HzjOcVFMM_default", "MyWorksBaseFonts", "A0MnVXf9v_default", "ThumbnailFonts", "KfBOVD2OO_default", "ThumbnailWithVariantAppearEffect", "ExpertiseCardFonts", "Jy99SU8LV_default", "ContainerWithFX", "withFX", "Container", "TickerFonts", "Ticker", "FooterFonts", "J449CQlRT_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "addImageAlt", "image", "alt", "animation8", "transition5", "animation9", "transition6", "animation10", "transition7", "animation11", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "AMpKhwLEzkCf4jyXcv", "p1bQXV_LlkCf4jyXcv", "qzJwxJcZkkCf4jyXcv", "OiA_9TE7WkCf4jyXcv", "idkCf4jyXcv", "R0HurOYl8kCf4jyXcv", "AMpKhwLEzPC6Cy0LRa", "p1bQXV_LlPC6Cy0LRa", "qzJwxJcZkPC6Cy0LRa", "OiA_9TE7WPC6Cy0LRa", "idPC6Cy0LRa", "R0HurOYl8PC6Cy0LRa", "AMpKhwLEzrV9Smux_c", "p1bQXV_LlrV9Smux_c", "qzJwxJcZkrV9Smux_c", "OiA_9TE7WrV9Smux_c", "idrV9Smux_c", "R0HurOYl8rV9Smux_c", "AMpKhwLEzikpASBkPF", "p1bQXV_LlikpASBkPF", "qzJwxJcZkikpASBkPF", "OiA_9TE7WikpASBkPF", "idikpASBkPF", "R0HurOYl8ikpASBkPF", "AMpKhwLEzLVMGtWnnu", "p1bQXV_LlLVMGtWnnu", "OiA_9TE7WLVMGtWnnu", "qzJwxJcZkLVMGtWnnu", "idLVMGtWnnu", "R0HurOYl8LVMGtWnnu", "AMpKhwLEzA2rVuNlso", "p1bQXV_LlA2rVuNlso", "OiA_9TE7WA2rVuNlso", "qzJwxJcZkA2rVuNlso", "idA2rVuNlso", "R0HurOYl8A2rVuNlso", "AMpKhwLEzsPpxblU3h", "p1bQXV_LlsPpxblU3h", "OiA_9TE7WsPpxblU3h", "qzJwxJcZksPpxblU3h", "idsPpxblU3h", "R0HurOYl8sPpxblU3h", "AMpKhwLEzQ_JBo1SsD", "p1bQXV_LlQ_JBo1SsD", "OiA_9TE7WQ_JBo1SsD", "qzJwxJcZkQ_JBo1SsD", "idQ_JBo1SsD", "R0HurOYl8Q_JBo1SsD", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "router", "useRouter", "ref2", "elementId", "useRouteElementId", "isDisplayed", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "isDisplayed1", "isDisplayed2", "ref7", "ref8", "ref9", "ref10", "elementId5", "elementId6", "elementId7", "elementId8", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "ChildrenCanSuspend", "CSKg1C1z6_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "collection2", "paginationInfo2", "loadMore2", "collection3", "paginationInfo3", "loadMore3", "collection4", "paginationInfo4", "loadMore4", "collection5", "paginationInfo5", "loadMore5", "collection6", "paginationInfo6", "loadMore6", "collection7", "paginationInfo7", "loadMore7", "resolvedLinks1", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
