{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/zDAArAW2qVxPwCRIntD2/qaSuaR2YFpuluWtRwxJo/m6_loTlSo.js", "ssg:https://framerusercontent.com/modules/yzNQ2w5AUiEqQlUY1bjQ/Tt0llHjZiL4rjmJ051Bp/sh8lruwYX.js", "ssg:https://framerusercontent.com/modules/EPpaC0vUIbtiWcWNbvyz/i33pZbrErZYKfg1nVL16/augiA20Il.js", "ssg:https://framerusercontent.com/modules/aTFoEFxr2YFWEBiMSQSO/esxD17oA5uGeTxCYE8Hj/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-rv5HP .framer-styles-preset-1hlqpze:not(.rich-text-wrapper), .framer-rv5HP .framer-styles-preset-1hlqpze.rich-text-wrapper a { --framer-link-current-text-color: var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, #2c2c2c) /* {\"name\":\"Black\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, #2c2c2c) /* {\"name\":\"Black\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, #2c2c2c); --framer-link-text-decoration: none; }'];export const className=\"framer-rv5HP\";\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 (c815cea)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/zDAArAW2qVxPwCRIntD2/qaSuaR2YFpuluWtRwxJo/m6_loTlSo.js\";const enabledGestures={LkYqYK6Q2:{hover:true}};const cycleOrder=[\"LkYqYK6Q2\"];const serializationHash=\"framer-y2Esa\";const variantClassNames={LkYqYK6Q2:\"framer-v-1w8z2wh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:45,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({buttonText,height,id,link,newTab,width,...props})=>{var _ref;return{...props,aYuLphz8e:newTab!==null&&newTab!==void 0?newTab:props.aYuLphz8e,j0mNTb6PM:(_ref=buttonText!==null&&buttonText!==void 0?buttonText:props.j0mNTb6PM)!==null&&_ref!==void 0?_ref:\"Secondary Button\",K5nLJw0fN:link!==null&&link!==void 0?link:props.K5nLJw0fN};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,j0mNTb6PM,K5nLJw0fN,aYuLphz8e,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LkYqYK6Q2\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.button,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1w8z2wh\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"LkYqYK6Q2\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,boxShadow:\"none\",...style},variants:{\"LkYqYK6Q2-hover\":{boxShadow:'2px 2px 0px 1px var(--token-f1abf627-c607-44f9-9654-8cde711928ab, rgb(207, 210, 246)) /* {\"name\":\"Purple 200\"} */'}},...addPropertyOverrides({\"LkYqYK6Q2-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTcwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44)))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:K5nLJw0fN,openInNewTab:aYuLphz8e,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1hlqpze\",\"data-styles-preset\":\"m6_loTlSo\",children:\"Secondary Button\"})})})}),className:\"framer-kg0c0u\",\"data-framer-name\":\"Primary Button\",fonts:[\"GF;Maven Pro-700\"],layoutDependency:layoutDependency,layoutId:\"tr2Fv7dwx\",style:{\"--extracted-r6o4lv\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\",\"--variable-reference-aYuLphz8e-sh8lruwYX\":aYuLphz8e},text:j0mNTb6PM,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"LkYqYK6Q2-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTcwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:K5nLJw0fN,openInNewTab:aYuLphz8e,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1hlqpze\",\"data-styles-preset\":\"m6_loTlSo\",children:\"Secondary Button\"})})})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-y2Esa.framer-1salwom, .framer-y2Esa .framer-1salwom { display: block; }\",\".framer-y2Esa.framer-1w8z2wh { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: min-content; }\",\".framer-y2Esa .framer-kg0c0u { 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-y2Esa.framer-1w8z2wh { gap: 0px; } .framer-y2Esa.framer-1w8z2wh > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-y2Esa.framer-1w8z2wh > :first-child { margin-left: 0px; } .framer-y2Esa.framer-1w8z2wh > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-y2Esa[data-border=\"true\"]::after, .framer-y2Esa [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 51\n * @framerIntrinsicWidth 226\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"IXE1BEmkQ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"j0mNTb6PM\":\"buttonText\",\"K5nLJw0fN\":\"link\",\"aYuLphz8e\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framersh8lruwYX=withCSS(Component,css,\"framer-y2Esa\");export default Framersh8lruwYX;Framersh8lruwYX.displayName=\"Button/Secondary Button\";Framersh8lruwYX.defaultProps={height:51,width:226};addPropertyControls(Framersh8lruwYX,{j0mNTb6PM:{defaultValue:\"Secondary Button\",displayTextArea:false,title:\"Button Text\",type:ControlType.String},K5nLJw0fN:{title:\"Link\",type:ControlType.Link},aYuLphz8e:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(Framersh8lruwYX,[{explicitInter:true,fonts:[{family:\"Maven Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mavenpro/v36/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nWpozp5GvU.woff2\",weight:\"700\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framersh8lruwYX\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"226\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"j0mNTb6PM\\\":\\\"buttonText\\\",\\\"K5nLJw0fN\\\":\\\"link\\\",\\\"aYuLphz8e\\\":\\\"newTab\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"51\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IXE1BEmkQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={a9yhrRRLC:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\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,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import ButtonSecondaryButton from\"https://framerusercontent.com/modules/yzNQ2w5AUiEqQlUY1bjQ/Tt0llHjZiL4rjmJ051Bp/sh8lruwYX.js\";import Footer from\"#framer/local/canvasComponent/CIXzqiWRu/CIXzqiWRu.js\";import ButtonPrimaryButton from\"#framer/local/canvasComponent/otG9lNEMb/otG9lNEMb.js\";import ButtonSecondaryButton1 from\"#framer/local/canvasComponent/sh8lruwYX/sh8lruwYX.js\";import Navigation from\"#framer/local/canvasComponent/ynhTjklrA/ynhTjklrA.js\";import*as sharedStyle1 from\"#framer/local/css/AM1DOgsaf/AM1DOgsaf.js\";import*as sharedStyle5 from\"#framer/local/css/cibkO_FJ4/cibkO_FJ4.js\";import*as sharedStyle4 from\"#framer/local/css/eUeUHIP_G/eUeUHIP_G.js\";import*as sharedStyle2 from\"#framer/local/css/gpf8xRe4h/gpf8xRe4h.js\";import*as sharedStyle6 from\"#framer/local/css/GQgDWDkRU/GQgDWDkRU.js\";import*as sharedStyle3 from\"#framer/local/css/iBn00MmjT/iBn00MmjT.js\";import*as sharedStyle from\"#framer/local/css/nVCDKW51U/nVCDKW51U.js\";import*as sharedStyle7 from\"#framer/local/css/YS_JPb0Zv/YS_JPb0Zv.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TickerFonts=getFonts(Ticker);const NavigationFonts=getFonts(Navigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ButtonPrimaryButtonFonts=getFonts(ButtonPrimaryButton);const ButtonSecondaryButtonFonts=getFonts(ButtonSecondaryButton);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const ContainerWithFX=withFX(Container);const ButtonSecondaryButton1Fonts=getFonts(ButtonSecondaryButton1);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const FooterFonts=getFonts(Footer);const breakpoints={PRO0q76QC:\"(max-width: 809px)\",WQdutADZe:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-f9xA9\";const variantClassNames={PRO0q76QC:\"framer-v-1ruqezg\",WQdutADZe:\"framer-v-14ywg3j\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:45,delay:0,mass:3,stiffness:250,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const animation3={opacity:.001,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,x:0,y:150};const transition2={damping:45,delay:0,mass:1,stiffness:250,type:\"spring\"};const transition3={delay:0,duration:3,ease:[0,0,1,1],type:\"tween\"};const animation5={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={delay:0,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation6={opacity:1,rotate:-12,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={delay:0,duration:.8,ease:[0,0,1,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:0,y:0};const transition6={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition6};const transition7={delay:0,duration:.75,ease:[0,0,1,1],type:\"tween\"};const animation9={opacity:1,rotate:-4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"PRO0q76QC\",Tablet:\"WQdutADZe\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-00b01861-93d7-402c-abbe-2a5860bc28b7, rgb(249, 247, 238)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"nav\",{className:\"framer-njfasl\",\"data-border\":true,\"data-framer-name\":\"Banner\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8vy2wh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nxncYc5mF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"nxncYc5mF\",layoutId:\"nxncYc5mF\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1effxdi\",\"data-framer-name\":\"Speaker\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-70ttfh\",\"data-framer-name\":\"Speaker\",fill:\"black\",intrinsicHeight:948,intrinsicWidth:970,svg:'<svg width=\"970\" height=\"948\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.044 583.839 351.275 549l127.448 335.506a34.976 34.976 0 0 1-.832 26.827 35.146 35.146 0 0 1-19.588 18.38l-26.527 10.019a34.833 34.833 0 0 1-13.526 2.249 34.789 34.789 0 0 1-13.351-3.078 34.775 34.775 0 0 1-11.163-7.924 34.802 34.802 0 0 1-7.266-11.613L259 583.861l.044-.022Z\" fill=\"#fff\"/><path d=\"M419.275 948a41.263 41.263 0 0 1-23.511-7.339 41.46 41.46 0 0 1-15.215-19.376L253.391 585.507c-.568-1.573-.524-3.299.175-4.828a6.316 6.316 0 0 1 3.536-3.298l91.968-34.906a6.367 6.367 0 0 1 4.825 0c.764.35 1.441.83 2.008 1.442a6.105 6.105 0 0 1 1.288 2.097l127.136 335.778c3.886 10.245 3.515 21.625-.982 31.63-4.497 9.982-12.771 17.802-23.009 21.691l-26.479 10.026A40.703 40.703 0 0 1 419.275 948ZM267.427 586.927 392.49 916.829a28.83 28.83 0 0 0 15.04 16.077 28.879 28.879 0 0 0 22.005.743l26.479-10.048a28.788 28.788 0 0 0 16.045-15.05 28.841 28.841 0 0 0 .764-22.019l-124.931-329.88-80.465 30.275Z\" fill=\"#1D1D1B\"/><path d=\"m431.887 939.725 26.498-10.096c8.672-3.351 15.706-10.03 19.529-18.584a35.8 35.8 0 0 0 .83-27.049L472.431 867 379 898.502l7.755 20.633a35.27 35.27 0 0 0 18.328 19.731 34.792 34.792 0 0 0 26.804.859Z\" fill=\"#5C47AE\"/><path d=\"M419.172 948a41.696 41.696 0 0 1-23.641-7.342 41.484 41.484 0 0 1-15.263-19.384l-7.764-20.41a6.506 6.506 0 0 1-.504-2.513c0-.852.175-1.704.504-2.491a6.182 6.182 0 0 1 1.492-2.032 6.17 6.17 0 0 1 2.171-1.246l93.838-31.271a6.47 6.47 0 0 1 4.737.306 6.384 6.384 0 0 1 3.202 3.475l6.382 16.848a41.177 41.177 0 0 1-1.009 31.62c-4.517 10.009-12.829 17.81-23.114 21.722l-26.601 10.008a40.736 40.736 0 0 1-14.43 2.71Zm-32.479-45.541 5.439 14.357c2.697 7.146 8.136 12.915 15.11 16.084a29.125 29.125 0 0 0 22.105.743l26.601-10.052a28.908 28.908 0 0 0 16.141-15.057 28.829 28.829 0 0 0 .745-22.027l-4.232-11.145-81.909 27.097Z\" fill=\"#1D1D1B\"/><path d=\"M73.324 429.853 204.93 380 281 580.782l-131.605 49.874a67.207 67.207 0 0 1-51.33-1.568 67.201 67.201 0 0 1-35.194-37.416l-28.508-75.247a67.521 67.521 0 0 1-4.334-25.83 67.043 67.043 0 0 1 5.88-25.525 67.209 67.209 0 0 1 15.202-21.322 67.297 67.297 0 0 1 22.213-13.895Z\" fill=\"#fff\"/><path d=\"M125.42 642a74.017 74.017 0 0 1-41.89-13.142 74.266 74.266 0 0 1-27.095-34.564l-28.649-75.918a73.63 73.63 0 0 1-4.75-28.409 73.634 73.634 0 0 1 6.48-28.08 73.386 73.386 0 0 1 16.72-23.437c7.047-6.659 15.342-11.828 24.403-15.267l132.259-49.764a6.099 6.099 0 0 1 2.429-.417 6.032 6.032 0 0 1 2.407.548c.766.35 1.445.832 2.014 1.424a6.404 6.404 0 0 1 1.313 2.102l76.536 201.776a6.396 6.396 0 0 1-.153 4.841 6.33 6.33 0 0 1-3.502 3.307l-132.258 50.137A73.168 73.168 0 0 1 125.42 642Zm75.858-254.717L74.863 435.208a61.118 61.118 0 0 0-34.055 32.111 61.307 61.307 0 0 0-1.444 46.808l29.087 75.655c5.756 15.179 17.268 27.445 32.041 34.104a61.174 61.174 0 0 0 46.771 1.445l126.436-47.903-72.421-190.145Z\" fill=\"#1D1D1B\"/><path d=\"M25.227 503.262 28.564 502 68 605.813l-3.337 1.262a29.828 29.828 0 0 1-22.771-.697c-7.198-3.241-12.826-9.202-15.618-16.555L7.996 541.724a29.426 29.426 0 0 1-1.985-11.465c.11-3.916.982-7.766 2.596-11.356a29.366 29.366 0 0 1 6.74-9.463 29.79 29.79 0 0 1 9.88-6.178Z\" fill=\"#5C47AE\"/><path d=\"M54.498 616a36.433 36.433 0 0 1-20.529-6.47A36.272 36.272 0 0 1 20.7 592.636L2.343 544.291c-3.4-8.982-3.093-18.926.877-27.647a36.18 36.18 0 0 1 20.222-18.949l3.4-1.311a6.471 6.471 0 0 1 4.825.175 6.325 6.325 0 0 1 3.311 3.497l39.61 104.207a6.203 6.203 0 0 1-.153 4.808 6.257 6.257 0 0 1-3.51 3.3l-3.377 1.268A36.014 36.014 0 0 1 54.498 616ZM25.174 510.787a23.599 23.599 0 0 0-10.966 12.457 23.608 23.608 0 0 0-.044 16.589l18.402 48.344a23.512 23.512 0 0 0 11.164 12.524c5.132 2.688 11.054 3.365 16.668 1.967l-35.224-91.881Z\" fill=\"#1D1D1B\"/><path d=\"M541.993 108 711 554.237 359.263 574.91 281.468 581a835.628 835.628 0 0 1-46.729-102.728A847.306 847.306 0 0 1 204 380.171l1.222-.414 62.24-47.043L541.993 108Z\" fill=\"#C2BAE1\"/><path d=\"M281.814 586.738a6.288 6.288 0 0 1-2.817-.654 6.242 6.242 0 0 1-2.227-1.831c-.306-.414-.546-.872-.764-1.33a851.16 851.16 0 0 1-46.838-102.907 834.776 834.776 0 0 1-30.985-98.742 6.244 6.244 0 0 1 .568-4.47 6.162 6.162 0 0 1 3.428-2.943h.284l61.555-46.199 274.52-224.217a6.318 6.318 0 0 1 2.664-1.3 6.304 6.304 0 0 1 2.97.068c.96.259 1.855.746 2.598 1.421a6.263 6.263 0 0 1 1.659 2.455L717.57 551.767c.371.916.502 1.919.393 2.9a6.307 6.307 0 0 1-.983 2.769 6.087 6.087 0 0 1-2.14 2.006 6.335 6.335 0 0 1-2.817.85l-352.015 20.647L282.273 587l-.459-.262Zm-70.311-204.025a878.706 878.706 0 0 0 73.914 191.14l73.849-5.799 343.586-20.146-163.091-429.476-267.969 218.844-60.289 45.437Z\" fill=\"#1D1D1B\"/><path d=\"M711.243 553.924c31.84-12.039 19.695-121.572-27.09-244.694-46.807-123.121-110.551-213.177-142.391-201.153-31.839 12.022-19.716 121.566 27.091 244.687 46.807 123.122 110.551 213.178 142.39 201.16Z\" fill=\"#fff\"/><path d=\"M704.991 561c-41.414 0-102.509-102.617-141.828-206.478-42.025-110.999-64.543-237.439-23.413-253.034 41.13-15.594 108.074 93.99 150.12 204.989 22.736 60.073 38.119 118.923 43.291 165.658 3.862 34.97 3.513 78.475-19.922 87.337a23.207 23.207 0 0 1-8.248 1.528ZM548.413 112.752a11.543 11.543 0 0 0-4.211.758c-24.395 9.246-17.762 108.73 30.678 236.734 48.44 127.981 109.579 206.849 133.864 197.55 9.274-3.537 17.26-24.885 11.848-74.196-5.04-45.731-20.161-103.468-42.57-162.58-46.04-121.259-102.967-198.266-129.609-198.266Z\" fill=\"#1D1D1B\"/><path d=\"M710.742 561 709 554.659v-.795.477V548v6.523l2 6.432-1.677-5.114 1.419 5.159Z\" fill=\"#1D1D1B\"/><path d=\"M569.064 352.969C526.922 242.404 512.977 143.007 533.621 115l-36.21 28.007c-8.8 40.822 6.743 126.896 42.493 220.843 36.625 96.325 82.38 170.557 116.356 193.15l46.74-2.333c-33.604-3.664-90.852-88.735-133.936-201.698Z\" fill=\"#fff\"/><path d=\"M656.41 563.913a6.516 6.516 0 0 1-3.521-1.049c-35.892-24.211-82.481-101.412-118.658-196.749-35.28-93.174-52.056-181.518-42.651-224.862a6.093 6.093 0 0 1 2.275-3.662l36.09-28.191a6.333 6.333 0 0 1 4.243-1.394 6.321 6.321 0 0 1 4.112 1.77 6.223 6.223 0 0 1 1.903 4.043 6.29 6.29 0 0 1-1.247 4.291c-16.842 22.511-9.602 111.632 36.22 232.469 45.561 120.138 101.073 195.197 128.697 198.387a6.376 6.376 0 0 1 4.419 2.011 6.384 6.384 0 0 1 1.706 4.523 6.354 6.354 0 0 1-2.013 4.392 6.396 6.396 0 0 1-4.527 1.704L656.761 564l-.351-.087ZM503.457 146.091c-7.721 41.565 9.252 127.528 42.607 215.523 34.712 91.557 78.522 165.479 112.206 189.581l20.603-1.049c-35.345-27.554-80.031-102.023-115.486-195.066-35.433-93.37-51.312-177.978-43.176-222.032l-16.754 13.043Z\" fill=\"#1D1D1B\"/><path d=\"M620.31 425.617c21.752-8.417 32.357-33.688 23.639-57.057l-31.967-84.972c-8.718-23.195-33.398-35.284-55.194-26.955L541 262.667a870.471 870.471 0 0 0 28.345 89.782c10.778 28.616 22.424 55.395 34.374 79.551l16.591-6.383Z\" fill=\"#5C47AE\"/><path d=\"M603.945 438c-1.186 0-2.349-.305-3.359-.937a6.215 6.215 0 0 1-2.349-2.525c-12.689-25.175-24.346-51.917-34.993-79.683A847.903 847.903 0 0 1 534.2 264.48c-.395-1.481-.198-3.07.527-4.442.702-1.372 1.91-2.418 3.359-2.962l16.026-6.054c25.355-9.517 54.026 4.203 64.08 30.488l32.337 84.669c10.011 26.329-2.371 55.466-27.639 64.983l-16.925 6.25a5.52 5.52 0 0 1-2.02.588Zm-56.002-171.037a847.554 847.554 0 0 0 27.134 83.275c9.813 25.675 20.548 50.327 31.985 73.607l11.35-4.203c18.726-7.056 27.814-28.898 20.24-48.737l-32.336-84.648c-7.574-19.839-28.956-30.248-47.726-23.192l-10.647 3.898ZM73.724 542.989a6.084 6.084 0 0 1-3.077-.829c-.947-.523-1.722-1.309-2.281-2.247-27.05-46.215-10.308-77.395-9.576-78.682a6.334 6.334 0 0 1 3.744-2.989 6.087 6.087 0 0 1 4.735.567 6.332 6.332 0 0 1 2.948 3.796 6.429 6.429 0 0 1-.56 4.801c-.667 1.178-13.686 26.598 9.404 66.092a6.22 6.22 0 0 1 .882 2.378 6.71 6.71 0 0 1-.15 2.531 6.008 6.008 0 0 1-1.098 2.27 6.303 6.303 0 0 1-1.915 1.636 5.758 5.758 0 0 1-3.056.676Zm28.12-4.989a6.115 6.115 0 0 1-3.078-.825 6.159 6.159 0 0 1-2.243-2.279c-18.677-31.974-6.903-53.877-6.411-54.788a6.197 6.197 0 0 1 3.697-2.888 6.167 6.167 0 0 1 4.637.565 6.211 6.211 0 0 1 2.906 3.712 6.337 6.337 0 0 1-.47 4.71c-.406.847-8.505 17.018 6.261 42.307a6.355 6.355 0 0 1 .663 4.754 6.22 6.22 0 0 1-2.8 3.842 6.061 6.061 0 0 1-3.162.89Zm653.444-259c-1.486-.022-2.907-.526-4.021-1.491a6.27 6.27 0 0 1-2.164-3.706 6.332 6.332 0 0 1 .699-4.233 6.481 6.481 0 0 1 3.235-2.829l174.408-66.337a6.354 6.354 0 0 1 4.83.153 6.38 6.38 0 0 1 3.323 3.553 6.418 6.418 0 0 1-.153 4.846 6.332 6.332 0 0 1-3.541 3.312l-174.387 66.315a6.553 6.553 0 0 1-2.229.417Zm-77.992-108.001a6.432 6.432 0 0 1-3.32-.938 6.422 6.422 0 0 1-2.315-2.573 6.244 6.244 0 0 1-.634-3.379 6.611 6.611 0 0 1 1.267-3.226L792.628 2.495a6.39 6.39 0 0 1 4.194-2.436 6.39 6.39 0 0 1 4.696 1.22 6.246 6.246 0 0 1 1.616 1.837c.437.715.699 1.504.808 2.324.11.82.066 1.655-.152 2.453a6.387 6.387 0 0 1-1.093 2.202l-120.355 158.44a6.484 6.484 0 0 1-2.228 1.831c-.874.415-1.835.654-2.818.633Zm285.917 279.843a5.831 5.831 0 0 1-1.225 0l-195.716-39.298a6.092 6.092 0 0 1-2.362-.897 6.505 6.505 0 0 1-1.794-1.749 6.457 6.457 0 0 1-.985-2.297 6.09 6.09 0 0 1 0-2.515 5.998 5.998 0 0 1 .963-2.318 6.505 6.505 0 0 1 1.794-1.749 6.545 6.545 0 0 1 2.341-.918 6.064 6.064 0 0 1 2.516.065l195.518 39.167a6.369 6.369 0 0 1 4.288 2.274 6.416 6.416 0 0 1 1.422 4.658 6.392 6.392 0 0 1-2.297 4.287 6.343 6.343 0 0 1-4.638 1.421l.175-.131Z\" fill=\"#1D1D1B\"/><path d=\"M479.016 603.655a30.183 30.183 0 0 0-14.421-10.148 30.005 30.005 0 0 0-17.638-.35c-29.499 8.097-92.042 27.433-104.209 47.992-15.975 27.018-5.186 49.082-5.186 49.082l15.494 40.092a26.723 26.723 0 0 0 7.09 10.323 26.822 26.822 0 0 0 11.029 5.979 78.732 78.732 0 0 0 20.111 3.536c8.425-.633-31.447 8.402-28.186 28.349 3.239 19.97 10.745 35.814 45.758 32.628a324.148 324.148 0 0 0 36.961-4.802 3.418 3.418 0 0 1 2.364.284 3.416 3.416 0 0 1 1.553 1.811l6.565 17.242L559 826s-39.412-169.356-79.984-222.345Z\" fill=\"#E69474\"/><path d=\"m558.703 832-102.434-.24a6.303 6.303 0 0 1-3.6-1.201 6.428 6.428 0 0 1-2.291-3.012l-5.629-14.93c-5.629 1.135-16.036 2.663-35.148 4.213-40.079 3.732-49.024-17.07-52.428-37.828-1.942-11.983 6.458-20.474 15.294-26.106l-2.618-.72a32.816 32.816 0 0 1-13.592-7.356 32.879 32.879 0 0 1-8.749-12.769l-15.469-40.098c-.283-.545-11.89-24.927 5.585-54.635 12.306-21.02 65.323-39.18 107.649-50.902a36.171 36.171 0 0 1 21.25.371 36.168 36.168 0 0 1 17.389 12.246c40.799 53.456 79.329 217.797 80.922 224.782.218.916.218 1.877.021 2.793a6.037 6.037 0 0 1-1.2 2.532 6.546 6.546 0 0 1-2.138 2.031 6.19 6.19 0 0 1-2.814.829Zm-98.071-12.857 90.086.284c-8.4-33.614-42.523-167.266-76.842-212.209a23.816 23.816 0 0 0-11.324-8.076 23.571 23.571 0 0 0-13.897-.328c-55.025 15.258-92.42 32.109-100.1 45.14-13.92 23.574-5.302 42.368-4.909 43.175l15.622 40.556a20.76 20.76 0 0 0 5.432 7.967 20.919 20.919 0 0 0 8.422 4.65 65.312 65.312 0 0 0 17.956 3.274 6.42 6.42 0 0 1 4.887.829 6.638 6.638 0 0 1 2.924 4.038c1.287 5.436-3.579 7.531-6.851 8.906-5.935 2.532-23.956 10.215-22.407 19.885 2.836 17.244 7.527 30.231 38.879 27.328a307.522 307.522 0 0 0 35.999-4.671 9.777 9.777 0 0 1 6.698.917 9.801 9.801 0 0 1 4.473 5.086l4.952 13.249Z\" fill=\"#1D1D1B\"/><path d=\"M346.295 705.997a6.323 6.323 0 0 1-3.632-1.165 6.322 6.322 0 0 1-2.654-5.516 6.128 6.128 0 0 1 .631-2.396 6.28 6.28 0 0 1 1.479-1.978c.631-.549 1.348-.989 2.132-1.252l120.367-42.33a6.373 6.373 0 0 1 2.414-.352 6.526 6.526 0 0 1 2.393.616 6.838 6.838 0 0 1 1.957 1.494 6.158 6.158 0 0 1 1.24 2.132c.283.769.413 1.605.37 2.44a6.719 6.719 0 0 1-.609 2.417 6.906 6.906 0 0 1-1.479 1.978 6.06 6.06 0 0 1-2.11 1.253l-120.367 42.33a5.871 5.871 0 0 1-2.132.329Zm44.99 51.001a6.255 6.255 0 0 1-4.011-1.451 6.481 6.481 0 0 1-2.158-3.695 6.302 6.302 0 0 1 .654-4.223 6.286 6.286 0 0 1 3.161-2.859c7.258-2.969 71.777-29.097 96.19-24.148a6.3 6.3 0 0 1 3.879 2.749 6.332 6.332 0 0 1 .872 4.684c-.327 1.628-1.242 3.057-2.594 3.981a6.17 6.17 0 0 1-4.62 1.034c-17.547-3.519-70.186 15.747-88.975 23.466-.763.308-1.591.484-2.398.462Z\" fill=\"#1D1D1B\"/><path d=\"M260.841 681.579a23.494 23.494 0 0 1 8.832-10.749 23.452 23.452 0 0 1 13.378-3.824c26.146.59 79.989 2.229 92.624 5.593 17.248 4.523 21.03 35.527 10.384 56.677-8.416 16.824-71.353 20.124-96.428 20.713-3.716.11-7.41-.633-10.799-2.141a24.96 24.96 0 0 1-8.831-6.576 55.995 55.995 0 0 1-13.357-28.514 55.717 55.717 0 0 1 4.197-31.179Z\" fill=\"#E69474\"/><path d=\"M288.472 756c-4.536 0-9.028-.965-13.148-2.874a31.41 31.41 0 0 1-10.693-8.138 62.37 62.37 0 0 1-14.879-31.698 62.416 62.416 0 0 1 4.492-34.703 29.777 29.777 0 0 1 11.263-13.688 29.798 29.798 0 0 1 17.005-4.892c36.113.834 81.823 2.523 94.445 5.813a25.857 25.857 0 0 1 10.234 5.791c2.936 2.676 5.193 6.011 6.639 9.718 6.377 14.105 5.347 34.857-2.454 50.344-7.341 14.653-41.723 22.857-102.203 24.283l-.701.044Zm-22.505-72.697a49.578 49.578 0 0 0-3.703 28.013 49.61 49.61 0 0 0 12.14 25.468c1.797 2.128 4.054 3.795 6.596 4.935a18.456 18.456 0 0 0 8.064 1.58c57.675-1.404 87.367-9.674 91.18-17.286a49.993 49.993 0 0 0 5.172-19.523 49.987 49.987 0 0 0-2.98-19.962 14.02 14.02 0 0 0-8.437-8.446c-8.436-2.281-42.884-4.233-91.531-5.418a17.343 17.343 0 0 0-9.751 2.852 17.298 17.298 0 0 0-6.487 7.787h-.263Zm175.198 129.639c-.824.11-1.67.066-2.472-.153a6.551 6.551 0 0 1-2.212-1.094 6.338 6.338 0 0 1-1.627-1.859 6.482 6.482 0 0 1-.802-2.363 6.327 6.327 0 0 1 .173-2.472 6.476 6.476 0 0 1 1.084-2.231 6.398 6.398 0 0 1 1.844-1.663 6.334 6.334 0 0 1 2.342-.788c20.084-5.644 43.963-13.41 47.477-16.057.65-.503 1.409-.853 2.212-1.072a6.467 6.467 0 0 1 2.429-.131 6.286 6.286 0 0 1 2.321.831 6.16 6.16 0 0 1 1.8 1.641 6.135 6.135 0 0 1 1.063 2.209c.216.81.26 1.641.13 2.472a6.154 6.154 0 0 1-.803 2.319 6.268 6.268 0 0 1-1.626 1.838c-7.027 5.316-41.317 15.204-51.663 18.114a5.76 5.76 0 0 1-1.67.459Z\" fill=\"#1D1D1B\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u9iqf0\",\"data-framer-name\":\"Copy 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nf4pch\",\"data-styles-preset\":\"nVCDKW51U\",style:{\"--framer-text-alignment\":\"left\"},children:\"M + A Hotline is here and open for calls and texts every single day, no matter what. Abortions are safe, effective and essential healthcare. You always have options. We are here to answer questions.\"})}),className:\"framer-z4afoo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:108,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-c22vdi-container\",\"data-framer-appear-id\":\"c22vdi\",initial:animation1,layoutScroll:true,nodeId:\"lavC_ZxAU\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{variant:\"FTQ687P73\"},WQdutADZe:{variant:\"FTQ687P73\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"lavC_ZxAU\",layoutId:\"lavC_ZxAU\",style:{width:\"100%\"},variant:\"YjtyDnG8s\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-390ttu\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19u292r\",\"data-framer-name\":\"Content Stack\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-20ijw0\",\"data-framer-appear-id\":\"20ijw0\",\"data-framer-name\":\"Content\",initial:animation2,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18r7sjm\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nf4pch\",\"data-styles-preset\":\"nVCDKW51U\",style:{\"--framer-text-alignment\":\"left\"},children:\"The Miscarriage and Abortion Hotline\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ehwkfm\",\"data-styles-preset\":\"AM1DOgsaf\",children:\"The Miscarriage and Abortion Hotline\"})}),className:\"framer-dq042v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1wrmtid\",\"data-styles-preset\":\"gpf8xRe4h\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Your Guide Through \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\"},children:\"Miscarriage\"}),\" & \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\"},children:\"Abortion\"}),\" Care\"]})})},WQdutADZe:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1wrmtid\",\"data-styles-preset\":\"gpf8xRe4h\",children:[\"Your Guide Through \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\"},children:\"Miscarriage\"}),\" & \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\"},children:\"Abortion\"}),\" Care\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1wrmtid\",\"data-styles-preset\":\"gpf8xRe4h\",children:[\"Your Guide Through \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\"},children:\"Miscarriage\"}),\" & \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\"},children:\"Abortion\"}),\" Care\"]})}),className:\"framer-laz375\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ehwkfm\",\"data-styles-preset\":\"AM1DOgsaf\",style:{\"--framer-text-alignment\":\"left\"},children:\"We're a team of clinicians with years of experience in caring for Miscarriage and Abortion.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ehwkfm\",\"data-styles-preset\":\"AM1DOgsaf\",children:\"We're a team of clinicians with years of experience in caring for Miscarriage and Abortion.\"})}),className:\"framer-1p9v2yr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9j0paa\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{y:(componentViewport?.y||0)+0+0+148+0+0+0+0+355.8+0+0},WQdutADZe:{y:(componentViewport?.y||0)+0+0+164+0+0+368.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+0+264.1+0+0+368.8+2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1htkd64-container\",nodeId:\"Z4uPaTpZW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{aw00kjixs:\"var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80))\",cYf2h2ngw:true,EciokmF6x:{borderColor:'var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174)) /* {\"name\":\"Purple\"} */',borderStyle:\"solid\",borderWidth:1.5},height:\"100%\",hlx3pHzJC:\"Phone\",id:\"Z4uPaTpZW\",j0mNTb6PM:getLocalizedValue(\"v8\",activeLocale)??\"Call Us\",JhD_kBxxO:16,JmRbp4rWi:\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\",L8vvJt3yC:\"var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, rgb(255, 255, 255))\",layoutId:\"Z4uPaTpZW\",lC8xzW8D3:\"PhoneCall\",Pedox6kw8:\"var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, rgb(255, 255, 255))\",URiyYuBHQ:true,variant:\"oXdNBEEz0\",width:\"100%\",ZCK1yqSpH:{borderColor:'var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80)) /* {\"name\":\"Orange\"} */',borderStyle:\"solid\",borderWidth:1},Zq7zNaCKF:\"tel:+18332462632\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{y:(componentViewport?.y||0)+0+0+148+0+0+0+0+355.8+0+55},WQdutADZe:{y:(componentViewport?.y||0)+0+0+164+0+0+368.8+0+55}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+0+264.1+0+0+368.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17mmvcy-container\",isModuleExternal:true,nodeId:\"kANElDFGj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonSecondaryButton,{aYuLphz8e:false,height:\"100%\",id:\"kANElDFGj\",j0mNTb6PM:getLocalizedValue(\"v9\",activeLocale)??\"Text Us\",K5nLJw0fN:\"sms:+18332462632\",layoutId:\"kANElDFGj\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1284if6\",\"data-framer-name\":\"Warning\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2v7luo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Zqo9UFleK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\",height:\"100%\",iconSearch:getLocalizedValue(\"v10\",activeLocale)??\"House\",iconSelection:\"Warning\",id:\"Zqo9UFleK\",layoutId:\"Zqo9UFleK\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nf4pch\",\"data-styles-preset\":\"nVCDKW51U\",children:[\"We do not sell abortion pills. To get information on finding abortion pills, \",/*#__PURE__*/_jsx(Link,{href:\"https://mahotline.org/resources\",motionChild:true,nodeId:\"jh_f7K4Ny\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"see our \"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ieMkbuuaG\"},motionChild:true,nodeId:\"jh_f7K4Ny\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-12uiaxo\",\"data-styles-preset\":\"iBn00MmjT\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Resources\"}),\".\"]})})]})}),fonts:[\"Inter\",\"Inter-Bold\"]},WQdutADZe:{children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:[\"We do not sell abortion pills. To get information on finding abortion pills, \",/*#__PURE__*/_jsx(Link,{href:\"https://mahotline.org/resources\",motionChild:true,nodeId:\"jh_f7K4Ny\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"see our \"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ieMkbuuaG\"},motionChild:true,nodeId:\"jh_f7K4Ny\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-12uiaxo\",\"data-styles-preset\":\"iBn00MmjT\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"Resources\"}),\".\"]})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:[\"We do not sell abortion pills. To get information on finding abortion pills, \",/*#__PURE__*/_jsx(Link,{href:\"https://mahotline.org/resources\",motionChild:true,nodeId:\"jh_f7K4Ny\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"see our \"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ieMkbuuaG\"},motionChild:true,nodeId:\"jh_f7K4Ny\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-12uiaxo\",\"data-styles-preset\":\"iBn00MmjT\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"Resources\"}),\".\"]})})]})}),className:\"framer-1jhetae\",fonts:[\"GF;Maven Pro-regular\",\"GF;Maven Pro-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+148+0+0+658.8),pixelHeight:1347,pixelWidth:1807,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,src:\"https://framerusercontent.com/images/wqPGrJ1Y9TNpAq9FwqHOfgzXQ.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/wqPGrJ1Y9TNpAq9FwqHOfgzXQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/wqPGrJ1Y9TNpAq9FwqHOfgzXQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/wqPGrJ1Y9TNpAq9FwqHOfgzXQ.webp 1807w\"}},WQdutADZe:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+164+0),pixelHeight:1347,pixelWidth:1807,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1200px) - 32px) / 2, 1px)`,src:\"https://framerusercontent.com/images/wqPGrJ1Y9TNpAq9FwqHOfgzXQ.webp?scale-down-to=1024&lossless=1\",srcSet:\"https://framerusercontent.com/images/wqPGrJ1Y9TNpAq9FwqHOfgzXQ.webp?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/wqPGrJ1Y9TNpAq9FwqHOfgzXQ.webp?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/wqPGrJ1Y9TNpAq9FwqHOfgzXQ.webp?lossless=1 1807w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+264.1+76.9),pixelHeight:1347,pixelWidth:1807,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 96px, 1px), 1200px) - 32px) / 2, 1px)`,src:\"https://framerusercontent.com/images/wqPGrJ1Y9TNpAq9FwqHOfgzXQ.webp?scale-down-to=1024&lossless=1\",srcSet:\"https://framerusercontent.com/images/wqPGrJ1Y9TNpAq9FwqHOfgzXQ.webp?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/wqPGrJ1Y9TNpAq9FwqHOfgzXQ.webp?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/wqPGrJ1Y9TNpAq9FwqHOfgzXQ.webp?lossless=1 1807w\"},className:\"framer-frl1k9\",\"data-framer-appear-id\":\"frl1k9\",\"data-framer-name\":\"Image\",initial:animation3,optimized:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{__framer__threshold:0}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17wwqj7\",\"data-framer-name\":\"How We Help You\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s2yngy\",\"data-styles-preset\":\"eUeUHIP_G\",style:{\"--framer-text-alignment\":\"center\"},children:\"how we help you\"})}),className:\"framer-1x1lazm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yh5uoj\",\"data-framer-name\":\"Card Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u470qi\",\"data-border\":true,\"data-framer-name\":\"Card 1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,className:\"framer-svl2kp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gGu1gx8tV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80))\",height:\"100%\",iconSearch:getLocalizedValue(\"v10\",activeLocale)??\"House\",iconSelection:\"Clock\",id:\"gGu1gx8tV\",layoutId:\"gGu1gx8tV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1swnak4\",\"data-styles-preset\":\"cibkO_FJ4\",children:\"Availability\"})}),className:\"framer-si66ec\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:[\"Hotline hours are from \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"8 AM EST\"}),\" (5 AM PST) - \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"1 AM EST\"}),\" (10 PM PST). Calling and texting is only available in the U.S.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:[\"Hotline hours are from \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"8 AM EST\"}),\" (5 AM PST) - \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"1 AM EST\"}),\" (10 PM PST). Calling and texting is only available in the U.S.\"]})}),className:\"framer-i9r16u\",fonts:[\"GF;Maven Pro-regular\",\"GF;Maven Pro-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y8wgka\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTcwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\",\"--framer-text-transform\":\"uppercase\"},children:\"Exact Hours\"})}),className:\"framer-rbo1v8\",fonts:[\"GF;Maven Pro-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bo1841\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nf4pch\",\"data-styles-preset\":\"nVCDKW51U\",children:\"8 AM - 1 AM\"})}),className:\"framer-1eufoa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i9gdto\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"EST\"})}),className:\"framer-cpxjrg\",fonts:[\"GF;Maven Pro-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9gvqs2\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kg6cre\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nf4pch\",\"data-styles-preset\":\"nVCDKW51U\",children:\"7 AM - 12 AM\"})}),className:\"framer-pr0p25\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ixbei6\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"CST\"})}),className:\"framer-1a137ed\",fonts:[\"GF;Maven Pro-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m9z6hs\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w4apbr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nf4pch\",\"data-styles-preset\":\"nVCDKW51U\",children:\"6 AM - 11 PM\"})}),className:\"framer-jb6hju\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uubyp1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"MST\"})}),className:\"framer-iuhri6\",fonts:[\"GF;Maven Pro-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cypz43\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qdbbz1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nf4pch\",\"data-styles-preset\":\"nVCDKW51U\",children:\"5 AM - 10 PM\"})}),className:\"framer-gszfj8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11pvkyf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"PST\"})}),className:\"framer-1ml8btd\",fonts:[\"GF;Maven Pro-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rv8ogi\",\"data-border\":true,\"data-framer-name\":\"Card 2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-125cm1k-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uZFVUARUD\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80))\",height:\"100%\",iconSearch:getLocalizedValue(\"v10\",activeLocale)??\"House\",iconSelection:\"Phone\",id:\"uZFVUARUD\",layoutId:\"uZFVUARUD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1swnak4\",\"data-styles-preset\":\"cibkO_FJ4\",children:\"CALL OR TEXT\"})}),className:\"framer-1woimrd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"You can call or text our helpline to get support for managing a miscarriage or abortion on your own. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"You can call or text our helpline to get support for managing a miscarriage or abortion on your own. \"})}),className:\"framer-7wmsg0\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTcwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"We will respond within an hour. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTcwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"We will respond within an hour. \"})}),className:\"framer-j6n73e\",fonts:[\"GF;Maven Pro-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"Our team of experienced clinicians are here to provide information and support to you at no cost.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"Our team of experienced clinicians are here to provide information and support to you at no cost.\"})}),className:\"framer-mespq9\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ubknm\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{y:(componentViewport?.y||0)+0+1104.8+64+68+6+674.4+24+452.8+0+0},WQdutADZe:{y:(componentViewport?.y||0)+0+873.8+64+84+6+24+491.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+1e3+64+84+6+24+491.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dr6ikn-container\",nodeId:\"I7Ql91eep\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{aw00kjixs:\"var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80))\",cYf2h2ngw:true,EciokmF6x:{borderColor:'var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174)) /* {\"name\":\"Purple\"} */',borderStyle:\"solid\",borderWidth:1.5},height:\"100%\",hlx3pHzJC:\"Phone\",id:\"I7Ql91eep\",j0mNTb6PM:getLocalizedValue(\"v8\",activeLocale)??\"Call Us\",JhD_kBxxO:16,JmRbp4rWi:\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\",L8vvJt3yC:\"var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, rgb(255, 255, 255))\",layoutId:\"I7Ql91eep\",lC8xzW8D3:\"PhoneCall\",Pedox6kw8:\"var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, rgb(255, 255, 255))\",URiyYuBHQ:true,variant:\"oXdNBEEz0\",width:\"100%\",ZCK1yqSpH:{borderColor:'var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80)) /* {\"name\":\"Orange\"} */',borderStyle:\"solid\",borderWidth:1},Zq7zNaCKF:\"tel:+18332462632\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{y:(componentViewport?.y||0)+0+1104.8+64+68+6+674.4+24+452.8+0+57},WQdutADZe:{y:(componentViewport?.y||0)+0+873.8+64+84+6+24+491.8+0+57}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+1e3+64+84+6+24+491.8+0+57,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jyg571-container\",nodeId:\"uqqZ_bLqG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonSecondaryButton1,{aYuLphz8e:false,height:\"100%\",id:\"uqqZ_bLqG\",j0mNTb6PM:getLocalizedValue(\"v9\",activeLocale)??\"Text Us\",K5nLJw0fN:\"sms:+18332462632\",layoutId:\"uqqZ_bLqG\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1012nhi\",\"data-border\":true,\"data-framer-name\":\"Card 3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kbn3u3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tghm7093r\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80))\",height:\"100%\",iconSearch:getLocalizedValue(\"v10\",activeLocale)??\"House\",iconSelection:\"Heart\",id:\"tghm7093r\",layoutId:\"tghm7093r\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1swnak4\",\"data-styles-preset\":\"cibkO_FJ4\",children:\"CONFIDENTIAL SUPPORT\"})}),className:\"framer-30nq1t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16a384q\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTcwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"You can remain anonymous. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTcwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"You can remain anonymous. \"})}),className:\"framer-3j8ohf\",fonts:[\"GF;Maven Pro-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"We won't ask for your name or share your information. We give caring support and information.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"We won't ask for your name or share your information. We give caring support and information.\"})}),className:\"framer-yv9ydh\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vw3y8o\",\"data-framer-name\":\"Warning\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15kf8bw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GqNjk6L2K\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\",height:\"100%\",iconSearch:getLocalizedValue(\"v10\",activeLocale)??\"House\",iconSelection:\"Warning\",id:\"GqNjk6L2K\",layoutId:\"GqNjk6L2K\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:[\"We do not sell abortion pills. To get information on finding abortion pills, \",/*#__PURE__*/_jsx(Link,{href:\"https://mahotline.org/resources\",motionChild:true,nodeId:\"CTvTafG1B\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"see our \"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ieMkbuuaG\"},motionChild:true,nodeId:\"CTvTafG1B\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-12uiaxo\",\"data-styles-preset\":\"iBn00MmjT\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"Resources\"})})}),\".\"]})})},WQdutADZe:{children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:[\"We do not sell abortion pills. To get information on finding abortion pills, \",/*#__PURE__*/_jsx(Link,{href:\"https://mahotline.org/resources\",motionChild:true,nodeId:\"CTvTafG1B\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"see our \"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ieMkbuuaG\"},motionChild:true,nodeId:\"CTvTafG1B\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-12uiaxo\",\"data-styles-preset\":\"iBn00MmjT\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"Resources\"})})}),\".\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:[\"We do not sell abortion pills. To get information on finding abortion pills, \",/*#__PURE__*/_jsx(Link,{href:\"https://mahotline.org/resources\",motionChild:true,nodeId:\"CTvTafG1B\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"see our \"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ieMkbuuaG\"},motionChild:true,nodeId:\"CTvTafG1B\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-12uiaxo\",\"data-styles-preset\":\"iBn00MmjT\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"Resources\"})})}),\".\"]})}),className:\"framer-h33dgp\",fonts:[\"GF;Maven Pro-regular\",\"GF;Maven Pro-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kqgcbg\",\"data-framer-name\":\"How To Use\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iz4af8\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s2yngy\",\"data-styles-preset\":\"eUeUHIP_G\",style:{\"--framer-text-alignment\":\"center\"},children:\"how to use abortion pills\"})}),className:\"framer-i27ahx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:[\"Abortion pills are medicines that help stop a pregnancy. Abortion pills are also called \u201Cmedication abortions.\u201D These medicines are also used in miscarriage care. They cause \",/*#__PURE__*/_jsx(Link,{href:{hash:\":MQuK01BCg\",webPageId:\"v19jOdpIW\"},motionChild:true,nodeId:\"LyhOrO1U7\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bv3qk\",\"data-styles-preset\":\"GQgDWDkRU\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"cramping and bleeding\"})})}),\".\"]})})},WQdutADZe:{children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:[\"Abortion pills are medicines that help stop a pregnancy. Abortion pills are also called \u201Cmedication abortions.\u201D These medicines are also used in miscarriage care. They cause \",/*#__PURE__*/_jsx(Link,{href:{hash:\":MQuK01BCg\",webPageId:\"v19jOdpIW\"},motionChild:true,nodeId:\"LyhOrO1U7\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bv3qk\",\"data-styles-preset\":\"GQgDWDkRU\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"cramping and bleeding\"})})}),\".\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:[\"Abortion pills are medicines that help stop a pregnancy. Abortion pills are also called \u201Cmedication abortions.\u201D These medicines are also used in miscarriage care. They cause \",/*#__PURE__*/_jsx(Link,{href:{hash:\":MQuK01BCg\",webPageId:\"v19jOdpIW\"},motionChild:true,nodeId:\"LyhOrO1U7\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bv3qk\",\"data-styles-preset\":\"GQgDWDkRU\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"cramping and bleeding\"})})}),\".\"]})}),className:\"framer-1vtfyyp\",fonts:[\"GF;Maven Pro-regular\",\"GF;Maven Pro-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j4sg89\",\"data-framer-name\":\"Method 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ifywes\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ezhyid\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\",\"--framer-text-transform\":\"capitalize\"},children:\"Method 1\"})}),className:\"framer-gvsmn2\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1swnak4\",\"data-styles-preset\":\"cibkO_FJ4\",style:{\"--framer-text-color\":\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\"},children:\"Mifepristone + Misoprostol\"})}),className:\"framer-pw4d24\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:[\"This method is \",/*#__PURE__*/_jsx(Link,{href:\"https://www.ipas.org/clinical-update/english/recommendations-for-abortion-before-13-weeks-gestation/medical-abortion/mifepristone-and-misoprostol-recommended-regimen/\",motionChild:true,nodeId:\"Wee6oQUDb\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bv3qk\",\"data-styles-preset\":\"GQgDWDkRU\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"95% to 98% effective\"})})}),\" and is very safe. The Food and Drug Administration (FDA), which makes sure medicines are safe, has approved this method. \"]})})},WQdutADZe:{children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:[\"This method is \",/*#__PURE__*/_jsx(Link,{href:\"https://www.ipas.org/clinical-update/english/recommendations-for-abortion-before-13-weeks-gestation/medical-abortion/mifepristone-and-misoprostol-recommended-regimen/\",motionChild:true,nodeId:\"Wee6oQUDb\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bv3qk\",\"data-styles-preset\":\"GQgDWDkRU\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"95% to 98% effective\"})})}),\" and is very safe. The Food and Drug Administration (FDA), which makes sure medicines are safe, has approved this method. \"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:[\"This method is \",/*#__PURE__*/_jsx(Link,{href:\"https://www.ipas.org/clinical-update/english/recommendations-for-abortion-before-13-weeks-gestation/medical-abortion/mifepristone-and-misoprostol-recommended-regimen/\",motionChild:true,nodeId:\"Wee6oQUDb\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bv3qk\",\"data-styles-preset\":\"GQgDWDkRU\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"95% to 98% effective\"})})}),\" and is very safe. The Food and Drug Administration (FDA), which makes sure medicines are safe, has approved this method. \"]})}),className:\"framer-wi3z8j\",fonts:[\"GF;Maven Pro-regular\",\"GF;Maven Pro-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b5i0jv\",\"data-framer-name\":\"Button Stack\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":XdFfHdGS8\",webPageId:\"dLnQzeuVW\"},implicitPathVariables:undefined},{href:{hash:\":XdFfHdGS8\",webPageId:\"dLnQzeuVW\"},implicitPathVariables:undefined},{href:{hash:\":XdFfHdGS8\",webPageId:\"dLnQzeuVW\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{y:(componentViewport?.y||0)+0+3144.8+64+217+0+0+0+216.2+0+0},WQdutADZe:{y:(componentViewport?.y||0)+0+1910.8+64+217+36.9+0+229.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+1895.4+92+230+5.4+0+242.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gqags1-container\",nodeId:\"xdUmgT8Lh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{Zq7zNaCKF:resolvedLinks[2]},WQdutADZe:{Zq7zNaCKF:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{aw00kjixs:\"var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80))\",cYf2h2ngw:false,EciokmF6x:{borderColor:'var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174)) /* {\"name\":\"Purple\"} */',borderStyle:\"solid\",borderWidth:1.5},height:\"100%\",hlx3pHzJC:\"ArrowUpRight\",id:\"xdUmgT8Lh\",j0mNTb6PM:getLocalizedValue(\"v51\",activeLocale)??\"View Instructions\",JhD_kBxxO:16,JmRbp4rWi:\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\",L8vvJt3yC:\"var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, rgb(255, 255, 255))\",layoutId:\"xdUmgT8Lh\",lC8xzW8D3:\"Eye\",Pedox6kw8:\"var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, rgb(255, 255, 255))\",URiyYuBHQ:true,variant:\"oXdNBEEz0\",width:\"100%\",ZCK1yqSpH:{borderColor:'var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80)) /* {\"name\":\"Orange\"} */',borderStyle:\"solid\",borderWidth:1},Zq7zNaCKF:resolvedLinks[0]})})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3144.8+64+217+0+311.2),pixelHeight:1793,pixelWidth:2011,positionX:\"center\",positionY:\"center\",sizes:\"350px\",src:\"https://framerusercontent.com/images/2lvk9c9xMscy18FvLMi266l6GkY.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2lvk9c9xMscy18FvLMi266l6GkY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/2lvk9c9xMscy18FvLMi266l6GkY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/2lvk9c9xMscy18FvLMi266l6GkY.webp 2011w\"}},WQdutADZe:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1910.8+64+217+0),pixelHeight:1793,pixelWidth:2011,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3tAbG7iDTGJOaMnF7B2f1U0Jd9I.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1895.4+92+230+0),pixelHeight:1793,pixelWidth:2011,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3tAbG7iDTGJOaMnF7B2f1U0Jd9I.webp\"},className:\"framer-2l6j1y\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cjxbuq\",\"data-framer-name\":\"Method 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3144.8+64+826.2+0+311.2),pixelHeight:1793,pixelWidth:2011,positionX:\"center\",positionY:\"center\",sizes:\"350px\",src:\"https://framerusercontent.com/images/mkgFSVUzAYPtaYXuLXOiv0FPlUg.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mkgFSVUzAYPtaYXuLXOiv0FPlUg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/mkgFSVUzAYPtaYXuLXOiv0FPlUg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/mkgFSVUzAYPtaYXuLXOiv0FPlUg.webp 2011w\"}},WQdutADZe:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1910.8+64+615+0),pixelHeight:1793,pixelWidth:2011,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pl1oiVIMVKq8tjoOWetiybeBzF8.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1895.4+92+578+0),pixelHeight:1793,pixelWidth:2011,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pl1oiVIMVKq8tjoOWetiybeBzF8.webp\"},className:\"framer-v31lin\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6pnwdb\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ozrz1s\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\",\"--framer-text-transform\":\"capitalize\"},children:\"Method 2\"})}),className:\"framer-190mht5\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1swnak4\",\"data-styles-preset\":\"cibkO_FJ4\",style:{\"--framer-text-color\":\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\"},children:\"Misoprostol only\"})}),className:\"framer-1dbad2e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v55\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"Another common method is to only use Misoprostol. The World Health Organization supports this practice. Both methods work well, are very safe, and are used by many people all around the world.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v54\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"Another common method is to only use Misoprostol. The World Health Organization supports this practice. Both methods work well, are very safe, and are used by many people all around the world.\"})}),className:\"framer-jstsp7\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u0zgmm\",\"data-framer-name\":\"Button Stack\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":RryF58Hic\",webPageId:\"dLnQzeuVW\"},implicitPathVariables:undefined},{href:{hash:\":RryF58Hic\",webPageId:\"dLnQzeuVW\"},implicitPathVariables:undefined},{href:{hash:\":RryF58Hic\",webPageId:\"dLnQzeuVW\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{y:(componentViewport?.y||0)+0+3144.8+64+826.2+0+0+0+216.2+0+0},WQdutADZe:{y:(componentViewport?.y||0)+0+1910.8+64+615+30.4+0+242.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+1895.4+92+578+5.4+0+242.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nixzs-container\",nodeId:\"Wh5tkRPz9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{Zq7zNaCKF:resolvedLinks1[2]},WQdutADZe:{Zq7zNaCKF:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{aw00kjixs:\"var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80))\",cYf2h2ngw:false,EciokmF6x:{borderColor:'var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174)) /* {\"name\":\"Purple\"} */',borderStyle:\"solid\",borderWidth:1.5},height:\"100%\",hlx3pHzJC:\"ArrowUpRight\",id:\"Wh5tkRPz9\",j0mNTb6PM:getLocalizedValue(\"v51\",activeLocale)??\"View Instructions\",JhD_kBxxO:16,JmRbp4rWi:\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\",L8vvJt3yC:\"var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, rgb(255, 255, 255))\",layoutId:\"Wh5tkRPz9\",lC8xzW8D3:\"Eye\",Pedox6kw8:\"var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, rgb(255, 255, 255))\",URiyYuBHQ:true,variant:\"oXdNBEEz0\",width:\"100%\",ZCK1yqSpH:{borderColor:'var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80)) /* {\"name\":\"Orange\"} */',borderStyle:\"solid\",borderWidth:1},Zq7zNaCKF:resolvedLinks1[0]})})})})})})})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qyyhtm\",\"data-framer-name\":\"Press\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s41kpm\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v56\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s2yngy\",\"data-styles-preset\":\"eUeUHIP_G\",style:{\"--framer-text-alignment\":\"center\"},children:\"press highlights\"})}),className:\"framer-1kiinis\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"See how our helpline has provided guidance and support to those navigating abortion and miscarriage.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v57\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"See how our helpline has provided guidance and support to those navigating abortion and miscarriage.\"})}),className:\"framer-fxpoh4\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x70cu4\",\"data-framer-name\":\"Press Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l40283\",\"data-border\":true,\"data-framer-name\":\"Card 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4660.2+64+217+6+0+24+0),pixelHeight:1003,pixelWidth:1002,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 60px)`,src:\"https://framerusercontent.com/images/o6XD9Kjw3ycNYbaWr2qCBY3CaM.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/o6XD9Kjw3ycNYbaWr2qCBY3CaM.png?lossless=1 1002w\"}},WQdutADZe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3003.8+64+230+28.5+24+0),pixelHeight:1003,pixelWidth:1002,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 44px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/o6XD9Kjw3ycNYbaWr2qCBY3CaM.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/o6XD9Kjw3ycNYbaWr2qCBY3CaM.png?lossless=1 1002w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2957.4+64+230+31+24+0),pixelHeight:1003,pixelWidth:1002,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 44px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/o6XD9Kjw3ycNYbaWr2qCBY3CaM.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/o6XD9Kjw3ycNYbaWr2qCBY3CaM.png?lossless=1 1002w\"},className:\"framer-5gwdpn\",whileHover:animation8})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v59\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"Jul 31, 2023\"})}),className:\"framer-1qr2y51\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v60\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTcwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.cosmopolitan.com/health-fitness/a44666994/miscarriage-abortion-hotline/\",motionChild:true,nodeId:\"PexwijR2S\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-u0w2n4\",\"data-styles-preset\":\"YS_JPb0Zv\",children:\"Having an Abortion at Home? There\u2019s a Hotline for That\"})})})}),className:\"framer-14aqalk\",fonts:[\"GF;Maven Pro-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v62\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"The end of Roe left a yawning gap in reproductive care that an army of volunteer doctors is scrambling to fill. But even they think that health-care-via-hotline is a bleak sign of the times.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v61\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"The end of Roe left a yawning gap in reproductive care that an army of volunteer doctors is scrambling to fill. But even they think that health-care-via-hotline is a bleak sign of the times.\"})}),className:\"framer-1lzw4d9\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v63\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTcwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"Sara Hutchinson\"})}),className:\"framer-1agi4tq\",fonts:[\"GF;Maven Pro-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{y:(componentViewport?.y||0)+0+4660.2+64+217+6+0+24+761},WQdutADZe:{y:(componentViewport?.y||0)+0+3003.8+64+230+28.5+24+774}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+2957.4+64+230+31+24+774,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wvt1z6-container\",nodeId:\"vL3xH3Nbr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{aw00kjixs:\"var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80))\",cYf2h2ngw:true,EciokmF6x:{borderColor:'var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174)) /* {\"name\":\"Purple\"} */',borderStyle:\"solid\",borderWidth:1.5},height:\"100%\",hlx3pHzJC:\"ArrowUpRight\",id:\"vL3xH3Nbr\",j0mNTb6PM:getLocalizedValue(\"v64\",activeLocale)??\"Read More\",JhD_kBxxO:16,JmRbp4rWi:\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\",L8vvJt3yC:\"var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, rgb(255, 255, 255))\",layoutId:\"vL3xH3Nbr\",lC8xzW8D3:\"ArrowUpRight\",Pedox6kw8:\"var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, rgb(255, 255, 255))\",URiyYuBHQ:true,variant:\"oXdNBEEz0\",width:\"100%\",ZCK1yqSpH:{borderColor:'var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80)) /* {\"name\":\"Orange\"} */',borderStyle:\"solid\",borderWidth:1},Zq7zNaCKF:\"https://www.cosmopolitan.com/health-fitness/a44666994/miscarriage-abortion-hotline/\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iljhkb\",\"data-border\":true,\"data-framer-name\":\"Card 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4660.2+64+217+6+872+24+0),pixelHeight:630,pixelWidth:1200,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 60px)`,src:\"https://framerusercontent.com/images/BM3Pq9NGxJWou2lLkZX8RTsWXg.jpeg?lossless=1\",srcSet:\"https://framerusercontent.com/images/BM3Pq9NGxJWou2lLkZX8RTsWXg.jpeg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/BM3Pq9NGxJWou2lLkZX8RTsWXg.jpeg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/BM3Pq9NGxJWou2lLkZX8RTsWXg.jpeg?lossless=1 1200w\"}},WQdutADZe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3003.8+64+230+6+24+0),pixelHeight:630,pixelWidth:1200,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 44px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/BM3Pq9NGxJWou2lLkZX8RTsWXg.jpeg?lossless=1\",srcSet:\"https://framerusercontent.com/images/BM3Pq9NGxJWou2lLkZX8RTsWXg.jpeg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/BM3Pq9NGxJWou2lLkZX8RTsWXg.jpeg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/BM3Pq9NGxJWou2lLkZX8RTsWXg.jpeg?lossless=1 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2957.4+64+230+6+24+0),pixelHeight:630,pixelWidth:1200,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 44px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/BM3Pq9NGxJWou2lLkZX8RTsWXg.jpeg?lossless=1\",srcSet:\"https://framerusercontent.com/images/BM3Pq9NGxJWou2lLkZX8RTsWXg.jpeg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/BM3Pq9NGxJWou2lLkZX8RTsWXg.jpeg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/BM3Pq9NGxJWou2lLkZX8RTsWXg.jpeg?lossless=1 1200w\"},className:\"framer-18kcdll\",whileHover:animation8})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v65\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"Apr 10, 2023\"})}),className:\"framer-5q5xd4\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v66\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTcwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.democracynow.org/2023/4/10/abortion_access_unite_states\",motionChild:true,nodeId:\"EmpfY1FJj\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-u0w2n4\",\"data-styles-preset\":\"YS_JPb0Zv\",children:\"Hotline Founder on the Struggle to Preserve Access to Abortion Pills Amid Relentless GOP Attacks\"})})})}),className:\"framer-rvqb9l\",fonts:[\"GF;Maven Pro-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v68\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"We look at access to medical abortion pills and advice on how to manage abortions at home with Dr. Linda Prine, physician and co-founder of the Miscarriage and Abortion Hotline.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v67\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"We look at access to medical abortion pills and advice on how to manage abortions at home with Dr. Linda Prine, physician and co-founder of the Miscarriage and Abortion Hotline.\"})}),className:\"framer-o52er9\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v69\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTcwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"Amy Goodman\"})}),className:\"framer-l2vwoi\",fonts:[\"GF;Maven Pro-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{y:(componentViewport?.y||0)+0+4660.2+64+217+6+872+24+761},WQdutADZe:{y:(componentViewport?.y||0)+0+3003.8+64+230+6+24+774}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+2957.4+64+230+6+24+774,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18p6k9f-container\",nodeId:\"lgik7S9yG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{aw00kjixs:\"var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80))\",cYf2h2ngw:true,EciokmF6x:{borderColor:'var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174)) /* {\"name\":\"Purple\"} */',borderStyle:\"solid\",borderWidth:1.5},height:\"100%\",hlx3pHzJC:\"ArrowUpRight\",id:\"lgik7S9yG\",j0mNTb6PM:getLocalizedValue(\"v64\",activeLocale)??\"Read More\",JhD_kBxxO:16,JmRbp4rWi:\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\",L8vvJt3yC:\"var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, rgb(255, 255, 255))\",layoutId:\"lgik7S9yG\",lC8xzW8D3:\"ArrowUpRight\",Pedox6kw8:\"var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, rgb(255, 255, 255))\",URiyYuBHQ:true,variant:\"oXdNBEEz0\",width:\"100%\",ZCK1yqSpH:{borderColor:'var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80)) /* {\"name\":\"Orange\"} */',borderStyle:\"solid\",borderWidth:1},Zq7zNaCKF:\"https://www.democracynow.org/2023/4/10/abortion_access_unite_states\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dtq69c\",\"data-border\":true,\"data-framer-name\":\"Card 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4660.2+64+217+6+1744+24+0),pixelHeight:1213,pixelWidth:1820,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 60px)`,src:\"https://framerusercontent.com/images/mOww0UE1MPdbjCPm2HkGlEAvG3E.webp?lossless=1\",srcSet:\"https://framerusercontent.com/images/mOww0UE1MPdbjCPm2HkGlEAvG3E.webp?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/mOww0UE1MPdbjCPm2HkGlEAvG3E.webp?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/mOww0UE1MPdbjCPm2HkGlEAvG3E.webp?lossless=1 1820w\"}},WQdutADZe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3003.8+64+230+28.5+24+0),pixelHeight:1213,pixelWidth:1820,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 44px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/mOww0UE1MPdbjCPm2HkGlEAvG3E.webp?lossless=1\",srcSet:\"https://framerusercontent.com/images/mOww0UE1MPdbjCPm2HkGlEAvG3E.webp?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/mOww0UE1MPdbjCPm2HkGlEAvG3E.webp?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/mOww0UE1MPdbjCPm2HkGlEAvG3E.webp?lossless=1 1820w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2957.4+64+230+31+24+0),pixelHeight:1213,pixelWidth:1820,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 44px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/mOww0UE1MPdbjCPm2HkGlEAvG3E.webp?lossless=1\",srcSet:\"https://framerusercontent.com/images/mOww0UE1MPdbjCPm2HkGlEAvG3E.webp?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/mOww0UE1MPdbjCPm2HkGlEAvG3E.webp?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/mOww0UE1MPdbjCPm2HkGlEAvG3E.webp?lossless=1 1820w\"},className:\"framer-jg6s19\",whileHover:animation8})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v70\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"Feb 6, 2023\"})}),className:\"framer-bdj5ai\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v71\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTcwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.vox.com/the-goods/23580117/linda-prine-abortion-pills-medication-dobbs-roe\",motionChild:true,nodeId:\"nFoM9uigu\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-u0w2n4\",\"data-styles-preset\":\"YS_JPb0Zv\",children:\"What an abortion hotline reveals about reproductive care after Roe\"})})})}),className:\"framer-1uxuh86\",fonts:[\"GF;Maven Pro-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v73\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"Linda Prine, a physician and co-founder of the Miscarriage and Abortion Hotline, describes the new realities for patients in states where the procedure is banned.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v72\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"Linda Prine, a physician and co-founder of the Miscarriage and Abortion Hotline, describes the new realities for patients in states where the procedure is banned.\"})}),className:\"framer-1pavqi4\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v74\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTcwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"Marin Cogan\"})}),className:\"framer-1o9h9de\",fonts:[\"GF;Maven Pro-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{y:(componentViewport?.y||0)+0+4660.2+64+217+6+1744+24+761},WQdutADZe:{y:(componentViewport?.y||0)+0+3003.8+64+230+28.5+24+774}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+2957.4+64+230+31+24+774,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mdw6r3-container\",nodeId:\"vZxUqIkvw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{aw00kjixs:\"var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80))\",cYf2h2ngw:true,EciokmF6x:{borderColor:'var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174)) /* {\"name\":\"Purple\"} */',borderStyle:\"solid\",borderWidth:1.5},height:\"100%\",hlx3pHzJC:\"ArrowUpRight\",id:\"vZxUqIkvw\",j0mNTb6PM:getLocalizedValue(\"v64\",activeLocale)??\"Read More\",JhD_kBxxO:16,JmRbp4rWi:\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\",L8vvJt3yC:\"var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, rgb(255, 255, 255))\",layoutId:\"vZxUqIkvw\",lC8xzW8D3:\"ArrowUpRight\",Pedox6kw8:\"var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, rgb(255, 255, 255))\",URiyYuBHQ:true,variant:\"oXdNBEEz0\",width:\"100%\",ZCK1yqSpH:{borderColor:'var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80)) /* {\"name\":\"Orange\"} */',borderStyle:\"solid\",borderWidth:1},Zq7zNaCKF:\"https://www.vox.com/the-goods/23580117/linda-prine-abortion-pills-medication-dobbs-roe\"})})})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":JYxzATaMl\",webPageId:\"kTi38679h\"},implicitPathVariables:undefined},{href:{hash:\":JYxzATaMl\",webPageId:\"kTi38679h\"},implicitPathVariables:undefined},{href:{hash:\":JYxzATaMl\",webPageId:\"kTi38679h\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{y:(componentViewport?.y||0)+0+4660.2+64+2877},WQdutADZe:{y:(componentViewport?.y||0)+0+3003.8+64+1159}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+2957.4+64+990,children:/*#__PURE__*/_jsx(Container,{className:\"framer-73ij4c-container\",nodeId:\"FS_uFayHP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{K5nLJw0fN:resolvedLinks2[2]},WQdutADZe:{K5nLJw0fN:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonSecondaryButton1,{aYuLphz8e:false,height:\"100%\",id:\"FS_uFayHP\",j0mNTb6PM:getLocalizedValue(\"v75\",activeLocale)??\"Read More Press Highlights\",K5nLJw0fN:resolvedLinks2[0],layoutId:\"FS_uFayHP\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qg9bse\",\"data-framer-name\":\"Real Stories\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nbp2da\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v76\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s2yngy\",\"data-styles-preset\":\"eUeUHIP_G\",style:{\"--framer-text-alignment\":\"center\"},children:\"Real Stories from Real Callers\"})}),className:\"framer-385ho5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"See how our helpline has provided guidance and support to those navigating abortion and miscarriage.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v57\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"See how our helpline has provided guidance and support to those navigating abortion and miscarriage.\"})}),className:\"framer-7i49d1\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9qc3p3\",\"data-framer-name\":\"Review Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pj1i3d\",\"data-framer-name\":\"Method 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7716.2+64+217+0+0+24+0),pixelHeight:620,pixelWidth:821,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/AU7fKEYT8skcgCO7D29KyYxTUho.png\",srcSet:\"https://framerusercontent.com/images/AU7fKEYT8skcgCO7D29KyYxTUho.png?scale-down-to=512 512w,https://framerusercontent.com/images/AU7fKEYT8skcgCO7D29KyYxTUho.png 821w\"}},WQdutADZe:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4341.8+64+230+0+24+0),pixelHeight:620,pixelWidth:821,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 32px) / 2, 1px) - 48px)`,src:\"https://framerusercontent.com/images/AU7fKEYT8skcgCO7D29KyYxTUho.png\",srcSet:\"https://framerusercontent.com/images/AU7fKEYT8skcgCO7D29KyYxTUho.png?scale-down-to=512 512w,https://framerusercontent.com/images/AU7fKEYT8skcgCO7D29KyYxTUho.png 821w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation9,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition7,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4126.4+64+230+0+24+0),pixelHeight:620,pixelWidth:821,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/AU7fKEYT8skcgCO7D29KyYxTUho.png\",srcSet:\"https://framerusercontent.com/images/AU7fKEYT8skcgCO7D29KyYxTUho.png?scale-down-to=512 512w,https://framerusercontent.com/images/AU7fKEYT8skcgCO7D29KyYxTUho.png 821w\"},className:\"framer-vkg9jn\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13i4iny\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v77\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ehwkfm\",\"data-styles-preset\":\"AM1DOgsaf\",children:\"\\\"The individuals I interacted with over the call were considerate, and they furnished me with knowledge for every aspect of managing my situation. M+A engages individuals who provide love, support, and allow me to express freely without fear of judgement, denouncement, or mockery. I'm grateful for the unbiased individuals operating the helpline who have treated me with humanity \u2014 as opposed to disregarding me or imposing any 'perspective' of belief onto me.\\\"\"})}),className:\"framer-csj5sw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kbgf5h\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v78\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\",\"--framer-text-transform\":\"capitalize\"},children:\"Hotline Caller 1\"})}),className:\"framer-1uup3w2\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n7ijht\",\"data-framer-name\":\"Method 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7716.2+64+217+0+449.4+24+0),pixelHeight:1060,pixelWidth:1456,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/8IuOhZAnYKXwKdpwglYix4X6js.png\",srcSet:\"https://framerusercontent.com/images/8IuOhZAnYKXwKdpwglYix4X6js.png?scale-down-to=512 512w,https://framerusercontent.com/images/8IuOhZAnYKXwKdpwglYix4X6js.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8IuOhZAnYKXwKdpwglYix4X6js.png 1456w\"}},WQdutADZe:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4341.8+64+230+0+24+0),pixelHeight:1060,pixelWidth:1456,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 32px) / 2, 1px) - 48px)`,src:\"https://framerusercontent.com/images/8IuOhZAnYKXwKdpwglYix4X6js.png\",srcSet:\"https://framerusercontent.com/images/8IuOhZAnYKXwKdpwglYix4X6js.png?scale-down-to=512 512w,https://framerusercontent.com/images/8IuOhZAnYKXwKdpwglYix4X6js.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8IuOhZAnYKXwKdpwglYix4X6js.png 1456w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation9,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition7,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4126.4+64+230+0+24+0),pixelHeight:1060,pixelWidth:1456,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/8IuOhZAnYKXwKdpwglYix4X6js.png\",srcSet:\"https://framerusercontent.com/images/8IuOhZAnYKXwKdpwglYix4X6js.png?scale-down-to=512 512w,https://framerusercontent.com/images/8IuOhZAnYKXwKdpwglYix4X6js.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8IuOhZAnYKXwKdpwglYix4X6js.png 1456w\"},className:\"framer-19ngprv\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1acbexp\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v79\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ehwkfm\",\"data-styles-preset\":\"AM1DOgsaf\",children:'\"The Miscarriage + Abortion Hotline is much more than a name\u2026 I found M+A to be the ones to help me mentally heal from my miscarriage, and empower me to protect my future reproduction from endangerment.\"'})}),className:\"framer-jpkix1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yapb90\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v80\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\",\"--framer-text-transform\":\"capitalize\"},children:\"Hotline Caller 2\"})}),className:\"framer-mvmgom\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6nwd98\",\"data-framer-name\":\"Concerns\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ff5fu\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v81\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s2yngy\",\"data-styles-preset\":\"eUeUHIP_G\",style:{\"--framer-text-alignment\":\"center\"},children:\"we can address your concerns\"})}),className:\"framer-1qapook\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v83\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"Reach out for empathetic, confidential support from our caring experts.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v82\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:\"Reach out for empathetic, confidential support from our caring experts.\"})}),className:\"framer-u22b94\",fonts:[\"GF;Maven Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vstbz5\",\"data-border\":true,\"data-framer-name\":\"Card 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bwhhwo\",\"data-framer-name\":\"Warning\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w5zks5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yn1dsy8BP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\",height:\"100%\",iconSearch:getLocalizedValue(\"v10\",activeLocale)??\"House\",iconSelection:\"Clock\",id:\"yn1dsy8BP\",layoutId:\"yn1dsy8BP\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:[\"Hotline hours are from \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"8 AM EST\"}),\" (5 AM PST) - \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"1 AM EST\"}),\" (10 PM PST). Calling and texting is only available in the U.S.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, rgb(44, 44, 44))\"},children:[\"Hotline hours are from \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"8 AM EST\"}),\" (5 AM PST) - \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-weight\":\"600\"},children:\"1 AM EST\"}),\" (10 PM PST). Calling and texting is only available in the U.S.\"]})}),className:\"framer-15cgueu\",fonts:[\"GF;Maven Pro-regular\",\"GF;Maven Pro-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1497neo\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{y:(componentViewport?.y||0)+0+8928+64+201+24+144+2},WQdutADZe:{y:(componentViewport?.y||0)+0+5117.2+64+206+24+157+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+4901.8+92+206+24+157+2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-48pld9-container\",nodeId:\"tJFrn8QYW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{aw00kjixs:\"var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80))\",cYf2h2ngw:true,EciokmF6x:{borderColor:'var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174)) /* {\"name\":\"Purple\"} */',borderStyle:\"solid\",borderWidth:1.5},height:\"100%\",hlx3pHzJC:\"Phone\",id:\"tJFrn8QYW\",j0mNTb6PM:getLocalizedValue(\"v8\",activeLocale)??\"Call Us\",JhD_kBxxO:16,JmRbp4rWi:\"var(--token-760fd998-d621-42ca-a46a-1274771a70c7, rgb(92, 71, 174))\",L8vvJt3yC:\"var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, rgb(255, 255, 255))\",layoutId:\"tJFrn8QYW\",lC8xzW8D3:\"PhoneCall\",Pedox6kw8:\"var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, rgb(255, 255, 255))\",URiyYuBHQ:true,variant:\"oXdNBEEz0\",width:\"100%\",ZCK1yqSpH:{borderColor:'var(--token-c2bd651a-8bb5-48bc-abe7-1c26aba2634a, rgb(231, 107, 80)) /* {\"name\":\"Orange\"} */',borderStyle:\"solid\",borderWidth:1},Zq7zNaCKF:\"tel:+18332462632\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{y:(componentViewport?.y||0)+0+8928+64+201+24+144+0},WQdutADZe:{y:(componentViewport?.y||0)+0+5117.2+64+206+24+157+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+4901.8+92+206+24+157+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rrtn3b-container\",nodeId:\"H5mA2WMVo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonSecondaryButton1,{aYuLphz8e:false,height:\"100%\",id:\"H5mA2WMVo\",j0mNTb6PM:getLocalizedValue(\"v9\",activeLocale)??\"Text Us\",K5nLJw0fN:\"sms:+18332462632\",layoutId:\"H5mA2WMVo\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{y:(componentViewport?.y||0)+0+9500},WQdutADZe:{y:(componentViewport?.y||0)+0+5707.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:885,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5547.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3nikvt-container\",nodeId:\"nTGYcBN8f\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PRO0q76QC:{variant:\"OtlbMm1_Z\"},WQdutADZe:{variant:\"idIUDJlrh\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"nTGYcBN8f\",layoutId:\"nTGYcBN8f\",style:{width:\"100%\"},variant:\"izsyia8GM\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-f9xA9.framer-lux5qc, .framer-f9xA9 .framer-lux5qc { display: block; }\",\".framer-f9xA9.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-00b01861-93d7-402c-abbe-2a5860bc28b7, #f9f7ee); 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-f9xA9 .framer-njfasl { --border-bottom-width: 1.5px; --border-color: var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, #323232); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1.5px; align-content: center; align-items: center; background-color: var(--token-d883cc33-c678-4568-9d47-445d98e4f047, #fde8e3); bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 8px; position: fixed; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-f9xA9 .framer-8vy2wh-container { flex: 1 0 0px; height: 60px; position: relative; width: 1px; }\",\".framer-f9xA9 .framer-1effxdi { 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; position: relative; width: min-content; }\",\".framer-f9xA9 .framer-70ttfh { aspect-ratio: 1.0232067510548524 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 49px; z-index: 0; }\",\".framer-f9xA9 .framer-1u9iqf0 { align-content: center; align-items: center; background-color: var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, #ffffff); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: min-content; }\",\".framer-f9xA9 .framer-z4afoo, .framer-f9xA9 .framer-1eufoa, .framer-f9xA9 .framer-cpxjrg, .framer-f9xA9 .framer-pr0p25, .framer-f9xA9 .framer-1a137ed, .framer-f9xA9 .framer-jb6hju, .framer-f9xA9 .framer-iuhri6, .framer-f9xA9 .framer-gszfj8, .framer-f9xA9 .framer-1ml8btd, .framer-f9xA9 .framer-gvsmn2, .framer-f9xA9 .framer-190mht5, .framer-f9xA9 .framer-1uup3w2, .framer-f9xA9 .framer-mvmgom { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-f9xA9 .framer-c22vdi-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-f9xA9 .framer-390ttu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 100vh; justify-content: center; overflow: hidden; padding: 224px 48px 92px 48px; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-19u292r { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-f9xA9 .framer-20ijw0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 6px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-f9xA9 .framer-18r7sjm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-dq042v, .framer-f9xA9 .framer-1p9v2yr, .framer-f9xA9 .framer-si66ec, .framer-f9xA9 .framer-i9r16u, .framer-f9xA9 .framer-rbo1v8, .framer-f9xA9 .framer-1woimrd, .framer-f9xA9 .framer-7wmsg0, .framer-f9xA9 .framer-j6n73e, .framer-f9xA9 .framer-mespq9, .framer-f9xA9 .framer-30nq1t, .framer-f9xA9 .framer-3j8ohf, .framer-f9xA9 .framer-yv9ydh, .framer-f9xA9 .framer-1vtfyyp, .framer-f9xA9 .framer-wi3z8j, .framer-f9xA9 .framer-jstsp7, .framer-f9xA9 .framer-fxpoh4, .framer-f9xA9 .framer-1qr2y51, .framer-f9xA9 .framer-14aqalk, .framer-f9xA9 .framer-1lzw4d9, .framer-f9xA9 .framer-1agi4tq, .framer-f9xA9 .framer-5q5xd4, .framer-f9xA9 .framer-rvqb9l, .framer-f9xA9 .framer-o52er9, .framer-f9xA9 .framer-l2vwoi, .framer-f9xA9 .framer-bdj5ai, .framer-f9xA9 .framer-1uxuh86, .framer-f9xA9 .framer-1pavqi4, .framer-f9xA9 .framer-1o9h9de, .framer-f9xA9 .framer-7i49d1, .framer-f9xA9 .framer-u22b94 { --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-f9xA9 .framer-laz375, .framer-f9xA9 .framer-1x1lazm, .framer-f9xA9 .framer-i27ahx, .framer-f9xA9 .framer-pw4d24, .framer-f9xA9 .framer-1dbad2e, .framer-f9xA9 .framer-1kiinis, .framer-f9xA9 .framer-385ho5, .framer-f9xA9 .framer-csj5sw, .framer-f9xA9 .framer-jpkix1, .framer-f9xA9 .framer-1qapook { --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-f9xA9 .framer-9j0paa, .framer-f9xA9 .framer-1497neo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-f9xA9 .framer-1htkd64-container, .framer-f9xA9 .framer-17mmvcy-container, .framer-f9xA9 .framer-dr6ikn-container, .framer-f9xA9 .framer-jyg571-container, .framer-f9xA9 .framer-gqags1-container, .framer-f9xA9 .framer-1nixzs-container, .framer-f9xA9 .framer-wvt1z6-container, .framer-f9xA9 .framer-18p6k9f-container, .framer-f9xA9 .framer-1mdw6r3-container, .framer-f9xA9 .framer-73ij4c-container, .framer-f9xA9 .framer-48pld9-container, .framer-f9xA9 .framer-1rrtn3b-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-f9xA9 .framer-1284if6 { align-content: center; align-items: center; background-color: rgba(253, 232, 227, 0.75); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; padding: 12px; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-2v7luo-container, .framer-f9xA9 .framer-15kf8bw-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 20px; }\",\".framer-f9xA9 .framer-1jhetae, .framer-f9xA9 .framer-h33dgp, .framer-f9xA9 .framer-15cgueu { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-f9xA9 .framer-frl1k9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 450px; justify-content: center; max-height: 450px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-f9xA9 .framer-17wwqj7 { align-content: center; align-items: center; background-color: var(--token-78e5f93c-57ea-4c9f-855a-a8c4da3b3509, #f0f1fd); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 48px 64px 48px; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-yh5uoj, .framer-f9xA9 .framer-1x70cu4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 6px; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-1u470qi { --border-bottom-width: 1.5px; --border-color: var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, #2c2c2c); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: flex-start; align-items: flex-start; background-color: var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 4px 4px 0px 1px var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, #2c2c2c); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f9xA9 .framer-svl2kp-container, .framer-f9xA9 .framer-125cm1k-container, .framer-f9xA9 .framer-kbn3u3-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 32px; }\",\".framer-f9xA9 .framer-y8wgka, .framer-f9xA9 .framer-16a384q { align-content: flex-start; align-items: flex-start; background-color: var(--token-d8df8693-0b89-4555-96c6-318f3cbe7a4d, #fdf5f3); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 12px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-f9xA9 .framer-1bo1841, .framer-f9xA9 .framer-1kg6cre, .framer-f9xA9 .framer-w4apbr, .framer-f9xA9 .framer-1qdbbz1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-1i9gdto, .framer-f9xA9 .framer-1ixbei6, .framer-f9xA9 .framer-uubyp1, .framer-f9xA9 .framer-11pvkyf { align-content: center; align-items: center; background-color: var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, #ffffff); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 12px 6px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-f9xA9 .framer-9gvqs2, .framer-f9xA9 .framer-m9z6hs, .framer-f9xA9 .framer-cypz43 { background-color: var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, #2c2c2c); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-rv8ogi, .framer-f9xA9 .framer-1012nhi { --border-bottom-width: 1.5px; --border-color: var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, #2c2c2c); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 4px 4px 0px 1px var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, #2c2c2c); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f9xA9 .framer-12ubknm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-f9xA9 .framer-vw3y8o, .framer-f9xA9 .framer-bwhhwo { align-content: center; align-items: center; background-color: var(--token-d8df8693-0b89-4555-96c6-318f3cbe7a4d, #fdf5f3); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; padding: 12px; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-1kqgcbg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 92px 48px 92px 48px; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-iz4af8, .framer-f9xA9 .framer-1s41kpm, .framer-f9xA9 .framer-1nbp2da, .framer-f9xA9 .framer-11ff5fu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-j4sg89, .framer-f9xA9 .framer-cjxbuq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-ifywes, .framer-f9xA9 .framer-6pnwdb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-f9xA9 .framer-ezhyid, .framer-f9xA9 .framer-1ozrz1s, .framer-f9xA9 .framer-kbgf5h, .framer-f9xA9 .framer-yapb90 { --border-bottom-width: 1px; --border-color: var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, #2c2c2c); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, #ffffff); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 12px 6px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-f9xA9 .framer-b5i0jv, .framer-f9xA9 .framer-1u0zgmm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-2l6j1y, .framer-f9xA9 .framer-v31lin { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 300px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 350px; }\",\".framer-f9xA9 .framer-1qyyhtm { align-content: center; align-items: center; background-color: var(--token-d883cc33-c678-4568-9d47-445d98e4f047, #fde8e3); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 48px 64px 48px; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-l40283, .framer-f9xA9 .framer-1dtq69c { --border-bottom-width: 1.5px; --border-color: var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, #2c2c2c); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: flex-start; align-items: flex-start; background-color: var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 4px 4px 0px 1px var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, #2c2c2c); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 650px; justify-content: flex-start; min-height: 650px; overflow: hidden; padding: 24px 16px 24px 16px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f9xA9 .framer-5gwdpn, .framer-f9xA9 .framer-18kcdll, .framer-f9xA9 .framer-jg6s19 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 200px; justify-content: center; overflow: hidden; padding: 12px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-f9xA9 .framer-iljhkb { --border-bottom-width: 1.5px; --border-color: var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, #2c2c2c); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: flex-start; align-items: flex-start; background-color: var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 4px 4px 0px 1px var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, #2c2c2c); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 700px; justify-content: flex-start; min-height: 650px; overflow: hidden; padding: 24px 16px 24px 16px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f9xA9 .framer-qg9bse { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 48px 64px 48px; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-9qc3p3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-1pj1i3d { align-content: center; align-items: center; background-color: var(--token-78e5f93c-57ea-4c9f-855a-a8c4da3b3509, #f0f1fd); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 450px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f9xA9 .framer-vkg9jn, .framer-f9xA9 .framer-19ngprv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 150px; justify-content: center; padding: 0px; position: relative; width: 200px; }\",\".framer-f9xA9 .framer-13i4iny, .framer-f9xA9 .framer-1acbexp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; padding: 0px 0px 6px 0px; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-1n7ijht { align-content: center; align-items: center; background-color: var(--token-d883cc33-c678-4568-9d47-445d98e4f047, #fde8e3); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 450px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f9xA9 .framer-6nwd98 { align-content: center; align-items: center; background-color: var(--token-78e5f93c-57ea-4c9f-855a-a8c4da3b3509, #f0f1fd); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 92px 48px 92px 48px; position: relative; width: 100%; }\",\".framer-f9xA9 .framer-1vstbz5 { --border-bottom-width: 1.5px; --border-color: var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, #2c2c2c); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: center; align-items: center; background-color: var(--token-0f3e1426-fdf6-488a-b2e9-5f31b25c577d, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 4px 4px 0px 1px var(--token-48a7608d-f8eb-48c7-bd4f-1d92a9bd0a37, #2c2c2c); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 24px; position: relative; width: 750px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f9xA9 .framer-1w5zks5-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 20px; }\",\".framer-f9xA9 .framer-3nikvt-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-f9xA9.framer-72rtr7, .framer-f9xA9 .framer-njfasl, .framer-f9xA9 .framer-1effxdi, .framer-f9xA9 .framer-1u9iqf0, .framer-f9xA9 .framer-390ttu, .framer-f9xA9 .framer-19u292r, .framer-f9xA9 .framer-20ijw0, .framer-f9xA9 .framer-18r7sjm, .framer-f9xA9 .framer-9j0paa, .framer-f9xA9 .framer-1284if6, .framer-f9xA9 .framer-frl1k9, .framer-f9xA9 .framer-17wwqj7, .framer-f9xA9 .framer-yh5uoj, .framer-f9xA9 .framer-1u470qi, .framer-f9xA9 .framer-y8wgka, .framer-f9xA9 .framer-1bo1841, .framer-f9xA9 .framer-1i9gdto, .framer-f9xA9 .framer-1kg6cre, .framer-f9xA9 .framer-1ixbei6, .framer-f9xA9 .framer-w4apbr, .framer-f9xA9 .framer-uubyp1, .framer-f9xA9 .framer-1qdbbz1, .framer-f9xA9 .framer-11pvkyf, .framer-f9xA9 .framer-rv8ogi, .framer-f9xA9 .framer-12ubknm, .framer-f9xA9 .framer-1012nhi, .framer-f9xA9 .framer-16a384q, .framer-f9xA9 .framer-vw3y8o, .framer-f9xA9 .framer-1kqgcbg, .framer-f9xA9 .framer-iz4af8, .framer-f9xA9 .framer-j4sg89, .framer-f9xA9 .framer-ifywes, .framer-f9xA9 .framer-ezhyid, .framer-f9xA9 .framer-b5i0jv, .framer-f9xA9 .framer-2l6j1y, .framer-f9xA9 .framer-cjxbuq, .framer-f9xA9 .framer-v31lin, .framer-f9xA9 .framer-6pnwdb, .framer-f9xA9 .framer-1ozrz1s, .framer-f9xA9 .framer-1u0zgmm, .framer-f9xA9 .framer-1qyyhtm, .framer-f9xA9 .framer-1s41kpm, .framer-f9xA9 .framer-1x70cu4, .framer-f9xA9 .framer-l40283, .framer-f9xA9 .framer-5gwdpn, .framer-f9xA9 .framer-iljhkb, .framer-f9xA9 .framer-18kcdll, .framer-f9xA9 .framer-1dtq69c, .framer-f9xA9 .framer-jg6s19, .framer-f9xA9 .framer-qg9bse, .framer-f9xA9 .framer-1nbp2da, .framer-f9xA9 .framer-9qc3p3, .framer-f9xA9 .framer-1pj1i3d, .framer-f9xA9 .framer-vkg9jn, .framer-f9xA9 .framer-13i4iny, .framer-f9xA9 .framer-kbgf5h, .framer-f9xA9 .framer-1n7ijht, .framer-f9xA9 .framer-19ngprv, .framer-f9xA9 .framer-1acbexp, .framer-f9xA9 .framer-yapb90, .framer-f9xA9 .framer-6nwd98, .framer-f9xA9 .framer-11ff5fu, .framer-f9xA9 .framer-1vstbz5, .framer-f9xA9 .framer-bwhhwo, .framer-f9xA9 .framer-1497neo { gap: 0px; } .framer-f9xA9.framer-72rtr7 > *, .framer-f9xA9 .framer-frl1k9 > *, .framer-f9xA9 .framer-2l6j1y > *, .framer-f9xA9 .framer-v31lin > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-f9xA9.framer-72rtr7 > :first-child, .framer-f9xA9 .framer-20ijw0 > :first-child, .framer-f9xA9 .framer-18r7sjm > :first-child, .framer-f9xA9 .framer-frl1k9 > :first-child, .framer-f9xA9 .framer-17wwqj7 > :first-child, .framer-f9xA9 .framer-1u470qi > :first-child, .framer-f9xA9 .framer-y8wgka > :first-child, .framer-f9xA9 .framer-rv8ogi > :first-child, .framer-f9xA9 .framer-12ubknm > :first-child, .framer-f9xA9 .framer-1012nhi > :first-child, .framer-f9xA9 .framer-16a384q > :first-child, .framer-f9xA9 .framer-1kqgcbg > :first-child, .framer-f9xA9 .framer-iz4af8 > :first-child, .framer-f9xA9 .framer-ifywes > :first-child, .framer-f9xA9 .framer-2l6j1y > :first-child, .framer-f9xA9 .framer-v31lin > :first-child, .framer-f9xA9 .framer-6pnwdb > :first-child, .framer-f9xA9 .framer-1qyyhtm > :first-child, .framer-f9xA9 .framer-1s41kpm > :first-child, .framer-f9xA9 .framer-l40283 > :first-child, .framer-f9xA9 .framer-5gwdpn > :first-child, .framer-f9xA9 .framer-iljhkb > :first-child, .framer-f9xA9 .framer-18kcdll > :first-child, .framer-f9xA9 .framer-1dtq69c > :first-child, .framer-f9xA9 .framer-jg6s19 > :first-child, .framer-f9xA9 .framer-qg9bse > :first-child, .framer-f9xA9 .framer-1nbp2da > :first-child, .framer-f9xA9 .framer-1pj1i3d > :first-child, .framer-f9xA9 .framer-vkg9jn > :first-child, .framer-f9xA9 .framer-13i4iny > :first-child, .framer-f9xA9 .framer-1n7ijht > :first-child, .framer-f9xA9 .framer-19ngprv > :first-child, .framer-f9xA9 .framer-1acbexp > :first-child, .framer-f9xA9 .framer-6nwd98 > :first-child, .framer-f9xA9 .framer-11ff5fu > :first-child, .framer-f9xA9 .framer-1vstbz5 > :first-child { margin-top: 0px; } .framer-f9xA9.framer-72rtr7 > :last-child, .framer-f9xA9 .framer-20ijw0 > :last-child, .framer-f9xA9 .framer-18r7sjm > :last-child, .framer-f9xA9 .framer-frl1k9 > :last-child, .framer-f9xA9 .framer-17wwqj7 > :last-child, .framer-f9xA9 .framer-1u470qi > :last-child, .framer-f9xA9 .framer-y8wgka > :last-child, .framer-f9xA9 .framer-rv8ogi > :last-child, .framer-f9xA9 .framer-12ubknm > :last-child, .framer-f9xA9 .framer-1012nhi > :last-child, .framer-f9xA9 .framer-16a384q > :last-child, .framer-f9xA9 .framer-1kqgcbg > :last-child, .framer-f9xA9 .framer-iz4af8 > :last-child, .framer-f9xA9 .framer-ifywes > :last-child, .framer-f9xA9 .framer-2l6j1y > :last-child, .framer-f9xA9 .framer-v31lin > :last-child, .framer-f9xA9 .framer-6pnwdb > :last-child, .framer-f9xA9 .framer-1qyyhtm > :last-child, .framer-f9xA9 .framer-1s41kpm > :last-child, .framer-f9xA9 .framer-l40283 > :last-child, .framer-f9xA9 .framer-5gwdpn > :last-child, .framer-f9xA9 .framer-iljhkb > :last-child, .framer-f9xA9 .framer-18kcdll > :last-child, .framer-f9xA9 .framer-1dtq69c > :last-child, .framer-f9xA9 .framer-jg6s19 > :last-child, .framer-f9xA9 .framer-qg9bse > :last-child, .framer-f9xA9 .framer-1nbp2da > :last-child, .framer-f9xA9 .framer-1pj1i3d > :last-child, .framer-f9xA9 .framer-vkg9jn > :last-child, .framer-f9xA9 .framer-13i4iny > :last-child, .framer-f9xA9 .framer-1n7ijht > :last-child, .framer-f9xA9 .framer-19ngprv > :last-child, .framer-f9xA9 .framer-1acbexp > :last-child, .framer-f9xA9 .framer-6nwd98 > :last-child, .framer-f9xA9 .framer-11ff5fu > :last-child, .framer-f9xA9 .framer-1vstbz5 > :last-child { margin-bottom: 0px; } .framer-f9xA9 .framer-njfasl > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-f9xA9 .framer-njfasl > :first-child, .framer-f9xA9 .framer-1effxdi > :first-child, .framer-f9xA9 .framer-1u9iqf0 > :first-child, .framer-f9xA9 .framer-390ttu > :first-child, .framer-f9xA9 .framer-19u292r > :first-child, .framer-f9xA9 .framer-9j0paa > :first-child, .framer-f9xA9 .framer-1284if6 > :first-child, .framer-f9xA9 .framer-yh5uoj > :first-child, .framer-f9xA9 .framer-1bo1841 > :first-child, .framer-f9xA9 .framer-1i9gdto > :first-child, .framer-f9xA9 .framer-1kg6cre > :first-child, .framer-f9xA9 .framer-1ixbei6 > :first-child, .framer-f9xA9 .framer-w4apbr > :first-child, .framer-f9xA9 .framer-uubyp1 > :first-child, .framer-f9xA9 .framer-1qdbbz1 > :first-child, .framer-f9xA9 .framer-11pvkyf > :first-child, .framer-f9xA9 .framer-vw3y8o > :first-child, .framer-f9xA9 .framer-j4sg89 > :first-child, .framer-f9xA9 .framer-ezhyid > :first-child, .framer-f9xA9 .framer-b5i0jv > :first-child, .framer-f9xA9 .framer-cjxbuq > :first-child, .framer-f9xA9 .framer-1ozrz1s > :first-child, .framer-f9xA9 .framer-1u0zgmm > :first-child, .framer-f9xA9 .framer-1x70cu4 > :first-child, .framer-f9xA9 .framer-9qc3p3 > :first-child, .framer-f9xA9 .framer-kbgf5h > :first-child, .framer-f9xA9 .framer-yapb90 > :first-child, .framer-f9xA9 .framer-bwhhwo > :first-child, .framer-f9xA9 .framer-1497neo > :first-child { margin-left: 0px; } .framer-f9xA9 .framer-njfasl > :last-child, .framer-f9xA9 .framer-1effxdi > :last-child, .framer-f9xA9 .framer-1u9iqf0 > :last-child, .framer-f9xA9 .framer-390ttu > :last-child, .framer-f9xA9 .framer-19u292r > :last-child, .framer-f9xA9 .framer-9j0paa > :last-child, .framer-f9xA9 .framer-1284if6 > :last-child, .framer-f9xA9 .framer-yh5uoj > :last-child, .framer-f9xA9 .framer-1bo1841 > :last-child, .framer-f9xA9 .framer-1i9gdto > :last-child, .framer-f9xA9 .framer-1kg6cre > :last-child, .framer-f9xA9 .framer-1ixbei6 > :last-child, .framer-f9xA9 .framer-w4apbr > :last-child, .framer-f9xA9 .framer-uubyp1 > :last-child, .framer-f9xA9 .framer-1qdbbz1 > :last-child, .framer-f9xA9 .framer-11pvkyf > :last-child, .framer-f9xA9 .framer-vw3y8o > :last-child, .framer-f9xA9 .framer-j4sg89 > :last-child, .framer-f9xA9 .framer-ezhyid > :last-child, .framer-f9xA9 .framer-b5i0jv > :last-child, .framer-f9xA9 .framer-cjxbuq > :last-child, .framer-f9xA9 .framer-1ozrz1s > :last-child, .framer-f9xA9 .framer-1u0zgmm > :last-child, .framer-f9xA9 .framer-1x70cu4 > :last-child, .framer-f9xA9 .framer-9qc3p3 > :last-child, .framer-f9xA9 .framer-kbgf5h > :last-child, .framer-f9xA9 .framer-yapb90 > :last-child, .framer-f9xA9 .framer-bwhhwo > :last-child, .framer-f9xA9 .framer-1497neo > :last-child { margin-right: 0px; } .framer-f9xA9 .framer-1effxdi > *, .framer-f9xA9 .framer-1u9iqf0 > *, .framer-f9xA9 .framer-1i9gdto > *, .framer-f9xA9 .framer-1ixbei6 > *, .framer-f9xA9 .framer-uubyp1 > *, .framer-f9xA9 .framer-11pvkyf > *, .framer-f9xA9 .framer-ezhyid > *, .framer-f9xA9 .framer-1ozrz1s > *, .framer-f9xA9 .framer-kbgf5h > *, .framer-f9xA9 .framer-yapb90 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-f9xA9 .framer-390ttu > *, .framer-f9xA9 .framer-j4sg89 > *, .framer-f9xA9 .framer-cjxbuq > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-f9xA9 .framer-19u292r > *, .framer-f9xA9 .framer-9qc3p3 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-f9xA9 .framer-20ijw0 > *, .framer-f9xA9 .framer-1pj1i3d > *, .framer-f9xA9 .framer-vkg9jn > *, .framer-f9xA9 .framer-13i4iny > *, .framer-f9xA9 .framer-1n7ijht > *, .framer-f9xA9 .framer-19ngprv > *, .framer-f9xA9 .framer-1acbexp > *, .framer-f9xA9 .framer-6nwd98 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-f9xA9 .framer-18r7sjm > *, .framer-f9xA9 .framer-1u470qi > *, .framer-f9xA9 .framer-y8wgka > *, .framer-f9xA9 .framer-rv8ogi > *, .framer-f9xA9 .framer-1012nhi > *, .framer-f9xA9 .framer-16a384q > *, .framer-f9xA9 .framer-iz4af8 > *, .framer-f9xA9 .framer-ifywes > *, .framer-f9xA9 .framer-6pnwdb > *, .framer-f9xA9 .framer-1s41kpm > *, .framer-f9xA9 .framer-l40283 > *, .framer-f9xA9 .framer-5gwdpn > *, .framer-f9xA9 .framer-iljhkb > *, .framer-f9xA9 .framer-18kcdll > *, .framer-f9xA9 .framer-1dtq69c > *, .framer-f9xA9 .framer-jg6s19 > *, .framer-f9xA9 .framer-1nbp2da > *, .framer-f9xA9 .framer-11ff5fu > *, .framer-f9xA9 .framer-1vstbz5 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-f9xA9 .framer-9j0paa > *, .framer-f9xA9 .framer-b5i0jv > *, .framer-f9xA9 .framer-1u0zgmm > *, .framer-f9xA9 .framer-1497neo > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-f9xA9 .framer-1284if6 > *, .framer-f9xA9 .framer-1bo1841 > *, .framer-f9xA9 .framer-1kg6cre > *, .framer-f9xA9 .framer-w4apbr > *, .framer-f9xA9 .framer-1qdbbz1 > *, .framer-f9xA9 .framer-vw3y8o > *, .framer-f9xA9 .framer-bwhhwo > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-f9xA9 .framer-17wwqj7 > *, .framer-f9xA9 .framer-1kqgcbg > *, .framer-f9xA9 .framer-1qyyhtm > *, .framer-f9xA9 .framer-qg9bse > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-f9xA9 .framer-yh5uoj > *, .framer-f9xA9 .framer-1x70cu4 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-f9xA9 .framer-12ubknm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-f9xA9[data-border=\"true\"]::after, .framer-f9xA9 [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; }','.framer-f9xA9[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-f9xA9 [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-f9xA9[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-f9xA9 [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-f9xA9[data-hide-scrollbars=\"true\"], .framer-f9xA9 [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-f9xA9.framer-72rtr7 { width: 810px; } .framer-f9xA9 .framer-390ttu { height: min-content; padding: 164px 32px 64px 32px; } .framer-f9xA9 .framer-9j0paa, .framer-f9xA9 .framer-1bo1841, .framer-f9xA9 .framer-1kg6cre, .framer-f9xA9 .framer-w4apbr, .framer-f9xA9 .framer-1qdbbz1, .framer-f9xA9 .framer-vw3y8o, .framer-f9xA9 .framer-b5i0jv, .framer-f9xA9 .framer-1u0zgmm { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-f9xA9 .framer-2v7luo-container { height: var(--framer-aspect-ratio-supported, 22px); } .framer-f9xA9 .framer-frl1k9 { align-self: stretch; height: auto; max-height: unset; } .framer-f9xA9 .framer-17wwqj7, .framer-f9xA9 .framer-1kqgcbg, .framer-f9xA9 .framer-1qyyhtm, .framer-f9xA9 .framer-qg9bse, .framer-f9xA9 .framer-6nwd98 { padding: 64px 32px 64px 32px; } .framer-f9xA9 .framer-h33dgp { flex: none; width: 100%; } .framer-f9xA9 .framer-2l6j1y, .framer-f9xA9 .framer-v31lin { height: 350px; } .framer-f9xA9 .framer-l40283, .framer-f9xA9 .framer-1dtq69c { height: 824px; min-height: unset; } .framer-f9xA9 .framer-iljhkb { height: min-content; min-height: unset; } .framer-f9xA9 .framer-1pj1i3d, .framer-f9xA9 .framer-1n7ijht { flex: 1 0 0px; width: 1px; } .framer-f9xA9 .framer-vkg9jn, .framer-f9xA9 .framer-19ngprv, .framer-f9xA9 .framer-1vstbz5 { width: 100%; } .framer-f9xA9 .framer-bwhhwo, .framer-f9xA9 .framer-1497neo { align-content: flex-start; align-items: flex-start; } .framer-f9xA9 .framer-1w5zks5-container { height: var(--framer-aspect-ratio-supported, 23px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-f9xA9 .framer-9j0paa, .framer-f9xA9 .framer-1bo1841, .framer-f9xA9 .framer-1kg6cre, .framer-f9xA9 .framer-w4apbr, .framer-f9xA9 .framer-1qdbbz1, .framer-f9xA9 .framer-vw3y8o, .framer-f9xA9 .framer-b5i0jv, .framer-f9xA9 .framer-1u0zgmm { gap: 0px; } .framer-f9xA9 .framer-9j0paa > *, .framer-f9xA9 .framer-b5i0jv > *, .framer-f9xA9 .framer-1u0zgmm > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-f9xA9 .framer-9j0paa > :first-child, .framer-f9xA9 .framer-1bo1841 > :first-child, .framer-f9xA9 .framer-1kg6cre > :first-child, .framer-f9xA9 .framer-w4apbr > :first-child, .framer-f9xA9 .framer-1qdbbz1 > :first-child, .framer-f9xA9 .framer-vw3y8o > :first-child, .framer-f9xA9 .framer-b5i0jv > :first-child, .framer-f9xA9 .framer-1u0zgmm > :first-child { margin-top: 0px; } .framer-f9xA9 .framer-9j0paa > :last-child, .framer-f9xA9 .framer-1bo1841 > :last-child, .framer-f9xA9 .framer-1kg6cre > :last-child, .framer-f9xA9 .framer-w4apbr > :last-child, .framer-f9xA9 .framer-1qdbbz1 > :last-child, .framer-f9xA9 .framer-vw3y8o > :last-child, .framer-f9xA9 .framer-b5i0jv > :last-child, .framer-f9xA9 .framer-1u0zgmm > :last-child { margin-bottom: 0px; } .framer-f9xA9 .framer-1bo1841 > *, .framer-f9xA9 .framer-1kg6cre > *, .framer-f9xA9 .framer-w4apbr > *, .framer-f9xA9 .framer-1qdbbz1 > *, .framer-f9xA9 .framer-vw3y8o > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }}\",\"@media (max-width: 809px) { .framer-f9xA9.framer-72rtr7 { width: 390px; } .framer-f9xA9 .framer-njfasl { padding: 4px; } .framer-f9xA9 .framer-c22vdi-container { z-index: 10; } .framer-f9xA9 .framer-390ttu { flex-direction: column; height: min-content; padding: 148px 24px 48px 24px; } .framer-f9xA9 .framer-19u292r { flex: none; flex-direction: column; order: 0; width: 100%; } .framer-f9xA9 .framer-20ijw0 { flex: none; order: 0; padding: 0px; width: 100%; } .framer-f9xA9 .framer-9j0paa { align-content: flex-start; align-items: flex-start; flex-direction: column; justify-content: flex-start; width: 100%; } .framer-f9xA9 .framer-frl1k9 { flex: none; height: 250px; max-height: 250px; order: 1; width: 100%; } .framer-f9xA9 .framer-17wwqj7, .framer-f9xA9 .framer-6nwd98 { gap: 32px; padding: 64px 24px 64px 24px; } .framer-f9xA9 .framer-1x1lazm, .framer-f9xA9 .framer-dr6ikn-container, .framer-f9xA9 .framer-iz4af8, .framer-f9xA9 .framer-1s41kpm, .framer-f9xA9 .framer-1nbp2da, .framer-f9xA9 .framer-11ff5fu { order: 0; } .framer-f9xA9 .framer-yh5uoj, .framer-f9xA9 .framer-j4sg89, .framer-f9xA9 .framer-1x70cu4, .framer-f9xA9 .framer-9qc3p3 { flex-direction: column; order: 1; } .framer-f9xA9 .framer-1u470qi, .framer-f9xA9 .framer-ifywes { flex: none; width: 100%; } .framer-f9xA9 .framer-rv8ogi, .framer-f9xA9 .framer-1012nhi { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-f9xA9 .framer-jyg571-container { order: 1; } .framer-f9xA9 .framer-1kqgcbg, .framer-f9xA9 .framer-1qyyhtm, .framer-f9xA9 .framer-qg9bse { padding: 64px 24px 64px 24px; } .framer-f9xA9 .framer-b5i0jv, .framer-f9xA9 .framer-1u0zgmm { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-f9xA9 .framer-2l6j1y { height: 250px; } .framer-f9xA9 .framer-cjxbuq { flex-direction: column; order: 2; } .framer-f9xA9 .framer-v31lin { height: 250px; order: 1; } .framer-f9xA9 .framer-6pnwdb { flex: none; order: 0; width: 100%; } .framer-f9xA9 .framer-l40283, .framer-f9xA9 .framer-iljhkb, .framer-f9xA9 .framer-1dtq69c { flex: none; height: min-content; padding: 24px; width: 100%; } .framer-f9xA9 .framer-73ij4c-container { order: 2; } .framer-f9xA9 .framer-1pj1i3d { justify-content: flex-start; width: 100%; } .framer-f9xA9 .framer-13i4iny, .framer-f9xA9 .framer-1acbexp { align-content: center; align-items: center; } .framer-f9xA9 .framer-1n7ijht { width: 100%; } .framer-f9xA9 .framer-1vstbz5 { order: 2; width: 100%; } .framer-f9xA9 .framer-1w5zks5-container { height: var(--framer-aspect-ratio-supported, 23px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-f9xA9 .framer-390ttu, .framer-f9xA9 .framer-19u292r, .framer-f9xA9 .framer-9j0paa, .framer-f9xA9 .framer-17wwqj7, .framer-f9xA9 .framer-yh5uoj, .framer-f9xA9 .framer-j4sg89, .framer-f9xA9 .framer-b5i0jv, .framer-f9xA9 .framer-cjxbuq, .framer-f9xA9 .framer-1u0zgmm, .framer-f9xA9 .framer-1x70cu4, .framer-f9xA9 .framer-9qc3p3, .framer-f9xA9 .framer-6nwd98 { gap: 0px; } .framer-f9xA9 .framer-390ttu > *, .framer-f9xA9 .framer-j4sg89 > *, .framer-f9xA9 .framer-cjxbuq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-f9xA9 .framer-390ttu > :first-child, .framer-f9xA9 .framer-19u292r > :first-child, .framer-f9xA9 .framer-9j0paa > :first-child, .framer-f9xA9 .framer-17wwqj7 > :first-child, .framer-f9xA9 .framer-yh5uoj > :first-child, .framer-f9xA9 .framer-j4sg89 > :first-child, .framer-f9xA9 .framer-b5i0jv > :first-child, .framer-f9xA9 .framer-cjxbuq > :first-child, .framer-f9xA9 .framer-1u0zgmm > :first-child, .framer-f9xA9 .framer-1x70cu4 > :first-child, .framer-f9xA9 .framer-9qc3p3 > :first-child, .framer-f9xA9 .framer-6nwd98 > :first-child { margin-top: 0px; } .framer-f9xA9 .framer-390ttu > :last-child, .framer-f9xA9 .framer-19u292r > :last-child, .framer-f9xA9 .framer-9j0paa > :last-child, .framer-f9xA9 .framer-17wwqj7 > :last-child, .framer-f9xA9 .framer-yh5uoj > :last-child, .framer-f9xA9 .framer-j4sg89 > :last-child, .framer-f9xA9 .framer-b5i0jv > :last-child, .framer-f9xA9 .framer-cjxbuq > :last-child, .framer-f9xA9 .framer-1u0zgmm > :last-child, .framer-f9xA9 .framer-1x70cu4 > :last-child, .framer-f9xA9 .framer-9qc3p3 > :last-child, .framer-f9xA9 .framer-6nwd98 > :last-child { margin-bottom: 0px; } .framer-f9xA9 .framer-19u292r > *, .framer-f9xA9 .framer-17wwqj7 > *, .framer-f9xA9 .framer-9qc3p3 > *, .framer-f9xA9 .framer-6nwd98 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-f9xA9 .framer-9j0paa > *, .framer-f9xA9 .framer-b5i0jv > *, .framer-f9xA9 .framer-1u0zgmm > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-f9xA9 .framer-yh5uoj > *, .framer-f9xA9 .framer-1x70cu4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5867\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WQdutADZe\":{\"layout\":[\"fixed\",\"auto\"]},\"PRO0q76QC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-f9xA9\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5867,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:\"Maven Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mavenpro/v39/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nWpozp5GvU.woff2\",weight:\"400\"},{family:\"Maven Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mavenpro/v39/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nWpozp5GvU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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:\"Maven Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mavenpro/v39/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nWpozp5GvU.woff2\",weight:\"700\"}]},...TickerFonts,...NavigationFonts,...ButtonPrimaryButtonFonts,...ButtonSecondaryButtonFonts,...PhosphorFonts,...ButtonSecondaryButton1Fonts,...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\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"5867\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WQdutADZe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PRO0q76QC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"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", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "o", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "i", "s", "__rest", "inView$1", "o", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "buttonText", "height", "id", "link", "newTab", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "j0mNTb6PM", "K5nLJw0fN", "aYuLphz8e", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "Link", "css", "Framersh8lruwYX", "withCSS", "sh8lruwYX_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "TickerFonts", "getFonts", "Ticker", "NavigationFonts", "ynhTjklrA_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "ButtonPrimaryButtonFonts", "otG9lNEMb_default", "ButtonSecondaryButtonFonts", "sh8lruwYX_default", "PhosphorFonts", "Icon", "MotionDivWithOptimizedAppearEffect", "motion", "ImageWithOptimizedAppearEffect", "Image2", "ContainerWithFX", "withFX", "ButtonSecondaryButton1Fonts", "MotionDivWithFX", "ImageWithFX", "FooterFonts", "CIXzqiWRu_default", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "animation2", "animation3", "animation4", "transition2", "transition3", "animation5", "transition4", "animation6", "transition5", "animation7", "transition6", "animation8", "transition7", "animation9", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "usePreloadLocalizedValues", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "Ticker", "SVG", "RichText2", "getLocalizedValue", "x", "ContainerWithOptimizedAppearEffect", "PropertyOverrides2", "ynhTjklrA_default", "MotionDivWithOptimizedAppearEffect", "otG9lNEMb_default", "sh8lruwYX_default", "Icon", "Link", "getLoadingLazyAtYPosition", "ImageWithOptimizedAppearEffect", "MotionDivWithFX", "ContainerWithFX", "ResolveLinks", "resolvedLinks", "Image2", "resolvedLinks1", "resolvedLinks2", "ImageWithFX", "CIXzqiWRu_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "TickerFonts", "NavigationFonts", "ButtonPrimaryButtonFonts", "ButtonSecondaryButtonFonts", "PhosphorFonts", "ButtonSecondaryButton1Fonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
