{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.13.1/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js", "ssg:https://framerusercontent.com/modules/eceq7ZseltPWzWVo7XBr/Mto4LigYjDSOjdQmgeOR/En_fsM4kI.js", "ssg:https://framerusercontent.com/modules/eNg2YFqC03ZDECKgFJgQ/J1TxSkUoYCK3pkSt68F9/fJI_rayKb.js", "ssg:https://framerusercontent.com/modules/hql1WrpyA41K8MGo3uNE/QXWAUziuLp6zL4FSo8aY/fpesxMIGq.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/7NqHJHRwGJKPr4gYnAGm/SlideShow.js", "ssg:https://framerusercontent.com/modules/avLCgOwNRhbu8zfmfv3U/GaPkaAKhjZAj2PkDFz9D/LDKyoiX70.js", "ssg:https://framerusercontent.com/modules/rFAzzQRqJZaHOn7meskM/y5VScw7lCkIF3cwrbTmT/rSsf4Xx_y.js", "ssg:https://framerusercontent.com/modules/RTlklsGzplQ0ZrSRRRNI/vZqSZbuLemiFHB90BNzP/hQuYMKCrQ.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,progress as o,isFunction as i,defaults as s,isCubicBezier as r,isEasingGenerator as a,isEasingList as c,isNumber as l,time as f,noop as u,removeItem as d,mix as g,getEasingForSegment as m,isString as h,defaultOffset as p,fillOffset as v,velocityPerSecond as y,interpolate as w}from\"@motionone/utils\";import{Animation as E,getEasingFunction as b}from\"@motionone/animation\";import{__rest as S}from\"tslib\";import{invariant as A}from\"hey-listen\";import{pregenerateKeyframes as O,calcGeneratorVelocity as x,spring as V,glide as z}from\"@motionone/generators\";const W=new WeakMap;function getAnimationData(e){W.has(e)||W.set(e,{transforms:[],values:new Map});return W.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const L=[\"\",\"X\",\"Y\",\"Z\"];const T=[\"translate\",\"scale\",\"rotate\",\"skew\"];const D={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const M={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const k={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:M,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:M};const B=new Map;const asTransformCssVar=e=>`--motion-${e}`;const j=[\"x\",\"y\",\"z\"];T.forEach((e=>{L.forEach((t=>{j.push(e+t);B.set(asTransformCssVar(e+t),k[e])}))}));const compareTransformOrder=(e,t)=>j.indexOf(e)-j.indexOf(t);const P=new Set(j);const isTransform=e=>P.has(e);const addTransformToElement=(e,t)=>{D[t]&&(t=D[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 $=new Set;function registerCssVariable(e){if(!$.has(e)){$.add(e);try{const{syntax:t,initialValue:n}=B.has(e)?B.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const testAnimation=(e,t)=>document.createElement(\"div\").animate(e,t);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]},{duration:.001}).finished),linearEasing:()=>{try{testAnimation({opacity:0},{easing:\"linear(0, 1)\"})}catch(e){return false}return true}};const R={};const H={};for(const e in C)H[e]=()=>{void 0===R[e]&&(R[e]=C[e]());return R[e]};const I=.015;const generateLinearEasingPoints=(e,t)=>{let n=\"\";const i=Math.round(t/I);for(let t=0;t<i;t++)n+=e(o(0,i-1,t))+\", \";return n.substring(0,n.length-2)};const convertEasing=(e,t)=>i(e)?H.linearEasing()?`linear(${generateLinearEasingPoints(e,t)})`:s.easing:r(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;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){D[e]&&(e=D[e]);return isTransform(e)?asTransformCssVar(e):e}const N={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=B.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 r=getDevToolsRecord();const d=false!==o.record&&r;let g;let{duration:m=s.duration,delay:h=s.delay,endDelay:p=s.endDelay,repeat:v=s.repeat,easing:y=s.easing,direction:w,offset:b,allowWebkitAcceleration:S=false}=o;const A=getAnimationData(e);const O=isTransform(t);let x=H.waapi();O&&addTransformToElement(e,t);const V=getStyleName(t);const z=getMotionValue(A.values,V);const W=B.get(V);stopAnimation(z.animation,!(a(y)&&z.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=N.get(e,V))&&void 0!==t?t:null===W||void 0===W?void 0:W.initialValue)&&void 0!==n?n:0};let s=hydrateKeyframes(keyframesList(n),readInitialValue);if(a(y)){const e=y.createAnimation(s,readInitialValue,O,V,z);y=e.easing;void 0!==e.keyframes&&(s=e.keyframes);void 0!==e.duration&&(m=e.duration)}isCssVar(V)&&(H.cssRegisterProperty()?registerCssVariable(V):x=false);O&&!H.linearEasing()&&(i(y)||c(y)&&y.some(i))&&(x=false);if(x){W&&(s=s.map((e=>l(e)?W.toDefaultUnit(e):e)));1!==s.length||H.partialKeyframes()&&!d||s.unshift(readInitialValue());const t={delay:f.ms(h),duration:f.ms(m),endDelay:f.ms(p),easing:c(y)?void 0:convertEasing(y,m),direction:w,iterations:v+1,fill:\"both\"};g=e.animate({[V]:s,offset:b,easing:c(y)?y.map((e=>convertEasing(e,m))):void 0},t);g.finished||(g.finished=new Promise(((e,t)=>{g.onfinish=e;g.oncancel=t})));const n=s[s.length-1];g.finished.then((()=>{N.set(e,V,n);g.cancel()})).catch(u);S||(g.playbackRate=1.000001)}else if(O){s=s.map((e=>\"string\"===typeof e?parseFloat(e):e));1===s.length&&s.unshift(parseFloat(readInitialValue()));const render=t=>{W&&(t=W.toDefaultUnit(t));N.set(e,V,t)};g=new E(render,s,Object.assign(Object.assign({},o),{duration:m,easing:y}))}else{const t=s[s.length-1];N.set(e,V,W&&l(t)?W.toDefaultUnit(t):t)}d&&r(e,t,s,{duration:m,delay:h,easing:y,repeat:v,offset:b},\"motion-one\");z.setAnimation(g);return g}}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=s.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},F);const getActiveAnimation=e=>e.animations[0];const F={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return f.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(u));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=f.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 r=l(n)?n:getFromIndex(n,s);const a=Math.abs(r-i);let c=e*a;if(o){const t=s*e;const n=b(o);c=n(c/t)*t}return t+c}}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 i(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 l(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){d(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:g(i,s,o[r]),easing:m(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,i=S(t,[\"defaultOptions\"]);const r=[];const c=new Map;const l={};const f=new Map;let u=0;let d=0;let g=0;for(let t=0;t<e.length;t++){const o=e[t];if(h(o)){f.set(o,d);continue}if(!Array.isArray(o)){f.set(o.name,calcNextTime(d,o.at,u,f));continue}const[i,r,m={}]=o;void 0!==m.at&&(d=calcNextTime(d,m.at,u,f));let y=0;const w=resolveElements(i,l);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,c);for(const t in r){const i=getValueSequence(t,o);let c=keyframesList(r[t]);const l=getOptions(m,t);let{duration:f=n.duration||s.duration,easing:u=n.easing||s.easing}=l;if(a(u)){const e=isTransform(t);A(2===c.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=u.createAnimation(c,(()=>\"0\"),e);u=n.easing;void 0!==n.keyframes&&(c=n.keyframes);void 0!==n.duration&&(f=n.duration)}const h=resolveOption(m.delay,e,E)||0;const w=d+h;const b=w+f;let{offset:S=p(c.length)}=l;1===S.length&&0===S[0]&&(S[1]=1);const O=length-c.length;O>0&&v(S,O);1===c.length&&c.unshift(null);addKeyframes(i,c,u,S,w,b);y=Math.max(h+f,y);g=Math.max(b,g)}}u=d;d+=y}c.forEach(((e,t)=>{for(const a in e){const c=e[a];c.sort(compareByTime);const l=[];const f=[];const u=[];for(let e=0;e<c.length;e++){const{at:t,value:n,easing:i}=c[e];l.push(n);f.push(o(0,g,t));u.push(i||s.easing)}if(0!==f[0]){f.unshift(0);l.unshift(l[0]);u.unshift(\"linear\")}if(1!==f[f.length-1]){f.push(1);l.push(null)}r.push([t,a,l,Object.assign(Object.assign(Object.assign({},n),{duration:g,easing:u,offset:f}),i)])}}));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,O(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=x((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 U=createGeneratorEasing(V);const q=createGeneratorEasing(z);const K={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:s=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const r=resolveElements(e);const a=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=a.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);i(n)?a.set(e.target,n):c.unobserve(e.target)}else if(n){n(e);a.delete(e.target)}}))};const c=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof s?s:K[s]});r.forEach((e=>c.observe(e)));return()=>c.disconnect()}const G=new WeakMap;let _;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=G.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&&(_=new ResizeObserver(notifyAll))}function resizeElement(e,t){_||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=G.get(e);if(!n){n=new Set;G.set(e,n)}n.add(t);null===_||void 0===_?void 0:_.observe(e)}));return()=>{n.forEach((e=>{const n=G.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===_||void 0===_?void 0:_.unobserve(e))}))}}const Z=new Set;let X;function createWindowResizeHandler(){X=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};Z.forEach((e=>e(t)))};window.addEventListener(\"resize\",X)}function resizeWindow(e){Z.add(e);X||createWindowResizeHandler();return()=>{Z.delete(e);!Z.size&&X&&(X=void 0)}}function resize(e,t){return i(e)?resizeWindow(e):resizeElement(e,t)}const Y=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 J={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,i){const s=n[t];const{length:r,position:a}=J[t];const c=s.current;const l=n.time;s.current=e[\"scroll\"+a];s.scrollLength=e[\"scroll\"+r]-e[\"client\"+r];s.offset.length=0;s.offset[0]=0;s.offset[1]=s.scrollLength;s.progress=o(0,s.scrollLength,s.current);const f=i-l;s.velocity=f>Y?0:y(s.current-c,f)}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 Q={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const ee={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==ee[e]&&(e=ee[e]);if(h(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}l(e)&&(o=t*e);return n+o}const te=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:te;let s=0;let r=0;if(l(e))i=[e,e];else if(h(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,ee[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);r=resolveEdge(i[1],t);return s-r}const ne={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Q.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ne;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=w(p(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 s=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:i(t)?()=>t(n):scrubAnimation(t,n[s])}}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 oe=new WeakMap;const ie=new WeakMap;const se=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=S(t,[\"container\"]);let i=se.get(n);if(!i){i=new Set;se.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!oe.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()};oe.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ie.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=oe.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=se.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=oe.get(n);oe.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ie.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 re;function processScheduledAnimations(){if(!re)return;const e=re.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);re=void 0}function scheduleAnimation(e){if(re)n(re,e);else{re=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){re&&d(re,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 ae={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=S(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 ce={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 le={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 fe={inView:ae,hover:ce,press:le};const ue=[\"initial\",\"animate\",...Object.keys(fe),\"exit\"];const de=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 ue)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)||{},l=S(c,[\"transition\"]);const f=Object.assign({},l);function*animateUpdates(){var t,o;const s=l;l={};const r={};for(const n of ue){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){l[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(l),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===l[e]&&(l[e]=f[e]);if(hasChanged(s[e],l[e])){null!==(t=f[e])&&void 0!==t?t:f[e]=N.get(n,e);c.push(animateStyle(n,e,l[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=l;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(u)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in fe){const o=fe[t].isActive(e);const i=s[t];if(o&&!i)s[t]=fe[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:()=>l,getOptions:()=>e,getContext:()=>r,mount:e=>{A(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;de.set(n,d);updateGestureSubscriptions();return()=>{de.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)){D[o]&&(o=D[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const r=B.get(o);r&&(s=l(i)?r.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{Q as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,q as glide,inView$1 as inView,de as mountedStates,resize,scroll,U as spring,stagger,N as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (b75150a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"UuobrtUQG\",\"iUPymxLut\",\"QM0nhRbE6\",\"r91iahmo0\"];const serializationHash=\"framer-6n3ri\";const variantClassNames={iUPymxLut:\"framer-v-hr9491\",QM0nhRbE6:\"framer-v-18brsu1\",r91iahmo0:\"framer-v-89h79y\",UuobrtUQG:\"framer-v-1f99ilo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={damping:30,delay:0,mass:1,stiffness:200,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"UuobrtUQG\",\"Variant 2\":\"iUPymxLut\",\"Variant 3\":\"QM0nhRbE6\",\"Variant 4\":\"r91iahmo0\"};const getProps=({height,id,textColor,title1,title2,title3,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,alrWq3yGr:(_ref=title3!==null&&title3!==void 0?title3:props.alrWq3yGr)!==null&&_ref!==void 0?_ref:\"Opportunity\",c_FQD8pO8:(_ref1=textColor!==null&&textColor!==void 0?textColor:props.c_FQD8pO8)!==null&&_ref1!==void 0?_ref1:\"rgb(255, 255, 255)\",prRJoYo14:(_ref2=title1!==null&&title1!==void 0?title1:props.prRJoYo14)!==null&&_ref2!==void 0?_ref2:\"Character\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"UuobrtUQG\",zLT7JXi3G:(_ref4=title2!==null&&title2!==void 0?title2:props.zLT7JXi3G)!==null&&_ref4!==void 0?_ref4:\"Cooperation\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,prRJoYo14,zLT7JXi3G,alrWq3yGr,c_FQD8pO8,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UuobrtUQG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear3yc0m1=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),750);});const onAppear1a2vbif=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),1500);});useOnVariantChange(baseVariant,{default:onAppear3yc0m1,iUPymxLut:onAppear1a2vbif,QM0nhRbE6:onAppear1a2vbif});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({iUPymxLut:{value:transition2},QM0nhRbE6:{value:transition2},r91iahmo0:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1f99ilo\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UuobrtUQG\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({iUPymxLut:{\"data-framer-name\":\"Variant 2\"},QM0nhRbE6:{\"data-framer-name\":\"Variant 3\"},r91iahmo0:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-c_FQD8pO8-En_fsM4kI))\",\"--framer-text-transform\":\"capitalize\"},children:\"Character\"})}),className:\"framer-11qim7m\",\"data-framer-name\":\"Text-1\",fonts:[\"CUSTOM;Zwizz SemiBold\"],layoutDependency:layoutDependency,layoutId:\"OeGgaAnQD\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-c_FQD8pO8-En_fsM4kI)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-En_fsM4kI\":c_FQD8pO8,opacity:1},text:prRJoYo14,variants:{iUPymxLut:{opacity:0},QM0nhRbE6:{opacity:0},r91iahmo0:{opacity:0}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-c_FQD8pO8-En_fsM4kI))\",\"--framer-text-transform\":\"capitalize\"},children:\"Cooperation\"})}),className:\"framer-ecqc9n\",\"data-framer-name\":\"Text-2\",fonts:[\"CUSTOM;Zwizz SemiBold\"],layoutDependency:layoutDependency,layoutId:\"xS_wLnEpQ\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-c_FQD8pO8-En_fsM4kI)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-En_fsM4kI\":c_FQD8pO8,opacity:0},text:zLT7JXi3G,variants:{iUPymxLut:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-c_FQD8pO8-En_fsM4kI))\",\"--framer-text-transform\":\"capitalize\"},children:\"Opportunity\"})}),className:\"framer-ncgzay\",\"data-framer-name\":\"Text-3\",fonts:[\"CUSTOM;Zwizz SemiBold\"],layoutDependency:layoutDependency,layoutId:\"T6jUkCdRR\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-c_FQD8pO8-En_fsM4kI)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-En_fsM4kI\":c_FQD8pO8,opacity:0},text:alrWq3yGr,variants:{QM0nhRbE6:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-c_FQD8pO8-En_fsM4kI))\",\"--framer-text-transform\":\"capitalize\"},children:\"Character\"})}),className:\"framer-kceb98\",\"data-framer-name\":\"Text-1 (2nd)\",fonts:[\"CUSTOM;Zwizz SemiBold\"],layoutDependency:layoutDependency,layoutId:\"yKDd7mhsm\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-c_FQD8pO8-En_fsM4kI)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-En_fsM4kI\":c_FQD8pO8,opacity:0},text:prRJoYo14,variants:{r91iahmo0:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6n3ri.framer-1lib6dh, .framer-6n3ri .framer-1lib6dh { display: block; }\",\".framer-6n3ri.framer-1f99ilo { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6n3ri .framer-11qim7m { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-6n3ri .framer-ecqc9n { bottom: -64px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; }\",\".framer-6n3ri .framer-ncgzay { bottom: -128px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; }\",\".framer-6n3ri .framer-kceb98 { bottom: -192px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6n3ri.framer-1f99ilo { gap: 0px; } .framer-6n3ri.framer-1f99ilo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-6n3ri.framer-1f99ilo > :first-child { margin-top: 0px; } .framer-6n3ri.framer-1f99ilo > :last-child { margin-bottom: 0px; } }\",\".framer-6n3ri.framer-v-hr9491 .framer-11qim7m { left: 0px; position: absolute; top: -64px; z-index: 1; }\",\".framer-6n3ri.framer-v-hr9491 .framer-ecqc9n, .framer-6n3ri.framer-v-18brsu1 .framer-ncgzay { bottom: unset; left: unset; position: relative; }\",\".framer-6n3ri.framer-v-hr9491 .framer-ncgzay, .framer-6n3ri.framer-v-18brsu1 .framer-kceb98 { bottom: -64px; }\",\".framer-6n3ri.framer-v-hr9491 .framer-kceb98 { bottom: -128px; }\",\".framer-6n3ri.framer-v-18brsu1 .framer-11qim7m { left: 0px; position: absolute; top: -128px; z-index: 1; }\",\".framer-6n3ri.framer-v-18brsu1 .framer-ecqc9n { bottom: unset; top: -64px; }\",\".framer-6n3ri.framer-v-89h79y .framer-11qim7m { left: 0px; order: 0; position: absolute; top: -192px; z-index: 1; }\",\".framer-6n3ri.framer-v-89h79y .framer-ecqc9n { bottom: unset; order: 2; top: -128px; }\",\".framer-6n3ri.framer-v-89h79y .framer-ncgzay { bottom: unset; order: 3; top: -64px; }\",\".framer-6n3ri.framer-v-89h79y .framer-kceb98 { bottom: unset; left: unset; order: 1; position: relative; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 174\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"iUPymxLut\":{\"layout\":[\"auto\",\"auto\"]},\"QM0nhRbE6\":{\"layout\":[\"auto\",\"auto\"]},\"r91iahmo0\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"prRJoYo14\":\"title1\",\"zLT7JXi3G\":\"title2\",\"alrWq3yGr\":\"title3\",\"c_FQD8pO8\":\"textColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEn_fsM4kI=withCSS(Component,css,\"framer-6n3ri\");export default FramerEn_fsM4kI;FramerEn_fsM4kI.displayName=\"Word Slide XS\";FramerEn_fsM4kI.defaultProps={height:48,width:174};addPropertyControls(FramerEn_fsM4kI,{variant:{options:[\"UuobrtUQG\",\"iUPymxLut\",\"QM0nhRbE6\",\"r91iahmo0\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},prRJoYo14:{defaultValue:\"Character\",displayTextArea:false,title:\"Title 1\",type:ControlType.String},zLT7JXi3G:{defaultValue:\"Cooperation\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},alrWq3yGr:{defaultValue:\"Opportunity\",displayTextArea:false,title:\"Title 3\",type:ControlType.String},c_FQD8pO8:{defaultValue:\"rgb(255, 255, 255)\",title:\"Text Color\",type:ControlType.Color}});addFonts(FramerEn_fsM4kI,[{explicitInter:true,fonts:[{family:\"Zwizz SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/SVfuzMtUmrQFA3Af2O9UKYKr5rM.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEn_fsM4kI\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"174\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"iUPymxLut\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QM0nhRbE6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"r91iahmo0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"prRJoYo14\\\":\\\"title1\\\",\\\"zLT7JXi3G\\\":\\\"title2\\\",\\\"alrWq3yGr\\\":\\\"title3\\\",\\\"c_FQD8pO8\\\":\\\"textColor\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"48\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./En_fsM4kI.map", "// Generated by Framer (3fa6aa4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"n4Hbo7WPf\",\"Wjs_Wy1pD\",\"nXW4Vz7mX\",\"K0t5Zx9IF\"];const serializationHash=\"framer-jsDEB\";const variantClassNames={K0t5Zx9IF:\"framer-v-4dtxm3\",n4Hbo7WPf:\"framer-v-14dd9zf\",nXW4Vz7mX:\"framer-v-s03h7w\",Wjs_Wy1pD:\"framer-v-1diqjhl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={damping:30,delay:0,mass:1,stiffness:200,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"n4Hbo7WPf\",\"Variant 2\":\"Wjs_Wy1pD\",\"Variant 3\":\"nXW4Vz7mX\",\"Variant 4\":\"K0t5Zx9IF\"};const getProps=({color,height,id,title1,title2,title3,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,alrWq3yGr:(_ref=title3!==null&&title3!==void 0?title3:props.alrWq3yGr)!==null&&_ref!==void 0?_ref:\"Opportunity\",JGRUpwhkI:(_ref1=color!==null&&color!==void 0?color:props.JGRUpwhkI)!==null&&_ref1!==void 0?_ref1:\"var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, rgb(255, 255, 255))\",prRJoYo14:(_ref2=title1!==null&&title1!==void 0?title1:props.prRJoYo14)!==null&&_ref2!==void 0?_ref2:\"Character\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"n4Hbo7WPf\",zLT7JXi3G:(_ref4=title2!==null&&title2!==void 0?title2:props.zLT7JXi3G)!==null&&_ref4!==void 0?_ref4:\"Cooperation\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,prRJoYo14,zLT7JXi3G,alrWq3yGr,JGRUpwhkI,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"n4Hbo7WPf\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear3yc0m1=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),750);});const onAppear1a2vbif=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),1500);});useOnVariantChange(baseVariant,{default:onAppear3yc0m1,nXW4Vz7mX:onAppear1a2vbif,Wjs_Wy1pD:onAppear1a2vbif});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({K0t5Zx9IF:{value:transition2},nXW4Vz7mX:{value:transition2},Wjs_Wy1pD:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-14dd9zf\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"n4Hbo7WPf\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({K0t5Zx9IF:{\"data-framer-name\":\"Variant 4\"},nXW4Vz7mX:{\"data-framer-name\":\"Variant 3\"},Wjs_Wy1pD:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--variable-reference-JGRUpwhkI-fJI_rayKb))\",\"--framer-text-transform\":\"capitalize\"},children:\"Character\"})}),className:\"framer-vmxpq0\",\"data-framer-name\":\"Text-1\",fonts:[\"CUSTOM;Zwizz SemiBold\"],layoutDependency:layoutDependency,layoutId:\"tZeZDrmQV\",style:{\"--extracted-1of0zx5\":\"var(--variable-reference-JGRUpwhkI-fJI_rayKb)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-JGRUpwhkI-fJI_rayKb\":JGRUpwhkI,opacity:1},text:prRJoYo14,variants:{K0t5Zx9IF:{opacity:0},nXW4Vz7mX:{opacity:0},Wjs_Wy1pD:{opacity:0}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--variable-reference-JGRUpwhkI-fJI_rayKb))\",\"--framer-text-transform\":\"capitalize\"},children:\"Cooperation\"})}),className:\"framer-obi4u6\",\"data-framer-name\":\"Text-2\",fonts:[\"CUSTOM;Zwizz SemiBold\"],layoutDependency:layoutDependency,layoutId:\"g58RT2dCo\",style:{\"--extracted-1of0zx5\":\"var(--variable-reference-JGRUpwhkI-fJI_rayKb)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-JGRUpwhkI-fJI_rayKb\":JGRUpwhkI,opacity:0},text:zLT7JXi3G,variants:{Wjs_Wy1pD:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--variable-reference-JGRUpwhkI-fJI_rayKb))\",\"--framer-text-transform\":\"capitalize\"},children:\"Opportunity\"})}),className:\"framer-1i6voxg\",\"data-framer-name\":\"Text-3\",fonts:[\"CUSTOM;Zwizz SemiBold\"],layoutDependency:layoutDependency,layoutId:\"whjOsE8OB\",style:{\"--extracted-1of0zx5\":\"var(--variable-reference-JGRUpwhkI-fJI_rayKb)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-JGRUpwhkI-fJI_rayKb\":JGRUpwhkI,opacity:0},text:alrWq3yGr,variants:{nXW4Vz7mX:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--variable-reference-JGRUpwhkI-fJI_rayKb))\",\"--framer-text-transform\":\"capitalize\"},children:\"Character\"})}),className:\"framer-f3dng6\",\"data-framer-name\":\"Text-1 (2nd)\",fonts:[\"CUSTOM;Zwizz SemiBold\"],layoutDependency:layoutDependency,layoutId:\"c9vLFu_ML\",style:{\"--extracted-1of0zx5\":\"var(--variable-reference-JGRUpwhkI-fJI_rayKb)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-JGRUpwhkI-fJI_rayKb\":JGRUpwhkI,opacity:0},text:prRJoYo14,variants:{K0t5Zx9IF:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jsDEB.framer-bfzbc3, .framer-jsDEB .framer-bfzbc3 { display: block; }\",\".framer-jsDEB.framer-14dd9zf { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jsDEB .framer-vmxpq0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jsDEB .framer-obi4u6 { bottom: -64px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; }\",\".framer-jsDEB .framer-1i6voxg { bottom: -128px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; }\",\".framer-jsDEB .framer-f3dng6 { bottom: -192px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jsDEB.framer-14dd9zf { gap: 0px; } .framer-jsDEB.framer-14dd9zf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jsDEB.framer-14dd9zf > :first-child { margin-top: 0px; } .framer-jsDEB.framer-14dd9zf > :last-child { margin-bottom: 0px; } }\",\".framer-jsDEB.framer-v-1diqjhl .framer-vmxpq0 { left: 0px; position: absolute; top: -64px; z-index: 1; }\",\".framer-jsDEB.framer-v-1diqjhl .framer-obi4u6, .framer-jsDEB.framer-v-s03h7w .framer-1i6voxg { bottom: unset; left: unset; position: relative; }\",\".framer-jsDEB.framer-v-1diqjhl .framer-1i6voxg, .framer-jsDEB.framer-v-s03h7w .framer-f3dng6 { bottom: -64px; }\",\".framer-jsDEB.framer-v-1diqjhl .framer-f3dng6 { bottom: -128px; }\",\".framer-jsDEB.framer-v-s03h7w .framer-vmxpq0 { left: 0px; position: absolute; top: -128px; z-index: 1; }\",\".framer-jsDEB.framer-v-s03h7w .framer-obi4u6 { bottom: unset; top: -64px; }\",\".framer-jsDEB.framer-v-4dtxm3 .framer-vmxpq0 { left: 0px; order: 0; position: absolute; top: -192px; z-index: 1; }\",\".framer-jsDEB.framer-v-4dtxm3 .framer-obi4u6 { bottom: unset; order: 2; top: -128px; }\",\".framer-jsDEB.framer-v-4dtxm3 .framer-1i6voxg { bottom: unset; order: 3; top: -64px; }\",\".framer-jsDEB.framer-v-4dtxm3 .framer-f3dng6 { bottom: unset; left: unset; order: 1; position: relative; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 65\n * @framerIntrinsicWidth 235\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Wjs_Wy1pD\":{\"layout\":[\"auto\",\"auto\"]},\"nXW4Vz7mX\":{\"layout\":[\"auto\",\"auto\"]},\"K0t5Zx9IF\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"prRJoYo14\":\"title1\",\"zLT7JXi3G\":\"title2\",\"alrWq3yGr\":\"title3\",\"JGRUpwhkI\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfJI_rayKb=withCSS(Component,css,\"framer-jsDEB\");export default FramerfJI_rayKb;FramerfJI_rayKb.displayName=\"Word Slide LG\";FramerfJI_rayKb.defaultProps={height:65,width:235};addPropertyControls(FramerfJI_rayKb,{variant:{options:[\"n4Hbo7WPf\",\"Wjs_Wy1pD\",\"nXW4Vz7mX\",\"K0t5Zx9IF\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},prRJoYo14:{defaultValue:\"Character\",displayTextArea:false,title:\"Title 1\",type:ControlType.String},zLT7JXi3G:{defaultValue:\"Cooperation\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},alrWq3yGr:{defaultValue:\"Opportunity\",displayTextArea:false,title:\"Title 3\",type:ControlType.String},JGRUpwhkI:{defaultValue:\"var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, rgb(255, 255, 255))\",title:\"Color\",type:ControlType.Color}});addFonts(FramerfJI_rayKb,[{explicitInter:true,fonts:[{family:\"Zwizz SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/SVfuzMtUmrQFA3Af2O9UKYKr5rM.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfJI_rayKb\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"235\",\"framerIntrinsicHeight\":\"65\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Wjs_Wy1pD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nXW4Vz7mX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"K0t5Zx9IF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"prRJoYo14\\\":\\\"title1\\\",\\\"zLT7JXi3G\\\":\\\"title2\\\",\\\"alrWq3yGr\\\":\\\"title3\\\",\\\"JGRUpwhkI\\\":\\\"color\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fJI_rayKb.map", "// Generated by Framer (b75150a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"spq_oQfaz\",\"s47lrUlvF\",\"hOJwKKC9i\",\"EKdqpJ67M\"];const serializationHash=\"framer-J9ia1\";const variantClassNames={EKdqpJ67M:\"framer-v-ftkhq9\",hOJwKKC9i:\"framer-v-jmcqko\",s47lrUlvF:\"framer-v-1x53131\",spq_oQfaz:\"framer-v-1x4q70p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={damping:30,delay:0,mass:1,stiffness:200,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"spq_oQfaz\",\"Variant 2\":\"s47lrUlvF\",\"Variant 3\":\"hOJwKKC9i\",\"Variant 4\":\"EKdqpJ67M\"};const getProps=({height,id,textColor,title1,title2,title3,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,alrWq3yGr:(_ref=title3!==null&&title3!==void 0?title3:props.alrWq3yGr)!==null&&_ref!==void 0?_ref:\"Opportunity\",c_FQD8pO8:(_ref1=textColor!==null&&textColor!==void 0?textColor:props.c_FQD8pO8)!==null&&_ref1!==void 0?_ref1:\"rgb(255, 255, 255)\",prRJoYo14:(_ref2=title1!==null&&title1!==void 0?title1:props.prRJoYo14)!==null&&_ref2!==void 0?_ref2:\"Character\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"spq_oQfaz\",zLT7JXi3G:(_ref4=title2!==null&&title2!==void 0?title2:props.zLT7JXi3G)!==null&&_ref4!==void 0?_ref4:\"Cooperation\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,prRJoYo14,zLT7JXi3G,alrWq3yGr,c_FQD8pO8,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"spq_oQfaz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear3yc0m1=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),750);});const onAppear1a2vbif=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),1500);});useOnVariantChange(baseVariant,{default:onAppear3yc0m1,hOJwKKC9i:onAppear1a2vbif,s47lrUlvF:onAppear1a2vbif});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({EKdqpJ67M:{value:transition2},hOJwKKC9i:{value:transition2},s47lrUlvF:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1x4q70p\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"spq_oQfaz\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({EKdqpJ67M:{\"data-framer-name\":\"Variant 4\"},hOJwKKC9i:{\"data-framer-name\":\"Variant 3\"},s47lrUlvF:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-c_FQD8pO8-fpesxMIGq))\",\"--framer-text-transform\":\"capitalize\"},children:\"Character\"})}),className:\"framer-1skazsj\",\"data-framer-name\":\"Text-1\",fonts:[\"CUSTOM;Zwizz SemiBold\"],layoutDependency:layoutDependency,layoutId:\"uNpdS1B_a\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-c_FQD8pO8-fpesxMIGq)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-fpesxMIGq\":c_FQD8pO8,opacity:1},text:prRJoYo14,variants:{EKdqpJ67M:{opacity:0},hOJwKKC9i:{opacity:0},s47lrUlvF:{opacity:0}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-c_FQD8pO8-fpesxMIGq))\",\"--framer-text-transform\":\"capitalize\"},children:\"Cooperation\"})}),className:\"framer-e1ic6n\",\"data-framer-name\":\"Text-2\",fonts:[\"CUSTOM;Zwizz SemiBold\"],layoutDependency:layoutDependency,layoutId:\"bRu5Qd0W_\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-c_FQD8pO8-fpesxMIGq)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-fpesxMIGq\":c_FQD8pO8,opacity:0},text:zLT7JXi3G,variants:{s47lrUlvF:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-c_FQD8pO8-fpesxMIGq))\",\"--framer-text-transform\":\"capitalize\"},children:\"Opportunity\"})}),className:\"framer-wkajow\",\"data-framer-name\":\"Text-3\",fonts:[\"CUSTOM;Zwizz SemiBold\"],layoutDependency:layoutDependency,layoutId:\"SZYYCpqzO\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-c_FQD8pO8-fpesxMIGq)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-fpesxMIGq\":c_FQD8pO8,opacity:0},text:alrWq3yGr,variants:{hOJwKKC9i:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-c_FQD8pO8-fpesxMIGq))\",\"--framer-text-transform\":\"capitalize\"},children:\"Character\"})}),className:\"framer-1d4mfzw\",\"data-framer-name\":\"Text-1 (2nd)\",fonts:[\"CUSTOM;Zwizz SemiBold\"],layoutDependency:layoutDependency,layoutId:\"QnTzeRoYB\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-c_FQD8pO8-fpesxMIGq)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-fpesxMIGq\":c_FQD8pO8,opacity:0},text:prRJoYo14,variants:{EKdqpJ67M:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-J9ia1.framer-1aljxi3, .framer-J9ia1 .framer-1aljxi3 { display: block; }\",\".framer-J9ia1.framer-1x4q70p { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-J9ia1 .framer-1skazsj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-J9ia1 .framer-e1ic6n { bottom: -64px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; }\",\".framer-J9ia1 .framer-wkajow { bottom: -128px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; }\",\".framer-J9ia1 .framer-1d4mfzw { bottom: -192px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-J9ia1.framer-1x4q70p { gap: 0px; } .framer-J9ia1.framer-1x4q70p > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-J9ia1.framer-1x4q70p > :first-child { margin-top: 0px; } .framer-J9ia1.framer-1x4q70p > :last-child { margin-bottom: 0px; } }\",\".framer-J9ia1.framer-v-1x53131 .framer-1skazsj { left: 0px; position: absolute; top: -64px; z-index: 1; }\",\".framer-J9ia1.framer-v-1x53131 .framer-e1ic6n, .framer-J9ia1.framer-v-jmcqko .framer-wkajow { bottom: unset; left: unset; position: relative; }\",\".framer-J9ia1.framer-v-1x53131 .framer-wkajow, .framer-J9ia1.framer-v-jmcqko .framer-1d4mfzw { bottom: -64px; }\",\".framer-J9ia1.framer-v-1x53131 .framer-1d4mfzw { bottom: -128px; }\",\".framer-J9ia1.framer-v-jmcqko .framer-1skazsj { left: 0px; position: absolute; top: -128px; z-index: 1; }\",\".framer-J9ia1.framer-v-jmcqko .framer-e1ic6n { bottom: unset; top: -64px; }\",\".framer-J9ia1.framer-v-ftkhq9 .framer-1skazsj { left: 0px; order: 0; position: absolute; top: -192px; z-index: 1; }\",\".framer-J9ia1.framer-v-ftkhq9 .framer-e1ic6n { bottom: unset; order: 2; top: -128px; }\",\".framer-J9ia1.framer-v-ftkhq9 .framer-wkajow { bottom: unset; order: 3; top: -64px; }\",\".framer-J9ia1.framer-v-ftkhq9 .framer-1d4mfzw { bottom: unset; left: unset; order: 1; position: relative; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 235\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"s47lrUlvF\":{\"layout\":[\"auto\",\"auto\"]},\"hOJwKKC9i\":{\"layout\":[\"auto\",\"auto\"]},\"EKdqpJ67M\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"prRJoYo14\":\"title1\",\"zLT7JXi3G\":\"title2\",\"alrWq3yGr\":\"title3\",\"c_FQD8pO8\":\"textColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfpesxMIGq=withCSS(Component,css,\"framer-J9ia1\");export default FramerfpesxMIGq;FramerfpesxMIGq.displayName=\"Word Slide SM\";FramerfpesxMIGq.defaultProps={height:64,width:235};addPropertyControls(FramerfpesxMIGq,{variant:{options:[\"spq_oQfaz\",\"s47lrUlvF\",\"hOJwKKC9i\",\"EKdqpJ67M\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},prRJoYo14:{defaultValue:\"Character\",displayTextArea:false,title:\"Title 1\",type:ControlType.String},zLT7JXi3G:{defaultValue:\"Cooperation\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},alrWq3yGr:{defaultValue:\"Opportunity\",displayTextArea:false,title:\"Title 3\",type:ControlType.String},c_FQD8pO8:{defaultValue:\"rgb(255, 255, 255)\",title:\"Text Color\",type:ControlType.Color}});addFonts(FramerfpesxMIGq,[{explicitInter:true,fonts:[{family:\"Zwizz SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/SVfuzMtUmrQFA3Af2O9UKYKr5rM.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfpesxMIGq\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"64\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"s47lrUlvF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hOJwKKC9i\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EKdqpJ67M\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"235\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"prRJoYo14\\\":\\\"title1\\\",\\\"zLT7JXi3G\\\":\\\"title2\\\",\\\"alrWq3yGr\\\":\\\"title3\\\",\\\"c_FQD8pO8\\\":\\\"textColor\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fpesxMIGq.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,createRef,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{// Fixes measurements when the children mount late\nif(hasChildren&&!isCanvas&&(!parentRef.current||!childrenRef[0].current||!childrenRef[filteredSlots.length-1].current)){return setTimeout(()=>frame.read(measure),50);}if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;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[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(()=>{frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\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     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (f22aa3d)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/7NqHJHRwGJKPr4gYnAGm/SlideShow.js\";const SlideshowFonts=getFonts(Slideshow);const serializationHash=\"framer-9A0ol\";const variantClassNames={Cs3eYp1st:\"framer-v-1j9prnk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:.2,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Cs3eYp1st\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1j9prnk\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Cs3eYp1st\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",mask:\"url('https://framerusercontent.com/images/ayF0hg3H28pKLvzlStttOmkMde0.svg') alpha no-repeat bottom / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/ayF0hg3H28pKLvzlStttOmkMde0.svg') alpha no-repeat bottom / cover add\",...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2icysi-container\",layoutDependency:layoutDependency,layoutId:\"SJzkkWSoI-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"SJzkkWSoI\",intervalControl:3,itemAmount:1,layoutId:\"SJzkkWSoI\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:6,dotsOpacity:.3,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,pixelHeight:1080,pixelWidth:1080,positionX:\"89.6%\",positionY:\"86.8%\",sizes:\"540px\",src:\"https://framerusercontent.com/images/buSGNQFYYmvXAzDelxnF45rsTg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/buSGNQFYYmvXAzDelxnF45rsTg.png?scale-down-to=512 512w,https://framerusercontent.com/images/buSGNQFYYmvXAzDelxnF45rsTg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/buSGNQFYYmvXAzDelxnF45rsTg.png 1080w\"},className:\"framer-1qjcgqg\",\"data-framer-name\":\"Varana-capital-home-page-1\",layoutDependency:layoutDependency,layoutId:\"UDklrPRDr\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,pixelHeight:1080,pixelWidth:1080,positionX:\"89.3%\",positionY:\"86.5%\",sizes:\"540px\",src:\"https://framerusercontent.com/images/a1wPTWDOmQwmx6oss6e9TLY4joY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/a1wPTWDOmQwmx6oss6e9TLY4joY.png?scale-down-to=512 512w,https://framerusercontent.com/images/a1wPTWDOmQwmx6oss6e9TLY4joY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a1wPTWDOmQwmx6oss6e9TLY4joY.png 1080w\"},className:\"framer-1rpt7t1\",\"data-framer-name\":\"Varana-capital-home-page-8\",layoutDependency:layoutDependency,layoutId:\"BPMGGAYkf\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,pixelHeight:1080,pixelWidth:1080,positionX:\"90.3%\",positionY:\"87.9%\",sizes:\"540px\",src:\"https://framerusercontent.com/images/EdduwgWuAwVwMWtwffZ4xcd4UIU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/EdduwgWuAwVwMWtwffZ4xcd4UIU.png?scale-down-to=512 512w,https://framerusercontent.com/images/EdduwgWuAwVwMWtwffZ4xcd4UIU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EdduwgWuAwVwMWtwffZ4xcd4UIU.png 1080w\"},className:\"framer-mwuk24\",\"data-framer-name\":\"Varana-capital-home-page-6\",layoutDependency:layoutDependency,layoutId:\"Z2Ksqloye\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,pixelHeight:1080,pixelWidth:1080,positionX:\"90%\",positionY:\"87.5%\",sizes:\"540px\",src:\"https://framerusercontent.com/images/Onnup7cvSsv59Rqr5yBD4EFUEU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Onnup7cvSsv59Rqr5yBD4EFUEU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Onnup7cvSsv59Rqr5yBD4EFUEU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Onnup7cvSsv59Rqr5yBD4EFUEU.png 1080w\"},className:\"framer-1p8x95k\",\"data-framer-name\":\"Varana-capital-home-page-7\",layoutDependency:layoutDependency,layoutId:\"V_NPXO45R\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,pixelHeight:1080,pixelWidth:1080,positionX:\"90.6%\",positionY:\"87.9%\",sizes:\"540px\",src:\"https://framerusercontent.com/images/Fu3zJVVmxRvoXkigWPuFgYIf0I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Fu3zJVVmxRvoXkigWPuFgYIf0I.png?scale-down-to=512 512w,https://framerusercontent.com/images/Fu3zJVVmxRvoXkigWPuFgYIf0I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Fu3zJVVmxRvoXkigWPuFgYIf0I.png 1080w\"},className:\"framer-16o3g7o\",\"data-framer-name\":\"Varana-capital-home-page-2\",layoutDependency:layoutDependency,layoutId:\"LHHaABJGi\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,pixelHeight:1080,pixelWidth:1080,positionX:\"87.1%\",positionY:\"83.6%\",sizes:\"540px\",src:\"https://framerusercontent.com/images/RZuubYrZXtByiMvBJPKrJxbTtE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/RZuubYrZXtByiMvBJPKrJxbTtE.png?scale-down-to=512 512w,https://framerusercontent.com/images/RZuubYrZXtByiMvBJPKrJxbTtE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RZuubYrZXtByiMvBJPKrJxbTtE.png 1080w\"},className:\"framer-1k8lleo\",\"data-framer-name\":\"Varana-capital-home-page-3\",layoutDependency:layoutDependency,layoutId:\"rh11atn8t\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,pixelHeight:1080,pixelWidth:1080,positionX:\"90.2%\",positionY:\"86.5%\",sizes:\"540px\",src:\"https://framerusercontent.com/images/WDqwxjFg1cr0o6XTanFATPoSPDk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WDqwxjFg1cr0o6XTanFATPoSPDk.png?scale-down-to=512 512w,https://framerusercontent.com/images/WDqwxjFg1cr0o6XTanFATPoSPDk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WDqwxjFg1cr0o6XTanFATPoSPDk.png 1080w\"},className:\"framer-p7lupi\",\"data-framer-name\":\"Varana-capital-home-page-4\",layoutDependency:layoutDependency,layoutId:\"D1XPmfYmh\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,pixelHeight:1080,pixelWidth:1080,positionX:\"89.1%\",positionY:\"84.6%\",sizes:\"540px\",src:\"https://framerusercontent.com/images/t8NaSLjR8ym7hxJhnL7I3OZGM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/t8NaSLjR8ym7hxJhnL7I3OZGM.png?scale-down-to=512 512w,https://framerusercontent.com/images/t8NaSLjR8ym7hxJhnL7I3OZGM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/t8NaSLjR8ym7hxJhnL7I3OZGM.png 1080w\"},className:\"framer-mm6yu6\",\"data-framer-name\":\"Varana-capital-home-page-5\",layoutDependency:layoutDependency,layoutId:\"RGnZZfCpx\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9A0ol.framer-1mbswot, .framer-9A0ol .framer-1mbswot { display: block; }\",\".framer-9A0ol.framer-1j9prnk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 732px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 595px; }\",\".framer-9A0ol .framer-2icysi-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-9A0ol .framer-1qjcgqg, .framer-9A0ol .framer-1rpt7t1, .framer-9A0ol .framer-mwuk24, .framer-9A0ol .framer-1p8x95k, .framer-9A0ol .framer-16o3g7o, .framer-9A0ol .framer-1k8lleo, .framer-9A0ol .framer-p7lupi, .framer-9A0ol .framer-mm6yu6 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 540px); overflow: visible; position: relative; width: 540px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9A0ol.framer-1j9prnk { gap: 0px; } .framer-9A0ol.framer-1j9prnk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9A0ol.framer-1j9prnk > :first-child { margin-left: 0px; } .framer-9A0ol.framer-1j9prnk > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 732\n * @framerIntrinsicWidth 595\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLDKyoiX70=withCSS(Component,css,\"framer-9A0ol\");export default FramerLDKyoiX70;FramerLDKyoiX70.displayName=\"Home/Slideshow\";FramerLDKyoiX70.defaultProps={height:732,width:595};addFonts(FramerLDKyoiX70,[{explicitInter:true,fonts:[]},...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLDKyoiX70\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"732\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"595\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LDKyoiX70.map", "// Generated by Framer (50a537b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={Ei0ROBIVc:{hover:true},Y2tFPsfcl:{hover:true}};const cycleOrder=[\"Ei0ROBIVc\",\"Y2tFPsfcl\"];const serializationHash=\"framer-aWLPT\";const variantClassNames={Ei0ROBIVc:\"framer-v-1pxq03s\",Y2tFPsfcl:\"framer-v-11kzrft\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Ei0ROBIVc\",\"Variant 2\":\"Y2tFPsfcl\"};const getProps=({height,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,CVvCqrIkG:(_ref=title!==null&&title!==void 0?title:props.CVvCqrIkG)!==null&&_ref!==void 0?_ref:\"Firm Leadership\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"Ei0ROBIVc\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,CVvCqrIkG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Ei0ROBIVc\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"M9TAe6OtU\"},nodeId:\"Ei0ROBIVc\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1pxq03s\",className,classNames)} framer-vhn5lt`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Ei0ROBIVc\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"Ei0ROBIVc-hover\":{\"data-framer-name\":undefined},\"Y2tFPsfcl-hover\":{\"data-framer-name\":undefined},Y2tFPsfcl:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IE1lZGl1bQ==\",\"--framer-font-family\":'\"Zwizz Medium\", \"Zwizz Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, rgb(0, 23, 56)))\"},children:\"Meet Our Team\"})}),className:\"framer-1j4pvne\",fonts:[\"CUSTOM;Zwizz Medium\"],layoutDependency:layoutDependency,layoutId:\"rupbcsQ5Y\",style:{\"--extracted-r6o4lv\":\"var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, rgb(0, 23, 56))\",\"--framer-paragraph-spacing\":\"0px\"},text:CVvCqrIkG,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({Y2tFPsfcl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IE1lZGl1bQ==\",\"--framer-font-family\":'\"Zwizz Medium\", \"Zwizz Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, rgb(0, 23, 56)))\"},children:\"Meet Our Team\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ssebeq\",layoutDependency:layoutDependency,layoutId:\"wolRYznAt\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-l279vp\",\"data-framer-name\":\"Group 21\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:37,intrinsicWidth:37,layoutDependency:layoutDependency,layoutId:\"TeQLKO5DQ\",style:{rotate:0},svg:'<svg width=\"37\" height=\"37\" viewBox=\"0 0 37 37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"18.5\" cy=\"18.5\" r=\"17.25\" transform=\"rotate(-90 18.5 18.5)\" stroke=\"#001738\" stroke-width=\"2.5\"/>\\n<path d=\"M5.59668 32.0249L5.59668 6.32431L31.4034 6.32431L31.4034 32.0249L5.59668 32.0249Z\" fill=\"white\" fill-opacity=\"0.01\"/>\\n<path d=\"M15.8115 12.2148L25.489 12.2148L25.489 21.8525\" stroke=\"#001738\" stroke-width=\"2.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11.8027 25.8442L25.4888 12.2145\" stroke=\"#001738\" stroke-width=\"2.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',variants:{\"Ei0ROBIVc-hover\":{rotate:-25},\"Y2tFPsfcl-hover\":{rotate:-30}},withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aWLPT.framer-vhn5lt, .framer-aWLPT .framer-vhn5lt { display: block; }\",\".framer-aWLPT.framer-1pxq03s { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-aWLPT .framer-1j4pvne { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-aWLPT .framer-ssebeq { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: hidden; padding: 1px 1px 4px 1px; position: relative; width: min-content; }\",\".framer-aWLPT .framer-l279vp { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 18px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aWLPT.framer-1pxq03s, .framer-aWLPT .framer-ssebeq { gap: 0px; } .framer-aWLPT.framer-1pxq03s > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-aWLPT.framer-1pxq03s > :first-child { margin-left: 0px; } .framer-aWLPT.framer-1pxq03s > :last-child { margin-right: 0px; } .framer-aWLPT .framer-ssebeq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-aWLPT .framer-ssebeq > :first-child { margin-top: 0px; } .framer-aWLPT .framer-ssebeq > :last-child { margin-bottom: 0px; } }\",\".framer-aWLPT.framer-v-11kzrft .framer-l279vp { height: var(--framer-aspect-ratio-supported, 19px); width: 19px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 23\n * @framerIntrinsicWidth 141.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Y2tFPsfcl\":{\"layout\":[\"auto\",\"auto\"]},\"D6w1jiCO3\":{\"layout\":[\"auto\",\"auto\"]},\"gLOJFXKoZ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"CVvCqrIkG\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrSsf4Xx_y=withCSS(Component,css,\"framer-aWLPT\");export default FramerrSsf4Xx_y;FramerrSsf4Xx_y.displayName=\"Meet Team\";FramerrSsf4Xx_y.defaultProps={height:23,width:141.5};addPropertyControls(FramerrSsf4Xx_y,{variant:{options:[\"Ei0ROBIVc\",\"Y2tFPsfcl\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},CVvCqrIkG:{defaultValue:\"Firm Leadership\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerrSsf4Xx_y,[{explicitInter:true,fonts:[{family:\"Zwizz Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/5xfCpBXBMDWsYpDTPih62ocrS4.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrSsf4Xx_y\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"141.5\",\"framerVariables\":\"{\\\"CVvCqrIkG\\\":\\\"title\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Y2tFPsfcl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"D6w1jiCO3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gLOJFXKoZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"23\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rSsf4Xx_y.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import WordSlideXS from\"#framer/local/canvasComponent/En_fsM4kI/En_fsM4kI.js\";import Topbar from\"#framer/local/canvasComponent/F7OFxMrmr/F7OFxMrmr.js\";import WordSlideLG from\"#framer/local/canvasComponent/fJI_rayKb/fJI_rayKb.js\";import WordSlideSM from\"#framer/local/canvasComponent/fpesxMIGq/fpesxMIGq.js\";import SectionPlate from\"#framer/local/canvasComponent/GNZK2O25v/GNZK2O25v.js\";import Arrow from\"#framer/local/canvasComponent/jcWAYCRyh/jcWAYCRyh.js\";import HomeSlideshow from\"#framer/local/canvasComponent/LDKyoiX70/LDKyoiX70.js\";import Footer from\"#framer/local/canvasComponent/NeSUJYJIM/NeSUJYJIM.js\";import TeamMember from\"#framer/local/canvasComponent/ns1jqNPwE/ns1jqNPwE.js\";import MeetTeam from\"#framer/local/canvasComponent/rSsf4Xx_y/rSsf4Xx_y.js\";import Button from\"#framer/local/canvasComponent/UXlhYdsDb/UXlhYdsDb.js\";import*as sharedStyle6 from\"#framer/local/css/eJT7nAUVW/eJT7nAUVW.js\";import*as sharedStyle4 from\"#framer/local/css/i1TOhNF8z/i1TOhNF8z.js\";import*as sharedStyle5 from\"#framer/local/css/JbyxojO4h/JbyxojO4h.js\";import*as sharedStyle from\"#framer/local/css/LazhClQXy/LazhClQXy.js\";import*as sharedStyle1 from\"#framer/local/css/sbkYCUyfu/sbkYCUyfu.js\";import*as sharedStyle2 from\"#framer/local/css/t0_Ob176G/t0_Ob176G.js\";import*as sharedStyle3 from\"#framer/local/css/VjDsu0pil/VjDsu0pil.js\";import metadataProvider from\"#framer/local/webPageMetadata/hQuYMKCrQ/hQuYMKCrQ.js\";const TopbarFonts=getFonts(Topbar);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const HomeSlideshowFonts=getFonts(HomeSlideshow);const SectionPlateFonts=getFonts(SectionPlate);const MotionDivWithFX=withFX(motion.div);const WordSlideLGFonts=getFonts(WordSlideLG);const WordSlideSMFonts=getFonts(WordSlideSM);const WordSlideXSFonts=getFonts(WordSlideXS);const ArrowFonts=getFonts(Arrow);const CarouselFonts=getFonts(Carousel);const MeetTeamFonts=getFonts(MeetTeam);const TeamMemberFonts=getFonts(TeamMember);const ContainerWithFX=withFX(Container);const FooterFonts=getFonts(Footer);const breakpoints={eMw2Ia642:\"(max-width: 389px)\",iOPrHdomv:\"(min-width: 810px) and (max-width: 1199px)\",SOOMKnLV0:\"(min-width: 1700px)\",wagK75cUa:\"(min-width: 1200px) and (max-width: 1499px)\",Xjynlj_o4:\"(min-width: 1500px) and (max-width: 1699px)\",xOcdE8IWo:\"(min-width: 390px) and (max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ij7Um\";const variantClassNames={eMw2Ia642:\"framer-v-f37p43\",iOPrHdomv:\"framer-v-160fmzl\",SOOMKnLV0:\"framer-v-g0nzoc\",wagK75cUa:\"framer-v-5hkqmi\",Xjynlj_o4:\"framer-v-8t4yx\",xOcdE8IWo:\"framer-v-8mpvhk\"};const transition1={damping:30,delay:.1,mass:1,stiffness:100,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition2={damping:30,delay:.2,mass:1,stiffness:100,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={damping:30,delay:.4,mass:1,stiffness:100,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition4={damping:30,delay:.5,mass:1,stiffness:100,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition5={damping:30,delay:0,mass:1,stiffness:100,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:150};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:150};const transition6={damping:30,delay:.3,mass:1,stiffness:100,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:150};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,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={\"XT Wide\":\"SOOMKnLV0\",Desktop:\"wagK75cUa\",Phone:\"xOcdE8IWo\",Tablet:\"iOPrHdomv\",Wide:\"Xjynlj_o4\",XS:\"eMw2Ia642\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"wagK75cUa\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();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=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"wEw5uh7Bp\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"xOcdE8IWo\",\"eMw2Ia642\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"xOcdE8IWo\",\"eMw2Ia642\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"xOcdE8IWo\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"eMw2Ia642\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"iOPrHdomv\",\"xOcdE8IWo\",\"eMw2Ia642\"].includes(baseVariant))return false;return true;};const elementId1=useRouteElementId(\"jD99Zlu8e\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"eXY12XQa_\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"UpDKmjEnQ\");const ref5=React.useRef(null);const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"Xjynlj_o4\")return false;return true;};const isDisplayed6=()=>{if(!isBrowser())return true;if(baseVariant===\"Xjynlj_o4\")return true;return false;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"wagK75cUa\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, rgb(0, 23, 56)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-5hkqmi\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{height:65},xOcdE8IWo:{height:66}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15ejjes-container\",layoutScroll:true,nodeId:\"XIPMhxGxX\",scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{style:{height:\"100%\",width:\"100%\"},variant:\"y0xdPsSAE\"},iOPrHdomv:{variant:\"y0xdPsSAE\"},xOcdE8IWo:{style:{height:\"100%\",width:\"100%\"},variant:\"y0xdPsSAE\"}},children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"XIPMhxGxX\",layoutId:\"XIPMhxGxX\",style:{width:\"100%\"},variant:\"L_eqHS0ZA\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h6sowy\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1deliqe\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ndqt0z\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1amxfwn\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19f0yc8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-uyrlvc\",\"data-styles-preset\":\"LazhClQXy\",children:\"INVESTMENT PROFESSIONALS, FOUNDERS, AND OPERATORS\"})}),fonts:[\"Inter\"]},xOcdE8IWo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-uyrlvc\",\"data-styles-preset\":\"LazhClQXy\",children:\"INVESTMENT PROFESSIONALS, FOUNDERS, AND OPERATORS\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0.3em\",\"--framer-text-color\":\"var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, rgb(0, 23, 56))\",\"--framer-text-transform\":\"uppercase\"},children:\"INVESTMENT PROFESSIONALS, FOUNDERS, AND OPERATORS\"})}),className:\"framer-umi6p6\",\"data-framer-appear-id\":\"umi6p6\",fonts:[\"CUSTOM;Zwizz SemiBold\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"Where Partnership Redefines Possibility\"})}),className:\"framer-bevv8j\",\"data-framer-appear-id\":\"bevv8j\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13huand\",\"data-styles-preset\":\"t0_Ob176G\",children:\"We\\xa0bring more than just capital to the table. We bring our experience, our expertise, and our networks to help solve the problems challenging our partner companies every day.\"})}),className:\"framer-8nhc1n\",\"data-framer-appear-id\":\"8nhc1n\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bl6uko\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":wEw5uh7Bp\",webPageId:\"hQuYMKCrQ\"},implicitPathVariables:undefined},{href:{hash:\":wEw5uh7Bp\",webPageId:\"hQuYMKCrQ\"},implicitPathVariables:undefined},{href:{hash:\":wEw5uh7Bp\",webPageId:\"hQuYMKCrQ\"},implicitPathVariables:undefined},{href:{hash:\":wEw5uh7Bp\",webPageId:\"hQuYMKCrQ\"},implicitPathVariables:undefined},{href:{hash:\":wEw5uh7Bp\",webPageId:\"hQuYMKCrQ\"},implicitPathVariables:undefined},{href:{hash:\":wEw5uh7Bp\",webPageId:\"hQuYMKCrQ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{height:35,width:`max((max(${componentViewport?.width||\"100vw\"} - 25px, 1px) - 40px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+85+0+99.80000000000001+0+215.39999999999998+10},iOPrHdomv:{y:(componentViewport?.y||0)+0+0+0+0+125+0+66.6+0+265.8+15},xOcdE8IWo:{width:`max((max(${componentViewport?.width||\"100vw\"} - 25px, 1px) - 65px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+85+0+83.80000000000001+0+242.39999999999998+10}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"175px\",y:(componentViewport?.y||0)+0+0+0+125+0+129+0+287+15,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-149d9js-container\",\"data-framer-appear-id\":\"149d9js\",initial:animation4,nodeId:\"Hdb0GyyWS\",optimized:true,rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{QlnLaVcGN:resolvedLinks[3],u4EuNSfc7:8},iOPrHdomv:{QlnLaVcGN:resolvedLinks[1]},SOOMKnLV0:{QlnLaVcGN:resolvedLinks[5]},Xjynlj_o4:{QlnLaVcGN:resolvedLinks[4]},xOcdE8IWo:{QlnLaVcGN:resolvedLinks[2],u4EuNSfc7:10}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Hdb0GyyWS\",layoutId:\"Hdb0GyyWS\",PLvzq5ke9:\"LEARN MORE\",QlnLaVcGN:resolvedLinks[0],style:{height:\"100%\",width:\"100%\"},u4EuNSfc7:12,variant:\"wgotdvWlu\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SgX8kp1yy\"},implicitPathVariables:undefined},{href:{webPageId:\"SgX8kp1yy\"},implicitPathVariables:undefined},{href:{webPageId:\"SgX8kp1yy\"},implicitPathVariables:undefined},{href:{webPageId:\"SgX8kp1yy\"},implicitPathVariables:undefined},{href:{webPageId:\"SgX8kp1yy\"},implicitPathVariables:undefined},{href:{webPageId:\"SgX8kp1yy\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{height:35,width:`max((max(${componentViewport?.width||\"100vw\"} - 25px, 1px) - 40px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+85+0+99.80000000000001+0+215.39999999999998+10},iOPrHdomv:{y:(componentViewport?.y||0)+0+0+0+0+125+0+66.6+0+265.8+15},xOcdE8IWo:{width:`max((max(${componentViewport?.width||\"100vw\"} - 25px, 1px) - 65px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+85+0+83.80000000000001+0+242.39999999999998+10}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"175px\",y:(componentViewport?.y||0)+0+0+0+125+0+129+0+287+15,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1srb1pb-container\",\"data-framer-appear-id\":\"1srb1pb\",initial:animation4,nodeId:\"zSxHWOG6J\",optimized:true,rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{QlnLaVcGN:resolvedLinks1[3],style:{height:\"100%\",width:\"100%\"},u4EuNSfc7:8},iOPrHdomv:{QlnLaVcGN:resolvedLinks1[1]},SOOMKnLV0:{QlnLaVcGN:resolvedLinks1[5]},Xjynlj_o4:{QlnLaVcGN:resolvedLinks1[4]},xOcdE8IWo:{QlnLaVcGN:resolvedLinks1[2],style:{height:\"100%\",width:\"100%\"},u4EuNSfc7:10}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"zSxHWOG6J\",layoutId:\"zSxHWOG6J\",PLvzq5ke9:\"OUR COMPANIES\",QlnLaVcGN:resolvedLinks1[0],style:{width:\"100%\"},u4EuNSfc7:12,variant:\"Ck9EbEYWL\",width:\"100%\"})})})})})})]})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{height:316,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+545},iOPrHdomv:{height:741,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+629},xOcdE8IWo:{height:389,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+545}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:732,width:`max((${componentViewport?.width||\"100vw\"} - 10px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10ymtex-container\",nodeId:\"GgPoM7Ej2\",scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(HomeSlideshow,{height:\"100%\",id:\"GgPoM7Ej2\",layoutId:\"GgPoM7Ej2\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eeolm3\",\"data-framer-name\":\"Line\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13bgiqs\",\"data-framer-name\":\"Line\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y2qpwe\",\"data-border\":true,\"data-framer-name\":\"Line\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xiefkj\",\"data-framer-name\":\"About\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rygl50\",\"data-framer-name\":\"About\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-582tqc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{y:(componentViewport?.y||0)+0+912+0+50+0+0+0},iOPrHdomv:{y:(componentViewport?.y||0)+0+1374+0+50+0+0+0},xOcdE8IWo:{y:(componentViewport?.y||0)+0+970+0+50+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"175px\",y:(componentViewport?.y||0)+0+779+0+100+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gpmndv-container\",nodeId:\"taECyxzXw\",scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(SectionPlate,{height:\"100%\",id:\"taECyxzXw\",layoutId:\"taECyxzXw\",PLvzq5ke9:\"WHO WE ARE\",style:{height:\"100%\",width:\"100%\"},variant:\"l4TPVhOTc\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k2ieob\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wrhk9w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"About Varana Capital\"})}),className:\"framer-n1zlqp\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13huand\",\"data-styles-preset\":\"t0_Ob176G\",children:\"We are a Denver-based team of seasoned investment professionals, founders, and operators specializing in pre-seed through series A technology investments, focused primarily on asset-light deep-tech. We sit on or advise the board of most portfolio companies, rolling up our sleeves to work with our management partners on strategy, operations, and financial planning.\"})}),className:\"framer-1cssuki\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kyxxto\",\"data-framer-name\":\"Thirds\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pdltya\",\"data-framer-name\":\"Thirds\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d0tgt7\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1dg3y3\",\"data-framer-name\":\"Frame 82430\",fill:\"rgba(0, 0, 0, 0)\",intrinsicHeight:261,intrinsicWidth:458,svg:'<svg width=\"458\" height=\"261\" viewBox=\"0 0 458 261\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0H385L458 73V261H0V0Z\" fill=\"#001738\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",style:{\"--framer-text-color\":\"var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, rgb(255, 255, 255))\"},children:\"30+\"})}),className:\"framer-1ra404w\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x5eelx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-5c2mys\",\"data-styles-preset\":\"VjDsu0pil\",style:{\"--framer-text-color\":\"var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, rgb(255, 255, 255))\"},children:\"Companies\"})}),className:\"framer-1fv9o59\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18lnbst\",\"data-border\":true,\"data-framer-name\":\"Line\"})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lr9sv0\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"$5+ billion\"})})},iOPrHdomv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"$5+ billion\"})})},SOOMKnLV0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"$5+ billion\"})})},Xjynlj_o4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"$5+ billion\"})})},xOcdE8IWo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"$5+ billion\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"$5+ bn\"})}),className:\"framer-1dsgzpv\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3m76bt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-5c2mys\",\"data-styles-preset\":\"VjDsu0pil\",children:\"Value Created\"})}),className:\"framer-oceqr7\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16io3ny\",\"data-border\":true,\"data-framer-name\":\"Line\"})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-64d6ae\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"2000+\"})}),className:\"framer-166bctm\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-imufok\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-5c2mys\",\"data-styles-preset\":\"VjDsu0pil\",children:\"Jobs Created\"})}),className:\"framer-1yxv4cf\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rwmafg\",\"data-border\":true,\"data-framer-name\":\"Line\"})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a50vsv\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"10\"})}),className:\"framer-1lnw910\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19p94kp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-5c2mys\",\"data-styles-preset\":\"VjDsu0pil\",children:\"Countries\"})}),className:\"framer-1gy7c6n\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yeg3nx\",\"data-border\":true,\"data-framer-name\":\"Line\"})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g7lxwh\",\"data-framer-name\":\"Values\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ks3v80\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xnt4nk\",\"data-framer-name\":\"Stickey\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sqpkib\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p7u0a9\",\"data-border\":true,\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1da6y9i\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t22ype\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{y:(componentViewport?.y||0)+0+2256.8+0+0+0+0+0+50+0+0+50+0},iOPrHdomv:{y:(componentViewport?.y||0)+0+2793.8+0+0+0+0+0+50+0+0+50+0},xOcdE8IWo:{y:(componentViewport?.y||0)+0+2314.8+0+0+0+0+0+50+0+0+50+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"175px\",y:(componentViewport?.y||0)+0+1408.8+0+0+0+0+0+50+0+100+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17ih17t-container\",nodeId:\"Ve08xha8_\",scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(SectionPlate,{height:\"100%\",id:\"Ve08xha8_\",layoutId:\"Ve08xha8_\",PLvzq5ke9:\"OUR CORE VALUES\",style:{height:\"100%\",width:\"100%\"},variant:\"My6bG0Yem\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j4v9nt\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-168gywk\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k26dyd\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x9vval\",\"data-framer-name\":\"Text-Slider\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(168, 168, 168)\",\"--framer-text-transform\":\"capitalize\"},children:\"Varana Capital\"})})},xOcdE8IWo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(168, 168, 168)\",\"--framer-text-transform\":\"capitalize\"},children:\"Varana Capital\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(168, 168, 168)\",\"--framer-text-transform\":\"capitalize\"},children:\"Varana Capital is\"})}),className:\"framer-c8lnxc\",fonts:[\"CUSTOM;Zwizz SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nupyib\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(168, 168, 168)\",\"--framer-text-transform\":\"capitalize\"},children:\"Is\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1p3aXp6IFNlbWlCb2xk\",\"--framer-font-family\":'\"Zwizz SemiBold\", \"Zwizz SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(168, 168, 168)\",\"--framer-text-transform\":\"capitalize\"},children:\"Is\"})}),className:\"framer-1lcmx84 hidden-5hkqmi hidden-160fmzl hidden-8t4yx hidden-g0nzoc\",fonts:[\"CUSTOM;Zwizz SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iOPrHdomv:{y:(componentViewport?.y||0)+0+2793.8+0+0+0+0+0+50+0+140+0+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,y:(componentViewport?.y||0)+0+1408.8+0+0+0+0+0+50+0+0+0+100+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qd9267-container hidden-8mpvhk hidden-f37p43\",nodeId:\"QF6xw43Rb\",scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(WordSlideLG,{alrWq3yGr:\"Opportunity\",height:\"100%\",id:\"QF6xw43Rb\",JGRUpwhkI:\"rgb(255, 255, 255)\",layoutId:\"QF6xw43Rb\",prRJoYo14:\"Character\",variant:\"n4Hbo7WPf\",width:\"100%\",zLT7JXi3G:\"Cooperation\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xOcdE8IWo:{height:64,y:(componentViewport?.y||0)+0+2314.8+0+0+0+0+0+50+0+115+0+0+0+0+0+0+0+64+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1039fem-container hidden-5hkqmi hidden-160fmzl hidden-f37p43 hidden-8t4yx hidden-g0nzoc\",nodeId:\"RvCVdhJCc\",scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(WordSlideSM,{alrWq3yGr:\"Opportunity\",c_FQD8pO8:\"rgb(255, 255, 255)\",height:\"100%\",id:\"RvCVdhJCc\",layoutId:\"RvCVdhJCc\",prRJoYo14:\"Character\",variant:\"spq_oQfaz\",width:\"100%\",zLT7JXi3G:\"Cooperation\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{height:48,y:(componentViewport?.y||0)+0+2256.8+0+0+0+0+0+50+0+115+0+0+0+0+0+0+0+52+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pw8xfk-container hidden-5hkqmi hidden-160fmzl hidden-8mpvhk hidden-8t4yx hidden-g0nzoc\",nodeId:\"sjnLXidQO\",scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(WordSlideXS,{alrWq3yGr:\"Opportunity\",c_FQD8pO8:\"rgb(255, 255, 255)\",height:\"100%\",id:\"sjnLXidQO\",layoutId:\"sjnLXidQO\",prRJoYo14:\"Character\",variant:\"UuobrtUQG\",width:\"100%\",zLT7JXi3G:\"Cooperation\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-udq3az\",\"data-border\":true,\"data-framer-name\":\"Line\"})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10qxx2b\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v81ykc hidden-160fmzl hidden-8mpvhk hidden-f37p43\",\"data-framer-name\":\"Left\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7eiqyf\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5elsur\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dlc3xw\",\"data-framer-name\":\"Character\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-bvusum\",\"data-styles-preset\":\"i1TOhNF8z\",style:{\"--framer-text-color\":\"var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, rgb(255, 255, 255))\"},children:\"Character\"})}),className:\"framer-11y3mu2\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-523bag\",\"data-styles-preset\":\"JbyxojO4h\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, rgb(255, 255, 255))\"},children:\"At Varana Capital, character is our compass. We prioritize investment in exceptional leaders with subject-matter expertise to drive success.\"})}),className:\"framer-9ye30\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pllzwk\",\"data-border\":true,\"data-framer-name\":\"Line\"})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hckctq\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-kneuzk hidden-160fmzl hidden-8mpvhk hidden-f37p43\",\"data-framer-name\":\"Left\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hx8msd\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e4chc\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i1zl48\",\"data-framer-name\":\"Character\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SOOMKnLV0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-bvusum\",\"data-styles-preset\":\"i1TOhNF8z\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Cooperation\"})})},Xjynlj_o4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-bvusum\",\"data-styles-preset\":\"i1TOhNF8z\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Cooperation\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-bvusum\",\"data-styles-preset\":\"i1TOhNF8z\",style:{\"--framer-text-color\":\"var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, rgb(255, 255, 255))\"},children:\"Cooperation\"})}),className:\"framer-132llax\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-523bag\",\"data-styles-preset\":\"JbyxojO4h\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, rgb(255, 255, 255))\"},children:\"Cooperation is the driving force behind our approach, leveraging diverse skills, experiences, and perspectives to achieve shared goals. We actively engage with our partners, management teams, and stakeholders in the strong belief that collective effort yields far greater outcomes.\"})}),className:\"framer-b17n2r\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b4gix7\",\"data-border\":true,\"data-framer-name\":\"Line\"})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nacdpn\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ozn1fn hidden-160fmzl hidden-8mpvhk hidden-f37p43\",\"data-framer-name\":\"Left\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1z0yhg6\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j3w3ri\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3agqzi\",\"data-framer-name\":\"Character\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SOOMKnLV0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-bvusum\",\"data-styles-preset\":\"i1TOhNF8z\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Opportunity\"})})},Xjynlj_o4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-bvusum\",\"data-styles-preset\":\"i1TOhNF8z\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Opportunity\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-bvusum\",\"data-styles-preset\":\"i1TOhNF8z\",style:{\"--framer-text-color\":\"var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, rgb(255, 255, 255))\"},children:\"Opportunity\"})}),className:\"framer-1xfxyu2\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-523bag\",\"data-styles-preset\":\"JbyxojO4h\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, rgb(255, 255, 255))\"},children:\"At Varana Capital, we are opportunity architects, identifying and seizing moments that propel our portfolio companies and partners toward unparalleled success.\"})}),className:\"framer-nhbut9\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u6cv7n\",\"data-border\":true,\"data-framer-name\":\"Line\"})]})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dxp82d\",\"data-framer-name\":\"Line\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-x8yoes\",\"data-border\":true,\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ujcu90\",\"data-framer-name\":\"Funds\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rkjqop\",\"data-framer-name\":\"Funds\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uml2zj\",\"data-framer-name\":\"About\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qclwb6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u8zvei\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c6hk8k\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-g7c5o9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{y:(componentViewport?.y||0)+0+4209.2+0+0+0+0+50+0+0+0+0+0+0+0+0},iOPrHdomv:{y:(componentViewport?.y||0)+0+4868.2+0+0+0+0+100+0+0+0+0+0+0+0+0},xOcdE8IWo:{y:(componentViewport?.y||0)+0+4295.2+0+0+0+0+50+0+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"175px\",y:(componentViewport?.y||0)+0+3086.8+0+0+0+0+100+0+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g6cvn9-container\",nodeId:\"CjN1WZplI\",scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(SectionPlate,{height:\"100%\",id:\"CjN1WZplI\",layoutId:\"CjN1WZplI\",PLvzq5ke9:\"OUR FUNDS\",style:{height:\"100%\",width:\"100%\"},variant:\"l4TPVhOTc\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1luuajc\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bhx3ne\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"Our Investment Programs\"})})},xOcdE8IWo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"Our Investment Programs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"Our Investment Programs\"})}),className:\"framer-6223at\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vozenx-container hidden-8mpvhk hidden-f37p43\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SoHIPWhgb\",scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iOPrHdomv:{sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:5,arrowRadius:35,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:25,height:\"100%\",id:\"SoHIPWhgb\",layoutId:\"SoHIPWhgb\",padding:0,paddingBottom:0,paddingLeft:50,paddingPerSide:true,paddingRight:50,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IUKPzhA6z\"},motionChild:true,nodeId:\"l5Dhvb052\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1w509wt framer-ez3zib\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2s77yk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-uyrlvc\",\"data-styles-preset\":\"LazhClQXy\",children:\"Venture Capital Fund\"})}),className:\"framer-17qouo1\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k7vlwl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-523bag\",\"data-styles-preset\":\"JbyxojO4h\",children:\"Varana Capital Focused\"})}),className:\"framer-ob7han\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jrb4c\",\"data-border\":true,\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13huand\",\"data-styles-preset\":\"t0_Ob176G\",children:\"Varana Capital Focused is a highly concentrated venture portfolio, focused primarily on asset-light deep-tech. We sit on or advise the board of most portfolio companies, rolling up our sleeves to work with our management partners on strategy, operations, and financial planning.\"})}),className:\"framer-znvse2\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:\"391px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hpdzhk-container\",inComponentSlot:true,nodeId:\"nztdRwbWR\",rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"nztdRwbWR\",layoutId:\"nztdRwbWR\",style:{height:\"100%\",width:\"100%\"},variant:\"qNcRMYViC\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ac4KRwo9m\"},motionChild:true,nodeId:\"YVTQjB_sw\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1rfvspd framer-ez3zib\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-iozndu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-uyrlvc\",\"data-styles-preset\":\"LazhClQXy\",children:\"Israel Opportunity Fund\"})}),className:\"framer-1nq7zuz\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rmav5u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-523bag\",\"data-styles-preset\":\"JbyxojO4h\",children:\"Chai 10X Fund\"})}),className:\"framer-q2n0xc\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h84mp2\",\"data-border\":true,\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13huand\",\"data-styles-preset\":\"t0_Ob176G\",children:\"The Varana Capital Chai 10X Fund is an opportunity venture fund created to support Israeli technology companies during this critical time.\\xa0 Responding to the flight of foreign investment in Israeli companies, the Chai 10X Fund underscores Varana Capital\u2019s unwavering dedication to investing in Israeli innovation, to bolstering the economic resilience of Israel, and to delivering substantial returns.\"})}),className:\"framer-1mwi1gy\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:\"331px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5t97b6-container\",inComponentSlot:true,nodeId:\"h9HkARxhS\",rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"h9HkARxhS\",layoutId:\"h9HkARxhS\",style:{height:\"100%\",width:\"100%\"},variant:\"qNcRMYViC\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ac4KRwo9m\"},motionChild:true,nodeId:\"j8MUCOGMI\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-nu0aaw framer-ez3zib\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rf1gkv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-uyrlvc\",\"data-styles-preset\":\"LazhClQXy\",children:\"Israel Opportunity Fund\"})}),className:\"framer-lb4wz\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13mn5tv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-523bag\",\"data-styles-preset\":\"JbyxojO4h\",children:\"Chai 10X Parallel Fund\"})}),className:\"framer-1ih8g1y\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aezab7\",\"data-border\":true,\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13huand\",\"data-styles-preset\":\"t0_Ob176G\",children:\"After reaching a record first close for the Chai 10X Fund, Varana Capital launched a parallel fund to augment and to expand our efforts to support Israeli technology companies during this critical time.\"})}),className:\"framer-fz60mr\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:\"380px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hozdc4-container\",inComponentSlot:true,nodeId:\"Wu3YgQpB2\",rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"Wu3YgQpB2\",layoutId:\"Wu3YgQpB2\",style:{height:\"100%\",width:\"100%\"},variant:\"qNcRMYViC\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-152w23d\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-afigai\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-uyrlvc\",\"data-styles-preset\":\"LazhClQXy\",children:\"UNIQUE Investment Opportunities\"})}),className:\"framer-xdekj6\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sf8bnv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-523bag\",\"data-styles-preset\":\"JbyxojO4h\",children:\"Varana Capital Select\"})}),className:\"framer-1k2vr28\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12lvjtk\",\"data-border\":true,\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13huand\",\"data-styles-preset\":\"t0_Ob176G\",children:\"Varana Capital offers co-investment opportunities curated exclusively for current Varana investors. Varana Capital Select investments enable limited partners to benefit even further from our analytical experience, deep diligence process, and access to remarkable companies typically not available to the investing public.\"})}),className:\"framer-1ltfdn\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fuhgf5-container hidden-5hkqmi hidden-160fmzl hidden-8t4yx hidden-g0nzoc\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pI0FdROFT\",scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:5,arrowRadius:35,arrowSize:25,showMouseControls:true},paddingLeft:15,paddingRight:15},xOcdE8IWo:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:3,arrowRadius:35,arrowSize:20,showMouseControls:true}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:5,arrowRadius:35,arrowSize:15,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:25,height:\"100%\",id:\"pI0FdROFT\",layoutId:\"pI0FdROFT\",padding:0,paddingBottom:0,paddingLeft:25,paddingPerSide:true,paddingRight:25,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IUKPzhA6z\"},motionChild:true,nodeId:\"l5Dhvb052\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1w509wt framer-ez3zib\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2s77yk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-uyrlvc\",\"data-styles-preset\":\"LazhClQXy\",children:\"Venture Capital Fund\"})}),className:\"framer-17qouo1\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k7vlwl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-523bag\",\"data-styles-preset\":\"JbyxojO4h\",children:\"Varana Capital Focused\"})}),className:\"framer-ob7han\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jrb4c\",\"data-border\":true,\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13huand\",\"data-styles-preset\":\"t0_Ob176G\",children:\"Varana Capital Focused is a highly concentrated venture portfolio, focused primarily on asset-light deep-tech. We sit on or advise the board of most portfolio companies, rolling up our sleeves to work with our management partners on strategy, operations, and financial planning.\"})}),className:\"framer-znvse2\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:\"391px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hpdzhk-container\",inComponentSlot:true,nodeId:\"nztdRwbWR\",rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"nztdRwbWR\",layoutId:\"nztdRwbWR\",style:{height:\"100%\",width:\"100%\"},variant:\"qNcRMYViC\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ac4KRwo9m\"},motionChild:true,nodeId:\"YVTQjB_sw\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1rfvspd framer-ez3zib\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-iozndu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-uyrlvc\",\"data-styles-preset\":\"LazhClQXy\",children:\"Israel Opportunity Fund\"})}),className:\"framer-1nq7zuz\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rmav5u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-523bag\",\"data-styles-preset\":\"JbyxojO4h\",children:\"Chai 10X Fund\"})}),className:\"framer-q2n0xc\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h84mp2\",\"data-border\":true,\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13huand\",\"data-styles-preset\":\"t0_Ob176G\",children:\"The Varana Capital Chai 10X Fund is an opportunity venture fund created to support Israeli technology companies during this critical time.\\xa0 Responding to the flight of foreign investment in Israeli companies, the Chai 10X Fund underscores Varana Capital\u2019s unwavering dedication to investing in Israeli innovation, to bolstering the economic resilience of Israel, and to delivering substantial returns.\"})}),className:\"framer-1mwi1gy\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:\"331px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5t97b6-container\",inComponentSlot:true,nodeId:\"h9HkARxhS\",rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"h9HkARxhS\",layoutId:\"h9HkARxhS\",style:{height:\"100%\",width:\"100%\"},variant:\"qNcRMYViC\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ac4KRwo9m\"},motionChild:true,nodeId:\"j8MUCOGMI\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-nu0aaw framer-ez3zib\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rf1gkv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-uyrlvc\",\"data-styles-preset\":\"LazhClQXy\",children:\"Israel Opportunity Fund\"})}),className:\"framer-lb4wz\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13mn5tv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-523bag\",\"data-styles-preset\":\"JbyxojO4h\",children:\"Chai 10X Parallel Fund\"})}),className:\"framer-1ih8g1y\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aezab7\",\"data-border\":true,\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13huand\",\"data-styles-preset\":\"t0_Ob176G\",children:\"After reaching a record first close for the Chai 10X Fund, Varana Capital launched a parallel fund to augment and to expand our efforts to support Israeli technology companies during this critical time.\"})}),className:\"framer-fz60mr\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:\"380px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hozdc4-container\",inComponentSlot:true,nodeId:\"Wu3YgQpB2\",rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"Wu3YgQpB2\",layoutId:\"Wu3YgQpB2\",style:{height:\"100%\",width:\"100%\"},variant:\"qNcRMYViC\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-152w23d\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-afigai\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-uyrlvc\",\"data-styles-preset\":\"LazhClQXy\",children:\"UNIQUE Investment Opportunities\"})}),className:\"framer-xdekj6\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sf8bnv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-523bag\",\"data-styles-preset\":\"JbyxojO4h\",children:\"Varana Capital Select\"})}),className:\"framer-1k2vr28\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12lvjtk\",\"data-border\":true,\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13huand\",\"data-styles-preset\":\"t0_Ob176G\",children:\"Varana Capital offers co-investment opportunities curated exclusively for current Varana investors. Varana Capital Select investments enable limited partners to benefit even further from our analytical experience, deep diligence process, and access to remarkable companies typically not available to the investing public.\"})}),className:\"framer-1ltfdn\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})],snapObject:{fluid:false,snap:true,snapEdge:\"end\"},style:{width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wfuwv6\",\"data-framer-name\":\"Leadership\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c5sd96\",\"data-framer-name\":\"Leadership\",id:elementId2,ref:ref4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hdvulr\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-cmkaop\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mesllb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{y:(componentViewport?.y||0)+0+4614+0+0+50+0+0+0+0+0+0},iOPrHdomv:{y:(componentViewport?.y||0)+0+5398+0+0+100+0+0+0+0+0+0},xOcdE8IWo:{y:(componentViewport?.y||0)+0+4726+0+0+50+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"175px\",y:(componentViewport?.y||0)+0+3591.6000000000004+0+0+100+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4x8xa7-container\",nodeId:\"S3lFYSqhh\",scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(SectionPlate,{height:\"100%\",id:\"S3lFYSqhh\",layoutId:\"S3lFYSqhh\",PLvzq5ke9:\"LEADERSHIP\",style:{height:\"100%\",width:\"100%\"},variant:\"l4TPVhOTc\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4j4c11\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-q3e0k\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16a2bkk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-h3kgqt\",\"data-styles-preset\":\"eJT7nAUVW\",children:\"As operators and founders, building businesses is the core of who we are.\"})}),className:\"framer-1kntpmn\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{y:(componentViewport?.y||0)+0+4614+0+0+50+90+0+0+0+0+0+79},iOPrHdomv:{y:(componentViewport?.y||0)+0+5398+0+0+100+90+0+0+0+0+0+73},xOcdE8IWo:{y:(componentViewport?.y||0)+0+4726+0+0+50+90+0+0+0+0+0+73}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:23,y:(componentViewport?.y||0)+0+3591.6000000000004+0+0+100+90+0+0+0+0+0+31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-86e221-container\",nodeId:\"tT1OGzjHF\",scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{variant:\"Ei0ROBIVc\"}},children:/*#__PURE__*/_jsx(MeetTeam,{CVvCqrIkG:\"Firm Leadership\",height:\"100%\",id:\"tT1OGzjHF\",layoutId:\"tT1OGzjHF\",variant:\"Y2tFPsfcl\",width:\"100%\"})})})})})]})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18h0knt\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vtp08h\",\"data-framer-name\":\"Leadership\",id:elementId3,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1260hm\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11r49be-container hidden-8mpvhk hidden-f37p43\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VAr_bm5fG\",scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iOPrHdomv:{sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:5,arrowRadius:35,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:25,height:\"100%\",id:\"VAr_bm5fG\",layoutId:\"VAr_bm5fG\",padding:0,paddingBottom:0,paddingLeft:50,paddingPerSide:true,paddingRight:50,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-fnqk9l-container\",inComponentSlot:true,nodeId:\"Bm3JG_cxY\",rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(TeamMember,{Dqpr1WYYh:\"MANAGING PARTNER\",height:\"100%\",id:\"Bm3JG_cxY\",jXVZBoIwU:false,layoutId:\"Bm3JG_cxY\",MYiS57lV5:addImageAlt({positionX:\"47.9%\",positionY:\"4.2%\",src:\"https://framerusercontent.com/images/Epdd98DgOxukWgLaLqTbcIe0xRM.png\",srcSet:\"https://framerusercontent.com/images/Epdd98DgOxukWgLaLqTbcIe0xRM.png?scale-down-to=1024 910w,https://framerusercontent.com/images/Epdd98DgOxukWgLaLqTbcIe0xRM.png 1200w\"},\"Varana Capital Philip Broenniman\"),N4gUvQPf4:\"Philip Broenniman, CFA\",style:{width:\"100%\"},variant:\"OG8Re4AeN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-q7pzyt-container\",inComponentSlot:true,nodeId:\"yN_P0EkpO\",rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(TeamMember,{Dqpr1WYYh:\"PARTNER\",height:\"100%\",id:\"yN_P0EkpO\",jXVZBoIwU:false,layoutId:\"yN_P0EkpO\",MYiS57lV5:addImageAlt({positionX:\"48.7%\",positionY:\"7%\",src:\"https://framerusercontent.com/images/HjgSwEWzixDWXxSfRufpKfsQdGI.png\",srcSet:\"https://framerusercontent.com/images/HjgSwEWzixDWXxSfRufpKfsQdGI.png?scale-down-to=1024 910w,https://framerusercontent.com/images/HjgSwEWzixDWXxSfRufpKfsQdGI.png 1200w\"},\"Varana Capital Ezra Gardner\"),N4gUvQPf4:\"Ezra Gardner\",style:{width:\"100%\"},variant:\"OG8Re4AeN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-q5qs12-container\",inComponentSlot:true,nodeId:\"k2XfgnKhh\",rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(TeamMember,{Dqpr1WYYh:\"Chief Operating Officer\",height:\"100%\",id:\"k2XfgnKhh\",jXVZBoIwU:false,layoutId:\"k2XfgnKhh\",MYiS57lV5:addImageAlt({positionX:\"52.9%\",positionY:\"6.5%\",src:\"https://framerusercontent.com/images/AFAxciYQKzOEUDU6ArGUK3Ukhc.png\",srcSet:\"https://framerusercontent.com/images/AFAxciYQKzOEUDU6ArGUK3Ukhc.png?scale-down-to=1024 910w,https://framerusercontent.com/images/AFAxciYQKzOEUDU6ArGUK3Ukhc.png 1200w\"},\"Varana Capital Ankur Ahuja\"),N4gUvQPf4:\"Ankur Ahuja\",style:{width:\"100%\"},variant:\"OG8Re4AeN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lj2fic-container\",inComponentSlot:true,nodeId:\"MuNpZ0nzg\",rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(TeamMember,{Dqpr1WYYh:\"Marketing/Investor Relations\",height:\"100%\",id:\"MuNpZ0nzg\",jXVZBoIwU:false,layoutId:\"MuNpZ0nzg\",MYiS57lV5:addImageAlt({positionX:\"50.4%\",positionY:\"5.7%\",src:\"https://framerusercontent.com/images/gXzEFSQPnn38Y7LzcnViWzak8Bo.png\",srcSet:\"https://framerusercontent.com/images/gXzEFSQPnn38Y7LzcnViWzak8Bo.png?scale-down-to=1024 910w,https://framerusercontent.com/images/gXzEFSQPnn38Y7LzcnViWzak8Bo.png 1200w\"},\"Varana Capital Kelci Jones\"),N4gUvQPf4:\"Kelci Jones\",style:{width:\"100%\"},variant:\"OG8Re4AeN\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7mq6co-container hidden-5hkqmi hidden-160fmzl hidden-8t4yx hidden-g0nzoc\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xZk6XqsMi\",scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:5,arrowRadius:35,arrowSize:25,showMouseControls:true},paddingLeft:15,paddingRight:15},xOcdE8IWo:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:3,arrowRadius:35,arrowSize:20,showMouseControls:true}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:5,arrowRadius:35,arrowSize:15,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:25,height:\"100%\",id:\"xZk6XqsMi\",layoutId:\"xZk6XqsMi\",padding:0,paddingBottom:0,paddingLeft:25,paddingPerSide:true,paddingRight:25,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700,width:\"600px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hjkrhz-container\",inComponentSlot:true,nodeId:\"EuMFYXQWq\",rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(TeamMember,{Dqpr1WYYh:\"MANAGING PARTNER\",height:\"100%\",id:\"EuMFYXQWq\",jXVZBoIwU:false,layoutId:\"EuMFYXQWq\",MYiS57lV5:addImageAlt({positionX:\"47.9%\",positionY:\"4.2%\",src:\"https://framerusercontent.com/images/Epdd98DgOxukWgLaLqTbcIe0xRM.png\",srcSet:\"https://framerusercontent.com/images/Epdd98DgOxukWgLaLqTbcIe0xRM.png?scale-down-to=1024 910w,https://framerusercontent.com/images/Epdd98DgOxukWgLaLqTbcIe0xRM.png 1200w\"},\"Varana Capital Philip Broenniman\"),N4gUvQPf4:\"Philip Broenniman, CFA\",style:{width:\"100%\"},variant:\"AryBVMs3e\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19t40mi-container\",inComponentSlot:true,nodeId:\"bPDHUjftY\",rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(TeamMember,{Dqpr1WYYh:\"PARTNER\",height:\"100%\",id:\"bPDHUjftY\",jXVZBoIwU:false,layoutId:\"bPDHUjftY\",MYiS57lV5:addImageAlt({positionX:\"48.7%\",positionY:\"7%\",src:\"https://framerusercontent.com/images/HjgSwEWzixDWXxSfRufpKfsQdGI.png\",srcSet:\"https://framerusercontent.com/images/HjgSwEWzixDWXxSfRufpKfsQdGI.png?scale-down-to=1024 910w,https://framerusercontent.com/images/HjgSwEWzixDWXxSfRufpKfsQdGI.png 1200w\"},\"Varana Capital Ezra Gardner\"),N4gUvQPf4:\"Ezra Gardner\",style:{width:\"100%\"},variant:\"AryBVMs3e\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yu56m3-container\",inComponentSlot:true,nodeId:\"P3AojqdLD\",rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(TeamMember,{Dqpr1WYYh:\"Chief Operating Officer\",height:\"100%\",id:\"P3AojqdLD\",jXVZBoIwU:false,layoutId:\"P3AojqdLD\",MYiS57lV5:addImageAlt({positionX:\"52.9%\",positionY:\"6.5%\",src:\"https://framerusercontent.com/images/AFAxciYQKzOEUDU6ArGUK3Ukhc.png\",srcSet:\"https://framerusercontent.com/images/AFAxciYQKzOEUDU6ArGUK3Ukhc.png?scale-down-to=1024 910w,https://framerusercontent.com/images/AFAxciYQKzOEUDU6ArGUK3Ukhc.png 1200w\"},\"Varana Capital Ankur Ahuja\"),N4gUvQPf4:\"Ankur Ahuja\",style:{width:\"100%\"},variant:\"AryBVMs3e\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-75c3iy-container\",inComponentSlot:true,nodeId:\"uapCCvuBY\",rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(TeamMember,{Dqpr1WYYh:\"Marketing/Investor Relations\",height:\"100%\",id:\"uapCCvuBY\",jXVZBoIwU:false,layoutId:\"uapCCvuBY\",MYiS57lV5:addImageAlt({positionX:\"50.4%\",positionY:\"5.7%\",src:\"https://framerusercontent.com/images/gXzEFSQPnn38Y7LzcnViWzak8Bo.png\",srcSet:\"https://framerusercontent.com/images/gXzEFSQPnn38Y7LzcnViWzak8Bo.png?scale-down-to=1024 910w,https://framerusercontent.com/images/gXzEFSQPnn38Y7LzcnViWzak8Bo.png 1200w\"},\"Varana Capital Kelci Jones\"),N4gUvQPf4:\"Kelci Jones\",style:{width:\"100%\"},variant:\"AryBVMs3e\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"end\"},style:{width:\"100%\"},width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dx3xgq\",\"data-framer-name\":\"Footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sk55p8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-180ol5z\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ypnysd\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5mo2cr\",children:[isDisplayed5()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-uyrlvc\",\"data-styles-preset\":\"LazhClQXy\",children:\"GET IN TOUCH\"})})},xOcdE8IWo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-uyrlvc\",\"data-styles-preset\":\"LazhClQXy\",children:\"GET IN TOUCH\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-uyrlvc\",\"data-styles-preset\":\"LazhClQXy\",children:\"GET IN TOUCH\"})}),className:\"framer-1oerncj hidden-8t4yx\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed5()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"Contact Us\"})})},xOcdE8IWo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"Contact Us\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"Contact Us\"})}),className:\"framer-mgd1nz hidden-8t4yx\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13huand\",\"data-styles-preset\":\"t0_Ob176G\",children:\"We always seek to grow our concentric circles of relationships. This is the partnership principle in action.\"})}),className:\"framer-anet6a hidden-8t4yx\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u7pb9v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{height:35,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 30px, 1px), 1400px) - 80px, 1px)`,y:(componentViewport?.y||0)+0+5181+0+0+0+0+50+0+0+215.39999999999998+10},iOPrHdomv:{y:(componentViewport?.y||0)+0+6034+0+0+75+0+25+0+0+215.39999999999998+15},Xjynlj_o4:{y:(componentViewport?.y||0)+0+4185.6+0+0+25+25+0+0+307.2+15},xOcdE8IWo:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1400px) - 80px, 1px)`,y:(componentViewport?.y||0)+0+5287+0+0+0+0+50+0+0+215.39999999999998+10}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"175px\",y:(componentViewport?.y||0)+0+4185.6+0+0+25+25+0+0+275.7+15,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-5cprbw-container\",\"data-framer-appear-id\":\"5cprbw\",initial:animation4,nodeId:\"Dwldu2ZfC\",optimized:true,rendersWithMotion:true,scopeId:\"hQuYMKCrQ\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{u4EuNSfc7:8},xOcdE8IWo:{u4EuNSfc7:10}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Dwldu2ZfC\",layoutId:\"Dwldu2ZfC\",PLvzq5ke9:\"CONTACT US\",QlnLaVcGN:\"https://eu-dealflow.edda.co/form/form-widget/embed/5T1inyfX9JE9rBxoXUzP/varana_capital\",style:{height:\"100%\",width:\"100%\"},u4EuNSfc7:12,variant:\"wgotdvWlu\",width:\"100%\"})})})})})}),isDisplayed6()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-63xvbd hidden-5hkqmi hidden-160fmzl hidden-8mpvhk hidden-f37p43 hidden-g0nzoc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-uyrlvc\",\"data-styles-preset\":\"LazhClQXy\",children:\"GET IN TOUCH\"})}),className:\"framer-m5u7s0\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed6()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1968bpv hidden-5hkqmi hidden-160fmzl hidden-8mpvhk hidden-f37p43 hidden-g0nzoc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1o92v3m\",\"data-styles-preset\":\"sbkYCUyfu\",children:\"Contact Us\"})}),className:\"framer-cbjtvj\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e7b9w1\",\"data-border\":true,\"data-framer-name\":\"Line\"})]}),isDisplayed6()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13huand\",\"data-styles-preset\":\"t0_Ob176G\",children:\"We always seek to grow our concentric circles of relationships. This is the partnership principle in action.\"})}),className:\"framer-1q070d2 hidden-5hkqmi hidden-160fmzl hidden-8mpvhk hidden-f37p43 hidden-g0nzoc\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u3oook\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{y:(componentViewport?.y||0)+0+5181+0+384},iOPrHdomv:{y:(componentViewport?.y||0)+0+6034+200+4},xOcdE8IWo:{y:(componentViewport?.y||0)+0+5287+0+404}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:746,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4185.6+200+182,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cby6ey-container\",nodeId:\"V_I3dSOnl\",scopeId:\"hQuYMKCrQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eMw2Ia642:{variant:\"k9JxmQo7Y\"},xOcdE8IWo:{variant:\"k9JxmQo7Y\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"V_I3dSOnl\",layoutId:\"V_I3dSOnl\",style:{width:\"100%\"},variant:\"qWx5EIt15\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ij7Um.framer-ez3zib, .framer-ij7Um .framer-ez3zib { display: block; }\",\".framer-ij7Um.framer-5hkqmi { align-content: center; align-items: center; background-color: var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, #001738); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-ij7Um .framer-15ejjes-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: -1px; z-index: 10; }\",\".framer-ij7Um .framer-h6sowy { align-content: flex-start; align-items: flex-start; background-color: var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-1deliqe { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 125px 0px 50px 0px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-ndqt0z { align-content: center; align-items: center; background-color: var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, #001738); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50px; }\",\".framer-ij7Um .framer-1amxfwn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-19f0yc8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ij7Um .framer-umi6p6, .framer-ij7Um .framer-1oerncj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 498px; word-break: break-word; word-wrap: break-word; }\",\".framer-ij7Um .framer-bevv8j { --framer-paragraph-spacing: 0px; flex: none; height: 128px; position: relative; white-space: pre-wrap; width: 497px; word-break: break-word; word-wrap: break-word; }\",\".framer-ij7Um .framer-8nhc1n { --framer-paragraph-spacing: 0px; flex: none; height: 63px; position: relative; white-space: pre-wrap; width: 494px; word-break: break-word; word-wrap: break-word; }\",\".framer-ij7Um .framer-1bl6uko, .framer-ij7Um .framer-u7pb9v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-ij7Um .framer-149d9js-container { align-self: stretch; flex: none; height: auto; position: relative; width: 175px; }\",\".framer-ij7Um .framer-1srb1pb-container { flex: none; height: auto; position: relative; width: 175px; }\",\".framer-ij7Um .framer-10ymtex-container { flex: 1 0 0px; height: 732px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-eeolm3, .framer-ij7Um .framer-1kyxxto { align-content: center; align-items: center; background-color: var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-13bgiqs { align-content: center; align-items: center; background-color: var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, #ffffff); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 4px; justify-content: center; max-width: 1500px; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-1y2qpwe { --border-bottom-width: 1px; --border-color: var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, #001738); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 2px; justify-content: center; max-width: 1500px; overflow: hidden; padding: 0px 59px 0px 0px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-xiefkj { align-content: center; align-items: center; background-color: var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 63px; width: 100%; }\",\".framer-ij7Um .framer-rygl50 { align-content: flex-start; align-items: flex-start; background-color: var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, #ffffff); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1500px; overflow: visible; padding: 100px 50px 25px 50px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-582tqc, .framer-ij7Um .framer-u8zvei, .framer-ij7Um .framer-hdvulr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ij7Um .framer-gpmndv-container, .framer-ij7Um .framer-1g6cvn9-container, .framer-ij7Um .framer-4x8xa7-container, .framer-ij7Um .framer-5cprbw-container { flex: none; height: 40px; position: relative; width: 175px; }\",\".framer-ij7Um .framer-1k2ieob { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-wrhk9w, .framer-ij7Um .framer-1bhx3ne, .framer-ij7Um .framer-q3e0k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-n1zlqp, .framer-ij7Um .framer-1cssuki, .framer-ij7Um .framer-1dsgzpv, .framer-ij7Um .framer-166bctm, .framer-ij7Um .framer-1lnw910, .framer-ij7Um .framer-11y3mu2, .framer-ij7Um .framer-9ye30, .framer-ij7Um .framer-132llax, .framer-ij7Um .framer-b17n2r, .framer-ij7Um .framer-1xfxyu2, .framer-ij7Um .framer-nhbut9, .framer-ij7Um .framer-6223at, .framer-ij7Um .framer-1q070d2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ij7Um .framer-1pdltya { align-content: flex-start; align-items: flex-start; background-color: var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, #ffffff); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; max-width: 1500px; overflow: hidden; padding: 25px 50px 100px 50px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-d0tgt7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 200px; justify-content: center; overflow: visible; padding: 25px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-1dg3y3 { -webkit-filter: drop-shadow(0px 3px 6px rgba(10, 24, 51, 0.44)); bottom: 0px; filter: drop-shadow(0px 3px 6px rgba(10, 24, 51, 0.44)); flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-ij7Um .framer-1ra404w { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-ij7Um .framer-1x5eelx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ij7Um .framer-1fv9o59, .framer-ij7Um .framer-oceqr7, .framer-ij7Um .framer-1yxv4cf, .framer-ij7Um .framer-1gy7c6n, .framer-ij7Um .framer-c8lnxc, .framer-ij7Um .framer-1lcmx84, .framer-ij7Um .framer-17qouo1, .framer-ij7Um .framer-ob7han, .framer-ij7Um .framer-1nq7zuz, .framer-ij7Um .framer-q2n0xc, .framer-ij7Um .framer-lb4wz, .framer-ij7Um .framer-1ih8g1y, .framer-ij7Um .framer-1k2vr28, .framer-ij7Um .framer-mgd1nz, .framer-ij7Um .framer-m5u7s0, .framer-ij7Um .framer-cbjtvj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ij7Um .framer-18lnbst { --border-bottom-width: 1px; --border-color: var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, #ffffff); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-lr9sv0 { align-content: center; align-items: center; background-color: var(--token-6efdf22a-220f-4857-952f-c252fb48e0ae, #ededed); box-shadow: 0px 3px 8px 0px rgba(10, 24, 51, 0.2); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 200px; justify-content: center; overflow: hidden; padding: 25px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-3m76bt, .framer-ij7Um .framer-imufok, .framer-ij7Um .framer-19p94kp, .framer-ij7Um .framer-63xvbd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-16io3ny, .framer-ij7Um .framer-rwmafg, .framer-ij7Um .framer-1yeg3nx, .framer-ij7Um .framer-1jrb4c, .framer-ij7Um .framer-h84mp2, .framer-ij7Um .framer-1aezab7, .framer-ij7Um .framer-12lvjtk, .framer-ij7Um .framer-1e7b9w1 { --border-bottom-width: 1px; --border-color: var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, #001738); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-64d6ae, .framer-ij7Um .framer-1a50vsv { align-content: center; align-items: center; background-color: var(--token-6efdf22a-220f-4857-952f-c252fb48e0ae, #d9d9d9); box-shadow: 0px 3px 8px 0px rgba(10, 24, 51, 0.2); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 200px; justify-content: center; overflow: hidden; padding: 25px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-1g7lxwh { align-content: center; align-items: center; background-color: var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, #001738); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 100px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ij7Um .framer-1ks3v80 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1500px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-1xnt4nk { align-content: center; align-items: center; background-color: var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, #001738); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: -37px; width: 100%; will-change: transform; z-index: 9; }\",\".framer-ij7Um .framer-1sqpkib { align-content: flex-end; align-items: flex-end; background-color: var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, #001738); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 50px; justify-content: center; overflow: hidden; padding: 100px 50px 0px 50px; position: relative; width: 100%; z-index: 0; }\",\".framer-ij7Um .framer-1p7u0a9 { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 2px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-1da6y9i { align-content: flex-start; align-items: flex-start; background-color: var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, #001738); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 100%; z-index: 1; }\",\".framer-ij7Um .framer-t22ype { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 218px; justify-content: flex-start; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-ij7Um .framer-17ih17t-container { flex: none; height: 40px; position: sticky; top: 0px; width: 175px; will-change: transform; z-index: 1; }\",\".framer-ij7Um .framer-j4v9nt, .framer-ij7Um .framer-7eiqyf, .framer-ij7Um .framer-hx8msd, .framer-ij7Um .framer-1z0yhg6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-168gywk { align-content: center; align-items: center; background-color: var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, #001738); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 0px 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-ij7Um .framer-k26dyd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-x9vval { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-1nupyib { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ij7Um .framer-1qd9267-container, .framer-ij7Um .framer-1039fem-container, .framer-ij7Um .framer-pw8xfk-container, .framer-ij7Um .framer-86e221-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ij7Um .framer-udq3az, .framer-ij7Um .framer-1pllzwk, .framer-ij7Um .framer-b4gix7, .framer-ij7Um .framer-1u6cv7n { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 4px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-10qxx2b, .framer-ij7Um .framer-1hckctq, .framer-ij7Um .framer-1nacdpn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 100%; z-index: 1; }\",\".framer-ij7Um .framer-1v81ykc, .framer-ij7Um .framer-kneuzk, .framer-ij7Um .framer-1ozn1fn { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; min-width: 175px; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-ij7Um .framer-5elsur, .framer-ij7Um .framer-e4chc, .framer-ij7Um .framer-1j3w3ri { align-content: center; align-items: center; background-color: var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, #001738); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 425px; justify-content: space-between; overflow: hidden; padding: 100px 0px 0px 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 8; }\",\".framer-ij7Um .framer-dlc3xw, .framer-ij7Um .framer-1i1zl48, .framer-ij7Um .framer-3agqzi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-1dxp82d { align-content: flex-end; align-items: flex-end; background-color: var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 4px; justify-content: center; overflow: hidden; padding: 100px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-x8yoes { --border-bottom-width: 1px; --border-color: var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, #001738); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 2px; justify-content: center; max-width: 1400px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-1ujcu90 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-1rkjqop { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; max-width: 1500px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-uml2zj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 50px 25px 50px; position: relative; width: 100%; z-index: 1; }\",\".framer-ij7Um .framer-1qclwb6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-1c6hk8k, .framer-ij7Um .framer-cmkaop { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ij7Um .framer-g7c5o9, .framer-ij7Um .framer-1mesllb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ij7Um .framer-1luuajc, .framer-ij7Um .framer-4j4c11 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-vozenx-container, .framer-ij7Um .framer-fuhgf5-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ij7Um .framer-1w509wt, .framer-ij7Um .framer-1rfvspd, .framer-ij7Um .framer-nu0aaw { align-content: center; align-items: center; background-color: var(--token-6efdf22a-220f-4857-952f-c252fb48e0ae, #ededed); box-shadow: 0px 3px 8px 0px rgba(10, 24, 51, 0.2); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 420px; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; text-decoration: none; width: min-content; }\",\".framer-ij7Um .framer-2s77yk, .framer-ij7Um .framer-1k7vlwl, .framer-ij7Um .framer-iozndu, .framer-ij7Um .framer-rmav5u, .framer-ij7Um .framer-1rf1gkv, .framer-ij7Um .framer-13mn5tv, .framer-ij7Um .framer-afigai, .framer-ij7Um .framer-sf8bnv { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-ij7Um .framer-znvse2, .framer-ij7Um .framer-1mwi1gy, .framer-ij7Um .framer-fz60mr, .framer-ij7Um .framer-1ltfdn { --framer-paragraph-spacing: 0px; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-ij7Um .framer-hpdzhk-container, .framer-ij7Um .framer-5t97b6-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: -1px; top: 0px; }\",\".framer-ij7Um .framer-1hozdc4-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-ij7Um .framer-152w23d { align-content: center; align-items: center; background-color: var(--token-6efdf22a-220f-4857-952f-c252fb48e0ae, #ededed); box-shadow: 0px 3px 8px 0px rgba(10, 24, 51, 0.2); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 420px; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: min-content; }\",\".framer-ij7Um .framer-xdekj6, .framer-ij7Um .framer-1kntpmn { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ij7Um .framer-1wfuwv6, .framer-ij7Um .framer-18h0knt { align-content: center; align-items: center; background-color: var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-1c5sd96 { align-content: flex-start; align-items: flex-start; background-color: var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1500px; overflow: hidden; padding: 100px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-16a2bkk { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-vtp08h { align-content: flex-start; align-items: flex-start; background-color: var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1500px; overflow: hidden; padding: 50px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-1260hm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-11r49be-container, .framer-ij7Um .framer-7mq6co-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ij7Um .framer-fnqk9l-container, .framer-ij7Um .framer-q7pzyt-container, .framer-ij7Um .framer-q5qs12-container, .framer-ij7Um .framer-1lj2fic-container, .framer-ij7Um .framer-hjkrhz-container, .framer-ij7Um .framer-19t40mi-container, .framer-ij7Um .framer-yu56m3-container, .framer-ij7Um .framer-75c3iy-container { height: auto; position: relative; width: 600px; }\",\".framer-ij7Um .framer-1dx3xgq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1128px; justify-content: flex-end; overflow: visible; padding: 200px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-sk55p8 { align-content: center; align-items: center; background-color: var(--token-9d1d8626-c996-4a23-b8bd-eaa1fe7141f7, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px 50px 0px 50px; position: absolute; right: 0px; top: 0px; z-index: 9; }\",\".framer-ij7Um .framer-180ol5z { align-content: center; align-items: center; background-color: var(--token-6efdf22a-220f-4857-952f-c252fb48e0ae, #d9d9d9); box-shadow: 0px 3px 8px 0px rgba(10, 24, 51, 0.2); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 25px; position: relative; width: 1px; z-index: 2; }\",\".framer-ij7Um .framer-1ypnysd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 25px; position: relative; width: 1px; }\",\".framer-ij7Um .framer-5mo2cr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 454px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-anet6a { --framer-paragraph-spacing: 0px; flex: none; height: 42px; position: relative; white-space: pre-wrap; width: 423px; word-break: break-word; word-wrap: break-word; }\",\".framer-ij7Um .framer-1968bpv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ij7Um .framer-1u3oook { background-color: var(--token-6407a59d-1fe0-4a72-8c59-2e54ef56e41e, #001738); bottom: 0px; flex: none; height: 240px; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 1; }\",\".framer-ij7Um .framer-cby6ey-container { flex: none; height: auto; position: relative; width: 100%; z-index: 8; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ij7Um.framer-5hkqmi, .framer-ij7Um .framer-h6sowy, .framer-ij7Um .framer-1deliqe, .framer-ij7Um .framer-ndqt0z, .framer-ij7Um .framer-1amxfwn, .framer-ij7Um .framer-19f0yc8, .framer-ij7Um .framer-1bl6uko, .framer-ij7Um .framer-eeolm3, .framer-ij7Um .framer-13bgiqs, .framer-ij7Um .framer-1y2qpwe, .framer-ij7Um .framer-xiefkj, .framer-ij7Um .framer-rygl50, .framer-ij7Um .framer-582tqc, .framer-ij7Um .framer-1k2ieob, .framer-ij7Um .framer-wrhk9w, .framer-ij7Um .framer-1kyxxto, .framer-ij7Um .framer-1pdltya, .framer-ij7Um .framer-d0tgt7, .framer-ij7Um .framer-1x5eelx, .framer-ij7Um .framer-18lnbst, .framer-ij7Um .framer-lr9sv0, .framer-ij7Um .framer-3m76bt, .framer-ij7Um .framer-16io3ny, .framer-ij7Um .framer-64d6ae, .framer-ij7Um .framer-imufok, .framer-ij7Um .framer-rwmafg, .framer-ij7Um .framer-1a50vsv, .framer-ij7Um .framer-19p94kp, .framer-ij7Um .framer-1yeg3nx, .framer-ij7Um .framer-1g7lxwh, .framer-ij7Um .framer-1ks3v80, .framer-ij7Um .framer-1xnt4nk, .framer-ij7Um .framer-1sqpkib, .framer-ij7Um .framer-1p7u0a9, .framer-ij7Um .framer-1da6y9i, .framer-ij7Um .framer-t22ype, .framer-ij7Um .framer-j4v9nt, .framer-ij7Um .framer-168gywk, .framer-ij7Um .framer-k26dyd, .framer-ij7Um .framer-x9vval, .framer-ij7Um .framer-1nupyib, .framer-ij7Um .framer-udq3az, .framer-ij7Um .framer-10qxx2b, .framer-ij7Um .framer-1v81ykc, .framer-ij7Um .framer-7eiqyf, .framer-ij7Um .framer-dlc3xw, .framer-ij7Um .framer-1pllzwk, .framer-ij7Um .framer-1hckctq, .framer-ij7Um .framer-kneuzk, .framer-ij7Um .framer-hx8msd, .framer-ij7Um .framer-1i1zl48, .framer-ij7Um .framer-b4gix7, .framer-ij7Um .framer-1nacdpn, .framer-ij7Um .framer-1ozn1fn, .framer-ij7Um .framer-1z0yhg6, .framer-ij7Um .framer-3agqzi, .framer-ij7Um .framer-1u6cv7n, .framer-ij7Um .framer-1dxp82d, .framer-ij7Um .framer-x8yoes, .framer-ij7Um .framer-1ujcu90, .framer-ij7Um .framer-1rkjqop, .framer-ij7Um .framer-uml2zj, .framer-ij7Um .framer-1qclwb6, .framer-ij7Um .framer-u8zvei, .framer-ij7Um .framer-1c6hk8k, .framer-ij7Um .framer-g7c5o9, .framer-ij7Um .framer-1luuajc, .framer-ij7Um .framer-1bhx3ne, .framer-ij7Um .framer-1w509wt, .framer-ij7Um .framer-2s77yk, .framer-ij7Um .framer-1k7vlwl, .framer-ij7Um .framer-1jrb4c, .framer-ij7Um .framer-1rfvspd, .framer-ij7Um .framer-iozndu, .framer-ij7Um .framer-rmav5u, .framer-ij7Um .framer-h84mp2, .framer-ij7Um .framer-nu0aaw, .framer-ij7Um .framer-1rf1gkv, .framer-ij7Um .framer-13mn5tv, .framer-ij7Um .framer-1aezab7, .framer-ij7Um .framer-152w23d, .framer-ij7Um .framer-afigai, .framer-ij7Um .framer-sf8bnv, .framer-ij7Um .framer-12lvjtk, .framer-ij7Um .framer-1wfuwv6, .framer-ij7Um .framer-1c5sd96, .framer-ij7Um .framer-hdvulr, .framer-ij7Um .framer-cmkaop, .framer-ij7Um .framer-1mesllb, .framer-ij7Um .framer-4j4c11, .framer-ij7Um .framer-q3e0k, .framer-ij7Um .framer-18h0knt, .framer-ij7Um .framer-vtp08h, .framer-ij7Um .framer-1260hm, .framer-ij7Um .framer-1dx3xgq, .framer-ij7Um .framer-sk55p8, .framer-ij7Um .framer-180ol5z, .framer-ij7Um .framer-1ypnysd, .framer-ij7Um .framer-5mo2cr, .framer-ij7Um .framer-u7pb9v, .framer-ij7Um .framer-63xvbd, .framer-ij7Um .framer-1968bpv, .framer-ij7Um .framer-1e7b9w1 { gap: 0px; } .framer-ij7Um.framer-5hkqmi > *, .framer-ij7Um .framer-d0tgt7 > *, .framer-ij7Um .framer-lr9sv0 > *, .framer-ij7Um .framer-64d6ae > *, .framer-ij7Um .framer-1a50vsv > *, .framer-ij7Um .framer-1g7lxwh > *, .framer-ij7Um .framer-1xnt4nk > *, .framer-ij7Um .framer-j4v9nt > *, .framer-ij7Um .framer-7eiqyf > *, .framer-ij7Um .framer-hx8msd > *, .framer-ij7Um .framer-1z0yhg6 > *, .framer-ij7Um .framer-1dx3xgq > *, .framer-ij7Um .framer-1ypnysd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ij7Um.framer-5hkqmi > :first-child, .framer-ij7Um .framer-1amxfwn > :first-child, .framer-ij7Um .framer-19f0yc8 > :first-child, .framer-ij7Um .framer-582tqc > :first-child, .framer-ij7Um .framer-1k2ieob > :first-child, .framer-ij7Um .framer-wrhk9w > :first-child, .framer-ij7Um .framer-d0tgt7 > :first-child, .framer-ij7Um .framer-lr9sv0 > :first-child, .framer-ij7Um .framer-64d6ae > :first-child, .framer-ij7Um .framer-1a50vsv > :first-child, .framer-ij7Um .framer-1g7lxwh > :first-child, .framer-ij7Um .framer-1ks3v80 > :first-child, .framer-ij7Um .framer-1xnt4nk > :first-child, .framer-ij7Um .framer-t22ype > :first-child, .framer-ij7Um .framer-j4v9nt > :first-child, .framer-ij7Um .framer-168gywk > :first-child, .framer-ij7Um .framer-k26dyd > :first-child, .framer-ij7Um .framer-1v81ykc > :first-child, .framer-ij7Um .framer-7eiqyf > :first-child, .framer-ij7Um .framer-dlc3xw > :first-child, .framer-ij7Um .framer-kneuzk > :first-child, .framer-ij7Um .framer-hx8msd > :first-child, .framer-ij7Um .framer-1i1zl48 > :first-child, .framer-ij7Um .framer-1ozn1fn > :first-child, .framer-ij7Um .framer-1z0yhg6 > :first-child, .framer-ij7Um .framer-3agqzi > :first-child, .framer-ij7Um .framer-1ujcu90 > :first-child, .framer-ij7Um .framer-1rkjqop > :first-child, .framer-ij7Um .framer-uml2zj > :first-child, .framer-ij7Um .framer-1qclwb6 > :first-child, .framer-ij7Um .framer-u8zvei > :first-child, .framer-ij7Um .framer-1c6hk8k > :first-child, .framer-ij7Um .framer-1luuajc > :first-child, .framer-ij7Um .framer-1bhx3ne > :first-child, .framer-ij7Um .framer-1w509wt > :first-child, .framer-ij7Um .framer-1rfvspd > :first-child, .framer-ij7Um .framer-nu0aaw > :first-child, .framer-ij7Um .framer-152w23d > :first-child, .framer-ij7Um .framer-1wfuwv6 > :first-child, .framer-ij7Um .framer-1c5sd96 > :first-child, .framer-ij7Um .framer-hdvulr > :first-child, .framer-ij7Um .framer-cmkaop > :first-child, .framer-ij7Um .framer-4j4c11 > :first-child, .framer-ij7Um .framer-q3e0k > :first-child, .framer-ij7Um .framer-18h0knt > :first-child, .framer-ij7Um .framer-vtp08h > :first-child, .framer-ij7Um .framer-1dx3xgq > :first-child, .framer-ij7Um .framer-1ypnysd > :first-child, .framer-ij7Um .framer-5mo2cr > :first-child { margin-top: 0px; } .framer-ij7Um.framer-5hkqmi > :last-child, .framer-ij7Um .framer-1amxfwn > :last-child, .framer-ij7Um .framer-19f0yc8 > :last-child, .framer-ij7Um .framer-582tqc > :last-child, .framer-ij7Um .framer-1k2ieob > :last-child, .framer-ij7Um .framer-wrhk9w > :last-child, .framer-ij7Um .framer-d0tgt7 > :last-child, .framer-ij7Um .framer-lr9sv0 > :last-child, .framer-ij7Um .framer-64d6ae > :last-child, .framer-ij7Um .framer-1a50vsv > :last-child, .framer-ij7Um .framer-1g7lxwh > :last-child, .framer-ij7Um .framer-1ks3v80 > :last-child, .framer-ij7Um .framer-1xnt4nk > :last-child, .framer-ij7Um .framer-t22ype > :last-child, .framer-ij7Um .framer-j4v9nt > :last-child, .framer-ij7Um .framer-168gywk > :last-child, .framer-ij7Um .framer-k26dyd > :last-child, .framer-ij7Um .framer-1v81ykc > :last-child, .framer-ij7Um .framer-7eiqyf > :last-child, .framer-ij7Um .framer-dlc3xw > :last-child, .framer-ij7Um .framer-kneuzk > :last-child, .framer-ij7Um .framer-hx8msd > :last-child, .framer-ij7Um .framer-1i1zl48 > :last-child, .framer-ij7Um .framer-1ozn1fn > :last-child, .framer-ij7Um .framer-1z0yhg6 > :last-child, .framer-ij7Um .framer-3agqzi > :last-child, .framer-ij7Um .framer-1ujcu90 > :last-child, .framer-ij7Um .framer-1rkjqop > :last-child, .framer-ij7Um .framer-uml2zj > :last-child, .framer-ij7Um .framer-1qclwb6 > :last-child, .framer-ij7Um .framer-u8zvei > :last-child, .framer-ij7Um .framer-1c6hk8k > :last-child, .framer-ij7Um .framer-1luuajc > :last-child, .framer-ij7Um .framer-1bhx3ne > :last-child, .framer-ij7Um .framer-1w509wt > :last-child, .framer-ij7Um .framer-1rfvspd > :last-child, .framer-ij7Um .framer-nu0aaw > :last-child, .framer-ij7Um .framer-152w23d > :last-child, .framer-ij7Um .framer-1wfuwv6 > :last-child, .framer-ij7Um .framer-1c5sd96 > :last-child, .framer-ij7Um .framer-hdvulr > :last-child, .framer-ij7Um .framer-cmkaop > :last-child, .framer-ij7Um .framer-4j4c11 > :last-child, .framer-ij7Um .framer-q3e0k > :last-child, .framer-ij7Um .framer-18h0knt > :last-child, .framer-ij7Um .framer-vtp08h > :last-child, .framer-ij7Um .framer-1dx3xgq > :last-child, .framer-ij7Um .framer-1ypnysd > :last-child, .framer-ij7Um .framer-5mo2cr > :last-child { margin-bottom: 0px; } .framer-ij7Um .framer-h6sowy > *, .framer-ij7Um .framer-1deliqe > *, .framer-ij7Um .framer-ndqt0z > *, .framer-ij7Um .framer-eeolm3 > *, .framer-ij7Um .framer-13bgiqs > *, .framer-ij7Um .framer-1y2qpwe > *, .framer-ij7Um .framer-xiefkj > *, .framer-ij7Um .framer-1kyxxto > *, .framer-ij7Um .framer-1x5eelx > *, .framer-ij7Um .framer-18lnbst > *, .framer-ij7Um .framer-3m76bt > *, .framer-ij7Um .framer-16io3ny > *, .framer-ij7Um .framer-imufok > *, .framer-ij7Um .framer-rwmafg > *, .framer-ij7Um .framer-19p94kp > *, .framer-ij7Um .framer-1yeg3nx > *, .framer-ij7Um .framer-1p7u0a9 > *, .framer-ij7Um .framer-1nupyib > *, .framer-ij7Um .framer-udq3az > *, .framer-ij7Um .framer-1pllzwk > *, .framer-ij7Um .framer-b4gix7 > *, .framer-ij7Um .framer-1u6cv7n > *, .framer-ij7Um .framer-1dxp82d > *, .framer-ij7Um .framer-x8yoes > *, .framer-ij7Um .framer-g7c5o9 > *, .framer-ij7Um .framer-2s77yk > *, .framer-ij7Um .framer-1k7vlwl > *, .framer-ij7Um .framer-1jrb4c > *, .framer-ij7Um .framer-iozndu > *, .framer-ij7Um .framer-rmav5u > *, .framer-ij7Um .framer-h84mp2 > *, .framer-ij7Um .framer-1rf1gkv > *, .framer-ij7Um .framer-13mn5tv > *, .framer-ij7Um .framer-1aezab7 > *, .framer-ij7Um .framer-afigai > *, .framer-ij7Um .framer-sf8bnv > *, .framer-ij7Um .framer-12lvjtk > *, .framer-ij7Um .framer-1mesllb > *, .framer-ij7Um .framer-sk55p8 > *, .framer-ij7Um .framer-63xvbd > *, .framer-ij7Um .framer-1e7b9w1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ij7Um .framer-h6sowy > :first-child, .framer-ij7Um .framer-1deliqe > :first-child, .framer-ij7Um .framer-ndqt0z > :first-child, .framer-ij7Um .framer-1bl6uko > :first-child, .framer-ij7Um .framer-eeolm3 > :first-child, .framer-ij7Um .framer-13bgiqs > :first-child, .framer-ij7Um .framer-1y2qpwe > :first-child, .framer-ij7Um .framer-xiefkj > :first-child, .framer-ij7Um .framer-rygl50 > :first-child, .framer-ij7Um .framer-1kyxxto > :first-child, .framer-ij7Um .framer-1pdltya > :first-child, .framer-ij7Um .framer-1x5eelx > :first-child, .framer-ij7Um .framer-18lnbst > :first-child, .framer-ij7Um .framer-3m76bt > :first-child, .framer-ij7Um .framer-16io3ny > :first-child, .framer-ij7Um .framer-imufok > :first-child, .framer-ij7Um .framer-rwmafg > :first-child, .framer-ij7Um .framer-19p94kp > :first-child, .framer-ij7Um .framer-1yeg3nx > :first-child, .framer-ij7Um .framer-1sqpkib > :first-child, .framer-ij7Um .framer-1p7u0a9 > :first-child, .framer-ij7Um .framer-1da6y9i > :first-child, .framer-ij7Um .framer-x9vval > :first-child, .framer-ij7Um .framer-1nupyib > :first-child, .framer-ij7Um .framer-udq3az > :first-child, .framer-ij7Um .framer-10qxx2b > :first-child, .framer-ij7Um .framer-1pllzwk > :first-child, .framer-ij7Um .framer-1hckctq > :first-child, .framer-ij7Um .framer-b4gix7 > :first-child, .framer-ij7Um .framer-1nacdpn > :first-child, .framer-ij7Um .framer-1u6cv7n > :first-child, .framer-ij7Um .framer-1dxp82d > :first-child, .framer-ij7Um .framer-x8yoes > :first-child, .framer-ij7Um .framer-g7c5o9 > :first-child, .framer-ij7Um .framer-2s77yk > :first-child, .framer-ij7Um .framer-1k7vlwl > :first-child, .framer-ij7Um .framer-1jrb4c > :first-child, .framer-ij7Um .framer-iozndu > :first-child, .framer-ij7Um .framer-rmav5u > :first-child, .framer-ij7Um .framer-h84mp2 > :first-child, .framer-ij7Um .framer-1rf1gkv > :first-child, .framer-ij7Um .framer-13mn5tv > :first-child, .framer-ij7Um .framer-1aezab7 > :first-child, .framer-ij7Um .framer-afigai > :first-child, .framer-ij7Um .framer-sf8bnv > :first-child, .framer-ij7Um .framer-12lvjtk > :first-child, .framer-ij7Um .framer-1mesllb > :first-child, .framer-ij7Um .framer-1260hm > :first-child, .framer-ij7Um .framer-sk55p8 > :first-child, .framer-ij7Um .framer-180ol5z > :first-child, .framer-ij7Um .framer-u7pb9v > :first-child, .framer-ij7Um .framer-63xvbd > :first-child, .framer-ij7Um .framer-1968bpv > :first-child, .framer-ij7Um .framer-1e7b9w1 > :first-child { margin-left: 0px; } .framer-ij7Um .framer-h6sowy > :last-child, .framer-ij7Um .framer-1deliqe > :last-child, .framer-ij7Um .framer-ndqt0z > :last-child, .framer-ij7Um .framer-1bl6uko > :last-child, .framer-ij7Um .framer-eeolm3 > :last-child, .framer-ij7Um .framer-13bgiqs > :last-child, .framer-ij7Um .framer-1y2qpwe > :last-child, .framer-ij7Um .framer-xiefkj > :last-child, .framer-ij7Um .framer-rygl50 > :last-child, .framer-ij7Um .framer-1kyxxto > :last-child, .framer-ij7Um .framer-1pdltya > :last-child, .framer-ij7Um .framer-1x5eelx > :last-child, .framer-ij7Um .framer-18lnbst > :last-child, .framer-ij7Um .framer-3m76bt > :last-child, .framer-ij7Um .framer-16io3ny > :last-child, .framer-ij7Um .framer-imufok > :last-child, .framer-ij7Um .framer-rwmafg > :last-child, .framer-ij7Um .framer-19p94kp > :last-child, .framer-ij7Um .framer-1yeg3nx > :last-child, .framer-ij7Um .framer-1sqpkib > :last-child, .framer-ij7Um .framer-1p7u0a9 > :last-child, .framer-ij7Um .framer-1da6y9i > :last-child, .framer-ij7Um .framer-x9vval > :last-child, .framer-ij7Um .framer-1nupyib > :last-child, .framer-ij7Um .framer-udq3az > :last-child, .framer-ij7Um .framer-10qxx2b > :last-child, .framer-ij7Um .framer-1pllzwk > :last-child, .framer-ij7Um .framer-1hckctq > :last-child, .framer-ij7Um .framer-b4gix7 > :last-child, .framer-ij7Um .framer-1nacdpn > :last-child, .framer-ij7Um .framer-1u6cv7n > :last-child, .framer-ij7Um .framer-1dxp82d > :last-child, .framer-ij7Um .framer-x8yoes > :last-child, .framer-ij7Um .framer-g7c5o9 > :last-child, .framer-ij7Um .framer-2s77yk > :last-child, .framer-ij7Um .framer-1k7vlwl > :last-child, .framer-ij7Um .framer-1jrb4c > :last-child, .framer-ij7Um .framer-iozndu > :last-child, .framer-ij7Um .framer-rmav5u > :last-child, .framer-ij7Um .framer-h84mp2 > :last-child, .framer-ij7Um .framer-1rf1gkv > :last-child, .framer-ij7Um .framer-13mn5tv > :last-child, .framer-ij7Um .framer-1aezab7 > :last-child, .framer-ij7Um .framer-afigai > :last-child, .framer-ij7Um .framer-sf8bnv > :last-child, .framer-ij7Um .framer-12lvjtk > :last-child, .framer-ij7Um .framer-1mesllb > :last-child, .framer-ij7Um .framer-1260hm > :last-child, .framer-ij7Um .framer-sk55p8 > :last-child, .framer-ij7Um .framer-180ol5z > :last-child, .framer-ij7Um .framer-u7pb9v > :last-child, .framer-ij7Um .framer-63xvbd > :last-child, .framer-ij7Um .framer-1968bpv > :last-child, .framer-ij7Um .framer-1e7b9w1 > :last-child { margin-right: 0px; } .framer-ij7Um .framer-1amxfwn > *, .framer-ij7Um .framer-19f0yc8 > *, .framer-ij7Um .framer-582tqc > *, .framer-ij7Um .framer-1k2ieob > *, .framer-ij7Um .framer-wrhk9w > *, .framer-ij7Um .framer-1ks3v80 > *, .framer-ij7Um .framer-t22ype > *, .framer-ij7Um .framer-1v81ykc > *, .framer-ij7Um .framer-kneuzk > *, .framer-ij7Um .framer-1ozn1fn > *, .framer-ij7Um .framer-1ujcu90 > *, .framer-ij7Um .framer-u8zvei > *, .framer-ij7Um .framer-1c6hk8k > *, .framer-ij7Um .framer-1luuajc > *, .framer-ij7Um .framer-1bhx3ne > *, .framer-ij7Um .framer-1w509wt > *, .framer-ij7Um .framer-1rfvspd > *, .framer-ij7Um .framer-nu0aaw > *, .framer-ij7Um .framer-152w23d > *, .framer-ij7Um .framer-1wfuwv6 > *, .framer-ij7Um .framer-hdvulr > *, .framer-ij7Um .framer-cmkaop > *, .framer-ij7Um .framer-4j4c11 > *, .framer-ij7Um .framer-q3e0k > *, .framer-ij7Um .framer-18h0knt > *, .framer-ij7Um .framer-5mo2cr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ij7Um .framer-1bl6uko > *, .framer-ij7Um .framer-u7pb9v > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-ij7Um .framer-rygl50 > *, .framer-ij7Um .framer-1da6y9i > *, .framer-ij7Um .framer-10qxx2b > *, .framer-ij7Um .framer-1hckctq > *, .framer-ij7Um .framer-1nacdpn > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-ij7Um .framer-1pdltya > *, .framer-ij7Um .framer-1260hm > *, .framer-ij7Um .framer-1968bpv > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-ij7Um .framer-1sqpkib > *, .framer-ij7Um .framer-180ol5z > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ij7Um .framer-168gywk > *, .framer-ij7Um .framer-dlc3xw > *, .framer-ij7Um .framer-1i1zl48 > *, .framer-ij7Um .framer-3agqzi > *, .framer-ij7Um .framer-uml2zj > *, .framer-ij7Um .framer-1qclwb6 > *, .framer-ij7Um .framer-1c5sd96 > *, .framer-ij7Um .framer-vtp08h > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-ij7Um .framer-k26dyd > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-ij7Um .framer-x9vval > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-ij7Um .framer-1rkjqop > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-ij7Um[data-border=\"true\"]::after, .framer-ij7Um [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-ij7Um.framer-5hkqmi { width: 810px; } .framer-ij7Um .framer-h6sowy { flex-direction: column; gap: 50px; height: 1370px; } .framer-ij7Um .framer-1deliqe { flex: none; order: 1; padding: 125px 0px 0px 0px; width: 100%; z-index: 1; } .framer-ij7Um .framer-ndqt0z { height: 452px; z-index: 1; } .framer-ij7Um .framer-1amxfwn { height: 454px; padding: 0px 60px 0px 60px; } .framer-ij7Um .framer-19f0yc8, .framer-ij7Um .framer-umi6p6 { width: 100%; } .framer-ij7Um .framer-bevv8j, .framer-ij7Um .framer-anet6a { height: auto; width: 100%; } .framer-ij7Um .framer-8nhc1n { height: auto; width: 630px; } .framer-ij7Um .framer-10ymtex-container { flex: none; height: 741px; order: 2; width: 100%; } .framer-ij7Um .framer-13bgiqs { align-content: flex-end; align-items: flex-end; padding: 50px 50px 0px 50px; } .framer-ij7Um .framer-rygl50 { flex-direction: column; padding: 50px 50px 25px 50px; } .framer-ij7Um .framer-1k2ieob, .framer-ij7Um .framer-d0tgt7, .framer-ij7Um .framer-lr9sv0, .framer-ij7Um .framer-64d6ae, .framer-ij7Um .framer-1a50vsv, .framer-ij7Um .framer-j4v9nt, .framer-ij7Um .framer-1kntpmn, .framer-ij7Um .framer-11r49be-container, .framer-ij7Um .framer-1ypnysd { flex: none; width: 100%; } .framer-ij7Um .framer-1pdltya, .framer-ij7Um .framer-1260hm { flex-direction: column; gap: 50px; } .framer-ij7Um .framer-1da6y9i { flex-direction: column; } .framer-ij7Um .framer-t22ype { height: min-content; padding: 50px 0px 0px 0px; } .framer-ij7Um .framer-168gywk { padding: 0px; } .framer-ij7Um .framer-x9vval { width: 476px; } .framer-ij7Um .framer-5elsur, .framer-ij7Um .framer-e4chc, .framer-ij7Um .framer-1j3w3ri { gap: 100px; height: min-content; justify-content: center; } .framer-ij7Um .framer-1rkjqop { gap: 50px; } .framer-ij7Um .framer-16a2bkk { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 19px; justify-content: flex-start; } .framer-ij7Um .framer-1dx3xgq { height: 950px; } .framer-ij7Um .framer-180ol5z { flex-direction: column; padding: 75px 25px 75px 25px; } .framer-ij7Um .framer-5mo2cr { height: min-content; padding: 0px 25px 0px 25px; } .framer-ij7Um .framer-1u3oook { height: 211px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ij7Um .framer-h6sowy, .framer-ij7Um .framer-rygl50, .framer-ij7Um .framer-1pdltya, .framer-ij7Um .framer-1da6y9i, .framer-ij7Um .framer-5elsur, .framer-ij7Um .framer-e4chc, .framer-ij7Um .framer-1j3w3ri, .framer-ij7Um .framer-1rkjqop, .framer-ij7Um .framer-16a2bkk, .framer-ij7Um .framer-1260hm, .framer-ij7Um .framer-180ol5z { gap: 0px; } .framer-ij7Um .framer-h6sowy > *, .framer-ij7Um .framer-rygl50 > *, .framer-ij7Um .framer-1pdltya > *, .framer-ij7Um .framer-1da6y9i > *, .framer-ij7Um .framer-1rkjqop > *, .framer-ij7Um .framer-1260hm > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-ij7Um .framer-h6sowy > :first-child, .framer-ij7Um .framer-rygl50 > :first-child, .framer-ij7Um .framer-1pdltya > :first-child, .framer-ij7Um .framer-1da6y9i > :first-child, .framer-ij7Um .framer-5elsur > :first-child, .framer-ij7Um .framer-e4chc > :first-child, .framer-ij7Um .framer-1j3w3ri > :first-child, .framer-ij7Um .framer-1rkjqop > :first-child, .framer-ij7Um .framer-16a2bkk > :first-child, .framer-ij7Um .framer-1260hm > :first-child, .framer-ij7Um .framer-180ol5z > :first-child { margin-top: 0px; } .framer-ij7Um .framer-h6sowy > :last-child, .framer-ij7Um .framer-rygl50 > :last-child, .framer-ij7Um .framer-1pdltya > :last-child, .framer-ij7Um .framer-1da6y9i > :last-child, .framer-ij7Um .framer-5elsur > :last-child, .framer-ij7Um .framer-e4chc > :last-child, .framer-ij7Um .framer-1j3w3ri > :last-child, .framer-ij7Um .framer-1rkjqop > :last-child, .framer-ij7Um .framer-16a2bkk > :last-child, .framer-ij7Um .framer-1260hm > :last-child, .framer-ij7Um .framer-180ol5z > :last-child { margin-bottom: 0px; } .framer-ij7Um .framer-5elsur > *, .framer-ij7Um .framer-e4chc > *, .framer-ij7Um .framer-1j3w3ri > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-ij7Um .framer-16a2bkk > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-ij7Um .framer-180ol5z > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\",\"@media (min-width: 390px) and (max-width: 809px) { .framer-ij7Um.framer-5hkqmi { width: 390px; } .framer-ij7Um .framer-15ejjes-container { height: 66px; } .framer-ij7Um .framer-h6sowy { flex-direction: column; gap: 0px; height: 968px; } .framer-ij7Um .framer-1deliqe { flex: none; gap: 0px; order: 1; padding: 85px 0px 0px 0px; width: 100%; z-index: 1; } .framer-ij7Um .framer-ndqt0z { height: 400px; width: 25px; z-index: 1; } .framer-ij7Um .framer-1amxfwn { height: 460px; padding: 0px 25px 0px 25px; } .framer-ij7Um .framer-19f0yc8 { align-content: center; align-items: center; gap: 19px; width: 100%; } .framer-ij7Um .framer-umi6p6, .framer-ij7Um .framer-1oerncj { width: 100%; } .framer-ij7Um .framer-bevv8j, .framer-ij7Um .framer-8nhc1n, .framer-ij7Um .framer-anet6a { height: auto; width: 100%; } .framer-ij7Um .framer-1bl6uko, .framer-ij7Um .framer-u7pb9v { padding: 10px 0px 0px 0px; width: 100%; } .framer-ij7Um .framer-149d9js-container { align-self: unset; flex: 1 0 0px; height: 40px; width: 1px; } .framer-ij7Um .framer-1srb1pb-container { flex: 1 0 0px; height: 40px; width: 1px; } .framer-ij7Um .framer-10ymtex-container { flex: none; height: 389px; order: 2; width: 100%; } .framer-ij7Um .framer-13bgiqs { align-content: flex-end; align-items: flex-end; flex-direction: column; height: min-content; justify-content: flex-start; padding: 0px 25px 0px 25px; } .framer-ij7Um .framer-1y2qpwe, .framer-ij7Um .framer-1k2ieob, .framer-ij7Um .framer-d0tgt7, .framer-ij7Um .framer-lr9sv0, .framer-ij7Um .framer-64d6ae, .framer-ij7Um .framer-1a50vsv, .framer-ij7Um .framer-j4v9nt, .framer-ij7Um .framer-x8yoes, .framer-ij7Um .framer-1kntpmn, .framer-ij7Um .framer-7mq6co-container { flex: none; width: 100%; } .framer-ij7Um .framer-rygl50 { flex-direction: column; padding: 50px 25px 25px 25px; } .framer-ij7Um .framer-1pdltya { flex-direction: column; gap: 50px; padding: 0px 25px 50px 25px; } .framer-ij7Um .framer-1g7lxwh { padding: 0px 0px 50px 0px; } .framer-ij7Um .framer-1ks3v80 { gap: 0px; } .framer-ij7Um .framer-1xnt4nk { top: 14px; } .framer-ij7Um .framer-1sqpkib, .framer-ij7Um .framer-uml2zj, .framer-ij7Um .framer-1c5sd96 { padding: 50px 25px 0px 25px; } .framer-ij7Um .framer-1da6y9i { flex-direction: column; gap: 25px; padding: 0px 25px 0px 25px; } .framer-ij7Um .framer-t22ype { height: min-content; padding: 50px 0px 0px 0px; } .framer-ij7Um .framer-168gywk { gap: 25px; padding: 0px; } .framer-ij7Um .framer-x9vval { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 4px; } .framer-ij7Um .framer-c8lnxc { order: 0; } .framer-ij7Um .framer-1nupyib { justify-content: flex-start; order: 1; width: 100%; } .framer-ij7Um .framer-10qxx2b, .framer-ij7Um .framer-1hckctq, .framer-ij7Um .framer-1nacdpn, .framer-ij7Um .framer-sk55p8 { padding: 0px 25px 0px 25px; } .framer-ij7Um .framer-5elsur, .framer-ij7Um .framer-e4chc, .framer-ij7Um .framer-1j3w3ri { gap: 100px; height: min-content; justify-content: center; } .framer-ij7Um .framer-dlc3xw, .framer-ij7Um .framer-1i1zl48, .framer-ij7Um .framer-3agqzi { gap: 25px; } .framer-ij7Um .framer-1dxp82d { flex-direction: column; height: min-content; padding: 50px 25px 0px 25px; } .framer-ij7Um .framer-1rkjqop { gap: 50px; } .framer-ij7Um .framer-1qclwb6 { gap: 26px; } .framer-ij7Um .framer-16a2bkk { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 19px; justify-content: flex-start; } .framer-ij7Um .framer-vtp08h { padding: 50px 0px 75px 0px; } .framer-ij7Um .framer-1260hm { flex-direction: column; gap: 50px; } .framer-ij7Um .framer-1dx3xgq { height: 1150px; padding: 0px; } .framer-ij7Um .framer-180ol5z { flex-direction: column; padding: 0px; } .framer-ij7Um .framer-1ypnysd { flex: none; padding: 50px 20px 50px 20px; width: 100%; } .framer-ij7Um .framer-5mo2cr { height: min-content; padding: 0px 20px 0px 20px; } .framer-ij7Um .framer-5cprbw-container { flex: 1 0 0px; width: 1px; } .framer-ij7Um .framer-1u3oook { height: 173px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ij7Um .framer-h6sowy, .framer-ij7Um .framer-1deliqe, .framer-ij7Um .framer-19f0yc8, .framer-ij7Um .framer-13bgiqs, .framer-ij7Um .framer-rygl50, .framer-ij7Um .framer-1pdltya, .framer-ij7Um .framer-1ks3v80, .framer-ij7Um .framer-1da6y9i, .framer-ij7Um .framer-168gywk, .framer-ij7Um .framer-x9vval, .framer-ij7Um .framer-5elsur, .framer-ij7Um .framer-dlc3xw, .framer-ij7Um .framer-e4chc, .framer-ij7Um .framer-1i1zl48, .framer-ij7Um .framer-1j3w3ri, .framer-ij7Um .framer-3agqzi, .framer-ij7Um .framer-1dxp82d, .framer-ij7Um .framer-1rkjqop, .framer-ij7Um .framer-1qclwb6, .framer-ij7Um .framer-16a2bkk, .framer-ij7Um .framer-1260hm, .framer-ij7Um .framer-180ol5z { gap: 0px; } .framer-ij7Um .framer-h6sowy > *, .framer-ij7Um .framer-1ks3v80 > *, .framer-ij7Um .framer-180ol5z > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ij7Um .framer-h6sowy > :first-child, .framer-ij7Um .framer-19f0yc8 > :first-child, .framer-ij7Um .framer-13bgiqs > :first-child, .framer-ij7Um .framer-rygl50 > :first-child, .framer-ij7Um .framer-1pdltya > :first-child, .framer-ij7Um .framer-1ks3v80 > :first-child, .framer-ij7Um .framer-1da6y9i > :first-child, .framer-ij7Um .framer-168gywk > :first-child, .framer-ij7Um .framer-x9vval > :first-child, .framer-ij7Um .framer-5elsur > :first-child, .framer-ij7Um .framer-dlc3xw > :first-child, .framer-ij7Um .framer-e4chc > :first-child, .framer-ij7Um .framer-1i1zl48 > :first-child, .framer-ij7Um .framer-1j3w3ri > :first-child, .framer-ij7Um .framer-3agqzi > :first-child, .framer-ij7Um .framer-1dxp82d > :first-child, .framer-ij7Um .framer-1rkjqop > :first-child, .framer-ij7Um .framer-1qclwb6 > :first-child, .framer-ij7Um .framer-16a2bkk > :first-child, .framer-ij7Um .framer-1260hm > :first-child, .framer-ij7Um .framer-180ol5z > :first-child { margin-top: 0px; } .framer-ij7Um .framer-h6sowy > :last-child, .framer-ij7Um .framer-19f0yc8 > :last-child, .framer-ij7Um .framer-13bgiqs > :last-child, .framer-ij7Um .framer-rygl50 > :last-child, .framer-ij7Um .framer-1pdltya > :last-child, .framer-ij7Um .framer-1ks3v80 > :last-child, .framer-ij7Um .framer-1da6y9i > :last-child, .framer-ij7Um .framer-168gywk > :last-child, .framer-ij7Um .framer-x9vval > :last-child, .framer-ij7Um .framer-5elsur > :last-child, .framer-ij7Um .framer-dlc3xw > :last-child, .framer-ij7Um .framer-e4chc > :last-child, .framer-ij7Um .framer-1i1zl48 > :last-child, .framer-ij7Um .framer-1j3w3ri > :last-child, .framer-ij7Um .framer-3agqzi > :last-child, .framer-ij7Um .framer-1dxp82d > :last-child, .framer-ij7Um .framer-1rkjqop > :last-child, .framer-ij7Um .framer-1qclwb6 > :last-child, .framer-ij7Um .framer-16a2bkk > :last-child, .framer-ij7Um .framer-1260hm > :last-child, .framer-ij7Um .framer-180ol5z > :last-child { margin-bottom: 0px; } .framer-ij7Um .framer-1deliqe > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ij7Um .framer-1deliqe > :first-child { margin-left: 0px; } .framer-ij7Um .framer-1deliqe > :last-child { margin-right: 0px; } .framer-ij7Um .framer-19f0yc8 > *, .framer-ij7Um .framer-16a2bkk > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-ij7Um .framer-13bgiqs > *, .framer-ij7Um .framer-1dxp82d > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ij7Um .framer-rygl50 > *, .framer-ij7Um .framer-1pdltya > *, .framer-ij7Um .framer-1rkjqop > *, .framer-ij7Um .framer-1260hm > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-ij7Um .framer-1da6y9i > *, .framer-ij7Um .framer-168gywk > *, .framer-ij7Um .framer-dlc3xw > *, .framer-ij7Um .framer-1i1zl48 > *, .framer-ij7Um .framer-3agqzi > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-ij7Um .framer-x9vval > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-ij7Um .framer-5elsur > *, .framer-ij7Um .framer-e4chc > *, .framer-ij7Um .framer-1j3w3ri > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-ij7Um .framer-1qclwb6 > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } }}\",\"@media (max-width: 389px) { .framer-ij7Um.framer-5hkqmi { width: 320px; } .framer-ij7Um .framer-15ejjes-container { height: 65px; } .framer-ij7Um .framer-h6sowy { flex-direction: column; gap: 0px; height: 910px; } .framer-ij7Um .framer-1deliqe { flex: none; gap: 0px; order: 1; padding: 85px 0px 0px 0px; width: 100%; z-index: 1; } .framer-ij7Um .framer-ndqt0z { height: 400px; width: 25px; z-index: 1; } .framer-ij7Um .framer-1amxfwn { height: 460px; padding: 0px 15px 0px 15px; } .framer-ij7Um .framer-19f0yc8 { align-content: center; align-items: center; width: 100%; } .framer-ij7Um .framer-umi6p6, .framer-ij7Um .framer-1oerncj { width: 100%; } .framer-ij7Um .framer-bevv8j, .framer-ij7Um .framer-8nhc1n, .framer-ij7Um .framer-anet6a { height: auto; width: 100%; } .framer-ij7Um .framer-1bl6uko, .framer-ij7Um .framer-u7pb9v { gap: 10px; padding: 10px 0px 0px 0px; width: 100%; } .framer-ij7Um .framer-149d9js-container { align-self: unset; flex: 1 0 0px; height: 35px; width: 1px; } .framer-ij7Um .framer-1srb1pb-container, .framer-ij7Um .framer-5cprbw-container { flex: 1 0 0px; height: 35px; width: 1px; } .framer-ij7Um .framer-10ymtex-container { flex: none; height: 316px; order: 2; width: 100%; } .framer-ij7Um .framer-13bgiqs { align-content: flex-end; align-items: flex-end; flex-direction: column; height: min-content; justify-content: flex-start; padding: 0px 25px 0px 25px; } .framer-ij7Um .framer-1y2qpwe, .framer-ij7Um .framer-1k2ieob, .framer-ij7Um .framer-d0tgt7, .framer-ij7Um .framer-lr9sv0, .framer-ij7Um .framer-64d6ae, .framer-ij7Um .framer-1a50vsv, .framer-ij7Um .framer-j4v9nt, .framer-ij7Um .framer-x8yoes, .framer-ij7Um .framer-1kntpmn, .framer-ij7Um .framer-7mq6co-container { flex: none; width: 100%; } .framer-ij7Um .framer-rygl50 { flex-direction: column; padding: 50px 15px 25px 15px; } .framer-ij7Um .framer-1pdltya { flex-direction: column; gap: 50px; padding: 0px 15px 50px 15px; } .framer-ij7Um .framer-1g7lxwh { padding: 0px 0px 50px 0px; } .framer-ij7Um .framer-1ks3v80 { gap: 0px; } .framer-ij7Um .framer-1xnt4nk { top: 14px; } .framer-ij7Um .framer-1sqpkib, .framer-ij7Um .framer-1c5sd96 { padding: 50px 15px 0px 15px; } .framer-ij7Um .framer-1da6y9i { flex-direction: column; gap: 25px; padding: 0px 15px 0px 15px; } .framer-ij7Um .framer-t22ype { height: min-content; padding: 50px 0px 0px 0px; } .framer-ij7Um .framer-168gywk { gap: 25px; padding: 0px; } .framer-ij7Um .framer-x9vval { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 4px; } .framer-ij7Um .framer-c8lnxc { order: 0; } .framer-ij7Um .framer-1nupyib { justify-content: flex-start; order: 1; width: 100%; } .framer-ij7Um .framer-10qxx2b, .framer-ij7Um .framer-1nacdpn, .framer-ij7Um .framer-sk55p8 { padding: 0px 15px 0px 15px; } .framer-ij7Um .framer-5elsur, .framer-ij7Um .framer-e4chc, .framer-ij7Um .framer-1j3w3ri { gap: 100px; height: min-content; justify-content: center; } .framer-ij7Um .framer-dlc3xw, .framer-ij7Um .framer-1i1zl48, .framer-ij7Um .framer-3agqzi, .framer-ij7Um .framer-1qclwb6 { gap: 25px; } .framer-ij7Um .framer-1hckctq { padding: 0px 25px 0px 25px; } .framer-ij7Um .framer-1dxp82d { flex-direction: column; height: min-content; padding: 50px 25px 0px 25px; } .framer-ij7Um .framer-uml2zj { padding: 50px 25px 0px 15px; } .framer-ij7Um .framer-16a2bkk { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 25px; justify-content: flex-start; } .framer-ij7Um .framer-vtp08h { padding: 50px 0px 75px 0px; } .framer-ij7Um .framer-1260hm { flex-direction: column; } .framer-ij7Um .framer-1dx3xgq { height: 1130px; padding: 0px; } .framer-ij7Um .framer-180ol5z { flex-direction: column; padding: 0px; } .framer-ij7Um .framer-1ypnysd { flex: none; padding: 50px 20px 50px 20px; width: 100%; } .framer-ij7Um .framer-5mo2cr { height: min-content; padding: 0px 20px 0px 20px; } .framer-ij7Um .framer-1u3oook { height: 177px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ij7Um .framer-h6sowy, .framer-ij7Um .framer-1deliqe, .framer-ij7Um .framer-1bl6uko, .framer-ij7Um .framer-13bgiqs, .framer-ij7Um .framer-rygl50, .framer-ij7Um .framer-1pdltya, .framer-ij7Um .framer-1ks3v80, .framer-ij7Um .framer-1da6y9i, .framer-ij7Um .framer-168gywk, .framer-ij7Um .framer-x9vval, .framer-ij7Um .framer-5elsur, .framer-ij7Um .framer-dlc3xw, .framer-ij7Um .framer-e4chc, .framer-ij7Um .framer-1i1zl48, .framer-ij7Um .framer-1j3w3ri, .framer-ij7Um .framer-3agqzi, .framer-ij7Um .framer-1dxp82d, .framer-ij7Um .framer-1qclwb6, .framer-ij7Um .framer-16a2bkk, .framer-ij7Um .framer-1260hm, .framer-ij7Um .framer-180ol5z, .framer-ij7Um .framer-u7pb9v { gap: 0px; } .framer-ij7Um .framer-h6sowy > *, .framer-ij7Um .framer-1ks3v80 > *, .framer-ij7Um .framer-180ol5z > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ij7Um .framer-h6sowy > :first-child, .framer-ij7Um .framer-13bgiqs > :first-child, .framer-ij7Um .framer-rygl50 > :first-child, .framer-ij7Um .framer-1pdltya > :first-child, .framer-ij7Um .framer-1ks3v80 > :first-child, .framer-ij7Um .framer-1da6y9i > :first-child, .framer-ij7Um .framer-168gywk > :first-child, .framer-ij7Um .framer-x9vval > :first-child, .framer-ij7Um .framer-5elsur > :first-child, .framer-ij7Um .framer-dlc3xw > :first-child, .framer-ij7Um .framer-e4chc > :first-child, .framer-ij7Um .framer-1i1zl48 > :first-child, .framer-ij7Um .framer-1j3w3ri > :first-child, .framer-ij7Um .framer-3agqzi > :first-child, .framer-ij7Um .framer-1dxp82d > :first-child, .framer-ij7Um .framer-1qclwb6 > :first-child, .framer-ij7Um .framer-16a2bkk > :first-child, .framer-ij7Um .framer-1260hm > :first-child, .framer-ij7Um .framer-180ol5z > :first-child { margin-top: 0px; } .framer-ij7Um .framer-h6sowy > :last-child, .framer-ij7Um .framer-13bgiqs > :last-child, .framer-ij7Um .framer-rygl50 > :last-child, .framer-ij7Um .framer-1pdltya > :last-child, .framer-ij7Um .framer-1ks3v80 > :last-child, .framer-ij7Um .framer-1da6y9i > :last-child, .framer-ij7Um .framer-168gywk > :last-child, .framer-ij7Um .framer-x9vval > :last-child, .framer-ij7Um .framer-5elsur > :last-child, .framer-ij7Um .framer-dlc3xw > :last-child, .framer-ij7Um .framer-e4chc > :last-child, .framer-ij7Um .framer-1i1zl48 > :last-child, .framer-ij7Um .framer-1j3w3ri > :last-child, .framer-ij7Um .framer-3agqzi > :last-child, .framer-ij7Um .framer-1dxp82d > :last-child, .framer-ij7Um .framer-1qclwb6 > :last-child, .framer-ij7Um .framer-16a2bkk > :last-child, .framer-ij7Um .framer-1260hm > :last-child, .framer-ij7Um .framer-180ol5z > :last-child { margin-bottom: 0px; } .framer-ij7Um .framer-1deliqe > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ij7Um .framer-1deliqe > :first-child, .framer-ij7Um .framer-1bl6uko > :first-child, .framer-ij7Um .framer-u7pb9v > :first-child { margin-left: 0px; } .framer-ij7Um .framer-1deliqe > :last-child, .framer-ij7Um .framer-1bl6uko > :last-child, .framer-ij7Um .framer-u7pb9v > :last-child { margin-right: 0px; } .framer-ij7Um .framer-1bl6uko > *, .framer-ij7Um .framer-u7pb9v > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ij7Um .framer-13bgiqs > *, .framer-ij7Um .framer-1dxp82d > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ij7Um .framer-rygl50 > *, .framer-ij7Um .framer-1pdltya > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-ij7Um .framer-1da6y9i > *, .framer-ij7Um .framer-168gywk > *, .framer-ij7Um .framer-dlc3xw > *, .framer-ij7Um .framer-1i1zl48 > *, .framer-ij7Um .framer-3agqzi > *, .framer-ij7Um .framer-1qclwb6 > *, .framer-ij7Um .framer-16a2bkk > *, .framer-ij7Um .framer-1260hm > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-ij7Um .framer-x9vval > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-ij7Um .framer-5elsur > *, .framer-ij7Um .framer-e4chc > *, .framer-ij7Um .framer-1j3w3ri > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } }}\",\"@media (min-width: 1500px) and (max-width: 1699px) { .framer-ij7Um.framer-5hkqmi { width: 1500px; } .framer-ij7Um .framer-uml2zj { overflow: visible; } .framer-ij7Um .framer-1kntpmn { max-width: 1000px; } .framer-ij7Um .framer-u7pb9v { order: 6; } .framer-ij7Um .framer-63xvbd { order: 3; } .framer-ij7Um .framer-1968bpv { order: 4; } .framer-ij7Um .framer-1q070d2 { order: 5; }}\",\"@media (min-width: 1700px) { .framer-ij7Um.framer-5hkqmi { width: 1700px; } .framer-ij7Um .framer-uml2zj { overflow: visible; } .framer-ij7Um .framer-1kntpmn { max-width: 1000px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6189\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"iOPrHdomv\":{\"layout\":[\"fixed\",\"auto\"]},\"xOcdE8IWo\":{\"layout\":[\"fixed\",\"auto\"]},\"eMw2Ia642\":{\"layout\":[\"fixed\",\"auto\"]},\"Xjynlj_o4\":{\"layout\":[\"fixed\",\"auto\"]},\"SOOMKnLV0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"wEw5uh7Bp\":{\"pattern\":\":wEw5uh7Bp\",\"name\":\"about-us\"},\"jD99Zlu8e\":{\"pattern\":\":jD99Zlu8e\",\"name\":\"\"},\"eXY12XQa_\":{\"pattern\":\":eXY12XQa_\",\"name\":\"\"},\"UpDKmjEnQ\":{\"pattern\":\":UpDKmjEnQ\",\"name\":\"\"}}\n * @framerResponsiveScreen\n */const FramerhQuYMKCrQ=withCSS(Component,css,\"framer-ij7Um\");export default FramerhQuYMKCrQ;FramerhQuYMKCrQ.displayName=\"Home\";FramerhQuYMKCrQ.defaultProps={height:6189,width:1200};addFonts(FramerhQuYMKCrQ,[{explicitInter:true,fonts:[{family:\"Zwizz SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/SVfuzMtUmrQFA3Af2O9UKYKr5rM.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\"}]},...TopbarFonts,...ButtonFonts,...HomeSlideshowFonts,...SectionPlateFonts,...WordSlideLGFonts,...WordSlideSMFonts,...WordSlideXSFonts,...ArrowFonts,...CarouselFonts,...MeetTeamFonts,...TeamMemberFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhQuYMKCrQ\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"6189\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iOPrHdomv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xOcdE8IWo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eMw2Ia642\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Xjynlj_o4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SOOMKnLV0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"wEw5uh7Bp\\\":{\\\"pattern\\\":\\\":wEw5uh7Bp\\\",\\\"name\\\":\\\"about-us\\\"},\\\"jD99Zlu8e\\\":{\\\"pattern\\\":\\\":jD99Zlu8e\\\",\\\"name\\\":\\\"\\\"},\\\"eXY12XQa_\\\":{\\\"pattern\\\":\\\":eXY12XQa_\\\",\\\"name\\\":\\\"\\\"},\\\"UpDKmjEnQ\\\":{\\\"pattern\\\":\\\":UpDKmjEnQ\\\",\\\"name\\\":\\\"\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "n", "isNumber", "t", "isEasingList", "wrap", "e", "n", "o", "getEasingForSegment", "mix", "noopReturn", "t", "progress", "e", "n", "fillOffset", "o", "s", "mix", "defaultOffset", "interpolate", "f", "r", "clamp", "getEasingForSegment", "isFunction", "t", "isString", "e", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "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", "L", "T", "M", "e", "k", "noopReturn", "B", "asTransformCssVar", "j", "T", "L", "P", "j", "testAnimation", "e", "C", "R", "H", "resolveElements", "e", "n", "createGeneratorEasing", "e", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "U", "spring", "q", "glide", "K", "inView$1", "resolveElements", "onIntersectionChange", "isFunction", "G", "_", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "Z", "X", "createWindowResizeHandler", "window", "resizeWindow", "resize", "Y", "createAxisInfo", "createScrollInfo", "J", "updateAxisInfo", "progress", "velocityPerSecond", "updateScrollInfo", "calcInset", "Q", "ee", "resolveEdge", "isString", "isNumber", "te", "resolveOffset", "ne", "resolveOffsets", "interpolate", "defaultOffset", "measure", "createOnScrollHandler", "scrubAnimation", "noopReturn", "oe", "ie", "se", "getEventTarget", "scroll", "__rest", "listener", "dispatchPointerEvent", "e", "n", "dispatchViewEvent", "ae", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "ce", "le", "onPointerUp", "window", "onPointerDown", "fe", "ue", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "textColor", "title1", "title2", "title3", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "prRJoYo14", "zLT7JXi3G", "alrWq3yGr", "c_FQD8pO8", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear3yc0m1", "args", "CycleVariantState", "onAppear1a2vbif", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerEn_fsM4kI", "withCSS", "En_fsM4kI_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color", "height", "id", "title1", "title2", "title3", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "prRJoYo14", "zLT7JXi3G", "alrWq3yGr", "JGRUpwhkI", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear3yc0m1", "args", "CycleVariantState", "onAppear1a2vbif", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerfJI_rayKb", "withCSS", "fJI_rayKb_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "textColor", "title1", "title2", "title3", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "prRJoYo14", "zLT7JXi3G", "alrWq3yGr", "c_FQD8pO8", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear3yc0m1", "args", "CycleVariantState", "onAppear1a2vbif", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerfpesxMIGq", "withCSS", "fpesxMIGq_default", "addPropertyControls", "ControlType", "addFonts", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "frame", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "SlideshowFonts", "getFonts", "Slideshow", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Slideshow", "Image2", "css", "FramerLDKyoiX70", "withCSS", "LDKyoiX70_default", "addFonts", "SlideshowFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "CVvCqrIkG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "SVG", "css", "FramerrSsf4Xx_y", "withCSS", "rSsf4Xx_y_default", "addPropertyControls", "ControlType", "addFonts", "TopbarFonts", "getFonts", "F7OFxMrmr_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ButtonFonts", "UXlhYdsDb_default", "ContainerWithOptimizedAppearEffect", "Container", "HomeSlideshowFonts", "LDKyoiX70_default", "SectionPlateFonts", "GNZK2O25v_default", "MotionDivWithFX", "withFX", "motion", "WordSlideLGFonts", "fJI_rayKb_default", "WordSlideSMFonts", "fpesxMIGq_default", "WordSlideXSFonts", "En_fsM4kI_default", "ArrowFonts", "jcWAYCRyh_default", "CarouselFonts", "Carousel", "MeetTeamFonts", "rSsf4Xx_y_default", "TeamMemberFonts", "ns1jqNPwE_default", "ContainerWithFX", "FooterFonts", "NeSUJYJIM_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "animation8", "transition6", "animation9", "addImageAlt", "image", "alt", "animation10", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "isDisplayed5", "isDisplayed6", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "SVG", "Link", "css", "FramerhQuYMKCrQ", "withCSS", "hQuYMKCrQ_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
