{
  "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/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/toxkdrClNgj6b1vxSzLI/ZEWXc2IQBMeyo8B5ujAR/K40ZiXIdL.js", "ssg:https://framerusercontent.com/modules/wd1hJxcL4PLYoTWxiod2/gxSzrY8j9nE0kGUD7ghp/xfPEBK2Fl.js", "ssg:https://framerusercontent.com/modules/7pSKZ0uyJKWoq3Xh8DP9/yiOS0CJP3MwTPJsZW22s/iklqDIljU.js", "ssg:https://framerusercontent.com/modules/a5yHe8yMyLNoFfZ8egOT/mgOZaYYknyiBjkwsO3kS/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})},index+\"-original\");});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:isLayerTooBig===true?\"auto\":\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsWaapi){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (03f754e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/9gvZ6Lqbyv0jUnYMT58f/YDlhEc5z6oTm6hqxOY5k/dBSEMs8GW.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2f5lVozF7Atz9NhFeg6i/OmPoabfIvfzeE8xME6qK/n8m9a8jsR.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/9FNy3DZTVjDpn06ydT8N/moLsaKRg2wGgOAWrewE2/nHO_E4Ni3.js\";const cycleOrder=[\"E1R80GZAC\",\"Z8fMHOmnt\"];const serializationHash=\"framer-HqVcv\";const variantClassNames={E1R80GZAC:\"framer-v-1a80zxs\",Z8fMHOmnt:\"framer-v-6ro726\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"E1R80GZAC\",Phone:\"Z8fMHOmnt\"};const getProps=({click,height,id,name1,photo,position,review,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,B6XBOLyUh:(_ref=position!==null&&position!==void 0?position:props.B6XBOLyUh)!==null&&_ref!==void 0?_ref:\"Position\",j98ElHpb_:(_ref1=name1!==null&&name1!==void 0?name1:props.j98ElHpb_)!==null&&_ref1!==void 0?_ref1:\"Name\",qVmw8f0qM:(_ref2=review!==null&&review!==void 0?review:props.qVmw8f0qM)!==null&&_ref2!==void 0?_ref2:\"Learn how we helped [Client Name 1] improve their online visibility and organic search rankings, resulting in a significant increase in website traffic and leads.\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"E1R80GZAC\",XhGbbqqJg:click!==null&&click!==void 0?click:props.XhGbbqqJg,zCAGgPZ6Q:photo!==null&&photo!==void 0?photo:props.zCAGgPZ6Q};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,zCAGgPZ6Q,j98ElHpb_,B6XBOLyUh,qVmw8f0qM,XhGbbqqJg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"E1R80GZAC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ioxh6d=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(XhGbbqqJg){const res=await XhGbbqqJg(...args);if(res===false)return false;}});const ref1=React.useRef(null);const textContent=suffix(prefix(qVmw8f0qM,'\" '),' \"');const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1a80zxs\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"E1R80GZAC\",onTap:onTap1ioxh6d,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cffbc4dd-945d-46a6-b15f-2621b8e04a4c, rgb(204, 204, 204))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-1d91f208-7805-4222-ae08-59ccae5f3308, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({Z8fMHOmnt:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8m6tzu\",\"data-framer-name\":\"Description\",layoutDependency:layoutDependency,layoutId:\"Wfmd1Eavo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19924uj\",\"data-styles-preset\":\"n8m9a8jsR\",children:'\" Learn how we helped [Client Name 1] improve their online visibility and organic search rankings, resulting in a significant increase in website traffic and leads. \"'})}),className:\"framer-1tebl2w\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OS6eO74ih\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3szhgg\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"ReiWFZztb\",style:{background:\"linear-gradient(90deg, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 0.4) 49.96269299696719%, rgba(60, 60, 60, 0) 100%, rgba(51, 51, 51, 0) 100%)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f6uopp\",layoutDependency:layoutDependency,layoutId:\"TMXqzljkB\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+160+42),sizes:\"56px\",...toResponsiveImage(zCAGgPZ6Q)},className:\"framer-arcfoh\",layoutDependency:layoutDependency,layoutId:\"eZ2jnHQJc\",style:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},...addPropertyOverrides({Z8fMHOmnt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+159+42),sizes:\"56px\",...toResponsiveImage(zCAGgPZ6Q)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mofu7e\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"ZO3Yiey61\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1jech11\",\"data-styles-preset\":\"nHO_E4Ni3\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(15, 7, 110)))\"},children:\"Name\"})}),className:\"framer-1o9ci4v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DS4Uh0dYc\",style:{\"--extracted-1eung3n\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(15, 7, 110))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:j98ElHpb_,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-v0u5qt\",\"data-styles-preset\":\"dBSEMs8GW\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8777ae80-c4f1-47ee-858c-fd77ec902345, rgb(33, 16, 162)))\"},children:\"Position\"})}),className:\"framer-1cfogxx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JETJFrXVD\",style:{\"--extracted-r6o4lv\":\"var(--token-8777ae80-c4f1-47ee-858c-fd77ec902345, rgb(33, 16, 162))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:B6XBOLyUh,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HqVcv.framer-1elmnee, .framer-HqVcv .framer-1elmnee { display: block; }\",\".framer-HqVcv.framer-1a80zxs { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 430px; }\",\".framer-HqVcv .framer-8m6tzu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 127px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HqVcv .framer-1tebl2w { 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-HqVcv .framer-3szhgg { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-HqVcv .framer-f6uopp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HqVcv .framer-arcfoh { flex: none; height: 56px; overflow: hidden; position: relative; width: 56px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HqVcv .framer-1mofu7e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HqVcv .framer-1o9ci4v, .framer-HqVcv .framer-1cfogxx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HqVcv.framer-1a80zxs, .framer-HqVcv .framer-8m6tzu, .framer-HqVcv .framer-f6uopp, .framer-HqVcv .framer-1mofu7e { gap: 0px; } .framer-HqVcv.framer-1a80zxs > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-HqVcv.framer-1a80zxs > :first-child, .framer-HqVcv .framer-1mofu7e > :first-child { margin-top: 0px; } .framer-HqVcv.framer-1a80zxs > :last-child, .framer-HqVcv .framer-1mofu7e > :last-child { margin-bottom: 0px; } .framer-HqVcv .framer-8m6tzu > *, .framer-HqVcv .framer-f6uopp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HqVcv .framer-8m6tzu > :first-child, .framer-HqVcv .framer-f6uopp > :first-child { margin-left: 0px; } .framer-HqVcv .framer-8m6tzu > :last-child, .framer-HqVcv .framer-f6uopp > :last-child { margin-right: 0px; } .framer-HqVcv .framer-1mofu7e > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-HqVcv.framer-v-6ro726 .framer-8m6tzu { height: min-content; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-HqVcv[data-border=\"true\"]::after, .framer-HqVcv [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 276\n * @framerIntrinsicWidth 430\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Z8fMHOmnt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zCAGgPZ6Q\":\"photo\",\"j98ElHpb_\":\"name1\",\"B6XBOLyUh\":\"position\",\"qVmw8f0qM\":\"review\",\"XhGbbqqJg\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerK40ZiXIdL=withCSS(Component,css,\"framer-HqVcv\");export default FramerK40ZiXIdL;FramerK40ZiXIdL.displayName=\"Cards/Testimonial\";FramerK40ZiXIdL.defaultProps={height:276,width:430};addPropertyControls(FramerK40ZiXIdL,{variant:{options:[\"E1R80GZAC\",\"Z8fMHOmnt\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},zCAGgPZ6Q:{title:\"Photo\",type:ControlType.ResponsiveImage},j98ElHpb_:{defaultValue:\"Name\",displayTextArea:false,title:\"Name\",type:ControlType.String},B6XBOLyUh:{defaultValue:\"Position\",displayTextArea:false,title:\"Position\",type:ControlType.String},qVmw8f0qM:{defaultValue:\"Learn how we helped [Client Name 1] improve their online visibility and organic search rankings, resulting in a significant increase in website traffic and leads.\",displayTextArea:true,title:\"Review\",type:ControlType.String},XhGbbqqJg:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerK40ZiXIdL,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerK40ZiXIdL\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z8fMHOmnt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"zCAGgPZ6Q\\\":\\\"photo\\\",\\\"j98ElHpb_\\\":\\\"name1\\\",\\\"B6XBOLyUh\\\":\\\"position\\\",\\\"qVmw8f0qM\\\":\\\"review\\\",\\\"XhGbbqqJg\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"430\",\"framerIntrinsicHeight\":\"276\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./K40ZiXIdL.map", "// Generated by Framer (03f754e)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getPropertyControls,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import CardsTestimonial from\"https://framerusercontent.com/modules/toxkdrClNgj6b1vxSzLI/ZEWXc2IQBMeyo8B5ujAR/K40ZiXIdL.js\";const CardsTestimonialFonts=getFonts(CardsTestimonial);const MotionDivWithFX=withFX(motion.div);const TickerFonts=getFonts(Ticker);const CardsTestimonialControls=getPropertyControls(CardsTestimonial);const serializationHash=\"framer-NED1V\";const variantClassNames={lK6p4KmA7:\"framer-v-18p2ytq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Desktop:\"E1R80GZAC\",Phone:\"Z8fMHOmnt\"};const getProps=({height,id,speed,variant1,width,...props})=>{var _humanReadableEnumMap_variant1,_ref,_ref1,_ref2;return{...props,MRSqe636U:(_ref1=(_ref=(_humanReadableEnumMap_variant1=humanReadableEnumMap[variant1])!==null&&_humanReadableEnumMap_variant1!==void 0?_humanReadableEnumMap_variant1:variant1)!==null&&_ref!==void 0?_ref:props.MRSqe636U)!==null&&_ref1!==void 0?_ref1:\"E1R80GZAC\",PkPUeVI0G:(_ref2=speed!==null&&speed!==void 0?speed:props.PkPUeVI0G)!==null&&_ref2!==void 0?_ref2:60};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,MRSqe636U,PkPUeVI0G,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"lK6p4KmA7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const XhGbbqqJgizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-18p2ytq\",className,classNames),\"data-framer-name\":\"Desktop/Tablet\",layoutDependency:layoutDependency,layoutId:\"lK6p4KmA7\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1907oww-container\",layoutDependency:layoutDependency,layoutId:\"SII1RgtCk-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:true},gap:40,height:\"100%\",hoverFactor:1,id:\"SII1RgtCk\",layoutId:\"SII1RgtCk\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:269,width:\"430px\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j3nu1o-container\",id:`${layoutId}-1j3nu1o`,layoutDependency:layoutDependency,layoutId:\"eshhdhXN5-container\",ref:ref2,children:[/*#__PURE__*/_jsx(CardsTestimonial,{B6XBOLyUh:\"Chief Underwriting Officer\",height:\"100%\",id:\"eshhdhXN5\",j98ElHpb_:\"David Wilson\",layoutId:\"eshhdhXN5\",qVmw8f0qM:'One of the toughest parts of underwriting is balancing speed with accuracy. If we can get risk assessments done faster without sacrificing quality, it\u2019s a win for everyone\u2014carriers, brokers, and insureds.\"',style:{width:\"100%\"},variant:MRSqe636U,width:\"100%\",XhGbbqqJg:XhGbbqqJgizu9gt({overlay}),zCAGgPZ6Q:addImageAlt({src:\"https://framerusercontent.com/images/Wu3jIIXne7CD8oB2WuVqxx1Wfk.jpg\",srcSet:\"https://framerusercontent.com/images/Wu3jIIXne7CD8oB2WuVqxx1Wfk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Wu3jIIXne7CD8oB2WuVqxx1Wfk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wu3jIIXne7CD8oB2WuVqxx1Wfk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Wu3jIIXne7CD8oB2WuVqxx1Wfk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Wu3jIIXne7CD8oB2WuVqxx1Wfk.jpg 5760w\"},\"\")}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1j3nu1o`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1pad1et\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"DfyOr9ciB\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"}})})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:269,width:\"430px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17pc22q-container\",layoutDependency:layoutDependency,layoutId:\"sxtyt9JYu-container\",children:/*#__PURE__*/_jsx(CardsTestimonial,{B6XBOLyUh:\"Insurance Broker\",height:\"100%\",id:\"sxtyt9JYu\",j98ElHpb_:\"Emily Johnson\",layoutId:\"sxtyt9JYu\",qVmw8f0qM:\"When I\u2019m trying to place a tricky D&O risk, what matters most is a quick turnaround and clear communication. It\u2019s frustrating when submissions get stuck in limbo for days.\",style:{width:\"100%\"},variant:MRSqe636U,width:\"100%\",zCAGgPZ6Q:addImageAlt({src:\"https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg\",srcSet:\"https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg 3840w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:269,width:\"430px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8nr0fc-container\",layoutDependency:layoutDependency,layoutId:\"dPXOwdHnH-container\",children:/*#__PURE__*/_jsx(CardsTestimonial,{B6XBOLyUh:\"Underwriting Manager\",height:\"100%\",id:\"dPXOwdHnH\",j98ElHpb_:\"Michael Lee\",layoutId:\"dPXOwdHnH\",qVmw8f0qM:\"We always talk about managing capacity effectively, but it really comes down to having partners who understand the risks and don\u2019t overcomplicate things. Simplicity and focus make a huge difference.\",style:{width:\"100%\"},variant:MRSqe636U,width:\"100%\",zCAGgPZ6Q:addImageAlt({src:\"https://framerusercontent.com/images/I2khQu9IkXd26IjTYjBHzDZuYJc.jpg\",srcSet:\"https://framerusercontent.com/images/I2khQu9IkXd26IjTYjBHzDZuYJc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/I2khQu9IkXd26IjTYjBHzDZuYJc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/I2khQu9IkXd26IjTYjBHzDZuYJc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/I2khQu9IkXd26IjTYjBHzDZuYJc.jpg 2800w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:269,width:\"430px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-176m004-container\",layoutDependency:layoutDependency,layoutId:\"szrNgHLRb-container\",children:/*#__PURE__*/_jsx(CardsTestimonial,{B6XBOLyUh:\"VP, Underwriting \",height:\"100%\",id:\"szrNgHLRb\",j98ElHpb_:\"Sarah Davis\",layoutId:\"szrNgHLRb\",qVmw8f0qM:\"AI and the insurance industry are moving faster than ever, and underwriting has to keep up. Partners that help streamline the process are no longer optional\u2014they\u2019re essential.\",style:{width:\"100%\"},variant:MRSqe636U,width:\"100%\",zCAGgPZ6Q:addImageAlt({src:\"https://framerusercontent.com/images/uYe9qk5JG7PTnUtG6mTP81oEvw.jpg\",srcSet:\"https://framerusercontent.com/images/uYe9qk5JG7PTnUtG6mTP81oEvw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/uYe9qk5JG7PTnUtG6mTP81oEvw.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/uYe9qk5JG7PTnUtG6mTP81oEvw.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/uYe9qk5JG7PTnUtG6mTP81oEvw.jpg 3648w\"},\"\")})})})],speed:PkPUeVI0G,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NED1V.framer-6q14zj, .framer-NED1V .framer-6q14zj { display: block; }\",\".framer-NED1V.framer-18p2ytq { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1040px; }\",\".framer-NED1V .framer-1907oww-container { flex: 1 0 0px; height: 340px; position: relative; width: 1px; }\",\".framer-NED1V .framer-1j3nu1o-container, .framer-NED1V .framer-17pc22q-container, .framer-NED1V .framer-8nr0fc-container, .framer-NED1V .framer-176m004-container { height: auto; position: relative; width: 430px; }\",\".framer-NED1V .framer-1pad1et { height: 150px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NED1V.framer-18p2ytq { gap: 0px; } .framer-NED1V.framer-18p2ytq > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-NED1V.framer-18p2ytq > :first-child { margin-left: 0px; } .framer-NED1V.framer-18p2ytq > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 340\n * @framerIntrinsicWidth 1040\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"MRSqe636U\":\"variant1\",\"PkPUeVI0G\":\"speed\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxfPEBK2Fl=withCSS(Component,css,\"framer-NED1V\");export default FramerxfPEBK2Fl;FramerxfPEBK2Fl.displayName=\"Ticker/Testimonials\";FramerxfPEBK2Fl.defaultProps={height:340,width:1040};addPropertyControls(FramerxfPEBK2Fl,{MRSqe636U:(CardsTestimonialControls===null||CardsTestimonialControls===void 0?void 0:CardsTestimonialControls[\"variant\"])&&{...CardsTestimonialControls[\"variant\"],defaultValue:\"E1R80GZAC\",description:undefined,hidden:undefined,title:\"Variant\"},PkPUeVI0G:{defaultValue:60,displayStepper:true,max:1e3,min:0,step:5,title:\"Speed\",type:ControlType.Number}});addFonts(FramerxfPEBK2Fl,[{explicitInter:true,fonts:[]},...CardsTestimonialFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxfPEBK2Fl\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"MRSqe636U\\\":\\\"variant1\\\",\\\"PkPUeVI0G\\\":\\\"speed\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"340\",\"framerIntrinsicWidth\":\"1040\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (03f754e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;General Sans-semibold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K46YRH762FH3QJ25IQM3VAXAKCHEXXW4/ISLWQPUZHZF33LRIOTBMFOJL57GBGQ4B/3ZLMEXZEQPLTEPMHTQDAUXP5ZZXCZAEN.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-YFM2B .framer-styles-preset-16gduub:not(.rich-text-wrapper), .framer-YFM2B .framer-styles-preset-16gduub.rich-text-wrapper h2 { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-b3847e52-e763-4ced-bc7c-bcb137102331, #121212); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-YFM2B\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Footer from\"#framer/local/canvasComponent/AHB3_miZ9/AHB3_miZ9.js\";import CardsArticle from\"#framer/local/canvasComponent/bJQHgMBLu/bJQHgMBLu.js\";import CardsService from\"#framer/local/canvasComponent/g5zM_NEgq/g5zM_NEgq.js\";import ReadyToLearnMore from\"#framer/local/canvasComponent/Jwv0Pd270/Jwv0Pd270.js\";import ButtonsPrimary from\"#framer/local/canvasComponent/LEeyfbf9c/LEeyfbf9c.js\";import Tag from\"#framer/local/canvasComponent/plJOvHhyB/plJOvHhyB.js\";import ButtonsSecondary from\"#framer/local/canvasComponent/PoMBd2KGv/PoMBd2KGv.js\";import NavigationNavBar from\"#framer/local/canvasComponent/S25xecKi1/S25xecKi1.js\";import TickerTestimonials from\"#framer/local/canvasComponent/xfPEBK2Fl/xfPEBK2Fl.js\";import Service from\"#framer/local/collection/gYkWarOWb/gYkWarOWb.js\";import Article from\"#framer/local/collection/SrzsuS2fg/SrzsuS2fg.js\";import*as sharedStyle6 from\"#framer/local/css/CoL54pwTX/CoL54pwTX.js\";import*as sharedStyle5 from\"#framer/local/css/dBSEMs8GW/dBSEMs8GW.js\";import*as sharedStyle2 from\"#framer/local/css/iklqDIljU/iklqDIljU.js\";import*as sharedStyle1 from\"#framer/local/css/n8m9a8jsR/n8m9a8jsR.js\";import*as sharedStyle4 from\"#framer/local/css/nHO_E4Ni3/nHO_E4Ni3.js\";import*as sharedStyle3 from\"#framer/local/css/NQHXAf690/NQHXAf690.js\";import*as sharedStyle from\"#framer/local/css/TNbziC3fW/TNbziC3fW.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationNavBarFonts=getFonts(NavigationNavBar);const ContainerWithFX=withFX(Container);const TagFonts=getFonts(Tag);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const ButtonsPrimaryFonts=getFonts(ButtonsPrimary);const ButtonsSecondaryFonts=getFonts(ButtonsSecondary);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const CardsServiceFonts=getFonts(CardsService);const ImageWithFX=withFX(Image);const TickerTestimonialsFonts=getFonts(TickerTestimonials);const CardsArticleFonts=getFonts(CardsArticle);const ReadyToLearnMoreFonts=getFonts(ReadyToLearnMore);const FooterFonts=getFonts(Footer);const breakpoints={o2dBR60f8:\"(max-width: 809px)\",vdS6Jddrc:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-NXa6D\";const variantClassNames={o2dBR60f8:\"framer-v-1met7xx\",vdS6Jddrc:\"framer-v-1y9bm58\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-64};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition2={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:150};const transition3={damping:30,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:150};const transition4={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:150};const transition5={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:100};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition6={damping:60,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:100};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:150,y:0};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"o2dBR60f8\",Tablet:\"vdS6Jddrc\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,i_LhUy6CZuGGnqfA2M,sN3ifLj1CuGGnqfA2M,ZeS1tuRwpuGGnqfA2M,vIMPiVwq9uGGnqfA2M,iduGGnqfA2M,Sm5hdDn9vAvbqmcoi6,tOtDfVi0pAvbqmcoi6,UFBvnsPSHAvbqmcoi6,RvPSVDbW2Avbqmcoi6,haERBpXwRAvbqmcoi6,idAvbqmcoi6,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-NXa6D`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-NXa6D`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"vdS6Jddrc\")return true;return false;};const router=useRouter();const activeLocaleCode=useLocaleCode();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__styleAppearEffectEnabled:undefined},vdS6Jddrc:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kdxca4-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{variant:\"C5nKfgCxP\"},vdS6Jddrc:{variant:\"C5nKfgCxP\"}},children:/*#__PURE__*/_jsx(NavigationNavBar,{height:\"100%\",id:\"WYQDbjK90\",layoutId:\"WYQDbjK90\",style:{width:\"100%\"},variant:\"j_Dq4xABF\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vdS6Jddrc:{height:64,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vdS6Jddrc:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cbsiij-container hidden-72rtr7 hidden-1met7xx\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vdS6Jddrc:{variant:\"C5nKfgCxP\"}},children:/*#__PURE__*/_jsx(NavigationNavBar,{height:\"100%\",id:\"fr5lxF5Bf\",layoutId:\"fr5lxF5Bf\",style:{width:\"100%\"},variant:\"j_Dq4xABF\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-lznhvu\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r63pp4\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3fu8v4\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-53sn4d\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{y:120.00000000000003},vdS6Jddrc:{y:140}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-143hckz-container\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"s0x4kDTj5\",layoutId:\"s0x4kDTj5\",MIpvlNuPg:\"Brokers get transparent quotes faster with InsureLab\",vVr7WadUp:\"var(--token-384d9968-8b6c-46c0-b3f4-cdef392c0599, rgb(217, 232, 255))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1r0ch07\",\"data-styles-preset\":\"TNbziC3fW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(23, 37, 99))\"},children:[\"Specialty Insurance \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e6d3a56e-e7ef-4639-bfbb-e041c62c73d2, rgb(34, 147, 241))\"},children:\"Reimagined\"})]})}),className:\"framer-z1j42z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19924uj\",\"data-styles-preset\":\"n8m9a8jsR\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3847e52-e763-4ced-bc7c-bcb137102331, rgb(51, 51, 51))\"},children:\"InsureLab is an AI-powered MGA specializing in D&O insurance. We underwrite, price, and bind policies for carriers, using AI to deliver faster decisions and boost profitability\"})}),className:\"framer-1a7o33h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d0fwyg\",\"data-framer-name\":\"CTA\",name:\"CTA\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tCUVMSyjY\"},implicitPathVariables:undefined},{href:{webPageId:\"tCUVMSyjY\"},implicitPathVariables:undefined},{href:{webPageId:\"tCUVMSyjY\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{width:\"min(min(min(100vw - 40px, 1440px), 1200px), 300px)\",y:420.20000000000005},vdS6Jddrc:{y:440.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"220px\",y:480.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y49mea-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{lyzCQQnoq:resolvedLinks[2]},vdS6Jddrc:{lyzCQQnoq:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonsPrimary,{height:\"100%\",id:\"zwnd3dzaS\",layoutId:\"zwnd3dzaS\",lyzCQQnoq:resolvedLinks[0],style:{height:\"100%\",width:\"100%\"},wEELC0aoa:\"Join Waitlist\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tCUVMSyjY\"},implicitPathVariables:undefined},{href:{webPageId:\"tCUVMSyjY\"},implicitPathVariables:undefined},{href:{webPageId:\"tCUVMSyjY\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{width:\"min(min(min(100vw - 40px, 1440px), 1200px), 300px)\",y:488.20000000000005},vdS6Jddrc:{y:440.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"220px\",y:480.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qwt6ov-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{jSfVF0Fcf:resolvedLinks1[2]},vdS6Jddrc:{jSfVF0Fcf:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonsSecondary,{height:\"100%\",id:\"R_pnhSyCv\",jSfVF0Fcf:resolvedLinks1[0],layoutId:\"R_pnhSyCv\",lthgLZlls:\"Contact Us\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1awsdad\",\"data-framer-appear-id\":\"1awsdad\",\"data-framer-name\":\"Background\",initial:animation6,name:\"Background\",optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vdS6Jddrc:{background:{alt:\"\",backgroundSize:.8,fit:\"tile\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(-22),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"top\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=512 512w,https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.8,fit:\"tile\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(0),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"top\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=512 512w,https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png 1080w\"},className:\"framer-1ccrgit\",\"data-framer-name\":\"Pattern\",name:\"Pattern\"})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1kca07k\",\"data-framer-name\":\"Trusted by\",name:\"Trusted by\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ohka42\",\"data-framer-name\":\"Line\",name:\"Line\"})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-12nj5eh\",\"data-framer-name\":\"About us\",name:\"About us\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1row8tk\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1of8f23\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hts0f9\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{y:761.2},vdS6Jddrc:{y:723.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:763.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18iai6n-container\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"lBM_olknO\",layoutId:\"lBM_olknO\",MIpvlNuPg:\"Is this for you?\",vVr7WadUp:\"var(--token-384d9968-8b6c-46c0-b3f4-cdef392c0599, rgb(217, 232, 255))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16gduub\",\"data-styles-preset\":\"iklqDIljU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(15, 7, 110))\"},children:\"Who needs D&O coverage?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16gduub\",\"data-styles-preset\":\"iklqDIljU\",style:{\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(15, 7, 110))\"},children:\"Who needs D&O coverage?\"})}),className:\"framer-11pw6nu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19924uj\",\"data-styles-preset\":\"n8m9a8jsR\",style:{\"--framer-text-alignment\":\"center\"},children:\"It\u2019s a common myth that only public companies need D&O coverage. In reality, businesses of all types\u2014public, private, or non-profit\u2014face litigation risks.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19924uj\",\"data-styles-preset\":\"n8m9a8jsR\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"D&O insurance is essential for:\"})}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-19924uj\",\"data-styles-preset\":\"n8m9a8jsR\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"Businesses with corporate boards or advisory committees.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"Startups and small businesses with fewer assets, which may be more vulnerable to lawsuits.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"Non-profit organizations that rely on volunteer leadership.\"})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19924uj\",\"data-styles-preset\":\"n8m9a8jsR\",style:{\"--framer-text-alignment\":\"center\"},children:\"Even without posting multi-million-dollar revenues, your company and its leadership can still face costly legal challenges. Protecting your directors, officers, and your company is not just smart\u2014it\u2019s critical.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19924uj\",\"data-styles-preset\":\"n8m9a8jsR\",children:\"It\u2019s a common myth that only public companies need D&O coverage. In reality, businesses of all types\u2014public, private, or non-profit\u2014face litigation risks.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19924uj\",\"data-styles-preset\":\"n8m9a8jsR\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"D&O insurance is essential for:\"})}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-19924uj\",\"data-styles-preset\":\"n8m9a8jsR\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Businesses with corporate boards or advisory committees.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Startups and small businesses with fewer assets, which may be more vulnerable to lawsuits.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Non-profit organizations that rely on volunteer leadership.\"})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19924uj\",\"data-styles-preset\":\"n8m9a8jsR\",children:\"Even without posting multi-million-dollar revenues, your company and its leadership can still face costly legal challenges. Protecting your directors, officers, and your company is not just smart\u2014it\u2019s critical.\"})]}),className:\"framer-12c8n7t\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vw0w33\",\"data-framer-name\":\"CTA\",name:\"CTA\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"whmkv48AU\"},implicitPathVariables:undefined},{href:{webPageId:\"whmkv48AU\"},implicitPathVariables:undefined},{href:{webPageId:\"whmkv48AU\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{width:\"max(min(min(100vw - 40px, 1200px), 300px), 1px)\",y:1762.6},vdS6Jddrc:{y:1724.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"190px\",y:1764.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tcg9e4-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{jSfVF0Fcf:resolvedLinks2[2]},vdS6Jddrc:{jSfVF0Fcf:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonsSecondary,{height:\"100%\",id:\"Scr8VMqBc\",jSfVF0Fcf:resolvedLinks2[0],layoutId:\"Scr8VMqBc\",lthgLZlls:\"Learn More\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(1894.6000000000001),pixelHeight:6336,pixelWidth:9504,src:\"https://framerusercontent.com/images/tFRlXQyUZh2unEJZYoPOtHFn4D4.jpg?scale-down-to=2048\"}},vdS6Jddrc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(1069.9),pixelHeight:6336,pixelWidth:9504,src:\"https://framerusercontent.com/images/tFRlXQyUZh2unEJZYoPOtHFn4D4.jpg?scale-down-to=2048\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(1109.9),pixelHeight:6336,pixelWidth:9504,src:\"https://framerusercontent.com/images/tFRlXQyUZh2unEJZYoPOtHFn4D4.jpg?scale-down-to=2048\"},className:\"framer-qg4krp\",\"data-border\":true,\"data-framer-name\":\"Image\",name:\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{background:{alt:\"\",backgroundSize:.7,fit:\"tile\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(1874.6000000000001),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"top\",sizes:\"calc(min(100vw - 40px, 1200px) + 40px)\",src:\"https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=512 512w,https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png 1080w\"}},vdS6Jddrc:{background:{alt:\"\",backgroundSize:.7,fit:\"tile\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(1049.9),pixelHeight:1080,pixelWidth:1080,positionX:\"right\",positionY:\"top\",sizes:\"calc(max((min(100vw - 80px, 1200px) - 40px) / 2, 1px) - 131px)\",src:\"https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=512 512w,https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.7,fit:\"tile\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(1069.9),pixelHeight:1080,pixelWidth:1080,positionX:\"right\",positionY:\"top\",sizes:\"calc(max((min(100vw - 160px, 1200px) - 80px) / 2, 1px) - 121px)\",src:\"https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=512 512w,https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png 1080w\"},className:\"framer-nnh2cz\",\"data-framer-name\":\"BG\",name:\"BG\"})})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1mvu17\",\"data-framer-name\":\"Services\",name:\"Services\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{background:{alt:\"\",backgroundSize:.7,fit:\"tile\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(2374.6000000000004),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png 1080w\"}},vdS6Jddrc:{background:{alt:\"\",backgroundSize:.7,fit:\"tile\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(1874.6000000000001),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.7,fit:\"tile\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(1936.6000000000001),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png 1080w\"},className:\"framer-1gzqd8q\",\"data-framer-name\":\"BG pattern\",name:\"BG pattern\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rqetve\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ve3dj9\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s407ra\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{y:2454.6000000000004},vdS6Jddrc:{y:2016.6000000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:2056.6000000000004,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dhv4xh-container\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"j40Z6dFqA\",layoutId:\"j40Z6dFqA\",MIpvlNuPg:\"Our Approach\",vVr7WadUp:\"var(--token-1d91f208-7805-4222-ae08-59ccae5f3308, rgb(255, 255, 255))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1szk490\",\"data-styles-preset\":\"NQHXAf690\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(23, 37, 99))\"},children:\"How we assess D&O Risks\"})}),className:\"framer-ex4kfb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m4t1ru\",\"data-framer-name\":\"Services\",name:\"Services\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-103mpc3\",\"data-framer-name\":\"Service list\",name:\"Service list\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"uGGnqfA2M\",data:Service,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"uGGnqfA2M\",name:\"i_LhUy6CZ\",type:\"Identifier\"},{collection:\"uGGnqfA2M\",name:\"sN3ifLj1C\",type:\"Identifier\"},{collection:\"uGGnqfA2M\",name:\"ZeS1tuRwp\",type:\"Identifier\"},{collection:\"uGGnqfA2M\",name:\"vIMPiVwq9\",type:\"Identifier\"},{collection:\"uGGnqfA2M\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"i_LhUy6CZ\":i_LhUy6CZuGGnqfA2M,\"sN3ifLj1C\":sN3ifLj1CuGGnqfA2M,\"ZeS1tuRwp\":ZeS1tuRwpuGGnqfA2M,\"vIMPiVwq9\":vIMPiVwq9uGGnqfA2M,\"id\":iduGGnqfA2M},i)=>{sN3ifLj1CuGGnqfA2M!==null&&sN3ifLj1CuGGnqfA2M!==void 0?sN3ifLj1CuGGnqfA2M:sN3ifLj1CuGGnqfA2M=\"\";ZeS1tuRwpuGGnqfA2M!==null&&ZeS1tuRwpuGGnqfA2M!==void 0?ZeS1tuRwpuGGnqfA2M:ZeS1tuRwpuGGnqfA2M=\"\";vIMPiVwq9uGGnqfA2M!==null&&vIMPiVwq9uGGnqfA2M!==void 0?vIMPiVwq9uGGnqfA2M:vIMPiVwq9uGGnqfA2M=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`uGGnqfA2M-${iduGGnqfA2M}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{vIMPiVwq9:vIMPiVwq9uGGnqfA2M},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{vIMPiVwq9:vIMPiVwq9uGGnqfA2M},webPageId:\"T9ilvJN60\"},implicitPathVariables:undefined},{href:{pathVariables:{vIMPiVwq9:vIMPiVwq9uGGnqfA2M},webPageId:\"T9ilvJN60\"},implicitPathVariables:undefined},{href:{pathVariables:{vIMPiVwq9:vIMPiVwq9uGGnqfA2M},webPageId:\"T9ilvJN60\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{width:\"calc(min(max(min(100vw - 40px, 1440px), 1px), 600px) - 32px)\",y:3269.2000000000003},vdS6Jddrc:{width:\"min(max(min(100vw - 80px, 1440px), 1px), 600px)\",y:2891.2000000000003}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:170,width:\"max((min(max(min(100vw - 160px, 1440px), 1px), 1200px) - 60px) / 2, 200px)\",y:2241.2000000000003,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kf7azg-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{N2qJHoe9P:resolvedLinks3[2],variant:\"IzELyd3op\"},vdS6Jddrc:{N2qJHoe9P:resolvedLinks3[1],variant:\"IzELyd3op\"}},children:/*#__PURE__*/_jsx(CardsService,{height:\"100%\",id:\"W0y4vMlli\",layoutId:\"W0y4vMlli\",N2qJHoe9P:resolvedLinks3[0],style:{width:\"100%\"},UmXrnzS_c:sN3ifLj1CuGGnqfA2M,variant:\"sY1NmspvF\",width:\"100%\",Y4OBfEcvj:ZeS1tuRwpuGGnqfA2M,zc4P9eRBG:toResponsiveImage(i_LhUy6CZuGGnqfA2M)})})})})})})})})},iduGGnqfA2M);})})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12ypeds\",\"data-framer-name\":\"CTA\",name:\"CTA\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uqNiZHRRG\"},implicitPathVariables:undefined},{href:{webPageId:\"uqNiZHRRG\"},implicitPathVariables:undefined},{href:{webPageId:\"uqNiZHRRG\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{y:3499.2000000000003},vdS6Jddrc:{y:3121.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"220px\",y:2701.2000000000003,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l3ludm-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{jSfVF0Fcf:resolvedLinks4[2]},vdS6Jddrc:{jSfVF0Fcf:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(ButtonsSecondary,{height:\"100%\",id:\"miOORUXTZ\",jSfVF0Fcf:resolvedLinks4[0],layoutId:\"miOORUXTZ\",lthgLZlls:\"View Details\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-c3r71n\",\"data-framer-name\":\"Why us\",name:\"Why us\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cuhqjf\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-chyhhs\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__threshold:0}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yd8wx1\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{y:3711.2000000000003},vdS6Jddrc:{y:3413.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:2993.2000000000003,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mrinvf-container\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"mAcBNZ88S\",layoutId:\"mAcBNZ88S\",MIpvlNuPg:\"Why choose us\",vVr7WadUp:\"var(--token-384d9968-8b6c-46c0-b3f4-cdef392c0599, rgb(217, 232, 255))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1szk490\",\"data-styles-preset\":\"NQHXAf690\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(15, 7, 110))\"},children:\"Why InsureLab?\"})})},vdS6Jddrc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1szk490\",\"data-styles-preset\":\"NQHXAf690\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(15, 7, 110))\"},children:\"Why InsureLab?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1szk490\",\"data-styles-preset\":\"NQHXAf690\",style:{\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(15, 7, 110))\"},children:\"Why InsureLab?\"})}),className:\"framer-1rpj73d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__threshold:0,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19924uj\",\"data-styles-preset\":\"n8m9a8jsR\",style:{\"--framer-text-alignment\":\"center\"},children:\"InsureLab is transforming how brokers and carriers approach niche insurance lines like Directors and Officers (D&O). Here\u2019s why we\u2019re different:\"})})},vdS6Jddrc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19924uj\",\"data-styles-preset\":\"n8m9a8jsR\",style:{\"--framer-text-alignment\":\"center\"},children:\"InsureLab is transforming how brokers and carriers approach niche insurance lines like Directors and Officers (D&O). Here\u2019s why we\u2019re different:\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19924uj\",\"data-styles-preset\":\"n8m9a8jsR\",children:\"InsureLab is transforming how brokers and carriers approach niche insurance lines like Directors and Officers (D&O). Here\u2019s why we\u2019re different:\"})}),className:\"framer-139f2oi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-11gtqx3\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1s6du03\",\"data-border\":true,\"data-framer-name\":\"Feature card\",name:\"Feature card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1jech11\",\"data-styles-preset\":\"nHO_E4Ni3\",style:{\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(15, 7, 110))\"},children:\"AI-Powered Precision\"})}),className:\"framer-1kx8mvf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-v0u5qt\",\"data-styles-preset\":\"dBSEMs8GW\",children:\"Our advanced AI technology streamlines underwriting by automating manual tasks, enhancing risk selection, and delivering faster, more reliable quotes.\"})}),className:\"framer-n7f0xr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19oitii\",\"data-border\":true,\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1080h90\",\"data-styles-preset\":\"CoL54pwTX\",style:{\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(23, 37, 99))\"},children:\"1\"})}),className:\"framer-1q96pxo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12fcf9l\",\"data-border\":true,\"data-framer-name\":\"Feature card\",name:\"Feature card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1jech11\",\"data-styles-preset\":\"nHO_E4Ni3\",style:{\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(15, 7, 110))\"},children:\"Tailored for Brokers\"})}),className:\"framer-iwdieh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-v0u5qt\",\"data-styles-preset\":\"dBSEMs8GW\",children:\"We design our processes with brokers in mind, offering fast quotes and accessible coverage options that help you serve your clients more efficiently and win more business\"})}),className:\"framer-dbicg5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15hxuya\",\"data-border\":true,\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1080h90\",\"data-styles-preset\":\"CoL54pwTX\",style:{\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(23, 37, 99))\"},children:\"2\"})}),className:\"framer-r9aph9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12s904k\",\"data-border\":true,\"data-framer-name\":\"Feature card\",name:\"Feature card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1jech11\",\"data-styles-preset\":\"nHO_E4Ni3\",style:{\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(15, 7, 110))\"},children:\"Transparent Communication\"})}),className:\"framer-1ec8a73\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-v0u5qt\",\"data-styles-preset\":\"dBSEMs8GW\",children:\"Say goodbye to black boxes. We prioritize clear, open communication, providing real-time updates and ensuring brokers always know where they stand in the process.\"})}),className:\"framer-1jvaz2f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c2rpwb\",\"data-border\":true,\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1080h90\",\"data-styles-preset\":\"CoL54pwTX\",style:{\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(23, 37, 99))\"},children:\"3\"})}),className:\"framer-r8wx3j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hw92pu\",\"data-border\":true,\"data-framer-name\":\"Feature card\",name:\"Feature card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1jech11\",\"data-styles-preset\":\"nHO_E4Ni3\",style:{\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(15, 7, 110))\"},children:\"Expertise\"})}),className:\"framer-ty53pj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-v0u5qt\",\"data-styles-preset\":\"dBSEMs8GW\",children:\"We focus on specialized lines like D&O insurance, combining deep industry knowledge with AI-driven insights to deliver smarter, more profitable solutions for all stakeholders.\"})}),className:\"framer-v3hwf8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zkm3c5\",\"data-border\":true,\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1080h90\",\"data-styles-preset\":\"CoL54pwTX\",style:{\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(23, 37, 99))\"},children:\"4\"})}),className:\"framer-5833dy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__animate:{transition:transition2},__framer__enter:animation1,__framer__exit:animation2,__framer__threshold:0,background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(4889.8),pixelHeight:5184,pixelWidth:3456,src:\"https://framerusercontent.com/images/735ASxXJZ66hDeWCnBf2qMH2k.jpg?scale-down-to=2048\"}},vdS6Jddrc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(4591.799999999999),pixelHeight:5184,pixelWidth:3456,src:\"https://framerusercontent.com/images/735ASxXJZ66hDeWCnBf2qMH2k.jpg?scale-down-to=2048\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(2993.2000000000003),pixelHeight:5184,pixelWidth:3456,src:\"https://framerusercontent.com/images/735ASxXJZ66hDeWCnBf2qMH2k.jpg?scale-down-to=2048\"},className:\"framer-1i57g3k\",\"data-border\":true,\"data-framer-name\":\"Image\",name:\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{background:{alt:\"\",backgroundSize:.7,fit:\"tile\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(4869.8),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"top\",sizes:\"calc(min(100vw - 40px, 1200px) + 40px)\",src:\"https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=512 512w,https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png 1080w\"}},vdS6Jddrc:{background:{alt:\"\",backgroundSize:.7,fit:\"tile\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(4567.799999999999),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"top\",sizes:\"calc(min(100vw - 80px, 1200px) + 54px)\",src:\"https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=512 512w,https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.7,fit:\"tile\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(2953.2000000000003),pixelHeight:1080,pixelWidth:1080,positionX:\"right\",positionY:\"top\",sizes:\"calc(max((min(100vw - 160px, 1200px) - 80px) / 2, 1px) - 110px)\",src:\"https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=512 512w,https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kox9lsvnJSqLG7RLUVtKMGLTAc.png 1080w\"},className:\"framer-1rf0h1l\",\"data-framer-name\":\"BG\",name:\"BG\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jg0bc5\",\"data-framer-name\":\"CTA\",name:\"CTA\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hzeZ7OtOR\"},implicitPathVariables:undefined},{href:{webPageId:\"hzeZ7OtOR\"},implicitPathVariables:undefined},{href:{webPageId:\"hzeZ7OtOR\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{width:\"min(100vw - 40px, 300px)\",y:5330.8},vdS6Jddrc:{y:5112.799999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"190px\",y:4124.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oxc5u3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{jSfVF0Fcf:resolvedLinks5[2]},vdS6Jddrc:{jSfVF0Fcf:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(ButtonsSecondary,{height:\"100%\",id:\"xYHRLL28p\",jSfVF0Fcf:resolvedLinks5[0],layoutId:\"xYHRLL28p\",lthgLZlls:\"About Us\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1gxzplk\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1almztr\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10ndp69\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18s2cs1\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{y:5542.8},vdS6Jddrc:{y:5384.799999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:4396.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ws206f-container\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"K1HMpUJg9\",layoutId:\"K1HMpUJg9\",MIpvlNuPg:\"Research\",vVr7WadUp:\"var(--token-1d91f208-7805-4222-ae08-59ccae5f3308, rgb(255, 255, 255))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1szk490\",\"data-styles-preset\":\"NQHXAf690\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(15, 7, 110))\"},children:\"Hear what Brokers & Underwriters are saying\"})}),className:\"framer-1lwqse7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aqj1s0\",\"data-framer-name\":\"Reviews\",name:\"Reviews\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{width:\"min(100vw - 40px, 1200px)\",y:5652.400000000001},vdS6Jddrc:{width:\"min(100vw - 80px, 1200px)\",y:5529.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:340,width:\"min(100vw - 160px, 1200px)\",y:4541.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1btlfqp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{MRSqe636U:\"Z8fMHOmnt\",PkPUeVI0G:70}},children:/*#__PURE__*/_jsx(TickerTestimonials,{height:\"100%\",id:\"yF6dXDEYU\",layoutId:\"yF6dXDEYU\",MRSqe636U:\"E1R80GZAC\",PkPUeVI0G:60,style:{width:\"100%\"},width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-p48pvo\",\"data-framer-name\":\"Blog\",name:\"Blog\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jl1qec\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ej8vuf\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-35k3b7\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{y:6152.400000000001},vdS6Jddrc:{y:6068.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:5080.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ub09sd-container\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"HIBTCORJY\",layoutId:\"HIBTCORJY\",MIpvlNuPg:\"Blog\",vVr7WadUp:\"var(--token-384d9968-8b6c-46c0-b3f4-cdef392c0599, rgb(217, 232, 255))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1szk490\",\"data-styles-preset\":\"NQHXAf690\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, rgb(15, 7, 110))\"},children:\"Explore our latest articles\"})}),className:\"framer-k4rf5t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-12zm7fn\",\"data-framer-name\":\"Article list\",name:\"Article list\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Avbqmcoi6\",data:Article,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"Avbqmcoi6\",name:\"Sm5hdDn9v\",type:\"Identifier\"},{collection:\"Avbqmcoi6\",name:\"tOtDfVi0p\",type:\"Identifier\"},{collection:\"Avbqmcoi6\",name:\"UFBvnsPSH\",type:\"Identifier\"},{collection:\"Avbqmcoi6\",name:\"RvPSVDbW2\",type:\"Identifier\"},{collection:\"Avbqmcoi6\",name:\"haERBpXwR\",type:\"Identifier\"},{collection:\"Avbqmcoi6\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"Sm5hdDn9v\":Sm5hdDn9vAvbqmcoi6,\"tOtDfVi0p\":tOtDfVi0pAvbqmcoi6,\"UFBvnsPSH\":UFBvnsPSHAvbqmcoi6,\"RvPSVDbW2\":RvPSVDbW2Avbqmcoi6,\"haERBpXwR\":haERBpXwRAvbqmcoi6,\"id\":idAvbqmcoi6},i)=>{tOtDfVi0pAvbqmcoi6!==null&&tOtDfVi0pAvbqmcoi6!==void 0?tOtDfVi0pAvbqmcoi6:tOtDfVi0pAvbqmcoi6=\"\";RvPSVDbW2Avbqmcoi6!==null&&RvPSVDbW2Avbqmcoi6!==void 0?RvPSVDbW2Avbqmcoi6:RvPSVDbW2Avbqmcoi6=\"\";haERBpXwRAvbqmcoi6!==null&&haERBpXwRAvbqmcoi6!==void 0?haERBpXwRAvbqmcoi6:haERBpXwRAvbqmcoi6=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Avbqmcoi6-${idAvbqmcoi6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{haERBpXwR:haERBpXwRAvbqmcoi6},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{haERBpXwR:haERBpXwRAvbqmcoi6},webPageId:\"mSfr6QWzN\"},implicitPathVariables:undefined},{href:{pathVariables:{haERBpXwR:haERBpXwRAvbqmcoi6},webPageId:\"mSfr6QWzN\"},implicitPathVariables:undefined},{href:{pathVariables:{haERBpXwR:haERBpXwRAvbqmcoi6},webPageId:\"mSfr6QWzN\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{width:\"min(100vw - 40px, 500px)\",y:6898.000000000001},vdS6Jddrc:{width:\"max((min(100vw - 80px, 1200px) - 20px) / 2, 200px)\",y:6233}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:541,width:\"max((min(100vw - 160px, 1200px) - 40px) / 2, 200px)\",y:5245.000000000001,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1d11wib-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{variant:\"Nybm0M44U\",ZwQlLBjpE:resolvedLinks6[2]},vdS6Jddrc:{variant:\"Nybm0M44U\",ZwQlLBjpE:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(CardsArticle,{B7FF1dUSI:RvPSVDbW2Avbqmcoi6,height:\"100%\",id:\"EFLtjU_q0\",KrVnUspUi:toResponsiveImage(Sm5hdDn9vAvbqmcoi6),layoutId:\"EFLtjU_q0\",style:{width:\"100%\"},tFPPTtbDK:toDateString(UFBvnsPSHAvbqmcoi6,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),variant:\"ic8jOJ0Mu\",width:\"100%\",YfqnwHBSg:tOtDfVi0pAvbqmcoi6,ZwQlLBjpE:resolvedLinks6[0]})})})})})})})})},idAvbqmcoi6);})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kk8y67\",\"data-framer-name\":\"CTA\",name:\"CTA\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"whmkv48AU\"},implicitPathVariables:undefined},{href:{webPageId:\"whmkv48AU\"},implicitPathVariables:undefined},{href:{webPageId:\"whmkv48AU\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{y:7499},vdS6Jddrc:{y:7395}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"220px\",y:6427,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ingt2b-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{jSfVF0Fcf:resolvedLinks7[2]},vdS6Jddrc:{jSfVF0Fcf:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(ButtonsSecondary,{height:\"100%\",id:\"bO3_It4e7\",jSfVF0Fcf:resolvedLinks7[0],layoutId:\"bO3_It4e7\",lthgLZlls:\"View all articles\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{background:{alt:\"\",backgroundSize:.7,fit:\"tile\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(6072.400000000001),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png 1080w\"}},vdS6Jddrc:{background:{alt:\"\",backgroundSize:.7,fit:\"tile\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(5967.4),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.7,fit:\"tile\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(5001.400000000001),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dABKVWVQf83cdaqynXPadptgpA.png 1080w\"},className:\"framer-1us3qcs\",\"data-framer-name\":\"BG pattern\",name:\"BG pattern\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{y:7631},vdS6Jddrc:{y:7526}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:\"100vw\",y:6558,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m0rbue-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{variant:\"Gu1OYM58S\"},vdS6Jddrc:{variant:\"wbgJrpEga\"}},children:/*#__PURE__*/_jsx(ReadyToLearnMore,{height:\"100%\",id:\"S1YXwYaxI\",layoutId:\"S1YXwYaxI\",style:{width:\"100%\"},variant:\"jUDkHD1xp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{y:8142},vdS6Jddrc:{y:8037}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"100vw\",y:7069,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15uualu-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o2dBR60f8:{variant:\"RFaJlKAIc\"},vdS6Jddrc:{variant:\"x7l18yEe1\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"ZlRRB_FDv\",layoutId:\"ZlRRB_FDv\",style:{width:\"100%\"},variant:\"k6GGX3Xy_\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-NXa6D { background: var(--token-1d91f208-7805-4222-ae08-59ccae5f3308, rgb(242, 243, 255)); }`,\".framer-NXa6D.framer-lux5qc, .framer-NXa6D .framer-lux5qc { display: block; }\",\".framer-NXa6D.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-1d91f208-7805-4222-ae08-59ccae5f3308, #f2f3ff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-NXa6D .framer-1kdxca4-container, .framer-NXa6D .framer-cbsiij-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-NXa6D .framer-lznhvu { align-content: flex-start; align-items: flex-start; background-color: var(--token-1d91f208-7805-4222-ae08-59ccae5f3308, #fafaff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 180px 80px 140px 80px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-r63pp4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-NXa6D .framer-3fu8v4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-53sn4d, .framer-NXa6D .framer-1ej8vuf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-NXa6D .framer-143hckz-container, .framer-NXa6D .framer-18iai6n-container, .framer-NXa6D .framer-1dhv4xh-container, .framer-NXa6D .framer-mrinvf-container, .framer-NXa6D .framer-1ws206f-container, .framer-NXa6D .framer-ub09sd-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-NXa6D .framer-z1j42z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 900px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-NXa6D .framer-1a7o33h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 650px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NXa6D .framer-d0fwyg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-1y49mea-container, .framer-NXa6D .framer-1qwt6ov-container, .framer-NXa6D .framer-l3ludm-container, .framer-NXa6D .framer-ingt2b-container { flex: none; height: 52px; position: relative; width: 220px; }\",\".framer-NXa6D .framer-1awsdad { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-NXa6D .framer-1ccrgit { -webkit-mask: radial-gradient(46% 46% at 50% 47.199999999999996%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.03) 100%) add; bottom: 0px; flex: none; left: 0px; mask: radial-gradient(46% 46% at 50% 47.199999999999996%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.03) 100%) add; opacity: 0.3; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-NXa6D .framer-1kca07k { align-content: flex-start; align-items: flex-start; background-color: var(--token-1d91f208-7805-4222-ae08-59ccae5f3308, #fafafa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px 80px 10px 80px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-ohka42 { background: linear-gradient(90deg, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 0.4) 49.96269299696719%, rgba(60, 60, 60, 0) 100%, rgba(51, 51, 51, 0) 100%); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-NXa6D .framer-12nj5eh { align-content: center; align-items: center; background-color: var(--token-1d91f208-7805-4222-ae08-59ccae5f3308, #fafafa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-1row8tk, .framer-NXa6D .framer-1cuhqjf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-1of8f23 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NXa6D .framer-1hts0f9, .framer-NXa6D .framer-1yd8wx1 { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-11pw6nu, .framer-NXa6D .framer-12c8n7t, .framer-NXa6D .framer-1kx8mvf, .framer-NXa6D .framer-iwdieh, .framer-NXa6D .framer-1ec8a73, .framer-NXa6D .framer-ty53pj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NXa6D .framer-1vw0w33 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-1tcg9e4-container, .framer-NXa6D .framer-oxc5u3-container { flex: none; height: 52px; position: relative; width: 190px; }\",\".framer-NXa6D .framer-qg4krp { --border-bottom-width: 1px; --border-color: var(--token-cffbc4dd-945d-46a6-b15f-2621b8e04a4c, #cccccc); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 360px); overflow: visible; position: relative; width: 1px; z-index: 1; }\",\".framer-NXa6D .framer-nnh2cz { border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; bottom: -44px; flex: none; left: 171px; opacity: 0.15; overflow: hidden; position: absolute; right: -50px; top: -40px; will-change: var(--framer-will-change-override, transform); z-index: -1; }\",\".framer-NXa6D .framer-1mvu17, .framer-NXa6D .framer-1gxzplk { align-content: center; align-items: center; background-color: var(--token-384d9968-8b6c-46c0-b3f4-cdef392c0599, #d9e8ff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 120px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-1gzqd8q { -webkit-mask: radial-gradient(40% 42% at 50% 50%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%) add; border-bottom-left-radius: 429px; border-bottom-right-radius: 429px; border-top-left-radius: 429px; border-top-right-radius: 429px; bottom: 0px; flex: none; left: 0px; mask: radial-gradient(40% 42% at 50% 50%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%) add; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-NXa6D .framer-1rqetve { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-ve3dj9, .framer-NXa6D .framer-10ndp69 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-NXa6D .framer-1s407ra, .framer-NXa6D .framer-18s2cs1, .framer-NXa6D .framer-35k3b7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-ex4kfb, .framer-NXa6D .framer-1rpj73d, .framer-NXa6D .framer-1lwqse7, .framer-NXa6D .framer-k4rf5t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NXa6D .framer-1m4t1ru { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-103mpc3 { display: grid; flex: 1 0 0px; gap: 60px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NXa6D .framer-kf7azg-container, .framer-NXa6D .framer-1d11wib-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; z-index: 1; }\",\".framer-NXa6D .framer-12ypeds { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-c3r71n { align-content: center; align-items: center; background-color: var(--token-1d91f208-7805-4222-ae08-59ccae5f3308, #fafafa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 80px 100px 80px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-chyhhs { 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; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NXa6D .framer-139f2oi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NXa6D .framer-11gtqx3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 500px; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-1s6du03, .framer-NXa6D .framer-12fcf9l, .framer-NXa6D .framer-12s904k, .framer-NXa6D .framer-1hw92pu { --border-bottom-width: 1px; --border-color: var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, #172563); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-1d91f208-7805-4222-ae08-59ccae5f3308, #f2f3ff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 30px 20px 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-NXa6D .framer-n7f0xr, .framer-NXa6D .framer-dbicg5, .framer-NXa6D .framer-1jvaz2f, .framer-NXa6D .framer-v3hwf8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-NXa6D .framer-19oitii, .framer-NXa6D .framer-15hxuya, .framer-NXa6D .framer-c2rpwb, .framer-NXa6D .framer-zkm3c5 { --border-bottom-width: 1px; --border-color: var(--token-4c1aa7e2-d505-4777-a5b8-b18a207c5fc9, #172563); --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-1d91f208-7805-4222-ae08-59ccae5f3308, #f2f3ff); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 0px 0.6021873017743928px 1.3248120639036642px -1.3333333333333333px rgba(0, 0, 0, 0.19), 0px 2.288533303243457px 5.034773267135606px -2.6666666666666665px rgba(0, 0, 0, 0.16567), 0px 10px 22px -4px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; left: -20px; overflow: hidden; padding: 10px; position: absolute; top: calc(50.00000000000002% - 40px / 2); width: 40px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-NXa6D .framer-1q96pxo, .framer-NXa6D .framer-r9aph9, .framer-NXa6D .framer-r8wx3j, .framer-NXa6D .framer-5833dy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NXa6D .framer-1i57g3k { --border-bottom-width: 1px; --border-color: var(--token-cffbc4dd-945d-46a6-b15f-2621b8e04a4c, #cccccc); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-self: stretch; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: auto; min-height: 480px; overflow: visible; position: relative; width: 1px; z-index: 1; }\",\".framer-NXa6D .framer-1rf0h1l { border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; bottom: -47px; flex: none; left: 160px; opacity: 0.15; overflow: hidden; position: absolute; right: -50px; top: -40px; will-change: var(--framer-will-change-override, transform); z-index: -1; }\",\".framer-NXa6D .framer-jg0bc5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-1almztr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-1aqj1s0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-NXa6D .framer-1btlfqp-container, .framer-NXa6D .framer-1m0rbue-container, .framer-NXa6D .framer-15uualu-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-NXa6D .framer-p48pvo { align-content: center; align-items: center; background-color: var(--token-1d91f208-7805-4222-ae08-59ccae5f3308, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 79px 80px 79px 80px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-1jl1qec { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-12zm7fn { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: center; max-width: 1200px; padding: 0px; position: relative; width: 100%; }\",\".framer-NXa6D .framer-1kk8y67 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-NXa6D .framer-1us3qcs { -webkit-mask: radial-gradient(46% 50% at 50% 50%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%) add; border-bottom-left-radius: 429px; border-bottom-right-radius: 429px; border-top-left-radius: 429px; border-top-right-radius: 429px; bottom: 0px; flex: none; left: 0px; mask: radial-gradient(46% 50% at 50% 50%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%) add; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NXa6D.framer-72rtr7, .framer-NXa6D .framer-lznhvu, .framer-NXa6D .framer-r63pp4, .framer-NXa6D .framer-3fu8v4, .framer-NXa6D .framer-53sn4d, .framer-NXa6D .framer-d0fwyg, .framer-NXa6D .framer-1awsdad, .framer-NXa6D .framer-1kca07k, .framer-NXa6D .framer-12nj5eh, .framer-NXa6D .framer-1row8tk, .framer-NXa6D .framer-1of8f23, .framer-NXa6D .framer-1hts0f9, .framer-NXa6D .framer-1vw0w33, .framer-NXa6D .framer-1mvu17, .framer-NXa6D .framer-1rqetve, .framer-NXa6D .framer-ve3dj9, .framer-NXa6D .framer-1s407ra, .framer-NXa6D .framer-1m4t1ru, .framer-NXa6D .framer-12ypeds, .framer-NXa6D .framer-c3r71n, .framer-NXa6D .framer-1cuhqjf, .framer-NXa6D .framer-chyhhs, .framer-NXa6D .framer-1yd8wx1, .framer-NXa6D .framer-11gtqx3, .framer-NXa6D .framer-1s6du03, .framer-NXa6D .framer-19oitii, .framer-NXa6D .framer-12fcf9l, .framer-NXa6D .framer-15hxuya, .framer-NXa6D .framer-12s904k, .framer-NXa6D .framer-c2rpwb, .framer-NXa6D .framer-1hw92pu, .framer-NXa6D .framer-zkm3c5, .framer-NXa6D .framer-jg0bc5, .framer-NXa6D .framer-1gxzplk, .framer-NXa6D .framer-1almztr, .framer-NXa6D .framer-10ndp69, .framer-NXa6D .framer-18s2cs1, .framer-NXa6D .framer-1aqj1s0, .framer-NXa6D .framer-p48pvo, .framer-NXa6D .framer-1jl1qec, .framer-NXa6D .framer-1ej8vuf, .framer-NXa6D .framer-35k3b7, .framer-NXa6D .framer-1kk8y67 { gap: 0px; } .framer-NXa6D.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NXa6D.framer-72rtr7 > :first-child, .framer-NXa6D .framer-r63pp4 > :first-child, .framer-NXa6D .framer-3fu8v4 > :first-child, .framer-NXa6D .framer-53sn4d > :first-child, .framer-NXa6D .framer-1awsdad > :first-child, .framer-NXa6D .framer-1kca07k > :first-child, .framer-NXa6D .framer-12nj5eh > :first-child, .framer-NXa6D .framer-1of8f23 > :first-child, .framer-NXa6D .framer-1hts0f9 > :first-child, .framer-NXa6D .framer-1mvu17 > :first-child, .framer-NXa6D .framer-1rqetve > :first-child, .framer-NXa6D .framer-ve3dj9 > :first-child, .framer-NXa6D .framer-1s407ra > :first-child, .framer-NXa6D .framer-c3r71n > :first-child, .framer-NXa6D .framer-chyhhs > :first-child, .framer-NXa6D .framer-1yd8wx1 > :first-child, .framer-NXa6D .framer-11gtqx3 > :first-child, .framer-NXa6D .framer-1s6du03 > :first-child, .framer-NXa6D .framer-12fcf9l > :first-child, .framer-NXa6D .framer-12s904k > :first-child, .framer-NXa6D .framer-1hw92pu > :first-child, .framer-NXa6D .framer-jg0bc5 > :first-child, .framer-NXa6D .framer-1gxzplk > :first-child, .framer-NXa6D .framer-1almztr > :first-child, .framer-NXa6D .framer-10ndp69 > :first-child, .framer-NXa6D .framer-18s2cs1 > :first-child, .framer-NXa6D .framer-1aqj1s0 > :first-child, .framer-NXa6D .framer-p48pvo > :first-child, .framer-NXa6D .framer-1jl1qec > :first-child, .framer-NXa6D .framer-1ej8vuf > :first-child, .framer-NXa6D .framer-35k3b7 > :first-child { margin-top: 0px; } .framer-NXa6D.framer-72rtr7 > :last-child, .framer-NXa6D .framer-r63pp4 > :last-child, .framer-NXa6D .framer-3fu8v4 > :last-child, .framer-NXa6D .framer-53sn4d > :last-child, .framer-NXa6D .framer-1awsdad > :last-child, .framer-NXa6D .framer-1kca07k > :last-child, .framer-NXa6D .framer-12nj5eh > :last-child, .framer-NXa6D .framer-1of8f23 > :last-child, .framer-NXa6D .framer-1hts0f9 > :last-child, .framer-NXa6D .framer-1mvu17 > :last-child, .framer-NXa6D .framer-1rqetve > :last-child, .framer-NXa6D .framer-ve3dj9 > :last-child, .framer-NXa6D .framer-1s407ra > :last-child, .framer-NXa6D .framer-c3r71n > :last-child, .framer-NXa6D .framer-chyhhs > :last-child, .framer-NXa6D .framer-1yd8wx1 > :last-child, .framer-NXa6D .framer-11gtqx3 > :last-child, .framer-NXa6D .framer-1s6du03 > :last-child, .framer-NXa6D .framer-12fcf9l > :last-child, .framer-NXa6D .framer-12s904k > :last-child, .framer-NXa6D .framer-1hw92pu > :last-child, .framer-NXa6D .framer-jg0bc5 > :last-child, .framer-NXa6D .framer-1gxzplk > :last-child, .framer-NXa6D .framer-1almztr > :last-child, .framer-NXa6D .framer-10ndp69 > :last-child, .framer-NXa6D .framer-18s2cs1 > :last-child, .framer-NXa6D .framer-1aqj1s0 > :last-child, .framer-NXa6D .framer-p48pvo > :last-child, .framer-NXa6D .framer-1jl1qec > :last-child, .framer-NXa6D .framer-1ej8vuf > :last-child, .framer-NXa6D .framer-35k3b7 > :last-child { margin-bottom: 0px; } .framer-NXa6D .framer-lznhvu > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-NXa6D .framer-lznhvu > :first-child, .framer-NXa6D .framer-d0fwyg > :first-child, .framer-NXa6D .framer-1row8tk > :first-child, .framer-NXa6D .framer-1vw0w33 > :first-child, .framer-NXa6D .framer-1m4t1ru > :first-child, .framer-NXa6D .framer-12ypeds > :first-child, .framer-NXa6D .framer-1cuhqjf > :first-child, .framer-NXa6D .framer-19oitii > :first-child, .framer-NXa6D .framer-15hxuya > :first-child, .framer-NXa6D .framer-c2rpwb > :first-child, .framer-NXa6D .framer-zkm3c5 > :first-child, .framer-NXa6D .framer-1kk8y67 > :first-child { margin-left: 0px; } .framer-NXa6D .framer-lznhvu > :last-child, .framer-NXa6D .framer-d0fwyg > :last-child, .framer-NXa6D .framer-1row8tk > :last-child, .framer-NXa6D .framer-1vw0w33 > :last-child, .framer-NXa6D .framer-1m4t1ru > :last-child, .framer-NXa6D .framer-12ypeds > :last-child, .framer-NXa6D .framer-1cuhqjf > :last-child, .framer-NXa6D .framer-19oitii > :last-child, .framer-NXa6D .framer-15hxuya > :last-child, .framer-NXa6D .framer-c2rpwb > :last-child, .framer-NXa6D .framer-zkm3c5 > :last-child, .framer-NXa6D .framer-1kk8y67 > :last-child { margin-right: 0px; } .framer-NXa6D .framer-r63pp4 > *, .framer-NXa6D .framer-1rqetve > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-NXa6D .framer-3fu8v4 > *, .framer-NXa6D .framer-53sn4d > *, .framer-NXa6D .framer-1of8f23 > *, .framer-NXa6D .framer-1hts0f9 > *, .framer-NXa6D .framer-ve3dj9 > *, .framer-NXa6D .framer-1s407ra > *, .framer-NXa6D .framer-chyhhs > *, .framer-NXa6D .framer-1yd8wx1 > *, .framer-NXa6D .framer-jg0bc5 > *, .framer-NXa6D .framer-10ndp69 > *, .framer-NXa6D .framer-18s2cs1 > *, .framer-NXa6D .framer-1ej8vuf > *, .framer-NXa6D .framer-35k3b7 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-NXa6D .framer-d0fwyg > *, .framer-NXa6D .framer-1vw0w33 > *, .framer-NXa6D .framer-12ypeds > *, .framer-NXa6D .framer-1kk8y67 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-NXa6D .framer-1awsdad > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NXa6D .framer-1kca07k > *, .framer-NXa6D .framer-11gtqx3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-NXa6D .framer-12nj5eh > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-NXa6D .framer-1row8tk > *, .framer-NXa6D .framer-1cuhqjf > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-NXa6D .framer-1mvu17 > *, .framer-NXa6D .framer-1gxzplk > *, .framer-NXa6D .framer-p48pvo > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-NXa6D .framer-1m4t1ru > *, .framer-NXa6D .framer-19oitii > *, .framer-NXa6D .framer-15hxuya > *, .framer-NXa6D .framer-c2rpwb > *, .framer-NXa6D .framer-zkm3c5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NXa6D .framer-c3r71n > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-NXa6D .framer-1s6du03 > *, .framer-NXa6D .framer-12fcf9l > *, .framer-NXa6D .framer-12s904k > *, .framer-NXa6D .framer-1hw92pu > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-NXa6D .framer-1almztr > *, .framer-NXa6D .framer-1aqj1s0 > *, .framer-NXa6D .framer-1jl1qec > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-NXa6D { background: var(--token-1d91f208-7805-4222-ae08-59ccae5f3308, rgb(242, 243, 255)); } .framer-NXa6D.framer-72rtr7 { width: 810px; } .framer-NXa6D .framer-lznhvu { padding: 140px 40px 140px 40px; } .framer-NXa6D .framer-r63pp4 { gap: 120px; } .framer-NXa6D .framer-1ccrgit, .framer-NXa6D .framer-1gzqd8q, .framer-NXa6D .framer-1us3qcs { bottom: -23px; top: -22px; } .framer-NXa6D .framer-1kca07k { padding: 0px 40px 10px 40px; } .framer-NXa6D .framer-12nj5eh { padding: 80px 40px 120px 40px; } .framer-NXa6D .framer-1row8tk { gap: 40px; } .framer-NXa6D .framer-1of8f23 { order: 0; } .framer-NXa6D .framer-qg4krp { height: var(--framer-aspect-ratio-supported, 259px); order: 1; } .framer-NXa6D .framer-nnh2cz { bottom: -20px; left: 162px; right: -31px; top: -20px; } .framer-NXa6D .framer-1mvu17, .framer-NXa6D .framer-1gxzplk { padding: 120px 40px 120px 40px; } .framer-NXa6D .framer-103mpc3 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; max-width: 600px; } .framer-NXa6D .framer-kf7azg-container { align-self: unset; } .framer-NXa6D .framer-c3r71n { padding: 120px 40px 100px 40px; } .framer-NXa6D .framer-1cuhqjf { flex-direction: column; } .framer-NXa6D .framer-chyhhs { align-content: center; align-items: center; flex: none; width: 100%; } .framer-NXa6D .framer-11gtqx3 { padding: 40px 0px 0px 0px; } .framer-NXa6D .framer-1i57g3k { align-self: unset; aspect-ratio: 1.5208333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 480px); min-height: unset; width: 100%; } .framer-NXa6D .framer-1rf0h1l { bottom: 140px; left: -29px; right: -25px; top: -24px; } .framer-NXa6D .framer-p48pvo { padding: 79px 40px 79px 40px; } .framer-NXa6D .framer-12zm7fn { gap: 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NXa6D .framer-r63pp4, .framer-NXa6D .framer-1row8tk, .framer-NXa6D .framer-103mpc3, .framer-NXa6D .framer-1cuhqjf, .framer-NXa6D .framer-12zm7fn { gap: 0px; } .framer-NXa6D .framer-r63pp4 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-NXa6D .framer-r63pp4 > :first-child, .framer-NXa6D .framer-103mpc3 > :first-child, .framer-NXa6D .framer-1cuhqjf > :first-child { margin-top: 0px; } .framer-NXa6D .framer-r63pp4 > :last-child, .framer-NXa6D .framer-103mpc3 > :last-child, .framer-NXa6D .framer-1cuhqjf > :last-child { margin-bottom: 0px; } .framer-NXa6D .framer-1row8tk > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-NXa6D .framer-1row8tk > :first-child { margin-left: 0px; } .framer-NXa6D .framer-1row8tk > :last-child { margin-right: 0px; } .framer-NXa6D .framer-103mpc3 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-NXa6D .framer-1cuhqjf > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-NXa6D .framer-12zm7fn > *, .framer-NXa6D .framer-12zm7fn > :first-child, .framer-NXa6D .framer-12zm7fn > :last-child { margin: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-NXa6D { background: var(--token-1d91f208-7805-4222-ae08-59ccae5f3308, rgb(242, 243, 255)); } .framer-NXa6D.framer-72rtr7 { width: 390px; } .framer-NXa6D .framer-lznhvu { flex-direction: column; padding: 120px 20px 120px 20px; } .framer-NXa6D .framer-r63pp4 { flex: none; gap: 100px; width: 100%; } .framer-NXa6D .framer-d0fwyg { flex-direction: column; max-width: 300px; } .framer-NXa6D .framer-1y49mea-container, .framer-NXa6D .framer-1qwt6ov-container, .framer-NXa6D .framer-oxc5u3-container { width: 100%; } .framer-NXa6D .framer-1kca07k { padding: 0px 20px 20px 20px; } .framer-NXa6D .framer-12nj5eh { padding: 80px 20px 120px 20px; } .framer-NXa6D .framer-1row8tk, .framer-NXa6D .framer-1cuhqjf { flex-direction: column; } .framer-NXa6D .framer-1of8f23 { flex: none; order: 0; width: 100%; } .framer-NXa6D .framer-1hts0f9, .framer-NXa6D .framer-1yd8wx1 { align-content: center; align-items: center; } .framer-NXa6D .framer-1vw0w33, .framer-NXa6D .framer-jg0bc5 { justify-content: center; max-width: 300px; } .framer-NXa6D .framer-1tcg9e4-container { flex: 1 0 0px; width: 1px; } .framer-NXa6D .framer-qg4krp { flex: none; height: var(--framer-aspect-ratio-supported, 150px); order: 1; width: 100%; } .framer-NXa6D .framer-nnh2cz, .framer-NXa6D .framer-1rf0h1l { bottom: 30px; left: -20px; right: -20px; top: -20px; } .framer-NXa6D .framer-1mvu17, .framer-NXa6D .framer-c3r71n, .framer-NXa6D .framer-1gxzplk, .framer-NXa6D .framer-p48pvo { padding: 80px 20px 80px 20px; } .framer-NXa6D .framer-103mpc3 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; justify-content: flex-start; max-width: 600px; padding: 0px 16px 0px 16px; } .framer-NXa6D .framer-kf7azg-container, .framer-NXa6D .framer-1d11wib-container { align-self: unset; } .framer-NXa6D .framer-chyhhs { align-content: center; align-items: center; flex: none; width: 100%; } .framer-NXa6D .framer-11gtqx3 { padding: 40px 10px 0px 10px; } .framer-NXa6D .framer-1i57g3k { align-self: unset; aspect-ratio: 0.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 229px); min-height: unset; width: 100%; } .framer-NXa6D .framer-1almztr { gap: 5px; } .framer-NXa6D .framer-12zm7fn { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; max-width: 500px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NXa6D .framer-lznhvu, .framer-NXa6D .framer-r63pp4, .framer-NXa6D .framer-d0fwyg, .framer-NXa6D .framer-1row8tk, .framer-NXa6D .framer-103mpc3, .framer-NXa6D .framer-1cuhqjf, .framer-NXa6D .framer-1almztr, .framer-NXa6D .framer-12zm7fn { gap: 0px; } .framer-NXa6D .framer-lznhvu > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-NXa6D .framer-lznhvu > :first-child, .framer-NXa6D .framer-r63pp4 > :first-child, .framer-NXa6D .framer-d0fwyg > :first-child, .framer-NXa6D .framer-1row8tk > :first-child, .framer-NXa6D .framer-103mpc3 > :first-child, .framer-NXa6D .framer-1cuhqjf > :first-child, .framer-NXa6D .framer-1almztr > :first-child, .framer-NXa6D .framer-12zm7fn > :first-child { margin-top: 0px; } .framer-NXa6D .framer-lznhvu > :last-child, .framer-NXa6D .framer-r63pp4 > :last-child, .framer-NXa6D .framer-d0fwyg > :last-child, .framer-NXa6D .framer-1row8tk > :last-child, .framer-NXa6D .framer-103mpc3 > :last-child, .framer-NXa6D .framer-1cuhqjf > :last-child, .framer-NXa6D .framer-1almztr > :last-child, .framer-NXa6D .framer-12zm7fn > :last-child { margin-bottom: 0px; } .framer-NXa6D .framer-r63pp4 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-NXa6D .framer-d0fwyg > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-NXa6D .framer-1row8tk > *, .framer-NXa6D .framer-1cuhqjf > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-NXa6D .framer-103mpc3 > *, .framer-NXa6D .framer-12zm7fn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NXa6D .framer-1almztr > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-NXa6D[data-border=\"true\"]::after, .framer-NXa6D [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 6520\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vdS6Jddrc\":{\"layout\":[\"fixed\",\"auto\"]},\"o2dBR60f8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-NXa6D\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6520,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavigationNavBarFonts,...TagFonts,...ButtonsPrimaryFonts,...ButtonsSecondaryFonts,...CardsServiceFonts,...TickerTestimonialsFonts,...CardsArticleFonts,...ReadyToLearnMoreFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vdS6Jddrc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"o2dBR60f8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"6520\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "i", "h", "u", "d", "f", "l", "g", "glide", "a", "o", "c", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "createGeneratorEasing", "e", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "keyframes", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "prefix", "value", "suffix", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "name1", "photo", "position", "review", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "zCAGgPZ6Q", "j98ElHpb_", "B6XBOLyUh", "qVmw8f0qM", "XhGbbqqJg", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ioxh6d", "args", "ref1", "pe", "textContent", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerK40ZiXIdL", "withCSS", "K40ZiXIdL_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CardsTestimonialFonts", "getFonts", "K40ZiXIdL_default", "MotionDivWithFX", "withFX", "motion", "TickerFonts", "Ticker", "CardsTestimonialControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "addImageAlt", "image", "alt", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "height", "id", "speed", "variant1", "width", "props", "_humanReadableEnumMap_variant1", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "MRSqe636U", "PkPUeVI0G", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "XhGbbqqJgizu9gt", "overlay", "paginationInfo", "args", "ref1", "pe", "ref2", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Ticker", "l", "K40ZiXIdL_default", "AnimatePresence", "Floating", "MotionDivWithFX", "css", "FramerxfPEBK2Fl", "withCSS", "xfPEBK2Fl_default", "addPropertyControls", "CardsTestimonialControls", "ControlType", "addFonts", "CardsTestimonialFonts", "TickerFonts", "fontStore", "fonts", "css", "className", "NavigationNavBarFonts", "getFonts", "S25xecKi1_default", "ContainerWithFX", "withFX", "Container", "TagFonts", "plJOvHhyB_default", "MotionDivWithFX", "motion", "RichTextWithFX", "RichText2", "ButtonsPrimaryFonts", "LEeyfbf9c_default", "ButtonsSecondaryFonts", "PoMBd2KGv_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "CardsServiceFonts", "g5zM_NEgq_default", "ImageWithFX", "Image2", "TickerTestimonialsFonts", "xfPEBK2Fl_default", "CardsArticleFonts", "bJQHgMBLu_default", "ReadyToLearnMoreFonts", "Jwv0Pd270_default", "FooterFonts", "AHB3_miZ9_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "animation6", "animation7", "animation8", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition6", "animation9", "animation10", "animation11", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "i_LhUy6CZuGGnqfA2M", "sN3ifLj1CuGGnqfA2M", "ZeS1tuRwpuGGnqfA2M", "vIMPiVwq9uGGnqfA2M", "iduGGnqfA2M", "Sm5hdDn9vAvbqmcoi6", "tOtDfVi0pAvbqmcoi6", "UFBvnsPSHAvbqmcoi6", "RvPSVDbW2Avbqmcoi6", "haERBpXwRAvbqmcoi6", "idAvbqmcoi6", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "LayoutGroup", "cx", "ComponentViewportProvider", "PropertyOverrides2", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "getLoadingLazyAtYPosition", "resolvedLinks2", "ChildrenCanSuspend", "gYkWarOWb_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "SrzsuS2fg_default", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks6", "resolvedLinks7", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
