{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/o0RwNbuqRAiqaUCPtdHM/46sHY65iHtAZo4PprHL7/DCzAHRRZo.js", "ssg:https://framerusercontent.com/modules/ZNxBu7XWhE4tdUv8MOaO/Mqy5kfTqDqwibH1hYC7r/MKo6NvC0W.js", "ssg:https://framerusercontent.com/modules/Hzpcf3brGIhC03yQDhvq/Uyjeu192OsrXBsFDand2/oJYFKv7qs.js", "ssg:https://framerusercontent.com/modules/jVSHA716PZRpLpD8kvhN/Sil8r0iGoDSZxCHPWnKF/XnOj97bsd.js", "ssg:https://framer.com/m/UseCurrentLocation-coQY.js", "ssg:https://framerusercontent.com/modules/dhTcBaNSQgLz51USzvqA/kFke3Rc5rNjaUm6dsnl6/Email_form.js", "ssg:https://framerusercontent.com/modules/EtqBPrdyb71cHSDQl0hW/2YN7nWm5cv1L0waagG0m/NYOswpyFm.js", "ssg:https://framerusercontent.com/modules/ZUFyBOIAwAQg0c2BHPa9/MKkTNMQTOsKtmTeG4588/NYOswpyFm.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{isFunction as t,isCubicBezier as i,noopReturn as e,defaults as s,isEasingGenerator as a,isEasingList as n,interpolate as r}from\"@motionone/utils\";import{cubicBezier as h,steps as o}from\"@motionone/easing\";const l={ease:h(.25,.1,.25,1),\"ease-in\":h(.42,0,1,1),\"ease-in-out\":h(.42,0,.58,1),\"ease-out\":h(0,0,.58,1)};const u=/\\((.*?)\\)/;function getEasingFunction(s){if(t(s))return s;if(i(s))return h(...s);if(l[s])return l[s];if(s.startsWith(\"steps\")){const t=u.exec(s);if(t){const i=t[1].split(\",\");return o(parseFloat(i[0]),i[1].trim())}}return e}class Animation{constructor(t,i=[0,1],{easing:h,duration:o=s.duration,delay:l=s.delay,endDelay:u=s.endDelay,repeat:m=s.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=e;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));h=h||s.easing;if(a(h)){const t=h.createAnimation(i);h=t.easing;i=t.keyframes||i;o=t.duration||o}this.repeat=m;this.easing=n(h)?e:getEasingFunction(h);this.updateDuration(o);const d=r(i,c,n(h)?h.map(getEasingFunction):e);this.tick=i=>{var e;l=l;let s=0;s=void 0!==this.pauseTime?this.pauseTime:(i-this.startTime)*this.rate;this.t=s;s/=1e3;s=Math.max(s-l,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(s=this.totalDuration);const a=s/this.duration;let n=Math.floor(a);let r=a%1;!r&&a>=1&&(r=1);1===r&&n--;const h=n%2;(\"reverse\"===p||\"alternate\"===p&&h||\"alternate-reverse\"===p&&!h)&&(r=1-r);const o=s>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(o));t(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||s>=this.totalDuration+u);if(c){this.playState=\"finished\";null===(e=this.resolve)||void 0===e?void 0:e.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t,noopReturn as s}from\"@motionone/utils\";const n=5;function calcGeneratorVelocity(t,s,r){const a=Math.max(s-n,0);return e(r-t(a),s-a)}const r={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=r.stiffness,t=r.damping,s=r.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=r.stiffness,damping:s=r.damping,mass:n=r.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/n)/1e3;const l=calcDampingRatio(e,s,n);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const a=10;const o=1e4;function pregenerateKeyframes(e,t=s){let n;let r=a;let c=e(0);const i=[t(c.current)];while(!c.done&&r<o){c=e(r);i.push(t(c.done?c.target:c.current));void 0===n&&c.hasReachedTarget&&(n=r);r+=a}const h=r-a;1===i.length&&i.push(c.current);return{keyframes:i,duration:h/1e3,overshootDuration:(null!==n&&void 0!==n?n:h)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/pbNXGSw7aTdk2AjEfKjD/XBRRZQgoYjhI09aAeZKD/fwzmVp2eq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/pq35lrR4adHAS216LUcq/W5yMw7dBJb88YNarhYlK/FXg0Hqm4r.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={iOx1YdZMJ:{hover:true}};const serializationHash=\"framer-6QAj6\";const variantClassNames={iOx1YdZMJ:\"framer-v-1qnuihq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({caption,height,iconName,id,title,width,...props})=>{return{...props,iiwkwLqSJ:iconName??props.iiwkwLqSJ??\"FileDashed\",JrANoY6PD:caption??props.JrANoY6PD??\"Content is created using your data, crafted to meet requirements and address task areas.\",yp9eSYlys:title??props.yp9eSYlys??\"Opportunity Identification\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,yp9eSYlys,JrANoY6PD,iiwkwLqSJ,OhifK2oCP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"iOx1YdZMJ\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1qnuihq\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"iOx1YdZMJ\",ref:refBinding,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"iOx1YdZMJ-hover\":{backgroundColor:\"rgba(255, 255, 255, 0.08)\"}},...addPropertyOverrides({\"iOx1YdZMJ-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1491lkz\",layoutDependency:layoutDependency,layoutId:\"KWu8Rmibn\",style:{backgroundColor:\"rgba(255, 255, 255, 0.08)\",borderBottomLeftRadius:13,borderBottomRightRadius:13,borderTopLeftRadius:13,borderTopRightRadius:13,boxShadow:\"0px 1px 2px -0.5px rgba(0, 0, 0, 0.07999999821186066), inset 0px -0.5px 0px 0px rgba(0, 0, 0, 0.11999999731779099)\"},variants:{\"iOx1YdZMJ-hover\":{backgroundColor:\"rgb(255, 255, 255)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-d4iw5n-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"hy0mdTDQ7-container\",nodeId:\"hy0mdTDQ7\",rendersWithMotion:true,scopeId:\"DCzAHRRZo\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:iiwkwLqSJ,id:\"hy0mdTDQ7\",layoutId:\"hy0mdTDQ7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({\"iOx1YdZMJ-hover\":{color:\"var(--token-35b82200-fbfd-484d-8b16-b0e93ed869ae, rgb(5, 98, 255))\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-169y3m6\",layoutDependency:layoutDependency,layoutId:\"BmUXkE4qc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wury77\",\"data-styles-preset\":\"fwzmVp2eq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cee4896f-3566-44e7-8e37-d5145db036a6, rgb(255, 255, 255)))\"},children:\"Opportunity Identification\"})}),className:\"framer-1wvvzhw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zr7D7Ci4e\",style:{\"--extracted-r6o4lv\":\"var(--token-cee4896f-3566-44e7-8e37-d5145db036a6, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yp9eSYlys,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-q7dt8n\",\"data-styles-preset\":\"FXg0Hqm4r\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:\"Content is created using your data, crafted to meet requirements and address task areas.\"})}),className:\"framer-w2itcr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"w33lMOOuI\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:JrANoY6PD,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||143.5)-0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(OhifK2oCP)},className:\"framer-1tvlkc4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"RPve1s5QT\"})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6QAj6.framer-9b6os8, .framer-6QAj6 .framer-9b6os8 { display: block; }\",\".framer-6QAj6.framer-1qnuihq { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 540px; overflow: hidden; padding: 8px; position: relative; width: 316px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6QAj6 .framer-1491lkz { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 64px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6QAj6 .framer-d4iw5n-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-6QAj6 .framer-169y3m6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-6QAj6 .framer-1wvvzhw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6QAj6 .framer-w2itcr { flex: none; height: auto; max-width: 540px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6QAj6 .framer-1tvlkc4 { bottom: -274px; flex: none; height: 274px; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6QAj6.framer-1qnuihq, .framer-6QAj6 .framer-1491lkz, .framer-6QAj6 .framer-169y3m6 { gap: 0px; } .framer-6QAj6.framer-1qnuihq > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-6QAj6.framer-1qnuihq > :first-child { margin-left: 0px; } .framer-6QAj6.framer-1qnuihq > :last-child { margin-right: 0px; } .framer-6QAj6 .framer-1491lkz > *, .framer-6QAj6 .framer-169y3m6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6QAj6 .framer-1491lkz > :first-child, .framer-6QAj6 .framer-169y3m6 > :first-child { margin-top: 0px; } .framer-6QAj6 .framer-1491lkz > :last-child, .framer-6QAj6 .framer-169y3m6 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 143.5\n * @framerIntrinsicWidth 316\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"540px\",null,null]},\"OfKSLZR7N\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"540px\",null,null]}}}\n * @framerVariables {\"yp9eSYlys\":\"title\",\"JrANoY6PD\":\"caption\",\"iiwkwLqSJ\":\"iconName\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDCzAHRRZo=withCSS(Component,css,\"framer-6QAj6\");export default FramerDCzAHRRZo;FramerDCzAHRRZo.displayName=\"Feature card\";FramerDCzAHRRZo.defaultProps={height:143.5,width:316};addPropertyControls(FramerDCzAHRRZo,{yp9eSYlys:{defaultValue:\"Opportunity Identification\",displayTextArea:false,title:\"Title\",type:ControlType.String},JrANoY6PD:{defaultValue:\"Content is created using your data, crafted to meet requirements and address task areas.\",displayTextArea:false,title:\"Caption\",type:ControlType.String},iiwkwLqSJ:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"FileDashed\",description:undefined,hidden:undefined,title:\"Icon name\"}});addFonts(FramerDCzAHRRZo,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDCzAHRRZo\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"yp9eSYlys\\\":\\\"title\\\",\\\"JrANoY6PD\\\":\\\"caption\\\",\\\"iiwkwLqSJ\\\":\\\"iconName\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"316\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"143.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"540px\\\",null,null]},\\\"OfKSLZR7N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"540px\\\",null,null]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DCzAHRRZo.map", "// Generated by Framer (af3ebb8)\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{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/7SvxZaZ64n0kmyQgivvF/YemE1VvL65vvHop6fuKq/rSBH49oAL.js\";const cycleOrder=[\"v73nIgTrx\",\"thHYa7Ihb\",\"LtlBRiXpO\",\"lmxJ0deY3\"];const serializationHash=\"framer-GNDM4\";const variantClassNames={lmxJ0deY3:\"framer-v-1nr1o7x\",LtlBRiXpO:\"framer-v-1lwfwkq\",thHYa7Ihb:\"framer-v-izjil0\",v73nIgTrx:\"framer-v-1w0uwkk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile active\":\"LtlBRiXpO\",\"Mobile default\":\"lmxJ0deY3\",Active:\"v73nIgTrx\",Default:\"thHYa7Ihb\"};const getProps=({click,height,icon,id,text,width,...props})=>{return{...props,ELtDw7wZu:text??props.ELtDw7wZu??\"Identify Opportunities\",qeEFXaq9P:icon??props.qeEFXaq9P,variant:humanReadableVariantMap[props.variant]??props.variant??\"v73nIgTrx\",zFFAytg5H:click??props.zFFAytg5H};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,qeEFXaq9P,ELtDw7wZu,zFFAytg5H,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"v73nIgTrx\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap150bg8d=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(zFFAytg5H){const res=await zFFAytg5H(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1w0uwkk\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Active\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"v73nIgTrx\",onTap:onTap150bg8d,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(10, 10, 10, 0.07)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-cee4896f-3566-44e7-8e37-d5145db036a6, rgb(255, 255, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0px 0px 4px rgba(214, 225, 255, 1), 0px 0px 0px 1px rgba(0, 68, 255, 1)\",...style},variants:{lmxJ0deY3:{boxShadow:\"0px 1px 2px -0.5px rgba(0, 0, 0, 0.07999999821186066), inset 0px -0.5px 0px 0px rgba(0, 0, 0, 0.11999999731779099)\"},thHYa7Ihb:{boxShadow:\"0px 1px 2px -0.5px rgba(0, 0, 0, 0.07999999821186066), inset 0px -0.5px 0px 0px rgba(0, 0, 0, 0.11999999731779099)\"}},...addPropertyOverrides({lmxJ0deY3:{\"data-framer-name\":\"Mobile default\"},LtlBRiXpO:{\"data-framer-name\":\"Mobile active\"},thHYa7Ihb:{\"data-framer-name\":\"Default\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+8+(((componentViewport?.height||97)-16-148)/2+0+0)),sizes:\"54px\",...toResponsiveImage(qeEFXaq9P)},className:\"framer-t6y29x\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Q2w2w8d3t\",...addPropertyOverrides({lmxJ0deY3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(8+((componentViewport?.height||64)-16-24)/2)),sizes:\"48px\",...toResponsiveImage(qeEFXaq9P)}},LtlBRiXpO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(8+((componentViewport?.height||64)-16-24)/2)),sizes:\"48px\",...toResponsiveImage(qeEFXaq9P)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e7no3t\",\"data-styles-preset\":\"rSBH49oAL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35b82200-fbfd-484d-8b16-b0e93ed869ae, rgb(5, 98, 255)))\"},children:\"Identify Opportunities\"})}),className:\"framer-x11zgb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yAc4KGHgb\",style:{\"--extracted-r6o4lv\":\"var(--token-35b82200-fbfd-484d-8b16-b0e93ed869ae, rgb(5, 98, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ELtDw7wZu,variants:{lmxJ0deY3:{\"--extracted-r6o4lv\":\"var(--token-6722a476-b5e0-4a5b-a7c9-7d6fed9e6f74, rgb(29, 29, 29))\"},LtlBRiXpO:{\"--extracted-r6o4lv\":\"var(--token-35b82200-fbfd-484d-8b16-b0e93ed869ae, rgb(0, 68, 255))\"},thHYa7Ihb:{\"--extracted-r6o4lv\":\"var(--token-a1ffcb92-9399-4b27-87d8-9aa4ce2b97a0, rgba(10, 10, 10, 0.7))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lmxJ0deY3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e7no3t\",\"data-styles-preset\":\"rSBH49oAL\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6722a476-b5e0-4a5b-a7c9-7d6fed9e6f74, rgb(29, 29, 29)))\"},children:\"Identify Opportunities\"})})},LtlBRiXpO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e7no3t\",\"data-styles-preset\":\"rSBH49oAL\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35b82200-fbfd-484d-8b16-b0e93ed869ae, rgb(0, 68, 255)))\"},children:\"Identify Opportunities\"})})},thHYa7Ihb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e7no3t\",\"data-styles-preset\":\"rSBH49oAL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1ffcb92-9399-4b27-87d8-9aa4ce2b97a0, rgba(10, 10, 10, 0.7)))\"},children:\"Identify Opportunities\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GNDM4.framer-1cl7ci3, .framer-GNDM4 .framer-1cl7ci3 { display: block; }\",\".framer-GNDM4.framer-1w0uwkk { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 283px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GNDM4 .framer-t6y29x { flex: none; height: 54px; overflow: hidden; position: relative; width: 54px; }\",\".framer-GNDM4 .framer-x11zgb { 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-GNDM4.framer-1w0uwkk { gap: 0px; } .framer-GNDM4.framer-1w0uwkk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GNDM4.framer-1w0uwkk > :first-child { margin-top: 0px; } .framer-GNDM4.framer-1w0uwkk > :last-child { margin-bottom: 0px; } }\",\".framer-GNDM4.framer-v-1lwfwkq.framer-1w0uwkk, .framer-GNDM4.framer-v-1nr1o7x.framer-1w0uwkk { flex-direction: row; gap: 16px; justify-content: flex-start; }\",\".framer-GNDM4.framer-v-1lwfwkq .framer-t6y29x, .framer-GNDM4.framer-v-1nr1o7x .framer-t6y29x { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 48px); width: 48px; }\",\".framer-GNDM4.framer-v-1lwfwkq .framer-x11zgb, .framer-GNDM4.framer-v-1nr1o7x .framer-x11zgb { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GNDM4.framer-v-1lwfwkq.framer-1w0uwkk { gap: 0px; } .framer-GNDM4.framer-v-1lwfwkq.framer-1w0uwkk > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-GNDM4.framer-v-1lwfwkq.framer-1w0uwkk > :first-child { margin-left: 0px; } .framer-GNDM4.framer-v-1lwfwkq.framer-1w0uwkk > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GNDM4.framer-v-1nr1o7x.framer-1w0uwkk { gap: 0px; } .framer-GNDM4.framer-v-1nr1o7x.framer-1w0uwkk > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-GNDM4.framer-v-1nr1o7x.framer-1w0uwkk > :first-child { margin-left: 0px; } .framer-GNDM4.framer-v-1nr1o7x.framer-1w0uwkk > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-GNDM4[data-border=\"true\"]::after, .framer-GNDM4 [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 97\n * @framerIntrinsicWidth 283\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"thHYa7Ihb\":{\"layout\":[\"fixed\",\"auto\"]},\"LtlBRiXpO\":{\"layout\":[\"fixed\",\"auto\"]},\"lmxJ0deY3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"qeEFXaq9P\":\"icon\",\"ELtDw7wZu\":\"text\",\"zFFAytg5H\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMKo6NvC0W=withCSS(Component,css,\"framer-GNDM4\");export default FramerMKo6NvC0W;FramerMKo6NvC0W.displayName=\"Toggle Button Component\";FramerMKo6NvC0W.defaultProps={height:97,width:283};addPropertyControls(FramerMKo6NvC0W,{variant:{options:[\"v73nIgTrx\",\"thHYa7Ihb\",\"LtlBRiXpO\",\"lmxJ0deY3\"],optionTitles:[\"Active\",\"Default\",\"Mobile active\",\"Mobile default\"],title:\"Variant\",type:ControlType.Enum},qeEFXaq9P:{title:\"Icon\",type:ControlType.ResponsiveImage},ELtDw7wZu:{defaultValue:\"Identify Opportunities\",displayTextArea:false,title:\"Text\",type:ControlType.String},zFFAytg5H:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerMKo6NvC0W,[{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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMKo6NvC0W\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"qeEFXaq9P\\\":\\\"icon\\\",\\\"ELtDw7wZu\\\":\\\"text\\\",\\\"zFFAytg5H\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"283\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"97\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"thHYa7Ihb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LtlBRiXpO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lmxJ0deY3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MKo6NvC0W.map", "// Generated by Framer (af3ebb8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import ToggleButtonComponent from\"https://framerusercontent.com/modules/ZNxBu7XWhE4tdUv8MOaO/Mqy5kfTqDqwibH1hYC7r/MKo6NvC0W.js\";const ToggleButtonComponentFonts=getFonts(ToggleButtonComponent);const VideoFonts=getFonts(Video);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"SNs5NhU6m\",\"bX6GWzCTM\",\"Td1d2lIrQ\",\"UxM9Sb74y\",\"ZIRhaO5JN\",\"lyxfykANr\",\"zzYFkIH79\",\"gJ9kNH3Oe\"];const serializationHash=\"framer-td0B8\";const variantClassNames={bX6GWzCTM:\"framer-v-1gy4cos\",gJ9kNH3Oe:\"framer-v-ghj078\",lyxfykANr:\"framer-v-1x27gj5\",SNs5NhU6m:\"framer-v-qcqdkx\",Td1d2lIrQ:\"framer-v-1yo6ovc\",UxM9Sb74y:\"framer-v-1o3rw82\",ZIRhaO5JN:\"framer-v-12wj3fn\",zzYFkIH79:\"framer-v-1ep1cwk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition2={bounce:.2,delay:0,duration:.8,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:25};const transition3={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:.4,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={bounce:.2,delay:0,duration:.7,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 01\":\"SNs5NhU6m\",\"Desktop 02\":\"bX6GWzCTM\",\"Desktop 03\":\"Td1d2lIrQ\",\"Desktop 04\":\"UxM9Sb74y\",\"Mobile 01\":\"ZIRhaO5JN\",\"Mobile 02\":\"lyxfykANr\",\"Mobile 03\":\"zzYFkIH79\",\"Mobile 04\":\"gJ9kNH3Oe\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"SNs5NhU6m\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SNs5NhU6m\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1aepecc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"bX6GWzCTM\"),4800);});const onAppear1g97p3m=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Td1d2lIrQ\"),14500);});const onAppear102us02=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"UxM9Sb74y\"),12e3);});const onAppearpq23k6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"SNs5NhU6m\"),11e3);});const onAppear1qi4uaj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"lyxfykANr\"),4800);});const onAppeara5j7zx=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"zzYFkIH79\"),14500);});const onAppear17gel65=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"gJ9kNH3Oe\"),12e3);});const onAppear1e7ums0=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ZIRhaO5JN\"),11e3);});const zFFAytg5Hhvnq8y=activeVariantCallback(async(...args)=>{setVariant(\"SNs5NhU6m\");});const zFFAytg5H128fpy4=activeVariantCallback(async(...args)=>{setVariant(\"ZIRhaO5JN\");});const zFFAytg5Hd5cgya=activeVariantCallback(async(...args)=>{setVariant(\"bX6GWzCTM\");});const zFFAytg5H1fwhryo=activeVariantCallback(async(...args)=>{setVariant(\"lyxfykANr\");});const zFFAytg5H1fsvc6d=activeVariantCallback(async(...args)=>{setVariant(\"Td1d2lIrQ\");});const zFFAytg5Hin41ke=activeVariantCallback(async(...args)=>{setVariant(\"zzYFkIH79\");});const zFFAytg5Hvw8mj=activeVariantCallback(async(...args)=>{setVariant(\"UxM9Sb74y\");});const zFFAytg5H1mipo9k=activeVariantCallback(async(...args)=>{setVariant(\"gJ9kNH3Oe\");});useOnVariantChange(baseVariant,{bX6GWzCTM:onAppear1g97p3m,default:onAppear1aepecc,gJ9kNH3Oe:onAppear1e7ums0,lyxfykANr:onAppeara5j7zx,Td1d2lIrQ:onAppear102us02,UxM9Sb74y:onAppearpq23k6,ZIRhaO5JN:onAppear1qi4uaj,zzYFkIH79:onAppear17gel65});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"bX6GWzCTM\",\"Td1d2lIrQ\",\"UxM9Sb74y\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"bX6GWzCTM\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"Td1d2lIrQ\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"UxM9Sb74y\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-qcqdkx\",className,classNames),\"data-framer-name\":\"Desktop 01\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"SNs5NhU6m\",ref:refBinding,style:{...style},...addPropertyOverrides({bX6GWzCTM:{\"data-framer-name\":\"Desktop 02\"},gJ9kNH3Oe:{\"data-framer-name\":\"Mobile 04\"},lyxfykANr:{\"data-framer-name\":\"Mobile 02\"},Td1d2lIrQ:{\"data-framer-name\":\"Desktop 03\"},UxM9Sb74y:{\"data-framer-name\":\"Desktop 04\"},ZIRhaO5JN:{\"data-framer-name\":\"Mobile 01\"},zzYFkIH79:{\"data-framer-name\":\"Mobile 03\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jpd9vq\",\"data-framer-name\":\"Toggle\",layoutDependency:layoutDependency,layoutId:\"JDlEFqGLr\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:97,width:`max((min(${componentViewport?.width||\"100vw\"}, 744px) - 42px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||769)-0-769)/2+0+0)+0,...addPropertyOverrides({gJ9kNH3Oe:{width:`min(${componentViewport?.width||\"100vw\"}, 744px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||557)-0-1096)/2+0+0)+0+0},lyxfykANr:{width:`min(${componentViewport?.width||\"100vw\"}, 744px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||557)-0-1096)/2+0+0)+0+0},Td1d2lIrQ:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||768)-0-768)/2+0+0)+0},UxM9Sb74y:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||773)-0-773)/2+0+0)+0},ZIRhaO5JN:{width:`min(${componentViewport?.width||\"100vw\"}, 744px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||557)-0-1096)/2+0+0)+0+0},zzYFkIH79:{width:`min(${componentViewport?.width||\"100vw\"}, 744px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||557)-0-1096)/2+0+0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-90z1ot-container\",layoutDependency:layoutDependency,layoutId:\"JM5KHIt8P-container\",nodeId:\"JM5KHIt8P\",rendersWithMotion:true,scopeId:\"oJYFKv7qs\",children:/*#__PURE__*/_jsx(ToggleButtonComponent,{ELtDw7wZu:\"Identify Opportunities\",height:\"100%\",id:\"JM5KHIt8P\",layoutId:\"JM5KHIt8P\",qeEFXaq9P:addImageAlt({src:\"https://framerusercontent.com/images/RCAfF4Ysq1aqH2MUVZKRJ6jlRjY.svg\"},\"\"),style:{width:\"100%\"},variant:\"v73nIgTrx\",width:\"100%\",zFFAytg5H:zFFAytg5Hhvnq8y,...addPropertyOverrides({bX6GWzCTM:{variant:\"thHYa7Ihb\"},gJ9kNH3Oe:{variant:\"lmxJ0deY3\",zFFAytg5H:zFFAytg5H128fpy4},lyxfykANr:{variant:\"lmxJ0deY3\",zFFAytg5H:zFFAytg5H128fpy4},Td1d2lIrQ:{variant:\"thHYa7Ihb\"},UxM9Sb74y:{variant:\"thHYa7Ihb\"},ZIRhaO5JN:{variant:\"LtlBRiXpO\",zFFAytg5H:undefined},zzYFkIH79:{variant:\"lmxJ0deY3\",zFFAytg5H:zFFAytg5H128fpy4}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:97,width:`max((min(${componentViewport?.width||\"100vw\"}, 744px) - 42px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||769)-0-769)/2+0+0)+0,...addPropertyOverrides({gJ9kNH3Oe:{width:`min(${componentViewport?.width||\"100vw\"}, 744px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||557)-0-1096)/2+0+0)+0+109},lyxfykANr:{width:`min(${componentViewport?.width||\"100vw\"}, 744px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||557)-0-1096)/2+0+0)+0+109},Td1d2lIrQ:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||768)-0-768)/2+0+0)+0},UxM9Sb74y:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||773)-0-773)/2+0+0)+0},ZIRhaO5JN:{width:`min(${componentViewport?.width||\"100vw\"}, 744px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||557)-0-1096)/2+0+0)+0+109},zzYFkIH79:{width:`min(${componentViewport?.width||\"100vw\"}, 744px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||557)-0-1096)/2+0+0)+0+109}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hwwq0u-container\",layoutDependency:layoutDependency,layoutId:\"O12AV7yxL-container\",nodeId:\"O12AV7yxL\",rendersWithMotion:true,scopeId:\"oJYFKv7qs\",children:/*#__PURE__*/_jsx(ToggleButtonComponent,{ELtDw7wZu:\"Accelerate Capture\",height:\"100%\",id:\"O12AV7yxL\",layoutId:\"O12AV7yxL\",qeEFXaq9P:addImageAlt({src:\"https://framerusercontent.com/images/HTSTNO2EhtlRBcpSqiTM9W8fVo.svg\"},\"\"),style:{width:\"100%\"},variant:\"thHYa7Ihb\",width:\"100%\",zFFAytg5H:zFFAytg5Hd5cgya,...addPropertyOverrides({bX6GWzCTM:{variant:\"v73nIgTrx\"},gJ9kNH3Oe:{variant:\"lmxJ0deY3\",zFFAytg5H:zFFAytg5H1fwhryo},lyxfykANr:{variant:\"LtlBRiXpO\",zFFAytg5H:undefined},ZIRhaO5JN:{variant:\"lmxJ0deY3\",zFFAytg5H:zFFAytg5H1fwhryo},zzYFkIH79:{variant:\"lmxJ0deY3\",zFFAytg5H:zFFAytg5H1fwhryo}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:97,width:`max((min(${componentViewport?.width||\"100vw\"}, 744px) - 42px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||769)-0-769)/2+0+0)+0,...addPropertyOverrides({gJ9kNH3Oe:{width:`min(${componentViewport?.width||\"100vw\"}, 744px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||557)-0-1096)/2+0+0)+0+218},lyxfykANr:{width:`min(${componentViewport?.width||\"100vw\"}, 744px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||557)-0-1096)/2+0+0)+0+218},Td1d2lIrQ:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||768)-0-768)/2+0+0)+0},UxM9Sb74y:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||773)-0-773)/2+0+0)+0},ZIRhaO5JN:{width:`min(${componentViewport?.width||\"100vw\"}, 744px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||557)-0-1096)/2+0+0)+0+218},zzYFkIH79:{width:`min(${componentViewport?.width||\"100vw\"}, 744px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||557)-0-1096)/2+0+0)+0+218}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lx5bnh-container\",layoutDependency:layoutDependency,layoutId:\"JaR0ETlXp-container\",nodeId:\"JaR0ETlXp\",rendersWithMotion:true,scopeId:\"oJYFKv7qs\",children:/*#__PURE__*/_jsx(ToggleButtonComponent,{ELtDw7wZu:\"Produce Proposals\",height:\"100%\",id:\"JaR0ETlXp\",layoutId:\"JaR0ETlXp\",qeEFXaq9P:addImageAlt({src:\"https://framerusercontent.com/images/6yAU4PrA2WzXAOTD5WyxAPdU54.svg\"},\"\"),style:{width:\"100%\"},variant:\"thHYa7Ihb\",width:\"100%\",zFFAytg5H:zFFAytg5H1fsvc6d,...addPropertyOverrides({gJ9kNH3Oe:{variant:\"lmxJ0deY3\",zFFAytg5H:zFFAytg5Hin41ke},lyxfykANr:{variant:\"lmxJ0deY3\",zFFAytg5H:zFFAytg5Hin41ke},Td1d2lIrQ:{variant:\"v73nIgTrx\"},ZIRhaO5JN:{variant:\"lmxJ0deY3\",zFFAytg5H:zFFAytg5Hin41ke},zzYFkIH79:{variant:\"LtlBRiXpO\",zFFAytg5H:undefined}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:97,width:`max((min(${componentViewport?.width||\"100vw\"}, 744px) - 42px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||769)-0-769)/2+0+0)+0,...addPropertyOverrides({gJ9kNH3Oe:{width:`min(${componentViewport?.width||\"100vw\"}, 744px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||557)-0-1096)/2+0+0)+0+327},lyxfykANr:{width:`min(${componentViewport?.width||\"100vw\"}, 744px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||557)-0-1096)/2+0+0)+0+327},Td1d2lIrQ:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||768)-0-768)/2+0+0)+0},UxM9Sb74y:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||773)-0-773)/2+0+0)+0},ZIRhaO5JN:{width:`min(${componentViewport?.width||\"100vw\"}, 744px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||557)-0-1096)/2+0+0)+0+327},zzYFkIH79:{width:`min(${componentViewport?.width||\"100vw\"}, 744px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||557)-0-1096)/2+0+0)+0+327}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-194bnoe-container\",layoutDependency:layoutDependency,layoutId:\"rhBiprPCv-container\",nodeId:\"rhBiprPCv\",rendersWithMotion:true,scopeId:\"oJYFKv7qs\",children:/*#__PURE__*/_jsx(ToggleButtonComponent,{ELtDw7wZu:\"Manage Contracts\",height:\"100%\",id:\"rhBiprPCv\",layoutId:\"rhBiprPCv\",qeEFXaq9P:addImageAlt({src:\"https://framerusercontent.com/images/nb7gfkSUqstZbCkKWxNek0dhyT4.svg\"},\"\"),style:{width:\"100%\"},variant:\"thHYa7Ihb\",width:\"100%\",zFFAytg5H:zFFAytg5Hvw8mj,...addPropertyOverrides({gJ9kNH3Oe:{variant:\"LtlBRiXpO\",zFFAytg5H:undefined},lyxfykANr:{variant:\"lmxJ0deY3\",zFFAytg5H:zFFAytg5H1mipo9k},UxM9Sb74y:{variant:\"v73nIgTrx\"},ZIRhaO5JN:{variant:\"lmxJ0deY3\",zFFAytg5H:zFFAytg5H1mipo9k},zzYFkIH79:{variant:\"lmxJ0deY3\",zFFAytg5H:zFFAytg5H1mipo9k}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1ar6p7s\",\"data-framer-appear-id\":\"1ar6p7s\",\"data-framer-name\":\"Dashboard\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"P7vmS3b4S\",optimized:true,style:{backdropFilter:\"blur(50px)\",backgroundColor:\"rgba(5, 98, 255, 0.1)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,WebkitBackdropFilter:\"blur(50px)\"},children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,background:{alt:\"\",fit:\"fill\"},className:\"framer-tnqvyc\",\"data-framer-appear-id\":\"tnqvyc\",\"data-framer-name\":\"01\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"oPFweXgxq\",optimized:true,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 2px 4px 0px rgba(10, 10, 10, 0.03999999910593033), 0px 8px 12px -4px rgba(10, 10, 10, 0.029999999329447746), 0px 16px 24px -8px rgba(10, 10, 10, 0.029999999329447746), 0px 0px 0px 0.5px rgba(10, 10, 10, 0.10000000149011612)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1s5ui3i-container\",\"data-framer-appear-id\":\"1s5ui3i\",initial:animation5,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"a_m03af7a-container\",nodeId:\"a_m03af7a\",optimized:true,rendersWithMotion:true,scopeId:\"oJYFKv7qs\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"a_m03af7a\",isMixedBorderRadius:false,layoutId:\"a_m03af7a\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/soCexMSTAre3cpqKosZvoD7sFL8.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,background:{alt:\"\",fit:\"fill\"},className:\"framer-rrvoi6\",\"data-framer-appear-id\":\"rrvoi6\",\"data-framer-name\":\"02\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"dJsJtIDOj\",optimized:true,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 2px 4px 0px rgba(10, 10, 10, 0.03999999910593033), 0px 8px 12px -4px rgba(10, 10, 10, 0.029999999329447746), 0px 16px 24px -8px rgba(10, 10, 10, 0.029999999329447746), 0px 0px 0px 0.5px rgba(10, 10, 10, 0.10000000149011612)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dniwii-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ofHzLT7Ar-container\",nodeId:\"ofHzLT7Ar\",rendersWithMotion:true,scopeId:\"oJYFKv7qs\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ofHzLT7Ar\",isMixedBorderRadius:false,layoutId:\"ofHzLT7Ar\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/m2WiKgl04MrvJSG0s6yudoNEPnE.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,background:{alt:\"\",fit:\"fill\"},className:\"framer-1v7n8rr\",\"data-framer-appear-id\":\"1v7n8rr\",\"data-framer-name\":\"03\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"GG8kQB6_G\",optimized:true,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 2px 4px 0px rgba(10, 10, 10, 0.03999999910593033), 0px 8px 12px -4px rgba(10, 10, 10, 0.029999999329447746), 0px 16px 24px -8px rgba(10, 10, 10, 0.029999999329447746), 0px 0px 0px 0.5px rgba(10, 10, 10, 0.10000000149011612)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hx7xnm-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"x3dwxSGPd-container\",nodeId:\"x3dwxSGPd\",rendersWithMotion:true,scopeId:\"oJYFKv7qs\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"x3dwxSGPd\",isMixedBorderRadius:false,layoutId:\"x3dwxSGPd\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/wv71cQucidOxvB5O3QCbKXMsvg0.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,background:{alt:\"\",fit:\"fill\"},className:\"framer-1kx81wj\",\"data-framer-appear-id\":\"1kx81wj\",\"data-framer-name\":\"04\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"beLKufC4V\",optimized:true,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 2px 4px 0px rgba(10, 10, 10, 0.03999999910593033), 0px 8px 12px -4px rgba(10, 10, 10, 0.029999999329447746), 0px 16px 24px -8px rgba(10, 10, 10, 0.029999999329447746), 0px 0px 0px 0.5px rgba(10, 10, 10, 0.10000000149011612)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lxv2xm-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QN4sCYd7z-container\",nodeId:\"QN4sCYd7z\",rendersWithMotion:true,scopeId:\"oJYFKv7qs\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"QN4sCYd7z\",isMixedBorderRadius:false,layoutId:\"QN4sCYd7z\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/FV8MABwAeKANLiXsH1WGzVoCh1g.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-td0B8.framer-1471c34, .framer-td0B8 .framer-1471c34 { display: block; }\",\".framer-td0B8.framer-qcqdkx { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1110px; }\",\".framer-td0B8 .framer-jpd9vq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 744px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-td0B8 .framer-90z1ot-container, .framer-td0B8 .framer-1hwwq0u-container, .framer-td0B8 .framer-1lx5bnh-container, .framer-td0B8 .framer-194bnoe-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-td0B8 .framer-1ar6p7s { 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: 12px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-td0B8 .framer-tnqvyc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-td0B8 .framer-1s5ui3i-container { aspect-ratio: 1.7629870129870129 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 616px); position: relative; width: 100%; }\",\".framer-td0B8 .framer-rrvoi6, .framer-td0B8 .framer-1v7n8rr, .framer-td0B8 .framer-1kx81wj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-td0B8 .framer-dniwii-container { aspect-ratio: 1.7629870129870129 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 100%; }\",\".framer-td0B8 .framer-1hx7xnm-container { aspect-ratio: 1.7658536585365854 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 100%; }\",\".framer-td0B8 .framer-1lxv2xm-container { aspect-ratio: 1.7516129032258065 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 114px); position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-td0B8.framer-qcqdkx, .framer-td0B8 .framer-jpd9vq, .framer-td0B8 .framer-1ar6p7s, .framer-td0B8 .framer-tnqvyc, .framer-td0B8 .framer-rrvoi6, .framer-td0B8 .framer-1v7n8rr, .framer-td0B8 .framer-1kx81wj { gap: 0px; } .framer-td0B8.framer-qcqdkx > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-td0B8.framer-qcqdkx > :first-child, .framer-td0B8 .framer-tnqvyc > :first-child { margin-top: 0px; } .framer-td0B8.framer-qcqdkx > :last-child, .framer-td0B8 .framer-tnqvyc > :last-child { margin-bottom: 0px; } .framer-td0B8 .framer-jpd9vq > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-td0B8 .framer-jpd9vq > :first-child, .framer-td0B8 .framer-1ar6p7s > :first-child, .framer-td0B8 .framer-rrvoi6 > :first-child, .framer-td0B8 .framer-1v7n8rr > :first-child, .framer-td0B8 .framer-1kx81wj > :first-child { margin-left: 0px; } .framer-td0B8 .framer-jpd9vq > :last-child, .framer-td0B8 .framer-1ar6p7s > :last-child, .framer-td0B8 .framer-rrvoi6 > :last-child, .framer-td0B8 .framer-1v7n8rr > :last-child, .framer-td0B8 .framer-1kx81wj > :last-child { margin-right: 0px; } .framer-td0B8 .framer-1ar6p7s > *, .framer-td0B8 .framer-rrvoi6 > *, .framer-td0B8 .framer-1v7n8rr > *, .framer-td0B8 .framer-1kx81wj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-td0B8 .framer-tnqvyc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-td0B8.framer-v-1gy4cos .framer-dniwii-container { height: var(--framer-aspect-ratio-supported, 616px); }\",\".framer-td0B8.framer-v-1yo6ovc .framer-1hx7xnm-container { height: var(--framer-aspect-ratio-supported, 615px); }\",\".framer-td0B8.framer-v-1o3rw82 .framer-1lxv2xm-container { height: var(--framer-aspect-ratio-supported, 620px); }\",\".framer-td0B8.framer-v-12wj3fn.framer-qcqdkx, .framer-td0B8.framer-v-1x27gj5.framer-qcqdkx, .framer-td0B8.framer-v-1ep1cwk.framer-qcqdkx, .framer-td0B8.framer-v-ghj078.framer-qcqdkx { width: 390px; }\",\".framer-td0B8.framer-v-12wj3fn .framer-jpd9vq, .framer-td0B8.framer-v-1x27gj5 .framer-jpd9vq, .framer-td0B8.framer-v-1ep1cwk .framer-jpd9vq, .framer-td0B8.framer-v-ghj078 .framer-jpd9vq { flex-direction: column; gap: 12px; }\",\".framer-td0B8.framer-v-12wj3fn .framer-90z1ot-container, .framer-td0B8.framer-v-12wj3fn .framer-1hwwq0u-container, .framer-td0B8.framer-v-12wj3fn .framer-1lx5bnh-container, .framer-td0B8.framer-v-12wj3fn .framer-194bnoe-container, .framer-td0B8.framer-v-1x27gj5 .framer-90z1ot-container, .framer-td0B8.framer-v-1x27gj5 .framer-1hwwq0u-container, .framer-td0B8.framer-v-1x27gj5 .framer-1lx5bnh-container, .framer-td0B8.framer-v-1x27gj5 .framer-194bnoe-container, .framer-td0B8.framer-v-1ep1cwk .framer-90z1ot-container, .framer-td0B8.framer-v-1ep1cwk .framer-1hwwq0u-container, .framer-td0B8.framer-v-1ep1cwk .framer-1lx5bnh-container, .framer-td0B8.framer-v-1ep1cwk .framer-194bnoe-container, .framer-td0B8.framer-v-ghj078 .framer-90z1ot-container, .framer-td0B8.framer-v-ghj078 .framer-1hwwq0u-container, .framer-td0B8.framer-v-ghj078 .framer-1lx5bnh-container, .framer-td0B8.framer-v-ghj078 .framer-194bnoe-container { flex: none; width: 100%; }\",\".framer-td0B8.framer-v-12wj3fn .framer-1s5ui3i-container, .framer-td0B8.framer-v-1x27gj5 .framer-1s5ui3i-container, .framer-td0B8.framer-v-1ep1cwk .framer-1s5ui3i-container, .framer-td0B8.framer-v-ghj078 .framer-1s5ui3i-container { height: var(--framer-aspect-ratio-supported, 208px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-td0B8.framer-v-12wj3fn .framer-jpd9vq { gap: 0px; } .framer-td0B8.framer-v-12wj3fn .framer-jpd9vq > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-td0B8.framer-v-12wj3fn .framer-jpd9vq > :first-child { margin-top: 0px; } .framer-td0B8.framer-v-12wj3fn .framer-jpd9vq > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-td0B8.framer-v-1x27gj5 .framer-jpd9vq { gap: 0px; } .framer-td0B8.framer-v-1x27gj5 .framer-jpd9vq > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-td0B8.framer-v-1x27gj5 .framer-jpd9vq > :first-child { margin-top: 0px; } .framer-td0B8.framer-v-1x27gj5 .framer-jpd9vq > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-td0B8.framer-v-1ep1cwk .framer-jpd9vq { gap: 0px; } .framer-td0B8.framer-v-1ep1cwk .framer-jpd9vq > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-td0B8.framer-v-1ep1cwk .framer-jpd9vq > :first-child { margin-top: 0px; } .framer-td0B8.framer-v-1ep1cwk .framer-jpd9vq > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-td0B8.framer-v-ghj078 .framer-jpd9vq { gap: 0px; } .framer-td0B8.framer-v-ghj078 .framer-jpd9vq > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-td0B8.framer-v-ghj078 .framer-jpd9vq > :first-child { margin-top: 0px; } .framer-td0B8.framer-v-ghj078 .framer-jpd9vq > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 769\n * @framerIntrinsicWidth 1110\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bX6GWzCTM\":{\"layout\":[\"fixed\",\"auto\"]},\"Td1d2lIrQ\":{\"layout\":[\"fixed\",\"auto\"]},\"UxM9Sb74y\":{\"layout\":[\"fixed\",\"auto\"]},\"ZIRhaO5JN\":{\"layout\":[\"fixed\",\"auto\"]},\"lyxfykANr\":{\"layout\":[\"fixed\",\"auto\"]},\"zzYFkIH79\":{\"layout\":[\"fixed\",\"auto\"]},\"gJ9kNH3Oe\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroJYFKv7qs=withCSS(Component,css,\"framer-td0B8\");export default FrameroJYFKv7qs;FrameroJYFKv7qs.displayName=\"Toggle Dashboard\";FrameroJYFKv7qs.defaultProps={height:769,width:1110};addPropertyControls(FrameroJYFKv7qs,{variant:{options:[\"SNs5NhU6m\",\"bX6GWzCTM\",\"Td1d2lIrQ\",\"UxM9Sb74y\",\"ZIRhaO5JN\",\"lyxfykANr\",\"zzYFkIH79\",\"gJ9kNH3Oe\"],optionTitles:[\"Desktop 01\",\"Desktop 02\",\"Desktop 03\",\"Desktop 04\",\"Mobile 01\",\"Mobile 02\",\"Mobile 03\",\"Mobile 04\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameroJYFKv7qs,[{explicitInter:true,fonts:[]},...ToggleButtonComponentFonts,...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroJYFKv7qs\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bX6GWzCTM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Td1d2lIrQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UxM9Sb74y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZIRhaO5JN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lyxfykANr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zzYFkIH79\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gJ9kNH3Oe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"769\",\"framerIntrinsicWidth\":\"1110\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (915daba)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"GabE5FPEc\",\"qJ8S0yZ3D\"];const serializationHash=\"framer-d7CtP\";const variantClassNames={GabE5FPEc:\"framer-v-5fpsiw\",qJ8S0yZ3D:\"framer-v-1p2wnq3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"GabE5FPEc\",\"Variant 2\":\"qJ8S0yZ3D\"};const getProps=({click,height,id,width,...props})=>{return{...props,UAUsV7vNM:click??props.UAUsV7vNM,variant:humanReadableVariantMap[props.variant]??props.variant??\"GabE5FPEc\"};};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,UAUsV7vNM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GabE5FPEc\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ileuao=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(UAUsV7vNM){const res=await UAUsV7vNM(...args);if(res===false)return false;}});const onAppear1a2vbif=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),1500);});useOnVariantChange(baseVariant,{default:onAppear1a2vbif});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-5fpsiw\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"GabE5FPEc\",onTap:onTap1ileuao,ref:ref??ref1,style:{\"--border-bottom-width\":\"4px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"4px\",\"--border-right-width\":\"4px\",\"--border-style\":\"solid\",\"--border-top-width\":\"4px\",backgroundColor:\"rgba(255, 255, 255, 0.9)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,...style},...addPropertyOverrides({qJ8S0yZ3D:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ua47tp\",layoutDependency:layoutDependency,layoutId:\"JtW9h04iy\",style:{backgroundColor:\"rgba(5, 98, 255, 0.2)\",borderBottomLeftRadius:1e4,borderBottomRightRadius:1e4,borderTopLeftRadius:1e4,borderTopRightRadius:1e4},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tyzl49\",\"data-framer-name\":\"Icon\",fill:'var(--token-35b82200-fbfd-484d-8b16-b0e93ed869ae, rgb(5, 98, 255)) /* {\"name\":\"primary\"} */',intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"NKBKIjaYU\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M128 24a104 104 0 1 0 104 104A104.11 104.11 0 0 0 128 24Zm40.55 110.58-52 36A8 8 0 0 1 104 164V92a8 8 0 0 1 12.55-6.58l52 36a8 8 0 0 1 0 13.16Z\"/></svg>',withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-d7CtP.framer-jirjba, .framer-d7CtP .framer-jirjba { display: block; }\",\".framer-d7CtP.framer-5fpsiw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 120px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 120px; will-change: var(--framer-will-change-override, transform); }\",\".framer-d7CtP .framer-1ua47tp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-d7CtP .framer-tyzl49 { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-d7CtP.framer-5fpsiw, .framer-d7CtP .framer-1ua47tp { gap: 0px; } .framer-d7CtP.framer-5fpsiw > *, .framer-d7CtP .framer-1ua47tp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-d7CtP.framer-5fpsiw > :first-child, .framer-d7CtP .framer-1ua47tp > :first-child { margin-left: 0px; } .framer-d7CtP.framer-5fpsiw > :last-child, .framer-d7CtP .framer-1ua47tp > :last-child { margin-right: 0px; } }\",\".framer-d7CtP.framer-v-1p2wnq3 .framer-1ua47tp { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 100px); max-width: 100px; }\",\".framer-d7CtP.framer-v-1p2wnq3 .framer-tyzl49 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); width: 60px; }\",'.framer-d7CtP[data-border=\"true\"]::after, .framer-d7CtP [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 120\n * @framerIntrinsicWidth 120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"qJ8S0yZ3D\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"UAUsV7vNM\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXnOj97bsd=withCSS(Component,css,\"framer-d7CtP\");export default FramerXnOj97bsd;FramerXnOj97bsd.displayName=\"Play Button\";FramerXnOj97bsd.defaultProps={height:120,width:120};addPropertyControls(FramerXnOj97bsd,{variant:{options:[\"GabE5FPEc\",\"qJ8S0yZ3D\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},UAUsV7vNM:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerXnOj97bsd,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXnOj97bsd\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"120\",\"framerIntrinsicWidth\":\"120\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qJ8S0yZ3D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"UAUsV7vNM\\\":\\\"click\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XnOj97bsd.map", "//@ts-ignore\nimport{useRouter,useCurrentRouteId}from\"framer\";const useCurrentLocation=()=>{var _routes_currentRouteId;const{navigate,routes}=useRouter();const currentRouteId=useCurrentRouteId();const location=Array.isArray(routes)&&((_routes_currentRouteId=routes[currentRouteId])===null||_routes_currentRouteId===void 0?void 0:_routes_currentRouteId.path);const setLocation=path=>{var _Object_entries;const routeID=(_Object_entries=Object.entries(routes))===null||_Object_entries===void 0?void 0:_Object_entries.reduce((acc,item)=>{var _item_;return((_item_=item[1])===null||_item_===void 0?void 0:_item_.path)===path?item[0]:acc;},false);navigate(routeID,\"\");};return[location,setLocation];};export{useCurrentLocation};\nexport const __FramerMetadata__ = {\"exports\":{\"useCurrentLocation\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UseCurrentLocation.map", "\"use client\";import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import React from\"react\";import{useCurrentLocation}from\"https://framer.com/m/UseCurrentLocation-coQY.js\";import{addPropertyControls,ControlType}from\"framer\";// --------------------------------------------------- //\n// PROPERTY CONTROLS\n// --------------------------------------------------- //\naddPropertyControls(EmailForm,{font:{type:ControlType.Font,title:\"Font\",defaultFontType:\"sans-serif\",controls:\"extended\"},buttonComponent:{type:ControlType.ComponentInstance,description:\"Make sure the accesibility tag is set to 'div', because it's wrapped in <button type='submit'>\"},redirectTo:{type:ControlType.String,title:\"Redirect To\",defaultValue:\"/pricing\"},textColor:{type:ControlType.Color,title:\"Text Color\"},padding:{type:ControlType.Object,title:\"Padding\",controls:{top:{type:ControlType.Number,title:\"Top\",defaultValue:12,unit:\"px\"},right:{type:ControlType.Number,title:\"Right\",defaultValue:12,unit:\"px\"},bottom:{type:ControlType.Number,title:\"Bottom\",defaultValue:12,unit:\"px\"},left:{type:ControlType.Number,title:\"Left\",defaultValue:12,unit:\"px\"}}},placeholderText:{type:ControlType.String,title:\"Input Placeholder\",defaultValue:\"Enter your email\"},placeholderTextColor:{type:ControlType.Color,title:\"Placeholder Text Color\"},wrapperFrame:{type:ControlType.Object,title:\"Wrapper Frame\",controls:{backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"#ffffff24\"},padding:{type:ControlType.Object,title:\"Padding\",controls:{top:{type:ControlType.Number,title:\"Top\",defaultValue:8,unit:\"px\"},right:{type:ControlType.Number,title:\"Right\",defaultValue:8,unit:\"px\"},bottom:{type:ControlType.Number,title:\"Bottom\",defaultValue:8,unit:\"px\"},left:{type:ControlType.Number,title:\"Left\",defaultValue:8,unit:\"px\"}}},border:{type:ControlType.Object,title:\"Border\",controls:{width:{type:ControlType.Number,title:\"Width\",defaultValue:1,unit:\"px\"},style:{type:ControlType.Enum,title:\"Style\",defaultValue:\"inset\",options:[\"inset\",\"solid\",\"dashed\",\"dotted\",\"double\"]},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff18\"},radius:{type:ControlType.Number,title:\"Radius\",defaultValue:10,unit:\"px\"}}}}}});// --------------------------------------------------- //\n// DEFAULT PROPS\n// --------------------------------------------------- //\nEmailForm.defaultProps={font:{fontFamily:\"sans-serif\",letterSpacing:\"0px\",fontSize:14},redirectTo:\"/pricing\",buttonComponent:undefined,placeholderText:\"Enter your email\",placeholderTextColor:\"#ffffff\",padding:{top:0,right:8,bottom:0,left:8},textColor:\"#ffffff\",wrapperFrame:{backgroundColor:\"#ffffff24\",padding:{top:8,right:8,bottom:8,left:8},border:{width:1,style:\"inset\",color:\"#ffffff18\",radius:10}}};// --------------------------------------------------- //\n// MAIN COMPONENT\n// --------------------------------------------------- //\n/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 420\n * @framerDisableUnlink\n */export default function EmailForm(props){// const setCurrentLocation = (redirectTo: string) => {\n//   console.log(redirectTo);\n// };\nconst[currentLocation,setCurrentLocation]=useCurrentLocation();const[email,setEmail]=React.useState(\"\");const handleSubmit=e=>{e.preventDefault();props.setStore({email});setCurrentLocation(props.redirectTo);};const formStyle={display:\"flex\",flexDirection:\"row\",alignItems:\"center\",justifyContent:\"flex-end\",gap:10,width:\"100%\",height:\"100%\",flexShrink:1,position:\"relative\"};const inputStyle={padding:`${props.padding.top}px ${props.padding.right}px ${props.padding.bottom}px ${props.padding.left}px`,backgroundColor:\"transparent\",border:\"none\",color:props.textColor,width:\"100%\",height:\"100%\",...props.font};// placeholder button style\nconst buttonStyle={padding:\"0px 20px\",height:\"48px\",width:\"fit-content\",fontSize:\"14px\",fontWeight:\"500\",backgroundColor:\"#242424\",color:\"white\",border:\"1px inset #ffffff18\",borderRadius:\"8px\",cursor:\"pointer\",transition:\"background-color 0.2s ease\",flexShrink:0,display:\"flex\",alignItems:\"center\",justifyContent:\"center\"};// button wrapper style for custom button\nconst customButtonStyle={padding:0,margin:0,border:\"none\",height:\"fit-content\",width:\"fit-content\",flexShrink:0};const wrapperFrameStyle={width:\"100%\",height:\"fit-content\",padding:`${props.wrapperFrame.padding.top}px ${props.wrapperFrame.padding.right}px ${props.wrapperFrame.padding.bottom}px ${props.wrapperFrame.padding.left}px`,borderRadius:`${props.wrapperFrame.border.radius}px`,border:`${props.wrapperFrame.border.width}px ${props.wrapperFrame.border.style} ${props.wrapperFrame.border.color}`,backgroundColor:props.wrapperFrame.backgroundColor,...props.font};// styling pseudo-element for placeholder text\nconst style=`\n  input::placeholder {\n    color: ${props.placeholderTextColor};\n  }\n  input:focus {\n    outline: none !important;\n  }\n  `;return /*#__PURE__*/_jsxs(\"div\",{style:wrapperFrameStyle,children:[/*#__PURE__*/_jsx(\"style\",{children:style}),/*#__PURE__*/_jsxs(\"form\",{style:formStyle,onSubmit:handleSubmit,children:[/*#__PURE__*/_jsx(\"input\",{type:\"email\",value:email,onChange:e=>setEmail(e.target.value),placeholder:props.placeholderText,style:inputStyle,required:true}),props.buttonComponent&&props.buttonComponent.length>0?/*#__PURE__*/_jsx(\"button\",{type:\"submit\",style:customButtonStyle,children:props.buttonComponent}):/*#__PURE__*/_jsx(\"button\",{type:\"submit\",style:buttonStyle,children:\"Get access\"})]})]});}EmailForm.displayName=\"EMAIL FORM - GOVDASH\";\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"EmailForm\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"64\",\"framerIntrinsicWidth\":\"420\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Email_form.map", "// Generated by Framer (f030ee3)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={XQt4brKG1:new LazyValue(()=>import(\"./NYOswpyFm-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Buttons from\"#framer/local/canvasComponent/Accb6ZncP/Accb6ZncP.js\";import FeatureCard from\"#framer/local/canvasComponent/DCzAHRRZo/DCzAHRRZo.js\";import ToggleDashboard from\"#framer/local/canvasComponent/oJYFKv7qs/oJYFKv7qs.js\";import PlayButton from\"#framer/local/canvasComponent/XnOj97bsd/XnOj97bsd.js\";import Footer from\"#framer/local/canvasComponent/yXESNDQwC/yXESNDQwC.js\";import Navbar from\"#framer/local/canvasComponent/ZThDjLQrF/ZThDjLQrF.js\";import EMAILFORMGOVDASH from\"#framer/local/codeFile/f5uNUOv/Email_form.js\";import{withSetEmail}from\"#framer/local/codeFile/HpBfw25/Email_Override.js\";import{withHighlightColor1}from\"#framer/local/codeFile/aZMmUFi/Text_highlight.js\";import*as sharedStyle3 from\"#framer/local/css/ekT4BEsha/ekT4BEsha.js\";import*as sharedStyle5 from\"#framer/local/css/FXg0Hqm4r/FXg0Hqm4r.js\";import*as sharedStyle2 from\"#framer/local/css/hmv7D9VUH/hmv7D9VUH.js\";import*as sharedStyle4 from\"#framer/local/css/IvqG3Qkdc/IvqG3Qkdc.js\";import*as sharedStyle from\"#framer/local/css/KRLzHtIwo/KRLzHtIwo.js\";import*as sharedStyle1 from\"#framer/local/css/RwhF5un5d/RwhF5un5d.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/NYOswpyFm/NYOswpyFm.js\";import metadataProvider from\"#framer/local/webPageMetadata/NYOswpyFm/NYOswpyFm.js\";const NavbarFonts=getFonts(Navbar);const ContainerWithFX=withFX(Container);const VideoFonts=getFonts(Video);const EMAILFORMGOVDASHFonts=getFonts(EMAILFORMGOVDASH);const EMAILFORMGOVDASHWithSetEmailnqe8kk=withCodeBoundaryForOverrides(EMAILFORMGOVDASH,{nodeId:\"IiIolfJYL\",override:withSetEmail,scopeId:\"NYOswpyFm\"});const PlayButtonFonts=getFonts(PlayButton);const YouTubeFonts=getFonts(YouTube);const TickerFonts=getFonts(Ticker);const ToggleDashboardFonts=getFonts(ToggleDashboard);const ButtonsFonts=getFonts(Buttons);const FeatureCardFonts=getFonts(FeatureCard);const RichTextWithHighlightColor11wze9nj=withCodeBoundaryForOverrides(RichText,{nodeId:\"BszirKcbO\",override:withHighlightColor1,scopeId:\"NYOswpyFm\"});const RichTextWithHighlightColor1rgs85m=withCodeBoundaryForOverrides(RichText,{nodeId:\"ZNZHfZSBo\",override:withHighlightColor1,scopeId:\"NYOswpyFm\"});const RichTextWithHighlightColor11ibvhib=withCodeBoundaryForOverrides(RichText,{nodeId:\"uGnRsGDPP\",override:withHighlightColor1,scopeId:\"NYOswpyFm\"});const FooterFonts=getFonts(Footer);const breakpoints={ctaBTDVQL:\"(min-width: 1200px)\",JAwSEq2dl:\"(max-width: 809px)\",p33DDuvbj:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-L4Ol2\";const variantClassNames={ctaBTDVQL:\"framer-v-1nhvgtx\",JAwSEq2dl:\"framer-v-1qdj0da\",p33DDuvbj:\"framer-v-ywptfz\"};const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-60};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};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 HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ctaBTDVQL\",Phone:\"JAwSEq2dl\",Tablet:\"p33DDuvbj\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ctaBTDVQL\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const UAUsV7vNM3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const router=useRouter();const elementId=useRouteElementId(\"N95B2ORYj\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"K1Xai14oS\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ctaBTDVQL\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(250, 250, 250); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1nhvgtx\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:\"100vw\",y:0,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-1k6xw2q-container\",layoutScroll:true,nodeId:\"iE0FKGmyq\",rendersWithMotion:true,scopeId:\"NYOswpyFm\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{variant:\"ysDwE_c6K\"},p33DDuvbj:{variant:\"IjcFUj3c5\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"iE0FKGmyq\",layoutId:\"iE0FKGmyq\",style:{width:\"100%\"},tE4o_DLxv:\"rgb(255, 255, 255)\",variant:\"hdNk8cTMp\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dqrsv3\",\"data-framer-name\":\"body\",children:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\"},className:\"framer-19918aa\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yzx60v\",\"data-framer-name\":\"bg\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kk73oz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bqXAgnBjo\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{srcFile:\"https://framerusercontent.com/assets/iKIUsa3ZAtWaZ0AOAYxT7TU2aY.mp4\"}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"bqXAgnBjo\",isMixedBorderRadius:false,layoutId:\"bqXAgnBjo\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/4XqQPLTQiKyCn40sNibv5I2fKY.mp4\",srcType:\"Upload\",srcUrl:getLocalizedValue(\"v0\",activeLocale)??\"https://www.pexels.com/video/clouds-in-the-sky-blown-by-the-wind-4377450/\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ojdvrj\",\"data-framer-name\":\"BG Gradient\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12himjd\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wlmkbi\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a8xh9l\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oigej0\",\"data-framer-name\":\"Headline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kkxqu5\",\"data-styles-preset\":\"KRLzHtIwo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cee4896f-3566-44e7-8e37-d5145db036a6, rgb(255, 255, 255))\"},children:\"The AI platform for winning government contracts\"})})},p33DDuvbj:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kkxqu5\",\"data-styles-preset\":\"KRLzHtIwo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cee4896f-3566-44e7-8e37-d5145db036a6, rgb(255, 255, 255))\"},children:\"The AI platform for winning government contracts\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kkxqu5\",\"data-styles-preset\":\"KRLzHtIwo\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cee4896f-3566-44e7-8e37-d5145db036a6, rgb(255, 255, 255))\"},children:\"The AI platform for winning government contracts\"})}),className:\"framer-14qdhcz\",\"data-framer-name\":\"The AI platform for winning government contracts\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h4m0z3\",\"data-styles-preset\":\"RwhF5un5d\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Produce high-quality proposals, run capture, organize your data, and a whole lot more. All in one place.\"})})},p33DDuvbj:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h4m0z3\",\"data-styles-preset\":\"RwhF5un5d\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Produce high-quality proposals, run capture, organize your data, and a whole lot more. All in one place.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h4m0z3\",\"data-styles-preset\":\"RwhF5un5d\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Produce high-quality proposals, run capture, organize your data, and a whole lot more. All in one place.\"})}),className:\"framer-v1m2ob\",\"data-framer-name\":\"Produce high-quality proposals, run capture, organize your data, and a whole lot more. All in one place.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nqe8kk-container\",isAuthoredByUser:true,nodeId:\"IiIolfJYL\",rendersWithMotion:true,scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(EMAILFORMGOVDASHWithSetEmailnqe8kk,{buttonComponent:[],font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"IiIolfJYL\",layoutId:\"IiIolfJYL\",padding:{bottom:0,left:8,right:8,top:0},placeholderText:\"Enter your email\",placeholderTextColor:\"rgba(255, 255, 255, 0.8)\",redirectTo:\"/pricing\",style:{height:\"100%\",width:\"100%\"},textColor:\"rgb(255, 255, 255)\",width:\"100%\",wrapperFrame:{backgroundColor:\"rgba(255, 255, 255, 0.14)\",border:{color:\"rgba(255, 255, 255, 0.09)\",radius:10,style:\"inset\",width:1},padding:{bottom:8,left:8,right:8,top:8}}})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ldp2z2\",\"data-framer-name\":\"Mockup\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+70+0+20+0+48+0+0+308+6+0),pixelHeight:1155,pixelWidth:1653,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 52px)`,src:\"https://framerusercontent.com/images/xXYKornpgbQPTQdfRvKmfMOxcJs.png\",srcSet:\"https://framerusercontent.com/images/xXYKornpgbQPTQdfRvKmfMOxcJs.png?scale-down-to=512 512w,https://framerusercontent.com/images/xXYKornpgbQPTQdfRvKmfMOxcJs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xXYKornpgbQPTQdfRvKmfMOxcJs.png 1653w\"}},p33DDuvbj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+80+0+48+0+0+346+12+0),pixelHeight:1155,pixelWidth:1653,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 104px)`,src:\"https://framerusercontent.com/images/xXYKornpgbQPTQdfRvKmfMOxcJs.png\",srcSet:\"https://framerusercontent.com/images/xXYKornpgbQPTQdfRvKmfMOxcJs.png?scale-down-to=512 512w,https://framerusercontent.com/images/xXYKornpgbQPTQdfRvKmfMOxcJs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xXYKornpgbQPTQdfRvKmfMOxcJs.png 1653w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+80+0+48+0+0+12+0),pixelHeight:1155,pixelWidth:1653,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px) / 2, 1px) - 24px)`,src:\"https://framerusercontent.com/images/xXYKornpgbQPTQdfRvKmfMOxcJs.png\",srcSet:\"https://framerusercontent.com/images/xXYKornpgbQPTQdfRvKmfMOxcJs.png?scale-down-to=512 512w,https://framerusercontent.com/images/xXYKornpgbQPTQdfRvKmfMOxcJs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xXYKornpgbQPTQdfRvKmfMOxcJs.png 1653w\"},className:\"framer-wjjx0i\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{y:(componentViewport?.y||0)+0+0+70+0+20+0+48+0+0+308+6+0+172},p33DDuvbj:{y:(componentViewport?.y||0)+0+0+0+0+80+0+48+0+0+346+12+0+172}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:\"120px\",y:(componentViewport?.y||0)+0+0+0+0+80+0+48+0+0+12+0+172,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1eweh54-container\",id:\"1eweh54\",nodeId:\"ofYMLaCMO\",scopeId:\"NYOswpyFm\",children:[/*#__PURE__*/_jsx(PlayButton,{height:\"100%\",id:\"ofYMLaCMO\",layoutId:\"ofYMLaCMO\",style:{height:\"100%\",width:\"100%\"},UAUsV7vNM:UAUsV7vNM3bnx0g({overlay}),variant:\"GabE5FPEc\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-qp01gj\"),\"data-framer-portal-id\":\"1eweh54\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"VmAR0QnkH\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-i0j3xu-container\"),\"data-framer-portal-id\":\"1eweh54\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GcK8Gnp_4\",rendersWithMotion:true,scopeId:\"NYOswpyFm\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(YouTube,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,height:\"100%\",id:\"GcK8Gnp_4\",isMixedBorderRadius:false,isRed:false,layoutId:\"GcK8Gnp_4\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:8,topRightRadius:8,url:\"https://youtu.be/M8UX-ux9mCI\",width:\"100%\"})})})]}),getContainer())})})]})})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qfwfgm\",\"data-framer-name\":\"Clients\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mx4wka\",\"data-styles-preset\":\"hmv7D9VUH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(10, 10, 10, 0.7)\"},children:\"Trusted by top capture & proposal teams\"})}),className:\"framer-1ulskx2\",\"data-framer-name\":\"Trusted by hundreds of government contractors\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p5im0e-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"J33NI9k3T\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{gap:30},p33DDuvbj:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:33,overflow:false},gap:100,height:\"100%\",hoverFactor:1,id:\"J33NI9k3T\",layoutId:\"J33NI9k3T\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rwv0ih\",\"data-framer-name\":\"logos\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:115,intrinsicWidth:319.5,pixelHeight:99,pixelWidth:289,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/bmQYfo7nC1cpRd3fnAHqCEXkZWE.svg\"},className:\"framer-169ib77\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:346,intrinsicWidth:346,pixelHeight:692,pixelWidth:692,sizes:\"43px\",src:\"https://framerusercontent.com/images/TeAx4G91i9hehLA0rYvD5R22qU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/TeAx4G91i9hehLA0rYvD5R22qU.png?scale-down-to=512 512w,https://framerusercontent.com/images/TeAx4G91i9hehLA0rYvD5R22qU.png 692w\"},className:\"framer-gdio2x\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:270,intrinsicWidth:366,pixelHeight:540,pixelWidth:732,sizes:\"57px\",src:\"https://framerusercontent.com/images/1cnMEC2dqXEqfCq6sYHY7o6JtBo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1cnMEC2dqXEqfCq6sYHY7o6JtBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/1cnMEC2dqXEqfCq6sYHY7o6JtBo.png 732w\"},className:\"framer-p7gepd\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:214,intrinsicWidth:1003,pixelHeight:428,pixelWidth:2006,sizes:\"202px\",src:\"https://framerusercontent.com/images/fUiNTswBoAO1mb6QXj9XoS08Do.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/fUiNTswBoAO1mb6QXj9XoS08Do.png?scale-down-to=512 512w,https://framerusercontent.com/images/fUiNTswBoAO1mb6QXj9XoS08Do.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fUiNTswBoAO1mb6QXj9XoS08Do.png 2006w\"},className:\"framer-1g1uv0k\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:171,intrinsicWidth:572,pixelHeight:342,pixelWidth:1144,sizes:\"141px\",src:\"https://framerusercontent.com/images/Qb5rxQGtTeysfhvUtiga6obUvA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Qb5rxQGtTeysfhvUtiga6obUvA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Qb5rxQGtTeysfhvUtiga6obUvA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qb5rxQGtTeysfhvUtiga6obUvA.png 1144w\"},className:\"framer-xqdbgw\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:167,intrinsicWidth:459,pixelHeight:334,pixelWidth:918,sizes:\"116px\",src:\"https://framerusercontent.com/images/xJuRwe6De3E1xTeBMTOCXOKXzAI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xJuRwe6De3E1xTeBMTOCXOKXzAI.png?scale-down-to=512 512w,https://framerusercontent.com/images/xJuRwe6De3E1xTeBMTOCXOKXzAI.png 918w\"},className:\"framer-uqu2bs\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:171.5,intrinsicWidth:1581.5,pixelHeight:343,pixelWidth:3163,sizes:\"315px\",src:\"https://framerusercontent.com/images/tlMEty4O7Mps1ef9HFvNfOgsM.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/tlMEty4O7Mps1ef9HFvNfOgsM.png?scale-down-to=512 512w,https://framerusercontent.com/images/tlMEty4O7Mps1ef9HFvNfOgsM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tlMEty4O7Mps1ef9HFvNfOgsM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tlMEty4O7Mps1ef9HFvNfOgsM.png 3163w\"},className:\"framer-2a9xyt\",\"data-framer-name\":\"Image\"})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r396s6\",\"data-framer-name\":\"features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-151vnqm\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-b84530\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p56mtq\",\"data-framer-name\":\"Headline\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1suvmsm\",\"data-styles-preset\":\"ekT4BEsha\",style:{\"--framer-text-color\":\"var(--token-6722a476-b5e0-4a5b-a7c9-7d6fed9e6f74, rgb(29, 29, 29))\"},children:\"Increase bid quality while saving time and money\"})}),className:\"framer-1u9phr4\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h4m0z3\",\"data-styles-preset\":\"RwhF5un5d\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a1ffcb92-9399-4b27-87d8-9aa4ce2b97a0, rgba(10, 10, 10, 0.7))\"},children:\"Replace multiple broken tools with GovDash\u2014the platform that makes BD teams more effective and happier.\"})}),className:\"framer-18bz0hw\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+1131+80+0+219.2},p33DDuvbj:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 80px)`,y:(componentViewport?.y||0)+0+0+0+1315+100+0+265.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:769,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px)`,y:(componentViewport?.y||0)+0+0+0+999+120+0+265.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ktsvzp-container\",nodeId:\"LAH_XUbhP\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{variant:\"ZIRhaO5JN\"}},children:/*#__PURE__*/_jsx(ToggleDashboard,{height:\"100%\",id:\"LAH_XUbhP\",layoutId:\"LAH_XUbhP\",style:{width:\"100%\"},variant:\"SNs5NhU6m\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wgmx77\",\"data-framer-name\":\"core features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eaaftf\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eqh54j\",\"data-framer-name\":\"top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e4328m\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2x8c62\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1suvmsm\",\"data-styles-preset\":\"ekT4BEsha\",style:{\"--framer-text-color\":\"var(--token-cee4896f-3566-44e7-8e37-d5145db036a6, rgb(255, 255, 255))\"},children:\"Less prompting, more results\"})}),className:\"framer-mg5oh0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h4m0z3\",\"data-styles-preset\":\"RwhF5un5d\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"GovDash is an employee that runs full workflows with your team, allowing you to spend more time on strategy and less on tasks.\"})}),className:\"framer-1lg1d4x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ioz6uq\",\"data-framer-name\":\"buttons\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NYOswpyFm\"},implicitPathVariables:undefined},{href:{webPageId:\"NYOswpyFm\"},implicitPathVariables:undefined},{href:{webPageId:\"NYOswpyFm\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{y:(componentViewport?.y||0)+0+0+70+2279.2+80+0+0+0+0+0+194.2+0},p33DDuvbj:{y:(componentViewport?.y||0)+0+0+0+2549.2+100+0+0+0+0+0+217.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+0+0+2273.2+120+0+0+0+0+0+217.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4vk936-container\",nodeId:\"inETZFGDj\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{m1UTlUEOk:resolvedLinks[2]},p33DDuvbj:{m1UTlUEOk:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",HOKnOMpDn:\"var(--token-a2de2f01-ce51-43b0-84f0-35eaf8350001, rgb(36, 36, 36))\",hws_LJKw4:\"Get access\",id:\"inETZFGDj\",layoutId:\"inETZFGDj\",lDuHVQmli:false,m1UTlUEOk:resolvedLinks[0],PnPKgH2Yo:\"rgba(255, 255, 255, 0.3)\",sC8pDh1aD:true,TCJ_vDOEu:\"var(--token-cee4896f-3566-44e7-8e37-d5145db036a6, rgb(255, 255, 255))\",variant:\"oLXBZYlEX\",width:\"100%\"})})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oyfhej\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gunz7n\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+2279.2+80+0+277.2+0+0+0+0},p33DDuvbj:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 160px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2549.2+100+0+310.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2273.2+120+0+340.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14lsq9m-container\",nodeId:\"u98Mlg5xQ\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",id:\"u98Mlg5xQ\",iiwkwLqSJ:\"FileMagnifyingGlass\",JrANoY6PD:\"Opportunities recommended to you based on your company capabilities.\",layoutId:\"u98Mlg5xQ\",style:{width:\"100%\"},width:\"100%\",yp9eSYlys:\"Opportunity Identification\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+2279.2+80+0+277.2+0+0+0+158},p33DDuvbj:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 160px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2549.2+100+0+310.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2273.2+120+0+340.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d1j3oe-container\",nodeId:\"Od8LwU8uZ\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",id:\"Od8LwU8uZ\",iiwkwLqSJ:\"GridNine\",JrANoY6PD:\"Task area identification and comparison against your company capabilities.\",layoutId:\"Od8LwU8uZ\",style:{width:\"100%\"},width:\"100%\",yp9eSYlys:\"Capability Matrix\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+2279.2+80+0+277.2+0+0+0+316},p33DDuvbj:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 160px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2549.2+100+0+310.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2273.2+120+0+340.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dkog83-container\",nodeId:\"VxnfHLHyQ\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",id:\"VxnfHLHyQ\",iiwkwLqSJ:\"ListChecks\",JrANoY6PD:\"Assign reviewers and check capture answers at each gate stage.\",layoutId:\"VxnfHLHyQ\",style:{width:\"100%\"},width:\"100%\",yp9eSYlys:\"Gate Reviews\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4gby2s\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+2279.2+80+0+277.2+0+474+0+0},p33DDuvbj:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 160px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2549.2+100+0+310.2+0+183+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2273.2+120+0+340.2+0+183+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q0ja8w-container\",nodeId:\"RlbH594ut\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",id:\"RlbH594ut\",iiwkwLqSJ:\"NewspaperClipping\",JrANoY6PD:\"Organize your evaluation and solution information, all in one place.\",layoutId:\"RlbH594ut\",style:{width:\"100%\"},width:\"100%\",yp9eSYlys:\"Capture Development\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+2279.2+80+0+277.2+0+474+0+158},p33DDuvbj:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 160px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2549.2+100+0+310.2+0+183+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2273.2+120+0+340.2+0+183+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bw3rf3-container\",nodeId:\"j_EdVwRp_\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",id:\"j_EdVwRp_\",iiwkwLqSJ:\"Check\",JrANoY6PD:\"Automatic compliance matrices based on the entire solicitation package, not just sections L&M.\",layoutId:\"j_EdVwRp_\",style:{width:\"100%\"},width:\"100%\",yp9eSYlys:\"Compliance Matrix\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+2279.2+80+0+277.2+0+474+0+316},p33DDuvbj:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 160px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2549.2+100+0+310.2+0+183+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2273.2+120+0+340.2+0+183+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e44uxb-container\",nodeId:\"gXF1k9wTf\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",id:\"gXF1k9wTf\",iiwkwLqSJ:\"TextAlignCenter\",JrANoY6PD:\"Fully annotated outlines with instructions, task areas, and evaluation criteria for all sections.\",layoutId:\"gXF1k9wTf\",style:{width:\"100%\"},width:\"100%\",yp9eSYlys:\"Annotated Outlines\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r8d7tv\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+2279.2+80+0+277.2+0+948+0+0},p33DDuvbj:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 160px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2549.2+100+0+310.2+0+366+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2273.2+120+0+340.2+0+366+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-od323j-container\",nodeId:\"W27jLejPp\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",id:\"W27jLejPp\",iiwkwLqSJ:\"Sparkle\",JrANoY6PD:\"Pink / red team level proposals that are easy to review, modify and export to Word.\",layoutId:\"W27jLejPp\",style:{width:\"100%\"},width:\"100%\",yp9eSYlys:\"Quality Proposals\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+2279.2+80+0+277.2+0+948+0+158},p33DDuvbj:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 160px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2549.2+100+0+310.2+0+366+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2273.2+120+0+340.2+0+366+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wpl6zj-container\",nodeId:\"gG5Mo_i7Q\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",id:\"gG5Mo_i7Q\",iiwkwLqSJ:\"MicrosoftWordLogo\",JrANoY6PD:\"An AI assistant that helps you make final edits, create graphics and more - all in Microsoft Word.\",layoutId:\"gG5Mo_i7Q\",style:{width:\"100%\"},width:\"100%\",yp9eSYlys:\"Microsoft Word Assistant\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+2279.2+80+0+277.2+0+948+0+316},p33DDuvbj:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 160px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2549.2+100+0+310.2+0+366+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2273.2+120+0+340.2+0+366+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ldowqv-container\",nodeId:\"NNjSCYher\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",id:\"NNjSCYher\",iiwkwLqSJ:\"FileImage\",JrANoY6PD:\"Spin up ad-hoc documents for any use case, such as capability statements, NDAs, and more.\",layoutId:\"NNjSCYher\",style:{width:\"100%\"},width:\"100%\",yp9eSYlys:\"Custom Documents\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14gfisw\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+2279.2+80+0+277.2+0+1422+0+0},p33DDuvbj:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 160px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2549.2+100+0+310.2+0+549+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2273.2+120+0+340.2+0+549+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qvhtgc-container\",nodeId:\"a_qeOBvGF\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",id:\"a_qeOBvGF\",iiwkwLqSJ:\"Folder\",JrANoY6PD:\"Past performance, automatically organized based on your contract documents.\",layoutId:\"a_qeOBvGF\",style:{width:\"100%\"},width:\"100%\",yp9eSYlys:\"Contract Management\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+2279.2+80+0+277.2+0+1422+0+158},p33DDuvbj:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 160px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2549.2+100+0+310.2+0+549+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2273.2+120+0+340.2+0+549+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ylw7v2-container\",nodeId:\"vy9HseVy7\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",id:\"vy9HseVy7\",iiwkwLqSJ:\"Target\",JrANoY6PD:\"Track whether an opportunity was won, lost, canceled or if you simply decided not to bid.\",layoutId:\"vy9HseVy7\",style:{width:\"100%\"},width:\"100%\",yp9eSYlys:\"Submission Tracking\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+2279.2+80+0+277.2+0+1422+0+316},p33DDuvbj:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 160px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2549.2+100+0+310.2+0+549+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+2273.2+120+0+340.2+0+549+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yb8nbc-container\",nodeId:\"sCe5qlR_m\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(FeatureCard,{height:\"100%\",id:\"sCe5qlR_m\",iiwkwLqSJ:\"Intersect\",JrANoY6PD:\"Direct integrations with SharePoint, Salesforce, Microsoft Word, and other data sources.\",layoutId:\"sCe5qlR_m\",style:{width:\"100%\"},width:\"100%\",yp9eSYlys:\"Integrations\"})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cwd5rl\",\"data-framer-name\":\"testimonials\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w4bmf6\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gy8irn\",\"data-framer-name\":\"top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10sw0fq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ujy8f9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1suvmsm\",\"data-styles-preset\":\"ekT4BEsha\",style:{\"--framer-text-color\":\"var(--token-6722a476-b5e0-4a5b-a7c9-7d6fed9e6f74, rgb(29, 29, 29))\"},children:\"Our customers work faster and more strategically\"})}),className:\"framer-1pks5yd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h4m0z3\",\"data-styles-preset\":\"RwhF5un5d\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a1ffcb92-9399-4b27-87d8-9aa4ce2b97a0, rgba(10, 10, 10, 0.7))\"},children:\"Don't just take our word for it - see why top contractors trust GovDash to streamline their workflows and stay competitive.\"})}),className:\"framer-1lvgmnm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-123u2j4\",\"data-framer-name\":\"buttons\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Nytf0Wx9U\"},implicitPathVariables:undefined},{href:{webPageId:\"Nytf0Wx9U\"},implicitPathVariables:undefined},{href:{webPageId:\"Nytf0Wx9U\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{y:(componentViewport?.y||0)+0+0+70+4597.4+80+0+0+0+0+0+189.2+0},p33DDuvbj:{y:(componentViewport?.y||0)+0+0+0+3751.4+100+0+0+0+0+0+217.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+0+0+3545.4+120+0+0+0+0+0+217.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hg7zje-container\",nodeId:\"kjOegWY8G\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{m1UTlUEOk:resolvedLinks1[2]},p33DDuvbj:{m1UTlUEOk:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",HOKnOMpDn:\"rgb(0, 0, 0)\",hws_LJKw4:\"See all testimonials\",id:\"kjOegWY8G\",layoutId:\"kjOegWY8G\",lDuHVQmli:false,m1UTlUEOk:resolvedLinks1[0],PnPKgH2Yo:\"rgb(237, 237, 237)\",sC8pDh1aD:false,TCJ_vDOEu:\"rgb(255, 255, 255)\",variant:\"oLXBZYlEX\",width:\"100%\"})})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jpffz5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10ft6e7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5z7w6z\",\"data-border\":true,\"data-framer-name\":\"Card 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ok41su\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichTextWithHighlightColor11wze9nj,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6722a476-b5e0-4a5b-a7c9-7d6fed9e6f74, rgb(29, 29, 29))\"},children:[\"GovDash has proven to be a highly reliable partner, distinguished by its exceptional customer service, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"availability, and continually growing\"}),\" and adapting platform.\"]})}),className:\"framer-1wze9nj\",\"data-framer-name\":\"Title\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dgg1mi\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ns7r8s\",\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+70+4597.4+80+0+272.2+0+0+0+0+0+0+15+36+108+0),pixelHeight:200,pixelWidth:200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/I7NIXvt3ZFcCbQssvr2i3T8Ha6g.jpeg\"}},p33DDuvbj:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3751.4+100+0+310.2+0+0+0+0+0+25+37+108+0),pixelHeight:200,pixelWidth:200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/I7NIXvt3ZFcCbQssvr2i3T8Ha6g.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3545.4+120+0+340.2+0+0+0+0+0+32+23+108+0),pixelHeight:200,pixelWidth:200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/I7NIXvt3ZFcCbQssvr2i3T8Ha6g.jpeg\"},className:\"framer-8ms8fh\",\"data-framer-name\":\"Item\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xighqg\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hpe1ms\",\"data-styles-preset\":\"IvqG3Qkdc\",style:{\"--framer-text-color\":\"var(--token-6722a476-b5e0-4a5b-a7c9-7d6fed9e6f74, rgb(29, 29, 29))\"},children:\"Kristen Glauner\"})}),className:\"framer-1wj06cu\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-q7dt8n\",\"data-styles-preset\":\"FXg0Hqm4r\",style:{\"--framer-text-color\":\"var(--token-a1ffcb92-9399-4b27-87d8-9aa4ce2b97a0, rgba(10, 10, 10, 0.7))\"},children:\"Business Development Manager at Threat Tec\"})}),className:\"framer-1me5fbv\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uv6w17\",\"data-border\":true,\"data-framer-name\":\"Card 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tln4fi\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichTextWithHighlightColor1rgs85m,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6722a476-b5e0-4a5b-a7c9-7d6fed9e6f74, rgb(29, 29, 29))\"},children:[\"I actively use GovDash to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"transform a week of work into a few hours\"}),\" \u2013 GovDash is cornerstone to any firm looking to create a cost-conscious, time saving approach to proposal development and pipeline management \u2013 without compromise in product caliber.\"]})}),className:\"framer-rgs85m\",\"data-framer-name\":\"Title\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pyty69\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16qpvf7\",\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+70+4597.4+80+0+272.2+0+0+0+345+0+0+15+36+108+0),pixelHeight:350,pixelWidth:432,src:\"https://framerusercontent.com/images/0nMKbHl5L1DmXsumNICqYiCbQA.jpeg\"}},p33DDuvbj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3751.4+100+0+310.2+0+0+0+0+0+25+37+108+0),pixelHeight:350,pixelWidth:432,src:\"https://framerusercontent.com/images/0nMKbHl5L1DmXsumNICqYiCbQA.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3545.4+120+0+340.2+0+0+0+0+0+32+23+108+0),pixelHeight:350,pixelWidth:432,src:\"https://framerusercontent.com/images/0nMKbHl5L1DmXsumNICqYiCbQA.jpeg\"},className:\"framer-u9i9fg\",\"data-framer-name\":\"Item\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h0r9m3\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hpe1ms\",\"data-styles-preset\":\"IvqG3Qkdc\",style:{\"--framer-text-color\":\"var(--token-6722a476-b5e0-4a5b-a7c9-7d6fed9e6f74, rgb(29, 29, 29))\"},children:\"Carlos Rivera\"})}),className:\"framer-12u9vnr\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-q7dt8n\",\"data-styles-preset\":\"FXg0Hqm4r\",style:{\"--framer-text-color\":\"var(--token-a1ffcb92-9399-4b27-87d8-9aa4ce2b97a0, rgba(10, 10, 10, 0.7))\"},children:\"Executive Vice President at Federated IT\"})}),className:\"framer-11apzbx\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u2r2mr\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u4n6wb\",\"data-border\":true,\"data-framer-name\":\"Card 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4eq8zd\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6722a476-b5e0-4a5b-a7c9-7d6fed9e6f74, rgb(29, 29, 29))\"},children:\"GovDash has been a time saver for Turbo Federal\u2019s proposal team. It provides us with outlines and compliant draft proposals that are red-team ready. We are also able to generate tables and graphics within the tool.\"})}),className:\"framer-w71e8v\",\"data-framer-name\":\"Title\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jhiz61\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cocrqc\",\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+70+4597.4+80+0+272.2+0+690+0+0+0+0+15+36+108+0),pixelHeight:192,pixelWidth:192,src:\"https://framerusercontent.com/images/7uI1tlCfTY9U6oKtPKyvcLDW0.png\"}},p33DDuvbj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3751.4+100+0+310.2+0+376+0+0+0+25+37+108+0),pixelHeight:192,pixelWidth:192,src:\"https://framerusercontent.com/images/7uI1tlCfTY9U6oKtPKyvcLDW0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3545.4+120+0+340.2+0+383+0+0+0+32+23+108+0),pixelHeight:192,pixelWidth:192,src:\"https://framerusercontent.com/images/7uI1tlCfTY9U6oKtPKyvcLDW0.png\"},className:\"framer-1kgnm6l\",\"data-framer-name\":\"Item\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xuec9y\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hpe1ms\",\"data-styles-preset\":\"IvqG3Qkdc\",style:{\"--framer-text-color\":\"var(--token-6722a476-b5e0-4a5b-a7c9-7d6fed9e6f74, rgb(29, 29, 29))\"},children:\"Kerry Gray\"})}),className:\"framer-1mlqgb4\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-q7dt8n\",\"data-styles-preset\":\"FXg0Hqm4r\",style:{\"--framer-text-color\":\"var(--token-a1ffcb92-9399-4b27-87d8-9aa4ce2b97a0, rgba(10, 10, 10, 0.7))\"},children:[\"President & CEO at \",/*#__PURE__*/_jsx(\"strong\",{children:\"Turbo Federal\"})]})}),className:\"framer-1d1rafk\",\"data-framer-name\":\"Description\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y8t6hs\",\"data-border\":true,\"data-framer-name\":\"Card 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f8tx99\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichTextWithHighlightColor11ibvhib,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6722a476-b5e0-4a5b-a7c9-7d6fed9e6f74, rgb(29, 29, 29))\"},children:[\"As the Proposal Coordinator in a SDVOSB, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"this tool has changed my Life!\"}),\" The ability to complete a Capabilities Statement/Matrix in record time is phenomenal.\"]})}),className:\"framer-1ibvhib\",\"data-framer-name\":\"Title\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qwq91q\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-siz291\",\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+70+4597.4+80+0+272.2+0+690+0+345+0+0+15+36+108+0),pixelHeight:311,pixelWidth:311,src:\"https://framerusercontent.com/images/A5OrUEvuLYfuLHRBWC7Kq0TOM.jpeg\"}},p33DDuvbj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3751.4+100+0+310.2+0+376+0+0+0+25+37+108+0),pixelHeight:311,pixelWidth:311,src:\"https://framerusercontent.com/images/A5OrUEvuLYfuLHRBWC7Kq0TOM.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3545.4+120+0+340.2+0+383+0+0+0+32+23+108+0),pixelHeight:311,pixelWidth:311,src:\"https://framerusercontent.com/images/A5OrUEvuLYfuLHRBWC7Kq0TOM.jpeg\"},className:\"framer-n4phyh\",\"data-framer-name\":\"Item\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bsujkg\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hpe1ms\",\"data-styles-preset\":\"IvqG3Qkdc\",style:{\"--framer-text-color\":\"var(--token-6722a476-b5e0-4a5b-a7c9-7d6fed9e6f74, rgb(29, 29, 29))\"},children:\"Bethany Clark\"})}),className:\"framer-1v0ixyo\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-q7dt8n\",\"data-styles-preset\":\"FXg0Hqm4r\",style:{\"--framer-text-color\":\"var(--token-a1ffcb92-9399-4b27-87d8-9aa4ce2b97a0, rgba(10, 10, 10, 0.7))\"},children:\"Proposal Coordinator at Blue Rose Consulting\"})}),className:\"framer-454pqo\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wvsave\",\"data-framer-name\":\"security\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b1h00r\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xvpmcz\",\"data-framer-name\":\"top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-bhxjbm\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-shgt06\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1suvmsm\",\"data-styles-preset\":\"ekT4BEsha\",style:{\"--framer-text-color\":\"var(--token-6722a476-b5e0-4a5b-a7c9-7d6fed9e6f74, rgb(29, 29, 29))\"},children:\"Keep your data secure and compliant with regulations\"})}),className:\"framer-ko6yoj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h4m0z3\",\"data-styles-preset\":\"RwhF5un5d\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(29, 29, 29)\"},children:\"GovDash complies with NIST 800-171 and FedRAMP Moderate standards and runs in Azure / AWS GovCloud.\"})}),className:\"framer-1u8k55i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u0smxq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ktpm62\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+70+6394.6+80+0+219.2+0+0+0+0),pixelHeight:534,pixelWidth:740,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 40px)`,src:\"https://framerusercontent.com/images/WipJbcMbxQPAUpSkow354qRtY.png\",srcSet:\"https://framerusercontent.com/images/WipJbcMbxQPAUpSkow354qRtY.png?scale-down-to=512 512w,https://framerusercontent.com/images/WipJbcMbxQPAUpSkow354qRtY.png 740w\"}},p33DDuvbj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4988.6+100+0+235.2+0+0+0),pixelHeight:534,pixelWidth:740,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 110px) / 3, 1px)`,src:\"https://framerusercontent.com/images/WipJbcMbxQPAUpSkow354qRtY.png\",srcSet:\"https://framerusercontent.com/images/WipJbcMbxQPAUpSkow354qRtY.png?scale-down-to=512 512w,https://framerusercontent.com/images/WipJbcMbxQPAUpSkow354qRtY.png 740w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4859.6+120+0+265.2+0+0+0),pixelHeight:534,pixelWidth:740,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 64px) / 3, 1px)`,src:\"https://framerusercontent.com/images/WipJbcMbxQPAUpSkow354qRtY.png\",srcSet:\"https://framerusercontent.com/images/WipJbcMbxQPAUpSkow354qRtY.png?scale-down-to=512 512w,https://framerusercontent.com/images/WipJbcMbxQPAUpSkow354qRtY.png 740w\"},className:\"framer-1x0r8fu\",\"data-framer-name\":\"Container\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u8rn6a\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ehux0c\",\"data-framer-name\":\"Features Item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ut358e\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-6722a476-b5e0-4a5b-a7c9-7d6fed9e6f74, rgb(29, 29, 29))\"},children:\"Compliance\"})}),className:\"framer-w38cd4\",\"data-framer-name\":\"Title\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-a1ffcb92-9399-4b27-87d8-9aa4ce2b97a0, rgba(10, 10, 10, 0.7))\"},children:\"GovDash adheres to NIST-800-171 and FedRAMP Moderate controls.\"})}),className:\"framer-1ab5xmx\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18gdm7\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+70+6394.6+80+0+219.2+0+317+0+0),pixelHeight:534,pixelWidth:740,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 40px)`,src:\"https://framerusercontent.com/images/e3Gm1hg4PeeIT1NZUyEa4sJmKQ.png\",srcSet:\"https://framerusercontent.com/images/e3Gm1hg4PeeIT1NZUyEa4sJmKQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/e3Gm1hg4PeeIT1NZUyEa4sJmKQ.png 740w\"}},p33DDuvbj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4988.6+100+0+235.2+0+0+0),pixelHeight:534,pixelWidth:740,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 110px) / 3, 1px)`,src:\"https://framerusercontent.com/images/e3Gm1hg4PeeIT1NZUyEa4sJmKQ.png\",srcSet:\"https://framerusercontent.com/images/e3Gm1hg4PeeIT1NZUyEa4sJmKQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/e3Gm1hg4PeeIT1NZUyEa4sJmKQ.png 740w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4859.6+120+0+265.2+0+0+0),pixelHeight:534,pixelWidth:740,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 64px) / 3, 1px)`,src:\"https://framerusercontent.com/images/e3Gm1hg4PeeIT1NZUyEa4sJmKQ.png\",srcSet:\"https://framerusercontent.com/images/e3Gm1hg4PeeIT1NZUyEa4sJmKQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/e3Gm1hg4PeeIT1NZUyEa4sJmKQ.png 740w\"},className:\"framer-duavwi\",\"data-framer-name\":\"Container\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t3mgvt\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11p8r8v\",\"data-framer-name\":\"Features Item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d0mbjv\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-6722a476-b5e0-4a5b-a7c9-7d6fed9e6f74, rgb(29, 29, 29))\"},children:\"Personnel\"})}),className:\"framer-1hlssf2\",\"data-framer-name\":\"Title\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-a1ffcb92-9399-4b27-87d8-9aa4ce2b97a0, rgba(10, 10, 10, 0.7))\"},children:\"All GovDash employees are based in the United States.\"})}),className:\"framer-rhh14e\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pohwad\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+70+6394.6+80+0+219.2+0+634+0+0),pixelHeight:534,pixelWidth:740,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 40px)`,src:\"https://framerusercontent.com/images/NNETHK7IqR5IXcD91SFeuTpRcts.png\",srcSet:\"https://framerusercontent.com/images/NNETHK7IqR5IXcD91SFeuTpRcts.png?scale-down-to=512 512w,https://framerusercontent.com/images/NNETHK7IqR5IXcD91SFeuTpRcts.png 740w\"}},p33DDuvbj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4988.6+100+0+235.2+0+0+0),pixelHeight:534,pixelWidth:740,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 110px) / 3, 1px)`,src:\"https://framerusercontent.com/images/NNETHK7IqR5IXcD91SFeuTpRcts.png\",srcSet:\"https://framerusercontent.com/images/NNETHK7IqR5IXcD91SFeuTpRcts.png?scale-down-to=512 512w,https://framerusercontent.com/images/NNETHK7IqR5IXcD91SFeuTpRcts.png 740w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4859.6+120+0+265.2+0+0+0),pixelHeight:534,pixelWidth:740,sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1110px) - 64px) / 3, 1px)`,src:\"https://framerusercontent.com/images/NNETHK7IqR5IXcD91SFeuTpRcts.png\",srcSet:\"https://framerusercontent.com/images/NNETHK7IqR5IXcD91SFeuTpRcts.png?scale-down-to=512 512w,https://framerusercontent.com/images/NNETHK7IqR5IXcD91SFeuTpRcts.png 740w\"},className:\"framer-1py8b74\",\"data-framer-name\":\"Container\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fsj321\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-awdh8o\",\"data-framer-name\":\"Features Item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o2wzvh\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-6722a476-b5e0-4a5b-a7c9-7d6fed9e6f74, rgb(29, 29, 29))\"},children:\"Infrastructure\"})}),className:\"framer-1ymiyt\",\"data-framer-name\":\"Title\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-a1ffcb92-9399-4b27-87d8-9aa4ce2b97a0, rgba(10, 10, 10, 0.7))\"},children:\"GovDash is run in infrastructure that is FedRAMP compliant.\"})}),className:\"framer-4mdksg\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{y:(componentViewport?.y||0)+0+0+70+7704.8},p33DDuvbj:{y:(componentViewport?.y||0)+0+0+0+5910.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1310,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+5670.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ga33pn-container\",nodeId:\"GdEX9e8Sz\",scopeId:\"NYOswpyFm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JAwSEq2dl:{variant:\"Nfcr_Ae__\"},p33DDuvbj:{variant:\"ysDWXOO0D\"}},children:/*#__PURE__*/_jsx(Footer,{ah7ww6pOx:true,height:\"100%\",id:\"GdEX9e8Sz\",layoutId:\"GdEX9e8Sz\",style:{width:\"100%\"},variant:\"Uq6xfhWBZ\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-L4Ol2.framer-1tv6qax, .framer-L4Ol2 .framer-1tv6qax { display: block; }\",\".framer-L4Ol2.framer-1nhvgtx { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-L4Ol2 .framer-1k6xw2q-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-L4Ol2 .framer-1dqrsv3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-19918aa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-L4Ol2 .framer-1yzx60v { -webkit-user-select: none; flex: none; height: 100%; left: 0px; overflow: visible; pointer-events: none; position: absolute; top: 0px; user-select: none; width: 100%; z-index: 0; }\",\".framer-L4Ol2 .framer-1kk73oz-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 1px; width: 100%; z-index: 0; }\",\".framer-L4Ol2 .framer-ojdvrj { background: linear-gradient(180deg, rgba(5, 72, 255, 0.98) 9%, rgba(134, 168, 243, 0.8999999761581421) 38%, rgba(201, 217, 250, 0.8999999761581421) 59%, rgba(217, 227, 251, 0.8999999761581421) 75%, rgba(234, 240, 253, 0.9) 86%, rgba(255, 255, 255, 0.99856) 106%); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-L4Ol2 .framer-12himjd { 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: 48px 40px 58px 40px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-1wlmkbi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-1a8xh9l { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L4Ol2 .framer-oigej0, .framer-L4Ol2 .framer-ehux0c, .framer-L4Ol2 .framer-11p8r8v, .framer-L4Ol2 .framer-awdh8o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-14qdhcz { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 730px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L4Ol2 .framer-v1m2ob { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 540px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L4Ol2 .framer-nqe8kk-container { flex: none; height: 64px; position: relative; width: 420px; }\",\".framer-L4Ol2 .framer-1ldp2z2 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.18); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 12px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-L4Ol2 .framer-wjjx0i { aspect-ratio: 1.4396551724137931 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 2px 4px 0px rgba(10, 10, 10, 0.04), 0px 8px 12px -4px rgba(10, 10, 10, 0.029999999329447746), 0px 16px 24px -8px rgba(10, 10, 10, 0.029999999329447746), 0px 0px 0px 0.5px rgba(10, 10, 10, 0.10000000149011612); flex: none; height: var(--framer-aspect-ratio-supported, 381px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-L4Ol2 .framer-1eweh54-container { flex: none; height: 120px; left: calc(50.062893081761025% - 120px / 2); position: absolute; top: calc(50.00000000000002% - 120px / 2); width: 120px; }\",\".framer-L4Ol2.framer-qp01gj { background-color: rgba(0, 0, 0, 0.6); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-L4Ol2.framer-i0j3xu-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 80%; z-index: 10; }\",\".framer-L4Ol2 .framer-1qfwfgm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-1ulskx2, .framer-L4Ol2 .framer-1u9phr4, .framer-L4Ol2 .framer-18bz0hw, .framer-L4Ol2 .framer-1wze9nj, .framer-L4Ol2 .framer-1me5fbv, .framer-L4Ol2 .framer-rgs85m, .framer-L4Ol2 .framer-11apzbx, .framer-L4Ol2 .framer-w71e8v, .framer-L4Ol2 .framer-1d1rafk, .framer-L4Ol2 .framer-1ibvhib, .framer-L4Ol2 .framer-454pqo, .framer-L4Ol2 .framer-w38cd4, .framer-L4Ol2 .framer-1ab5xmx, .framer-L4Ol2 .framer-1hlssf2, .framer-L4Ol2 .framer-rhh14e, .framer-L4Ol2 .framer-1ymiyt, .framer-L4Ol2 .framer-4mdksg { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L4Ol2 .framer-p5im0e-container { flex: none; height: 50px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-1rwv0ih { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-L4Ol2 .framer-169ib77 { aspect-ratio: 2.7857142857142856 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 117px; }\",\".framer-L4Ol2 .framer-gdio2x { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); overflow: visible; position: relative; width: 43px; }\",\".framer-L4Ol2 .framer-p7gepd { aspect-ratio: 1.3555555555555556 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 57px; }\",\".framer-L4Ol2 .framer-1g1uv0k { aspect-ratio: 4.686915887850467 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); overflow: visible; position: relative; width: 202px; }\",\".framer-L4Ol2 .framer-xqdbgw { aspect-ratio: 3.345029239766082 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 141px; }\",\".framer-L4Ol2 .framer-uqu2bs { aspect-ratio: 2.748502994011976 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 116px; }\",\".framer-L4Ol2 .framer-2a9xyt { aspect-ratio: 9.221574344023324 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); overflow: visible; position: relative; width: 315px; }\",\".framer-L4Ol2 .framer-r396s6, .framer-L4Ol2 .framer-cwd5rl, .framer-L4Ol2 .framer-wvsave { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-L4Ol2 .framer-151vnqm { 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: flex-start; max-width: 1110px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-L4Ol2 .framer-b84530, .framer-L4Ol2 .framer-123u2j4, .framer-L4Ol2 .framer-xvpmcz { 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-L4Ol2 .framer-p56mtq { 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: flex-start; max-width: 540px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L4Ol2 .framer-ktsvzp-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-wgmx77 { align-content: center; align-items: center; background-color: var(--token-35b82200-fbfd-484d-8b16-b0e93ed869ae, #0562ff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-L4Ol2 .framer-eaaftf { 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: 1110px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-L4Ol2 .framer-1eqh54j, .framer-L4Ol2 .framer-gy8irn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-1e4328m, .framer-L4Ol2 .framer-10sw0fq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 540px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-2x8c62 { 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: 540px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-mg5oh0, .framer-L4Ol2 .framer-1pks5yd, .framer-L4Ol2 .framer-ko6yoj { --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-L4Ol2 .framer-1lg1d4x, .framer-L4Ol2 .framer-1lvgmnm, .framer-L4Ol2 .framer-1u8k55i { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 540px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L4Ol2 .framer-1ioz6uq { 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-L4Ol2 .framer-4vk936-container, .framer-L4Ol2 .framer-1hg7zje-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-L4Ol2 .framer-1oyfhej { 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%; }\",\".framer-L4Ol2 .framer-1gunz7n, .framer-L4Ol2 .framer-4gby2s, .framer-L4Ol2 .framer-r8d7tv, .framer-L4Ol2 .framer-14gfisw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-14lsq9m-container, .framer-L4Ol2 .framer-1d1j3oe-container, .framer-L4Ol2 .framer-dkog83-container, .framer-L4Ol2 .framer-1q0ja8w-container, .framer-L4Ol2 .framer-1bw3rf3-container, .framer-L4Ol2 .framer-1e44uxb-container, .framer-L4Ol2 .framer-od323j-container, .framer-L4Ol2 .framer-wpl6zj-container, .framer-L4Ol2 .framer-ldowqv-container, .framer-L4Ol2 .framer-qvhtgc-container, .framer-L4Ol2 .framer-1ylw7v2-container, .framer-L4Ol2 .framer-yb8nbc-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-L4Ol2 .framer-w4bmf6, .framer-L4Ol2 .framer-b1h00r { 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: 1110px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L4Ol2 .framer-ujy8f9, .framer-L4Ol2 .framer-shgt06 { 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-L4Ol2 .framer-1jpffz5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-10ft6e7, .framer-L4Ol2 .framer-1u2r2mr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-5z7w6z, .framer-L4Ol2 .framer-1uv6w17, .framer-L4Ol2 .framer-u4n6wb, .framer-L4Ol2 .framer-1y8t6hs { --border-bottom-width: 1px; --border-color: rgba(10, 10, 10, 0.1); --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: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0.48290122862090357px 0.48290122862090357px -1.875px rgba(0, 0, 0, 0.31), 0px 4px 4px -3.75px rgba(0, 0, 0, 0.1125); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-L4Ol2 .framer-ok41su, .framer-L4Ol2 .framer-1tln4fi, .framer-L4Ol2 .framer-4eq8zd, .framer-L4Ol2 .framer-1f8tx99 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 351px; justify-content: space-between; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-1dgg1mi, .framer-L4Ol2 .framer-pyty69, .framer-L4Ol2 .framer-jhiz61, .framer-L4Ol2 .framer-1qwq91q { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-ns7r8s, .framer-L4Ol2 .framer-16qpvf7, .framer-L4Ol2 .framer-1cocrqc, .framer-L4Ol2 .framer-siz291 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 48px; }\",\".framer-L4Ol2 .framer-8ms8fh, .framer-L4Ol2 .framer-u9i9fg, .framer-L4Ol2 .framer-1kgnm6l, .framer-L4Ol2 .framer-n4phyh { border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-L4Ol2 .framer-1xighqg, .framer-L4Ol2 .framer-1h0r9m3, .framer-L4Ol2 .framer-xuec9y, .framer-L4Ol2 .framer-1bsujkg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L4Ol2 .framer-1wj06cu, .framer-L4Ol2 .framer-12u9vnr, .framer-L4Ol2 .framer-1mlqgb4, .framer-L4Ol2 .framer-1v0ixyo { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 411px; word-break: break-word; word-wrap: break-word; }\",\".framer-L4Ol2 .framer-bhxjbm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 540px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-L4Ol2 .framer-1u0smxq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-1ktpm62, .framer-L4Ol2 .framer-18gdm7, .framer-L4Ol2 .framer-pohwad { --border-bottom-width: 1px; --border-color: rgba(10, 10, 10, 0.07); --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: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0.48290122862090357px 0.48290122862090357px -1.875px rgba(0, 0, 0, 0.31), 0px 4px 4px -3.75px rgba(0, 0, 0, 0.1125); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-L4Ol2 .framer-1x0r8fu, .framer-L4Ol2 .framer-duavwi, .framer-L4Ol2 .framer-1py8b74 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 267px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-1u8rn6a, .framer-L4Ol2 .framer-t3mgvt, .framer-L4Ol2 .framer-fsj321 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 16px 16px 16px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-1ut358e, .framer-L4Ol2 .framer-d0mbjv, .framer-L4Ol2 .framer-o2wzvh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L4Ol2 .framer-ga33pn-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-L4Ol2.framer-1nhvgtx, .framer-L4Ol2 .framer-1dqrsv3, .framer-L4Ol2 .framer-19918aa, .framer-L4Ol2 .framer-12himjd, .framer-L4Ol2 .framer-1wlmkbi, .framer-L4Ol2 .framer-1a8xh9l, .framer-L4Ol2 .framer-oigej0, .framer-L4Ol2 .framer-1ldp2z2, .framer-L4Ol2 .framer-1qfwfgm, .framer-L4Ol2 .framer-1rwv0ih, .framer-L4Ol2 .framer-r396s6, .framer-L4Ol2 .framer-151vnqm, .framer-L4Ol2 .framer-b84530, .framer-L4Ol2 .framer-p56mtq, .framer-L4Ol2 .framer-wgmx77, .framer-L4Ol2 .framer-eaaftf, .framer-L4Ol2 .framer-1eqh54j, .framer-L4Ol2 .framer-1e4328m, .framer-L4Ol2 .framer-2x8c62, .framer-L4Ol2 .framer-1ioz6uq, .framer-L4Ol2 .framer-1oyfhej, .framer-L4Ol2 .framer-1gunz7n, .framer-L4Ol2 .framer-4gby2s, .framer-L4Ol2 .framer-r8d7tv, .framer-L4Ol2 .framer-14gfisw, .framer-L4Ol2 .framer-cwd5rl, .framer-L4Ol2 .framer-w4bmf6, .framer-L4Ol2 .framer-gy8irn, .framer-L4Ol2 .framer-10sw0fq, .framer-L4Ol2 .framer-ujy8f9, .framer-L4Ol2 .framer-123u2j4, .framer-L4Ol2 .framer-1jpffz5, .framer-L4Ol2 .framer-10ft6e7, .framer-L4Ol2 .framer-5z7w6z, .framer-L4Ol2 .framer-1dgg1mi, .framer-L4Ol2 .framer-ns7r8s, .framer-L4Ol2 .framer-1xighqg, .framer-L4Ol2 .framer-1uv6w17, .framer-L4Ol2 .framer-pyty69, .framer-L4Ol2 .framer-16qpvf7, .framer-L4Ol2 .framer-1h0r9m3, .framer-L4Ol2 .framer-1u2r2mr, .framer-L4Ol2 .framer-u4n6wb, .framer-L4Ol2 .framer-jhiz61, .framer-L4Ol2 .framer-1cocrqc, .framer-L4Ol2 .framer-xuec9y, .framer-L4Ol2 .framer-1y8t6hs, .framer-L4Ol2 .framer-1qwq91q, .framer-L4Ol2 .framer-siz291, .framer-L4Ol2 .framer-1bsujkg, .framer-L4Ol2 .framer-wvsave, .framer-L4Ol2 .framer-b1h00r, .framer-L4Ol2 .framer-xvpmcz, .framer-L4Ol2 .framer-bhxjbm, .framer-L4Ol2 .framer-shgt06, .framer-L4Ol2 .framer-1u0smxq, .framer-L4Ol2 .framer-1ktpm62, .framer-L4Ol2 .framer-1x0r8fu, .framer-L4Ol2 .framer-1u8rn6a, .framer-L4Ol2 .framer-ehux0c, .framer-L4Ol2 .framer-1ut358e, .framer-L4Ol2 .framer-18gdm7, .framer-L4Ol2 .framer-duavwi, .framer-L4Ol2 .framer-t3mgvt, .framer-L4Ol2 .framer-11p8r8v, .framer-L4Ol2 .framer-d0mbjv, .framer-L4Ol2 .framer-pohwad, .framer-L4Ol2 .framer-1py8b74, .framer-L4Ol2 .framer-fsj321, .framer-L4Ol2 .framer-awdh8o, .framer-L4Ol2 .framer-o2wzvh { gap: 0px; } .framer-L4Ol2.framer-1nhvgtx > *, .framer-L4Ol2 .framer-1dqrsv3 > *, .framer-L4Ol2 .framer-19918aa > *, .framer-L4Ol2 .framer-1ldp2z2 > *, .framer-L4Ol2 .framer-5z7w6z > *, .framer-L4Ol2 .framer-1uv6w17 > *, .framer-L4Ol2 .framer-u4n6wb > *, .framer-L4Ol2 .framer-1y8t6hs > *, .framer-L4Ol2 .framer-1x0r8fu > *, .framer-L4Ol2 .framer-1u8rn6a > *, .framer-L4Ol2 .framer-duavwi > *, .framer-L4Ol2 .framer-t3mgvt > *, .framer-L4Ol2 .framer-1py8b74 > *, .framer-L4Ol2 .framer-fsj321 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-L4Ol2.framer-1nhvgtx > :first-child, .framer-L4Ol2 .framer-1dqrsv3 > :first-child, .framer-L4Ol2 .framer-19918aa > :first-child, .framer-L4Ol2 .framer-12himjd > :first-child, .framer-L4Ol2 .framer-1a8xh9l > :first-child, .framer-L4Ol2 .framer-oigej0 > :first-child, .framer-L4Ol2 .framer-1ldp2z2 > :first-child, .framer-L4Ol2 .framer-1qfwfgm > :first-child, .framer-L4Ol2 .framer-151vnqm > :first-child, .framer-L4Ol2 .framer-p56mtq > :first-child, .framer-L4Ol2 .framer-eaaftf > :first-child, .framer-L4Ol2 .framer-1eqh54j > :first-child, .framer-L4Ol2 .framer-1e4328m > :first-child, .framer-L4Ol2 .framer-2x8c62 > :first-child, .framer-L4Ol2 .framer-1oyfhej > :first-child, .framer-L4Ol2 .framer-w4bmf6 > :first-child, .framer-L4Ol2 .framer-gy8irn > :first-child, .framer-L4Ol2 .framer-10sw0fq > :first-child, .framer-L4Ol2 .framer-ujy8f9 > :first-child, .framer-L4Ol2 .framer-1jpffz5 > :first-child, .framer-L4Ol2 .framer-5z7w6z > :first-child, .framer-L4Ol2 .framer-1xighqg > :first-child, .framer-L4Ol2 .framer-1uv6w17 > :first-child, .framer-L4Ol2 .framer-1h0r9m3 > :first-child, .framer-L4Ol2 .framer-u4n6wb > :first-child, .framer-L4Ol2 .framer-xuec9y > :first-child, .framer-L4Ol2 .framer-1y8t6hs > :first-child, .framer-L4Ol2 .framer-1bsujkg > :first-child, .framer-L4Ol2 .framer-b1h00r > :first-child, .framer-L4Ol2 .framer-bhxjbm > :first-child, .framer-L4Ol2 .framer-shgt06 > :first-child, .framer-L4Ol2 .framer-1ktpm62 > :first-child, .framer-L4Ol2 .framer-1x0r8fu > :first-child, .framer-L4Ol2 .framer-1u8rn6a > :first-child, .framer-L4Ol2 .framer-ehux0c > :first-child, .framer-L4Ol2 .framer-1ut358e > :first-child, .framer-L4Ol2 .framer-18gdm7 > :first-child, .framer-L4Ol2 .framer-duavwi > :first-child, .framer-L4Ol2 .framer-t3mgvt > :first-child, .framer-L4Ol2 .framer-11p8r8v > :first-child, .framer-L4Ol2 .framer-d0mbjv > :first-child, .framer-L4Ol2 .framer-pohwad > :first-child, .framer-L4Ol2 .framer-1py8b74 > :first-child, .framer-L4Ol2 .framer-fsj321 > :first-child, .framer-L4Ol2 .framer-awdh8o > :first-child, .framer-L4Ol2 .framer-o2wzvh > :first-child { margin-top: 0px; } .framer-L4Ol2.framer-1nhvgtx > :last-child, .framer-L4Ol2 .framer-1dqrsv3 > :last-child, .framer-L4Ol2 .framer-19918aa > :last-child, .framer-L4Ol2 .framer-12himjd > :last-child, .framer-L4Ol2 .framer-1a8xh9l > :last-child, .framer-L4Ol2 .framer-oigej0 > :last-child, .framer-L4Ol2 .framer-1ldp2z2 > :last-child, .framer-L4Ol2 .framer-1qfwfgm > :last-child, .framer-L4Ol2 .framer-151vnqm > :last-child, .framer-L4Ol2 .framer-p56mtq > :last-child, .framer-L4Ol2 .framer-eaaftf > :last-child, .framer-L4Ol2 .framer-1eqh54j > :last-child, .framer-L4Ol2 .framer-1e4328m > :last-child, .framer-L4Ol2 .framer-2x8c62 > :last-child, .framer-L4Ol2 .framer-1oyfhej > :last-child, .framer-L4Ol2 .framer-w4bmf6 > :last-child, .framer-L4Ol2 .framer-gy8irn > :last-child, .framer-L4Ol2 .framer-10sw0fq > :last-child, .framer-L4Ol2 .framer-ujy8f9 > :last-child, .framer-L4Ol2 .framer-1jpffz5 > :last-child, .framer-L4Ol2 .framer-5z7w6z > :last-child, .framer-L4Ol2 .framer-1xighqg > :last-child, .framer-L4Ol2 .framer-1uv6w17 > :last-child, .framer-L4Ol2 .framer-1h0r9m3 > :last-child, .framer-L4Ol2 .framer-u4n6wb > :last-child, .framer-L4Ol2 .framer-xuec9y > :last-child, .framer-L4Ol2 .framer-1y8t6hs > :last-child, .framer-L4Ol2 .framer-1bsujkg > :last-child, .framer-L4Ol2 .framer-b1h00r > :last-child, .framer-L4Ol2 .framer-bhxjbm > :last-child, .framer-L4Ol2 .framer-shgt06 > :last-child, .framer-L4Ol2 .framer-1ktpm62 > :last-child, .framer-L4Ol2 .framer-1x0r8fu > :last-child, .framer-L4Ol2 .framer-1u8rn6a > :last-child, .framer-L4Ol2 .framer-ehux0c > :last-child, .framer-L4Ol2 .framer-1ut358e > :last-child, .framer-L4Ol2 .framer-18gdm7 > :last-child, .framer-L4Ol2 .framer-duavwi > :last-child, .framer-L4Ol2 .framer-t3mgvt > :last-child, .framer-L4Ol2 .framer-11p8r8v > :last-child, .framer-L4Ol2 .framer-d0mbjv > :last-child, .framer-L4Ol2 .framer-pohwad > :last-child, .framer-L4Ol2 .framer-1py8b74 > :last-child, .framer-L4Ol2 .framer-fsj321 > :last-child, .framer-L4Ol2 .framer-awdh8o > :last-child, .framer-L4Ol2 .framer-o2wzvh > :last-child { margin-bottom: 0px; } .framer-L4Ol2 .framer-12himjd > *, .framer-L4Ol2 .framer-151vnqm > *, .framer-L4Ol2 .framer-eaaftf > *, .framer-L4Ol2 .framer-w4bmf6 > *, .framer-L4Ol2 .framer-b1h00r > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-L4Ol2 .framer-1wlmkbi > *, .framer-L4Ol2 .framer-ns7r8s > *, .framer-L4Ol2 .framer-16qpvf7 > *, .framer-L4Ol2 .framer-1cocrqc > *, .framer-L4Ol2 .framer-siz291 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-L4Ol2 .framer-1wlmkbi > :first-child, .framer-L4Ol2 .framer-1rwv0ih > :first-child, .framer-L4Ol2 .framer-r396s6 > :first-child, .framer-L4Ol2 .framer-b84530 > :first-child, .framer-L4Ol2 .framer-wgmx77 > :first-child, .framer-L4Ol2 .framer-1ioz6uq > :first-child, .framer-L4Ol2 .framer-1gunz7n > :first-child, .framer-L4Ol2 .framer-4gby2s > :first-child, .framer-L4Ol2 .framer-r8d7tv > :first-child, .framer-L4Ol2 .framer-14gfisw > :first-child, .framer-L4Ol2 .framer-cwd5rl > :first-child, .framer-L4Ol2 .framer-123u2j4 > :first-child, .framer-L4Ol2 .framer-10ft6e7 > :first-child, .framer-L4Ol2 .framer-1dgg1mi > :first-child, .framer-L4Ol2 .framer-ns7r8s > :first-child, .framer-L4Ol2 .framer-pyty69 > :first-child, .framer-L4Ol2 .framer-16qpvf7 > :first-child, .framer-L4Ol2 .framer-1u2r2mr > :first-child, .framer-L4Ol2 .framer-jhiz61 > :first-child, .framer-L4Ol2 .framer-1cocrqc > :first-child, .framer-L4Ol2 .framer-1qwq91q > :first-child, .framer-L4Ol2 .framer-siz291 > :first-child, .framer-L4Ol2 .framer-wvsave > :first-child, .framer-L4Ol2 .framer-xvpmcz > :first-child, .framer-L4Ol2 .framer-1u0smxq > :first-child { margin-left: 0px; } .framer-L4Ol2 .framer-1wlmkbi > :last-child, .framer-L4Ol2 .framer-1rwv0ih > :last-child, .framer-L4Ol2 .framer-r396s6 > :last-child, .framer-L4Ol2 .framer-b84530 > :last-child, .framer-L4Ol2 .framer-wgmx77 > :last-child, .framer-L4Ol2 .framer-1ioz6uq > :last-child, .framer-L4Ol2 .framer-1gunz7n > :last-child, .framer-L4Ol2 .framer-4gby2s > :last-child, .framer-L4Ol2 .framer-r8d7tv > :last-child, .framer-L4Ol2 .framer-14gfisw > :last-child, .framer-L4Ol2 .framer-cwd5rl > :last-child, .framer-L4Ol2 .framer-123u2j4 > :last-child, .framer-L4Ol2 .framer-10ft6e7 > :last-child, .framer-L4Ol2 .framer-1dgg1mi > :last-child, .framer-L4Ol2 .framer-ns7r8s > :last-child, .framer-L4Ol2 .framer-pyty69 > :last-child, .framer-L4Ol2 .framer-16qpvf7 > :last-child, .framer-L4Ol2 .framer-1u2r2mr > :last-child, .framer-L4Ol2 .framer-jhiz61 > :last-child, .framer-L4Ol2 .framer-1cocrqc > :last-child, .framer-L4Ol2 .framer-1qwq91q > :last-child, .framer-L4Ol2 .framer-siz291 > :last-child, .framer-L4Ol2 .framer-wvsave > :last-child, .framer-L4Ol2 .framer-xvpmcz > :last-child, .framer-L4Ol2 .framer-1u0smxq > :last-child { margin-right: 0px; } .framer-L4Ol2 .framer-1a8xh9l > *, .framer-L4Ol2 .framer-1oyfhej > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-L4Ol2 .framer-oigej0 > *, .framer-L4Ol2 .framer-1ktpm62 > *, .framer-L4Ol2 .framer-ehux0c > *, .framer-L4Ol2 .framer-18gdm7 > *, .framer-L4Ol2 .framer-11p8r8v > *, .framer-L4Ol2 .framer-pohwad > *, .framer-L4Ol2 .framer-awdh8o > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-L4Ol2 .framer-1qfwfgm > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-L4Ol2 .framer-1rwv0ih > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-L4Ol2 .framer-r396s6 > *, .framer-L4Ol2 .framer-b84530 > *, .framer-L4Ol2 .framer-wgmx77 > *, .framer-L4Ol2 .framer-1ioz6uq > *, .framer-L4Ol2 .framer-cwd5rl > *, .framer-L4Ol2 .framer-123u2j4 > *, .framer-L4Ol2 .framer-wvsave > *, .framer-L4Ol2 .framer-xvpmcz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-L4Ol2 .framer-p56mtq > *, .framer-L4Ol2 .framer-2x8c62 > *, .framer-L4Ol2 .framer-ujy8f9 > *, .framer-L4Ol2 .framer-shgt06 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-L4Ol2 .framer-1eqh54j > *, .framer-L4Ol2 .framer-1e4328m > *, .framer-L4Ol2 .framer-gy8irn > *, .framer-L4Ol2 .framer-10sw0fq > *, .framer-L4Ol2 .framer-1jpffz5 > *, .framer-L4Ol2 .framer-bhxjbm > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-L4Ol2 .framer-1gunz7n > *, .framer-L4Ol2 .framer-4gby2s > *, .framer-L4Ol2 .framer-r8d7tv > *, .framer-L4Ol2 .framer-14gfisw > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-L4Ol2 .framer-10ft6e7 > *, .framer-L4Ol2 .framer-1u2r2mr > *, .framer-L4Ol2 .framer-1u0smxq > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-L4Ol2 .framer-1dgg1mi > *, .framer-L4Ol2 .framer-pyty69 > *, .framer-L4Ol2 .framer-jhiz61 > *, .framer-L4Ol2 .framer-1qwq91q > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-L4Ol2 .framer-1xighqg > *, .framer-L4Ol2 .framer-1h0r9m3 > *, .framer-L4Ol2 .framer-xuec9y > *, .framer-L4Ol2 .framer-1bsujkg > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-L4Ol2 .framer-1ut358e > *, .framer-L4Ol2 .framer-d0mbjv > *, .framer-L4Ol2 .framer-o2wzvh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-L4Ol2[data-border=\"true\"]::after, .framer-L4Ol2 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-L4Ol2.framer-1nhvgtx { width: 810px; } .framer-L4Ol2 .framer-19918aa { justify-content: flex-start; } .framer-L4Ol2 .framer-12himjd { gap: 50px; } .framer-L4Ol2 .framer-1wlmkbi { flex-direction: column; gap: 48px; } .framer-L4Ol2 .framer-1a8xh9l { align-content: center; align-items: center; flex: none; max-width: 600px; width: 100%; } .framer-L4Ol2 .framer-oigej0 { align-content: center; align-items: center; } .framer-L4Ol2 .framer-1ldp2z2 { flex: none; width: 100%; } .framer-L4Ol2 .framer-wjjx0i { height: var(--framer-aspect-ratio-supported, 490px); } .framer-L4Ol2 .framer-p5im0e-container { max-width: 100%; } .framer-L4Ol2 .framer-r396s6, .framer-L4Ol2 .framer-wgmx77, .framer-L4Ol2 .framer-cwd5rl, .framer-L4Ol2 .framer-wvsave { padding: 100px 0px 100px 0px; } .framer-L4Ol2 .framer-151vnqm { padding: 0px 40px 0px 40px; } .framer-L4Ol2 .framer-eaaftf, .framer-L4Ol2 .framer-w4bmf6, .framer-L4Ol2 .framer-b1h00r { gap: 50px; padding: 0px 40px 0px 40px; } .framer-L4Ol2 .framer-1jpffz5, .framer-L4Ol2 .framer-10ft6e7, .framer-L4Ol2 .framer-1u2r2mr { gap: 25px; } .framer-L4Ol2 .framer-ok41su, .framer-L4Ol2 .framer-1tln4fi, .framer-L4Ol2 .framer-4eq8zd, .framer-L4Ol2 .framer-1f8tx99 { padding: 25px; } .framer-L4Ol2 .framer-1u0smxq { gap: 15px; } .framer-L4Ol2 .framer-1x0r8fu, .framer-L4Ol2 .framer-duavwi, .framer-L4Ol2 .framer-1py8b74 { height: 197px; min-height: unset; } .framer-L4Ol2 .framer-1u8rn6a, .framer-L4Ol2 .framer-fsj321 { padding: 0px; } .framer-L4Ol2 .framer-18gdm7, .framer-L4Ol2 .framer-pohwad { align-self: stretch; height: auto; } .framer-L4Ol2 .framer-t3mgvt { flex: 1 0 0px; height: 1px; padding: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-L4Ol2 .framer-12himjd, .framer-L4Ol2 .framer-1wlmkbi, .framer-L4Ol2 .framer-eaaftf, .framer-L4Ol2 .framer-w4bmf6, .framer-L4Ol2 .framer-1jpffz5, .framer-L4Ol2 .framer-10ft6e7, .framer-L4Ol2 .framer-1u2r2mr, .framer-L4Ol2 .framer-b1h00r, .framer-L4Ol2 .framer-1u0smxq { gap: 0px; } .framer-L4Ol2 .framer-12himjd > *, .framer-L4Ol2 .framer-eaaftf > *, .framer-L4Ol2 .framer-w4bmf6 > *, .framer-L4Ol2 .framer-b1h00r > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-L4Ol2 .framer-12himjd > :first-child, .framer-L4Ol2 .framer-1wlmkbi > :first-child, .framer-L4Ol2 .framer-eaaftf > :first-child, .framer-L4Ol2 .framer-w4bmf6 > :first-child, .framer-L4Ol2 .framer-1jpffz5 > :first-child, .framer-L4Ol2 .framer-b1h00r > :first-child { margin-top: 0px; } .framer-L4Ol2 .framer-12himjd > :last-child, .framer-L4Ol2 .framer-1wlmkbi > :last-child, .framer-L4Ol2 .framer-eaaftf > :last-child, .framer-L4Ol2 .framer-w4bmf6 > :last-child, .framer-L4Ol2 .framer-1jpffz5 > :last-child, .framer-L4Ol2 .framer-b1h00r > :last-child { margin-bottom: 0px; } .framer-L4Ol2 .framer-1wlmkbi > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-L4Ol2 .framer-1jpffz5 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-L4Ol2 .framer-10ft6e7 > *, .framer-L4Ol2 .framer-1u2r2mr > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-L4Ol2 .framer-10ft6e7 > :first-child, .framer-L4Ol2 .framer-1u2r2mr > :first-child, .framer-L4Ol2 .framer-1u0smxq > :first-child { margin-left: 0px; } .framer-L4Ol2 .framer-10ft6e7 > :last-child, .framer-L4Ol2 .framer-1u2r2mr > :last-child, .framer-L4Ol2 .framer-1u0smxq > :last-child { margin-right: 0px; } .framer-L4Ol2 .framer-1u0smxq > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }}\",\"@media (max-width: 809px) { .framer-L4Ol2.framer-1nhvgtx { width: 390px; } .framer-L4Ol2 .framer-1dqrsv3 { padding: 70px 0px 0px 0px; } .framer-L4Ol2 .framer-19918aa { padding: 20px 0px 20px 0px; } .framer-L4Ol2 .framer-12himjd { gap: 40px; padding: 48px 20px 58px 20px; } .framer-L4Ol2 .framer-1wlmkbi { flex-direction: column; gap: 40px; } .framer-L4Ol2 .framer-1a8xh9l { align-content: center; align-items: center; flex: none; gap: 20px; width: 100%; } .framer-L4Ol2 .framer-oigej0, .framer-L4Ol2 .framer-p56mtq, .framer-L4Ol2 .framer-2x8c62, .framer-L4Ol2 .framer-10sw0fq, .framer-L4Ol2 .framer-ujy8f9, .framer-L4Ol2 .framer-shgt06 { gap: 10px; } .framer-L4Ol2 .framer-nqe8kk-container { width: 100%; } .framer-L4Ol2 .framer-1ldp2z2 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; padding: 6px; width: 100%; } .framer-L4Ol2 .framer-wjjx0i { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; height: var(--framer-aspect-ratio-supported, 235px); } .framer-L4Ol2 .framer-1qfwfgm { gap: 20px; } .framer-L4Ol2 .framer-r396s6, .framer-L4Ol2 .framer-wgmx77, .framer-L4Ol2 .framer-cwd5rl, .framer-L4Ol2 .framer-wvsave { padding: 80px 0px 80px 0px; } .framer-L4Ol2 .framer-151vnqm, .framer-L4Ol2 .framer-eaaftf, .framer-L4Ol2 .framer-w4bmf6, .framer-L4Ol2 .framer-b1h00r { gap: 40px; padding: 0px 20px 0px 20px; } .framer-L4Ol2 .framer-1e4328m, .framer-L4Ol2 .framer-1oyfhej, .framer-L4Ol2 .framer-1jpffz5, .framer-L4Ol2 .framer-bhxjbm { gap: 15px; } .framer-L4Ol2 .framer-1gunz7n { flex-direction: column; gap: 15px; order: 0; } .framer-L4Ol2 .framer-14lsq9m-container, .framer-L4Ol2 .framer-1d1j3oe-container, .framer-L4Ol2 .framer-dkog83-container, .framer-L4Ol2 .framer-1q0ja8w-container, .framer-L4Ol2 .framer-1bw3rf3-container, .framer-L4Ol2 .framer-1e44uxb-container, .framer-L4Ol2 .framer-od323j-container, .framer-L4Ol2 .framer-wpl6zj-container, .framer-L4Ol2 .framer-ldowqv-container, .framer-L4Ol2 .framer-qvhtgc-container, .framer-L4Ol2 .framer-1ylw7v2-container, .framer-L4Ol2 .framer-yb8nbc-container, .framer-L4Ol2 .framer-5z7w6z, .framer-L4Ol2 .framer-1uv6w17, .framer-L4Ol2 .framer-u4n6wb, .framer-L4Ol2 .framer-1y8t6hs { flex: none; width: 100%; } .framer-L4Ol2 .framer-4gby2s { flex-direction: column; gap: 15px; order: 1; } .framer-L4Ol2 .framer-r8d7tv { flex-direction: column; gap: 15px; order: 2; } .framer-L4Ol2 .framer-14gfisw { flex-direction: column; gap: 15px; order: 3; } .framer-L4Ol2 .framer-10ft6e7, .framer-L4Ol2 .framer-1u2r2mr { flex-direction: column; gap: 15px; } .framer-L4Ol2 .framer-ok41su, .framer-L4Ol2 .framer-1tln4fi, .framer-L4Ol2 .framer-4eq8zd, .framer-L4Ol2 .framer-1f8tx99 { height: 330px; padding: 15px; } .framer-L4Ol2 .framer-1u0smxq { flex-direction: column; gap: 20px; } .framer-L4Ol2 .framer-1ktpm62, .framer-L4Ol2 .framer-18gdm7, .framer-L4Ol2 .framer-pohwad { flex: none; gap: 15px; width: 100%; } .framer-L4Ol2 .framer-1ut358e, .framer-L4Ol2 .framer-d0mbjv, .framer-L4Ol2 .framer-o2wzvh { gap: 6px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-L4Ol2 .framer-12himjd, .framer-L4Ol2 .framer-1wlmkbi, .framer-L4Ol2 .framer-1a8xh9l, .framer-L4Ol2 .framer-oigej0, .framer-L4Ol2 .framer-1qfwfgm, .framer-L4Ol2 .framer-151vnqm, .framer-L4Ol2 .framer-p56mtq, .framer-L4Ol2 .framer-eaaftf, .framer-L4Ol2 .framer-1e4328m, .framer-L4Ol2 .framer-2x8c62, .framer-L4Ol2 .framer-1oyfhej, .framer-L4Ol2 .framer-1gunz7n, .framer-L4Ol2 .framer-4gby2s, .framer-L4Ol2 .framer-r8d7tv, .framer-L4Ol2 .framer-14gfisw, .framer-L4Ol2 .framer-w4bmf6, .framer-L4Ol2 .framer-10sw0fq, .framer-L4Ol2 .framer-ujy8f9, .framer-L4Ol2 .framer-1jpffz5, .framer-L4Ol2 .framer-10ft6e7, .framer-L4Ol2 .framer-1u2r2mr, .framer-L4Ol2 .framer-b1h00r, .framer-L4Ol2 .framer-bhxjbm, .framer-L4Ol2 .framer-shgt06, .framer-L4Ol2 .framer-1u0smxq, .framer-L4Ol2 .framer-1ktpm62, .framer-L4Ol2 .framer-1ut358e, .framer-L4Ol2 .framer-18gdm7, .framer-L4Ol2 .framer-d0mbjv, .framer-L4Ol2 .framer-pohwad, .framer-L4Ol2 .framer-o2wzvh { gap: 0px; } .framer-L4Ol2 .framer-12himjd > *, .framer-L4Ol2 .framer-1wlmkbi > *, .framer-L4Ol2 .framer-151vnqm > *, .framer-L4Ol2 .framer-eaaftf > *, .framer-L4Ol2 .framer-w4bmf6 > *, .framer-L4Ol2 .framer-b1h00r > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-L4Ol2 .framer-12himjd > :first-child, .framer-L4Ol2 .framer-1wlmkbi > :first-child, .framer-L4Ol2 .framer-1a8xh9l > :first-child, .framer-L4Ol2 .framer-oigej0 > :first-child, .framer-L4Ol2 .framer-1qfwfgm > :first-child, .framer-L4Ol2 .framer-151vnqm > :first-child, .framer-L4Ol2 .framer-p56mtq > :first-child, .framer-L4Ol2 .framer-eaaftf > :first-child, .framer-L4Ol2 .framer-1e4328m > :first-child, .framer-L4Ol2 .framer-2x8c62 > :first-child, .framer-L4Ol2 .framer-1oyfhej > :first-child, .framer-L4Ol2 .framer-1gunz7n > :first-child, .framer-L4Ol2 .framer-4gby2s > :first-child, .framer-L4Ol2 .framer-r8d7tv > :first-child, .framer-L4Ol2 .framer-14gfisw > :first-child, .framer-L4Ol2 .framer-w4bmf6 > :first-child, .framer-L4Ol2 .framer-10sw0fq > :first-child, .framer-L4Ol2 .framer-ujy8f9 > :first-child, .framer-L4Ol2 .framer-1jpffz5 > :first-child, .framer-L4Ol2 .framer-10ft6e7 > :first-child, .framer-L4Ol2 .framer-1u2r2mr > :first-child, .framer-L4Ol2 .framer-b1h00r > :first-child, .framer-L4Ol2 .framer-bhxjbm > :first-child, .framer-L4Ol2 .framer-shgt06 > :first-child, .framer-L4Ol2 .framer-1u0smxq > :first-child, .framer-L4Ol2 .framer-1ktpm62 > :first-child, .framer-L4Ol2 .framer-1ut358e > :first-child, .framer-L4Ol2 .framer-18gdm7 > :first-child, .framer-L4Ol2 .framer-d0mbjv > :first-child, .framer-L4Ol2 .framer-pohwad > :first-child, .framer-L4Ol2 .framer-o2wzvh > :first-child { margin-top: 0px; } .framer-L4Ol2 .framer-12himjd > :last-child, .framer-L4Ol2 .framer-1wlmkbi > :last-child, .framer-L4Ol2 .framer-1a8xh9l > :last-child, .framer-L4Ol2 .framer-oigej0 > :last-child, .framer-L4Ol2 .framer-1qfwfgm > :last-child, .framer-L4Ol2 .framer-151vnqm > :last-child, .framer-L4Ol2 .framer-p56mtq > :last-child, .framer-L4Ol2 .framer-eaaftf > :last-child, .framer-L4Ol2 .framer-1e4328m > :last-child, .framer-L4Ol2 .framer-2x8c62 > :last-child, .framer-L4Ol2 .framer-1oyfhej > :last-child, .framer-L4Ol2 .framer-1gunz7n > :last-child, .framer-L4Ol2 .framer-4gby2s > :last-child, .framer-L4Ol2 .framer-r8d7tv > :last-child, .framer-L4Ol2 .framer-14gfisw > :last-child, .framer-L4Ol2 .framer-w4bmf6 > :last-child, .framer-L4Ol2 .framer-10sw0fq > :last-child, .framer-L4Ol2 .framer-ujy8f9 > :last-child, .framer-L4Ol2 .framer-1jpffz5 > :last-child, .framer-L4Ol2 .framer-10ft6e7 > :last-child, .framer-L4Ol2 .framer-1u2r2mr > :last-child, .framer-L4Ol2 .framer-b1h00r > :last-child, .framer-L4Ol2 .framer-bhxjbm > :last-child, .framer-L4Ol2 .framer-shgt06 > :last-child, .framer-L4Ol2 .framer-1u0smxq > :last-child, .framer-L4Ol2 .framer-1ktpm62 > :last-child, .framer-L4Ol2 .framer-1ut358e > :last-child, .framer-L4Ol2 .framer-18gdm7 > :last-child, .framer-L4Ol2 .framer-d0mbjv > :last-child, .framer-L4Ol2 .framer-pohwad > :last-child, .framer-L4Ol2 .framer-o2wzvh > :last-child { margin-bottom: 0px; } .framer-L4Ol2 .framer-1a8xh9l > *, .framer-L4Ol2 .framer-1qfwfgm > *, .framer-L4Ol2 .framer-1u0smxq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-L4Ol2 .framer-oigej0 > *, .framer-L4Ol2 .framer-p56mtq > *, .framer-L4Ol2 .framer-2x8c62 > *, .framer-L4Ol2 .framer-10sw0fq > *, .framer-L4Ol2 .framer-ujy8f9 > *, .framer-L4Ol2 .framer-shgt06 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-L4Ol2 .framer-1e4328m > *, .framer-L4Ol2 .framer-1oyfhej > *, .framer-L4Ol2 .framer-1gunz7n > *, .framer-L4Ol2 .framer-4gby2s > *, .framer-L4Ol2 .framer-r8d7tv > *, .framer-L4Ol2 .framer-14gfisw > *, .framer-L4Ol2 .framer-1jpffz5 > *, .framer-L4Ol2 .framer-10ft6e7 > *, .framer-L4Ol2 .framer-1u2r2mr > *, .framer-L4Ol2 .framer-bhxjbm > *, .framer-L4Ol2 .framer-1ktpm62 > *, .framer-L4Ol2 .framer-18gdm7 > *, .framer-L4Ol2 .framer-pohwad > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-L4Ol2 .framer-1ut358e > *, .framer-L4Ol2 .framer-d0mbjv > *, .framer-L4Ol2 .framer-o2wzvh > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6460.05\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"p33DDuvbj\":{\"layout\":[\"fixed\",\"auto\"]},\"JAwSEq2dl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"N95B2ORYj\":{\"pattern\":\":N95B2ORYj\",\"name\":\"testimonial\"},\"K1Xai14oS\":{\"pattern\":\":K1Xai14oS\",\"name\":\"security-section\"}}\n * @framerResponsiveScreen\n */const FramerNYOswpyFm=withCSS(Component,css,\"framer-L4Ol2\");export default FramerNYOswpyFm;FramerNYOswpyFm.displayName=\"Home\";FramerNYOswpyFm.defaultProps={height:6460.05,width:1200};addFonts(FramerNYOswpyFm,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...NavbarFonts,...VideoFonts,...EMAILFORMGOVDASHFonts,...PlayButtonFonts,...YouTubeFonts,...TickerFonts,...ToggleDashboardFonts,...ButtonsFonts,...FeatureCardFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNYOswpyFm\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"{\\\"N95B2ORYj\\\":{\\\"pattern\\\":\\\":N95B2ORYj\\\",\\\"name\\\":\\\"testimonial\\\"},\\\"K1Xai14oS\\\":{\\\"pattern\\\":\\\":K1Xai14oS\\\",\\\"name\\\":\\\"security-section\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"6460.05\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p33DDuvbj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JAwSEq2dl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "l", "cubicBezier", "__rest", "e", "t", "r", "n", "e", "t", "r", "n", "calcGeneratorVelocity", "t", "s", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "o", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "noopReturn", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "caption", "height", "iconName", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "yp9eSYlys", "JrANoY6PD", "iiwkwLqSJ", "OhifK2oCP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerDCzAHRRZo", "withCSS", "DCzAHRRZo_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "icon", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "qeEFXaq9P", "ELtDw7wZu", "zFFAytg5H", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap150bg8d", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerMKo6NvC0W", "withCSS", "MKo6NvC0W_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ToggleButtonComponentFonts", "getFonts", "MKo6NvC0W_default", "VideoFonts", "Video", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "SmartComponentScopedContainer", "MotionDivWithFXWithOptimizedAppearEffect", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "transition2", "animation", "animation1", "transition3", "animation2", "animation3", "transition4", "animation4", "animation5", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1aepecc", "args", "onAppear1g97p3m", "onAppear102us02", "onAppearpq23k6", "onAppear1qi4uaj", "onAppeara5j7zx", "onAppear17gel65", "onAppear1e7ums0", "zFFAytg5Hhvnq8y", "zFFAytg5H128fpy4", "zFFAytg5Hd5cgya", "zFFAytg5H1fwhryo", "zFFAytg5H1fsvc6d", "zFFAytg5Hin41ke", "zFFAytg5Hvw8mj", "zFFAytg5H1mipo9k", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FrameroJYFKv7qs", "withCSS", "oJYFKv7qs_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UAUsV7vNM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ileuao", "args", "onAppear1a2vbif", "CycleVariantState", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "SVG", "css", "FramerXnOj97bsd", "withCSS", "XnOj97bsd_default", "addPropertyControls", "ControlType", "addFonts", "useCurrentLocation", "_routes_currentRouteId", "navigate", "routes", "useRouter", "currentRouteId", "useCurrentRouteId", "path", "_Object_entries", "routeID", "acc", "item", "_item_", "addPropertyControls", "EmailForm", "ControlType", "props", "currentLocation", "setCurrentLocation", "useCurrentLocation", "email", "setEmail", "e", "handleSubmit", "formStyle", "inputStyle", "buttonStyle", "customButtonStyle", "wrapperFrameStyle", "style", "u", "p", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavbarFonts", "getFonts", "ZThDjLQrF_default", "ContainerWithFX", "withFX", "Container", "VideoFonts", "Video", "EMAILFORMGOVDASHFonts", "EmailForm", "EMAILFORMGOVDASHWithSetEmailnqe8kk", "withCodeBoundaryForOverrides", "withSetEmail", "PlayButtonFonts", "XnOj97bsd_default", "YouTubeFonts", "Youtube", "TickerFonts", "Ticker", "ToggleDashboardFonts", "oJYFKv7qs_default", "ButtonsFonts", "Accb6ZncP_default", "FeatureCardFonts", "DCzAHRRZo_default", "RichTextWithHighlightColor11wze9nj", "RichText2", "withHighlightColor1", "RichTextWithHighlightColor1rgs85m", "RichTextWithHighlightColor11ibvhib", "FooterFonts", "yXESNDQwC_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "t", "transformTemplate2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "UAUsV7vNM3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "usePreloadLocalizedValues", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "ContainerWithFX", "PropertyOverrides2", "ZThDjLQrF_default", "Image2", "Container", "Video", "getLocalizedValue", "x", "RichText2", "EMAILFORMGOVDASHWithSetEmailnqe8kk", "getLoadingLazyAtYPosition", "l", "XnOj97bsd_default", "AnimatePresence", "Ga", "Youtube", "Ticker", "oJYFKv7qs_default", "ResolveLinks", "resolvedLinks", "Accb6ZncP_default", "DCzAHRRZo_default", "resolvedLinks1", "RichTextWithHighlightColor11wze9nj", "RichTextWithHighlightColor1rgs85m", "RichTextWithHighlightColor11ibvhib", "yXESNDQwC_default", "css", "FramerNYOswpyFm", "withCSS", "NYOswpyFm_default", "addFonts", "NavbarFonts", "VideoFonts", "EMAILFORMGOVDASHFonts", "PlayButtonFonts", "YouTubeFonts", "TickerFonts", "ToggleDashboardFonts", "ButtonsFonts", "FeatureCardFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
