{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js", "ssg:https://framerusercontent.com/modules/9MeW9hvbqsdBFXIGIGsB/IG7iYbxzoEApc5zyahz5/jWjjV3OZG.js", "ssg:https://framerusercontent.com/modules/8UWE0VduKouYmrwLrtI7/uXd09vuIU71LJfHbHikr/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{isFunction as t,isCubicBezier as i,noopReturn as e,defaults as s,isEasingGenerator as a,isEasingList as n,interpolate as r}from\"@motionone/utils\";import{cubicBezier as h,steps as o}from\"@motionone/easing\";const l={ease:h(.25,.1,.25,1),\"ease-in\":h(.42,0,1,1),\"ease-in-out\":h(.42,0,.58,1),\"ease-out\":h(0,0,.58,1)};const u=/\\((.*?)\\)/;function getEasingFunction(s){if(t(s))return s;if(i(s))return h(...s);if(l[s])return l[s];if(s.startsWith(\"steps\")){const t=u.exec(s);if(t){const i=t[1].split(\",\");return o(parseFloat(i[0]),i[1].trim())}}return e}class Animation{constructor(t,i=[0,1],{easing:h,duration:o=s.duration,delay:l=s.delay,endDelay:u=s.endDelay,repeat:m=s.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=e;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));h=h||s.easing;if(a(h)){const t=h.createAnimation(i);h=t.easing;i=t.keyframes||i;o=t.duration||o}this.repeat=m;this.easing=n(h)?e:getEasingFunction(h);this.updateDuration(o);const d=r(i,c,n(h)?h.map(getEasingFunction):e);this.tick=i=>{var e;l=l;let s=0;s=void 0!==this.pauseTime?this.pauseTime:(i-this.startTime)*this.rate;this.t=s;s/=1e3;s=Math.max(s-l,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(s=this.totalDuration);const a=s/this.duration;let n=Math.floor(a);let r=a%1;!r&&a>=1&&(r=1);1===r&&n--;const h=n%2;(\"reverse\"===p||\"alternate\"===p&&h||\"alternate-reverse\"===p&&!h)&&(r=1-r);const o=s>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(o));t(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||s>=this.totalDuration+u);if(c){this.playState=\"finished\";null===(e=this.resolve)||void 0===e?void 0:e.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t,noopReturn as s}from\"@motionone/utils\";const n=5;function calcGeneratorVelocity(t,s,r){const a=Math.max(s-n,0);return e(r-t(a),s-a)}const r={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=r.stiffness,t=r.damping,s=r.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=r.stiffness,damping:s=r.damping,mass:n=r.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/n)/1e3;const l=calcDampingRatio(e,s,n);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const a=10;const o=1e4;function pregenerateKeyframes(e,t=s){let n;let r=a;let c=e(0);const i=[t(c.current)];while(!c.done&&r<o){c=e(r);i.push(t(c.done?c.target:c.current));void 0===n&&c.hasReachedTarget&&(n=r);r+=a}const h=r-a;1===i.length&&i.push(c.current);return{keyframes:i,duration:h/1e3,overshootDuration:(null!==n&&void 0!==n?n:h)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,zoom,radius,border,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,zoom:zoom,radius:radius,border:border,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}},border:{title:\"Border\",type:ControlType.Border,optional:true,hidden(props){return props.type!==\"url\";}},radius:{type:ControlType.BorderRadius,title:\"Radius\",hidden(props){return props.type!==\"url\";}},zoom:{title:\"Zoom\",defaultValue:1,type:ControlType.Number,hidden(props){return props.type!==\"url\";},min:.1,max:1,step:.1,displayStepper:true}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,zoom,radius,border,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style,...border,zoom:zoom,borderRadius:radius,transformOrigin:\"top center\"},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{const iframeWindow=ref.current?.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow?.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (b5638f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={cM5GRNITq:{hover:true},xNdKrl2oY:{hover:true},yIlbBQHnL:{hover:true}};const cycleOrder=[\"cM5GRNITq\",\"yIlbBQHnL\",\"xNdKrl2oY\"];const serializationHash=\"framer-Ky3wA\";const variantClassNames={cM5GRNITq:\"framer-v-lh1ayy\",xNdKrl2oY:\"framer-v-1842w9w\",yIlbBQHnL:\"framer-v-1sgjp70\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:-150};const transition2={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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Default Black\":\"xNdKrl2oY\",Default:\"cM5GRNITq\",Mobile:\"yIlbBQHnL\"};const getProps=({fontSize,fontSize2,gap,height,icon,id,image,padding,radius,text,title,width,...props})=>{return{...props,bbsnjP2f7:radius??props.bbsnjP2f7??\"36px\",ihmoCODti:gap??props.ihmoCODti??48,NKqw71Kw4:padding??props.NKqw71Kw4??\"36px\",PYrbGDwmm:icon??props.PYrbGDwmm??\"VideoCamera\",tegl3fd65:fontSize??props.tegl3fd65??36,U8wvC3Anl:title??props.U8wvC3Anl??\"Discovery\",variant:humanReadableVariantMap[props.variant]??props.variant??\"cM5GRNITq\",VWAysJHu1:fontSize2??props.VWAysJHu1??18,wvJtBtBrH:image??props.wvJtBtBrH??{src:\"https://framerusercontent.com/images/m2vWasupIaB36V9Ehd0qPLvWopY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/m2vWasupIaB36V9Ehd0qPLvWopY.png?scale-down-to=512 512w,https://framerusercontent.com/images/m2vWasupIaB36V9Ehd0qPLvWopY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/m2vWasupIaB36V9Ehd0qPLvWopY.png 1992w\"},YJIOmmIUT:text??props.YJIOmmIUT??\"Memastikan kami dapat mengetahui kebutuhan client\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,U8wvC3Anl,YJIOmmIUT,PYrbGDwmm,ihmoCODti,NKqw71Kw4,bbsnjP2f7,tegl3fd65,VWAysJHu1,wvJtBtBrH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cM5GRNITq\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-lh1ayy\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"cM5GRNITq\",ref:refBinding,style:{\"--1lovl0o\":numberToPixelString(NKqw71Kw4),\"--1ukjg4k\":ihmoCODti,\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(21px)\",background:\"linear-gradient(313deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%)\",backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:radiusForCorner(bbsnjP2f7,3),borderBottomRightRadius:radiusForCorner(bbsnjP2f7,2),borderTopLeftRadius:radiusForCorner(bbsnjP2f7,0),borderTopRightRadius:radiusForCorner(bbsnjP2f7,1),WebkitBackdropFilter:\"blur(21px)\",...style},variants:{\"cM5GRNITq-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-42a908b6-92d1-4a89-93a0-21bc6818324a, rgb(220, 33, 62))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(313deg, var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16)) 0%, rgb(127, 35, 46) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"},\"xNdKrl2oY-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},\"yIlbBQHnL-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-42a908b6-92d1-4a89-93a0-21bc6818324a, rgb(220, 33, 62))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16)) 0%, rgb(127, 35, 46) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"},yIlbBQHnL:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}},...addPropertyOverrides({\"cM5GRNITq-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"xNdKrl2oY-hover\":{\"data-framer-name\":undefined},\"yIlbBQHnL-hover\":{\"data-border\":true,\"data-framer-name\":undefined},xNdKrl2oY:{\"data-framer-name\":\"Default Black\"},yIlbBQHnL:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-n5u1p5\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"DvAbWIYSg\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u66god\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"j6ksxW2pS\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jrad7t\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"O6FyqAyat\",style:{background:\"linear-gradient(180deg, var(--token-d43d56c8-feab-4f01-8f60-7cc7d6c4362d, rgb(255, 255, 255)) 5.461711711711711%, rgba(255, 255, 255, 0.1) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{\"cM5GRNITq-hover\":{background:\"linear-gradient(142deg, rgba(71, 92, 122, 0.2) 0%, var(--token-73b1ab19-bfa1-4e2b-b2bb-0543a8d59215, rgb(252, 187, 109)) 100%)\"},\"yIlbBQHnL-hover\":{background:\"linear-gradient(142deg, rgba(71, 92, 122, 0.2) 0%, var(--token-73b1ab19-bfa1-4e2b-b2bb-0543a8d59215, rgb(252, 187, 109)) 100%)\"},xNdKrl2oY:{background:\"linear-gradient(180deg, var(--token-df6ce9fa-083a-457c-87f7-4c044a6835c4, rgb(17, 17, 17)) 0%, rgba(255, 255, 255, 0.1) 100%)\"},yIlbBQHnL:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qitha5-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"N0B5TXOtZ-container\",nodeId:\"N0B5TXOtZ\",rendersWithMotion:true,scopeId:\"jWjjV3OZG\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5bb8e3cb-3d0c-4761-bd87-984123c2addd, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:PYrbGDwmm,id:\"N0B5TXOtZ\",layoutId:\"N0B5TXOtZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\",...addPropertyOverrides({xNdKrl2oY:{color:\"rgb(0, 0, 0)\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-77zlkb\",\"data-framer-name\":\"Caption\",layoutDependency:layoutDependency,layoutId:\"WX46leRw3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-tegl3fd65-jWjjV3OZG) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Discovery\"})}),className:\"framer-1j7p13d\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"V3bIIYz_S\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-tegl3fd65-jWjjV3OZG\":tegl3fd65},text:U8wvC3Anl,variants:{\"cM5GRNITq-hover\":{\"--extracted-r6o4lv\":\"var(--token-42a908b6-92d1-4a89-93a0-21bc6818324a, rgb(220, 33, 62))\"},\"yIlbBQHnL-hover\":{\"--extracted-r6o4lv\":\"var(--token-42a908b6-92d1-4a89-93a0-21bc6818324a, rgb(220, 33, 62))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"cM5GRNITq-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-size\":\"calc(var(--variable-reference-tegl3fd65-jWjjV3OZG) * 1px)\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-42a908b6-92d1-4a89-93a0-21bc6818324a, rgb(220, 33, 62)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(284deg, var(--token-42a908b6-92d1-4a89-93a0-21bc6818324a, rgb(220, 33, 62)) 0%, var(--token-73b1ab19-bfa1-4e2b-b2bb-0543a8d59215, rgb(252, 187, 109)) 100%)\"},children:\"Discovery\"})})}),fonts:[\"Inter-Black\"]},\"yIlbBQHnL-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-42a908b6-92d1-4a89-93a0-21bc6818324a, rgb(220, 33, 62)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(285deg, var(--token-42a908b6-92d1-4a89-93a0-21bc6818324a, rgb(220, 33, 62)) 0%, var(--token-73b1ab19-bfa1-4e2b-b2bb-0543a8d59215, rgb(252, 187, 109)) 100%)\"},children:\"Discovery\"})})}),fonts:[\"Inter-Black\"]},yIlbBQHnL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Discovery\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-VWAysJHu1-jWjjV3OZG) * 1px)\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5bb8e3cb-3d0c-4761-bd87-984123c2addd, rgb(255, 255, 255)))\"},children:\"Memastikan kami dapat mengetahui kebutuhan client\"})}),className:\"framer-1fey9wy\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"xZDV2AFwS\",style:{\"--extracted-r6o4lv\":\"var(--token-5bb8e3cb-3d0c-4761-bd87-984123c2addd, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-VWAysJHu1-jWjjV3OZG\":VWAysJHu1},text:YJIOmmIUT,variants:{\"cM5GRNITq-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},\"yIlbBQHnL-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"cM5GRNITq-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-VWAysJHu1-jWjjV3OZG) * 1px)\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Memastikan kami dapat mengetahui kebutuhan client\"})})},\"yIlbBQHnL-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Memastikan kami dapat mengetahui kebutuhan client\"})})},yIlbBQHnL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5bb8e3cb-3d0c-4761-bd87-984123c2addd, rgb(255, 255, 255)))\"},children:\"Memastikan kami dapat mengetahui kebutuhan client\"})})}},baseVariant,gestureVariant)})]})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1592,pixelWidth:2048,sizes:`calc(${componentViewport?.width||\"100vw\"} + 0.5px)`,...toResponsiveImage(wvJtBtBrH)},className:\"framer-1tsx0za\",layoutDependency:layoutDependency,layoutId:\"cep4a_NWW\",style:{mask:\"linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%) add\",opacity:.55,WebkitMask:\"linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%) add\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ky3wA.framer-1na9doo, .framer-Ky3wA .framer-1na9doo { display: block; }\",\".framer-Ky3wA.framer-lh1ayy { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--1ukjg4k)) * 1px); height: min-content; justify-content: flex-start; overflow: hidden; padding: var(--1lovl0o); position: relative; width: 398px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ky3wA .framer-n5u1p5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-Ky3wA .framer-u66god { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-Ky3wA .framer-1jrad7t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 88px; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 88px; }\",\".framer-Ky3wA .framer-qitha5-container { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 43px); position: relative; width: 1px; }\",\".framer-Ky3wA .framer-77zlkb { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ky3wA .framer-1j7p13d, .framer-Ky3wA .framer-1fey9wy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Ky3wA .framer-1tsx0za { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ky3wA.framer-lh1ayy, .framer-Ky3wA .framer-n5u1p5, .framer-Ky3wA .framer-u66god, .framer-Ky3wA .framer-1jrad7t, .framer-Ky3wA .framer-77zlkb { gap: 0px; } .framer-Ky3wA.framer-lh1ayy > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--1ukjg4k)) * 1px) / 2); margin-top: calc(calc(max(0, var(--1ukjg4k)) * 1px) / 2); } .framer-Ky3wA.framer-lh1ayy > :first-child, .framer-Ky3wA .framer-n5u1p5 > :first-child, .framer-Ky3wA .framer-u66god > :first-child, .framer-Ky3wA .framer-77zlkb > :first-child { margin-top: 0px; } .framer-Ky3wA.framer-lh1ayy > :last-child, .framer-Ky3wA .framer-n5u1p5 > :last-child, .framer-Ky3wA .framer-u66god > :last-child, .framer-Ky3wA .framer-77zlkb > :last-child { margin-bottom: 0px; } .framer-Ky3wA .framer-n5u1p5 > *, .framer-Ky3wA .framer-u66god > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Ky3wA .framer-1jrad7t > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Ky3wA .framer-1jrad7t > :first-child { margin-left: 0px; } .framer-Ky3wA .framer-1jrad7t > :last-child { margin-right: 0px; } .framer-Ky3wA .framer-77zlkb > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-Ky3wA.framer-v-1sgjp70.framer-lh1ayy { gap: 24px; padding: 24px; }\",\".framer-Ky3wA.framer-v-1sgjp70 .framer-u66god { gap: 20px; }\",\".framer-Ky3wA.framer-v-1sgjp70 .framer-1jrad7t { height: 64px; padding: 12px; width: 64px; }\",\".framer-Ky3wA.framer-v-1sgjp70 .framer-77zlkb { gap: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ky3wA.framer-v-1sgjp70.framer-lh1ayy, .framer-Ky3wA.framer-v-1sgjp70 .framer-u66god, .framer-Ky3wA.framer-v-1sgjp70 .framer-77zlkb { gap: 0px; } .framer-Ky3wA.framer-v-1sgjp70.framer-lh1ayy > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Ky3wA.framer-v-1sgjp70.framer-lh1ayy > :first-child, .framer-Ky3wA.framer-v-1sgjp70 .framer-u66god > :first-child, .framer-Ky3wA.framer-v-1sgjp70 .framer-77zlkb > :first-child { margin-top: 0px; } .framer-Ky3wA.framer-v-1sgjp70.framer-lh1ayy > :last-child, .framer-Ky3wA.framer-v-1sgjp70 .framer-u66god > :last-child, .framer-Ky3wA.framer-v-1sgjp70 .framer-77zlkb > :last-child { margin-bottom: 0px; } .framer-Ky3wA.framer-v-1sgjp70 .framer-u66god > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Ky3wA.framer-v-1sgjp70 .framer-77zlkb > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",'.framer-Ky3wA[data-border=\"true\"]::after, .framer-Ky3wA [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 329\n * @framerIntrinsicWidth 398\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yIlbBQHnL\":{\"layout\":[\"fixed\",\"auto\"]},\"xNdKrl2oY\":{\"layout\":[\"fixed\",\"auto\"]},\"gjz2OHweh\":{\"layout\":[\"fixed\",\"auto\"]},\"Zr8nhBbWg\":{\"layout\":[\"fixed\",\"auto\"]},\"avW2Izb4e\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"U8wvC3Anl\":\"title\",\"YJIOmmIUT\":\"text\",\"PYrbGDwmm\":\"icon\",\"ihmoCODti\":\"gap\",\"NKqw71Kw4\":\"padding\",\"bbsnjP2f7\":\"radius\",\"tegl3fd65\":\"fontSize\",\"VWAysJHu1\":\"fontSize2\",\"wvJtBtBrH\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerjWjjV3OZG=withCSS(Component,css,\"framer-Ky3wA\");export default FramerjWjjV3OZG;FramerjWjjV3OZG.displayName=\"Card Proses\";FramerjWjjV3OZG.defaultProps={height:329,width:398};addPropertyControls(FramerjWjjV3OZG,{variant:{options:[\"cM5GRNITq\",\"yIlbBQHnL\",\"xNdKrl2oY\"],optionTitles:[\"Default\",\"Mobile\",\"Default Black\"],title:\"Variant\",type:ControlType.Enum},U8wvC3Anl:{defaultValue:\"Discovery\",displayTextArea:false,title:\"Title\",type:ControlType.String},YJIOmmIUT:{defaultValue:\"Memastikan kami dapat mengetahui kebutuhan client\",displayTextArea:false,title:\"Text\",type:ControlType.String},PYrbGDwmm:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"VideoCamera\",description:undefined,hidden:undefined,title:\"Icon\"},ihmoCODti:{defaultValue:48,min:0,title:\"Gap\",type:ControlType.Number},NKqw71Kw4:{defaultValue:\"36px\",title:\"Padding\",type:ControlType.Padding},bbsnjP2f7:{defaultValue:\"36px\",title:\"Radius\",type:ControlType.BorderRadius},tegl3fd65:{defaultValue:36,title:\"Font Size\",type:ControlType.Number},VWAysJHu1:{defaultValue:18,title:\"Font Size 2\",type:ControlType.Number},wvJtBtBrH:{__defaultAssetReference:\"data:framer/asset-reference,m2vWasupIaB36V9Ehd0qPLvWopY.png?originalFilename=EXPLAINER.2.png&preferredSize=auto\",description:\"\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerjWjjV3OZG,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{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/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{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/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjWjjV3OZG\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"U8wvC3Anl\\\":\\\"title\\\",\\\"YJIOmmIUT\\\":\\\"text\\\",\\\"PYrbGDwmm\\\":\\\"icon\\\",\\\"ihmoCODti\\\":\\\"gap\\\",\\\"NKqw71Kw4\\\":\\\"padding\\\",\\\"bbsnjP2f7\\\":\\\"radius\\\",\\\"tegl3fd65\\\":\\\"fontSize\\\",\\\"VWAysJHu1\\\":\\\"fontSize2\\\",\\\"wvJtBtBrH\\\":\\\"image\\\"}\",\"framerIntrinsicHeight\":\"329\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yIlbBQHnL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xNdKrl2oY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gjz2OHweh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zr8nhBbWg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"avW2Izb4e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"398\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jWjjV3OZG.map", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Header from\"#framer/local/canvasComponent/cCV63SBtp/cCV63SBtp.js\";import CardProses from\"#framer/local/canvasComponent/jWjjV3OZG/jWjjV3OZG.js\";import VideoYoutube from\"#framer/local/canvasComponent/kIUnu4ptp/kIUnu4ptp.js\";import Footer from\"#framer/local/canvasComponent/yE2PRo3aj/yE2PRo3aj.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderFonts=getFonts(Header);const HeaderWithVariantAppearEffect=withVariantAppearEffect(Header);const VideoFonts=getFonts(Video);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const CardProsesFonts=getFonts(CardProses);const ContainerWithFX=withFX(Container);const EmbedFonts=getFonts(Embed);const VideoYoutubeFonts=getFonts(VideoYoutube);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const PhosphorFonts=getFonts(Phosphor);const FooterFonts=getFonts(Footer);const breakpoints={dOgMC7ira:\"(min-width: 412px) and (max-width: 809px)\",eUeCSBvr3:\"(min-width: 360px) and (max-width: 389px)\",GAJgexxas:\"(min-width: 810px) and (max-width: 1199px)\",HqMDJKKRg:\"(min-width: 390px) and (max-width: 411px)\",j7STljgSo:\"(max-width: 359px)\",nAvEYXsER:\"(min-width: 1200px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Db3Nj\";const variantClassNames={dOgMC7ira:\"framer-v-x5g14s\",eUeCSBvr3:\"framer-v-1vmzw7c\",GAJgexxas:\"framer-v-1gq7izo\",HqMDJKKRg:\"framer-v-p2ee0j\",j7STljgSo:\"framer-v-1ohvdoy\",nAvEYXsER:\"framer-v-1avzux\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={bounce:.5,delay:0,duration:.8,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const animation2={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:.4,delay:.05,duration:.8,type:\"spring\"};const textEffect={effect:animation2,tokenization:\"character\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation3={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition3};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transition4={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:-150};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Phone small 320\":\"j7STljgSo\",\"Phone small small\":\"eUeCSBvr3\",\"phone small\":\"dOgMC7ira\",Desktop:\"nAvEYXsER\",Phone:\"HqMDJKKRg\",Tablet:\"GAJgexxas\",Wide:\"WQLkyLRf1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"yFH_JF2Al\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"nyV0wDc43\");const elementId2=useRouteElementId(\"CEdKhH7g3\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"dgQad88lI\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"YvvKiWa5l\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"J1dFmcPpz\");const ref6=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"HqMDJKKRg\",\"dOgMC7ira\",\"eUeCSBvr3\",\"j7STljgSo\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"HqMDJKKRg\",\"dOgMC7ira\",\"eUeCSBvr3\",\"j7STljgSo\"].includes(baseVariant))return true;return false;};const elementId6=useRouteElementId(\"jBfdMqwmf\");const ref7=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"nAvEYXsER\",\"GAJgexxas\",\"HqMDJKKRg\",\"dOgMC7ira\",\"eUeCSBvr3\",\"j7STljgSo\"].includes(baseVariant))return false;return true;};const elementId7=useRouteElementId(\"e0_rk208f\");const ref8=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nnk7t3-container\",layoutScroll:true,nodeId:\"u3rtiEfLr\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{__framer__targets:[{offset:88,ref:ref1,target:\"IT4ThZOSb\"}],variant:\"I2120jSxQ\"},eUeCSBvr3:{__framer__targets:[{offset:88,ref:ref1,target:\"IT4ThZOSb\"}],variant:\"I2120jSxQ\"},GAJgexxas:{__framer__targets:[{offset:88,ref:ref1,target:\"qz7R8B3qK\"}],variant:\"Fl1jobYB5\"},HqMDJKKRg:{__framer__targets:[{offset:88,ref:ref1,target:\"IT4ThZOSb\"}],variant:\"I2120jSxQ\"},j7STljgSo:{__framer__targets:[{offset:88,ref:ref1,target:\"IT4ThZOSb\"}],variant:\"I2120jSxQ\"},nAvEYXsER:{__framer__targets:[{offset:88,ref:ref1,target:\"i29xsRJ52\"}],variant:\"Lvm_f8Rik\"}},children:/*#__PURE__*/_jsx(HeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:88,ref:ref1,target:\"axuYAGfyq\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"u3rtiEfLr\",layoutId:\"u3rtiEfLr\",PUZvuoNhA:\"rgba(16, 16, 16, 0)\",style:{width:\"100%\"},variant:\"qOW2sYVnF\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cqgjei\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xmwygt\",\"data-framer-name\":\"Section Video\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p8nqzj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ytbGfhDev\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{srcUrl:\"https://ringoringo.sgp1.cdn.digitaloceanspaces.com/klariti/(Mobile)%20video%20background_reel%20KLARITI%20(09042025).mp4\"},eUeCSBvr3:{srcUrl:\"https://ringoringo.sgp1.cdn.digitaloceanspaces.com/klariti/(Mobile)%20video%20background_reel%20KLARITI%20(09042025).mp4\"},HqMDJKKRg:{srcUrl:\"https://ringoringo.sgp1.cdn.digitaloceanspaces.com/klariti/(Mobile)%20video%20background_reel%20KLARITI%20(09042025).mp4\"},j7STljgSo:{srcUrl:\"https://ringoringo.sgp1.cdn.digitaloceanspaces.com/klariti/(Mobile)%20video%20background_reel%20KLARITI%20(09042025).mp4\"}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ytbGfhDev\",isMixedBorderRadius:false,layoutId:\"ytbGfhDev\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://ringoringo.sgp1.cdn.digitaloceanspaces.com/klariti/(720p)%20video%20background_reel%20KLARITI%20(09042025).mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dpelsr\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0thcGl0YWwgTGlnaHQ=\",\"--framer-font-family\":'\"Kapital Light\", \"Kapital Light Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"KLARITI\"})})},eUeCSBvr3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0thcGl0YWwgTGlnaHQ=\",\"--framer-font-family\":'\"Kapital Light\", \"Kapital Light Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"KLARITI\"})})},GAJgexxas:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0thcGl0YWwgTGlnaHQ=\",\"--framer-font-family\":'\"Kapital Light\", \"Kapital Light Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"KLARITI\"})})},HqMDJKKRg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0thcGl0YWwgTGlnaHQ=\",\"--framer-font-family\":'\"Kapital Light\", \"Kapital Light Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"KLARITI\"})})},j7STljgSo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0thcGl0YWwgTGlnaHQ=\",\"--framer-font-family\":'\"Kapital Light\", \"Kapital Light Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"KLARITI\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0thcGl0YWwgTGlnaHQ=\",\"--framer-font-family\":'\"Kapital Light\", \"Kapital Light Placeholder\", sans-serif',\"--framer-font-size\":\"88px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"KLARITI\"})}),className:\"framer-13pcv8h\",\"data-framer-appear-id\":\"13pcv8h\",fonts:[\"CUSTOM;Kapital Light\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Turning Complex Information into Powerful Stories\"})})},eUeCSBvr3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Turning Complex Information into Powerful Stories\"})})},GAJgexxas:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"29px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Turning Complex Information into Powerful Stories\"})})},HqMDJKKRg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Turning Complex Information into Powerful Stories\"})})},j7STljgSo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Turning Complex Information into Powerful Stories\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"34px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Turning Complex Information into Powerful Stories\"})}),className:\"framer-1lt8nap\",\"data-framer-appear-id\":\"1lt8nap\",effect:textEffect,fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yxnmvw\",\"data-framer-name\":\"Section About\",id:elementId1,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-c6n0dd\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cv2ej1\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"A Strategic Creative Partner for Complex\\xa0Industries\"})})},eUeCSBvr3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"A Strategic Creative Partner for Complex\\xa0Industries\"})})},GAJgexxas:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"A Strategic Creative Partner for Complex\\xa0Industries\"})})},HqMDJKKRg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"37px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"A Strategic Creative Partner for Complex\\xa0Industries\"})})},j7STljgSo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"A Strategic Creative Partner for Complex\\xa0Industries\"})})},nAvEYXsER:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"A Strategic Creative Partner for Complex\\xa0Industries\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"A Strategic Creative Partner for Complex\\xa0Industries\"})}),className:\"framer-1efbpt1\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-weight\":\"700\"},children:\"Klariti\"}),\" is a creative production house specializing in explainer videos, 3D animations, and business storytelling.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"We simplify complex information\u2014whether it\u2019s advanced technology, healthcare systems, industrial processes, or corporate operations\u2014into engaging, easy-to-understand stories.\"})]}),fonts:[\"Inter-Light\",\"Inter-Bold\"]},eUeCSBvr3:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-weight\":\"700\"},children:\"Klariti\"}),\" is a creative production house specializing in explainer videos, 3D animations, and business storytelling.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"We simplify complex information\u2014whether it\u2019s advanced technology, healthcare systems, industrial processes, or corporate operations\u2014into engaging, easy-to-understand stories.\"})]}),fonts:[\"Inter-Light\",\"Inter-Bold\"]},HqMDJKKRg:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-weight\":\"700\"},children:\"Klariti\"}),\" is a creative production house specializing in explainer videos, 3D animations, and business storytelling.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"We simplify complex information\u2014whether it\u2019s advanced technology, healthcare systems, industrial processes, or corporate operations\u2014into engaging, easy-to-understand stories.\"})]}),fonts:[\"Inter-Light\",\"Inter-Bold\"]},j7STljgSo:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-weight\":\"700\"},children:\"Klariti\"}),\" is a creative production house specializing in explainer videos, 3D animations, and business storytelling.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"We simplify complex information\u2014whether it\u2019s advanced technology, healthcare systems, industrial processes, or corporate operations\u2014into engaging, easy-to-understand stories.\"})]}),fonts:[\"Inter-Light\",\"Inter-Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"Klariti\"}),\" is a creative production house specializing in explainer videos, 3D animations, and business storytelling.Every message holds the potential to inspire, and we bring it to life with authenticity, creativity, and purpose.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"We simplify complex information\u2014whether it\u2019s advanced technology, healthcare systems, industrial processes, or corporate operations\u2014into engaging, easy-to-understand stories.\"})]}),className:\"framer-9h2ybf\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a9wihn\",\"data-framer-name\":\"Section Proses\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4xkimh\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ncq72u\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"Tailored Visual Services for Your Business Goals\"})})},eUeCSBvr3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"Tailored Visual Services for Your Business Goals\"})})},GAJgexxas:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"Tailored Visual Services for Your Business Goals\"})})},HqMDJKKRg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"Tailored Visual Services for Your Business Goals\"})})},j7STljgSo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"Tailored Visual Services for Your Business Goals\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"Tailored Visual Services for Your Business Goals\"})}),className:\"framer-1j39rp7\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(71, 92, 122)\"},children:\"Make your message clear with a variety of video formats that inform, engage, and inspire.\"})})},eUeCSBvr3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(71, 92, 122)\"},children:\"Make your message clear with a variety of video formats that inform, engage, and inspire.\"})})},GAJgexxas:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(71, 92, 122)\"},children:\"Make your message clear with a variety of video formats that inform, engage, and inspire.\"})})},HqMDJKKRg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(71, 92, 122)\"},children:\"Make your message clear with a variety of video formats that inform, engage, and inspire.\"})})},j7STljgSo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(71, 92, 122)\"},children:\"Make your message clear with a variety of video formats that inform, engage, and inspire.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(71, 92, 122)\"},children:\"Make your message clear with a variety of video formats that inform, engage, and inspire.\"})}),className:\"framer-yv591o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n3mico\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{height:329,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 200px)`,y:(componentViewport?.y||0)+0+0+0+1143+0+0+48+294+0+0},eUeCSBvr3:{height:329,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 200px)`,y:(componentViewport?.y||0)+0+0+0+1130+0+0+48+294+0+0},GAJgexxas:{height:329,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 96px, 200px)`,y:(componentViewport?.y||0)+0+0+0+1388.5+0+0+64+426+0+0},HqMDJKKRg:{height:329,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 200px)`,y:(componentViewport?.y||0)+0+0+0+1162.5+0+0+48+294+0+0},j7STljgSo:{height:329,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 200px)`,y:(componentViewport?.y||0)+0+0+0+1014+0+0+48+254+0+0},nAvEYXsER:{height:400,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+1280+0+0+64+568+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 224px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+1400+0+0+108+568+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yrl1qy-container\",nodeId:\"yPBER9MfS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{bbsnjP2f7:\"24px\",style:{width:\"100%\"},tegl3fd65:32,variant:\"yIlbBQHnL\",VWAysJHu1:16},eUeCSBvr3:{bbsnjP2f7:\"24px\",style:{width:\"100%\"},tegl3fd65:32,variant:\"yIlbBQHnL\",VWAysJHu1:16},GAJgexxas:{bbsnjP2f7:\"24px\",style:{width:\"100%\"},tegl3fd65:32,VWAysJHu1:16},HqMDJKKRg:{bbsnjP2f7:\"24px\",style:{width:\"100%\"},tegl3fd65:32,variant:\"yIlbBQHnL\",VWAysJHu1:16},j7STljgSo:{bbsnjP2f7:\"24px\",style:{width:\"100%\"},tegl3fd65:20,variant:\"yIlbBQHnL\",VWAysJHu1:12},nAvEYXsER:{bbsnjP2f7:\"28px\",tegl3fd65:31}},children:/*#__PURE__*/_jsx(CardProses,{bbsnjP2f7:\"36px\",height:\"100%\",id:\"yPBER9MfS\",ihmoCODti:48,layoutId:\"yPBER9MfS\",NKqw71Kw4:\"36px\",PYrbGDwmm:\"VideoCamera\",style:{height:\"100%\",width:\"100%\"},tegl3fd65:36,U8wvC3Anl:\"Explainer Video\",variant:\"cM5GRNITq\",VWAysJHu1:18,width:\"100%\",YJIOmmIUT:\"Clear, engaging explainer videos - combining infographics, AI visuals, 3D motion graphics, and compelling supers text\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{height:329,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 200px)`,y:(componentViewport?.y||0)+0+0+0+1143+0+0+48+294+0+341},eUeCSBvr3:{height:329,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 200px)`,y:(componentViewport?.y||0)+0+0+0+1130+0+0+48+294+0+341},GAJgexxas:{height:329,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 96px, 200px)`,y:(componentViewport?.y||0)+0+0+0+1388.5+0+0+64+426+0+341},HqMDJKKRg:{height:329,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 200px)`,y:(componentViewport?.y||0)+0+0+0+1162.5+0+0+48+294+0+341},j7STljgSo:{height:329,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 200px)`,y:(componentViewport?.y||0)+0+0+0+1014+0+0+48+254+0+341},nAvEYXsER:{height:400,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+1280+0+0+64+568+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 224px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+1400+0+0+108+568+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:160}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tbp3hi-container\",nodeId:\"ZWmoaLQed\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{bbsnjP2f7:\"24px\",style:{width:\"100%\"},tegl3fd65:32,variant:\"yIlbBQHnL\",VWAysJHu1:16},eUeCSBvr3:{bbsnjP2f7:\"24px\",style:{width:\"100%\"},tegl3fd65:32,variant:\"yIlbBQHnL\",VWAysJHu1:16},GAJgexxas:{bbsnjP2f7:\"24px\",style:{width:\"100%\"},tegl3fd65:32,VWAysJHu1:16},HqMDJKKRg:{bbsnjP2f7:\"24px\",style:{width:\"100%\"},tegl3fd65:32,variant:\"yIlbBQHnL\",VWAysJHu1:16},j7STljgSo:{bbsnjP2f7:\"24px\",style:{width:\"100%\"},tegl3fd65:32,variant:\"yIlbBQHnL\",VWAysJHu1:16},nAvEYXsER:{bbsnjP2f7:\"28px\",tegl3fd65:31}},children:/*#__PURE__*/_jsx(CardProses,{bbsnjP2f7:\"36px\",height:\"100%\",id:\"ZWmoaLQed\",ihmoCODti:48,layoutId:\"ZWmoaLQed\",NKqw71Kw4:\"36px\",PYrbGDwmm:\"MonitorPlay\",style:{height:\"100%\",width:\"100%\"},tegl3fd65:36,U8wvC3Anl:\"Company & Brand Storytelling\",variant:\"cM5GRNITq\",VWAysJHu1:18,width:\"100%\",wvJtBtBrH:addImageAlt({pixelHeight:1130,pixelWidth:2012,positionX:\"53.8%\",positionY:\"36.4%\",src:\"https://framerusercontent.com/images/eFhioeWxT2nNVvXl7lJ9D5vdD2M.png\",srcSet:\"https://framerusercontent.com/images/eFhioeWxT2nNVvXl7lJ9D5vdD2M.png?scale-down-to=512 512w,https://framerusercontent.com/images/eFhioeWxT2nNVvXl7lJ9D5vdD2M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eFhioeWxT2nNVvXl7lJ9D5vdD2M.png 2012w\"},\"\"),YJIOmmIUT:\"Cinematic storytelling\u2014combining hybrid shoots, AI visuals, and emotive voice overs\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{height:329,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 200px)`,y:(componentViewport?.y||0)+0+0+0+1143+0+0+48+294+0+682},eUeCSBvr3:{height:329,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 200px)`,y:(componentViewport?.y||0)+0+0+0+1130+0+0+48+294+0+682},GAJgexxas:{height:329,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 96px, 200px)`,y:(componentViewport?.y||0)+0+0+0+1388.5+0+0+64+426+0+682},HqMDJKKRg:{height:329,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 200px)`,y:(componentViewport?.y||0)+0+0+0+1162.5+0+0+48+294+0+682},j7STljgSo:{height:329,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px, 200px)`,y:(componentViewport?.y||0)+0+0+0+1014+0+0+48+254+0+682},nAvEYXsER:{height:400,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+1280+0+0+64+568+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 224px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+1400+0+0+108+568+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:320}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1439set-container\",nodeId:\"MfHf8hwhF\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{bbsnjP2f7:\"24px\",style:{width:\"100%\"},tegl3fd65:32,variant:\"yIlbBQHnL\",VWAysJHu1:16},eUeCSBvr3:{bbsnjP2f7:\"24px\",style:{width:\"100%\"},tegl3fd65:32,variant:\"yIlbBQHnL\",VWAysJHu1:16},GAJgexxas:{bbsnjP2f7:\"24px\",style:{width:\"100%\"},tegl3fd65:32,VWAysJHu1:16},HqMDJKKRg:{bbsnjP2f7:\"24px\",style:{width:\"100%\"},tegl3fd65:32,variant:\"yIlbBQHnL\",VWAysJHu1:16},j7STljgSo:{bbsnjP2f7:\"24px\",style:{width:\"100%\"},tegl3fd65:32,variant:\"yIlbBQHnL\",VWAysJHu1:16},nAvEYXsER:{bbsnjP2f7:\"28px\",tegl3fd65:31}},children:/*#__PURE__*/_jsx(CardProses,{bbsnjP2f7:\"36px\",height:\"100%\",id:\"MfHf8hwhF\",ihmoCODti:48,layoutId:\"MfHf8hwhF\",NKqw71Kw4:\"36px\",PYrbGDwmm:\"Lock\",style:{height:\"100%\",width:\"100%\"},tegl3fd65:36,U8wvC3Anl:\"Animation Assets\",variant:\"cM5GRNITq\",VWAysJHu1:18,width:\"100%\",wvJtBtBrH:addImageAlt({pixelHeight:1130,pixelWidth:2014,src:\"https://framerusercontent.com/images/Xx8W6f4NiAN7lVC22KjlYtE3CI.png\",srcSet:\"https://framerusercontent.com/images/Xx8W6f4NiAN7lVC22KjlYtE3CI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xx8W6f4NiAN7lVC22KjlYtE3CI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xx8W6f4NiAN7lVC22KjlYtE3CI.png 2014w\"},\"\"),YJIOmmIUT:\"Visualizes complex products, systems, and processes through dynamic 2D\u20133D simulations, and data-driven design.\"})})})})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AFiYPwAKf\"},motionChild:true,nodeId:\"EcNOmv9w9\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-8inncb framer-lux5qc\",\"data-framer-name\":\"Button Call\",whileHover:animation3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4f235f1d-bcf3-435e-80f1-f3c856b888eb, rgb(255, 255, 255))\"},children:\"Interested? Contact Us\"})})},eUeCSBvr3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4f235f1d-bcf3-435e-80f1-f3c856b888eb, rgb(255, 255, 255))\"},children:\"Interested? Contact Us\"})})},HqMDJKKRg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4f235f1d-bcf3-435e-80f1-f3c856b888eb, rgb(255, 255, 255))\"},children:\"Interested? Contact Us\"})})},j7STljgSo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4f235f1d-bcf3-435e-80f1-f3c856b888eb, rgb(255, 255, 255))\"},children:\"Interested? Contact Us\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4f235f1d-bcf3-435e-80f1-f3c856b888eb, rgb(255, 255, 255))\"},children:\"Interested? Contact Us\"})}),className:\"framer-7dxvht\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-762s0f\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6mmn0w\",\"data-framer-name\":\"Section Works\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kuj8xu\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5nwv9q\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%)\"},children:\"Our Selected Works\"})})})},eUeCSBvr3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%)\"},children:\"Our Selected Works\"})})})},GAJgexxas:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%)\"},children:\"Our Selected Works\"})})})},HqMDJKKRg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%)\"},children:\"Our Selected Works\"})})})},j7STljgSo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%)\"},children:\"Our Selected Works\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%)\"},children:\"Our Selected Works\"})})}),className:\"framer-1ort5ws\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mflo4p\",\"data-framer-name\":\"Container\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-x3gy7u-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DrZEZlco7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe id=\"ytplayer\" type=\"text/html\" width=\"100%\" height=\"100%\" \\nsrc=\"https://www.youtube.com/embed/videoseries?list=PL12ZlV5O3Ew6YD2pA_6FtFDZF0sZ4WcIq&modestbranding=1&playsinline=1\" \\nframeborder=\"0\" allowfullscreen></iframe>',id:\"DrZEZlco7\",layoutId:\"DrZEZlco7\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://www.youtube.com/playlist?list=PL12ZlV5O3Ew6YD2pA_6FtFDZF0sZ4WcIq\",width:\"100%\",zoom:1})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qgerbj\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2610+0+0+48+470+0+0},eUeCSBvr3:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2597+0+0+48+470+0+0},GAJgexxas:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+3049.5+0+0+48+1162+0+0},HqMDJKKRg:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2629.5+0+0+48+470+0+0},j7STljgSo:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2441+0+0+48+424.5+0+0},nAvEYXsER:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2496+0+0+64+1040+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:302,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 144px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2724+0+0+108+1240+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gaxfw2-container\",nodeId:\"jO4u8ASSw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VideoYoutube,{HE4LPytdI:\"Superstar\",height:\"100%\",id:\"jO4u8ASSw\",iZy9DOdky:\"https://www.youtube.com/watch?v=CpnteLYjoVA&list=PL12ZlV5O3Ew6bpAx6Z_6LZW_-MCLNXtvt&index=20\",L23gEJXet:\"https://www.youtube.com/watch?v=CpnteLYjoVA&list=PL12ZlV5O3Ew6bpAx6Z_6LZW_-MCLNXtvt&index=20\",layoutId:\"jO4u8ASSw\",slgTQn2fY:20,style:{height:\"100%\",width:\"100%\"},variant:\"mlXXtHGhL\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2610+0+0+48+470+0+318},eUeCSBvr3:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2597+0+0+48+470+0+318},GAJgexxas:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+3049.5+0+0+48+1162+0+0},HqMDJKKRg:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2629.5+0+0+48+470+0+318},j7STljgSo:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2441+0+0+48+424.5+0+318},nAvEYXsER:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2496+0+0+64+1040+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:302,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 144px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2724+0+0+108+1240+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oajgpj-container\",nodeId:\"PR4vOWoES\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VideoYoutube,{HE4LPytdI:\"Dark Wonder\",height:\"100%\",id:\"PR4vOWoES\",iZy9DOdky:\"https://www.youtube.com/watch?v=lmCPlgPzCPM&list=PL12ZlV5O3Ew6zJqsLhyVD6ZYYoT8o13h5&index=14\",L23gEJXet:\"https://www.youtube.com/watch?v=lmCPlgPzCPM&list=PL12ZlV5O3Ew6zJqsLhyVD6ZYYoT8o13h5&index=14\",layoutId:\"PR4vOWoES\",slgTQn2fY:20,style:{height:\"100%\",width:\"100%\"},variant:\"mlXXtHGhL\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2610+0+0+48+470+0+636},eUeCSBvr3:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2597+0+0+48+470+0+636},GAJgexxas:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+3049.5+0+0+48+1162+0+318},HqMDJKKRg:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2629.5+0+0+48+470+0+636},j7STljgSo:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2441+0+0+48+424.5+0+636},nAvEYXsER:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2496+0+0+64+1040+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:307,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 144px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2724+0+0+108+1240+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-scj07m-container\",nodeId:\"fUdhgW8TZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{slgTQn2fY:18},eUeCSBvr3:{slgTQn2fY:18},HqMDJKKRg:{slgTQn2fY:18},j7STljgSo:{slgTQn2fY:14}},children:/*#__PURE__*/_jsx(VideoYoutube,{HE4LPytdI:\"Pocari Sweat\",height:\"100%\",id:\"fUdhgW8TZ\",iZy9DOdky:\"https://www.youtube.com/watch?v=KUW3hQwbCDs&list=PL12ZlV5O3Ew5E7sjX8Pup10RRisHQh4ZT&index=9\",L23gEJXet:\"https://www.youtube.com/watch?v=KUW3hQwbCDs&list=PL12ZlV5O3Ew5E7sjX8Pup10RRisHQh4ZT&index=9\",layoutId:\"fUdhgW8TZ\",slgTQn2fY:20,style:{width:\"100%\"},variant:\"epRihVwkL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2610+0+0+48+470+0+959},eUeCSBvr3:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2597+0+0+48+470+0+959},GAJgexxas:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+3049.5+0+0+48+1162+0+318},HqMDJKKRg:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2629.5+0+0+48+470+0+959},j7STljgSo:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2441+0+0+48+424.5+0+959},nAvEYXsER:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2496+0+0+64+1040+0+331}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:302,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 144px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2724+0+0+108+1240+0+331,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a5bs2h-container\",nodeId:\"GGHKstMf9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VideoYoutube,{HE4LPytdI:\"BITERA\",height:\"100%\",id:\"GGHKstMf9\",iZy9DOdky:\"https://www.youtube.com/watch?v=mE0hNjKXHrQ&list=PL12ZlV5O3Ew5E7sjX8Pup10RRisHQh4ZT&index=6\",L23gEJXet:\"https://youtu.be/mE0hNjKXHrQ?list=PL12ZlV5O3Ew5E7sjX8Pup10RRisHQh4ZT\",layoutId:\"GGHKstMf9\",slgTQn2fY:20,style:{height:\"100%\",width:\"100%\"},variant:\"mlXXtHGhL\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2610+0+0+48+470+0+1277},eUeCSBvr3:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2597+0+0+48+470+0+1277},GAJgexxas:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+3049.5+0+0+48+1162+0+641},HqMDJKKRg:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2629.5+0+0+48+470+0+1277},j7STljgSo:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2441+0+0+48+424.5+0+1277},nAvEYXsER:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2496+0+0+64+1040+0+331}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:307,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 144px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2724+0+0+108+1240+0+331,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n048o3-container\",nodeId:\"P8xbVEZKV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{slgTQn2fY:18},eUeCSBvr3:{slgTQn2fY:18},HqMDJKKRg:{slgTQn2fY:18},j7STljgSo:{slgTQn2fY:14}},children:/*#__PURE__*/_jsx(VideoYoutube,{HE4LPytdI:\"Universitas Indonesia\",height:\"100%\",id:\"P8xbVEZKV\",iZy9DOdky:\"https://www.youtube.com/watch?v=HPfDREhtbvw&list=PL12ZlV5O3Ew5E7sjX8Pup10RRisHQh4ZT&index=14\",L23gEJXet:\"https://www.youtube.com/watch?v=HPfDREhtbvw&list=PL12ZlV5O3Ew5E7sjX8Pup10RRisHQh4ZT&index=14\",layoutId:\"P8xbVEZKV\",slgTQn2fY:20,style:{width:\"100%\"},variant:\"epRihVwkL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2610+0+0+48+470+0+1600},eUeCSBvr3:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2597+0+0+48+470+0+1600},GAJgexxas:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+3049.5+0+0+48+1162+0+641},HqMDJKKRg:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2629.5+0+0+48+470+0+1600},j7STljgSo:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 200px)`,y:(componentViewport?.y||0)+0+0+0+2441+0+0+48+424.5+0+1600},nAvEYXsER:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2496+0+0+64+1040+0+331}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:307,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 144px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2724+0+0+108+1240+0+331,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n1qog3-container\",nodeId:\"oT2w2dSBs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{slgTQn2fY:18},eUeCSBvr3:{slgTQn2fY:18},HqMDJKKRg:{slgTQn2fY:18},j7STljgSo:{slgTQn2fY:14}},children:/*#__PURE__*/_jsx(VideoYoutube,{HE4LPytdI:\"Prakarsa ID\",height:\"100%\",id:\"oT2w2dSBs\",iZy9DOdky:\"https://youtu.be/GU9rPPhoop0?si=G0nEQPCeWEpgFJ4f\",L23gEJXet:\"https://youtu.be/nZOiOuqsd5w\",layoutId:\"oT2w2dSBs\",slgTQn2fY:20,style:{width:\"100%\"},variant:\"epRihVwkL\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AFiYPwAKf\"},motionChild:true,nodeId:\"oZ_klDiXT\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1xnxcpu framer-lux5qc\",\"data-framer-name\":\"Button Call\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4f235f1d-bcf3-435e-80f1-f3c856b888eb, rgb(255, 255, 255))\"},children:\"See More Projects\"})})},eUeCSBvr3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4f235f1d-bcf3-435e-80f1-f3c856b888eb, rgb(255, 255, 255))\"},children:\"See More Projects\"})})},HqMDJKKRg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4f235f1d-bcf3-435e-80f1-f3c856b888eb, rgb(255, 255, 255))\"},children:\"See More Projects\"})})},j7STljgSo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4f235f1d-bcf3-435e-80f1-f3c856b888eb, rgb(255, 255, 255))\"},children:\"See More Projects\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4f235f1d-bcf3-435e-80f1-f3c856b888eb, rgb(255, 255, 255))\"},children:\"See More Projects\"})}),className:\"framer-1kx1fl3\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6a75rm\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s04eld\",\"data-framer-name\":\"Section Clients\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hp01a\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r6jpyg\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%)\"},children:\"Our Clients\"})})})},eUeCSBvr3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%)\"},children:\"Our Clients\"})})})},GAJgexxas:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%)\"},children:\"Our Clients\"})})})},HqMDJKKRg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%)\"},children:\"Our Clients\"})})})},j7STljgSo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%)\"},children:\"Our Clients\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%)\"},children:\"Our Clients\"})})}),className:\"framer-1s6uhiv\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{__framer__styleAppearEffectEnabled:undefined},eUeCSBvr3:{__framer__styleAppearEffectEnabled:undefined},HqMDJKKRg:{__framer__styleAppearEffectEnabled:undefined},j7STljgSo:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vvzzl5\",\"data-framer-name\":\"Container\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18qegj4-container hidden-p2ee0j hidden-x5g14s hidden-1vmzw7c hidden-1ohvdoy\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ffSbQmIRj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:64,height:\"100%\",hoverFactor:.5,id:\"ffSbQmIRj\",layoutId:\"ffSbQmIRj\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-170rtr9\",\"data-framer-name\":\"Ticker 1/Large\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:113,intrinsicWidth:532,pixelHeight:226,pixelWidth:1064,sizes:\"301.3097px\",src:\"https://framerusercontent.com/images/ThCTsWxRgjG3BvXhkW8RUDNpdYE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ThCTsWxRgjG3BvXhkW8RUDNpdYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ThCTsWxRgjG3BvXhkW8RUDNpdYE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ThCTsWxRgjG3BvXhkW8RUDNpdYE.png 1064w\"},className:\"framer-1uqz7ax\",\"data-framer-name\":\"Bahana Sekuritas\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1177,intrinsicWidth:2666,pixelHeight:2354,pixelWidth:5332,sizes:\"144.9652px\",src:\"https://framerusercontent.com/images/XEkFm9YNDdYAbbzjZF4JxOGeLlg.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/XEkFm9YNDdYAbbzjZF4JxOGeLlg.png?scale-down-to=512 512w,https://framerusercontent.com/images/XEkFm9YNDdYAbbzjZF4JxOGeLlg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XEkFm9YNDdYAbbzjZF4JxOGeLlg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XEkFm9YNDdYAbbzjZF4JxOGeLlg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/XEkFm9YNDdYAbbzjZF4JxOGeLlg.png 5332w\"},className:\"framer-1gylumw\",\"data-framer-name\":\"Bitera\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:640,pixelHeight:720,pixelWidth:1280,sizes:\"113.7778px\",src:\"https://framerusercontent.com/images/9jK0NO1TLBFA8KEIu7WQEgXKdQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9jK0NO1TLBFA8KEIu7WQEgXKdQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/9jK0NO1TLBFA8KEIu7WQEgXKdQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9jK0NO1TLBFA8KEIu7WQEgXKdQ.png 1280w\"},className:\"framer-tjljzv\",\"data-framer-name\":\"BRI\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:78.5,intrinsicWidth:160.5,pixelHeight:157,pixelWidth:321,src:\"https://framerusercontent.com/images/N7ZrzxdoeJ3S4PO6J0UBsx9WKeA.png\"},className:\"framer-utlekd\",\"data-framer-name\":\"Colatta\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:112.5,pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/Q9Jec7pFwGQ5WR6Ofv5WCaBSH8.png\"},className:\"framer-r3fsi2\",\"data-framer-name\":\"Dark Wonder\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:1713.5,pixelHeight:1200,pixelWidth:3427,sizes:\"182.7733px\",src:\"https://framerusercontent.com/images/NzXs9Ieau2lW5mPhaVmVjmmrnlo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/NzXs9Ieau2lW5mPhaVmVjmmrnlo.png?scale-down-to=512 512w,https://framerusercontent.com/images/NzXs9Ieau2lW5mPhaVmVjmmrnlo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NzXs9Ieau2lW5mPhaVmVjmmrnlo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NzXs9Ieau2lW5mPhaVmVjmmrnlo.png 3427w\"},className:\"framer-1mhzor4\",\"data-framer-name\":\"Logo Indomaret\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:366,intrinsicWidth:1000.5,pixelHeight:732,pixelWidth:2001,sizes:\"174.9508px\",src:\"https://framerusercontent.com/images/UlIcZdWGDNMOavrEvZC6SVl0dI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/UlIcZdWGDNMOavrEvZC6SVl0dI.png?scale-down-to=512 512w,https://framerusercontent.com/images/UlIcZdWGDNMOavrEvZC6SVl0dI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UlIcZdWGDNMOavrEvZC6SVl0dI.png 2001w\"},className:\"framer-56xfw7\",\"data-framer-name\":\"Logo Prakarsa Final Marun\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:337.5,intrinsicWidth:600,pixelHeight:675,pixelWidth:1200,sizes:\"113.7778px\",src:\"https://framerusercontent.com/images/ra4XGk6R7Cle1kXm2KirSy0nxM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ra4XGk6R7Cle1kXm2KirSy0nxM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ra4XGk6R7Cle1kXm2KirSy0nxM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ra4XGk6R7Cle1kXm2KirSy0nxM.jpg 1200w\"},className:\"framer-3iy8i7\",\"data-framer-name\":\"Kemkominfo.\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1e3,pixelWidth:1e3,sizes:\"64px\",src:\"https://framerusercontent.com/images/eaFn8ewyJNNxA9fXbiUNenjgo2s.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/eaFn8ewyJNNxA9fXbiUNenjgo2s.png?scale-down-to=512 512w,https://framerusercontent.com/images/eaFn8ewyJNNxA9fXbiUNenjgo2s.png 1000w\"},className:\"framer-fh3ttw\",\"data-framer-name\":\"Joyday\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1e3,pixelWidth:1e3,sizes:\"64px\",src:\"https://framerusercontent.com/images/aEbz7AbSQJAtlzbpYaJSMJrcGg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/aEbz7AbSQJAtlzbpYaJSMJrcGg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aEbz7AbSQJAtlzbpYaJSMJrcGg.jpg 1000w\"},className:\"framer-m3west\",\"data-framer-name\":\"Good Doctor\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:97,intrinsicWidth:129.5,pixelHeight:194,pixelWidth:259,src:\"https://framerusercontent.com/images/8hAML6jv1X6CEAFCWjM9iG58k.jpeg\"},className:\"framer-1kpycwu\",\"data-framer-name\":\"Mayora\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:146,intrinsicWidth:250,pixelHeight:292,pixelWidth:500,src:\"https://framerusercontent.com/images/1WleY4uPNcO2sRvbZFybsMuJgAw.png\"},className:\"framer-1onvgpt\",\"data-framer-name\":\"Mybaby-logo\"})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1741l4k-container hidden-p2ee0j hidden-x5g14s hidden-1vmzw7c hidden-1ohvdoy\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Lr7RPeNAa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:64,height:\"100%\",hoverFactor:.5,id:\"Lr7RPeNAa\",layoutId:\"Lr7RPeNAa\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ghbkak\",\"data-framer-name\":\"Ticker 2/Large\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:112.5,pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/56lKF3UqihvmdhcROAydlmiNY.png\"},className:\"framer-11hyspa\",\"data-framer-name\":\"Nutriboost\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:375,intrinsicWidth:800,pixelHeight:382,pixelWidth:1382,sizes:\"230px\",src:\"https://framerusercontent.com/images/1uXVnzAi05ETXFNUviCloOT4xk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/1uXVnzAi05ETXFNUviCloOT4xk.png?scale-down-to=512 512w,https://framerusercontent.com/images/1uXVnzAi05ETXFNUviCloOT4xk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1uXVnzAi05ETXFNUviCloOT4xk.png 1382w\"},className:\"framer-1008iu1\",\"data-framer-name\":\"Telkomsel\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:196.5,intrinsicWidth:350,pixelHeight:200,pixelWidth:366,src:\"https://framerusercontent.com/images/J9pJamWlzkJpdbXWWaVAN3RvtUc.jpg\"},className:\"framer-1yt986i\",\"data-framer-name\":\"Tempo Group\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:1200,pixelWidth:1600,sizes:\"85.3333px\",src:\"https://framerusercontent.com/images/CRlr4CcIvB2kJBfeikZS4Ku6w0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/CRlr4CcIvB2kJBfeikZS4Ku6w0.png?scale-down-to=512 512w,https://framerusercontent.com/images/CRlr4CcIvB2kJBfeikZS4Ku6w0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CRlr4CcIvB2kJBfeikZS4Ku6w0.png 1600w\"},className:\"framer-119lud7\",\"data-framer-name\":\"UI (Universitas Indonesia)\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:315,pixelHeight:282,pixelWidth:413,src:\"https://framerusercontent.com/images/hRULhwqIDNCLUITmptmnXZdDwFs.png\"},className:\"framer-c5r1d\",\"data-framer-name\":\"Pocari Sweat\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:378,intrinsicWidth:640,pixelHeight:348,pixelWidth:557,sizes:\"108.3598px\",src:\"https://framerusercontent.com/images/D3g1oAdHWdj96RWksMAsuhTkQCE.jpg\",srcSet:\"https://framerusercontent.com/images/D3g1oAdHWdj96RWksMAsuhTkQCE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/D3g1oAdHWdj96RWksMAsuhTkQCE.jpg 557w\"},className:\"framer-1ey6zsh\",\"data-framer-name\":\"Sasa\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:414.5,intrinsicWidth:997,pixelHeight:489,pixelWidth:1536,sizes:\"200px\",src:\"https://framerusercontent.com/images/rOK0aZXuEQgj2S49KmSjGZpoRUg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/rOK0aZXuEQgj2S49KmSjGZpoRUg.png?scale-down-to=512 512w,https://framerusercontent.com/images/rOK0aZXuEQgj2S49KmSjGZpoRUg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rOK0aZXuEQgj2S49KmSjGZpoRUg.png 1536w\"},className:\"framer-2u5agx\",\"data-framer-name\":\"TELKOMSAT\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:196.5,intrinsicWidth:350,pixelHeight:164,pixelWidth:700,sizes:\"277px\",src:\"https://framerusercontent.com/images/wIK0AKnD1uiKcDtASffHKLyHEk.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wIK0AKnD1uiKcDtASffHKLyHEk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wIK0AKnD1uiKcDtASffHKLyHEk.jpg 700w\"},className:\"framer-1i4abqz\",\"data-framer-name\":\"Telkom Group\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:139,pixelWidth:400,src:\"https://framerusercontent.com/images/01nYE4CoLM0R1ZrRDy1HlqQkg.jpg\"},className:\"framer-19c4rkp\",\"data-framer-name\":\"Wafer Superstar\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:519.5,intrinsicWidth:1653.5,pixelHeight:1039,pixelWidth:3307,sizes:\"203.7036px\",src:\"https://framerusercontent.com/images/ek5a18jfA9NnhfCr0aVp1wn6Njg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ek5a18jfA9NnhfCr0aVp1wn6Njg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ek5a18jfA9NnhfCr0aVp1wn6Njg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ek5a18jfA9NnhfCr0aVp1wn6Njg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ek5a18jfA9NnhfCr0aVp1wn6Njg.png 3307w\"},className:\"framer-16atguc\",\"data-framer-name\":\"Wairaustone\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:2048,pixelWidth:2048,sizes:\"64px\",src:\"https://framerusercontent.com/images/Ay0Pd6yleICAfmkr5C6foxdSqYQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Ay0Pd6yleICAfmkr5C6foxdSqYQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ay0Pd6yleICAfmkr5C6foxdSqYQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ay0Pd6yleICAfmkr5C6foxdSqYQ.png 2048w\"},className:\"framer-l58gsu\",\"data-framer-name\":\"XL\"})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1up2ayw-container hidden-72rtr7 hidden-1avzux hidden-1gq7izo\",\"data-framer-name\":\"Small 1\",isAuthoredByUser:true,isModuleExternal:true,name:\"Small 1\",nodeId:\"T0rwc9Hfj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:24,height:\"100%\",hoverFactor:.5,id:\"T0rwc9Hfj\",layoutId:\"T0rwc9Hfj\",name:\"Small 1\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17r4w7i\",\"data-framer-name\":\"Ticker 1/Small\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:113,intrinsicWidth:532,pixelHeight:226,pixelWidth:1064,sizes:\"94.1593px\",src:\"https://framerusercontent.com/images/ThCTsWxRgjG3BvXhkW8RUDNpdYE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ThCTsWxRgjG3BvXhkW8RUDNpdYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ThCTsWxRgjG3BvXhkW8RUDNpdYE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ThCTsWxRgjG3BvXhkW8RUDNpdYE.png 1064w\"},className:\"framer-z7nvhr\",\"data-framer-name\":\"Bahana Sekuritas\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1177,intrinsicWidth:2666,pixelHeight:2354,pixelWidth:5332,sizes:\"45.3016px\",src:\"https://framerusercontent.com/images/XEkFm9YNDdYAbbzjZF4JxOGeLlg.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/XEkFm9YNDdYAbbzjZF4JxOGeLlg.png?scale-down-to=512 512w,https://framerusercontent.com/images/XEkFm9YNDdYAbbzjZF4JxOGeLlg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XEkFm9YNDdYAbbzjZF4JxOGeLlg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XEkFm9YNDdYAbbzjZF4JxOGeLlg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/XEkFm9YNDdYAbbzjZF4JxOGeLlg.png 5332w\"},className:\"framer-1jbogd0\",\"data-framer-name\":\"Bitera\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:640,pixelHeight:720,pixelWidth:1280,sizes:\"35.5556px\",src:\"https://framerusercontent.com/images/9jK0NO1TLBFA8KEIu7WQEgXKdQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9jK0NO1TLBFA8KEIu7WQEgXKdQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/9jK0NO1TLBFA8KEIu7WQEgXKdQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9jK0NO1TLBFA8KEIu7WQEgXKdQ.png 1280w\"},className:\"framer-1m5tuxe\",\"data-framer-name\":\"BRI\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:78.5,intrinsicWidth:160.5,pixelHeight:157,pixelWidth:321,src:\"https://framerusercontent.com/images/N7ZrzxdoeJ3S4PO6J0UBsx9WKeA.png\"},className:\"framer-1ef0agp\",\"data-framer-name\":\"Colatta\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:112.5,pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/Q9Jec7pFwGQ5WR6Ofv5WCaBSH8.png\"},className:\"framer-13nvrdq\",\"data-framer-name\":\"Dark Wonder\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:1713.5,pixelHeight:1200,pixelWidth:3427,sizes:\"57.1167px\",src:\"https://framerusercontent.com/images/NzXs9Ieau2lW5mPhaVmVjmmrnlo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/NzXs9Ieau2lW5mPhaVmVjmmrnlo.png?scale-down-to=512 512w,https://framerusercontent.com/images/NzXs9Ieau2lW5mPhaVmVjmmrnlo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NzXs9Ieau2lW5mPhaVmVjmmrnlo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NzXs9Ieau2lW5mPhaVmVjmmrnlo.png 3427w\"},className:\"framer-1j7wfoz\",\"data-framer-name\":\"Logo Indomaret\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:366,intrinsicWidth:1000.5,pixelHeight:732,pixelWidth:2001,sizes:\"54.6721px\",src:\"https://framerusercontent.com/images/UlIcZdWGDNMOavrEvZC6SVl0dI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/UlIcZdWGDNMOavrEvZC6SVl0dI.png?scale-down-to=512 512w,https://framerusercontent.com/images/UlIcZdWGDNMOavrEvZC6SVl0dI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UlIcZdWGDNMOavrEvZC6SVl0dI.png 2001w\"},className:\"framer-mxiab7\",\"data-framer-name\":\"Logo Prakarsa Final Marun\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:337.5,intrinsicWidth:600,pixelHeight:675,pixelWidth:1200,sizes:\"35.5556px\",src:\"https://framerusercontent.com/images/ra4XGk6R7Cle1kXm2KirSy0nxM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ra4XGk6R7Cle1kXm2KirSy0nxM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ra4XGk6R7Cle1kXm2KirSy0nxM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ra4XGk6R7Cle1kXm2KirSy0nxM.jpg 1200w\"},className:\"framer-1o3tj1y\",\"data-framer-name\":\"Kemkominfo.\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1e3,pixelWidth:1e3,sizes:\"20px\",src:\"https://framerusercontent.com/images/eaFn8ewyJNNxA9fXbiUNenjgo2s.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/eaFn8ewyJNNxA9fXbiUNenjgo2s.png?scale-down-to=512 512w,https://framerusercontent.com/images/eaFn8ewyJNNxA9fXbiUNenjgo2s.png 1000w\"},className:\"framer-xslx7c\",\"data-framer-name\":\"Joyday\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1e3,pixelWidth:1e3,sizes:\"20px\",src:\"https://framerusercontent.com/images/aEbz7AbSQJAtlzbpYaJSMJrcGg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/aEbz7AbSQJAtlzbpYaJSMJrcGg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aEbz7AbSQJAtlzbpYaJSMJrcGg.jpg 1000w\"},className:\"framer-13mglji\",\"data-framer-name\":\"Good Doctor\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:97,intrinsicWidth:129.5,pixelHeight:194,pixelWidth:259,src:\"https://framerusercontent.com/images/8hAML6jv1X6CEAFCWjM9iG58k.jpeg\"},className:\"framer-1vrtfht\",\"data-framer-name\":\"Mayora\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:146,intrinsicWidth:250,pixelHeight:292,pixelWidth:500,src:\"https://framerusercontent.com/images/1WleY4uPNcO2sRvbZFybsMuJgAw.png\"},className:\"framer-1wp8atl\",\"data-framer-name\":\"Mybaby-logo\"})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wbsqij-container hidden-72rtr7 hidden-1avzux hidden-1gq7izo\",\"data-framer-name\":\"Small 2\",isAuthoredByUser:true,isModuleExternal:true,name:\"Small 2\",nodeId:\"BZJ6WXf6w\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:24,height:\"100%\",hoverFactor:.5,id:\"BZJ6WXf6w\",layoutId:\"BZJ6WXf6w\",name:\"Small 2\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1owzxbw\",\"data-framer-name\":\"Ticker 2/Small\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:112.5,pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/56lKF3UqihvmdhcROAydlmiNY.png\"},className:\"framer-105nlu8\",\"data-framer-name\":\"Nutriboost\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:375,intrinsicWidth:800,pixelHeight:382,pixelWidth:1382,sizes:\"71.875px\",src:\"https://framerusercontent.com/images/1uXVnzAi05ETXFNUviCloOT4xk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/1uXVnzAi05ETXFNUviCloOT4xk.png?scale-down-to=512 512w,https://framerusercontent.com/images/1uXVnzAi05ETXFNUviCloOT4xk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1uXVnzAi05ETXFNUviCloOT4xk.png 1382w\"},className:\"framer-4vjk2m\",\"data-framer-name\":\"Telkomsel\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:196.5,intrinsicWidth:350,pixelHeight:200,pixelWidth:366,src:\"https://framerusercontent.com/images/J9pJamWlzkJpdbXWWaVAN3RvtUc.jpg\"},className:\"framer-qx2fm3\",\"data-framer-name\":\"Tempo Group\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:1200,pixelWidth:1600,sizes:\"26.6667px\",src:\"https://framerusercontent.com/images/CRlr4CcIvB2kJBfeikZS4Ku6w0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/CRlr4CcIvB2kJBfeikZS4Ku6w0.png?scale-down-to=512 512w,https://framerusercontent.com/images/CRlr4CcIvB2kJBfeikZS4Ku6w0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CRlr4CcIvB2kJBfeikZS4Ku6w0.png 1600w\"},className:\"framer-128sv9v\",\"data-framer-name\":\"UI (Universitas Indonesia)\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:315,pixelHeight:282,pixelWidth:413,src:\"https://framerusercontent.com/images/hRULhwqIDNCLUITmptmnXZdDwFs.png\"},className:\"framer-1i7zfbl\",\"data-framer-name\":\"Pocari Sweat\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:378,intrinsicWidth:640,pixelHeight:348,pixelWidth:557,sizes:\"33.8624px\",src:\"https://framerusercontent.com/images/D3g1oAdHWdj96RWksMAsuhTkQCE.jpg\",srcSet:\"https://framerusercontent.com/images/D3g1oAdHWdj96RWksMAsuhTkQCE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/D3g1oAdHWdj96RWksMAsuhTkQCE.jpg 557w\"},className:\"framer-162zluc\",\"data-framer-name\":\"Sasa\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:414.5,intrinsicWidth:997,pixelHeight:489,pixelWidth:1536,sizes:\"62.5px\",src:\"https://framerusercontent.com/images/rOK0aZXuEQgj2S49KmSjGZpoRUg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/rOK0aZXuEQgj2S49KmSjGZpoRUg.png?scale-down-to=512 512w,https://framerusercontent.com/images/rOK0aZXuEQgj2S49KmSjGZpoRUg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rOK0aZXuEQgj2S49KmSjGZpoRUg.png 1536w\"},className:\"framer-3ouv55\",\"data-framer-name\":\"TELKOMSAT\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:196.5,intrinsicWidth:350,pixelHeight:164,pixelWidth:700,sizes:\"86.5625px\",src:\"https://framerusercontent.com/images/wIK0AKnD1uiKcDtASffHKLyHEk.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wIK0AKnD1uiKcDtASffHKLyHEk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wIK0AKnD1uiKcDtASffHKLyHEk.jpg 700w\"},className:\"framer-1j7cc13\",\"data-framer-name\":\"Telkom Group\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:139,pixelWidth:400,src:\"https://framerusercontent.com/images/01nYE4CoLM0R1ZrRDy1HlqQkg.jpg\"},className:\"framer-ol9m7a\",\"data-framer-name\":\"Wafer Superstar\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:519.5,intrinsicWidth:1653.5,pixelHeight:1039,pixelWidth:3307,sizes:\"63.6574px\",src:\"https://framerusercontent.com/images/ek5a18jfA9NnhfCr0aVp1wn6Njg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ek5a18jfA9NnhfCr0aVp1wn6Njg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ek5a18jfA9NnhfCr0aVp1wn6Njg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ek5a18jfA9NnhfCr0aVp1wn6Njg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ek5a18jfA9NnhfCr0aVp1wn6Njg.png 3307w\"},className:\"framer-ocawue\",\"data-framer-name\":\"Wairaustone\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:2048,pixelWidth:2048,sizes:\"20px\",src:\"https://framerusercontent.com/images/Ay0Pd6yleICAfmkr5C6foxdSqYQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Ay0Pd6yleICAfmkr5C6foxdSqYQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ay0Pd6yleICAfmkr5C6foxdSqYQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ay0Pd6yleICAfmkr5C6foxdSqYQ.png 2048w\"},className:\"framer-1t7mw69\",\"data-framer-name\":\"XL\"})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ysiphr\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hmh5em\",\"data-framer-name\":\"CTA\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n5gj04\",\"data-framer-name\":\"Black Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1di0025\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1th5li\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 100%)\"},children:\"Let's Talk\"})})})},eUeCSBvr3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 100%)\"},children:\"Let's Talk\"})})})},GAJgexxas:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 100%)\"},children:\"Let's Talk\"})})})},HqMDJKKRg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 100%)\"},children:\"Let's Talk\"})})})},j7STljgSo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 100%)\"},children:\"Let's Talk\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(108deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 100%)\"},children:\"Let's Talk\"})})}),className:\"framer-qd5ipv\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j7STljgSo:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5bb8e3cb-3d0c-4761-bd87-984123c2addd, rgb(255, 255, 255))\"},children:\"Have a project in mind or questions about our services?\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5bb8e3cb-3d0c-4761-bd87-984123c2addd, rgb(255, 255, 255))\"},children:\"We\u2019d love to hear from you.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5bb8e3cb-3d0c-4761-bd87-984123c2addd, rgb(255, 255, 255))\"},children:\"Have a project in mind or questions about our services?\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5bb8e3cb-3d0c-4761-bd87-984123c2addd, rgb(255, 255, 255))\"},children:\"We\u2019d love to hear from you.\"})]}),className:\"framer-1saahjg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/6287871271077\",motionChild:true,nodeId:\"LhBC3elb7\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-i7fbk4 framer-lux5qc\",\"data-framer-name\":\"Button Call\",whileHover:animation3,children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-finc8-container hidden-1avzux hidden-1gq7izo hidden-p2ee0j hidden-x5g14s hidden-1vmzw7c hidden-1ohvdoy\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"m3AJGkv3J\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Chat\",id:\"m3AJGkv3J\",layoutId:\"m3AJGkv3J\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"Start a Chat\"})})},eUeCSBvr3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"Start a Chat\"})})},HqMDJKKRg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"Start a Chat\"})})},j7STljgSo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"Start a Chat\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, rgb(16, 16, 16))\"},children:\"Start a Chat\"})}),className:\"framer-k4pjnm\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ddhapn\"})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{y:(componentViewport?.y||0)+0+6245},eUeCSBvr3:{y:(componentViewport?.y||0)+0+6232},GAJgexxas:{y:(componentViewport?.y||0)+0+6761.5},HqMDJKKRg:{y:(componentViewport?.y||0)+0+6264.5},j7STljgSo:{y:(componentViewport?.y||0)+0+5748.5},nAvEYXsER:{y:(componentViewport?.y||0)+0+6142}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:473,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6790,children:/*#__PURE__*/_jsx(Container,{className:\"framer-frycbu-container\",id:elementId7,nodeId:\"e0_rk208f\",ref:ref8,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOgMC7ira:{variant:\"nI3YR9Dta\"},eUeCSBvr3:{variant:\"nI3YR9Dta\"},GAJgexxas:{variant:\"gxqFNKf9m\"},HqMDJKKRg:{variant:\"nI3YR9Dta\"},j7STljgSo:{variant:\"nI3YR9Dta\"},nAvEYXsER:{variant:\"AnxAuEQpy\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"e0_rk208f\",layoutId:\"e0_rk208f\",style:{width:\"100%\"},variant:\"OG5Z74T3O\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Db3Nj.framer-lux5qc, .framer-Db3Nj .framer-lux5qc { display: block; }\",\".framer-Db3Nj.framer-72rtr7 { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-Db3Nj .framer-1nnk7t3-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-Db3Nj .framer-1cqgjei { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Db3Nj .framer-1xmwygt { align-content: flex-start; align-items: flex-start; background-color: var(--token-6d49a31b-aebf-41dc-ba4b-659a7f81a274, #101010); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 800px; justify-content: center; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 88px; width: 100%; }\",\".framer-Db3Nj .framer-1p8nqzj-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-Db3Nj .framer-dpelsr { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.7); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: center; overflow: visible; padding: 284px 88px 196px 88px; position: relative; width: 1px; z-index: 2; }\",\".framer-Db3Nj .framer-13pcv8h, .framer-Db3Nj .framer-1lt8nap { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Db3Nj .framer-1yxnmvw { align-content: flex-start; align-items: flex-start; background-color: #f4f4f4; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 88px; width: 100%; }\",\".framer-Db3Nj .framer-c6n0dd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 600px; justify-content: flex-start; overflow: visible; padding: 108px 88px 108px 88px; position: relative; width: 1px; z-index: 1; }\",\".framer-Db3Nj .framer-cv2ej1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Db3Nj .framer-1efbpt1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 0.7 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Db3Nj .framer-9h2ybf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 24px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Db3Nj .framer-a9wihn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 88px; width: 100%; }\",\".framer-Db3Nj .framer-4xkimh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 108px 88px 108px 88px; position: relative; width: 100%; z-index: 1; }\",\".framer-Db3Nj .framer-1ncq72u, .framer-Db3Nj .framer-5nwv9q, .framer-Db3Nj .framer-1r6jpyg, .framer-Db3Nj .framer-1th5li { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Db3Nj .framer-1j39rp7, .framer-Db3Nj .framer-1ort5ws, .framer-Db3Nj .framer-1s6uhiv, .framer-Db3Nj .framer-1saahjg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\".framer-Db3Nj .framer-yv591o, .framer-Db3Nj .framer-qd5ipv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Db3Nj .framer-n3mico { display: grid; flex: none; gap: 24px; grid-auto-rows: 420px; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, 420px); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Db3Nj .framer-1yrl1qy-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 1fr; }\",\".framer-Db3Nj .framer-1tbp3hi-container, .framer-Db3Nj .framer-1439set-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-Db3Nj .framer-8inncb { align-content: center; align-items: center; background-color: var(--token-9d642cdc-c613-4553-bf1d-c60570b51031, #475c7a); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 56px; justify-content: center; overflow: hidden; padding: 16px 24px 16px 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Db3Nj .framer-7dxvht, .framer-Db3Nj .framer-1kx1fl3, .framer-Db3Nj .framer-k4pjnm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Db3Nj .framer-762s0f { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 381px); left: 101%; opacity: 0.6; overflow: hidden; position: absolute; top: 54%; transform: translate(-50%, -50%); width: 381px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-Db3Nj .framer-6mmn0w, .framer-Db3Nj .framer-s04eld { align-content: center; align-items: center; background-color: var(--token-5bb8e3cb-3d0c-4761-bd87-984123c2addd, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 88px; width: 100%; }\",\".framer-Db3Nj .framer-kuj8xu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 108px 48px 64px 48px; position: relative; width: 100%; z-index: 1; }\",\".framer-Db3Nj .framer-mflo4p { 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%; z-index: 1; }\",\".framer-Db3Nj .framer-x3gy7u-container { aspect-ratio: 1.68 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 800px); position: relative; width: 1px; }\",\".framer-Db3Nj .framer-qgerbj { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Db3Nj .framer-1gaxfw2-container, .framer-Db3Nj .framer-oajgpj-container, .framer-Db3Nj .framer-1a5bs2h-container { align-self: start; flex: none; height: 302px; justify-self: start; position: relative; width: 100%; }\",\".framer-Db3Nj .framer-scj07m-container, .framer-Db3Nj .framer-n048o3-container, .framer-Db3Nj .framer-1n1qog3-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-Db3Nj .framer-1xnxcpu { align-content: center; align-items: center; background-color: var(--token-9d642cdc-c613-4553-bf1d-c60570b51031, #475c7a); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 56px; justify-content: center; overflow: hidden; padding: 16px 24px 16px 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Db3Nj .framer-6a75rm { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: var(--token-73b1ab19-bfa1-4e2b-b2bb-0543a8d59215, #fcbb6d); border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 357px); left: -2%; opacity: 0.6; overflow: hidden; position: absolute; top: 59%; transform: translate(-50%, -50%); width: 357px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-Db3Nj .framer-hp01a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 108px 0px 108px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Db3Nj .framer-1vvzzl5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Db3Nj .framer-18qegj4-container, .framer-Db3Nj .framer-1741l4k-container { flex: none; height: 72px; position: relative; width: 100%; }\",\".framer-Db3Nj .framer-170rtr9, .framer-Db3Nj .framer-1ghbkak { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Db3Nj .framer-1uqz7ax { aspect-ratio: 4.707964601769912 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 301px; }\",\".framer-Db3Nj .framer-1gylumw { aspect-ratio: 2.2650807136788447 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 145px; }\",\".framer-Db3Nj .framer-tjljzv, .framer-Db3Nj .framer-3iy8i7 { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 114px; }\",\".framer-Db3Nj .framer-utlekd { aspect-ratio: 2.0445859872611467 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 131px; }\",\".framer-Db3Nj .framer-r3fsi2, .framer-Db3Nj .framer-fh3ttw, .framer-Db3Nj .framer-m3west, .framer-Db3Nj .framer-11hyspa, .framer-Db3Nj .framer-l58gsu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 64px; }\",\".framer-Db3Nj .framer-1mhzor4 { aspect-ratio: 2.8558333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 183px; }\",\".framer-Db3Nj .framer-56xfw7 { aspect-ratio: 2.7336065573770494 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 175px; }\",\".framer-Db3Nj .framer-1kpycwu { aspect-ratio: 1.3350515463917525 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 85px; }\",\".framer-Db3Nj .framer-1onvgpt { aspect-ratio: 1.7123287671232876 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 110px; }\",\".framer-Db3Nj .framer-1008iu1 { aspect-ratio: 3.59375 / 1; flex: none; height: 64px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 230px); }\",\".framer-Db3Nj .framer-1yt986i { aspect-ratio: 1.7811704834605597 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 114px; }\",\".framer-Db3Nj .framer-119lud7 { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 85px; }\",\".framer-Db3Nj .framer-c5r1d { aspect-ratio: 1.4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 90px; }\",\".framer-Db3Nj .framer-1ey6zsh { aspect-ratio: 1.693121693121693 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 108px; }\",\".framer-Db3Nj .framer-2u5agx { aspect-ratio: 3.125 / 1; flex: none; height: 64px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-Db3Nj .framer-1i4abqz { aspect-ratio: 4.328125 / 1; flex: none; height: 64px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 277px); }\",\".framer-Db3Nj .framer-19c4rkp { aspect-ratio: 2.8125 / 1; flex: none; height: 64px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 180px); }\",\".framer-Db3Nj .framer-16atguc { aspect-ratio: 3.1828681424446583 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 204px; }\",\".framer-Db3Nj .framer-1up2ayw-container, .framer-Db3Nj .framer-wbsqij-container { flex: none; height: 28px; position: relative; width: 100%; }\",\".framer-Db3Nj .framer-17r4w7i, .framer-Db3Nj .framer-1owzxbw { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Db3Nj .framer-z7nvhr { aspect-ratio: 4.707964601769912 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 94px; }\",\".framer-Db3Nj .framer-1jbogd0 { aspect-ratio: 2.2650807136788447 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 45px; }\",\".framer-Db3Nj .framer-1m5tuxe, .framer-Db3Nj .framer-1o3tj1y { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 36px; }\",\".framer-Db3Nj .framer-1ef0agp { aspect-ratio: 2.0445859872611467 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 41px; }\",\".framer-Db3Nj .framer-13nvrdq, .framer-Db3Nj .framer-xslx7c, .framer-Db3Nj .framer-13mglji, .framer-Db3Nj .framer-105nlu8, .framer-Db3Nj .framer-1t7mw69 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 20px; }\",\".framer-Db3Nj .framer-1j7wfoz { aspect-ratio: 2.8558333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 57px; }\",\".framer-Db3Nj .framer-mxiab7 { aspect-ratio: 2.7336065573770494 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 55px; }\",\".framer-Db3Nj .framer-1vrtfht { aspect-ratio: 1.3350515463917525 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 27px; }\",\".framer-Db3Nj .framer-1wp8atl { aspect-ratio: 1.7123287671232876 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 34px; }\",\".framer-Db3Nj .framer-4vjk2m { aspect-ratio: 3.59375 / 1; flex: none; height: 20px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 72px); }\",\".framer-Db3Nj .framer-qx2fm3 { aspect-ratio: 1.7811704834605597 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 36px; }\",\".framer-Db3Nj .framer-128sv9v { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 27px; }\",\".framer-Db3Nj .framer-1i7zfbl { aspect-ratio: 1.4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 28px; }\",\".framer-Db3Nj .framer-162zluc { aspect-ratio: 1.693121693121693 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 34px; }\",\".framer-Db3Nj .framer-3ouv55 { aspect-ratio: 3.125 / 1; flex: none; height: 20px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 63px); }\",\".framer-Db3Nj .framer-1j7cc13 { aspect-ratio: 4.328125 / 1; flex: none; height: 20px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 86px); }\",\".framer-Db3Nj .framer-ol9m7a { aspect-ratio: 2.8125 / 1; flex: none; height: 20px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 56px); }\",\".framer-Db3Nj .framer-ocawue { aspect-ratio: 3.1828681424446583 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 64px; }\",\".framer-Db3Nj .framer-1ysiphr { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: var(--token-73b1ab19-bfa1-4e2b-b2bb-0543a8d59215, #fcbb6d); border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 228px); left: 102%; overflow: hidden; position: absolute; top: 17%; transform: translate(-50%, -50%); width: 228px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-Db3Nj .framer-1hmh5em { align-content: center; align-items: center; background-color: var(--token-fc46b00a-83e4-4b7c-8b23-13806cba6a39, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 108px 88px 108px 88px; position: relative; width: 100%; }\",\".framer-Db3Nj .framer-1n5gj04 { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-9d642cdc-c613-4553-bf1d-c60570b51031, #475c7a) 0%, rgb(32, 43, 59) 100%); border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 72px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-Db3Nj .framer-1di0025 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Db3Nj .framer-i7fbk4 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 56px; justify-content: center; overflow: hidden; padding: 16px 24px 16px 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Db3Nj .framer-finc8-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-Db3Nj .framer-1ddhapn { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: var(--token-73b1ab19-bfa1-4e2b-b2bb-0543a8d59215, #fcbb6d); border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; bottom: -390px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 781px); left: 51%; opacity: 0.4; overflow: hidden; position: absolute; transform: translateX(-50%); width: 781px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-Db3Nj .framer-frycbu-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Db3Nj.framer-72rtr7, .framer-Db3Nj .framer-1cqgjei, .framer-Db3Nj .framer-1xmwygt, .framer-Db3Nj .framer-dpelsr, .framer-Db3Nj .framer-1yxnmvw, .framer-Db3Nj .framer-c6n0dd, .framer-Db3Nj .framer-cv2ej1, .framer-Db3Nj .framer-a9wihn, .framer-Db3Nj .framer-4xkimh, .framer-Db3Nj .framer-1ncq72u, .framer-Db3Nj .framer-8inncb, .framer-Db3Nj .framer-6mmn0w, .framer-Db3Nj .framer-kuj8xu, .framer-Db3Nj .framer-5nwv9q, .framer-Db3Nj .framer-mflo4p, .framer-Db3Nj .framer-1xnxcpu, .framer-Db3Nj .framer-s04eld, .framer-Db3Nj .framer-hp01a, .framer-Db3Nj .framer-1r6jpyg, .framer-Db3Nj .framer-1vvzzl5, .framer-Db3Nj .framer-170rtr9, .framer-Db3Nj .framer-1ghbkak, .framer-Db3Nj .framer-17r4w7i, .framer-Db3Nj .framer-1owzxbw, .framer-Db3Nj .framer-1hmh5em, .framer-Db3Nj .framer-1n5gj04, .framer-Db3Nj .framer-1di0025, .framer-Db3Nj .framer-1th5li, .framer-Db3Nj .framer-i7fbk4 { gap: 0px; } .framer-Db3Nj.framer-72rtr7 > *, .framer-Db3Nj .framer-1cqgjei > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Db3Nj.framer-72rtr7 > :first-child, .framer-Db3Nj .framer-1cqgjei > :first-child, .framer-Db3Nj .framer-dpelsr > :first-child, .framer-Db3Nj .framer-c6n0dd > :first-child, .framer-Db3Nj .framer-a9wihn > :first-child, .framer-Db3Nj .framer-4xkimh > :first-child, .framer-Db3Nj .framer-1ncq72u > :first-child, .framer-Db3Nj .framer-6mmn0w > :first-child, .framer-Db3Nj .framer-kuj8xu > :first-child, .framer-Db3Nj .framer-5nwv9q > :first-child, .framer-Db3Nj .framer-s04eld > :first-child, .framer-Db3Nj .framer-hp01a > :first-child, .framer-Db3Nj .framer-1r6jpyg > :first-child, .framer-Db3Nj .framer-1vvzzl5 > :first-child, .framer-Db3Nj .framer-1hmh5em > :first-child, .framer-Db3Nj .framer-1di0025 > :first-child, .framer-Db3Nj .framer-1th5li > :first-child { margin-top: 0px; } .framer-Db3Nj.framer-72rtr7 > :last-child, .framer-Db3Nj .framer-1cqgjei > :last-child, .framer-Db3Nj .framer-dpelsr > :last-child, .framer-Db3Nj .framer-c6n0dd > :last-child, .framer-Db3Nj .framer-a9wihn > :last-child, .framer-Db3Nj .framer-4xkimh > :last-child, .framer-Db3Nj .framer-1ncq72u > :last-child, .framer-Db3Nj .framer-6mmn0w > :last-child, .framer-Db3Nj .framer-kuj8xu > :last-child, .framer-Db3Nj .framer-5nwv9q > :last-child, .framer-Db3Nj .framer-s04eld > :last-child, .framer-Db3Nj .framer-hp01a > :last-child, .framer-Db3Nj .framer-1r6jpyg > :last-child, .framer-Db3Nj .framer-1vvzzl5 > :last-child, .framer-Db3Nj .framer-1hmh5em > :last-child, .framer-Db3Nj .framer-1di0025 > :last-child, .framer-Db3Nj .framer-1th5li > :last-child { margin-bottom: 0px; } .framer-Db3Nj .framer-1xmwygt > *, .framer-Db3Nj .framer-1yxnmvw > *, .framer-Db3Nj .framer-mflo4p > *, .framer-Db3Nj .framer-17r4w7i > *, .framer-Db3Nj .framer-1owzxbw > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Db3Nj .framer-1xmwygt > :first-child, .framer-Db3Nj .framer-1yxnmvw > :first-child, .framer-Db3Nj .framer-cv2ej1 > :first-child, .framer-Db3Nj .framer-8inncb > :first-child, .framer-Db3Nj .framer-mflo4p > :first-child, .framer-Db3Nj .framer-1xnxcpu > :first-child, .framer-Db3Nj .framer-170rtr9 > :first-child, .framer-Db3Nj .framer-1ghbkak > :first-child, .framer-Db3Nj .framer-17r4w7i > :first-child, .framer-Db3Nj .framer-1owzxbw > :first-child, .framer-Db3Nj .framer-1n5gj04 > :first-child, .framer-Db3Nj .framer-i7fbk4 > :first-child { margin-left: 0px; } .framer-Db3Nj .framer-1xmwygt > :last-child, .framer-Db3Nj .framer-1yxnmvw > :last-child, .framer-Db3Nj .framer-cv2ej1 > :last-child, .framer-Db3Nj .framer-8inncb > :last-child, .framer-Db3Nj .framer-mflo4p > :last-child, .framer-Db3Nj .framer-1xnxcpu > :last-child, .framer-Db3Nj .framer-170rtr9 > :last-child, .framer-Db3Nj .framer-1ghbkak > :last-child, .framer-Db3Nj .framer-17r4w7i > :last-child, .framer-Db3Nj .framer-1owzxbw > :last-child, .framer-Db3Nj .framer-1n5gj04 > :last-child, .framer-Db3Nj .framer-i7fbk4 > :last-child { margin-right: 0px; } .framer-Db3Nj .framer-dpelsr > *, .framer-Db3Nj .framer-c6n0dd > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Db3Nj .framer-cv2ej1 > *, .framer-Db3Nj .framer-170rtr9 > *, .framer-Db3Nj .framer-1ghbkak > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-Db3Nj .framer-a9wihn > *, .framer-Db3Nj .framer-6mmn0w > *, .framer-Db3Nj .framer-s04eld > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Db3Nj .framer-4xkimh > *, .framer-Db3Nj .framer-kuj8xu > *, .framer-Db3Nj .framer-hp01a > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-Db3Nj .framer-1ncq72u > *, .framer-Db3Nj .framer-5nwv9q > *, .framer-Db3Nj .framer-1r6jpyg > *, .framer-Db3Nj .framer-1vvzzl5 > *, .framer-Db3Nj .framer-1th5li > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Db3Nj .framer-8inncb > *, .framer-Db3Nj .framer-1xnxcpu > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Db3Nj .framer-1hmh5em > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-Db3Nj .framer-1n5gj04 > *, .framer-Db3Nj .framer-i7fbk4 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Db3Nj .framer-1di0025 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }\",\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-Db3Nj.framer-72rtr7 { width: 1200px; } .framer-Db3Nj .framer-dpelsr { padding: 172px 64px 172px 64px; } .framer-Db3Nj .framer-c6n0dd { height: 480px; justify-content: center; padding: 172px 64px 172px 64px; } .framer-Db3Nj .framer-4xkimh, .framer-Db3Nj .framer-kuj8xu, .framer-Db3Nj .framer-1hmh5em { padding: 64px; } .framer-Db3Nj .framer-1j39rp7 { width: 70%; } .framer-Db3Nj .framer-n3mico { gap: 16px; grid-auto-rows: 400px; grid-template-rows: repeat(1, 400px); } .framer-Db3Nj .framer-x3gy7u-container { aspect-ratio: 1.7866666666666666 / 1; height: var(--framer-aspect-ratio-supported, 600px); } .framer-Db3Nj .framer-6a75rm { bottom: 871px; height: var(--framer-aspect-ratio-supported, 312px); left: -6%; top: unset; transform: translateX(-50%); width: 312px; } .framer-Db3Nj .framer-hp01a { padding: 64px 0px 64px 0px; } .framer-Db3Nj .framer-1ysiphr { height: var(--framer-aspect-ratio-supported, 187px); left: unset; right: -100px; top: -29px; transform: unset; width: 187px; } .framer-Db3Nj .framer-1n5gj04 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; } .framer-Db3Nj .framer-1ddhapn { bottom: -390px; left: 50%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Db3Nj .framer-n3mico { gap: 0px; } .framer-Db3Nj .framer-n3mico > *, .framer-Db3Nj .framer-n3mico > :first-child, .framer-Db3Nj .framer-n3mico > :last-child { margin: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Db3Nj.framer-72rtr7 { width: 810px; } .framer-Db3Nj .framer-1nnk7t3-container { right: unset; width: 100%; } .framer-Db3Nj .framer-1xmwygt { flex-direction: column; height: 600px; } .framer-Db3Nj .framer-1p8nqzj-container { order: 1; } .framer-Db3Nj .framer-dpelsr { height: 1px; order: 0; padding: 48px; width: 100%; z-index: 1; } .framer-Db3Nj .framer-1yxnmvw { flex-direction: column; } .framer-Db3Nj .framer-c6n0dd { flex: none; height: min-content; order: 1; padding: 64px 48px 64px 48px; width: 100%; } .framer-Db3Nj .framer-cv2ej1 { flex-direction: column; gap: 18px; justify-content: flex-start; } .framer-Db3Nj .framer-1efbpt1 { flex: none; width: 100%; } .framer-Db3Nj .framer-9h2ybf { --framer-paragraph-spacing: 14px; flex: none; width: 80%; } .framer-Db3Nj .framer-4xkimh { gap: 48px; padding: 64px 48px 64px 48px; } .framer-Db3Nj .framer-1ncq72u, .framer-Db3Nj .framer-1th5li { gap: 18px; } .framer-Db3Nj .framer-1j39rp7, .framer-Db3Nj .framer-yv591o { width: 70%; } .framer-Db3Nj .framer-n3mico { gap: 12px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); } .framer-Db3Nj .framer-1yrl1qy-container { height: auto; width: 100%; } .framer-Db3Nj .framer-1tbp3hi-container, .framer-Db3Nj .framer-1439set-container { height: auto; } .framer-Db3Nj .framer-8inncb, .framer-Db3Nj .framer-1xnxcpu, .framer-Db3Nj .framer-i7fbk4 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 48px; } .framer-Db3Nj .framer-762s0f { height: var(--framer-aspect-ratio-supported, 300px); width: 300px; } .framer-Db3Nj .framer-kuj8xu, .framer-Db3Nj .framer-1hmh5em { padding: 48px; } .framer-Db3Nj .framer-mflo4p { gap: 16px; } .framer-Db3Nj .framer-x3gy7u-container { height: var(--framer-aspect-ratio-supported, 425px); } .framer-Db3Nj .framer-qgerbj { gap: 16px; grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-Db3Nj .framer-6a75rm { aspect-ratio: unset; height: 300px; left: calc(-9.382716049382694% - 300px / 2); top: calc(63.83737517831671% - 300px / 2); transform: unset; width: 300px; } .framer-Db3Nj .framer-hp01a { gap: 36px; padding: 48px 0px 48px 0px; } .framer-Db3Nj .framer-1vvzzl5 { gap: 8px; } .framer-Db3Nj .framer-1ysiphr { aspect-ratio: unset; height: 195px; left: calc(105.55555555555559% - 195px / 2); top: calc(20.84592145015108% - 195px / 2); transform: unset; width: 195px; } .framer-Db3Nj .framer-1n5gj04 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; padding: 48px; } .framer-Db3Nj .framer-1saahjg { width: 80%; } .framer-Db3Nj .framer-1ddhapn { bottom: -261px; height: var(--framer-aspect-ratio-supported, 523px); left: 51%; width: 523px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Db3Nj .framer-1xmwygt, .framer-Db3Nj .framer-1yxnmvw, .framer-Db3Nj .framer-cv2ej1, .framer-Db3Nj .framer-4xkimh, .framer-Db3Nj .framer-1ncq72u, .framer-Db3Nj .framer-n3mico, .framer-Db3Nj .framer-mflo4p, .framer-Db3Nj .framer-qgerbj, .framer-Db3Nj .framer-hp01a, .framer-Db3Nj .framer-1vvzzl5, .framer-Db3Nj .framer-1th5li { gap: 0px; } .framer-Db3Nj .framer-1xmwygt > *, .framer-Db3Nj .framer-1yxnmvw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Db3Nj .framer-1xmwygt > :first-child, .framer-Db3Nj .framer-1yxnmvw > :first-child, .framer-Db3Nj .framer-cv2ej1 > :first-child, .framer-Db3Nj .framer-4xkimh > :first-child, .framer-Db3Nj .framer-1ncq72u > :first-child, .framer-Db3Nj .framer-hp01a > :first-child, .framer-Db3Nj .framer-1vvzzl5 > :first-child, .framer-Db3Nj .framer-1th5li > :first-child { margin-top: 0px; } .framer-Db3Nj .framer-1xmwygt > :last-child, .framer-Db3Nj .framer-1yxnmvw > :last-child, .framer-Db3Nj .framer-cv2ej1 > :last-child, .framer-Db3Nj .framer-4xkimh > :last-child, .framer-Db3Nj .framer-1ncq72u > :last-child, .framer-Db3Nj .framer-hp01a > :last-child, .framer-Db3Nj .framer-1vvzzl5 > :last-child, .framer-Db3Nj .framer-1th5li > :last-child { margin-bottom: 0px; } .framer-Db3Nj .framer-cv2ej1 > *, .framer-Db3Nj .framer-1ncq72u > *, .framer-Db3Nj .framer-1th5li > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-Db3Nj .framer-4xkimh > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Db3Nj .framer-n3mico > *, .framer-Db3Nj .framer-n3mico > :first-child, .framer-Db3Nj .framer-n3mico > :last-child, .framer-Db3Nj .framer-qgerbj > *, .framer-Db3Nj .framer-qgerbj > :first-child, .framer-Db3Nj .framer-qgerbj > :last-child { margin: 0px; } .framer-Db3Nj .framer-mflo4p > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Db3Nj .framer-mflo4p > :first-child { margin-left: 0px; } .framer-Db3Nj .framer-mflo4p > :last-child { margin-right: 0px; } .framer-Db3Nj .framer-hp01a > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-Db3Nj .framer-1vvzzl5 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}\",\"@media (min-width: 390px) and (max-width: 411px) { .framer-Db3Nj.framer-72rtr7 { width: 390px; } .framer-Db3Nj .framer-1nnk7t3-container { right: unset; width: 100%; } .framer-Db3Nj .framer-1xmwygt { flex-direction: column; height: 600px; } .framer-Db3Nj .framer-1p8nqzj-container { order: 1; } .framer-Db3Nj .framer-dpelsr { height: 1px; order: 0; padding: 48px; width: 100%; z-index: 1; } .framer-Db3Nj .framer-1lt8nap { white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; } .framer-Db3Nj .framer-1yxnmvw { flex-direction: column; } .framer-Db3Nj .framer-c6n0dd { flex: none; height: min-content; order: 1; padding: 48px 24px 48px 24px; width: 100%; } .framer-Db3Nj .framer-cv2ej1 { flex-direction: column; gap: 18px; justify-content: flex-start; } .framer-Db3Nj .framer-1efbpt1 { flex: none; width: 100%; } .framer-Db3Nj .framer-9h2ybf { --framer-paragraph-spacing: 12px; flex: none; width: 100%; } .framer-Db3Nj .framer-4xkimh { gap: 24px; padding: 48px 24px 48px 24px; } .framer-Db3Nj .framer-1ncq72u { gap: 16px; } .framer-Db3Nj .framer-1j39rp7, .framer-Db3Nj .framer-1s6uhiv, .framer-Db3Nj .framer-1saahjg { width: 100%; } .framer-Db3Nj .framer-yv591o, .framer-Db3Nj .framer-1ort5ws { width: 90%; } .framer-Db3Nj .framer-n3mico { gap: 12px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); } .framer-Db3Nj .framer-1yrl1qy-container { height: auto; width: 100%; } .framer-Db3Nj .framer-1tbp3hi-container, .framer-Db3Nj .framer-1439set-container { height: auto; } .framer-Db3Nj .framer-8inncb, .framer-Db3Nj .framer-i7fbk4 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 42px; padding: 12px 16px 12px 16px; width: 100%; } .framer-Db3Nj .framer-762s0f { height: var(--framer-aspect-ratio-supported, 289px); left: unset; right: -148px; top: 54%; transform: translateY(-50%); width: 289px; } .framer-Db3Nj .framer-kuj8xu { gap: 24px; padding: 48px 16px 48px 16px; } .framer-Db3Nj .framer-5nwv9q { order: 0; } .framer-Db3Nj .framer-mflo4p { gap: 16px; order: 1; } .framer-Db3Nj .framer-x3gy7u-container { height: var(--framer-aspect-ratio-supported, 213px); } .framer-Db3Nj .framer-qgerbj { gap: 16px; grid-template-columns: repeat(1, minmax(200px, 1fr)); order: 2; } .framer-Db3Nj .framer-1xnxcpu { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 42px; order: 3; padding: 12px 16px 12px 16px; width: 100%; } .framer-Db3Nj .framer-6a75rm { height: var(--framer-aspect-ratio-supported, 183px); left: -2%; top: 59%; width: 183px; } .framer-Db3Nj .framer-hp01a { gap: 24px; padding: 48px 0px 48px 0px; } .framer-Db3Nj .framer-1vvzzl5 { gap: 8px; } .framer-Db3Nj .framer-1ysiphr { height: var(--framer-aspect-ratio-supported, 200px); left: 117%; top: 17%; width: 200px; } .framer-Db3Nj .framer-1hmh5em { padding: 16px; } .framer-Db3Nj .framer-1n5gj04 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; padding: 36px 20px 36px 20px; } .framer-Db3Nj .framer-1th5li { gap: 18px; } .framer-Db3Nj .framer-1ddhapn { bottom: -124px; height: var(--framer-aspect-ratio-supported, 249px); left: 51%; width: 249px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Db3Nj .framer-1xmwygt, .framer-Db3Nj .framer-1yxnmvw, .framer-Db3Nj .framer-cv2ej1, .framer-Db3Nj .framer-4xkimh, .framer-Db3Nj .framer-1ncq72u, .framer-Db3Nj .framer-n3mico, .framer-Db3Nj .framer-kuj8xu, .framer-Db3Nj .framer-mflo4p, .framer-Db3Nj .framer-qgerbj, .framer-Db3Nj .framer-hp01a, .framer-Db3Nj .framer-1vvzzl5, .framer-Db3Nj .framer-1th5li { gap: 0px; } .framer-Db3Nj .framer-1xmwygt > *, .framer-Db3Nj .framer-1yxnmvw > *, .framer-Db3Nj .framer-4xkimh > *, .framer-Db3Nj .framer-kuj8xu > *, .framer-Db3Nj .framer-hp01a > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Db3Nj .framer-1xmwygt > :first-child, .framer-Db3Nj .framer-1yxnmvw > :first-child, .framer-Db3Nj .framer-cv2ej1 > :first-child, .framer-Db3Nj .framer-4xkimh > :first-child, .framer-Db3Nj .framer-1ncq72u > :first-child, .framer-Db3Nj .framer-kuj8xu > :first-child, .framer-Db3Nj .framer-hp01a > :first-child, .framer-Db3Nj .framer-1vvzzl5 > :first-child, .framer-Db3Nj .framer-1th5li > :first-child { margin-top: 0px; } .framer-Db3Nj .framer-1xmwygt > :last-child, .framer-Db3Nj .framer-1yxnmvw > :last-child, .framer-Db3Nj .framer-cv2ej1 > :last-child, .framer-Db3Nj .framer-4xkimh > :last-child, .framer-Db3Nj .framer-1ncq72u > :last-child, .framer-Db3Nj .framer-kuj8xu > :last-child, .framer-Db3Nj .framer-hp01a > :last-child, .framer-Db3Nj .framer-1vvzzl5 > :last-child, .framer-Db3Nj .framer-1th5li > :last-child { margin-bottom: 0px; } .framer-Db3Nj .framer-cv2ej1 > *, .framer-Db3Nj .framer-1th5li > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-Db3Nj .framer-1ncq72u > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Db3Nj .framer-n3mico > *, .framer-Db3Nj .framer-n3mico > :first-child, .framer-Db3Nj .framer-n3mico > :last-child, .framer-Db3Nj .framer-qgerbj > *, .framer-Db3Nj .framer-qgerbj > :first-child, .framer-Db3Nj .framer-qgerbj > :last-child { margin: 0px; } .framer-Db3Nj .framer-mflo4p > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Db3Nj .framer-mflo4p > :first-child { margin-left: 0px; } .framer-Db3Nj .framer-mflo4p > :last-child { margin-right: 0px; } .framer-Db3Nj .framer-1vvzzl5 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}\",\"@media (min-width: 412px) and (max-width: 809px) { .framer-Db3Nj.framer-72rtr7 { width: 412px; } .framer-Db3Nj .framer-1nnk7t3-container { right: unset; width: 100%; } .framer-Db3Nj .framer-1xmwygt { flex-direction: column; height: 600px; } .framer-Db3Nj .framer-1p8nqzj-container { order: 1; } .framer-Db3Nj .framer-dpelsr { height: 1px; order: 0; padding: 48px; width: 100%; z-index: 1; } .framer-Db3Nj .framer-1lt8nap { white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; } .framer-Db3Nj .framer-1yxnmvw { flex-direction: column; } .framer-Db3Nj .framer-c6n0dd { flex: none; height: min-content; order: 1; padding: 48px 24px 48px 24px; width: 100%; } .framer-Db3Nj .framer-cv2ej1 { flex-direction: column; gap: 18px; justify-content: flex-start; } .framer-Db3Nj .framer-1efbpt1 { flex: none; width: 100%; } .framer-Db3Nj .framer-9h2ybf { --framer-paragraph-spacing: 12px; flex: none; width: 100%; } .framer-Db3Nj .framer-4xkimh { gap: 24px; padding: 48px 24px 48px 24px; } .framer-Db3Nj .framer-1ncq72u { gap: 16px; } .framer-Db3Nj .framer-1j39rp7, .framer-Db3Nj .framer-1s6uhiv, .framer-Db3Nj .framer-1saahjg { width: 100%; } .framer-Db3Nj .framer-yv591o, .framer-Db3Nj .framer-1ort5ws { width: 90%; } .framer-Db3Nj .framer-n3mico { gap: 12px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); } .framer-Db3Nj .framer-1yrl1qy-container { height: auto; width: 100%; } .framer-Db3Nj .framer-1tbp3hi-container, .framer-Db3Nj .framer-1439set-container { height: auto; } .framer-Db3Nj .framer-8inncb, .framer-Db3Nj .framer-i7fbk4 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 42px; padding: 12px 16px 12px 16px; width: 100%; } .framer-Db3Nj .framer-762s0f { height: var(--framer-aspect-ratio-supported, 289px); left: unset; right: -148px; top: 54%; transform: translateY(-50%); width: 289px; } .framer-Db3Nj .framer-kuj8xu { gap: 24px; padding: 48px 16px 48px 16px; } .framer-Db3Nj .framer-5nwv9q { order: 0; } .framer-Db3Nj .framer-mflo4p { gap: 16px; order: 1; } .framer-Db3Nj .framer-x3gy7u-container { height: var(--framer-aspect-ratio-supported, 226px); } .framer-Db3Nj .framer-qgerbj { gap: 16px; grid-template-columns: repeat(1, minmax(200px, 1fr)); order: 2; } .framer-Db3Nj .framer-1xnxcpu { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 42px; order: 3; padding: 12px 16px 12px 16px; width: 100%; } .framer-Db3Nj .framer-6a75rm { height: var(--framer-aspect-ratio-supported, 183px); left: -2%; top: 59%; width: 183px; } .framer-Db3Nj .framer-hp01a { gap: 24px; padding: 48px 0px 48px 0px; } .framer-Db3Nj .framer-1vvzzl5 { gap: 8px; } .framer-Db3Nj .framer-1ysiphr { height: var(--framer-aspect-ratio-supported, 200px); left: 117%; top: 17%; width: 200px; } .framer-Db3Nj .framer-1hmh5em { padding: 16px; } .framer-Db3Nj .framer-1n5gj04 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; padding: 36px 20px 36px 20px; } .framer-Db3Nj .framer-1th5li { gap: 18px; } .framer-Db3Nj .framer-1ddhapn { bottom: -124px; height: var(--framer-aspect-ratio-supported, 249px); left: 51%; width: 249px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Db3Nj .framer-1xmwygt, .framer-Db3Nj .framer-1yxnmvw, .framer-Db3Nj .framer-cv2ej1, .framer-Db3Nj .framer-4xkimh, .framer-Db3Nj .framer-1ncq72u, .framer-Db3Nj .framer-n3mico, .framer-Db3Nj .framer-kuj8xu, .framer-Db3Nj .framer-mflo4p, .framer-Db3Nj .framer-qgerbj, .framer-Db3Nj .framer-hp01a, .framer-Db3Nj .framer-1vvzzl5, .framer-Db3Nj .framer-1th5li { gap: 0px; } .framer-Db3Nj .framer-1xmwygt > *, .framer-Db3Nj .framer-1yxnmvw > *, .framer-Db3Nj .framer-4xkimh > *, .framer-Db3Nj .framer-kuj8xu > *, .framer-Db3Nj .framer-hp01a > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Db3Nj .framer-1xmwygt > :first-child, .framer-Db3Nj .framer-1yxnmvw > :first-child, .framer-Db3Nj .framer-cv2ej1 > :first-child, .framer-Db3Nj .framer-4xkimh > :first-child, .framer-Db3Nj .framer-1ncq72u > :first-child, .framer-Db3Nj .framer-kuj8xu > :first-child, .framer-Db3Nj .framer-hp01a > :first-child, .framer-Db3Nj .framer-1vvzzl5 > :first-child, .framer-Db3Nj .framer-1th5li > :first-child { margin-top: 0px; } .framer-Db3Nj .framer-1xmwygt > :last-child, .framer-Db3Nj .framer-1yxnmvw > :last-child, .framer-Db3Nj .framer-cv2ej1 > :last-child, .framer-Db3Nj .framer-4xkimh > :last-child, .framer-Db3Nj .framer-1ncq72u > :last-child, .framer-Db3Nj .framer-kuj8xu > :last-child, .framer-Db3Nj .framer-hp01a > :last-child, .framer-Db3Nj .framer-1vvzzl5 > :last-child, .framer-Db3Nj .framer-1th5li > :last-child { margin-bottom: 0px; } .framer-Db3Nj .framer-cv2ej1 > *, .framer-Db3Nj .framer-1th5li > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-Db3Nj .framer-1ncq72u > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Db3Nj .framer-n3mico > *, .framer-Db3Nj .framer-n3mico > :first-child, .framer-Db3Nj .framer-n3mico > :last-child, .framer-Db3Nj .framer-qgerbj > *, .framer-Db3Nj .framer-qgerbj > :first-child, .framer-Db3Nj .framer-qgerbj > :last-child { margin: 0px; } .framer-Db3Nj .framer-mflo4p > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Db3Nj .framer-mflo4p > :first-child { margin-left: 0px; } .framer-Db3Nj .framer-mflo4p > :last-child { margin-right: 0px; } .framer-Db3Nj .framer-1vvzzl5 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}\",\"@media (min-width: 360px) and (max-width: 389px) { .framer-Db3Nj.framer-72rtr7 { width: 360px; } .framer-Db3Nj .framer-1nnk7t3-container { right: unset; width: 100%; } .framer-Db3Nj .framer-1xmwygt { flex-direction: column; height: 600px; } .framer-Db3Nj .framer-1p8nqzj-container { order: 1; } .framer-Db3Nj .framer-dpelsr { height: 1px; order: 0; padding: 48px; width: 100%; z-index: 1; } .framer-Db3Nj .framer-1lt8nap { white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; } .framer-Db3Nj .framer-1yxnmvw { flex-direction: column; } .framer-Db3Nj .framer-c6n0dd { flex: none; height: min-content; order: 1; padding: 48px 24px 48px 24px; width: 100%; } .framer-Db3Nj .framer-cv2ej1 { flex-direction: column; gap: 18px; justify-content: flex-start; } .framer-Db3Nj .framer-1efbpt1 { flex: none; width: 100%; } .framer-Db3Nj .framer-9h2ybf { --framer-paragraph-spacing: 12px; flex: none; width: 100%; } .framer-Db3Nj .framer-4xkimh { gap: 24px; padding: 48px 24px 48px 24px; } .framer-Db3Nj .framer-1ncq72u { gap: 16px; } .framer-Db3Nj .framer-1j39rp7, .framer-Db3Nj .framer-1s6uhiv, .framer-Db3Nj .framer-1saahjg { width: 100%; } .framer-Db3Nj .framer-yv591o, .framer-Db3Nj .framer-1ort5ws { width: 90%; } .framer-Db3Nj .framer-n3mico { gap: 12px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); } .framer-Db3Nj .framer-1yrl1qy-container { height: auto; width: 100%; } .framer-Db3Nj .framer-1tbp3hi-container, .framer-Db3Nj .framer-1439set-container { height: auto; } .framer-Db3Nj .framer-8inncb, .framer-Db3Nj .framer-i7fbk4 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 42px; padding: 12px 16px 12px 16px; width: 100%; } .framer-Db3Nj .framer-762s0f { height: var(--framer-aspect-ratio-supported, 289px); left: unset; right: -148px; top: 54%; transform: translateY(-50%); width: 289px; } .framer-Db3Nj .framer-kuj8xu { gap: 24px; padding: 48px 16px 48px 16px; } .framer-Db3Nj .framer-5nwv9q { order: 0; } .framer-Db3Nj .framer-mflo4p { gap: 16px; order: 1; } .framer-Db3Nj .framer-x3gy7u-container { height: var(--framer-aspect-ratio-supported, 195px); } .framer-Db3Nj .framer-qgerbj { gap: 16px; grid-template-columns: repeat(1, minmax(200px, 1fr)); order: 2; } .framer-Db3Nj .framer-1xnxcpu { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 42px; order: 3; padding: 12px 16px 12px 16px; width: 100%; } .framer-Db3Nj .framer-6a75rm { height: var(--framer-aspect-ratio-supported, 183px); left: -2%; top: 59%; width: 183px; } .framer-Db3Nj .framer-hp01a { gap: 24px; padding: 48px 0px 48px 0px; } .framer-Db3Nj .framer-1vvzzl5 { gap: 8px; } .framer-Db3Nj .framer-1ysiphr { height: var(--framer-aspect-ratio-supported, 200px); left: 117%; top: 17%; width: 200px; } .framer-Db3Nj .framer-1hmh5em { padding: 16px; } .framer-Db3Nj .framer-1n5gj04 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; padding: 36px 20px 36px 20px; } .framer-Db3Nj .framer-1th5li { gap: 18px; } .framer-Db3Nj .framer-1ddhapn { bottom: -124px; height: var(--framer-aspect-ratio-supported, 249px); left: 51%; width: 249px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Db3Nj .framer-1xmwygt, .framer-Db3Nj .framer-1yxnmvw, .framer-Db3Nj .framer-cv2ej1, .framer-Db3Nj .framer-4xkimh, .framer-Db3Nj .framer-1ncq72u, .framer-Db3Nj .framer-n3mico, .framer-Db3Nj .framer-kuj8xu, .framer-Db3Nj .framer-mflo4p, .framer-Db3Nj .framer-qgerbj, .framer-Db3Nj .framer-hp01a, .framer-Db3Nj .framer-1vvzzl5, .framer-Db3Nj .framer-1th5li { gap: 0px; } .framer-Db3Nj .framer-1xmwygt > *, .framer-Db3Nj .framer-1yxnmvw > *, .framer-Db3Nj .framer-4xkimh > *, .framer-Db3Nj .framer-kuj8xu > *, .framer-Db3Nj .framer-hp01a > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Db3Nj .framer-1xmwygt > :first-child, .framer-Db3Nj .framer-1yxnmvw > :first-child, .framer-Db3Nj .framer-cv2ej1 > :first-child, .framer-Db3Nj .framer-4xkimh > :first-child, .framer-Db3Nj .framer-1ncq72u > :first-child, .framer-Db3Nj .framer-kuj8xu > :first-child, .framer-Db3Nj .framer-hp01a > :first-child, .framer-Db3Nj .framer-1vvzzl5 > :first-child, .framer-Db3Nj .framer-1th5li > :first-child { margin-top: 0px; } .framer-Db3Nj .framer-1xmwygt > :last-child, .framer-Db3Nj .framer-1yxnmvw > :last-child, .framer-Db3Nj .framer-cv2ej1 > :last-child, .framer-Db3Nj .framer-4xkimh > :last-child, .framer-Db3Nj .framer-1ncq72u > :last-child, .framer-Db3Nj .framer-kuj8xu > :last-child, .framer-Db3Nj .framer-hp01a > :last-child, .framer-Db3Nj .framer-1vvzzl5 > :last-child, .framer-Db3Nj .framer-1th5li > :last-child { margin-bottom: 0px; } .framer-Db3Nj .framer-cv2ej1 > *, .framer-Db3Nj .framer-1th5li > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-Db3Nj .framer-1ncq72u > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Db3Nj .framer-n3mico > *, .framer-Db3Nj .framer-n3mico > :first-child, .framer-Db3Nj .framer-n3mico > :last-child, .framer-Db3Nj .framer-qgerbj > *, .framer-Db3Nj .framer-qgerbj > :first-child, .framer-Db3Nj .framer-qgerbj > :last-child { margin: 0px; } .framer-Db3Nj .framer-mflo4p > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Db3Nj .framer-mflo4p > :first-child { margin-left: 0px; } .framer-Db3Nj .framer-mflo4p > :last-child { margin-right: 0px; } .framer-Db3Nj .framer-1vvzzl5 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}\",\"@media (max-width: 359px) { .framer-Db3Nj.framer-72rtr7 { width: 320px; } .framer-Db3Nj .framer-1nnk7t3-container { right: unset; width: 100%; } .framer-Db3Nj .framer-1xmwygt { flex-direction: column; height: 600px; } .framer-Db3Nj .framer-1p8nqzj-container { order: 1; } .framer-Db3Nj .framer-dpelsr { height: 1px; order: 0; padding: 48px; width: 100%; z-index: 1; } .framer-Db3Nj .framer-1lt8nap { white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; } .framer-Db3Nj .framer-1yxnmvw { flex-direction: column; } .framer-Db3Nj .framer-c6n0dd { flex: none; height: min-content; order: 1; padding: 48px 24px 48px 24px; width: 100%; } .framer-Db3Nj .framer-cv2ej1 { flex-direction: column; gap: 18px; justify-content: flex-start; } .framer-Db3Nj .framer-1efbpt1 { flex: none; width: 100%; } .framer-Db3Nj .framer-9h2ybf { --framer-paragraph-spacing: 12px; flex: none; width: 100%; } .framer-Db3Nj .framer-4xkimh { gap: 24px; padding: 48px 24px 48px 24px; } .framer-Db3Nj .framer-1ncq72u { gap: 16px; } .framer-Db3Nj .framer-1j39rp7, .framer-Db3Nj .framer-1s6uhiv, .framer-Db3Nj .framer-1saahjg { width: 100%; } .framer-Db3Nj .framer-yv591o, .framer-Db3Nj .framer-1ort5ws { width: 90%; } .framer-Db3Nj .framer-n3mico { gap: 12px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); } .framer-Db3Nj .framer-1yrl1qy-container { height: auto; width: 100%; } .framer-Db3Nj .framer-1tbp3hi-container, .framer-Db3Nj .framer-1439set-container { height: auto; } .framer-Db3Nj .framer-8inncb, .framer-Db3Nj .framer-i7fbk4 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 42px; padding: 12px 16px 12px 16px; width: 100%; } .framer-Db3Nj .framer-762s0f { height: var(--framer-aspect-ratio-supported, 289px); left: unset; right: -148px; top: 54%; transform: translateY(-50%); width: 289px; } .framer-Db3Nj .framer-kuj8xu { gap: 24px; padding: 48px 16px 48px 16px; } .framer-Db3Nj .framer-5nwv9q { order: 0; } .framer-Db3Nj .framer-mflo4p { gap: 16px; order: 1; } .framer-Db3Nj .framer-x3gy7u-container { height: var(--framer-aspect-ratio-supported, 172px); } .framer-Db3Nj .framer-qgerbj { gap: 16px; grid-template-columns: repeat(1, minmax(200px, 1fr)); order: 2; } .framer-Db3Nj .framer-1xnxcpu { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 42px; order: 3; padding: 12px 16px 12px 16px; width: 100%; } .framer-Db3Nj .framer-6a75rm { height: var(--framer-aspect-ratio-supported, 183px); left: -2%; top: 59%; width: 183px; } .framer-Db3Nj .framer-hp01a { gap: 24px; padding: 48px 0px 48px 0px; } .framer-Db3Nj .framer-1vvzzl5 { gap: 8px; } .framer-Db3Nj .framer-1ysiphr { height: var(--framer-aspect-ratio-supported, 200px); left: 117%; top: 17%; width: 200px; } .framer-Db3Nj .framer-1hmh5em { padding: 16px; } .framer-Db3Nj .framer-1n5gj04 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; padding: 36px 20px 36px 20px; } .framer-Db3Nj .framer-1di0025 { gap: 10px; } .framer-Db3Nj .framer-1th5li { gap: 18px; } .framer-Db3Nj .framer-1ddhapn { bottom: -124px; height: var(--framer-aspect-ratio-supported, 249px); left: 51%; width: 249px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Db3Nj .framer-1xmwygt, .framer-Db3Nj .framer-1yxnmvw, .framer-Db3Nj .framer-cv2ej1, .framer-Db3Nj .framer-4xkimh, .framer-Db3Nj .framer-1ncq72u, .framer-Db3Nj .framer-n3mico, .framer-Db3Nj .framer-kuj8xu, .framer-Db3Nj .framer-mflo4p, .framer-Db3Nj .framer-qgerbj, .framer-Db3Nj .framer-hp01a, .framer-Db3Nj .framer-1vvzzl5, .framer-Db3Nj .framer-1di0025, .framer-Db3Nj .framer-1th5li { gap: 0px; } .framer-Db3Nj .framer-1xmwygt > *, .framer-Db3Nj .framer-1yxnmvw > *, .framer-Db3Nj .framer-4xkimh > *, .framer-Db3Nj .framer-kuj8xu > *, .framer-Db3Nj .framer-hp01a > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Db3Nj .framer-1xmwygt > :first-child, .framer-Db3Nj .framer-1yxnmvw > :first-child, .framer-Db3Nj .framer-cv2ej1 > :first-child, .framer-Db3Nj .framer-4xkimh > :first-child, .framer-Db3Nj .framer-1ncq72u > :first-child, .framer-Db3Nj .framer-kuj8xu > :first-child, .framer-Db3Nj .framer-hp01a > :first-child, .framer-Db3Nj .framer-1vvzzl5 > :first-child, .framer-Db3Nj .framer-1di0025 > :first-child, .framer-Db3Nj .framer-1th5li > :first-child { margin-top: 0px; } .framer-Db3Nj .framer-1xmwygt > :last-child, .framer-Db3Nj .framer-1yxnmvw > :last-child, .framer-Db3Nj .framer-cv2ej1 > :last-child, .framer-Db3Nj .framer-4xkimh > :last-child, .framer-Db3Nj .framer-1ncq72u > :last-child, .framer-Db3Nj .framer-kuj8xu > :last-child, .framer-Db3Nj .framer-hp01a > :last-child, .framer-Db3Nj .framer-1vvzzl5 > :last-child, .framer-Db3Nj .framer-1di0025 > :last-child, .framer-Db3Nj .framer-1th5li > :last-child { margin-bottom: 0px; } .framer-Db3Nj .framer-cv2ej1 > *, .framer-Db3Nj .framer-1th5li > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-Db3Nj .framer-1ncq72u > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Db3Nj .framer-n3mico > *, .framer-Db3Nj .framer-n3mico > :first-child, .framer-Db3Nj .framer-n3mico > :last-child, .framer-Db3Nj .framer-qgerbj > *, .framer-Db3Nj .framer-qgerbj > :first-child, .framer-Db3Nj .framer-qgerbj > :last-child { margin: 0px; } .framer-Db3Nj .framer-mflo4p > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Db3Nj .framer-mflo4p > :first-child { margin-left: 0px; } .framer-Db3Nj .framer-mflo4p > :last-child { margin-right: 0px; } .framer-Db3Nj .framer-1vvzzl5 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Db3Nj .framer-1di0025 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5916\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nAvEYXsER\":{\"layout\":[\"fixed\",\"auto\"]},\"GAJgexxas\":{\"layout\":[\"fixed\",\"auto\"]},\"HqMDJKKRg\":{\"layout\":[\"fixed\",\"auto\"]},\"dOgMC7ira\":{\"layout\":[\"fixed\",\"auto\"]},\"eUeCSBvr3\":{\"layout\":[\"fixed\",\"auto\"]},\"j7STljgSo\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"yFH_JF2Al\":{\"pattern\":\":yFH_JF2Al\",\"name\":\"hero\"},\"nyV0wDc43\":{\"pattern\":\":nyV0wDc43\",\"name\":\"about\"},\"CEdKhH7g3\":{\"pattern\":\":CEdKhH7g3\",\"name\":\"proses\"},\"dgQad88lI\":{\"pattern\":\":dgQad88lI\",\"name\":\"works\"},\"YvvKiWa5l\":{\"pattern\":\":YvvKiWa5l\",\"name\":\"lazyload\"},\"J1dFmcPpz\":{\"pattern\":\":J1dFmcPpz\",\"name\":\"client\"},\"jBfdMqwmf\":{\"pattern\":\":jBfdMqwmf\",\"name\":\"cta\"},\"e0_rk208f\":{\"pattern\":\":e0_rk208f\",\"name\":\"contact\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Db3Nj\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5916,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Kapital Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/YzbVGkG3gG0V2fcCz69oRjM73Gk.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{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/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{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/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...HeaderFonts,...VideoFonts,...CardProsesFonts,...EmbedFonts,...VideoYoutubeFonts,...TickerFonts,...PhosphorFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"yFH_JF2Al\\\":{\\\"pattern\\\":\\\":yFH_JF2Al\\\",\\\"name\\\":\\\"hero\\\"},\\\"nyV0wDc43\\\":{\\\"pattern\\\":\\\":nyV0wDc43\\\",\\\"name\\\":\\\"about\\\"},\\\"CEdKhH7g3\\\":{\\\"pattern\\\":\\\":CEdKhH7g3\\\",\\\"name\\\":\\\"proses\\\"},\\\"dgQad88lI\\\":{\\\"pattern\\\":\\\":dgQad88lI\\\",\\\"name\\\":\\\"works\\\"},\\\"YvvKiWa5l\\\":{\\\"pattern\\\":\\\":YvvKiWa5l\\\",\\\"name\\\":\\\"lazyload\\\"},\\\"J1dFmcPpz\\\":{\\\"pattern\\\":\\\":J1dFmcPpz\\\",\\\"name\\\":\\\"client\\\"},\\\"jBfdMqwmf\\\":{\\\"pattern\\\":\\\":jBfdMqwmf\\\",\\\"name\\\":\\\"cta\\\"},\\\"e0_rk208f\\\":{\\\"pattern\\\":\\\":e0_rk208f\\\",\\\"name\\\":\\\"contact\\\"}}\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"5916\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nAvEYXsER\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GAJgexxas\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HqMDJKKRg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dOgMC7ira\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eUeCSBvr3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j7STljgSo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"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", "l", "cubicBezier", "__rest", "e", "t", "r", "o", "n", "e", "t", "r", "n", "calcGeneratorVelocity", "t", "s", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "noopReturn", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "Embed", "type", "url", "html", "zoom", "radius", "border", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "PhosphorFonts", "getFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "PhosphorControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "radiusForCorner", "cornerIndex", "segments", "animation", "transition1", "animation1", "transition2", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "fontSize", "fontSize2", "gap", "height", "icon", "id", "image", "padding", "radius", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "U8wvC3Anl", "YJIOmmIUT", "PYrbGDwmm", "ihmoCODti", "NKqw71Kw4", "bbsnjP2f7", "tegl3fd65", "VWAysJHu1", "wvJtBtBrH", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerjWjjV3OZG", "withCSS", "jWjjV3OZG_default", "addPropertyControls", "ControlType", "addFonts", "HeaderFonts", "getFonts", "cCV63SBtp_default", "HeaderWithVariantAppearEffect", "withVariantAppearEffect", "VideoFonts", "Video", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "CardProsesFonts", "jWjjV3OZG_default", "ContainerWithFX", "withFX", "Container", "EmbedFonts", "Embed", "VideoYoutubeFonts", "kIUnu4ptp_default", "TickerFonts", "Ticker", "MotionDivWithFX", "motion", "PhosphorFonts", "Icon", "FooterFonts", "yE2PRo3aj_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "textEffect", "addImageAlt", "image", "alt", "transition3", "animation3", "animation4", "transition4", "animation5", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "ref2", "elementId1", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "isDisplayed", "isDisplayed1", "elementId6", "ref7", "isDisplayed2", "elementId7", "ref8", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "Link", "Image2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
