{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/hJnPsNvzkKr7mec6ZjS5/vinusdNJKL6L9IsMIXby/IR4h7WFgY.js", "ssg:https://framerusercontent.com/modules/8GbV8dSJ8ssnQOlQV38r/XdKTMiSK0W6MKrgFRqH2/wX8rvsFX8.js", "ssg:https://framerusercontent.com/modules/1wYIGuz5ikTbOR4FMFMc/EBCnKDajmd8tJKyeedqe/bsJ9Xm8zR.js", "ssg:https://framerusercontent.com/modules/dhJca6aFiv26AJ3yZveu/OlAcKI48yvQdle0pbvFg/v6J71fHRf.js", "ssg:https://framerusercontent.com/modules/mpW2kHdAgMTSM7glFDgh/JPfmIapt17yR8n20hMhO/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (3fcc21f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"IRd2FUloa\",\"mEfPPbdrO\",\"WuEQ2Qrwj\"];const serializationHash=\"framer-WU2lR\";const variantClassNames={IRd2FUloa:\"framer-v-16lg78z\",mEfPPbdrO:\"framer-v-1snfjs9\",WuEQ2Qrwj:\"framer-v-1plk5qx\"};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 numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==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={\"Review 1\":\"IRd2FUloa\",\"Review 2\":\"mEfPPbdrO\",\"Review 3\":\"WuEQ2Qrwj\"};const getProps=({bodyFontSize,gap,handleFontColor,handleFontSize,height,id,name1,nameFontColor,nameFontSize,padding,profileImageUpload,profileImageVisible,reviewCardBorder,reviewCardFill,reviewFontColor,shadow,socialMediaHandle,testimonial,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_ref8,_ref9,_ref10,_ref11,_humanReadableVariantMap_props_variant,_ref12,_ref13,_ref14;return{...props,CKWlZg46H:(_ref=gap!==null&&gap!==void 0?gap:props.CKWlZg46H)!==null&&_ref!==void 0?_ref:30,dkqbZPRjZ:(_ref1=name1!==null&&name1!==void 0?name1:props.dkqbZPRjZ)!==null&&_ref1!==void 0?_ref1:\"John Doe\",dn7qayYix:(_ref2=reviewFontColor!==null&&reviewFontColor!==void 0?reviewFontColor:props.dn7qayYix)!==null&&_ref2!==void 0?_ref2:\"rgb(0, 0, 0)\",f1hGfMASU:profileImageVisible!==null&&profileImageVisible!==void 0?profileImageVisible:props.f1hGfMASU,FbdW21Zu3:(_ref3=handleFontSize!==null&&handleFontSize!==void 0?handleFontSize:props.FbdW21Zu3)!==null&&_ref3!==void 0?_ref3:16,g5EHIof8X:(_ref4=shadow!==null&&shadow!==void 0?shadow:props.g5EHIof8X)!==null&&_ref4!==void 0?_ref4:[{blur:5,color:\"rgba(0,0,0,0.25)\",diffusion:.25,focus:.5,inset:false,spread:0,type:\"realistic\",x:0,y:10},{blur:4,color:\"rgba(0,0,0,0.25)\",diffusion:.4,focus:.5,inset:false,spread:0,type:\"realistic\",x:3,y:10}],jQVXhpfjz:(_ref5=padding!==null&&padding!==void 0?padding:props.jQVXhpfjz)!==null&&_ref5!==void 0?_ref5:\"30px\",Kh1QAilBi:(_ref6=bodyFontSize!==null&&bodyFontSize!==void 0?bodyFontSize:props.Kh1QAilBi)!==null&&_ref6!==void 0?_ref6:18,NO9YbFxlQ:(_ref7=testimonial!==null&&testimonial!==void 0?testimonial:props.NO9YbFxlQ)!==null&&_ref7!==void 0?_ref7:\"So and so did an incredible job with X and Y that now they're my go-to when it comes to handling X.\",q9uhhDog9:profileImageUpload!==null&&profileImageUpload!==void 0?profileImageUpload:props.q9uhhDog9,TZSOFfcI7:(_ref8=nameFontSize!==null&&nameFontSize!==void 0?nameFontSize:props.TZSOFfcI7)!==null&&_ref8!==void 0?_ref8:22,uajD9xaia:(_ref9=nameFontColor!==null&&nameFontColor!==void 0?nameFontColor:props.uajD9xaia)!==null&&_ref9!==void 0?_ref9:\"rgb(0, 0, 0)\",un58Tm6IO:(_ref10=reviewCardFill!==null&&reviewCardFill!==void 0?reviewCardFill:props.un58Tm6IO)!==null&&_ref10!==void 0?_ref10:\"rgba(194, 169, 143, 0.13)\",V8EwIgwys:(_ref11=reviewCardBorder!==null&&reviewCardBorder!==void 0?reviewCardBorder:props.V8EwIgwys)!==null&&_ref11!==void 0?_ref11:{borderColor:\"rgba(133, 79, 48, 0.61)\",borderStyle:\"solid\",borderWidth:1},variant:(_ref12=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref12!==void 0?_ref12:\"IRd2FUloa\",W15XWkWWn:(_ref13=socialMediaHandle!==null&&socialMediaHandle!==void 0?socialMediaHandle:props.W15XWkWWn)!==null&&_ref13!==void 0?_ref13:\"@JDoe4Life\",XO0pFsIbb:(_ref14=handleFontColor!==null&&handleFontColor!==void 0?handleFontColor:props.XO0pFsIbb)!==null&&_ref14!==void 0?_ref14:\"rgb(0, 0, 0)\"};};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,f1hGfMASU,dkqbZPRjZ,W15XWkWWn,q9uhhDog9,NO9YbFxlQ,un58Tm6IO,g5EHIof8X,uajD9xaia,XO0pFsIbb,dn7qayYix,V8EwIgwys,Kh1QAilBi,TZSOFfcI7,FbdW21Zu3,CKWlZg46H,jQVXhpfjz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"IRd2FUloa\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _V8EwIgwys_borderBottomWidth,_V8EwIgwys_borderLeftWidth,_V8EwIgwys_borderRightWidth,_V8EwIgwys_borderTopWidth;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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-16lg78z\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Review 1\",layoutDependency:layoutDependency,layoutId:\"IRd2FUloa\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--1ffo77e\":CKWlZg46H,\"--border-bottom-width\":`${(_V8EwIgwys_borderBottomWidth=V8EwIgwys.borderBottomWidth)!==null&&_V8EwIgwys_borderBottomWidth!==void 0?_V8EwIgwys_borderBottomWidth:V8EwIgwys.borderWidth}px`,\"--border-color\":V8EwIgwys.borderColor,\"--border-left-width\":`${(_V8EwIgwys_borderLeftWidth=V8EwIgwys.borderLeftWidth)!==null&&_V8EwIgwys_borderLeftWidth!==void 0?_V8EwIgwys_borderLeftWidth:V8EwIgwys.borderWidth}px`,\"--border-right-width\":`${(_V8EwIgwys_borderRightWidth=V8EwIgwys.borderRightWidth)!==null&&_V8EwIgwys_borderRightWidth!==void 0?_V8EwIgwys_borderRightWidth:V8EwIgwys.borderWidth}px`,\"--border-style\":V8EwIgwys.borderStyle,\"--border-top-width\":`${(_V8EwIgwys_borderTopWidth=V8EwIgwys.borderTopWidth)!==null&&_V8EwIgwys_borderTopWidth!==void 0?_V8EwIgwys_borderTopWidth:V8EwIgwys.borderWidth}px`,\"--w61bn0\":numberToPixelString(jQVXhpfjz),\"--xrj3ee\":g5EHIof8X,backgroundColor:un58Tm6IO,borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,boxShadow:\"var(--xrj3ee)\",...style},...addPropertyOverrides({mEfPPbdrO:{\"data-framer-name\":\"Review 2\"},WuEQ2Qrwj:{\"data-framer-name\":\"Review 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aeqig3\",\"data-framer-name\":\"Name and quote wrapper\",layoutDependency:layoutDependency,layoutId:\"URGBnaO4g\",children:[f1hGfMASU&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,sizes:\"50px\",...toResponsiveImage(q9uhhDog9),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-11msrnk\",layoutDependency:layoutDependency,layoutId:\"MUTJ_xF1i\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2430,intrinsicWidth:2430,pixelHeight:2430,pixelWidth:2430,sizes:\"45px\",src:\"https://framerusercontent.com/images/ChMrMu6bqfUTmROoiw3rd0Ozh8.png\",srcSet:\"https://framerusercontent.com/images/ChMrMu6bqfUTmROoiw3rd0Ozh8.png?scale-down-to=512 512w,https://framerusercontent.com/images/ChMrMu6bqfUTmROoiw3rd0Ozh8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ChMrMu6bqfUTmROoiw3rd0Ozh8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ChMrMu6bqfUTmROoiw3rd0Ozh8.png 2430w\"},className:\"framer-1pzbn8\",\"data-framer-name\":\"Quotation_Mark_Graphic\",layoutDependency:layoutDependency,layoutId:\"QPX2GRhZ3\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QmVzcG9rZSBTZXJpZi1saWdodA==\",\"--framer-font-family\":'\"Bespoke Serif\", \"Bespoke Serif Placeholder\", serif',\"--framer-font-size\":\"calc(var(--variable-reference-Kh1QAilBi-IR4h7WFgY) * 1px)\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.15em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-dn7qayYix-IR4h7WFgY))\"},children:\"So and so did an incredible job with X and Y that now they're my go-to when it comes to handling X.\"})}),className:\"framer-1eecdbf\",fonts:[\"FS;Bespoke Serif-light\"],layoutDependency:layoutDependency,layoutId:\"apS0u3g1D\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-dn7qayYix-IR4h7WFgY)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-dn7qayYix-IR4h7WFgY\":dn7qayYix,\"--variable-reference-Kh1QAilBi-IR4h7WFgY\":Kh1QAilBi},text:NO9YbFxlQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cfixoo\",layoutDependency:layoutDependency,layoutId:\"hMFItafcA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QmVzcG9rZSBTZXJpZi1yZWd1bGFy\",\"--framer-font-family\":'\"Bespoke Serif\", \"Bespoke Serif Placeholder\", serif',\"--framer-font-size\":\"calc(var(--variable-reference-TZSOFfcI7-IR4h7WFgY) * 1px)\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-uajD9xaia-IR4h7WFgY))\"},children:\"John Doe\"})}),className:\"framer-psqkny\",fonts:[\"FS;Bespoke Serif-regular\"],layoutDependency:layoutDependency,layoutId:\"FkGtNVvZ8\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-uajD9xaia-IR4h7WFgY)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-TZSOFfcI7-IR4h7WFgY\":TZSOFfcI7,\"--variable-reference-uajD9xaia-IR4h7WFgY\":uajD9xaia},text:dkqbZPRjZ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QmVzcG9rZSBTZXJpZi1saWdodA==\",\"--framer-font-family\":'\"Bespoke Serif\", \"Bespoke Serif Placeholder\", serif',\"--framer-font-size\":\"calc(var(--variable-reference-FbdW21Zu3-IR4h7WFgY) * 1px)\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-XO0pFsIbb-IR4h7WFgY))\"},children:\"@JDoe4Life\"})}),className:\"framer-4ostcx\",fonts:[\"FS;Bespoke Serif-light\"],layoutDependency:layoutDependency,layoutId:\"Y6JTOkGgP\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-XO0pFsIbb-IR4h7WFgY)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-FbdW21Zu3-IR4h7WFgY\":FbdW21Zu3,\"--variable-reference-XO0pFsIbb-IR4h7WFgY\":XO0pFsIbb},text:W15XWkWWn,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WU2lR.framer-1lajumb, .framer-WU2lR .framer-1lajumb { display: block; }\",\".framer-WU2lR.framer-16lg78z { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--1ffo77e)) * 1px); height: min-content; justify-content: flex-start; padding: var(--w61bn0); position: relative; width: 320px; }\",\".framer-WU2lR .framer-1aeqig3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WU2lR .framer-11msrnk { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WU2lR .framer-1pzbn8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); overflow: visible; position: relative; width: 45px; }\",\".framer-WU2lR .framer-1eecdbf { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WU2lR .framer-1cfixoo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WU2lR .framer-psqkny, .framer-WU2lR .framer-4ostcx { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WU2lR.framer-16lg78z, .framer-WU2lR .framer-1aeqig3, .framer-WU2lR .framer-1cfixoo { gap: 0px; } .framer-WU2lR.framer-16lg78z > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--1ffo77e)) * 1px) / 2); margin-top: calc(calc(max(0, var(--1ffo77e)) * 1px) / 2); } .framer-WU2lR.framer-16lg78z > :first-child, .framer-WU2lR .framer-1cfixoo > :first-child { margin-top: 0px; } .framer-WU2lR.framer-16lg78z > :last-child, .framer-WU2lR .framer-1cfixoo > :last-child { margin-bottom: 0px; } .framer-WU2lR .framer-1aeqig3 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-WU2lR .framer-1aeqig3 > :first-child { margin-left: 0px; } .framer-WU2lR .framer-1aeqig3 > :last-child { margin-right: 0px; } .framer-WU2lR .framer-1cfixoo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",'.framer-WU2lR[data-border=\"true\"]::after, .framer-WU2lR [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 306\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mEfPPbdrO\":{\"layout\":[\"fixed\",\"auto\"]},\"WuEQ2Qrwj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"f1hGfMASU\":\"profileImageVisible\",\"dkqbZPRjZ\":\"name1\",\"W15XWkWWn\":\"socialMediaHandle\",\"q9uhhDog9\":\"profileImageUpload\",\"NO9YbFxlQ\":\"testimonial\",\"un58Tm6IO\":\"reviewCardFill\",\"g5EHIof8X\":\"shadow\",\"uajD9xaia\":\"nameFontColor\",\"XO0pFsIbb\":\"handleFontColor\",\"dn7qayYix\":\"reviewFontColor\",\"V8EwIgwys\":\"reviewCardBorder\",\"Kh1QAilBi\":\"bodyFontSize\",\"TZSOFfcI7\":\"nameFontSize\",\"FbdW21Zu3\":\"handleFontSize\",\"CKWlZg46H\":\"gap\",\"jQVXhpfjz\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIR4h7WFgY=withCSS(Component,css,\"framer-WU2lR\");export default FramerIR4h7WFgY;FramerIR4h7WFgY.displayName=\"Testimonial Card\";FramerIR4h7WFgY.defaultProps={height:306,width:320};addPropertyControls(FramerIR4h7WFgY,{variant:{options:[\"IRd2FUloa\",\"mEfPPbdrO\",\"WuEQ2Qrwj\"],optionTitles:[\"Review 1\",\"Review 2\",\"Review 3\"],title:\"Variant\",type:ControlType.Enum},f1hGfMASU:{defaultValue:false,title:\"Profile Image Visible\",type:ControlType.Boolean},dkqbZPRjZ:{defaultValue:\"John Doe\",displayTextArea:false,title:\"Name\",type:ControlType.String},W15XWkWWn:{defaultValue:\"@JDoe4Life\",displayTextArea:false,title:\"Social Media Handle\",type:ControlType.String},q9uhhDog9:{title:\"Profile Image Upload\",type:ControlType.ResponsiveImage},NO9YbFxlQ:{defaultValue:\"So and so did an incredible job with X and Y that now they're my go-to when it comes to handling X.\",displayTextArea:false,title:\"Testimonial\",type:ControlType.String},un58Tm6IO:{defaultValue:\"rgba(194, 169, 143, 0.13)\",title:\"Review Card Fill\",type:ControlType.Color},g5EHIof8X:{defaultValue:[{blur:5,color:\"rgba(0,0,0,0.25)\",diffusion:.25,focus:.5,inset:false,spread:0,type:\"realistic\",x:0,y:10},{blur:4,color:\"rgba(0,0,0,0.25)\",diffusion:.4,focus:.5,inset:false,spread:0,type:\"realistic\",x:3,y:10}],title:\"Shadow\",type:ControlType.BoxShadow},uajD9xaia:{defaultValue:\"rgb(0, 0, 0)\",title:\"Name Font Color\",type:ControlType.Color},XO0pFsIbb:{defaultValue:\"rgb(0, 0, 0)\",title:\"Handle Font Color\",type:ControlType.Color},dn7qayYix:{defaultValue:\"rgb(0, 0, 0)\",title:\"Review Font Color\",type:ControlType.Color},V8EwIgwys:{defaultValue:{borderColor:\"rgba(133, 79, 48, 0.61)\",borderStyle:\"solid\",borderWidth:1},title:\"Review Card Border\",type:ControlType.Border},Kh1QAilBi:{defaultValue:18,title:\"Body Font Size\",type:ControlType.Number},TZSOFfcI7:{defaultValue:22,title:\"Name Font Size\",type:ControlType.Number},FbdW21Zu3:{defaultValue:16,title:\"Handle Font Size\",type:ControlType.Number},CKWlZg46H:{defaultValue:30,min:0,title:\"Gap\",type:ControlType.Number},jQVXhpfjz:{defaultValue:\"30px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerIR4h7WFgY,[{explicitInter:true,fonts:[{family:\"Bespoke Serif\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CJJCHKBHDTGLETO5BRZ46UGR4TE2CYUR/VHH43O3FGXKF4RFMPYXWG72QP572N7EB/4SUX34SCSGLRAAS6PP4FWR6B7JQTM4JE.woff2\",weight:\"300\"},{family:\"Bespoke Serif\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/DGL7AR63QELJFTOEASXHFYM5NAKYODNK/GYJUWP667LEHZ5W2WM5CQDIWDFJX2DFY/DLLWXFUYSJGEWBBZLWVRWRKWK2K5HHIO.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIR4h7WFgY\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mEfPPbdrO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WuEQ2Qrwj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"306\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"f1hGfMASU\\\":\\\"profileImageVisible\\\",\\\"dkqbZPRjZ\\\":\\\"name1\\\",\\\"W15XWkWWn\\\":\\\"socialMediaHandle\\\",\\\"q9uhhDog9\\\":\\\"profileImageUpload\\\",\\\"NO9YbFxlQ\\\":\\\"testimonial\\\",\\\"un58Tm6IO\\\":\\\"reviewCardFill\\\",\\\"g5EHIof8X\\\":\\\"shadow\\\",\\\"uajD9xaia\\\":\\\"nameFontColor\\\",\\\"XO0pFsIbb\\\":\\\"handleFontColor\\\",\\\"dn7qayYix\\\":\\\"reviewFontColor\\\",\\\"V8EwIgwys\\\":\\\"reviewCardBorder\\\",\\\"Kh1QAilBi\\\":\\\"bodyFontSize\\\",\\\"TZSOFfcI7\\\":\\\"nameFontSize\\\",\\\"FbdW21Zu3\\\":\\\"handleFontSize\\\",\\\"CKWlZg46H\\\":\\\"gap\\\",\\\"jQVXhpfjz\\\":\\\"padding\\\"}\",\"framerIntrinsicWidth\":\"320\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IR4h7WFgY.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"WDCKkiqKc\",\"Avbtgrtfy\"];const serializationHash=\"framer-qapwg\";const variantClassNames={Avbtgrtfy:\"framer-v-1uwe2rh\",WDCKkiqKc:\"framer-v-7v18qj\"};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:0,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(React.Fragment);const humanReadableVariantMap={\"Opacity 0\":\"Avbtgrtfy\",\"Variant 1\":\"WDCKkiqKc\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WDCKkiqKc\"};};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({cycleOrder,defaultVariant:\"WDCKkiqKc\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1h9udgx=activeVariantCallback(async(...args)=>{setVariant(\"Avbtgrtfy\");});useOnVariantChange(baseVariant,{Avbtgrtfy:undefined,default:onAppear1h9udgx});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(Image,{...restProps,...gestureHandlers,background:{alt:\"\",backgroundSize:1,fit:\"tile\",pixelHeight:256,pixelWidth:256,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-7v18qj\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WDCKkiqKc\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:1,...style},variants:{Avbtgrtfy:{opacity:0}},...addPropertyOverrides({Avbtgrtfy:{\"data-framer-name\":\"Opacity 0\",\"data-highlight\":undefined}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qapwg.framer-9ymo0f, .framer-qapwg .framer-9ymo0f { display: block; }\",\".framer-qapwg.framer-7v18qj { height: 800px; position: relative; width: 1200px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Avbtgrtfy\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwX8rvsFX8=withCSS(Component,css,\"framer-qapwg\");export default FramerwX8rvsFX8;FramerwX8rvsFX8.displayName=\"Grain Effect Component\";FramerwX8rvsFX8.defaultProps={height:800,width:1200};addPropertyControls(FramerwX8rvsFX8,{variant:{options:[\"WDCKkiqKc\",\"Avbtgrtfy\"],optionTitles:[\"Variant 1\",\"Opacity 0\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerwX8rvsFX8,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwX8rvsFX8\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"800\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Avbtgrtfy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wX8rvsFX8.map", "// Generated by Framer (575e68f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Cormorant Garamond-700\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Cormorant Garamond\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vvAWJ5heb_w.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-APz1g .framer-styles-preset-15x5rin:not(.rich-text-wrapper), .framer-APz1g .framer-styles-preset-15x5rin.rich-text-wrapper h2 { --framer-font-family: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 68px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -2.6px; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-02848c9e-eebb-49ab-92c1-0ef2f131911a, #c1a88e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-APz1g .framer-styles-preset-15x5rin:not(.rich-text-wrapper), .framer-APz1g .framer-styles-preset-15x5rin.rich-text-wrapper h2 { --framer-font-family: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 54px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -2.6px; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-02848c9e-eebb-49ab-92c1-0ef2f131911a, #c1a88e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-APz1g .framer-styles-preset-15x5rin:not(.rich-text-wrapper), .framer-APz1g .framer-styles-preset-15x5rin.rich-text-wrapper h2 { --framer-font-family: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 44px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -2.6px; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-02848c9e-eebb-49ab-92c1-0ef2f131911a, #c1a88e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-APz1g\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (575e68f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Bespoke Serif-light italic\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Bespoke Serif\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2PSLJEB6CXRUK3O666TIWMY7BA45GJ2F/SVLOKUEJ3DYAJ4TKQGQYABXIO7NEL57W/JY6T5TIASDWQEULE5B7Z6EGZTYBOFMS4.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-KRnJf .framer-styles-preset-1frrcr4:not(.rich-text-wrapper), .framer-KRnJf .framer-styles-preset-1frrcr4.rich-text-wrapper p { --framer-font-family: \"Bespoke Serif\", \"Bespoke Serif Placeholder\", serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: italic; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 300; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.15em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-d31ccc3d-33d2-4191-a27b-548fd41c9d90, #ae6741); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-KRnJf .framer-styles-preset-1frrcr4:not(.rich-text-wrapper), .framer-KRnJf .framer-styles-preset-1frrcr4.rich-text-wrapper p { --framer-font-family: \"Bespoke Serif\", \"Bespoke Serif Placeholder\", serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: italic; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 300; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.15em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-d31ccc3d-33d2-4191-a27b-548fd41c9d90, #ae6741); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-KRnJf .framer-styles-preset-1frrcr4:not(.rich-text-wrapper), .framer-KRnJf .framer-styles-preset-1frrcr4.rich-text-wrapper p { --framer-font-family: \"Bespoke Serif\", \"Bespoke Serif Placeholder\", serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: italic; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 300; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.15em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-d31ccc3d-33d2-4191-a27b-548fd41c9d90, #ae6741); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-KRnJf\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import NavBarTop from\"#framer/local/canvasComponent/b3DLXkUAp/b3DLXkUAp.js\";import MainButtonCTAWrapWithBottomText from\"#framer/local/canvasComponent/EQuKncWdS/EQuKncWdS.js\";import TestimonialCard from\"#framer/local/canvasComponent/IR4h7WFgY/IR4h7WFgY.js\";import Button from\"#framer/local/canvasComponent/iV96uF8ZA/iV96uF8ZA.js\";import HowItWorksCard from\"#framer/local/canvasComponent/MXdYGXlh4/MXdYGXlh4.js\";import Footer from\"#framer/local/canvasComponent/pqoCJmnBK/pqoCJmnBK.js\";import GrainEffectComponent from\"#framer/local/canvasComponent/wX8rvsFX8/wX8rvsFX8.js\";import*as sharedStyle2 from\"#framer/local/css/bsJ9Xm8zR/bsJ9Xm8zR.js\";import*as sharedStyle3 from\"#framer/local/css/CEXg3bMOG/CEXg3bMOG.js\";import*as sharedStyle7 from\"#framer/local/css/egxPxlzDR/egxPxlzDR.js\";import*as sharedStyle4 from\"#framer/local/css/JUeS11LQx/JUeS11LQx.js\";import*as sharedStyle from\"#framer/local/css/kN6Wj5gBK/kN6Wj5gBK.js\";import*as sharedStyle1 from\"#framer/local/css/pdgpFw_6g/pdgpFw_6g.js\";import*as sharedStyle6 from\"#framer/local/css/v6J71fHRf/v6J71fHRf.js\";import*as sharedStyle5 from\"#framer/local/css/ZFoqjsQ6f/ZFoqjsQ6f.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavBarTopFonts=getFonts(NavBarTop);const NavBarTopWithVariantAppearEffect=withVariantAppearEffect(NavBarTop);const ContainerWithFX=withFX(Container);const GrainEffectComponentFonts=getFonts(GrainEffectComponent);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const MainButtonCTAWrapWithBottomTextFonts=getFonts(MainButtonCTAWrapWithBottomText);const ButtonFonts=getFonts(Button);const RichTextWithFX=withFX(RichText);const ImageWithFX=withFX(Image);const TickerFonts=getFonts(Ticker);const TestimonialCardFonts=getFonts(TestimonialCard);const HowItWorksCardFonts=getFonts(HowItWorksCard);const FooterFonts=getFonts(Footer);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const breakpoints={bBhb2Tv5j:\"(min-width: 810px) and (max-width: 1199px)\",uL4lTe2uF:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-x0dfH\";const variantClassNames={bBhb2Tv5j:\"framer-v-oecj5v\",uL4lTe2uF:\"framer-v-1d5cy84\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:100};const transition1={damping:83,delay:.05,mass:1,stiffness:400,type:\"spring\"};const getTextEffect=ref=>({effect:animation,startDelay:.2,target:{ref},threshold:.5,tokenization:\"word\",transition:transition1,trigger:\"onScrollTarget\",type:\"appear\"});const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition2={bounce:.2,delay:0,duration:.68,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:150};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:150,y:0};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,y:-5};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:-150,y:0};const transition4={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation8={opacity:.5,rotate:0,rotateX:0,rotateY:30,scale:.9,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transition5={delay:2.5,duration:.66,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"uL4lTe2uF\",Tablet:\"bBhb2Tv5j\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const elementId=useRouteElementId(\"LILGDCcY1\");const ref4=React.useRef(null);const elementId1=useRouteElementId(\"zZlnC15mF\");const elementId2=useRouteElementId(\"DxRxjd2LJ\");const ref5=React.useRef(null);const elementId3=useRouteElementId(\"rxnzfAYLg\");const ref6=React.useRef(null);const router=useRouter();const elementId4=useRouteElementId(\"P61hExpRW\");const ref7=React.useRef(null);const elementId5=useRouteElementId(\"gXc1XZ0Uh\");const ref8=React.useRef(null);const elementId6=useRouteElementId(\"mGH6Tntqm\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"uL4lTe2uF\")return true;return false;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wkbp19-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"Y2cFIopuf\",intensity:10,layoutId:\"Y2cFIopuf\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:155,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-290}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ocz52a-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uL4lTe2uF:{H_T7HDEUy:\"center\",mBgjTFLrx:\"20px\",variant:\"vpx8YclR_\"}},children:/*#__PURE__*/_jsx(NavBarTopWithVariantAppearEffect,{__framer__animateOnce:true,__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,ghv0r3HVW:\"rgb(248, 248, 248)\",H_T7HDEUy:\"flex-start\",height:\"100%\",id:\"wplLZ18RU\",layoutId:\"wplLZ18RU\",mBgjTFLrx:\"10px\",q1rbovd3N:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\",style:{width:\"100%\"},variant:\"CeUteJPs5\",vmQpuZSYr:\"var(--token-02848c9e-eebb-49ab-92c1-0ef2f131911a, rgb(193, 168, 142))\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sy86do\",\"data-framer-name\":\"Video Wrapper\",id:elementId,ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uL4lTe2uF:{y:(componentViewport?.y||0)+0+0+22737367544323206e-29}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+200+22737367544323206e-29,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d7y8dt-container\",children:/*#__PURE__*/_jsx(GrainEffectComponent,{height:\"100%\",id:\"sZ2gtGSxk\",layoutId:\"sZ2gtGSxk\",style:{height:\"100%\",width:\"100%\"},variant:\"WDCKkiqKc\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17m84i9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1qc8zx3\",\"data-styles-preset\":\"kN6Wj5gBK\",style:{\"--framer-text-color\":\"var(--token-02848c9e-eebb-49ab-92c1-0ef2f131911a, rgb(193, 168, 142))\"},children:\"Restorative Manual Lymphatic Drainage Tailored for Everyone\"})}),className:\"framer-147cuij\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kga8u8-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"cbHEm_jgO\",isMixedBorderRadius:false,layoutId:\"cbHEm_jgO\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/Ln8BmWPl2YMbrUhZoBubCD690.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hj0se3\",\"data-framer-name\":\"Gradiant Fade Out Bottom\"})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-10lcray\",\"data-framer-name\":\"H2 Header\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aowx10\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-l0m9nr\",\"data-styles-preset\":\"pdgpFw_6g\",children:\"Specialized lymphatic drainage for holistic healing and personalized care.\"})}),className:\"framer-1wi8wgv\",effect:getTextEffect(ref3),fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uL4lTe2uF:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1000px)`,y:(componentViewport?.y||0)+0+1e3+24+11.299999999999997+0+60.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:169,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1000px)`,y:(componentViewport?.y||0)+0+1200+40+-14210854715202004e-30+0+60.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s61at-container\",children:/*#__PURE__*/_jsx(MainButtonCTAWrapWithBottomText,{ciPJLfRo_:\"rgb(252, 222, 189)\",euuaeYdc6:\"New Client Specials Available!\",height:\"100%\",id:\"dClZUmSyR\",layoutId:\"dClZUmSyR\",MTHHYw3wq:\"See Pricing & Package Deals\",style:{width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v0a78s\",\"data-framer-name\":\"What Is MLD Section\",id:elementId2,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6v6zp8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-15x5rin\",\"data-styles-preset\":\"bsJ9Xm8zR\",style:{\"--framer-text-color\":\"var(--token-d31ccc3d-33d2-4191-a27b-548fd41c9d90, rgb(174, 103, 65))\"},children:\"What Is MLD?\"})}),className:\"framer-1g2lpdo\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d05xtb\",\"data-styles-preset\":\"CEXg3bMOG\",style:{\"--framer-text-alignment\":\"left\"},children:\"Manual Lymphatic Drainage (MLD) is a specialized massage technique that uses gentle, rhythmic strokes to encourage the natural movement of lymphatic fluid. By applying specific hand movements, the therapist stimulates the lymphatic vessels to direct fluid toward nearby lymph nodes, where it is filtered and drained. This process helps reduce swelling, detoxify the body, and improve overall circulation. Regular MLD sessions can enhance overall health and well-being, supporting the body\u2019s natural healing processes.  \"})}),className:\"framer-t55vbn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1obafdt\",\"data-framer-name\":\"Benefits Card Section\",id:elementId3,ref:ref6,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15x5rin\",\"data-styles-preset\":\"bsJ9Xm8zR\",style:{\"--framer-text-color\":\"var(--token-d31ccc3d-33d2-4191-a27b-548fd41c9d90, rgb(174, 103, 65))\"},children:\"Who Benefits?\"})}),className:\"framer-1rzktmj\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ylx3pm\",\"data-framer-name\":\"Multi-Grid Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gn11so\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18j2ytr\",\"data-framer-name\":\"Image 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{background:{alt:\"Female Patient getting MLD treatment\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1854.2+80+134.8+0+0+0+0+0+0),pixelHeight:1254,pixelWidth:1206,sizes:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 50px), 100px)`,src:\"https://framerusercontent.com/images/b2YIuGMc1AtYWsS6xvP9cekCgi4.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/b2YIuGMc1AtYWsS6xvP9cekCgi4.jpg?scale-down-to=1024 984w,https://framerusercontent.com/images/b2YIuGMc1AtYWsS6xvP9cekCgi4.jpg 1206w\"}},uL4lTe2uF:{background:{alt:\"Female Patient getting MLD treatment\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1748.8+60+134.8+0+0+0+0+0),pixelHeight:1254,pixelWidth:1206,sizes:`max(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 100px) / 2, 1px)`,src:\"https://framerusercontent.com/images/b2YIuGMc1AtYWsS6xvP9cekCgi4.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/b2YIuGMc1AtYWsS6xvP9cekCgi4.jpg?scale-down-to=1024 984w,https://framerusercontent.com/images/b2YIuGMc1AtYWsS6xvP9cekCgi4.jpg 1206w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Female Patient getting MLD treatment\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1958.2+100+134.8+0+0+0+0+0+0),pixelHeight:1254,pixelWidth:1206,sizes:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 50px), 100px)`,src:\"https://framerusercontent.com/images/b2YIuGMc1AtYWsS6xvP9cekCgi4.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/b2YIuGMc1AtYWsS6xvP9cekCgi4.jpg?scale-down-to=1024 984w,https://framerusercontent.com/images/b2YIuGMc1AtYWsS6xvP9cekCgi4.jpg 1206w\"},className:\"framer-3t85fl\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{background:{alt:\"Female Patient getting MLD treatment\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1854.2+80+134.8+0+0+0+0+0+397.5),pixelHeight:720,pixelWidth:1280,sizes:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 50px), 100px)`,src:\"https://framerusercontent.com/images/VqQr4gNRWFMlvuTH5MG3SmHzY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VqQr4gNRWFMlvuTH5MG3SmHzY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VqQr4gNRWFMlvuTH5MG3SmHzY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VqQr4gNRWFMlvuTH5MG3SmHzY.jpg 1280w\"}},uL4lTe2uF:{background:{alt:\"Female Patient getting MLD treatment\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1748.8+60+134.8+0+0+0+0+0),pixelHeight:720,pixelWidth:1280,sizes:`max(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 100px) / 2, 1px)`,src:\"https://framerusercontent.com/images/VqQr4gNRWFMlvuTH5MG3SmHzY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VqQr4gNRWFMlvuTH5MG3SmHzY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VqQr4gNRWFMlvuTH5MG3SmHzY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VqQr4gNRWFMlvuTH5MG3SmHzY.jpg 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Female Patient getting MLD treatment\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1958.2+100+134.8+0+0+0+0+0+341.5),pixelHeight:720,pixelWidth:1280,sizes:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 50px), 100px)`,src:\"https://framerusercontent.com/images/VqQr4gNRWFMlvuTH5MG3SmHzY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VqQr4gNRWFMlvuTH5MG3SmHzY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VqQr4gNRWFMlvuTH5MG3SmHzY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VqQr4gNRWFMlvuTH5MG3SmHzY.jpg 1280w\"},className:\"framer-2f10hw\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12589l3\",\"data-framer-name\":\"Card 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vdnjt6\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cu17ef\",\"data-styles-preset\":\"JUeS11LQx\",style:{\"--framer-text-color\":\"var(--token-dd7c824e-e0b8-4221-9120-aa27b971fe87, rgb(133, 79, 48))\"},children:\"Patients Preparing for and Recovering from Surgery\"})}),className:\"framer-153uxyt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dzz0bi\",\"data-styles-preset\":\"ZFoqjsQ6f\",children:\"MLD is especially beneficial before and after body contouring surgeries like tummy tucks, liposuction, and facelifts. Pre-surgery, it reduces fluid retention and edema, making it easier for surgeons to perform precise incisions while lowering the risk of bruising and scar tissue. The gentle massage also alleviates stress and promotes relaxation. Post-surgery, MLD minimizes swelling, accelerates recovery, and optimizes results, helping clients achieve their desired sculpted look. For the best outcomes, one to two sessions are recommended the week before surgery, with post-surgery frequency tailored to individual needs and procedure type.\"})}),className:\"framer-hrjt6u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vkfdJq3KP\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{y:(componentViewport?.y||0)+0+1854.2+80+134.8+0+0+0+0+0+185+30+320},uL4lTe2uF:{y:(componentViewport?.y||0)+0+1748.8+60+134.8+0+0+0+170+0+0+30+320}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+1958.2+100+134.8+0+0+0+0+0+129+30+320,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dw3wom-container\",whileHover:animation5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{kwhkjN35p:resolvedLinks[0]}},children:/*#__PURE__*/_jsx(Button,{ckT6aSWID:{borderColor:'var(--token-02848c9e-eebb-49ab-92c1-0ef2f131911a, rgb(193, 168, 142)) /* {\"name\":\"1\"} */',borderStyle:\"solid\",borderWidth:1},gHdsWAit0:false,height:\"100%\",id:\"rU6wea1B_\",iJGZdvfA8:\"Book Now\",kwhkjN35p:\"https://kristy-dellacroce.clientsecure.me/\",layoutId:\"rU6wea1B_\",LvCD7jYC6:{borderColor:'var(--token-eee754d8-305b-42be-81d8-5d38b4cfe5b7, rgb(54, 92, 70)) /* {\"name\":\"4\"} */',borderStyle:\"solid\",borderWidth:1},OkCaYY0Dx:\"rgb(252, 222, 189)\",QNQF0Ijw3:\"20px\",style:{height:\"100%\"},variant:\"qtQRQ9Dl5\",w6qVj_pXX:\"5px\",width:\"100%\"})})})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d2ua8o\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6qz354\",\"data-framer-name\":\"Card 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12adj1v\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cu17ef\",\"data-styles-preset\":\"JUeS11LQx\",style:{\"--framer-text-color\":\"var(--token-dd7c824e-e0b8-4221-9120-aa27b971fe87, rgb(133, 79, 48))\"},children:\"Individuals Undergoing Cancer Treatment\"})}),className:\"framer-ptbwu4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dzz0bi\",\"data-styles-preset\":\"ZFoqjsQ6f\",children:\"MLD is popular among those experiencing side effects from treatments like chemotherapy, radiation, or surgery, especially for breast cancer. It gently supports the body\u2019s lymphatic system, helping reduce lymphedema and improve comfort.\"})}),className:\"framer-r8mif\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vkfdJq3KP\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{y:(componentViewport?.y||0)+0+1854.2+80+134.8+0+815+0+0+0+18.666666666666657+30+320},uL4lTe2uF:{y:(componentViewport?.y||0)+0+1748.8+60+134.8+0+615+0+170+0+0+30+320}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+1958.2+100+134.8+0+703+0+0+0+3.666666666666657+30+320,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vcruga-container\",whileHover:animation5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{kwhkjN35p:resolvedLinks1[0]}},children:/*#__PURE__*/_jsx(Button,{ckT6aSWID:{borderColor:'var(--token-02848c9e-eebb-49ab-92c1-0ef2f131911a, rgb(193, 168, 142)) /* {\"name\":\"1\"} */',borderStyle:\"solid\",borderWidth:1},gHdsWAit0:false,height:\"100%\",id:\"E7l6yjl84\",iJGZdvfA8:\"Book Now\",kwhkjN35p:\"https://kristy-dellacroce.clientsecure.me/\",layoutId:\"E7l6yjl84\",LvCD7jYC6:{borderColor:'var(--token-eee754d8-305b-42be-81d8-5d38b4cfe5b7, rgb(54, 92, 70)) /* {\"name\":\"4\"} */',borderStyle:\"solid\",borderWidth:1},OkCaYY0Dx:\"rgb(252, 222, 189)\",QNQF0Ijw3:\"20px\",style:{height:\"100%\"},variant:\"qtQRQ9Dl5\",w6qVj_pXX:\"5px\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-614ylz\",\"data-framer-name\":\"Image 2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{background:{alt:\"Breast cancer survivor\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1854.2+80+134.8+0+815+0+0+0+0),pixelHeight:630,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 50px)`,src:\"https://framerusercontent.com/images/H2zDm9VQ1bEKCxel3LC0zm6q5N4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/H2zDm9VQ1bEKCxel3LC0zm6q5N4.png?scale-down-to=512 512w,https://framerusercontent.com/images/H2zDm9VQ1bEKCxel3LC0zm6q5N4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/H2zDm9VQ1bEKCxel3LC0zm6q5N4.png 1200w\"}},uL4lTe2uF:{background:{alt:\"Breast cancer survivor\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1748.8+60+134.8+0+615+0+0+0+0),pixelHeight:630,pixelWidth:1200,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,src:\"https://framerusercontent.com/images/H2zDm9VQ1bEKCxel3LC0zm6q5N4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/H2zDm9VQ1bEKCxel3LC0zm6q5N4.png?scale-down-to=512 512w,https://framerusercontent.com/images/H2zDm9VQ1bEKCxel3LC0zm6q5N4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/H2zDm9VQ1bEKCxel3LC0zm6q5N4.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Breast cancer survivor\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1958.2+100+134.8+0+703+0+0+0+0),pixelHeight:630,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 50px)`,src:\"https://framerusercontent.com/images/H2zDm9VQ1bEKCxel3LC0zm6q5N4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/H2zDm9VQ1bEKCxel3LC0zm6q5N4.png?scale-down-to=512 512w,https://framerusercontent.com/images/H2zDm9VQ1bEKCxel3LC0zm6q5N4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/H2zDm9VQ1bEKCxel3LC0zm6q5N4.png 1200w\"},className:\"framer-1cy9l94\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1atln81\",\"data-framer-name\":\"Image 3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{background:{alt:\"wellness detox\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1854.2+80+134.8+0+815+0+482.3333333333333+0+0),pixelHeight:630,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 50px)`,src:\"https://framerusercontent.com/images/J7yza6IsKwvfkFV1XjF4wjehk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/J7yza6IsKwvfkFV1XjF4wjehk.png?scale-down-to=512 512w,https://framerusercontent.com/images/J7yza6IsKwvfkFV1XjF4wjehk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/J7yza6IsKwvfkFV1XjF4wjehk.png 1200w\"}},uL4lTe2uF:{background:{alt:\"wellness detox\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1748.8+60+134.8+0+615+0+615+0+0),pixelHeight:630,pixelWidth:1200,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,src:\"https://framerusercontent.com/images/J7yza6IsKwvfkFV1XjF4wjehk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/J7yza6IsKwvfkFV1XjF4wjehk.png?scale-down-to=512 512w,https://framerusercontent.com/images/J7yza6IsKwvfkFV1XjF4wjehk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/J7yza6IsKwvfkFV1XjF4wjehk.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"wellness detox\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1958.2+100+134.8+0+703+0+452.3333333333333+0+0),pixelHeight:630,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 50px)`,src:\"https://framerusercontent.com/images/J7yza6IsKwvfkFV1XjF4wjehk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/J7yza6IsKwvfkFV1XjF4wjehk.png?scale-down-to=512 512w,https://framerusercontent.com/images/J7yza6IsKwvfkFV1XjF4wjehk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/J7yza6IsKwvfkFV1XjF4wjehk.png 1200w\"},className:\"framer-j38eyx\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zwuuhg\",\"data-framer-name\":\"Card 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nvv93t\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cu17ef\",\"data-styles-preset\":\"JUeS11LQx\",style:{\"--framer-text-color\":\"var(--token-dd7c824e-e0b8-4221-9120-aa27b971fe87, rgb(133, 79, 48))\"},children:\"Wellness Seekers and Detox Enthusiasts\"})}),className:\"framer-j10yn4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dzz0bi\",\"data-styles-preset\":\"ZFoqjsQ6f\",children:\"Many health-conscious individuals choose MLD as part of their regular wellness routine. By enhancing detoxification, MLD leaves them feeling refreshed, lighter, and energized\u2014a favorite for those prioritizing self-care and holistic health.\"})}),className:\"framer-he5a5t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vkfdJq3KP\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{y:(componentViewport?.y||0)+0+1854.2+80+134.8+0+815+0+482.3333333333333+0+18.666666666666657+30+320},uL4lTe2uF:{y:(componentViewport?.y||0)+0+1748.8+60+134.8+0+615+0+785+0+0+30+320}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+1958.2+100+134.8+0+703+0+452.3333333333333+0+3.666666666666657+30+320,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19hnfmn-container\",whileHover:animation5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{kwhkjN35p:resolvedLinks2[0]}},children:/*#__PURE__*/_jsx(Button,{ckT6aSWID:{borderColor:'var(--token-02848c9e-eebb-49ab-92c1-0ef2f131911a, rgb(193, 168, 142)) /* {\"name\":\"1\"} */',borderStyle:\"solid\",borderWidth:1},gHdsWAit0:false,height:\"100%\",id:\"X5KTAiHJD\",iJGZdvfA8:\"Book Now\",kwhkjN35p:\"https://kristy-dellacroce.clientsecure.me/\",layoutId:\"X5KTAiHJD\",LvCD7jYC6:{borderColor:'var(--token-eee754d8-305b-42be-81d8-5d38b4cfe5b7, rgb(54, 92, 70)) /* {\"name\":\"4\"} */',borderStyle:\"solid\",borderWidth:1},OkCaYY0Dx:\"rgb(252, 222, 189)\",QNQF0Ijw3:\"20px\",style:{height:\"100%\"},variant:\"qtQRQ9Dl5\",w6qVj_pXX:\"5px\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4u0ofc\",\"data-framer-name\":\"Card 4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qzdfv7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cu17ef\",\"data-styles-preset\":\"JUeS11LQx\",style:{\"--framer-text-color\":\"var(--token-dd7c824e-e0b8-4221-9120-aa27b971fe87, rgb(133, 79, 48))\"},children:\"Lipedema Patients\"})}),className:\"framer-16lvjsk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dzz0bi\",\"data-styles-preset\":\"ZFoqjsQ6f\",children:\"Many clients managing Lipedema turn to MLD for relief from discomfort and swelling. MLD promotes lymphatic flow, reduces fluid retention, and improves quality of life for those with chronic swelling and sensitivity. It\u2019s also a conservative measure often required by insurance for those seeking surgery coverage.\"})}),className:\"framer-181s5oz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vkfdJq3KP\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{y:(componentViewport?.y||0)+0+1854.2+80+134.8+0+815+0+964.6666666666666+0+18.666666666666657+30+320},uL4lTe2uF:{y:(componentViewport?.y||0)+0+1748.8+60+134.8+0+615+0+1400+0+0+30+320}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+1958.2+100+134.8+0+703+0+904.6666666666666+0+3.666666666666657+30+320,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16u01qk-container\",whileHover:animation5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{kwhkjN35p:resolvedLinks3[0]}},children:/*#__PURE__*/_jsx(Button,{ckT6aSWID:{borderColor:'var(--token-02848c9e-eebb-49ab-92c1-0ef2f131911a, rgb(193, 168, 142)) /* {\"name\":\"1\"} */',borderStyle:\"solid\",borderWidth:1},gHdsWAit0:false,height:\"100%\",id:\"mzbC5Yt9Y\",iJGZdvfA8:\"Book Now\",kwhkjN35p:\"https://kristy-dellacroce.clientsecure.me/\",layoutId:\"mzbC5Yt9Y\",LvCD7jYC6:{borderColor:'var(--token-eee754d8-305b-42be-81d8-5d38b4cfe5b7, rgb(54, 92, 70)) /* {\"name\":\"4\"} */',borderStyle:\"solid\",borderWidth:1},OkCaYY0Dx:\"rgb(252, 222, 189)\",QNQF0Ijw3:\"20px\",style:{height:\"100%\"},variant:\"qtQRQ9Dl5\",w6qVj_pXX:\"5px\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1m7jh2r\",\"data-framer-name\":\"Image 4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{background:{alt:\"Lipedema Patient\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1854.2+80+134.8+0+815+0+964.6666666666666+0+0),pixelHeight:260,pixelWidth:390,src:\"https://framerusercontent.com/images/O7O9DAucZufp9r8xEBHr2h6sJ8.webp\"}},uL4lTe2uF:{background:{alt:\"Lipedema Patient\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1748.8+60+134.8+0+615+0+1230+0+0),pixelHeight:260,pixelWidth:390,src:\"https://framerusercontent.com/images/O7O9DAucZufp9r8xEBHr2h6sJ8.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Lipedema Patient\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1958.2+100+134.8+0+703+0+904.6666666666666+0+0),pixelHeight:260,pixelWidth:390,src:\"https://framerusercontent.com/images/O7O9DAucZufp9r8xEBHr2h6sJ8.webp\"},className:\"framer-1tunp1a\",\"data-framer-name\":\"Image\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l0t2ap\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r4uo7p\",\"data-border\":true,\"data-framer-name\":\"Card 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p16iho\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d05xtb\",\"data-styles-preset\":\"CEXg3bMOG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Now offering 20% off ALL MLD single sessions for Lipedema patients! Book your appointment today to redeem!\"})}),className:\"framer-ssgpa7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d05xtb\",\"data-styles-preset\":\"CEXg3bMOG\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"*Offer good for lipedema clients only.\"})})}),className:\"framer-d8hfaf\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uztzv4\",\"data-framer-name\":\"Before/After Card Section\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15x5rin\",\"data-styles-preset\":\"bsJ9Xm8zR\",style:{\"--framer-text-color\":\"var(--token-d31ccc3d-33d2-4191-a27b-548fd41c9d90, rgb(174, 103, 65))\"},children:\"Before & After Surgery Compression\"})}),className:\"framer-1bo9jk6\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pi5ei8\",\"data-framer-name\":\"Grid Wrap\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dthn7l\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wkoaoz\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{background:{alt:\"Lipoelastic Logo\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1854.2+80+2637.8+80+134.8+0+0+0+0+0+0),pixelHeight:900,pixelWidth:1600,src:\"https://framerusercontent.com/images/gTmuteoTQJPeW5TV0mDVFkatP0Q.svg\"}},uL4lTe2uF:{background:{alt:\"Lipoelastic Logo\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1748.8+60+3082.8+60+134.8+0+0+0+0+0+0),pixelHeight:900,pixelWidth:1600,src:\"https://framerusercontent.com/images/gTmuteoTQJPeW5TV0mDVFkatP0Q.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Lipoelastic Logo\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1958.2+100+2466.8+100+134.8+0+0+0+0+0+0),pixelHeight:900,pixelWidth:1600,src:\"https://framerusercontent.com/images/gTmuteoTQJPeW5TV0mDVFkatP0Q.svg\"},className:\"framer-1370ztd\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-e2v0u1\",\"data-framer-name\":\"Card 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sr8px3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cu17ef\",\"data-styles-preset\":\"JUeS11LQx\",style:{\"--framer-text-color\":\"var(--token-dd7c824e-e0b8-4221-9120-aa27b971fe87, rgb(133, 79, 48))\"},children:\"Exclusive Discounts on Lipoelastic Compression Garments\"})}),className:\"framer-1kjncfj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmVzcG9rZSBTZXJpZi1saWdodA==\",\"--framer-font-family\":'\"Bespoke Serif\", \"Bespoke Serif Placeholder\", serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.15em\",\"--framer-line-height\":\"1.4em\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Arizona residents get an even better deal\u2014\"})})}),className:\"framer-djv0x9\",fonts:[\"FS;Bespoke Serif-light\",\"FS;Bespoke Serif-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6835ax\",\"data-framer-name\":\"20% Off Wrap\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__loop:animation8,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7QmVzcG9rZSBTZXJpZi1ib2xk\",\"--framer-font-family\":'\"Bespoke Serif\", \"Bespoke Serif Placeholder\", serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d31ccc3d-33d2-4191-a27b-548fd41c9d90, rgb(174, 103, 65))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"42px\"},children:\"20% \"}),\"Off\"]})}),className:\"framer-60wdtl\",fonts:[\"FS;Bespoke Serif-bold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmVzcG9rZSBTZXJpZi1saWdodA==\",\"--framer-font-family\":'\"Bespoke Serif\", \"Bespoke Serif Placeholder\", serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.15em\",\"--framer-line-height\":\"1.4em\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"when ordered directly through me!\"})})}),className:\"framer-eh6t8h\",fonts:[\"FS;Bespoke Serif-light\",\"FS;Bespoke Serif-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmVzcG9rZSBTZXJpZi1saWdodCBpdGFsaWM=\",\"--framer-font-family\":'\"Bespoke Serif\", \"Bespoke Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.15em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d31ccc3d-33d2-4191-a27b-548fd41c9d90, rgb(174, 103, 65))\"},children:\"*During your session we can discuss your compression needs.\"})})},uL4lTe2uF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmVzcG9rZSBTZXJpZi1saWdodCBpdGFsaWM=\",\"--framer-font-family\":'\"Bespoke Serif\", \"Bespoke Serif Placeholder\", serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.15em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d31ccc3d-33d2-4191-a27b-548fd41c9d90, rgb(174, 103, 65))\"},children:\"*During your session we can discuss your compression needs.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmVzcG9rZSBTZXJpZi1saWdodCBpdGFsaWM=\",\"--framer-font-family\":'\"Bespoke Serif\", \"Bespoke Serif Placeholder\", serif',\"--framer-font-size\":\"18px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.15em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d31ccc3d-33d2-4191-a27b-548fd41c9d90, rgb(174, 103, 65))\"},children:\"*During your session we can discuss your compression needs.\"})}),className:\"framer-1qet21e\",fonts:[\"FS;Bespoke Serif-light italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ve60yd\",\"data-framer-name\":\"About Me Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xc19e0\",\"data-framer-name\":\"Left Column\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l94lol\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qc8zx3\",\"data-styles-preset\":\"kN6Wj5gBK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d31ccc3d-33d2-4191-a27b-548fd41c9d90, rgb(174, 103, 65))\"},children:\"About Me\"})}),className:\"framer-1rszigl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d05xtb\",\"data-styles-preset\":\"CEXg3bMOG\",children:\"I\u2019m Kristy Dellacroce, founder of Sunrise Healing in Phoenix and a licensed Occupational Therapist focused on lymphatic health. After my own Lipedema diagnosis in 2023, I committed myself to helping others understand and manage this complex condition. With certifications in Manual Lymphatic Drainage (MLD), Sound Healing, and Reiki, I provide personalized care to support overall wellness, especially for women with Lipedema.\"})}),className:\"framer-j7umr4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vkfdJq3KP\"},implicitPathVariables:undefined},{href:{webPageId:\"vkfdJq3KP\"},implicitPathVariables:undefined},{href:{webPageId:\"vkfdJq3KP\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{y:(componentViewport?.y||0)+0+5380.8+100.00000000000003+0+0+273.2},uL4lTe2uF:{y:(componentViewport?.y||0)+0+6091.400000000001+100+224+0+0+273.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+5403.8+100+70.9+0+273.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s89rfy-container\",whileHover:animation5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{kwhkjN35p:resolvedLinks4[1]},uL4lTe2uF:{kwhkjN35p:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(Button,{ckT6aSWID:{borderColor:'var(--token-02848c9e-eebb-49ab-92c1-0ef2f131911a, rgb(193, 168, 142)) /* {\"name\":\"1\"} */',borderStyle:\"solid\",borderWidth:1},gHdsWAit0:false,height:\"100%\",id:\"uVzXLUily\",iJGZdvfA8:\"Read Full Bio\",kwhkjN35p:resolvedLinks4[0],layoutId:\"uVzXLUily\",LvCD7jYC6:{borderColor:'var(--token-eee754d8-305b-42be-81d8-5d38b4cfe5b7, rgb(54, 92, 70)) /* {\"name\":\"4\"} */',borderStyle:\"solid\",borderWidth:1},OkCaYY0Dx:\"rgb(252, 222, 189)\",QNQF0Ijw3:\"20px\",style:{height:\"100%\"},variant:\"qtQRQ9Dl5\",w6qVj_pXX:\"5px\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{background:{alt:\"Profle Photo of Owner\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5380.8+129.10000000000002),pixelHeight:4032,pixelWidth:3024,sizes:\"300px\",src:\"https://framerusercontent.com/images/hVqb4yvZQOy4pRwHCcIB4yLM34M.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/hVqb4yvZQOy4pRwHCcIB4yLM34M.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/hVqb4yvZQOy4pRwHCcIB4yLM34M.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/hVqb4yvZQOy4pRwHCcIB4yLM34M.jpg 3024w\"}},uL4lTe2uF:{background:{alt:\"Profle Photo of Owner\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6091.400000000001+100+0),pixelHeight:4032,pixelWidth:3024,sizes:\"200px\",src:\"https://framerusercontent.com/images/hVqb4yvZQOy4pRwHCcIB4yLM34M.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/hVqb4yvZQOy4pRwHCcIB4yLM34M.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/hVqb4yvZQOy4pRwHCcIB4yLM34M.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/hVqb4yvZQOy4pRwHCcIB4yLM34M.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.75,rotate:0,rotateX:0,rotateY:0,scale:.75,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Profle Photo of Owner\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5403.8+100),pixelHeight:4032,pixelWidth:3024,sizes:\"500px\",src:\"https://framerusercontent.com/images/hVqb4yvZQOy4pRwHCcIB4yLM34M.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/hVqb4yvZQOy4pRwHCcIB4yLM34M.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/hVqb4yvZQOy4pRwHCcIB4yLM34M.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/hVqb4yvZQOy4pRwHCcIB4yLM34M.jpg 3024w\"},className:\"framer-10cmie0\",\"data-framer-name\":\"Right Column IMage\"})})]}),/*#__PURE__*/_jsx(Link,{href:{hash:\":c1bUqSc1W\",webPageId:\"vkfdJq3KP\"},nodeId:\"jo2_90s1f\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1ldcmxc framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Connect with me Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ptrgup-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uL4lTe2uF:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:6,fadeWidth:31,overflow:false},gap:0}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:6,fadeWidth:48,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"VRa0F1GnS\",layoutId:\"VRa0F1GnS\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gmkpn6\",\"data-border\":true,\"data-framer-name\":\"Connect Reg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cu17ef\",\"data-styles-preset\":\"JUeS11LQx\",children:\"Connect with me\"})}),className:\"framer-10kpef2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-grz6nc\",\"data-border\":true,\"data-framer-name\":\"Connect Ital\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1frrcr4\",\"data-styles-preset\":\"v6J71fHRf\",children:\"Connect with me\"})}),className:\"framer-ztm8vh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8xz81j\",\"data-border\":true,\"data-framer-name\":\"Connect Reg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cu17ef\",\"data-styles-preset\":\"JUeS11LQx\",children:\"Connect with me\"})}),className:\"framer-k8aq0k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-59cw7v\",\"data-border\":true,\"data-framer-name\":\"Connect Ital\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1frrcr4\",\"data-styles-preset\":\"v6J71fHRf\",children:\"Connect with me\"})}),className:\"framer-q3d7k5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8j2l4v\",\"data-border\":true,\"data-framer-name\":\"Connect Reg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cu17ef\",\"data-styles-preset\":\"JUeS11LQx\",children:\"Connect with me\"})}),className:\"framer-9rx22v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ix6ism\",\"data-border\":true,\"data-framer-name\":\"Connect Ital\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1frrcr4\",\"data-styles-preset\":\"v6J71fHRf\",children:\"Connect with me\"})}),className:\"framer-afjg7h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})],speed:55,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n52mcq\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-yyxpxh\",\"data-styles-preset\":\"egxPxlzDR\",style:{\"--framer-text-color\":\"var(--token-eee754d8-305b-42be-81d8-5d38b4cfe5b7, rgb(54, 92, 70))\"},children:'\"Healing is a journey, and every step you take brings you closer to the balance your body deserves.\"'})}),className:\"framer-100wigj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vvh1r2\",\"data-framer-name\":\"Testimonials Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{y:(componentViewport?.y||0)+0+6010+100+132+60+0},uL4lTe2uF:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+6944.6+100+132+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:306,width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px)`,y:(componentViewport?.y||0)+0+6174.8+100+132+60+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ozbq4n-container\",\"data-framer-name\":\"Review 1\",name:\"Review 1\",children:/*#__PURE__*/_jsx(TestimonialCard,{CKWlZg46H:30,dkqbZPRjZ:\"Miriam Uriarte\",dn7qayYix:\"rgb(0, 0, 0)\",f1hGfMASU:false,FbdW21Zu3:16,g5EHIof8X:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625), 0.18065619053231785px 0.6021873017743928px 0.6287020006298476px -1px rgba(0, 0, 0, 0.14699), 0.6865599909730371px 2.288533303243457px 2.389298914171123px -2px rgba(0, 0, 0, 0.13856), 3px 10px 10.44030650891055px -3px rgba(0, 0, 0, 0.1)\",height:\"100%\",id:\"Sh6jgqL86\",jQVXhpfjz:\"30px\",Kh1QAilBi:18,layoutId:\"Sh6jgqL86\",name:\"Review 1\",NO9YbFxlQ:\"Fell in love with Kristy's little spa room!!! She informed me what she was doing and how it benefits mel I was very relaxed, even fell asleep a few times. She made adjustments as needed by asking or per my request. Thank you Kristy for this session! I enjoyed the motion as lymphatic massage is very different and in the past it's more of a brush from other providers but the circular motion felt better. Cant wait to go back!!!\",style:{width:\"100%\"},TZSOFfcI7:22,uajD9xaia:\"rgb(0, 0, 0)\",un58Tm6IO:\"rgb(229, 220, 214)\",V8EwIgwys:{borderColor:\"rgba(133, 79, 48, 0.61)\",borderStyle:\"solid\",borderWidth:1},variant:\"IRd2FUloa\",W15XWkWWn:\"\",width:\"100%\",XO0pFsIbb:\"rgb(0, 0, 0)\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{y:(componentViewport?.y||0)+0+6010+100+132+60+366},uL4lTe2uF:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+6944.6+100+132+0+366}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:306,width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px)`,y:(componentViewport?.y||0)+0+6174.8+100+132+60+366,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-or1rnl-container\",\"data-framer-name\":\"Review 2\",name:\"Review 2\",children:/*#__PURE__*/_jsx(TestimonialCard,{CKWlZg46H:30,dkqbZPRjZ:\"Alessia Vanderslice\",dn7qayYix:\"rgb(0, 0, 0)\",f1hGfMASU:false,FbdW21Zu3:16,g5EHIof8X:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625), 0.18065619053231785px 0.6021873017743928px 0.6287020006298476px -1px rgba(0, 0, 0, 0.14699), 0.6865599909730371px 2.288533303243457px 2.389298914171123px -2px rgba(0, 0, 0, 0.13856), 3px 10px 10.44030650891055px -3px rgba(0, 0, 0, 0.1)\",height:\"100%\",id:\"keOVswQRQ\",jQVXhpfjz:\"30px\",Kh1QAilBi:18,layoutId:\"keOVswQRQ\",name:\"Review 2\",NO9YbFxlQ:\"I was in an accident over a year ago and have been struggling with persistent back pain ever since. After trying multiple treatments without success, a friend recommended manual lymphatic drainage (MLD) at Sunrise Healing. I\u2019m so glad I took her advice. Kristy was incredibly thorough and took the time to explain why my back had been feeling the way it did throughout this past year. Her expertise helped me understand the source of my pain, and the MLD sessions have genuinely made a difference. I also felt extremely comfortable and calm in her space, which allowed me to fully relax and enjoy the experience. I highly recommend Sunrise Healing to anyone dealing with chronic pain or seeking true relief!\",style:{width:\"100%\"},TZSOFfcI7:22,uajD9xaia:\"rgb(0, 0, 0)\",un58Tm6IO:\"rgb(229, 220, 214)\",V8EwIgwys:{borderColor:\"rgba(133, 79, 48, 0.61)\",borderStyle:\"solid\",borderWidth:1},variant:\"mEfPPbdrO\",W15XWkWWn:\"\",width:\"100%\",XO0pFsIbb:\"rgb(0, 0, 0)\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{y:(componentViewport?.y||0)+0+6010+100+132+60+732},uL4lTe2uF:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+6944.6+100+132+0+732}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:306,width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px)`,y:(componentViewport?.y||0)+0+6174.8+100+132+60+732,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16loz7g-container\",\"data-framer-name\":\"Review 3\",name:\"Review 3\",children:/*#__PURE__*/_jsx(TestimonialCard,{CKWlZg46H:30,dkqbZPRjZ:\"Jennifer Grant\",dn7qayYix:\"rgb(0, 0, 0)\",f1hGfMASU:false,FbdW21Zu3:16,g5EHIof8X:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625), 0.18065619053231785px 0.6021873017743928px 0.6287020006298476px -1px rgba(0, 0, 0, 0.14699), 0.6865599909730371px 2.288533303243457px 2.389298914171123px -2px rgba(0, 0, 0, 0.13856), 3px 10px 10.44030650891055px -3px rgba(0, 0, 0, 0.1)\",height:\"100%\",id:\"I4dcE356I\",jQVXhpfjz:\"30px\",Kh1QAilBi:18,layoutId:\"I4dcE356I\",name:\"Review 3\",NO9YbFxlQ:\"I was in town for surgery and had the chance to receive MLD from Kristy before heading back out.  Although different from a regular massage I enjoyed this even more. Her studio was so peaceful and relaxing. I hope to see her again in the near future.\",style:{width:\"100%\"},TZSOFfcI7:22,uajD9xaia:\"rgb(0, 0, 0)\",un58Tm6IO:\"rgb(229, 220, 214)\",V8EwIgwys:{borderColor:\"rgba(133, 79, 48, 0.61)\",borderStyle:\"solid\",borderWidth:1},variant:\"WuEQ2Qrwj\",W15XWkWWn:\"\",width:\"100%\",XO0pFsIbb:\"rgb(0, 0, 0)\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3456,intrinsicWidth:2592,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6010+100+132+0),pixelHeight:3456,pixelWidth:2592,sizes:\"868.5px\",src:\"https://framerusercontent.com/images/aBisyNCW4TzdDJBWyNim8aRgc.png\",srcSet:\"https://framerusercontent.com/images/aBisyNCW4TzdDJBWyNim8aRgc.png?scale-down-to=1024 768w,https://framerusercontent.com/images/aBisyNCW4TzdDJBWyNim8aRgc.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/aBisyNCW4TzdDJBWyNim8aRgc.png 2592w\"}},uL4lTe2uF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3456,intrinsicWidth:2592,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6944.6+100+132+0),pixelHeight:3456,pixelWidth:2592,sizes:\"778.5px\",src:\"https://framerusercontent.com/images/aBisyNCW4TzdDJBWyNim8aRgc.png\",srcSet:\"https://framerusercontent.com/images/aBisyNCW4TzdDJBWyNim8aRgc.png?scale-down-to=1024 768w,https://framerusercontent.com/images/aBisyNCW4TzdDJBWyNim8aRgc.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/aBisyNCW4TzdDJBWyNim8aRgc.png 2592w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3456,intrinsicWidth:2592,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6174.8+100+132+0),pixelHeight:3456,pixelWidth:2592,sizes:\"868.5px\",src:\"https://framerusercontent.com/images/aBisyNCW4TzdDJBWyNim8aRgc.png\",srcSet:\"https://framerusercontent.com/images/aBisyNCW4TzdDJBWyNim8aRgc.png?scale-down-to=1024 768w,https://framerusercontent.com/images/aBisyNCW4TzdDJBWyNim8aRgc.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/aBisyNCW4TzdDJBWyNim8aRgc.png 2592w\"},className:\"framer-layt1w\",\"data-framer-name\":\"Woman_no_bg\",transformTemplate:transformTemplate2})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6w8cqu\",\"data-framer-name\":\"Image Section Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{background:{alt:\"image of woman giving MLD calf therapy\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7500+0),pixelHeight:900,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ZuKSuo1l93KDj4wsMPD40T3IEA.png\",srcSet:\"https://framerusercontent.com/images/ZuKSuo1l93KDj4wsMPD40T3IEA.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZuKSuo1l93KDj4wsMPD40T3IEA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZuKSuo1l93KDj4wsMPD40T3IEA.png 1600w\"}},uL4lTe2uF:{background:{alt:\"image of woman giving MLD calf therapy\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8314.6+0),pixelHeight:900,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ZuKSuo1l93KDj4wsMPD40T3IEA.png\",srcSet:\"https://framerusercontent.com/images/ZuKSuo1l93KDj4wsMPD40T3IEA.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZuKSuo1l93KDj4wsMPD40T3IEA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZuKSuo1l93KDj4wsMPD40T3IEA.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"header\",background:{alt:\"image of woman giving MLD calf therapy\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7664.8+0),pixelHeight:900,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ZuKSuo1l93KDj4wsMPD40T3IEA.png\",srcSet:\"https://framerusercontent.com/images/ZuKSuo1l93KDj4wsMPD40T3IEA.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZuKSuo1l93KDj4wsMPD40T3IEA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZuKSuo1l93KDj4wsMPD40T3IEA.png 1600w\"},className:\"framer-8ykw3r\",\"data-framer-name\":\"Image\",id:elementId4,ref:ref7,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-300}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jkz0q2\",\"data-framer-name\":\"Text Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IEdhcmFtb25kLTcwMA==\",\"--framer-font-family\":'\"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-eee754d8-305b-42be-81d8-5d38b4cfe5b7, rgb(54, 92, 70))\"},children:\"How It Works\"})})},uL4lTe2uF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IEdhcmFtb25kLTcwMA==\",\"--framer-font-family\":'\"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif',\"--framer-font-size\":\"65px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-eee754d8-305b-42be-81d8-5d38b4cfe5b7, rgb(54, 92, 70))\"},children:\"How It Works\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IEdhcmFtb25kLTcwMA==\",\"--framer-font-family\":'\"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif',\"--framer-font-size\":\"150px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-eee754d8-305b-42be-81d8-5d38b4cfe5b7, rgb(54, 92, 70))\"},children:\"How It Works\"})}),className:\"framer-97cpij\",fonts:[\"GF;Cormorant Garamond-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-10eak27\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1655o5a\",\"data-framer-name\":\"Consultation\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{background:{alt:\"image of 2 people at a meeting.\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8071.2962962962965+60),pixelHeight:3880,pixelWidth:3212,sizes:\"300px\",src:\"https://framerusercontent.com/images/XcRWanFUKomt1jqz2tzI837rko.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/XcRWanFUKomt1jqz2tzI837rko.jpg?scale-down-to=1024 847w,https://framerusercontent.com/images/XcRWanFUKomt1jqz2tzI837rko.jpg?scale-down-to=2048 1695w,https://framerusercontent.com/images/XcRWanFUKomt1jqz2tzI837rko.jpg 3212w\"}},uL4lTe2uF:{background:{alt:\"image of 2 people at a meeting.\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8894.6+40+0),pixelHeight:3880,pixelWidth:3212,sizes:\"200px\",src:\"https://framerusercontent.com/images/XcRWanFUKomt1jqz2tzI837rko.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/XcRWanFUKomt1jqz2tzI837rko.jpg?scale-down-to=1024 847w,https://framerusercontent.com/images/XcRWanFUKomt1jqz2tzI837rko.jpg?scale-down-to=2048 1695w,https://framerusercontent.com/images/XcRWanFUKomt1jqz2tzI837rko.jpg 3212w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.75,rotate:0,rotateX:0,rotateY:0,scale:.75,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"image of 2 people at a meeting.\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8676.05+60),pixelHeight:3880,pixelWidth:3212,sizes:\"490px\",src:\"https://framerusercontent.com/images/XcRWanFUKomt1jqz2tzI837rko.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/XcRWanFUKomt1jqz2tzI837rko.jpg?scale-down-to=1024 847w,https://framerusercontent.com/images/XcRWanFUKomt1jqz2tzI837rko.jpg?scale-down-to=2048 1695w,https://framerusercontent.com/images/XcRWanFUKomt1jqz2tzI837rko.jpg 3212w\"},className:\"framer-1vll5a1\",\"data-framer-name\":\"Right Column IMage\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8pxfu4\",\"data-framer-name\":\"Left Column\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{width:`min(max(min(max(min(${componentViewport?.width||\"100vw\"}, 750px) - 340px, 1px), 750px), 1px), 1000px)`,y:(componentViewport?.y||0)+0+8071.2962962962965+60+-189.5},uL4lTe2uF:{width:`min(max(min(min(${componentViewport?.width||\"100vw\"}, 1000px) - 40px, 1000px), 1px), 1000px)`,y:(componentViewport?.y||0)+0+8894.6+40+200+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:679,width:\"490px\",y:(componentViewport?.y||0)+0+8676.05+60+-89.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vcdsyh-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{HddbTW066:20},uL4lTe2uF:{B31nRRdmr:\"0px\",HddbTW066:15}},children:/*#__PURE__*/_jsx(HowItWorksCard,{B31nRRdmr:\"30px\",GMu77IHVT:\"center\",HddbTW066:30,height:\"100%\",id:\"HuS4TgjAE\",K5oIymCSw:\"Easily book your session through the provided booking link and fill out all required electronic paperwork. This ensures we have all the details needed to tailor your therapy to your specific health needs.\",layoutId:\"HuS4TgjAE\",QZPDAMJkM:\"It's important to note that there are contraindications for receiving MLD, so please complete your intake form accurately. For post-surgery clients, ensure that all drains are removed and incisions are fully scabbed over before booking.\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"jj3yc6fUs\",width:\"100%\",xeOhCVFE8:\"Book Your Session\",ZKuVMeI66:\"var(--token-02848c9e-eebb-49ab-92c1-0ef2f131911a, rgb(193, 168, 142))\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e3nvbq\",\"data-framer-name\":\"Personalized Therapy\",id:elementId5,ref:ref8,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q3wz4z\",\"data-framer-name\":\"Left Column\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{width:`max(min(${componentViewport?.width||\"100vw\"}, 750px) - 340px, 1px)`,y:(componentViewport?.y||0)+0+8491.296296296296+60+-189.5},uL4lTe2uF:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1000px) - 40px, 1px)`,y:(componentViewport?.y||0)+0+9853.6+40+200+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:679,width:\"480px\",y:(componentViewport?.y||0)+0+9296.05+60+-89.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b71x42-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{HddbTW066:20},uL4lTe2uF:{B31nRRdmr:\"0px\",HddbTW066:15}},children:/*#__PURE__*/_jsx(HowItWorksCard,{B31nRRdmr:\"30px\",GMu77IHVT:\"center\",HddbTW066:30,height:\"100%\",id:\"z23b46zNq\",K5oIymCSw:\"Each therapy session is designed to target your body\u2019s needs, from reducing swelling to enhancing circulation. Our gentle, hands-on approach focuses on promoting your body\u2019s natural healing process.\",layoutId:\"z23b46zNq\",QZPDAMJkM:\"\",style:{width:\"100%\"},variant:\"jj3yc6fUs\",width:\"100%\",xeOhCVFE8:\"Receive Personalized Therapy\",ZKuVMeI66:\"var(--token-02848c9e-eebb-49ab-92c1-0ef2f131911a, rgb(193, 168, 142))\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{background:{alt:\"Image of woman getting a massage\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8491.296296296296+60),pixelHeight:631,pixelWidth:925,positionX:\"left\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/0xzZusImdIVpVaKDXk8P1ITmPfg.webp\"}},uL4lTe2uF:{background:{alt:\"Image of woman getting a massage\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9853.6+40+0),pixelHeight:631,pixelWidth:925,positionX:\"left\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/0xzZusImdIVpVaKDXk8P1ITmPfg.webp\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.75,rotate:0,rotateX:0,rotateY:0,scale:.75,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Image of woman getting a massage\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9296.05+60),pixelHeight:631,pixelWidth:925,positionX:\"left\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/0xzZusImdIVpVaKDXk8P1ITmPfg.webp\"},className:\"framer-10w6rvg\",\"data-framer-name\":\"Right Column IMage\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bt402b\",\"data-framer-name\":\"Feel Restored\",id:elementId6,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 750px) - 40px)`,y:(componentViewport?.y||0)+0+8911.296296296296+60+0},uL4lTe2uF:{y:(componentViewport?.y||0)+0+10812.6+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:169,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1000px) - 40px)`,y:(componentViewport?.y||0)+0+9916.05+60+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18d0qmw-container\",children:/*#__PURE__*/_jsx(MainButtonCTAWrapWithBottomText,{ciPJLfRo_:\"rgb(252, 222, 189)\",euuaeYdc6:'\"Kristy brings expertise and compassionate care to every session.\"',height:\"100%\",id:\"HJB6th19G\",layoutId:\"HJB6th19G\",MTHHYw3wq:\"Book Your Session With Kristy Today\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bBhb2Tv5j:{y:(componentViewport?.y||0)+0+9240.296296296296},uL4lTe2uF:{y:(componentViewport?.y||0)+0+11081.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:693,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+10205.05,children:/*#__PURE__*/_jsx(Container,{className:\"framer-trqqzr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uL4lTe2uF:{variant:\"hyf0iqMMX\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"xKEOhcgkv\",layoutId:\"xKEOhcgkv\",ljUv96nla:false,o8PJJV_d5:false,qRoQ1S1Dj:true,style:{width:\"100%\"},variant:\"zRljc0BM8\",W39_d4vPL:false,width:\"100%\",WYLnI0hfA:\"var(--token-950e295c-9d66-44e6-8d69-cca017017eba, rgb(32, 55, 43))\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uL4lTe2uF:{height:47,y:923}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uL4lTe2uF:{layoutScroll:true,transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-zg6p7y-container hidden-72rtr7 hidden-oecj5v\",\"data-framer-appear-id\":\"zg6p7y\",initial:animation10,optimized:true,children:/*#__PURE__*/_jsx(Button,{ckT6aSWID:{borderColor:'var(--token-02848c9e-eebb-49ab-92c1-0ef2f131911a, rgb(193, 168, 142)) /* {\"name\":\"1\"} */',borderStyle:\"solid\",borderWidth:1},gHdsWAit0:false,height:\"100%\",id:\"XTfA_p58h\",iJGZdvfA8:\"Book Your Session\",kwhkjN35p:\"https://kristy-dellacroce.clientsecure.me/\",layoutId:\"XTfA_p58h\",LvCD7jYC6:{borderColor:'var(--token-eee754d8-305b-42be-81d8-5d38b4cfe5b7, rgb(54, 92, 70)) /* {\"name\":\"4\"} */',borderStyle:\"solid\",borderWidth:1},OkCaYY0Dx:\"rgb(252, 222, 189)\",QNQF0Ijw3:\"20px\",style:{height:\"100%\"},variant:\"qtQRQ9Dl5\",w6qVj_pXX:\"5px\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgba(194, 169, 143, 0.05); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-x0dfH.framer-lux5qc, .framer-x0dfH .framer-lux5qc { display: block; }\",\".framer-x0dfH.framer-72rtr7 { align-content: center; align-items: center; background-color: rgba(194, 169, 143, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-x0dfH .framer-1wkbp19-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-x0dfH .framer-1ocz52a-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 8; }\",\".framer-x0dfH .framer-sy86do { background-color: #ffffff; flex: none; height: 100vh; overflow: hidden; position: relative; width: 100%; z-index: 3; }\",\".framer-x0dfH .framer-1d7y8dt-container { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); opacity: 0.31; position: absolute; top: calc(50.00000000000002% - 100vh / 2); width: 100%; z-index: 2; }\",\".framer-x0dfH .framer-17m84i9 { align-content: center; align-items: center; bottom: 80px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; z-index: 3; }\",\".framer-x0dfH .framer-147cuij { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; -webkit-filter: brightness(1.32); filter: brightness(1.32); flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 1000px; word-break: break-word; word-wrap: break-word; z-index: 4; }\",\".framer-x0dfH .framer-kga8u8-container { flex: none; height: 99.99999999999999vh; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-x0dfH .framer-hj0se3 { background: linear-gradient(180deg, rgba(194, 169, 143, 0) 0%, rgba(204, 186, 167, 0) 18.91891891891892%, rgb(236, 235, 233) 78.37837837837837%, rgb(236, 235, 233) 88.28828828828829%, rgb(237, 236, 235) 100%); bottom: 0px; flex: none; height: 72px; left: 0px; overflow: hidden; position: absolute; width: 100%; }\",\".framer-x0dfH .framer-10lcray { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; min-height: 300px; overflow: hidden; padding: 40px; position: relative; width: 100%; z-index: 3; }\",\".framer-x0dfH .framer-aowx10 { 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: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-x0dfH .framer-1wi8wgv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 3; }\",\".framer-x0dfH .framer-s61at-container, .framer-x0dfH .framer-18d0qmw-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-x0dfH .framer-v0a78s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 100px 40px; position: relative; scroll-margin-top: 250px; width: 100%; }\",\".framer-x0dfH .framer-6v6zp8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-x0dfH .framer-1g2lpdo, .framer-x0dfH .framer-1rzktmj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-x0dfH .framer-t55vbn, .framer-x0dfH .framer-hrjt6u, .framer-x0dfH .framer-r8mif, .framer-x0dfH .framer-he5a5t, .framer-x0dfH .framer-181s5oz, .framer-x0dfH .framer-ssgpa7, .framer-x0dfH .framer-d8hfaf, .framer-x0dfH .framer-djv0x9, .framer-x0dfH .framer-eh6t8h, .framer-x0dfH .framer-1qet21e, .framer-x0dfH .framer-j7umr4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-x0dfH .framer-1obafdt { align-content: center; align-items: center; background-color: rgba(174, 103, 65, 0.11); box-shadow: inset 0px 0px 48px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 100px 40px; position: relative; scroll-margin-top: 250px; width: 100%; }\",\".framer-x0dfH .framer-1ylx3pm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-x0dfH .framer-1gn11so { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: 683px; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-x0dfH .framer-18j2ytr, .framer-x0dfH .framer-1wkoaoz { align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; justify-self: start; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-x0dfH .framer-3t85fl { border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-x0dfH .framer-2f10hw { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-x0dfH .framer-12589l3, .framer-x0dfH .framer-6qz354, .framer-x0dfH .framer-614ylz, .framer-x0dfH .framer-1atln81, .framer-x0dfH .framer-zwuuhg, .framer-x0dfH .framer-4u0ofc, .framer-x0dfH .framer-1m7jh2r, .framer-x0dfH .framer-e2v0u1 { align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-x0dfH .framer-vdnjt6, .framer-x0dfH .framer-12adj1v, .framer-x0dfH .framer-1nvv93t, .framer-x0dfH .framer-1qzdfv7, .framer-x0dfH .framer-p16iho, .framer-x0dfH .framer-1sr8px3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-x0dfH .framer-153uxyt, .framer-x0dfH .framer-ptbwu4, .framer-x0dfH .framer-j10yn4, .framer-x0dfH .framer-16lvjsk, .framer-x0dfH .framer-1bo9jk6, .framer-x0dfH .framer-1kjncfj, .framer-x0dfH .framer-1rszigl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-x0dfH .framer-1dw3wom-container, .framer-x0dfH .framer-1vcruga-container, .framer-x0dfH .framer-19hnfmn-container, .framer-x0dfH .framer-16u01qk-container, .framer-x0dfH .framer-s89rfy-container { flex: none; height: 45px; position: relative; width: auto; z-index: 6; }\",\".framer-x0dfH .framer-d2ua8o { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 1337px; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-x0dfH .framer-1cy9l94, .framer-x0dfH .framer-j38eyx, .framer-x0dfH .framer-1tunp1a, .framer-x0dfH .framer-1370ztd { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-x0dfH .framer-1l0t2ap { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: 172px; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-x0dfH .framer-1r4uo7p { --border-bottom-width: 1px; --border-color: var(--token-2bb21863-568e-4088-b157-266b8dd57dcf, #3b825d); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 2; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-x0dfH .framer-uztzv4 { align-content: center; align-items: center; background-color: rgba(174, 103, 65, 0.11); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: inset 0px 0px 48px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-x0dfH .framer-pi5ei8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-x0dfH .framer-1dthn7l { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: 444px; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-x0dfH .framer-6835ax { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 36px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-x0dfH .framer-60wdtl { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 49%; transform: translateY(-50%); white-space: pre-wrap; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-x0dfH .framer-1ve60yd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-x0dfH .framer-xc19e0 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-x0dfH .framer-l94lol { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-x0dfH .framer-10cmie0 { -webkit-mask: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.9) 68.01807300464527%, rgba(0,0,0,0) 95.0451000316723%) add; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 500px; justify-content: center; mask: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.9) 68.01807300464527%, rgba(0,0,0,0) 95.0451000316723%) add; overflow: hidden; padding: 0px; position: relative; width: 500px; }\",\".framer-x0dfH .framer-1ldcmxc { --border-bottom-width: 1px; --border-color: rgba(133, 79, 48, 0.36); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-x0dfH .framer-ptrgup-container { flex: 1 0 0px; height: 71px; position: relative; width: 1px; }\",\".framer-x0dfH .framer-gmkpn6, .framer-x0dfH .framer-grz6nc, .framer-x0dfH .framer-8xz81j, .framer-x0dfH .framer-59cw7v, .framer-x0dfH .framer-8j2l4v, .framer-x0dfH .framer-ix6ism { --border-bottom-width: 0px; --border-color: var(--token-dd7c824e-e0b8-4221-9120-aa27b971fe87, #854f30); --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 25px 0px 25px; position: relative; width: min-content; }\",\".framer-x0dfH .framer-10kpef2, .framer-x0dfH .framer-ztm8vh, .framer-x0dfH .framer-k8aq0k, .framer-x0dfH .framer-q3d7k5, .framer-x0dfH .framer-9rx22v, .framer-x0dfH .framer-afjg7h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 229px; word-break: break-word; word-wrap: break-word; }\",\".framer-x0dfH .framer-1n52mcq { align-content: center; align-items: center; background-color: rgba(174, 103, 65, 0.11); box-shadow: inset 0px 0px 48px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; min-height: 250px; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-x0dfH .framer-100wigj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-x0dfH .framer-vvh1r2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1000px; min-height: 250px; overflow: visible; padding: 60px; position: relative; width: 100%; z-index: 3; }\",\".framer-x0dfH .framer-1ozbq4n-container, .framer-x0dfH .framer-or1rnl-container, .framer-x0dfH .framer-16loz7g-container { flex: none; height: auto; position: relative; width: 100%; z-index: 3; }\",\".framer-x0dfH .framer-layt1w { align-content: center; align-items: center; aspect-ratio: 0.75 / 1; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 50%; opacity: 0.4; overflow: hidden; padding: 0px; position: absolute; top: 0px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 903px); z-index: -1; }\",\".framer-x0dfH .framer-6w8cqu { flex: none; height: 91.125vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-x0dfH .framer-8ykw3r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 731px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 40px; position: absolute; top: 0px; width: 100%; }\",\".framer-x0dfH .framer-1jkz0q2 { -webkit-backdrop-filter: blur(5px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(5px); background-color: rgba(194, 169, 143, 0.54); bottom: -660px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 887px; justify-content: center; left: 0px; overflow: hidden; padding: 24px; position: absolute; right: 0px; z-index: 2; }\",\".framer-x0dfH .framer-97cpij { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --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; z-index: 4; }\",\".framer-x0dfH .framer-10eak27 { flex: none; height: 100px; overflow: hidden; position: relative; width: 100%; }\",\".framer-x0dfH .framer-1655o5a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 60px 20px 60px 0px; position: relative; width: 1000px; }\",\".framer-x0dfH .framer-1vll5a1, .framer-x0dfH .framer-10w6rvg { -webkit-mask: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.9) 68.01807300464527%, rgba(0,0,0,0) 95.0451000316723%) add; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 500px; justify-content: center; mask: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.9) 68.01807300464527%, rgba(0,0,0,0) 95.0451000316723%) add; max-width: 500px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-x0dfH .framer-8pxfu4 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-x0dfH .framer-vcdsyh-container { flex: 1 0 0px; height: auto; max-width: 1000px; position: relative; width: 1px; }\",\".framer-x0dfH .framer-1e3nvbq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 60px 20px 60px 20px; position: relative; width: 1000px; }\",\".framer-x0dfH .framer-1q3wz4z { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-x0dfH .framer-1b71x42-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-x0dfH .framer-1bt402b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 60px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-x0dfH .framer-trqqzr-container { flex: none; height: auto; position: relative; width: 100%; z-index: 8; }\",\".framer-x0dfH .framer-zg6p7y-container { flex: none; height: 47px; position: relative; width: auto; z-index: 7; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-x0dfH.framer-72rtr7, .framer-x0dfH .framer-17m84i9, .framer-x0dfH .framer-10lcray, .framer-x0dfH .framer-aowx10, .framer-x0dfH .framer-v0a78s, .framer-x0dfH .framer-6v6zp8, .framer-x0dfH .framer-1obafdt, .framer-x0dfH .framer-1ylx3pm, .framer-x0dfH .framer-18j2ytr, .framer-x0dfH .framer-12589l3, .framer-x0dfH .framer-vdnjt6, .framer-x0dfH .framer-6qz354, .framer-x0dfH .framer-12adj1v, .framer-x0dfH .framer-614ylz, .framer-x0dfH .framer-1atln81, .framer-x0dfH .framer-zwuuhg, .framer-x0dfH .framer-1nvv93t, .framer-x0dfH .framer-4u0ofc, .framer-x0dfH .framer-1qzdfv7, .framer-x0dfH .framer-1m7jh2r, .framer-x0dfH .framer-1r4uo7p, .framer-x0dfH .framer-p16iho, .framer-x0dfH .framer-uztzv4, .framer-x0dfH .framer-pi5ei8, .framer-x0dfH .framer-1wkoaoz, .framer-x0dfH .framer-e2v0u1, .framer-x0dfH .framer-1sr8px3, .framer-x0dfH .framer-6835ax, .framer-x0dfH .framer-1ve60yd, .framer-x0dfH .framer-xc19e0, .framer-x0dfH .framer-l94lol, .framer-x0dfH .framer-10cmie0, .framer-x0dfH .framer-1ldcmxc, .framer-x0dfH .framer-gmkpn6, .framer-x0dfH .framer-grz6nc, .framer-x0dfH .framer-8xz81j, .framer-x0dfH .framer-59cw7v, .framer-x0dfH .framer-8j2l4v, .framer-x0dfH .framer-ix6ism, .framer-x0dfH .framer-1n52mcq, .framer-x0dfH .framer-vvh1r2, .framer-x0dfH .framer-layt1w, .framer-x0dfH .framer-8ykw3r, .framer-x0dfH .framer-1jkz0q2, .framer-x0dfH .framer-1655o5a, .framer-x0dfH .framer-1vll5a1, .framer-x0dfH .framer-8pxfu4, .framer-x0dfH .framer-1e3nvbq, .framer-x0dfH .framer-1q3wz4z, .framer-x0dfH .framer-10w6rvg, .framer-x0dfH .framer-1bt402b { gap: 0px; } .framer-x0dfH.framer-72rtr7 > *, .framer-x0dfH .framer-18j2ytr > *, .framer-x0dfH .framer-12589l3 > *, .framer-x0dfH .framer-6qz354 > *, .framer-x0dfH .framer-614ylz > *, .framer-x0dfH .framer-1atln81 > *, .framer-x0dfH .framer-zwuuhg > *, .framer-x0dfH .framer-4u0ofc > *, .framer-x0dfH .framer-1m7jh2r > *, .framer-x0dfH .framer-1r4uo7p > *, .framer-x0dfH .framer-1wkoaoz > *, .framer-x0dfH .framer-e2v0u1 > *, .framer-x0dfH .framer-1bt402b > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-x0dfH.framer-72rtr7 > :first-child, .framer-x0dfH .framer-17m84i9 > :first-child, .framer-x0dfH .framer-10lcray > :first-child, .framer-x0dfH .framer-aowx10 > :first-child, .framer-x0dfH .framer-v0a78s > :first-child, .framer-x0dfH .framer-6v6zp8 > :first-child, .framer-x0dfH .framer-1obafdt > :first-child, .framer-x0dfH .framer-1ylx3pm > :first-child, .framer-x0dfH .framer-18j2ytr > :first-child, .framer-x0dfH .framer-12589l3 > :first-child, .framer-x0dfH .framer-vdnjt6 > :first-child, .framer-x0dfH .framer-6qz354 > :first-child, .framer-x0dfH .framer-12adj1v > :first-child, .framer-x0dfH .framer-614ylz > :first-child, .framer-x0dfH .framer-1atln81 > :first-child, .framer-x0dfH .framer-zwuuhg > :first-child, .framer-x0dfH .framer-1nvv93t > :first-child, .framer-x0dfH .framer-4u0ofc > :first-child, .framer-x0dfH .framer-1qzdfv7 > :first-child, .framer-x0dfH .framer-1m7jh2r > :first-child, .framer-x0dfH .framer-1r4uo7p > :first-child, .framer-x0dfH .framer-p16iho > :first-child, .framer-x0dfH .framer-uztzv4 > :first-child, .framer-x0dfH .framer-pi5ei8 > :first-child, .framer-x0dfH .framer-1wkoaoz > :first-child, .framer-x0dfH .framer-e2v0u1 > :first-child, .framer-x0dfH .framer-1sr8px3 > :first-child, .framer-x0dfH .framer-l94lol > :first-child, .framer-x0dfH .framer-10cmie0 > :first-child, .framer-x0dfH .framer-1n52mcq > :first-child, .framer-x0dfH .framer-vvh1r2 > :first-child, .framer-x0dfH .framer-layt1w > :first-child, .framer-x0dfH .framer-8ykw3r > :first-child, .framer-x0dfH .framer-1vll5a1 > :first-child, .framer-x0dfH .framer-10w6rvg > :first-child, .framer-x0dfH .framer-1bt402b > :first-child { margin-top: 0px; } .framer-x0dfH.framer-72rtr7 > :last-child, .framer-x0dfH .framer-17m84i9 > :last-child, .framer-x0dfH .framer-10lcray > :last-child, .framer-x0dfH .framer-aowx10 > :last-child, .framer-x0dfH .framer-v0a78s > :last-child, .framer-x0dfH .framer-6v6zp8 > :last-child, .framer-x0dfH .framer-1obafdt > :last-child, .framer-x0dfH .framer-1ylx3pm > :last-child, .framer-x0dfH .framer-18j2ytr > :last-child, .framer-x0dfH .framer-12589l3 > :last-child, .framer-x0dfH .framer-vdnjt6 > :last-child, .framer-x0dfH .framer-6qz354 > :last-child, .framer-x0dfH .framer-12adj1v > :last-child, .framer-x0dfH .framer-614ylz > :last-child, .framer-x0dfH .framer-1atln81 > :last-child, .framer-x0dfH .framer-zwuuhg > :last-child, .framer-x0dfH .framer-1nvv93t > :last-child, .framer-x0dfH .framer-4u0ofc > :last-child, .framer-x0dfH .framer-1qzdfv7 > :last-child, .framer-x0dfH .framer-1m7jh2r > :last-child, .framer-x0dfH .framer-1r4uo7p > :last-child, .framer-x0dfH .framer-p16iho > :last-child, .framer-x0dfH .framer-uztzv4 > :last-child, .framer-x0dfH .framer-pi5ei8 > :last-child, .framer-x0dfH .framer-1wkoaoz > :last-child, .framer-x0dfH .framer-e2v0u1 > :last-child, .framer-x0dfH .framer-1sr8px3 > :last-child, .framer-x0dfH .framer-l94lol > :last-child, .framer-x0dfH .framer-10cmie0 > :last-child, .framer-x0dfH .framer-1n52mcq > :last-child, .framer-x0dfH .framer-vvh1r2 > :last-child, .framer-x0dfH .framer-layt1w > :last-child, .framer-x0dfH .framer-8ykw3r > :last-child, .framer-x0dfH .framer-1vll5a1 > :last-child, .framer-x0dfH .framer-10w6rvg > :last-child, .framer-x0dfH .framer-1bt402b > :last-child { margin-bottom: 0px; } .framer-x0dfH .framer-17m84i9 > *, .framer-x0dfH .framer-aowx10 > *, .framer-x0dfH .framer-pi5ei8 > *, .framer-x0dfH .framer-layt1w > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-x0dfH .framer-10lcray > *, .framer-x0dfH .framer-v0a78s > *, .framer-x0dfH .framer-1obafdt > *, .framer-x0dfH .framer-uztzv4 > *, .framer-x0dfH .framer-1n52mcq > *, .framer-x0dfH .framer-vvh1r2 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-x0dfH .framer-6v6zp8 > *, .framer-x0dfH .framer-1ylx3pm > *, .framer-x0dfH .framer-vdnjt6 > *, .framer-x0dfH .framer-12adj1v > *, .framer-x0dfH .framer-1nvv93t > *, .framer-x0dfH .framer-1qzdfv7 > *, .framer-x0dfH .framer-p16iho > *, .framer-x0dfH .framer-1sr8px3 > *, .framer-x0dfH .framer-l94lol > *, .framer-x0dfH .framer-10cmie0 > *, .framer-x0dfH .framer-8ykw3r > *, .framer-x0dfH .framer-1vll5a1 > *, .framer-x0dfH .framer-10w6rvg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-x0dfH .framer-6835ax > *, .framer-x0dfH .framer-xc19e0 > *, .framer-x0dfH .framer-gmkpn6 > *, .framer-x0dfH .framer-grz6nc > *, .framer-x0dfH .framer-8xz81j > *, .framer-x0dfH .framer-59cw7v > *, .framer-x0dfH .framer-8j2l4v > *, .framer-x0dfH .framer-ix6ism > *, .framer-x0dfH .framer-1jkz0q2 > *, .framer-x0dfH .framer-8pxfu4 > *, .framer-x0dfH .framer-1q3wz4z > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-x0dfH .framer-6835ax > :first-child, .framer-x0dfH .framer-1ve60yd > :first-child, .framer-x0dfH .framer-xc19e0 > :first-child, .framer-x0dfH .framer-1ldcmxc > :first-child, .framer-x0dfH .framer-gmkpn6 > :first-child, .framer-x0dfH .framer-grz6nc > :first-child, .framer-x0dfH .framer-8xz81j > :first-child, .framer-x0dfH .framer-59cw7v > :first-child, .framer-x0dfH .framer-8j2l4v > :first-child, .framer-x0dfH .framer-ix6ism > :first-child, .framer-x0dfH .framer-1jkz0q2 > :first-child, .framer-x0dfH .framer-1655o5a > :first-child, .framer-x0dfH .framer-8pxfu4 > :first-child, .framer-x0dfH .framer-1e3nvbq > :first-child, .framer-x0dfH .framer-1q3wz4z > :first-child { margin-left: 0px; } .framer-x0dfH .framer-6835ax > :last-child, .framer-x0dfH .framer-1ve60yd > :last-child, .framer-x0dfH .framer-xc19e0 > :last-child, .framer-x0dfH .framer-1ldcmxc > :last-child, .framer-x0dfH .framer-gmkpn6 > :last-child, .framer-x0dfH .framer-grz6nc > :last-child, .framer-x0dfH .framer-8xz81j > :last-child, .framer-x0dfH .framer-59cw7v > :last-child, .framer-x0dfH .framer-8j2l4v > :last-child, .framer-x0dfH .framer-ix6ism > :last-child, .framer-x0dfH .framer-1jkz0q2 > :last-child, .framer-x0dfH .framer-1655o5a > :last-child, .framer-x0dfH .framer-8pxfu4 > :last-child, .framer-x0dfH .framer-1e3nvbq > :last-child, .framer-x0dfH .framer-1q3wz4z > :last-child { margin-right: 0px; } .framer-x0dfH .framer-1ve60yd > *, .framer-x0dfH .framer-1655o5a > *, .framer-x0dfH .framer-1e3nvbq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-x0dfH .framer-1ldcmxc > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-x0dfH[data-border=\"true\"]::after, .framer-x0dfH [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-x0dfH.framer-72rtr7 { width: 810px; } .framer-x0dfH .framer-sy86do { z-index: 4; } .framer-x0dfH .framer-147cuij { width: 100%; } .framer-x0dfH .framer-v0a78s { padding: 24px; } .framer-x0dfH .framer-6v6zp8 { max-width: 700px; padding: 24px; } .framer-x0dfH .framer-1obafdt { padding: 80px 40px 80px 40px; } .framer-x0dfH .framer-1gn11so { height: 795px; } .framer-x0dfH .framer-d2ua8o { height: 1427px; } .framer-x0dfH .framer-1l0t2ap { height: 141px; } .framer-x0dfH .framer-uztzv4 { padding: 80px 10px 80px 10px; } .framer-x0dfH .framer-1dthn7l { height: 434px; } .framer-x0dfH .framer-1ve60yd { max-width: 700px; } .framer-x0dfH .framer-xc19e0 { align-self: unset; height: min-content; } .framer-x0dfH .framer-l94lol { max-width: 375px; } .framer-x0dfH .framer-10cmie0 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 300px); width: 300px; } .framer-x0dfH .framer-1ldcmxc { max-width: unset; } .framer-x0dfH .framer-layt1w { width: var(--framer-aspect-ratio-supported, 1051px); } .framer-x0dfH .framer-6w8cqu { height: 52.129629629629626vh; } .framer-x0dfH .framer-1jkz0q2 { bottom: -236px; height: 604px; } .framer-x0dfH .framer-10eak27 { height: 50px; } .framer-x0dfH .framer-1655o5a { max-width: 750px; padding: 60px 20px 60px 20px; width: 100%; } .framer-x0dfH .framer-1vll5a1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 300px); max-width: 750px; width: 300px; } .framer-x0dfH .framer-8pxfu4 { max-width: 750px; } .framer-x0dfH .framer-1e3nvbq { max-width: 750px; width: 100%; } .framer-x0dfH .framer-10w6rvg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 300px); width: 300px; } .framer-x0dfH .framer-1bt402b { max-width: 750px; padding: 60px 20px 100px 20px; }}\",\"@media (max-width: 809px) { .framer-x0dfH.framer-72rtr7 { width: 390px; } .framer-x0dfH .framer-1wkbp19-container { order: 17; } .framer-x0dfH .framer-1ocz52a-container { order: 0; z-index: 9; } .framer-x0dfH .framer-sy86do { order: 1; z-index: 6; } .framer-x0dfH .framer-17m84i9 { bottom: 130px; } .framer-x0dfH .framer-147cuij { max-width: 350px; width: 100%; } .framer-x0dfH .framer-10lcray { order: 2; padding: 24px; } .framer-x0dfH .framer-1wi8wgv, .framer-x0dfH .framer-l94lol { max-width: 500px; } .framer-x0dfH .framer-v0a78s { order: 3; padding: 100px 20px 100px 20px; scroll-margin-top: 50px; } .framer-x0dfH .framer-1obafdt { order: 4; padding: 60px 20px 60px 20px; scroll-margin-top: 75px; } .framer-x0dfH .framer-1gn11so, .framer-x0dfH .framer-d2ua8o, .framer-x0dfH .framer-1l0t2ap, .framer-x0dfH .framer-1dthn7l { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; height: min-content; } .framer-x0dfH .framer-18j2ytr { align-self: unset; flex-direction: row; height: 150px; order: 0; } .framer-x0dfH .framer-3t85fl, .framer-x0dfH .framer-2f10hw { height: 100%; width: 1px; } .framer-x0dfH .framer-12589l3, .framer-x0dfH .framer-6qz354, .framer-x0dfH .framer-e2v0u1 { align-self: unset; height: min-content; order: 1; } .framer-x0dfH .framer-vdnjt6, .framer-x0dfH .framer-p16iho, .framer-x0dfH .framer-1sr8px3 { order: 0; } .framer-x0dfH .framer-614ylz, .framer-x0dfH .framer-1wkoaoz { align-self: unset; height: 150px; order: 0; } .framer-x0dfH .framer-1atln81 { align-self: unset; height: 150px; order: 2; } .framer-x0dfH .framer-zwuuhg { align-self: unset; height: min-content; order: 3; } .framer-x0dfH .framer-4u0ofc { align-self: unset; height: min-content; order: 5; } .framer-x0dfH .framer-1m7jh2r { align-self: unset; height: 150px; order: 4; } .framer-x0dfH .framer-1r4uo7p { align-self: unset; height: min-content; order: 0; } .framer-x0dfH .framer-uztzv4 { padding: 60px 20px 60px 20px; } .framer-x0dfH .framer-1ve60yd { flex-direction: column; gap: 24px; order: 5; padding: 100px 20px 100px 20px; } .framer-x0dfH .framer-xc19e0, .framer-x0dfH .framer-1q3wz4z { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-x0dfH .framer-10cmie0 { height: 200px; order: 0; width: 200px; } .framer-x0dfH .framer-1ldcmxc { flex-direction: column; order: 6; } .framer-x0dfH .framer-ptrgup-container { flex: none; width: 100%; } .framer-x0dfH .framer-1n52mcq { order: 9; padding: 100px 20px 100px 20px; } .framer-x0dfH .framer-vvh1r2 { padding: 0px; } .framer-x0dfH .framer-layt1w { width: var(--framer-aspect-ratio-supported, 1362px); } .framer-x0dfH .framer-6w8cqu { height: 50vh; order: 10; } .framer-x0dfH .framer-8ykw3r { bottom: 0px; height: unset; } .framer-x0dfH .framer-1jkz0q2 { bottom: -335px; height: 510px; z-index: 5; } .framer-x0dfH .framer-10eak27 { height: 80px; order: 11; } .framer-x0dfH .framer-1655o5a { flex-direction: column; order: 12; padding: 40px 20px 40px 20px; width: 100%; } .framer-x0dfH .framer-1vll5a1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); width: 200px; } .framer-x0dfH .framer-8pxfu4 { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-x0dfH .framer-1e3nvbq { flex-direction: column; order: 13; padding: 40px 20px 40px 20px; width: 100%; } .framer-x0dfH .framer-10w6rvg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); order: 0; width: 200px; } .framer-x0dfH .framer-1bt402b { order: 14; padding: 40px 20px 60px 20px; } .framer-x0dfH .framer-trqqzr-container { order: 15; } .framer-x0dfH .framer-zg6p7y-container { bottom: 30px; left: 50%; order: 16; position: fixed; transform: translateX(-50%); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-x0dfH .framer-1gn11so, .framer-x0dfH .framer-18j2ytr, .framer-x0dfH .framer-d2ua8o, .framer-x0dfH .framer-1l0t2ap, .framer-x0dfH .framer-1dthn7l, .framer-x0dfH .framer-1ve60yd, .framer-x0dfH .framer-1ldcmxc, .framer-x0dfH .framer-1655o5a, .framer-x0dfH .framer-1e3nvbq { gap: 0px; } .framer-x0dfH .framer-1gn11so > *, .framer-x0dfH .framer-d2ua8o > *, .framer-x0dfH .framer-1l0t2ap > *, .framer-x0dfH .framer-1dthn7l > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-x0dfH .framer-1gn11so > :first-child, .framer-x0dfH .framer-d2ua8o > :first-child, .framer-x0dfH .framer-1l0t2ap > :first-child, .framer-x0dfH .framer-1dthn7l > :first-child, .framer-x0dfH .framer-1ve60yd > :first-child, .framer-x0dfH .framer-1ldcmxc > :first-child, .framer-x0dfH .framer-1655o5a > :first-child, .framer-x0dfH .framer-1e3nvbq > :first-child { margin-top: 0px; } .framer-x0dfH .framer-1gn11so > :last-child, .framer-x0dfH .framer-d2ua8o > :last-child, .framer-x0dfH .framer-1l0t2ap > :last-child, .framer-x0dfH .framer-1dthn7l > :last-child, .framer-x0dfH .framer-1ve60yd > :last-child, .framer-x0dfH .framer-1ldcmxc > :last-child, .framer-x0dfH .framer-1655o5a > :last-child, .framer-x0dfH .framer-1e3nvbq > :last-child { margin-bottom: 0px; } .framer-x0dfH .framer-18j2ytr > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-x0dfH .framer-18j2ytr > :first-child { margin-left: 0px; } .framer-x0dfH .framer-18j2ytr > :last-child { margin-right: 0px; } .framer-x0dfH .framer-1ve60yd > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-x0dfH .framer-1ldcmxc > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-x0dfH .framer-1655o5a > *, .framer-x0dfH .framer-1e3nvbq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11111\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bBhb2Tv5j\":{\"layout\":[\"fixed\",\"auto\"]},\"uL4lTe2uF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-x0dfH\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:11111,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Bespoke Serif\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CJJCHKBHDTGLETO5BRZ46UGR4TE2CYUR/VHH43O3FGXKF4RFMPYXWG72QP572N7EB/4SUX34SCSGLRAAS6PP4FWR6B7JQTM4JE.woff2\",weight:\"300\"},{family:\"Bespoke Serif\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/DGL7AR63QELJFTOEASXHFYM5NAKYODNK/GYJUWP667LEHZ5W2WM5CQDIWDFJX2DFY/DLLWXFUYSJGEWBBZLWVRWRKWK2K5HHIO.woff2\",weight:\"400\"},{family:\"Bespoke Serif\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LJ2MIWBZLOP5ROTPIATJWJHTCINMBNEE/S7KFQDT7WDO3EXV2IMELFT6AAOX24DTM/A3D35MFKWQ3EIKAD2QI6LGKQ7ZD2BKN5.woff2\",weight:\"700\"},{family:\"Bespoke Serif\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2PSLJEB6CXRUK3O666TIWMY7BA45GJ2F/SVLOKUEJ3DYAJ4TKQGQYABXIO7NEL57W/JY6T5TIASDWQEULE5B7Z6EGZTYBOFMS4.woff2\",weight:\"300\"},{family:\"Cormorant Garamond\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vvAWJ5heb_w.woff2\",weight:\"700\"}]},...SmoothScrollFonts,...NavBarTopFonts,...GrainEffectComponentFonts,...VideoFonts,...MainButtonCTAWrapWithBottomTextFonts,...ButtonFonts,...TickerFonts,...TestimonialCardFonts,...HowItWorksCardFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bBhb2Tv5j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uL4lTe2uF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"11111\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "n", "createGeneratorEasing", "e", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "bodyFontSize", "gap", "handleFontColor", "handleFontSize", "height", "id", "name1", "nameFontColor", "nameFontSize", "padding", "profileImageUpload", "profileImageVisible", "reviewCardBorder", "reviewCardFill", "reviewFontColor", "shadow", "socialMediaHandle", "testimonial", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_ref8", "_ref9", "_ref10", "_ref11", "_humanReadableVariantMap_props_variant", "_ref12", "_ref13", "_ref14", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "f1hGfMASU", "dkqbZPRjZ", "W15XWkWWn", "q9uhhDog9", "NO9YbFxlQ", "un58Tm6IO", "g5EHIof8X", "uajD9xaia", "XO0pFsIbb", "dn7qayYix", "V8EwIgwys", "Kh1QAilBi", "TZSOFfcI7", "FbdW21Zu3", "CKWlZg46H", "jQVXhpfjz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_V8EwIgwys_borderBottomWidth", "_V8EwIgwys_borderLeftWidth", "_V8EwIgwys_borderRightWidth", "_V8EwIgwys_borderTopWidth", "LayoutGroup", "u", "cx", "Image2", "RichText2", "css", "FramerIR4h7WFgY", "withCSS", "IR4h7WFgY_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1h9udgx", "args", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "cx", "css", "FramerwX8rvsFX8", "withCSS", "wX8rvsFX8_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavBarTopFonts", "b3DLXkUAp_default", "NavBarTopWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithFX", "withFX", "Container", "GrainEffectComponentFonts", "wX8rvsFX8_default", "VideoFonts", "Video", "MotionDivWithFX", "motion", "MainButtonCTAWrapWithBottomTextFonts", "EQuKncWdS_default", "ButtonFonts", "iV96uF8ZA_default", "RichTextWithFX", "RichText2", "ImageWithFX", "Image2", "TickerFonts", "Ticker", "TestimonialCardFonts", "IR4h7WFgY_default", "HowItWorksCardFonts", "MXdYGXlh4_default", "FooterFonts", "pqoCJmnBK_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "getTextEffect", "ref", "animation1", "transition2", "animation2", "animation3", "animation4", "transition3", "animation5", "animation6", "animation7", "transition4", "animation8", "transformTemplate1", "_", "transformTemplate2", "transition5", "animation9", "animation10", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "ref2", "ref3", "elementId", "useRouteElementId", "ref4", "elementId1", "elementId2", "ref5", "elementId3", "ref6", "router", "useRouter", "elementId4", "ref7", "elementId5", "ref8", "elementId6", "isDisplayed", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
