{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.13.1/dist/index.es.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/z9swC8OfWIQM1iXs4T0A/m3HALFwuo75shQ2uR0H2/C1Oe5BxJE.js", "ssg:https://framerusercontent.com/modules/n4QTQF2VDUWFHEmH44Bf/3NveeQlG7pieqhc7Bpgz/pKLLiguTY.js", "ssg:https://framerusercontent.com/modules/duYrAWkB0NFF4uAzl1CD/8ktvFfQw5USRb2rhXoXZ/ggnnDQxGv.js", "ssg:https://framerusercontent.com/modules/ePwJPN2Rf9uzYe33Nc7L/wu5dfw6Vuy6ZFnzM3Mwf/IHu4k61fi.js", "ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/material-icons/Home.js@0.0.32", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js", "ssg:https://framerusercontent.com/modules/2NHYN7uNQLCATEfjbFvn/mCOM2uYok7LghnJQJa1W/JRqfhGLsz.js", "ssg:https://framerusercontent.com/modules/NoDEoLePqQHrsOmULDrq/cR5P8FRNHutcPhYqdxBP/ivJHgSaQl.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,progress as o,isFunction as i,defaults as s,isCubicBezier as r,isEasingGenerator as a,isEasingList as c,isNumber as l,time as f,noop as u,removeItem as d,mix as g,getEasingForSegment as m,isString as h,defaultOffset as p,fillOffset as v,velocityPerSecond as y,interpolate as w}from\"@motionone/utils\";import{Animation as E,getEasingFunction as b}from\"@motionone/animation\";import{__rest as S}from\"tslib\";import{invariant as A}from\"hey-listen\";import{pregenerateKeyframes as O,calcGeneratorVelocity as x,spring as V,glide as z}from\"@motionone/generators\";const W=new WeakMap;function getAnimationData(e){W.has(e)||W.set(e,{transforms:[],values:new Map});return W.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const L=[\"\",\"X\",\"Y\",\"Z\"];const T=[\"translate\",\"scale\",\"rotate\",\"skew\"];const D={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const M={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const k={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:M,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:M};const B=new Map;const asTransformCssVar=e=>`--motion-${e}`;const j=[\"x\",\"y\",\"z\"];T.forEach((e=>{L.forEach((t=>{j.push(e+t);B.set(asTransformCssVar(e+t),k[e])}))}));const compareTransformOrder=(e,t)=>j.indexOf(e)-j.indexOf(t);const P=new Set(j);const isTransform=e=>P.has(e);const addTransformToElement=(e,t)=>{D[t]&&(t=D[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const $=new Set;function registerCssVariable(e){if(!$.has(e)){$.add(e);try{const{syntax:t,initialValue:n}=B.has(e)?B.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const testAnimation=(e,t)=>document.createElement(\"div\").animate(e,t);const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]},{duration:.001}).finished),linearEasing:()=>{try{testAnimation({opacity:0},{easing:\"linear(0, 1)\"})}catch(e){return false}return true}};const R={};const H={};for(const e in C)H[e]=()=>{void 0===R[e]&&(R[e]=C[e]());return R[e]};const I=.015;const generateLinearEasingPoints=(e,t)=>{let n=\"\";const i=Math.round(t/I);for(let t=0;t<i;t++)n+=e(o(0,i-1,t))+\", \";return n.substring(0,n.length-2)};const convertEasing=(e,t)=>i(e)?H.linearEasing()?`linear(${generateLinearEasingPoints(e,t)})`:s.easing:r(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){D[e]&&(e=D[e]);return isTransform(e)?asTransformCssVar(e):e}const N={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=B.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const r=getDevToolsRecord();const d=false!==o.record&&r;let g;let{duration:m=s.duration,delay:h=s.delay,endDelay:p=s.endDelay,repeat:v=s.repeat,easing:y=s.easing,direction:w,offset:b,allowWebkitAcceleration:S=false}=o;const A=getAnimationData(e);const O=isTransform(t);let x=H.waapi();O&&addTransformToElement(e,t);const V=getStyleName(t);const z=getMotionValue(A.values,V);const W=B.get(V);stopAnimation(z.animation,!(a(y)&&z.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=N.get(e,V))&&void 0!==t?t:null===W||void 0===W?void 0:W.initialValue)&&void 0!==n?n:0};let s=hydrateKeyframes(keyframesList(n),readInitialValue);if(a(y)){const e=y.createAnimation(s,readInitialValue,O,V,z);y=e.easing;void 0!==e.keyframes&&(s=e.keyframes);void 0!==e.duration&&(m=e.duration)}isCssVar(V)&&(H.cssRegisterProperty()?registerCssVariable(V):x=false);O&&!H.linearEasing()&&(i(y)||c(y)&&y.some(i))&&(x=false);if(x){W&&(s=s.map((e=>l(e)?W.toDefaultUnit(e):e)));1!==s.length||H.partialKeyframes()&&!d||s.unshift(readInitialValue());const t={delay:f.ms(h),duration:f.ms(m),endDelay:f.ms(p),easing:c(y)?void 0:convertEasing(y,m),direction:w,iterations:v+1,fill:\"both\"};g=e.animate({[V]:s,offset:b,easing:c(y)?y.map((e=>convertEasing(e,m))):void 0},t);g.finished||(g.finished=new Promise(((e,t)=>{g.onfinish=e;g.oncancel=t})));const n=s[s.length-1];g.finished.then((()=>{N.set(e,V,n);g.cancel()})).catch(u);S||(g.playbackRate=1.000001)}else if(O){s=s.map((e=>\"string\"===typeof e?parseFloat(e):e));1===s.length&&s.unshift(parseFloat(readInitialValue()));const render=t=>{W&&(t=W.toDefaultUnit(t));N.set(e,V,t)};g=new E(render,s,Object.assign(Object.assign({},o),{duration:m,easing:y}))}else{const t=s[s.length-1];N.set(e,V,W&&l(t)?W.toDefaultUnit(t):t)}d&&r(e,t,s,{duration:m,delay:h,easing:y,repeat:v,offset:b},\"motion-one\");z.setAnimation(g);return g}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=s.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},F);const getActiveAnimation=e=>e.animations[0];const F={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return f.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(u));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=f.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const r=l(n)?n:getFromIndex(n,s);const a=Math.abs(r-i);let c=e*a;if(o){const t=s*e;const n=b(o);c=n(c/t)*t}return t+c}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return i(e)?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return l(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){d(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:g(i,s,o[r]),easing:m(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,i=S(t,[\"defaultOptions\"]);const r=[];const c=new Map;const l={};const f=new Map;let u=0;let d=0;let g=0;for(let t=0;t<e.length;t++){const o=e[t];if(h(o)){f.set(o,d);continue}if(!Array.isArray(o)){f.set(o.name,calcNextTime(d,o.at,u,f));continue}const[i,r,m={}]=o;void 0!==m.at&&(d=calcNextTime(d,m.at,u,f));let y=0;const w=resolveElements(i,l);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,c);for(const t in r){const i=getValueSequence(t,o);let c=keyframesList(r[t]);const l=getOptions(m,t);let{duration:f=n.duration||s.duration,easing:u=n.easing||s.easing}=l;if(a(u)){const e=isTransform(t);A(2===c.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=u.createAnimation(c,(()=>\"0\"),e);u=n.easing;void 0!==n.keyframes&&(c=n.keyframes);void 0!==n.duration&&(f=n.duration)}const h=resolveOption(m.delay,e,E)||0;const w=d+h;const b=w+f;let{offset:S=p(c.length)}=l;1===S.length&&0===S[0]&&(S[1]=1);const O=length-c.length;O>0&&v(S,O);1===c.length&&c.unshift(null);addKeyframes(i,c,u,S,w,b);y=Math.max(h+f,y);g=Math.max(b,g)}}u=d;d+=y}c.forEach(((e,t)=>{for(const a in e){const c=e[a];c.sort(compareByTime);const l=[];const f=[];const u=[];for(let e=0;e<c.length;e++){const{at:t,value:n,easing:i}=c[e];l.push(n);f.push(o(0,g,t));u.push(i||s.easing)}if(0!==f[0]){f.unshift(0);l.unshift(l[0]);u.unshift(\"linear\")}if(1!==f[f.length-1]){f.push(1);l.push(null)}r.push([t,a,l,Object.assign(Object.assign(Object.assign({},n),{duration:g,easing:u,offset:f}),i)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,O(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=x((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const U=createGeneratorEasing(V);const q=createGeneratorEasing(z);const K={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:s=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const r=resolveElements(e);const a=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=a.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);i(n)?a.set(e.target,n):c.unobserve(e.target)}else if(n){n(e);a.delete(e.target)}}))};const c=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof s?s:K[s]});r.forEach((e=>c.observe(e)));return()=>c.disconnect()}const G=new WeakMap;let _;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=G.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(_=new ResizeObserver(notifyAll))}function resizeElement(e,t){_||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=G.get(e);if(!n){n=new Set;G.set(e,n)}n.add(t);null===_||void 0===_?void 0:_.observe(e)}));return()=>{n.forEach((e=>{const n=G.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===_||void 0===_?void 0:_.unobserve(e))}))}}const Z=new Set;let X;function createWindowResizeHandler(){X=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};Z.forEach((e=>e(t)))};window.addEventListener(\"resize\",X)}function resizeWindow(e){Z.add(e);X||createWindowResizeHandler();return()=>{Z.delete(e);!Z.size&&X&&(X=void 0)}}function resize(e,t){return i(e)?resizeWindow(e):resizeElement(e,t)}const Y=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const J={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,i){const s=n[t];const{length:r,position:a}=J[t];const c=s.current;const l=n.time;s.current=e[\"scroll\"+a];s.scrollLength=e[\"scroll\"+r]-e[\"client\"+r];s.offset.length=0;s.offset[0]=0;s.offset[1]=s.scrollLength;s.progress=o(0,s.scrollLength,s.current);const f=i-l;s.velocity=f>Y?0:y(s.current-c,f)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Q={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const ee={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==ee[e]&&(e=ee[e]);if(h(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}l(e)&&(o=t*e);return n+o}const te=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:te;let s=0;let r=0;if(l(e))i=[e,e];else if(h(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,ee[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);r=resolveEdge(i[1],t);return s-r}const ne={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Q.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ne;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=w(p(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const s=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:i(t)?()=>t(n):scrubAnimation(t,n[s])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const oe=new WeakMap;const ie=new WeakMap;const se=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=S(t,[\"container\"]);let i=se.get(n);if(!i){i=new Set;se.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!oe.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};oe.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ie.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=oe.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=se.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=oe.get(n);oe.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ie.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let re;function processScheduledAnimations(){if(!re)return;const e=re.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);re=void 0}function scheduleAnimation(e){if(re)n(re,e);else{re=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){re&&d(re,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const ae={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=S(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const ce={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const le={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const fe={inView:ae,hover:ce,press:le};const ue=[\"initial\",\"animate\",...Object.keys(fe),\"exit\"];const de=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of ue)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},l=S(c,[\"transition\"]);const f=Object.assign({},l);function*animateUpdates(){var t,o;const s=l;l={};const r={};for(const n of ue){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){l[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(l),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===l[e]&&(l[e]=f[e]);if(hasChanged(s[e],l[e])){null!==(t=f[e])&&void 0!==t?t:f[e]=N.get(n,e);c.push(animateStyle(n,e,l[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=l;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(u)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in fe){const o=fe[t].isActive(e);const i=s[t];if(o&&!i)s[t]=fe[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>l,getOptions:()=>e,getContext:()=>r,mount:e=>{A(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;de.set(n,d);updateGestureSubscriptions();return()=>{de.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){D[o]&&(o=D[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const r=B.get(o);r&&(s=l(i)?r.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Q as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,q as glide,inView$1 as inView,de as mountedStates,resize,scroll,U as spring,stagger,N as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={CEwJ6ccVN:{hover:true},GRUAMmSSb:{hover:true},gxaDLeVdG:{hover:true},hkagECXAp:{hover:true},iPZ7OPYy8:{hover:true},JSqaY4dpm:{hover:true},kuLw6L0Cp:{hover:true},lI24_HN1f:{hover:true},mJiMBaD9k:{hover:true},nmPg9SnTq:{hover:true},ovLG5NtiG:{hover:true},pOCWfhTQY:{hover:true},pTqbHyt86:{hover:true},q765Ea4Ae:{hover:true},QuzFhSMq5:{hover:true},sUcqp6Y7O:{hover:true},T6ifpXFVj:{hover:true},uk4mbCSIj:{hover:true},ycfvlEzVN:{hover:true},YqtSfiP6c:{hover:true}};const cycleOrder=[\"iPZ7OPYy8\",\"pOCWfhTQY\",\"sUcqp6Y7O\",\"ycfvlEzVN\",\"uk4mbCSIj\",\"pTqbHyt86\",\"JSqaY4dpm\",\"mJiMBaD9k\",\"kuLw6L0Cp\",\"ovLG5NtiG\",\"T6ifpXFVj\",\"gxaDLeVdG\",\"GRUAMmSSb\",\"nmPg9SnTq\",\"lI24_HN1f\",\"YqtSfiP6c\",\"hkagECXAp\",\"q765Ea4Ae\",\"QuzFhSMq5\",\"CEwJ6ccVN\"];const serializationHash=\"framer-CODVG\";const variantClassNames={CEwJ6ccVN:\"framer-v-171qgqc\",GRUAMmSSb:\"framer-v-aokgnz\",gxaDLeVdG:\"framer-v-8wowsq\",hkagECXAp:\"framer-v-19hlp7e\",iPZ7OPYy8:\"framer-v-1tj3wnc\",JSqaY4dpm:\"framer-v-p3xfb8\",kuLw6L0Cp:\"framer-v-7ro9ur\",lI24_HN1f:\"framer-v-1grl0b4\",mJiMBaD9k:\"framer-v-l9u6qf\",nmPg9SnTq:\"framer-v-tig6sy\",ovLG5NtiG:\"framer-v-1midbwf\",pOCWfhTQY:\"framer-v-bigjh1\",pTqbHyt86:\"framer-v-1phc8f1\",q765Ea4Ae:\"framer-v-wfnuhi\",QuzFhSMq5:\"framer-v-lf093v\",sUcqp6Y7O:\"framer-v-46kn1f\",T6ifpXFVj:\"framer-v-c49a0k\",uk4mbCSIj:\"framer-v-jofja3\",ycfvlEzVN:\"framer-v-ukjb8q\",YqtSfiP6c:\"framer-v-papcvd\"};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 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={\"About-TR\":\"hkagECXAp\",\"contactUs-TR\":\"CEwJ6ccVN\",\"Home-TR\":\"lI24_HN1f\",\"How-TR\":\"QuzFhSMq5\",\"Join Us\":\"pTqbHyt86\",\"ourLocation-TR\":\"YqtSfiP6c\",\"Why-TR\":\"q765Ea4Ae\",\"\u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0651\u0629\":\"T6ifpXFVj\",\"\u0627\u0646\u0636\u0645 \u0625\u0644\u064A\u0646\u0627\":\"JSqaY4dpm\",\"\u062A\u0648\u0627\u062C\u062F\u0646\u0627\":\"gxaDLeVdG\",\"\u062A\u0648\u0627\u0635\u0644\":\"GRUAMmSSb\",\"\u0637\u0631\u064A\u0642\u0629 \u0627\u0644\u0639\u0645\u0644\":\"mJiMBaD9k\",\"\u0644\u0645\u0627\u0630\u0627\":\"kuLw6L0Cp\",\"\u0645\u0627\u0647\u064A\":\"ovLG5NtiG\",About:\"sUcqp6Y7O\",Contact:\"nmPg9SnTq\",Home:\"iPZ7OPYy8\",how:\"uk4mbCSIj\",ourServices:\"pOCWfhTQY\",why:\"ycfvlEzVN\"};const getProps=({click,height,id,width,...props})=>{return{...props,ixNJZNxhQ:click??props.ixNJZNxhQ,variant:humanReadableVariantMap[props.variant]??props.variant??\"iPZ7OPYy8\"};};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,ixNJZNxhQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iPZ7OPYy8\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap10vrjfa=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(ixNJZNxhQ){const res=await ixNJZNxhQ(...args);if(res===false)return false;}});const sharedStyleClassNames=[];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__*/_jsx(Link,{href:{hash:\":vACFb0_5r\",webPageId:\"p8WzJBoFz\"},motionChild:true,nodeId:\"iPZ7OPYy8\",openInNewTab:false,scopeId:\"C1Oe5BxJE\",smoothScroll:true,...addPropertyOverrides({\"JSqaY4dpm-hover\":{href:undefined},\"pTqbHyt86-hover\":{href:{hash:\":UZ1cQ2_gw\",webPageId:\"p8WzJBoFz\"}},CEwJ6ccVN:{href:{hash:\":Dy3pLGLPc\",webPageId:\"Pw0Ezm3Pc\"}},GRUAMmSSb:{href:{hash:\":w8jI1gkrd\",webPageId:\"Sdg2zIjhd\"}},gxaDLeVdG:{href:{hash:\":Lptnb5qZl\",webPageId:\"Sdg2zIjhd\"}},hkagECXAp:{href:{hash:\":X8BOVESG_\",webPageId:\"Pw0Ezm3Pc\"}},JSqaY4dpm:{href:undefined},kuLw6L0Cp:{href:{hash:\":PgP39fg2T\",webPageId:\"Sdg2zIjhd\"}},lI24_HN1f:{href:{hash:\":LCOwhEzfC\",webPageId:\"Pw0Ezm3Pc\"}},mJiMBaD9k:{href:{hash:\":iuFmuXkTD\",webPageId:\"Sdg2zIjhd\"}},nmPg9SnTq:{href:{hash:\":CMwAanHK8w8jI1gkrd\",webPageId:\"p8WzJBoFz\"}},ovLG5NtiG:{href:{hash:\":I9srzIqCO\",webPageId:\"Sdg2zIjhd\"}},pOCWfhTQY:{href:{hash:\":cGJPqYdEq\",webPageId:\"p8WzJBoFz\"}},pTqbHyt86:{href:undefined},q765Ea4Ae:{href:{hash:\":zJkmkPIVl\",webPageId:\"Pw0Ezm3Pc\"}},QuzFhSMq5:{href:{hash:\":cbWwFEolK\",webPageId:\"Pw0Ezm3Pc\"}},sUcqp6Y7O:{href:{hash:\":cbKrMcHCK\",webPageId:\"p8WzJBoFz\"}},T6ifpXFVj:{href:{hash:\":SHbt_ngUT\",webPageId:\"Sdg2zIjhd\"}},uk4mbCSIj:{href:{hash:\":eNsrKLiqE\",webPageId:\"p8WzJBoFz\"}},ycfvlEzVN:{href:{hash:\":t6LcQ6rgJ\",webPageId:\"p8WzJBoFz\"}},YqtSfiP6c:{href:{hash:\":VeXPTRRDG\",webPageId:\"Pw0Ezm3Pc\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1tj3wnc\",className,classNames)} framer-t6hakm`,\"data-framer-name\":\"Home\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"iPZ7OPYy8\",onTap:onTap10vrjfa,ref:refBinding,style:{...style},...addPropertyOverrides({\"CEwJ6ccVN-hover\":{\"data-framer-name\":undefined},\"GRUAMmSSb-hover\":{\"data-framer-name\":undefined},\"gxaDLeVdG-hover\":{\"data-framer-name\":undefined},\"hkagECXAp-hover\":{\"data-framer-name\":undefined},\"iPZ7OPYy8-hover\":{\"data-framer-name\":undefined},\"JSqaY4dpm-hover\":{\"data-framer-name\":undefined},\"kuLw6L0Cp-hover\":{\"data-framer-name\":undefined},\"lI24_HN1f-hover\":{\"data-framer-name\":undefined},\"mJiMBaD9k-hover\":{\"data-framer-name\":undefined},\"nmPg9SnTq-hover\":{\"data-framer-name\":undefined},\"ovLG5NtiG-hover\":{\"data-framer-name\":undefined},\"pOCWfhTQY-hover\":{\"data-framer-name\":undefined},\"pTqbHyt86-hover\":{\"data-framer-name\":undefined},\"q765Ea4Ae-hover\":{\"data-framer-name\":undefined},\"QuzFhSMq5-hover\":{\"data-framer-name\":undefined},\"sUcqp6Y7O-hover\":{\"data-framer-name\":undefined},\"T6ifpXFVj-hover\":{\"data-framer-name\":undefined},\"uk4mbCSIj-hover\":{\"data-framer-name\":undefined},\"ycfvlEzVN-hover\":{\"data-framer-name\":undefined},\"YqtSfiP6c-hover\":{\"data-framer-name\":undefined},CEwJ6ccVN:{\"data-framer-name\":\"contactUs-TR\"},GRUAMmSSb:{\"data-framer-name\":\"\u062A\u0648\u0627\u0635\u0644\"},gxaDLeVdG:{\"data-framer-name\":\"\u062A\u0648\u0627\u062C\u062F\u0646\u0627\"},hkagECXAp:{\"data-framer-name\":\"About-TR\"},JSqaY4dpm:{\"data-framer-name\":\"\u0627\u0646\u0636\u0645 \u0625\u0644\u064A\u0646\u0627\"},kuLw6L0Cp:{\"data-framer-name\":\"\u0644\u0645\u0627\u0630\u0627\"},lI24_HN1f:{\"data-framer-name\":\"Home-TR\"},mJiMBaD9k:{\"data-framer-name\":\"\u0637\u0631\u064A\u0642\u0629 \u0627\u0644\u0639\u0645\u0644\"},nmPg9SnTq:{\"data-framer-name\":\"Contact\"},ovLG5NtiG:{\"data-framer-name\":\"\u0645\u0627\u0647\u064A\"},pOCWfhTQY:{\"data-framer-name\":\"ourServices\"},pTqbHyt86:{\"data-framer-name\":\"Join Us\"},q765Ea4Ae:{\"data-framer-name\":\"Why-TR\"},QuzFhSMq5:{\"data-framer-name\":\"How-TR\"},sUcqp6Y7O:{\"data-framer-name\":\"About\"},T6ifpXFVj:{\"data-framer-name\":\"\u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0651\u0629\"},uk4mbCSIj:{\"data-framer-name\":\"how\"},ycfvlEzVN:{\"data-framer-name\":\"why\"},YqtSfiP6c:{\"data-framer-name\":\"ourLocation-TR\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vkzfu3\",layoutDependency:layoutDependency,layoutId:\"iPZ7OPYy8n6GaVeL1A\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Home\"})}),className:\"framer-5cdyhc\",\"data-framer-name\":\"\u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0651\u0629\",fonts:[\"GF;Cairo-regular\"],layoutDependency:layoutDependency,layoutId:\"iPZ7OPYy8I746:25396;746:25054\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{\"CEwJ6ccVN-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"GRUAMmSSb-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"gxaDLeVdG-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"hkagECXAp-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"iPZ7OPYy8-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"JSqaY4dpm-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"kuLw6L0Cp-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"lI24_HN1f-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"mJiMBaD9k-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"nmPg9SnTq-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"ovLG5NtiG-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"pOCWfhTQY-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"pTqbHyt86-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"q765Ea4Ae-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"QuzFhSMq5-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"sUcqp6Y7O-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"T6ifpXFVj-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"uk4mbCSIj-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"ycfvlEzVN-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"YqtSfiP6c-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"CEwJ6ccVN-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\"},children:\"Bize Ula\u015F\u0131n\"})})},\"GRUAMmSSb-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\",direction:\"rtl\"},children:\"\u062A\u0648\u0627\u0635\u0644 \u0645\u0639\u0646\u0627\"})})},\"gxaDLeVdG-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\",direction:\"rtl\"},children:\"\u0623\u0645\u0627\u0643\u0646 \u062A\u0648\u0627\u062C\u062F\u0646\u0627\"})})},\"hkagECXAp-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\"},children:\"Bas Hakk\u0131nda\"})})},\"iPZ7OPYy8-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\"},children:\"Home\"})}),fonts:[\"GF;Cairo-700\"]},\"JSqaY4dpm-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\",direction:\"rtl\"},children:\"\u0627\u0646\u0636\u0645 \u0625\u0644\u064A\u0646\u0627\"})})},\"kuLw6L0Cp-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\",direction:\"rtl\"},children:\"\u0644\u0645\u0627\u0630\u0627 \u0628\u0627\u0635\u061F\"})})},\"lI24_HN1f-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\"},children:\"Anasayfa\"})})},\"mJiMBaD9k-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\",direction:\"rtl\"},children:\"\u0637\u0631\u064A\u0642\u0629 \u0627\u0644\u0639\u0645\u0644\"})})},\"nmPg9SnTq-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\"},children:\"Contact US\"})})},\"ovLG5NtiG-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\",direction:\"rtl\"},children:\"\u0645\u0627\u0647\u064A \u0628\u0627\u0635\u061F\"})})},\"pOCWfhTQY-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\"},children:\"Our Locations\"})})},\"pTqbHyt86-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\"},children:\"Join Us\"})})},\"q765Ea4Ae-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\"},children:\"Neden Bas?\"})})},\"QuzFhSMq5-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\"},children:\"Nas\u0131l \\xc7al\u0131\u015F\u0131r\"})})},\"sUcqp6Y7O-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\"},children:\"About Bas?\"})})},\"T6ifpXFVj-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\",direction:\"rtl\"},children:\"\u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0651\u0629\"})})},\"uk4mbCSIj-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\"},children:\"How it Works\"})})},\"ycfvlEzVN-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\"},children:\"Why Bas?\"})})},\"YqtSfiP6c-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\"},children:\"Lokasyonlar\u0131m\u0131z\"})})},CEwJ6ccVN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Bize Ula\u015F\u0131n\"})})},GRUAMmSSb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u062A\u0648\u0627\u0635\u0644 \u0645\u0639\u0646\u0627\"})})},gxaDLeVdG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u0623\u0645\u0627\u0643\u0646 \u062A\u0648\u0627\u062C\u062F\u0646\u0627\"})})},hkagECXAp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Bas Hakk\u0131nda\"})})},JSqaY4dpm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u0627\u0646\u0636\u0645 \u0625\u0644\u064A\u0646\u0627\"})})},kuLw6L0Cp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u0644\u0645\u0627\u0630\u0627 \u0628\u0627\u0635\u061F\"})})},lI24_HN1f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Anasayfa\"})})},mJiMBaD9k:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u0637\u0631\u064A\u0642\u0629 \u0627\u0644\u0639\u0645\u0644\"})})},nmPg9SnTq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Contact US\"})})},ovLG5NtiG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u0645\u0627\u0647\u064A  \u0628\u0627\u0635\u061F\"})}),verticalAlignment:\"bottom\"},pOCWfhTQY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Our Locations\"})})},pTqbHyt86:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Join Us\"})})},q765Ea4Ae:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Neden Bas?\"})})},QuzFhSMq5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Nas\u0131l \\xc7al\u0131\u015F\u0131r\"})})},sUcqp6Y7O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"About Bas?\"})})},T6ifpXFVj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0651\u0629\"})})},uk4mbCSIj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"How it Works\"})})},ycfvlEzVN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Why Bas?\"})})},YqtSfiP6c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Lokasyonlar\u0131m\u0131z\"})})}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CODVG.framer-t6hakm, .framer-CODVG .framer-t6hakm { display: block; }\",\".framer-CODVG.framer-1tj3wnc { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 96px; }\",\".framer-CODVG .framer-vkzfu3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-CODVG .framer-5cdyhc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CODVG.framer-1tj3wnc, .framer-CODVG .framer-vkzfu3 { gap: 0px; } .framer-CODVG.framer-1tj3wnc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-CODVG.framer-1tj3wnc > :first-child, .framer-CODVG .framer-vkzfu3 > :first-child { margin-left: 0px; } .framer-CODVG.framer-1tj3wnc > :last-child, .framer-CODVG .framer-vkzfu3 > :last-child { margin-right: 0px; } .framer-CODVG .framer-vkzfu3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-CODVG.framer-v-1midbwf .framer-vkzfu3 { height: 16px; }\",\".framer-CODVG.framer-v-1midbwf .framer-5cdyhc { height: 100%; overflow: visible; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 16\n * @framerIntrinsicWidth 96\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pOCWfhTQY\":{\"layout\":[\"fixed\",\"auto\"]},\"sUcqp6Y7O\":{\"layout\":[\"fixed\",\"auto\"]},\"ycfvlEzVN\":{\"layout\":[\"fixed\",\"auto\"]},\"uk4mbCSIj\":{\"layout\":[\"fixed\",\"auto\"]},\"pTqbHyt86\":{\"layout\":[\"fixed\",\"auto\"]},\"JSqaY4dpm\":{\"layout\":[\"fixed\",\"auto\"]},\"mJiMBaD9k\":{\"layout\":[\"fixed\",\"auto\"]},\"kuLw6L0Cp\":{\"layout\":[\"fixed\",\"auto\"]},\"ovLG5NtiG\":{\"layout\":[\"fixed\",\"auto\"]},\"T6ifpXFVj\":{\"layout\":[\"fixed\",\"auto\"]},\"gxaDLeVdG\":{\"layout\":[\"fixed\",\"auto\"]},\"GRUAMmSSb\":{\"layout\":[\"fixed\",\"auto\"]},\"nmPg9SnTq\":{\"layout\":[\"fixed\",\"auto\"]},\"lI24_HN1f\":{\"layout\":[\"fixed\",\"auto\"]},\"YqtSfiP6c\":{\"layout\":[\"fixed\",\"auto\"]},\"hkagECXAp\":{\"layout\":[\"fixed\",\"auto\"]},\"q765Ea4Ae\":{\"layout\":[\"fixed\",\"auto\"]},\"QuzFhSMq5\":{\"layout\":[\"fixed\",\"auto\"]},\"CEwJ6ccVN\":{\"layout\":[\"fixed\",\"auto\"]},\"nXHGjU9I2\":{\"layout\":[\"fixed\",\"auto\"]},\"MRW1tDBzd\":{\"layout\":[\"fixed\",\"auto\"]},\"EyIUoUWcz\":{\"layout\":[\"fixed\",\"auto\"]},\"od3ZPKU0E\":{\"layout\":[\"fixed\",\"auto\"]},\"Zbzz2navu\":{\"layout\":[\"fixed\",\"auto\"]},\"m2C14apV8\":{\"layout\":[\"fixed\",\"auto\"]},\"Tg3uc8oCQ\":{\"layout\":[\"fixed\",\"auto\"]},\"wUjUf84Qu\":{\"layout\":[\"fixed\",\"auto\"]},\"dij5CGIUi\":{\"layout\":[\"fixed\",\"auto\"]},\"w1xV_vHNj\":{\"layout\":[\"fixed\",\"auto\"]},\"EiuG2SkuV\":{\"layout\":[\"fixed\",\"auto\"]},\"uZXLf86mm\":{\"layout\":[\"fixed\",\"auto\"]},\"ZX3xYu5pP\":{\"layout\":[\"fixed\",\"auto\"]},\"Pr68TQ8rk\":{\"layout\":[\"fixed\",\"auto\"]},\"WDBmQ3Hp9\":{\"layout\":[\"fixed\",\"auto\"]},\"xuoNqacoP\":{\"layout\":[\"fixed\",\"auto\"]},\"Ugh7wnzf5\":{\"layout\":[\"fixed\",\"auto\"]},\"lyQjJz1m0\":{\"layout\":[\"fixed\",\"auto\"]},\"WTE11m0sw\":{\"layout\":[\"fixed\",\"auto\"]},\"ghgYN8hkp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ixNJZNxhQ\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerC1Oe5BxJE=withCSS(Component,css,\"framer-CODVG\");export default FramerC1Oe5BxJE;FramerC1Oe5BxJE.displayName=\"footerItem\";FramerC1Oe5BxJE.defaultProps={height:16,width:96};addPropertyControls(FramerC1Oe5BxJE,{variant:{options:[\"iPZ7OPYy8\",\"pOCWfhTQY\",\"sUcqp6Y7O\",\"ycfvlEzVN\",\"uk4mbCSIj\",\"pTqbHyt86\",\"JSqaY4dpm\",\"mJiMBaD9k\",\"kuLw6L0Cp\",\"ovLG5NtiG\",\"T6ifpXFVj\",\"gxaDLeVdG\",\"GRUAMmSSb\",\"nmPg9SnTq\",\"lI24_HN1f\",\"YqtSfiP6c\",\"hkagECXAp\",\"q765Ea4Ae\",\"QuzFhSMq5\",\"CEwJ6ccVN\"],optionTitles:[\"Home\",\"ourServices\",\"About\",\"why\",\"how\",\"Join Us\",\"\u0627\u0646\u0636\u0645 \u0625\u0644\u064A\u0646\u0627\",\"\u0637\u0631\u064A\u0642\u0629 \u0627\u0644\u0639\u0645\u0644\",\"\u0644\u0645\u0627\u0630\u0627\",\"\u0645\u0627\u0647\u064A\",\"\u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0651\u0629\",\"\u062A\u0648\u0627\u062C\u062F\u0646\u0627\",\"\u062A\u0648\u0627\u0635\u0644\",\"Contact\",\"Home-TR\",\"ourLocation-TR\",\"About-TR\",\"Why-TR\",\"How-TR\",\"contactUs-TR\"],title:\"Variant\",type:ControlType.Enum},ixNJZNxhQ:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerC1Oe5BxJE,[{explicitInter:true,fonts:[{family:\"Cairo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-W1HoLQ-HmkA.woff2\",weight:\"400\"},{family:\"Cairo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1HoLQ-HmkA.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerC1Oe5BxJE\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"16\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pOCWfhTQY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sUcqp6Y7O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ycfvlEzVN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uk4mbCSIj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pTqbHyt86\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JSqaY4dpm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mJiMBaD9k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kuLw6L0Cp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ovLG5NtiG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T6ifpXFVj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gxaDLeVdG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GRUAMmSSb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nmPg9SnTq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lI24_HN1f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YqtSfiP6c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hkagECXAp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"q765Ea4Ae\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QuzFhSMq5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CEwJ6ccVN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nXHGjU9I2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MRW1tDBzd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EyIUoUWcz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"od3ZPKU0E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zbzz2navu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m2C14apV8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Tg3uc8oCQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wUjUf84Qu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dij5CGIUi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w1xV_vHNj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EiuG2SkuV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uZXLf86mm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZX3xYu5pP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Pr68TQ8rk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WDBmQ3Hp9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xuoNqacoP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ugh7wnzf5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lyQjJz1m0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WTE11m0sw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ghgYN8hkp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"96\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"ixNJZNxhQ\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./C1Oe5BxJE.map", "// Generated by Framer (c56cc2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"PVVs68mNE\",\"QVYBrn45a\",\"QYjH5IwG7\",\"v7URfcvNB\",\"iVr19u8FW\"];const serializationHash=\"framer-hXZdz\";const variantClassNames={iVr19u8FW:\"framer-v-12naoqw\",PVVs68mNE:\"framer-v-3dbmld\",QVYBrn45a:\"framer-v-lj0r55\",QYjH5IwG7:\"framer-v-1zhy04\",v7URfcvNB:\"framer-v-13ngo16\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Facebook:\"PVVs68mNE\",in:\"QYjH5IwG7\",insta:\"v7URfcvNB\",Twitter:\"iVr19u8FW\",Youtube:\"QVYBrn45a\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"PVVs68mNE\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PVVs68mNE\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"QVYBrn45a\",\"QYjH5IwG7\",\"v7URfcvNB\",\"iVr19u8FW\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"QVYBrn45a\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"QYjH5IwG7\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"v7URfcvNB\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"iVr19u8FW\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-3dbmld\",className,classNames),\"data-framer-name\":\"Facebook\",layoutDependency:layoutDependency,layoutId:\"PVVs68mNE\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({iVr19u8FW:{\"data-framer-name\":\"Twitter\"},QVYBrn45a:{\"data-framer-name\":\"Youtube\"},QYjH5IwG7:{\"data-framer-name\":\"in\"},v7URfcvNB:{\"data-framer-name\":\"insta\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1e7mtst\",\"data-framer-name\":\"facebook\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:12,layoutDependency:layoutDependency,layoutId:\"fUhg2CRh9\",svg:'<svg width=\"12\" height=\"19\" viewBox=\"0 0 12 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.48 0.290528V2.94231H8.90295C8.32706 2.94231 7.93867 3.06285 7.73778 3.30392C7.53688 3.54499 7.43644 3.9066 7.43644 4.38874V6.28718H10.3795L9.98778 9.26039H7.43644V16.8843H4.36278V9.26039H1.80139V6.28718H4.36278V4.09745C4.36278 2.85191 4.71099 1.88595 5.40742 1.19957C6.10385 0.513184 7.0313 0.169992 8.18978 0.169992C9.17416 0.169992 9.93755 0.21017 10.48 0.290528Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-7g2zpx\",\"data-framer-name\":\"youtube\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"Pg8x1cV8E\",svg:'<svg width=\"16\" height=\"19\" viewBox=\"0 0 16 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.9291 12.6655V14.7849C9.9291 15.2335 9.79852 15.4579 9.53736 15.4579C9.38334 15.4579 9.23267 15.3842 9.08535 15.2369V12.2134C9.23267 12.0661 9.38334 11.9925 9.53736 11.9925C9.79852 11.9925 9.9291 12.2168 9.9291 12.6655ZM13.3242 12.6755V13.1376H12.4202V12.6755C12.4202 12.2201 12.5708 11.9925 12.8722 11.9925C13.1735 11.9925 13.3242 12.2201 13.3242 12.6755ZM3.62107 10.4858H4.69584V9.54157H1.56192V10.4858H2.6166V16.2012H3.62107V10.4858ZM6.51392 16.2012H7.4079V11.2391H6.51392V15.036C6.31303 15.3172 6.12218 15.4579 5.94138 15.4579C5.82084 15.4579 5.75053 15.3876 5.73044 15.2469C5.72375 15.2268 5.7204 15.1097 5.7204 14.8954V11.2391H4.82642V15.1666C4.82642 15.4947 4.85321 15.7391 4.90678 15.8998C4.98714 16.1476 5.18134 16.2715 5.48937 16.2715C5.8108 16.2715 6.15232 16.0672 6.51392 15.6588V16.2012ZM10.8231 14.7146V12.7358C10.8231 12.2469 10.7929 11.9155 10.7327 11.7414C10.6188 11.3664 10.3811 11.1789 10.0195 11.1789C9.68468 11.1789 9.3733 11.3597 9.08535 11.7213V9.54157H8.19138V16.2012H9.08535V15.719C9.38669 16.0873 9.69808 16.2715 10.0195 16.2715C10.3811 16.2715 10.6188 16.0873 10.7327 15.719C10.7929 15.5382 10.8231 15.2034 10.8231 14.7146ZM14.2182 14.6141V14.4835H13.3041C13.3041 14.8251 13.2974 15.0293 13.284 15.0963C13.2371 15.3373 13.1032 15.4579 12.8822 15.4579C12.5742 15.4579 12.4202 15.2268 12.4202 14.7648V13.8909H14.2182V12.8563C14.2182 12.3273 14.1278 11.9389 13.947 11.6911C13.6858 11.3496 13.3309 11.1789 12.8822 11.1789C12.4269 11.1789 12.0686 11.3496 11.8075 11.6911C11.62 11.9389 11.5262 12.3273 11.5262 12.8563V14.594C11.5262 15.123 11.6233 15.5114 11.8175 15.7592C12.0787 16.1007 12.4403 16.2715 12.9023 16.2715C13.3845 16.2715 13.7461 16.094 13.9871 15.7391C14.1077 15.5583 14.178 15.3775 14.1981 15.1967C14.2115 15.1364 14.2182 14.9422 14.2182 14.6141ZM8.11102 5.44336V3.33398C8.11102 2.87193 7.96705 2.6409 7.6791 2.6409C7.39116 2.6409 7.24718 2.87193 7.24718 3.33398V5.44336C7.24718 5.91211 7.39116 6.14648 7.6791 6.14648C7.96705 6.14648 8.11102 5.91211 8.11102 5.44336ZM15.3331 12.9869C15.3331 14.5539 15.2461 15.7257 15.072 16.5025C14.9782 16.8976 14.784 17.2291 14.4894 17.4969C14.1947 17.7648 13.8532 17.9188 13.4648 17.959C12.2327 18.0996 10.3744 18.1699 7.89004 18.1699C5.40567 18.1699 3.54741 18.0996 2.31526 17.959C1.92687 17.9188 1.58368 17.7648 1.28569 17.4969C0.987697 17.2291 0.795175 16.8976 0.708121 16.5025C0.534014 15.7525 0.44696 14.5806 0.44696 12.9869C0.44696 11.4199 0.534014 10.248 0.708121 9.47126C0.801871 9.07617 0.996068 8.7447 1.29071 8.47684C1.58535 8.20898 1.93022 8.05162 2.32531 8.00474C3.55076 7.87081 5.40567 7.80385 7.89004 7.80385C10.3744 7.80385 12.2327 7.87081 13.4648 8.00474C13.8532 8.05162 14.1964 8.20898 14.4944 8.47684C14.7924 8.7447 14.9849 9.07617 15.072 9.47126C15.2461 10.2213 15.3331 11.3931 15.3331 12.9869ZM5.30857 0.169922H6.33312L5.11772 4.17773V6.89983H4.11326V4.17773C4.01951 3.6822 3.81526 2.97238 3.50053 2.04827C3.25276 1.35854 3.03513 0.732422 2.84763 0.169922H3.91236L4.62553 2.81166L5.30857 0.169922ZM9.02509 3.51479V5.2726C9.02509 5.81501 8.93134 6.2101 8.74384 6.45787C8.48937 6.79939 8.13446 6.97015 7.6791 6.97015C7.23044 6.97015 6.87888 6.79939 6.62442 6.45787C6.43692 6.2034 6.34317 5.80831 6.34317 5.2726V3.51479C6.34317 2.97907 6.43692 2.58733 6.62442 2.33956C6.87888 1.99805 7.23044 1.82729 7.6791 1.82729C8.13446 1.82729 8.48937 1.99805 8.74384 2.33956C8.93134 2.58733 9.02509 2.97907 9.02509 3.51479ZM12.39 1.88756V6.89983H11.476V6.34738C11.1211 6.76256 10.7762 6.97015 10.4414 6.97015C10.1333 6.97015 9.9358 6.84626 9.84875 6.59849C9.79517 6.43778 9.76839 6.18666 9.76839 5.84515V1.88756H10.6825V5.57394C10.6825 5.79492 10.6858 5.91211 10.6925 5.9255C10.7126 6.07282 10.7829 6.14648 10.9034 6.14648C11.0842 6.14648 11.2751 6.00251 11.476 5.71456V1.88756H12.39Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1x0pm8c\",\"data-framer-name\":\"in\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"LJ5xdm3Au\",svg:'<svg width=\"16\" height=\"19\" viewBox=\"0 0 16 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.57138 6.44761V16.4019H0.256644V6.44761H3.57138ZM3.78231 3.37395C3.78901 3.86279 3.61993 4.27128 3.27506 4.5994C2.93019 4.92753 2.47651 5.09159 1.91401 5.09159H1.89392C1.34481 5.09159 0.902849 4.92753 0.568028 4.5994C0.233207 4.27128 0.0657959 3.86279 0.0657959 3.37395C0.0657959 2.87842 0.238229 2.46826 0.583095 2.14349C0.927961 1.81871 1.3783 1.65632 1.9341 1.65632C2.4899 1.65632 2.93522 1.81871 3.27004 2.14349C3.60486 2.46826 3.77562 2.87842 3.78231 3.37395ZM15.4944 10.6965V16.4019H12.1897V11.0782C12.1897 10.3751 12.0541 9.82429 11.7829 9.42585C11.5117 9.02741 11.0881 8.82819 10.5122 8.82819C10.0903 8.82819 9.73711 8.94371 9.45251 9.17474C9.16792 9.40576 8.9553 9.69203 8.81468 10.0336C8.74102 10.2344 8.70419 10.5057 8.70419 10.8472V16.4019H5.3995C5.41289 13.73 5.41959 11.5637 5.41959 9.90297C5.41959 8.24226 5.41624 7.25119 5.40955 6.92976L5.3995 6.44761H8.70419V7.89404H8.6841C8.81803 7.67976 8.9553 7.49226 9.09593 7.33154C9.23655 7.17083 9.42573 6.99672 9.66345 6.80922C9.90118 6.62172 10.1925 6.47607 10.5373 6.37228C10.8822 6.26849 11.2656 6.21659 11.6874 6.21659C12.8325 6.21659 13.7533 6.59661 14.4497 7.35665C15.1462 8.1167 15.4944 9.22998 15.4944 10.6965Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-dvq5cn\",\"data-framer-name\":\"insta\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"zHVNAPwaE\",svg:'<svg width=\"17\" height=\"19\" viewBox=\"0 0 17 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.4881 10.9881C10.4881 10.9881 10.6137 10.8625 10.8648 10.6114C11.1159 10.3603 11.2415 9.87981 11.2415 9.16999C11.2415 8.46017 10.9903 7.85414 10.4881 7.35191C9.98588 6.84968 9.37986 6.59856 8.67004 6.59856C7.96021 6.59856 7.35419 6.84968 6.85195 7.35191C6.34972 7.85414 6.09861 8.46017 6.09861 9.16999C6.09861 9.87981 6.34972 10.4858 6.85195 10.9881C7.35419 11.4903 7.96021 11.7414 8.67004 11.7414C9.37986 11.7414 9.98588 11.4903 10.4881 10.9881ZM11.4725 6.36754C11.4725 6.36754 11.665 6.56006 12.0501 6.9451C12.4351 7.33015 12.6276 8.07178 12.6276 9.16999C12.6276 10.2682 12.2426 11.2024 11.4725 11.9724C10.7024 12.7425 9.76825 13.1276 8.67004 13.1276C7.57182 13.1276 6.63767 12.7425 5.86758 11.9724C5.09749 11.2024 4.71245 10.2682 4.71245 9.16999C4.71245 8.07178 5.09749 7.13763 5.86758 6.36754C6.63767 5.59745 7.57182 5.2124 8.67004 5.2124C9.76825 5.2124 10.7024 5.59745 11.4725 6.36754ZM13.4412 4.39879C13.4412 4.39879 13.4864 4.44399 13.5768 4.53439C13.6672 4.62479 13.7124 4.79722 13.7124 5.05169C13.7124 5.30615 13.622 5.52379 13.4412 5.70459C13.2604 5.88539 13.0428 5.9758 12.7883 5.9758C12.5339 5.9758 12.3162 5.88539 12.1354 5.70459C11.9546 5.52379 11.8642 5.30615 11.8642 5.05169C11.8642 4.79722 11.9546 4.57959 12.1354 4.39879C12.3162 4.21798 12.5339 4.12758 12.7883 4.12758C13.0428 4.12758 13.2604 4.21798 13.4412 4.39879ZM9.43845 2.83684C9.43845 2.83684 9.3221 2.83768 9.0894 2.83936C8.8567 2.84103 8.71691 2.84187 8.67004 2.84187C8.62316 2.84187 8.36702 2.84019 7.90162 2.83684C7.43622 2.8335 7.08298 2.8335 6.84191 2.83684C6.60084 2.84019 6.27774 2.85024 5.8726 2.86698C5.46747 2.88372 5.1226 2.9172 4.838 2.96742C4.55341 3.01765 4.31401 3.07959 4.11981 3.15325C3.78499 3.28718 3.49035 3.48138 3.23588 3.73584C2.98142 3.9903 2.78722 4.28495 2.65329 4.61977C2.57963 4.81397 2.51769 5.05336 2.46747 5.33796C2.41725 5.62256 2.38376 5.96742 2.36702 6.37256C2.35028 6.77769 2.34024 7.1008 2.33689 7.34187C2.33354 7.58294 2.33354 7.93617 2.33689 8.40158C2.34024 8.86698 2.34191 9.12312 2.34191 9.16999C2.34191 9.21687 2.34024 9.47301 2.33689 9.93841C2.33354 10.4038 2.33354 10.757 2.33689 10.9981C2.34024 11.2392 2.35028 11.5623 2.36702 11.9674C2.38376 12.3726 2.41725 12.7174 2.46747 13.002C2.51769 13.2866 2.57963 13.526 2.65329 13.7202C2.78722 14.055 2.98142 14.3497 3.23588 14.6041C3.49035 14.8586 3.78499 15.0528 4.11981 15.1867C4.31401 15.2604 4.55341 15.3223 4.838 15.3726C5.1226 15.4228 5.46747 15.4563 5.8726 15.473C6.27774 15.4897 6.60084 15.4998 6.84191 15.5031C7.08298 15.5065 7.43622 15.5065 7.90162 15.5031C8.36702 15.4998 8.62316 15.4981 8.67004 15.4981C8.71691 15.4981 8.97305 15.4998 9.43845 15.5031C9.90385 15.5065 10.2571 15.5065 10.4982 15.5031C10.7392 15.4998 11.0623 15.4897 11.4675 15.473C11.8726 15.4563 12.2175 15.4228 12.5021 15.3726C12.7867 15.3223 13.0261 15.2604 13.2203 15.1867C13.5551 15.0528 13.8497 14.8586 14.1042 14.6041C14.3587 14.3497 14.5528 14.055 14.6868 13.7202C14.7604 13.526 14.8224 13.2866 14.8726 13.002C14.9228 12.7174 14.9563 12.3726 14.973 11.9674C14.9898 11.5623 14.9998 11.2392 15.0032 10.9981C15.0065 10.757 15.0065 10.4038 15.0032 9.93841C14.9998 9.47301 14.9982 9.21687 14.9982 9.16999C14.9982 9.12312 14.9998 8.86698 15.0032 8.40158C15.0065 7.93617 15.0065 7.58294 15.0032 7.34187C14.9998 7.1008 14.9898 6.77769 14.973 6.37256C14.9563 5.96742 14.9228 5.62256 14.8726 5.33796C14.8224 5.05336 14.7604 4.81397 14.6868 4.61977C14.5528 4.28495 14.3587 3.9903 14.1042 3.73584C13.8497 3.48138 13.5551 3.28718 13.2203 3.15325C13.0261 3.07959 12.7867 3.01765 12.5021 2.96742C12.2175 2.9172 11.8726 2.88372 11.4675 2.86698C11.0623 2.85024 10.7392 2.84019 10.4982 2.83684C10.2571 2.8335 9.90385 2.8335 9.43845 2.83684ZM16.3341 5.98584C16.3676 6.57513 16.3843 7.63651 16.3843 9.16999C16.3843 10.7035 16.3676 11.7649 16.3341 12.3541C16.2671 13.747 15.852 14.8251 15.0886 15.5885C14.3252 16.3519 13.247 16.7671 11.8542 16.8341C11.2649 16.8675 10.2035 16.8843 8.67004 16.8843C7.13655 16.8843 6.07517 16.8675 5.48588 16.8341C4.09303 16.7671 3.0149 16.3519 2.25151 15.5885C1.48812 14.8251 1.07294 13.747 1.00597 12.3541C0.972491 11.7649 0.95575 10.7035 0.95575 9.16999C0.95575 7.63651 0.972491 6.57513 1.00597 5.98584C1.07294 4.59298 1.48812 3.51486 2.25151 2.75147C3.0149 1.98807 4.09303 1.57289 5.48588 1.50593C6.07517 1.47245 7.13655 1.45571 8.67004 1.45571C10.2035 1.45571 11.2649 1.47245 11.8542 1.50593C13.247 1.57289 14.3252 1.98807 15.0886 2.75147C15.852 3.51486 16.2671 4.59298 16.3341 5.98584Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-su8npt\",\"data-framer-name\":\"Twitter\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"kZtkzKuCY\",svg:'<svg width=\"17\" height=\"19\" viewBox=\"0 0 17 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.4752 4.26828C16.0265 4.92453 15.4841 5.48368 14.848 5.94573C14.8547 6.03948 14.858 6.18011 14.858 6.36761C14.858 7.23814 14.7308 8.107 14.4763 8.97419C14.2218 9.84138 13.8351 10.6734 13.3162 11.4703C12.7972 12.2672 12.1794 12.972 11.4629 13.5847C10.7464 14.1974 9.88256 14.6862 8.8714 15.0512C7.86024 15.4162 6.77876 15.5986 5.62698 15.5986C3.81225 15.5986 2.15153 15.1131 0.644836 14.1422C0.879211 14.1689 1.14037 14.1823 1.42832 14.1823C2.93501 14.1823 4.27765 13.7203 5.45622 12.7962C4.7531 12.7828 4.12363 12.5668 3.56783 12.1483C3.01202 11.7298 2.63033 11.1957 2.42274 10.5462C2.64372 10.5797 2.84796 10.5964 3.03546 10.5964C3.32341 10.5964 3.60801 10.5596 3.88926 10.4859C3.13926 10.3319 2.51816 9.95857 2.02597 9.36593C1.53379 8.7733 1.28769 8.08524 1.28769 7.30176V7.26158C1.74305 7.51604 2.23189 7.65332 2.75421 7.67341C2.31225 7.37877 1.96068 6.99372 1.69952 6.51828C1.43836 6.04283 1.30778 5.5272 1.30778 4.9714C1.30778 4.38212 1.4551 3.83636 1.74975 3.33412C2.56001 4.33189 3.54606 5.13044 4.70789 5.72977C5.86972 6.3291 7.11359 6.66225 8.43948 6.72921C8.38591 6.47475 8.35912 6.22698 8.35912 5.98591C8.35912 5.08859 8.67553 4.32352 9.30834 3.69071C9.94115 3.0579 10.7062 2.74149 11.6035 2.74149C12.541 2.74149 13.3312 3.08301 13.9741 3.76604C14.704 3.62542 15.3904 3.36426 16.0332 2.98256C15.7855 3.75265 15.31 4.34863 14.6069 4.77051C15.2297 4.70354 15.8524 4.53613 16.4752 4.26828Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hXZdz.framer-uc6tgq, .framer-hXZdz .framer-uc6tgq { display: block; }\",\".framer-hXZdz.framer-3dbmld { height: 32px; overflow: hidden; position: relative; width: 32px; }\",\".framer-hXZdz .framer-1e7mtst { flex: none; height: 19px; left: calc(50.00000000000002% - 12px / 2); position: absolute; top: calc(50.00000000000002% - 19px / 2); width: 12px; }\",\".framer-hXZdz .framer-7g2zpx, .framer-hXZdz .framer-1x0pm8c { flex: none; height: 19px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 19px / 2); width: 16px; }\",\".framer-hXZdz .framer-dvq5cn, .framer-hXZdz .framer-su8npt { flex: none; height: 19px; left: calc(50.00000000000002% - 17px / 2); position: absolute; top: calc(50.00000000000002% - 19px / 2); width: 17px; }\",\".framer-hXZdz.framer-v-lj0r55.framer-3dbmld, .framer-hXZdz.framer-v-1zhy04.framer-3dbmld, .framer-hXZdz.framer-v-13ngo16.framer-3dbmld, .framer-hXZdz.framer-v-12naoqw.framer-3dbmld { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 32px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"QVYBrn45a\":{\"layout\":[\"fixed\",\"fixed\"]},\"QYjH5IwG7\":{\"layout\":[\"fixed\",\"fixed\"]},\"v7URfcvNB\":{\"layout\":[\"fixed\",\"fixed\"]},\"iVr19u8FW\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpKLLiguTY=withCSS(Component,css,\"framer-hXZdz\");export default FramerpKLLiguTY;FramerpKLLiguTY.displayName=\"socialMediaIcons\";FramerpKLLiguTY.defaultProps={height:32,width:32};addPropertyControls(FramerpKLLiguTY,{variant:{options:[\"PVVs68mNE\",\"QVYBrn45a\",\"QYjH5IwG7\",\"v7URfcvNB\",\"iVr19u8FW\"],optionTitles:[\"Facebook\",\"Youtube\",\"in\",\"insta\",\"Twitter\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerpKLLiguTY,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpKLLiguTY\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QVYBrn45a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QYjH5IwG7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v7URfcvNB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iVr19u8FW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"32\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"32\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pKLLiguTY.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SocialMediaIcons from\"https://framerusercontent.com/modules/n4QTQF2VDUWFHEmH44Bf/3NveeQlG7pieqhc7Bpgz/pKLLiguTY.js\";const SocialMediaIconsFonts=getFonts(SocialMediaIcons);const enabledGestures={cd9Ipn2FW:{hover:true,pressed:true},NgNS89mbI:{hover:true,pressed:true},XlVAxJ6_N:{hover:true,pressed:true},ygpgINtf0:{hover:true,pressed:true},zaZGN_kWt:{hover:true,pressed:true}};const cycleOrder=[\"ygpgINtf0\",\"NgNS89mbI\",\"XlVAxJ6_N\",\"cd9Ipn2FW\",\"zaZGN_kWt\"];const serializationHash=\"framer-hzIQi\";const variantClassNames={cd9Ipn2FW:\"framer-v-xgt8xm\",NgNS89mbI:\"framer-v-16912ih\",XlVAxJ6_N:\"framer-v-1p6d7ct\",ygpgINtf0:\"framer-v-ijswh4\",zaZGN_kWt:\"framer-v-1ut6ly3\"};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 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={facebook:\"ygpgINtf0\",insta:\"cd9Ipn2FW\",linkedin:\"XlVAxJ6_N\",twitter:\"zaZGN_kWt\",Youtube:\"NgNS89mbI\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ygpgINtf0\"};};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:\"ygpgINtf0\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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__*/_jsx(Link,{href:\"https://www.facebook.com/baspaketservis\",motionChild:true,nodeId:\"ygpgINtf0\",openInNewTab:true,scopeId:\"ggnnDQxGv\",...addPropertyOverrides({cd9Ipn2FW:{href:\"https://www.instagram.com/bas.delivery/\"},NgNS89mbI:{href:\"https://www.youtube.com/@baspaketservis\"},XlVAxJ6_N:{href:\"https://www.linkedin.com/company/bas-paket-servis/\"},zaZGN_kWt:{href:\"https://x.com/baspaketservis\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-ijswh4\",className,classNames)} framer-roi3qh`,\"data-border\":true,\"data-framer-name\":\"facebook\",layoutDependency:layoutDependency,layoutId:\"ygpgINtf0\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(180, 180, 180)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.01)\",borderBottomLeftRadius:3,borderBottomRightRadius:0,borderTopLeftRadius:3,borderTopRightRadius:0,...style},variants:{\"cd9Ipn2FW-hover\":{backgroundColor:\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"cd9Ipn2FW-pressed\":{backgroundColor:\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"NgNS89mbI-hover\":{backgroundColor:\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"NgNS89mbI-pressed\":{backgroundColor:\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"XlVAxJ6_N-hover\":{backgroundColor:\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"XlVAxJ6_N-pressed\":{backgroundColor:\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"ygpgINtf0-hover\":{backgroundColor:\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\",borderBottomRightRadius:0,borderTopRightRadius:0},\"ygpgINtf0-pressed\":{backgroundColor:\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\",borderBottomRightRadius:0,borderTopRightRadius:0},\"zaZGN_kWt-hover\":{backgroundColor:\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"zaZGN_kWt-pressed\":{backgroundColor:\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},cd9Ipn2FW:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},NgNS89mbI:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},XlVAxJ6_N:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},zaZGN_kWt:{borderBottomLeftRadius:0,borderBottomRightRadius:3,borderTopLeftRadius:0,borderTopRightRadius:3}},...addPropertyOverrides({\"cd9Ipn2FW-hover\":{\"data-framer-name\":undefined},\"cd9Ipn2FW-pressed\":{\"data-framer-name\":undefined},\"NgNS89mbI-hover\":{\"data-framer-name\":undefined},\"NgNS89mbI-pressed\":{\"data-framer-name\":undefined},\"XlVAxJ6_N-hover\":{\"data-framer-name\":undefined},\"XlVAxJ6_N-pressed\":{\"data-framer-name\":undefined},\"ygpgINtf0-hover\":{\"data-framer-name\":undefined},\"ygpgINtf0-pressed\":{\"data-framer-name\":undefined},\"zaZGN_kWt-hover\":{\"data-framer-name\":undefined},\"zaZGN_kWt-pressed\":{\"data-framer-name\":undefined},cd9Ipn2FW:{\"data-framer-name\":\"insta\"},NgNS89mbI:{\"data-framer-name\":\"Youtube\"},XlVAxJ6_N:{\"data-framer-name\":\"linkedin\"},zaZGN_kWt:{\"data-framer-name\":\"twitter\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"32px\",y:(componentViewport?.y||0)+(2+((componentViewport?.height||36)-4-32)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yprx2c-container\",layoutDependency:layoutDependency,layoutId:\"wdmFbHIeO-container\",nodeId:\"wdmFbHIeO\",rendersWithMotion:true,scopeId:\"ggnnDQxGv\",children:/*#__PURE__*/_jsx(SocialMediaIcons,{height:\"100%\",id:\"wdmFbHIeO\",layoutId:\"wdmFbHIeO\",style:{height:\"100%\",width:\"100%\"},variant:\"PVVs68mNE\",width:\"100%\",...addPropertyOverrides({cd9Ipn2FW:{variant:\"v7URfcvNB\"},NgNS89mbI:{variant:\"QVYBrn45a\"},XlVAxJ6_N:{variant:\"QYjH5IwG7\"},zaZGN_kWt:{variant:\"iVr19u8FW\"}},baseVariant,gestureVariant)})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hzIQi.framer-roi3qh, .framer-hzIQi .framer-roi3qh { display: block; }\",\".framer-hzIQi.framer-ijswh4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 2px 0px 2px 0px; position: relative; text-decoration: none; width: 38px; }\",\".framer-hzIQi .framer-yprx2c-container { flex: none; height: 32px; position: relative; width: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hzIQi.framer-ijswh4 { gap: 0px; } .framer-hzIQi.framer-ijswh4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hzIQi.framer-ijswh4 > :first-child { margin-left: 0px; } .framer-hzIQi.framer-ijswh4 > :last-child { margin-right: 0px; } }\",'.framer-hzIQi[data-border=\"true\"]::after, .framer-hzIQi [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 36\n * @framerIntrinsicWidth 38\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NgNS89mbI\":{\"layout\":[\"fixed\",\"auto\"]},\"XlVAxJ6_N\":{\"layout\":[\"fixed\",\"auto\"]},\"cd9Ipn2FW\":{\"layout\":[\"fixed\",\"auto\"]},\"zaZGN_kWt\":{\"layout\":[\"fixed\",\"auto\"]},\"ufmJaMZ7E\":{\"layout\":[\"fixed\",\"auto\"]},\"X8pe9_Tdy\":{\"layout\":[\"fixed\",\"auto\"]},\"y0WH58kBV\":{\"layout\":[\"fixed\",\"auto\"]},\"E2rmO9d8s\":{\"layout\":[\"fixed\",\"auto\"]},\"dWa74pmEu\":{\"layout\":[\"fixed\",\"auto\"]},\"Zz7GZOACl\":{\"layout\":[\"fixed\",\"auto\"]},\"U3_ZWAT2b\":{\"layout\":[\"fixed\",\"auto\"]},\"gKXiC8t2x\":{\"layout\":[\"fixed\",\"auto\"]},\"HNviXDBQv\":{\"layout\":[\"fixed\",\"auto\"]},\"KIzVC6xID\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerggnnDQxGv=withCSS(Component,css,\"framer-hzIQi\");export default FramerggnnDQxGv;FramerggnnDQxGv.displayName=\"socialMediaButton\";FramerggnnDQxGv.defaultProps={height:36,width:38};addPropertyControls(FramerggnnDQxGv,{variant:{options:[\"ygpgINtf0\",\"NgNS89mbI\",\"XlVAxJ6_N\",\"cd9Ipn2FW\",\"zaZGN_kWt\"],optionTitles:[\"facebook\",\"Youtube\",\"linkedin\",\"insta\",\"twitter\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerggnnDQxGv,[{explicitInter:true,fonts:[]},...SocialMediaIconsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerggnnDQxGv\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"38\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"36\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NgNS89mbI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XlVAxJ6_N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cd9Ipn2FW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zaZGN_kWt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ufmJaMZ7E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"X8pe9_Tdy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y0WH58kBV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E2rmO9d8s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dWa74pmEu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zz7GZOACl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U3_ZWAT2b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gKXiC8t2x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HNviXDBQv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KIzVC6xID\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ggnnDQxGv.map", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"VsH99nWk0\",\"r8K2nSmXL\",\"OMkbNoxpj\",\"nE6eRJoYu\",\"fRFTu8Z1W\",\"VUWSdgOLK\",\"v2yNCLkv0\",\"FIOX5Zd85\",\"SBV85umxd\",\"nzeNVgflN\"];const serializationHash=\"framer-Idrki\";const variantClassNames={FIOX5Zd85:\"framer-v-1fxvt1a\",fRFTu8Z1W:\"framer-v-1el2gyp\",nE6eRJoYu:\"framer-v-xrkzdi\",nzeNVgflN:\"framer-v-1lr2b3y\",OMkbNoxpj:\"framer-v-apn49h\",r8K2nSmXL:\"framer-v-1q4wh5d\",SBV85umxd:\"framer-v-1jdxok\",v2yNCLkv0:\"framer-v-7t2d5u\",VsH99nWk0:\"framer-v-2lboui\",VUWSdgOLK:\"framer-v-1n7lbdw\"};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 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={\"AR-Mobile\":\"fRFTu8Z1W\",\"AR-Primary\":\"OMkbNoxpj\",\"AR-Secondary\":\"nE6eRJoYu\",\"EN-Mobile\":\"VUWSdgOLK\",\"EN-Primary\":\"VsH99nWk0\",\"EN-Secondary\":\"r8K2nSmXL\",\"TUR-Desktop-EN\":\"SBV85umxd\",\"TUR-Desktop\":\"v2yNCLkv0\",\"TUR-Mobile-EN\":\"nzeNVgflN\",\"TUR-Mobile\":\"FIOX5Zd85\"};const getProps=({click,height,id,width,...props})=>{return{...props,rF8l9cuSl:click??props.rF8l9cuSl,variant:humanReadableVariantMap[props.variant]??props.variant??\"VsH99nWk0\"};};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,rF8l9cuSl,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VsH99nWk0\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1asbwpx=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(rF8l9cuSl){const res=await rF8l9cuSl(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"OMkbNoxpj\",\"nE6eRJoYu\",\"fRFTu8Z1W\",\"v2yNCLkv0\",\"FIOX5Zd85\",\"SBV85umxd\",\"nzeNVgflN\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"r8K2nSmXL\",\"OMkbNoxpj\",\"nE6eRJoYu\",\"fRFTu8Z1W\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"OMkbNoxpj\",\"fRFTu8Z1W\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"OMkbNoxpj\",\"fRFTu8Z1W\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"nE6eRJoYu\")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__*/_jsx(Link,{href:{hash:\":vACFb0_5r\",webPageId:\"p8WzJBoFz\"},motionChild:true,nodeId:\"VsH99nWk0\",openInNewTab:false,scopeId:\"IHu4k61fi\",smoothScroll:true,...addPropertyOverrides({FIOX5Zd85:{href:{webPageId:\"Pw0Ezm3Pc\"}},fRFTu8Z1W:{href:{hash:\":SHbt_ngUT\",webPageId:\"Sdg2zIjhd\"}},nE6eRJoYu:{href:{hash:\":SHbt_ngUT\",webPageId:\"Sdg2zIjhd\"}},nzeNVgflN:{href:{webPageId:\"Pw0Ezm3Pc\"}},OMkbNoxpj:{href:{hash:\":SHbt_ngUT\",webPageId:\"Sdg2zIjhd\"}},SBV85umxd:{href:{webPageId:\"p8WzJBoFz\"}},v2yNCLkv0:{href:{webPageId:\"Pw0Ezm3Pc\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-2lboui\",className,classNames)} framer-35i76r`,\"data-framer-name\":\"EN-Primary\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"VsH99nWk0\",onTap:onTap1asbwpx,ref:refBinding,style:{...style},...addPropertyOverrides({FIOX5Zd85:{\"data-framer-name\":\"TUR-Mobile\"},fRFTu8Z1W:{\"data-framer-name\":\"AR-Mobile\"},nE6eRJoYu:{\"data-framer-name\":\"AR-Secondary\"},nzeNVgflN:{\"data-framer-name\":\"TUR-Mobile-EN\"},OMkbNoxpj:{\"data-framer-name\":\"AR-Primary\"},r8K2nSmXL:{\"data-framer-name\":\"EN-Secondary\"},SBV85umxd:{\"data-framer-name\":\"TUR-Desktop-EN\"},v2yNCLkv0:{\"data-framer-name\":\"TUR-Desktop\"},VUWSdgOLK:{\"data-framer-name\":\"EN-Mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pzthpu\",layoutDependency:layoutDependency,layoutId:\"WWgrO5Psk\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1t2b7k\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:47,intrinsicWidth:57,layoutDependency:layoutDependency,layoutId:\"GKHGuupn6\",svg:'<svg width=\"57\" height=\"47\" viewBox=\"0 0 57 47\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M41.62 46.1H5.85997C1.87997 46.1 -0.670026 42.87 0.159974 38.89L6.61997 7.88999C7.44997 3.90999 11.35 0.679993 15.33 0.679993H51.09C55.07 0.679993 57.62 3.90999 56.79 7.88999L50.32 38.9C49.49 42.88 45.59 46.11 41.61 46.11L41.62 46.1Z\" fill=\"#31B04B\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-l9uh7e\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"QidPrTykV\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 29 35\"><path d=\"M 5.66 4.132 C 8.195 1.701 11.768 0.486 16.371 0.486 C 20.974 0.486 24.182 1.701 26.091 4.132 C 27.999 6.563 28.616 10.169 27.962 14.943 C 27.297 19.726 25.698 23.324 23.163 25.754 C 20.618 28.185 17.063 29.4 12.489 29.4 C 7.914 29.4 4.64 28.185 2.732 25.754 C 0.823 23.324 0.206 19.726 0.861 14.943 C 1.525 10.16 3.125 6.563 5.66 4.132 Z M 7.016 22.215 C 8.195 23.839 10.234 24.656 13.134 24.656 C 16.034 24.656 18.233 23.839 19.823 22.215 C 21.413 20.592 22.433 18.171 22.891 14.953 C 23.35 11.735 22.985 9.314 21.806 7.681 C 20.627 6.057 18.597 5.25 15.725 5.25 C 12.854 5.25 10.496 6.067 8.943 7.71 C 7.39 9.343 6.389 11.764 5.931 14.953 C 5.473 18.171 5.837 20.592 7.016 22.215 Z M 16.446 16.139 L 21.741 32.774 L 17.587 34.436 L 12.292 17.801 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:11648508541,withExternalLayout:true,...addPropertyOverrides({VUWSdgOLK:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 25\"><path d=\"M 4.098 2.951 C 5.934 1.215 8.522 0.347 11.855 0.347 C 15.188 0.347 17.511 1.215 18.893 2.951 C 20.275 4.687 20.722 7.264 20.248 10.674 C 19.767 14.09 18.609 16.66 16.773 18.396 C 14.93 20.132 12.356 21 9.044 21 C 5.731 21 3.36 20.132 1.978 18.396 C 0.596 16.66 0.149 14.09 0.623 10.674 C 1.104 7.257 2.263 4.687 4.098 2.951 Z M 5.081 15.868 C 5.934 17.028 7.411 17.611 9.511 17.611 C 11.611 17.611 13.203 17.028 14.355 15.868 C 15.506 14.708 16.245 12.979 16.576 10.681 C 16.908 8.382 16.644 6.653 15.791 5.486 C 14.937 4.326 13.467 3.75 11.387 3.75 C 9.308 3.75 7.601 4.333 6.476 5.507 C 5.352 6.674 4.627 8.403 4.295 10.681 C 3.963 12.979 4.227 14.708 5.081 15.868 Z M 11.909 11.528 L 15.743 23.41 L 12.735 24.597 L 8.901 12.715 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:12135348883}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1p5k2js\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:47,intrinsicWidth:52,layoutDependency:layoutDependency,layoutId:\"EsnV5vhFx\",svg:'<svg width=\"52\" height=\"47\" viewBox=\"0 0 52 47\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M47.11 26.05C48.33 27.61 48.94 29.53 48.94 31.82C48.94 36.49 46.89 40.04 42.8 42.46C38.71 44.88 33.2 46.09 26.28 46.09H2.5C1.53 46.09 0.800002 45.3 0.990002 44.45L10.61 1.77C10.75 1.13 11.39 0.669998 12.12 0.669998H34.47C39.78 0.669998 43.89 1.55 46.79 3.3C49.69 5.05 51.14 7.57 51.14 10.86C51.14 13.67 50.31 16.08 48.65 18.09C46.99 20.1 44.78 21.61 42 22.6C44.19 23.34 45.9 24.48 47.12 26.04M36.18 37.53C38.35 36.23 39.43 34.33 39.43 31.82C39.43 29.87 38.66 28.48 37.13 27.63C35.59 26.79 33.29 26.37 30.22 26.37H15.77C15.03 26.37 14.4 26.83 14.26 27.47L11.95 37.84C11.76 38.69 12.49 39.47 13.46 39.47H26.94C30.94 39.47 34.02 38.82 36.19 37.52M18.57 8.39L16.34 18.18C16.15 19.03 16.88 19.82 17.85 19.82H29.49C33.1 19.82 35.95 19.18 38.04 17.91C40.13 16.63 41.18 14.76 41.18 12.3C41.18 8.97 38.23 7.3 32.33 7.3H20.07C19.34 7.3 18.7 7.76 18.56 8.4\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-nhe4j9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:47,intrinsicWidth:54,layoutDependency:layoutDependency,layoutId:\"zDiSbhVV9\",svg:'<svg width=\"54\" height=\"47\" viewBox=\"0 0 54 47\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M42.29 35.59H16.56L9.63 45.46C9.35 45.86 8.85001 46.1 8.32001 46.1H1.85001C0.630005 46.1 -0.109996 44.9 0.560004 43.99L31.82 1.31C32.1 0.920002 32.59 0.690002 33.11 0.690002H40.5C41.21 0.690002 41.82 1.12 42 1.73L53.95 44.41C54.19 45.27 53.46 46.11 52.45 46.11H46.22C45.5 46.11 44.88 45.67 44.72 45.05L42.29 35.6V35.59ZM40.1 27.29L36.18 12.19C35.87 11 34.1 10.74 33.37 11.77L22.71 26.87C22.07 27.78 22.8 28.96 24.02 28.96H38.6C39.59 28.96 40.32 28.14 40.1 27.29Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-lxuuk1\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:47,intrinsicWidth:47,layoutDependency:layoutDependency,layoutId:\"YXlECnzhY\",svg:'<svg width=\"47\" height=\"47\" viewBox=\"0 0 47 47\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.40998 45.25C5.37998 44.42 2.90998 43.38 0.979976 42.15C0.359976 41.75 0.179983 41 0.549983 40.41L3.11998 36.19C3.55998 35.47 4.58998 35.26 5.35998 35.72C7.18998 36.81 9.26999 37.71 11.6 38.41C14.55 39.3 17.56 39.74 20.63 39.74C24.38 39.74 27.37 39.17 29.59 38.02C31.81 36.87 32.92 35.31 32.92 33.32C32.92 32.2 32.47 31.25 31.57 30.5C30.67 29.74 29.55 29.13 28.21 28.65C26.87 28.17 25 27.63 22.62 27.03C19.31 26.17 16.63 25.33 14.58 24.53C12.53 23.73 10.78 22.53 9.31999 20.93C7.85999 19.33 7.12999 17.25 7.12999 14.7C7.12999 11.76 8.06998 9.19 9.93998 6.98C11.82 4.77 14.44 3.07 17.8 1.85C21.16 0.639999 25.04 0.0299988 29.42 0.0299988C32.73 0.0299988 35.88 0.369999 38.85 1.04C41.26 1.58 43.39 2.3 45.26 3.2C45.98 3.55 46.26 4.35 45.89 5.01L43.55 9.21C43.15 9.92 42.17 10.17 41.4 9.79C39.87 9.03 38.19 8.42 36.37 7.96C33.98 7.35 31.5 7.05 28.91 7.05C25.11 7.05 22.1 7.67 19.88 8.9C17.66 10.13 16.55 11.77 16.55 13.8C16.55 14.97 17.01 15.94 17.94 16.72C18.87 17.5 19.99 18.11 21.3 18.57C22.62 19.02 24.54 19.6 27.08 20.29C30.3 21.11 32.93 21.91 34.98 22.69C37.03 23.47 38.77 24.61 40.21 26.13C41.65 27.64 42.37 29.61 42.37 32.03C42.37 35.01 41.43 37.61 39.56 39.82C37.68 42.03 35.03 43.73 31.59 44.95C28.15 46.16 24.22 46.77 19.78 46.77C15.83 46.77 12.06 46.27 8.44998 45.28\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-sp9xpk\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:60,intrinsicWidth:46,layoutDependency:layoutDependency,layoutId:\"xWah9DjLU\",svg:'<svg width=\"46\" height=\"60\" viewBox=\"0 0 46 60\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.21002 38.15C2.04002 38.15 1.86001 38.13 1.68001 38.08C0.680008 37.82 0.11001 36.86 0.40001 35.95L2.88002 28.59C3.17002 27.68 4.22002 27.16 5.21002 27.42C6.21002 27.69 6.78002 28.64 6.49002 29.55L4.01001 36.91C3.77001 37.66 3.02002 38.15 2.21002 38.15Z\" fill=\"#31B04B\"/>\\n<path d=\"M39.12 39.28C38.95 39.28 38.77 39.26 38.59 39.21C37.59 38.95 37.02 37.99 37.31 37.08L40.64 26.6C43.02 19.11 42.3 13.2 38.5 9.04C34.78 4.98 28.45 3.35001 22.37 4.89001C17.66 6.08001 14.77 8.86001 13.17 10.98C12.33 12.09 11.67 13.4 11.19 14.88L8.20001 24.27C7.91001 25.18 6.86001 25.7 5.87001 25.44C4.87001 25.18 4.30001 24.22 4.59001 23.31L7.58002 13.91C8.17002 12.08 9.01002 10.43 10.07 9.02001C12.02 6.43001 15.56 3.04001 21.36 1.57001C28.86 -0.329994 36.72 1.74001 41.38 6.83001C44.58 10.33 47.68 16.76 44.25 27.55L40.92 38.03C40.68 38.78 39.93 39.27 39.11 39.27\" fill=\"#31B04B\"/>\\n<path d=\"M32.09 32.68C31.72 32.68 31.35 32.56 31.06 32.34L30.56 31.97C26.57 28.99 21.54 27.59 16.4 28.01L15.09 28.12C14.56 28.16 14.03 27.96 13.69 27.58C13.35 27.2 13.23 26.69 13.38 26.22L15.81 18.59C16.89 15.2 21.2 10.87 28.63 12.84C32.9 13.97 34.79 16.28 35.62 18.01C36.51 19.85 36.67 22.08 36.07 23.97L33.64 31.6C33.49 32.08 33.08 32.46 32.56 32.6C32.4 32.64 32.24 32.67 32.08 32.67M18.2 24.97C22.86 24.97 27.36 26.26 31.19 28.69L32.95 23.15C33.26 22.19 33.34 20.65 32.64 19.22C31.83 17.54 30.18 16.36 27.72 15.71C20.79 13.87 19.01 19.21 18.93 19.44L17.16 25C17.5 24.99 17.85 24.98 18.19 24.98\" fill=\"#31B04B\"/>\\n<path d=\"M6.58003 47.88C6.40003 47.88 6.21003 47.86 6.03003 47.8C5.04003 47.52 4.48003 46.56 4.78003 45.65L7.50003 37.54C7.80003 36.63 8.86004 36.12 9.85004 36.4C10.84 36.68 11.4 37.64 11.1 38.55L8.38004 46.66C8.13004 47.4 7.39003 47.87 6.58003 47.87\" fill=\"#31B04B\"/>\\n<path d=\"M26.67 54.26C26.49 54.26 26.3 54.24 26.12 54.18C25.13 53.9 24.57 52.94 24.87 52.03L27.59 43.92C27.89 43.01 28.95 42.5 29.94 42.78C30.93 43.06 31.49 44.02 31.19 44.93L28.47 53.04C28.22 53.78 27.48 54.25 26.67 54.25\" fill=\"#31B04B\"/>\\n<path d=\"M35.54 50.02C35.37 50.02 35.19 50 35.01 49.95C34.01 49.68 33.44 48.73 33.73 47.82L35.53 42.19C35.82 41.28 36.87 40.76 37.86 41.02C38.86 41.29 39.43 42.24 39.14 43.15L37.34 48.78C37.1 49.53 36.35 50.02 35.54 50.02Z\" fill=\"#31B04B\"/>\\n<path d=\"M13.82 59.11C13.64 59.11 13.45 59.09 13.27 59.03C12.28 58.75 11.72 57.79 12.02 56.88L17.44 40.73C17.74 39.82 18.8 39.31 19.79 39.59C20.78 39.87 21.34 40.83 21.04 41.74L15.62 57.89C15.37 58.63 14.63 59.1 13.82 59.1\" fill=\"#31B04B\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1y8c69z\",\"data-framer-name\":\"Logo-AR\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"erPY3veEu\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 261 60\"><g transform=\"translate(0.002 0.015)\" id=\"ss11677655945_1\"><path d=\"M 124.218 19.145 C 123.098 17.885 121.628 16.915 119.818 16.255 C 118.008 15.595 115.928 15.255 113.568 15.255 L 102.918 15.255 C 101.028 15.335 99.298 15.655 97.718 16.235 C 95.888 16.895 94.268 17.795 92.878 18.945 C 91.477 20.098 90.297 21.498 89.398 23.075 C 88.462 24.693 87.793 26.453 87.418 28.285 L 85.458 37.495 C 85.404 37.189 85.277 36.901 85.088 36.655 C 84.618 35.995 84.388 35.155 84.388 34.125 C 84.388 33.545 84.458 32.895 84.608 32.185 L 87.468 18.705 L 79.438 18.705 L 74.328 42.855 C 73.858 45.065 73.018 46.665 71.798 47.675 C 70.578 48.675 69.158 49.175 67.528 49.175 C 65.898 49.175 64.608 48.675 63.818 47.685 C 63.328 47.065 63.088 46.205 63.088 45.105 C 63.088 44.415 63.178 43.635 63.368 42.775 L 66.038 30.215 L 58.008 30.215 L 55.338 42.775 C 55.038 44.195 54.888 45.495 54.888 46.675 C 54.888 49.185 55.538 51.205 56.828 52.745 C 58.698 54.995 61.778 56.115 66.068 56.115 C 68.168 56.115 70.108 55.825 71.898 55.235 C 73.688 54.645 75.288 53.785 76.698 52.655 C 78.127 51.506 79.331 50.102 80.248 48.515 C 80.978 47.275 81.548 45.895 81.958 44.355 C 83.418 44.935 81.748 45.235 83.808 45.255 L 107.178 45.255 C 109.538 45.255 111.758 44.915 113.848 44.245 C 115.938 43.575 117.818 42.595 119.478 41.315 C 121.148 40.035 122.558 38.465 123.738 36.605 C 124.908 34.755 125.748 32.635 126.248 30.255 C 126.548 28.865 126.698 27.575 126.698 26.375 C 126.698 25.495 126.608 24.655 126.448 23.845 C 126.078 21.975 125.328 20.405 124.198 19.145 Z M 118.178 30.255 C 117.918 31.495 117.498 32.605 116.918 33.595 C 116.338 34.585 115.638 35.435 114.808 36.135 C 113.988 36.835 113.048 37.375 111.998 37.755 C 110.948 38.125 109.848 38.315 108.688 38.315 L 93.358 38.315 L 95.518 28.175 C 95.928 26.205 96.718 24.715 97.888 23.695 C 99.058 22.675 100.498 22.165 102.198 22.165 L 112.108 22.165 C 113.288 22.165 114.318 22.365 115.198 22.755 C 116.078 23.145 116.778 23.705 117.288 24.415 C 117.808 25.125 118.148 25.975 118.318 26.975 C 118.378 27.345 118.398 27.745 118.398 28.155 C 118.398 28.805 118.318 29.515 118.178 30.265 Z M 151.408 50.135 C 151.088 49.855 150.708 49.635 150.258 49.485 C 149.808 49.335 149.338 49.265 148.858 49.265 C 147.828 49.265 146.858 49.555 145.968 50.135 C 144.998 50.775 144.408 51.625 144.198 52.695 C 144.138 52.955 144.118 53.215 144.118 53.455 C 144.118 53.715 144.158 53.965 144.228 54.185 C 144.358 54.635 144.578 55.005 144.878 55.295 C 145.178 55.585 145.548 55.805 145.988 55.955 C 146.428 56.105 146.898 56.185 147.408 56.185 C 148.458 56.185 149.428 55.885 150.328 55.285 C 151.318 54.625 151.918 53.765 152.128 52.705 C 152.188 52.445 152.208 52.195 152.208 51.975 C 152.208 51.695 152.168 51.445 152.098 51.215 C 151.968 50.785 151.748 50.425 151.428 50.145 Z M 151.408 18.715 L 148.598 31.945 C 148.128 34.155 147.288 35.765 146.068 36.775 C 144.848 37.785 143.428 38.295 141.798 38.295 L 141.798 38.325 C 140.108 38.325 138.908 37.815 138.178 36.805 C 137.428 35.775 137.268 34.275 137.698 32.315 L 142.778 8.385 L 134.718 8.385 L 129.638 32.205 C 129.248 34.075 129.168 35.815 129.418 37.425 C 129.658 39.015 130.238 40.395 131.158 41.555 C 132.058 42.715 133.278 43.625 134.808 44.275 C 136.348 44.915 138.188 45.235 140.338 45.235 C 140.518 45.235 140.688 45.215 140.858 45.185 C 144.828 45.095 148.198 43.945 150.968 41.735 C 153.858 39.425 155.738 36.155 156.598 31.945 L 157.948 25.625 L 161.258 25.625 L 162.748 18.715 L 151.398 18.715 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 197.948 27.945 C 198.478 28.635 198.738 29.505 198.738 30.565 C 198.738 31.045 198.678 31.545 198.568 32.065 C 198.378 32.905 198.088 33.675 197.678 34.375 C 197.268 35.065 196.778 35.665 196.208 36.165 C 195.638 36.665 194.978 37.055 194.238 37.325 C 193.498 37.605 192.718 37.745 191.898 37.745 C 191.078 37.745 190.378 37.605 189.768 37.325 C 189.158 37.055 188.658 36.665 188.278 36.165 C 187.898 35.665 187.648 35.065 187.528 34.375 C 187.476 34.094 187.45 33.81 187.448 33.525 C 187.448 33.065 187.508 32.575 187.628 32.065 C 187.798 31.235 188.088 30.485 188.508 29.795 C 188.918 29.105 189.418 28.505 189.998 27.995 C 191.198 26.966 192.728 26.405 194.308 26.415 C 195.958 26.415 197.178 26.925 197.948 27.945 Z\" fill=\"rgb(49,176,75)\"></path><path d=\"M 254.988 8.675 L 183.498 8.675 C 179.358 8.675 175.298 12.035 174.438 16.175 L 167.708 48.435 C 166.848 52.575 169.498 55.935 173.638 55.935 L 245.128 55.935 C 249.268 55.935 253.328 52.575 254.188 48.435 L 260.918 16.175 C 261.778 12.035 259.128 8.675 254.988 8.675 Z M 210.678 47.835 C 210.598 48.225 210.448 48.575 210.228 48.875 C 210.008 49.175 209.738 49.435 209.428 49.645 C 209.118 49.855 208.788 50.015 208.428 50.115 C 208.068 50.225 207.708 50.275 207.368 50.275 C 207.028 50.275 206.688 50.225 206.388 50.115 C 206.078 50.015 205.818 49.855 205.608 49.655 C 205.388 49.445 205.238 49.195 205.148 48.875 C 205.088 48.715 205.068 48.545 205.068 48.365 C 205.082 47.432 205.562 46.568 206.348 46.065 C 206.988 45.645 207.678 45.425 208.418 45.425 C 208.738 45.425 209.068 45.475 209.378 45.585 C 209.698 45.685 209.968 45.845 210.188 46.035 C 210.568 46.365 210.758 46.775 210.758 47.275 C 210.758 47.445 210.728 47.635 210.678 47.835 Z M 217.418 47.835 C 217.248 48.575 216.828 49.185 216.158 49.645 C 215.528 50.065 214.848 50.275 214.108 50.275 C 213.368 50.275 212.758 50.065 212.338 49.645 C 211.968 49.315 211.788 48.885 211.788 48.365 C 211.788 48.195 211.808 48.015 211.848 47.835 C 212.028 47.065 212.438 46.475 213.088 46.055 C 213.728 45.635 214.408 45.425 215.138 45.425 C 215.868 45.425 216.438 45.625 216.928 46.035 C 217.298 46.365 217.478 46.795 217.478 47.315 C 217.478 47.475 217.458 47.645 217.418 47.835 Z M 245.748 18.085 L 234.458 22.605 C 236.568 22.955 238.188 23.775 239.328 25.075 C 240.078 25.935 240.588 26.985 240.838 28.235 C 240.958 28.775 241.008 29.355 241.008 29.965 C 241.008 30.765 240.918 31.605 240.728 32.505 C 240.378 34.115 239.798 35.545 239.008 36.805 C 238.258 38.031 237.285 39.107 236.138 39.975 C 235.018 40.825 233.748 41.475 232.348 41.925 C 230.938 42.385 229.438 42.605 227.868 42.605 L 218.918 42.605 C 217.448 42.585 216.188 42.355 215.138 41.915 C 214.238 41.535 213.498 41.035 212.908 40.405 C 211.998 41.075 210.998 41.595 209.888 41.955 C 208.788 42.315 207.598 42.505 206.338 42.555 C 206.158 42.585 205.978 42.605 205.798 42.605 L 205.738 42.605 C 204.318 42.605 203.098 42.395 202.088 41.995 C 201.817 42.953 201.427 43.873 200.928 44.735 C 200.288 45.855 199.468 46.815 198.488 47.635 C 197.508 48.445 196.378 49.085 195.098 49.545 C 193.848 49.995 192.458 50.225 190.918 50.235 L 191.978 45.285 C 193.178 45.285 194.178 44.925 194.998 44.205 C 195.728 43.575 196.248 42.685 196.548 41.525 C 196.228 41.655 195.888 41.785 195.528 41.895 C 194.068 42.375 192.518 42.605 190.878 42.605 C 189.238 42.605 187.758 42.375 186.488 41.895 C 185.228 41.425 184.188 40.745 183.388 39.845 C 182.598 38.975 182.068 37.875 181.798 36.555 C 181.528 35.245 181.578 33.745 181.928 32.065 C 182.288 30.425 182.868 28.945 183.688 27.635 C 184.518 26.335 185.518 25.235 186.698 24.345 C 187.868 23.435 189.188 22.745 190.658 22.275 C 192.128 21.805 193.698 21.565 195.348 21.565 C 196.998 21.565 198.448 21.795 199.708 22.255 C 200.978 22.725 202.008 23.415 202.798 24.325 C 203.578 25.215 204.098 26.315 204.358 27.615 C 204.628 28.915 204.588 30.395 204.238 32.065 L 203.918 33.545 C 203.638 34.925 203.748 35.965 204.278 36.675 C 204.788 37.395 205.638 37.755 206.808 37.765 L 206.808 37.725 C 207.958 37.725 208.958 37.365 209.818 36.655 C 210.658 35.945 211.238 34.815 211.568 33.265 L 213.558 23.985 L 221.498 23.985 L 220.478 28.835 L 218.148 28.835 L 217.148 33.545 C 216.858 34.925 216.978 35.965 217.498 36.675 C 218.008 37.405 218.858 37.765 220.038 37.765 L 228.848 37.965 C 229.648 37.965 230.398 37.825 231.108 37.555 C 231.808 37.285 232.438 36.915 232.998 36.445 C 233.558 35.965 234.028 35.395 234.418 34.725 C 234.808 34.045 235.088 33.305 235.248 32.505 C 235.368 31.985 235.418 31.495 235.418 31.025 C 235.418 30.045 235.178 29.215 234.688 28.555 C 233.938 27.565 232.768 27.075 231.158 27.075 L 225.718 27.075 L 224.588 22.435 L 246.998 12.205 Z M 1.928 38.185 C 1.748 38.185 1.568 38.165 1.388 38.115 C 0.368 37.845 -0.222 36.865 0.078 35.935 L 2.618 28.385 C 2.918 27.455 3.988 26.915 5.008 27.185 C 6.028 27.455 6.618 28.435 6.318 29.365 L 3.778 36.915 C 3.528 37.685 2.758 38.185 1.928 38.185 M 39.768 39.345 C 39.588 39.345 39.408 39.325 39.228 39.275 C 38.208 39.005 37.618 38.025 37.918 37.095 L 41.338 26.355 C 43.778 18.675 43.048 12.615 39.148 8.355 C 35.338 4.195 28.848 2.525 22.608 4.105 C 17.778 5.325 14.808 8.175 13.178 10.345 C 12.318 11.485 11.638 12.835 11.148 14.345 L 8.078 23.975 C 7.778 24.905 6.708 25.445 5.688 25.175 C 4.668 24.905 4.078 23.925 4.378 22.995 L 7.448 13.365 C 8.048 11.485 8.908 9.795 9.998 8.355 C 11.998 5.705 15.628 2.225 21.578 0.715 C 29.268 -1.235 37.328 0.885 42.108 6.105 C 45.388 9.695 48.568 16.285 45.048 27.345 L 41.628 38.085 C 41.388 38.855 40.608 39.355 39.778 39.355\" fill=\"rgb(49,176,75)\"></path><path d=\"M 32.558 32.585 C 32.178 32.585 31.808 32.465 31.498 32.245 L 30.988 31.865 C 26.898 28.815 21.738 27.375 16.468 27.805 L 15.128 27.915 C 14.578 27.955 14.038 27.755 13.688 27.365 C 13.338 26.975 13.218 26.455 13.378 25.975 L 15.868 18.155 C 16.978 14.675 21.388 10.235 29.018 12.265 C 33.388 13.425 35.328 15.785 36.188 17.565 C 37.098 19.455 37.268 21.735 36.648 23.675 L 34.158 31.495 C 33.984 32.002 33.568 32.389 33.048 32.525 C 32.888 32.575 32.718 32.595 32.548 32.595 M 18.328 24.675 C 23.108 24.675 27.718 25.995 31.648 28.495 L 33.458 22.815 C 33.768 21.835 33.858 20.255 33.148 18.785 C 32.318 17.065 30.618 15.855 28.098 15.185 C 20.998 13.295 19.168 18.775 19.088 19.005 L 17.268 24.705 C 17.618 24.695 17.978 24.685 18.328 24.685 M 6.408 48.165 C 6.218 48.165 6.028 48.135 5.838 48.085 C 4.818 47.795 4.248 46.815 4.558 45.885 L 7.348 37.575 C 7.658 36.645 8.738 36.125 9.758 36.405 C 10.778 36.695 11.348 37.675 11.038 38.605 L 8.248 46.915 C 7.998 47.675 7.228 48.165 6.408 48.165 M 27.008 54.705 C 26.818 54.705 26.628 54.675 26.438 54.625 C 25.418 54.335 24.848 53.355 25.158 52.425 L 27.948 44.115 C 28.258 43.185 29.338 42.665 30.358 42.945 C 31.378 43.235 31.948 44.215 31.638 45.145 L 28.848 53.455 C 28.598 54.215 27.828 54.705 27.008 54.705 M 36.098 50.355 C 35.918 50.355 35.738 50.335 35.558 50.285 C 34.538 50.015 33.948 49.035 34.248 48.105 L 36.088 42.335 C 36.388 41.405 37.458 40.865 38.478 41.135 C 39.498 41.405 40.088 42.385 39.788 43.315 L 37.948 49.085 C 37.698 49.855 36.928 50.355 36.098 50.355 M 13.828 59.675 C 13.638 59.675 13.448 59.645 13.258 59.595 C 12.238 59.305 11.668 58.325 11.978 57.395 L 17.538 40.835 C 17.848 39.905 18.928 39.385 19.948 39.665 C 20.968 39.955 21.538 40.935 21.228 41.865 L 15.668 58.425 C 15.418 59.185 14.648 59.675 13.828 59.675\" fill=\"rgb(49,176,75)\"></path></g><g transform=\"translate(167.586 8.685)\" id=\"ss11677655945_6\"><path d=\"M 31.192 21.89 C 31.192 22.37 31.132 22.87 31.022 23.39 C 30.832 24.23 30.542 25 30.132 25.7 C 29.722 26.39 29.232 26.99 28.662 27.49 C 28.092 27.99 27.432 28.38 26.692 28.65 C 25.952 28.93 25.172 29.07 24.352 29.07 C 23.532 29.07 22.832 28.93 22.222 28.65 C 21.612 28.38 21.112 27.99 20.732 27.49 C 20.352 26.99 20.102 26.39 19.982 25.7 C 19.93 25.42 19.903 25.135 19.902 24.85 C 19.902 24.39 19.962 23.9 20.082 23.39 C 20.252 22.56 20.542 21.81 20.962 21.12 C 21.372 20.43 21.872 19.83 22.452 19.32 C 23.651 18.291 25.182 17.73 26.762 17.74 C 28.412 17.74 29.632 18.25 30.402 19.27 C 30.932 19.96 31.192 20.83 31.192 21.89 Z\" fill=\"rgb(49,176,75)\"></path><path d=\"M 87.452 0 L 15.952 0 C 11.812 0 7.752 3.36 6.892 7.5 L 0.162 39.76 C -0.698 43.9 1.952 47.26 6.092 47.26 L 77.582 47.26 C 81.722 47.26 85.782 43.9 86.642 39.76 L 93.382 7.5 C 94.232 3.36 91.582 0 87.452 0 Z M 43.142 39.16 L 43.132 39.16 C 43.052 39.55 42.902 39.9 42.682 40.2 C 42.462 40.5 42.192 40.76 41.882 40.97 C 41.572 41.18 41.242 41.34 40.882 41.44 C 40.522 41.55 40.162 41.6 39.822 41.6 C 39.482 41.6 39.142 41.55 38.842 41.44 C 38.532 41.34 38.272 41.18 38.062 40.98 C 37.842 40.77 37.692 40.52 37.602 40.2 C 37.542 40.04 37.522 39.87 37.522 39.69 C 37.535 38.757 38.016 37.893 38.802 37.39 C 39.442 36.97 40.132 36.75 40.872 36.75 C 41.192 36.75 41.522 36.8 41.832 36.91 C 42.162 37.01 42.422 37.17 42.642 37.36 C 43.032 37.69 43.222 38.1 43.222 38.6 C 43.222 38.77 43.192 38.96 43.142 39.16 Z M 49.872 39.16 C 49.702 39.9 49.282 40.51 48.612 40.97 C 47.982 41.39 47.302 41.6 46.562 41.6 C 45.822 41.6 45.212 41.39 44.792 40.97 C 44.422 40.64 44.242 40.21 44.242 39.69 C 44.242 39.52 44.262 39.34 44.302 39.16 C 44.482 38.39 44.892 37.8 45.542 37.38 C 46.182 36.96 46.862 36.75 47.592 36.75 C 48.322 36.75 48.892 36.95 49.382 37.36 C 49.752 37.69 49.932 38.12 49.932 38.64 C 49.932 38.8 49.912 38.97 49.872 39.16 Z M 78.212 9.41 L 78.202 9.41 L 66.912 13.93 C 69.032 14.28 70.642 15.1 71.782 16.4 C 72.532 17.26 73.042 18.31 73.292 19.56 C 73.412 20.1 73.462 20.68 73.462 21.29 C 73.462 22.09 73.372 22.93 73.182 23.83 C 72.832 25.44 72.252 26.87 71.462 28.13 C 70.712 29.357 69.738 30.432 68.592 31.3 C 67.472 32.15 66.202 32.8 64.802 33.25 C 63.392 33.71 61.892 33.93 60.332 33.93 L 51.382 33.93 C 49.912 33.91 48.652 33.68 47.602 33.24 C 46.702 32.86 45.962 32.36 45.372 31.73 C 44.462 32.4 43.462 32.92 42.352 33.28 C 41.252 33.64 40.062 33.83 38.802 33.88 C 38.622 33.91 38.442 33.93 38.262 33.93 L 38.202 33.93 C 36.782 33.93 35.562 33.72 34.552 33.32 C 34.28 34.278 33.891 35.198 33.392 36.06 C 32.752 37.18 31.932 38.14 30.952 38.96 C 29.972 39.77 28.842 40.41 27.562 40.87 C 26.312 41.32 24.922 41.55 23.382 41.56 L 24.442 36.61 C 25.642 36.61 26.642 36.25 27.462 35.53 C 28.192 34.9 28.712 34.01 29.012 32.85 C 28.692 32.98 28.352 33.11 27.992 33.22 C 26.532 33.7 24.982 33.93 23.342 33.93 C 21.702 33.93 20.222 33.7 18.952 33.22 C 17.692 32.75 16.652 32.07 15.852 31.17 C 15.062 30.3 14.532 29.2 14.262 27.88 C 13.992 26.57 14.042 25.07 14.392 23.39 C 14.752 21.75 15.332 20.27 16.152 18.96 C 16.982 17.66 17.982 16.56 19.162 15.67 C 20.332 14.76 21.652 14.07 23.122 13.6 C 24.592 13.13 26.162 12.89 27.812 12.89 C 29.462 12.89 30.912 13.12 32.172 13.58 C 33.442 14.05 34.472 14.74 35.262 15.65 C 36.042 16.54 36.562 17.64 36.822 18.94 C 37.092 20.24 37.052 21.72 36.702 23.39 L 36.382 24.87 C 36.102 26.25 36.212 27.29 36.742 28 C 37.252 28.72 38.102 29.08 39.272 29.09 L 39.272 29.05 C 40.422 29.05 41.422 28.69 42.282 27.98 C 43.122 27.27 43.702 26.14 44.032 24.59 L 46.022 15.31 L 53.962 15.31 L 52.942 20.16 L 50.612 20.16 L 49.612 24.87 C 49.322 26.25 49.442 27.29 49.962 28 C 50.472 28.73 51.322 29.09 52.502 29.09 L 61.312 29.29 C 62.112 29.29 62.862 29.15 63.572 28.88 C 64.272 28.61 64.902 28.24 65.462 27.77 C 66.022 27.29 66.492 26.72 66.882 26.05 C 67.272 25.37 67.552 24.63 67.712 23.83 C 67.832 23.31 67.882 22.82 67.882 22.35 C 67.882 21.37 67.642 20.54 67.152 19.88 C 66.402 18.89 65.232 18.4 63.622 18.4 L 58.182 18.4 L 57.052 13.76 L 79.462 3.53 Z\" fill=\"rgb(49,176,75)\"></path><path d=\"M 43.222 38.6 C 43.222 38.77 43.192 38.96 43.142 39.16 L 43.132 39.16 C 43.052 39.55 42.902 39.9 42.682 40.2 C 42.462 40.5 42.192 40.76 41.882 40.97 C 41.572 41.18 41.242 41.34 40.882 41.44 C 40.522 41.55 40.162 41.6 39.822 41.6 C 39.482 41.6 39.142 41.55 38.842 41.44 C 38.532 41.34 38.272 41.18 38.062 40.98 C 37.842 40.77 37.692 40.52 37.602 40.2 C 37.542 40.04 37.522 39.87 37.522 39.69 C 37.535 38.757 38.016 37.893 38.802 37.39 C 39.442 36.97 40.132 36.75 40.872 36.75 C 41.192 36.75 41.522 36.8 41.832 36.91 C 42.162 37.01 42.422 37.17 42.642 37.36 C 43.032 37.69 43.222 38.1 43.222 38.6 Z M 49.932 38.64 C 49.932 38.8 49.912 38.97 49.872 39.16 C 49.702 39.9 49.282 40.51 48.612 40.97 C 47.982 41.39 47.302 41.6 46.562 41.6 C 45.822 41.6 45.212 41.39 44.792 40.97 C 44.422 40.64 44.242 40.21 44.242 39.69 C 44.242 39.52 44.262 39.34 44.302 39.16 C 44.482 38.39 44.892 37.8 45.542 37.38 C 46.182 36.96 46.862 36.75 47.592 36.75 C 48.322 36.75 48.892 36.95 49.382 37.36 C 49.752 37.69 49.932 38.12 49.932 38.64 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 57.052 13.76 L 58.182 18.4 L 63.622 18.4 C 65.232 18.4 66.402 18.89 67.152 19.88 C 67.642 20.54 67.882 21.37 67.882 22.35 C 67.882 22.82 67.832 23.31 67.712 23.83 C 67.552 24.63 67.272 25.37 66.882 26.05 C 66.492 26.72 66.022 27.29 65.462 27.77 C 64.902 28.24 64.272 28.61 63.572 28.88 C 62.862 29.15 62.112 29.29 61.312 29.29 L 52.502 29.09 C 51.322 29.09 50.472 28.73 49.962 28 C 49.442 27.29 49.322 26.25 49.612 24.87 L 50.612 20.16 L 52.942 20.16 L 53.962 15.31 L 46.022 15.31 L 44.032 24.59 C 43.702 26.14 43.122 27.27 42.282 27.98 C 41.422 28.69 40.422 29.05 39.272 29.05 L 39.272 29.09 C 38.102 29.08 37.252 28.72 36.742 28 C 36.212 27.29 36.102 26.25 36.382 24.87 L 36.702 23.39 C 37.052 21.72 37.092 20.24 36.822 18.94 C 36.562 17.64 36.042 16.54 35.262 15.65 C 34.472 14.74 33.442 14.05 32.172 13.58 C 30.912 13.12 29.462 12.89 27.812 12.89 C 26.162 12.89 24.592 13.13 23.122 13.6 C 21.652 14.07 20.332 14.76 19.162 15.67 C 17.982 16.56 16.982 17.66 16.152 18.96 C 15.332 20.27 14.752 21.75 14.392 23.39 C 14.042 25.07 13.992 26.57 14.262 27.88 C 14.532 29.2 15.062 30.3 15.852 31.17 C 16.652 32.07 17.692 32.75 18.952 33.22 C 20.222 33.7 21.702 33.93 23.342 33.93 C 24.982 33.93 26.532 33.7 27.992 33.22 C 28.352 33.11 28.692 32.98 29.012 32.85 C 28.712 34.01 28.192 34.9 27.462 35.53 C 26.642 36.25 25.642 36.61 24.442 36.61 L 23.382 41.56 C 24.922 41.56 26.312 41.32 27.562 40.87 C 28.842 40.41 29.972 39.77 30.952 38.96 C 31.932 38.14 32.752 37.18 33.392 36.06 C 33.891 35.198 34.28 34.278 34.552 33.32 C 35.562 33.72 36.782 33.93 38.202 33.93 L 38.262 33.93 C 38.442 33.93 38.622 33.91 38.802 33.88 C 40.062 33.83 41.252 33.64 42.352 33.28 C 43.462 32.92 44.462 32.4 45.372 31.73 C 45.962 32.36 46.702 32.86 47.602 33.24 C 48.652 33.68 49.912 33.91 51.382 33.93 L 60.332 33.93 C 61.892 33.93 63.392 33.71 64.802 33.25 C 66.202 32.8 67.472 32.15 68.592 31.3 C 69.738 30.432 70.712 29.357 71.462 28.13 C 72.252 26.87 72.832 25.44 73.182 23.83 C 73.372 22.93 73.462 22.09 73.462 21.29 C 73.462 20.68 73.412 20.1 73.292 19.56 C 73.042 18.31 72.532 17.26 71.782 16.4 C 70.642 15.1 69.032 14.28 66.912 13.93 L 78.202 9.41 L 78.212 9.41 L 79.462 3.53 Z M 31.022 23.39 C 30.832 24.23 30.542 25 30.132 25.7 C 29.722 26.39 29.232 26.99 28.662 27.49 C 28.092 27.99 27.432 28.38 26.692 28.65 C 25.952 28.93 25.172 29.07 24.352 29.07 C 23.532 29.07 22.832 28.93 22.222 28.65 C 21.612 28.38 21.112 27.99 20.732 27.49 C 20.352 26.99 20.102 26.39 19.982 25.7 C 19.93 25.42 19.903 25.135 19.902 24.85 C 19.902 24.39 19.962 23.9 20.082 23.39 C 20.252 22.56 20.542 21.81 20.962 21.12 C 21.372 20.43 21.872 19.83 22.452 19.32 C 23.651 18.291 25.182 17.73 26.762 17.74 C 28.412 17.74 29.632 18.25 30.402 19.27 C 30.932 19.96 31.192 20.83 31.192 21.89 C 31.192 22.37 31.132 22.87 31.022 23.39 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:11677655945,withExternalLayout:true,...addPropertyOverrides({fRFTu8Z1W:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 182 41.86\"><g transform=\"translate(0.001 0.01)\" id=\"ss11035502546_1\"><path d=\"M 86.62 13.357 C 85.839 12.478 84.814 11.802 83.551 11.341 C 82.289 10.881 80.839 10.643 79.193 10.643 L 71.767 10.643 C 70.449 10.699 69.243 10.923 68.141 11.327 C 66.865 11.788 65.735 12.416 64.766 13.218 C 63.788 14.023 62.966 14.999 62.339 16.099 C 61.686 17.229 61.22 18.456 60.958 19.734 L 59.592 26.16 C 59.554 25.947 59.465 25.745 59.334 25.574 C 59.006 25.113 58.845 24.527 58.845 23.809 C 58.845 23.404 58.894 22.95 58.999 22.455 L 60.993 13.05 L 55.394 13.05 L 51.83 29.899 C 51.503 31.441 50.917 32.557 50.066 33.262 C 49.216 33.96 48.225 34.309 47.089 34.309 C 45.952 34.309 45.053 33.96 44.502 33.269 C 44.16 32.837 43.993 32.237 43.993 31.469 C 43.993 30.988 44.055 30.443 44.188 29.843 L 46.05 21.081 L 40.45 21.081 L 38.588 29.843 C 38.379 30.834 38.275 31.741 38.275 32.564 C 38.275 34.316 38.728 35.725 39.627 36.799 C 40.931 38.369 43.079 39.15 46.071 39.15 C 47.535 39.15 48.888 38.948 50.136 38.537 C 51.384 38.125 52.5 37.525 53.483 36.737 C 54.48 35.935 55.319 34.956 55.959 33.848 C 56.468 32.983 56.865 32.02 57.151 30.946 C 58.169 31.35 57.005 31.56 58.441 31.574 L 74.737 31.574 C 76.383 31.574 77.931 31.337 79.388 30.869 C 80.846 30.402 82.157 29.718 83.314 28.825 C 84.479 27.932 85.462 26.837 86.285 25.539 C 87.101 24.248 87.687 22.769 88.035 21.109 C 88.244 20.139 88.349 19.239 88.349 18.402 C 88.349 17.788 88.286 17.202 88.175 16.637 C 87.917 15.332 87.394 14.237 86.606 13.357 Z M 82.408 21.109 C 82.227 21.974 81.934 22.748 81.529 23.439 C 81.125 24.13 80.637 24.723 80.058 25.211 C 79.486 25.699 78.831 26.076 78.098 26.341 C 77.366 26.599 76.599 26.732 75.79 26.732 L 65.1 26.732 L 66.607 19.657 C 66.893 18.283 67.443 17.243 68.259 16.532 C 69.075 15.82 70.079 15.464 71.265 15.464 L 78.175 15.464 C 78.998 15.464 79.716 15.604 80.33 15.876 C 80.944 16.148 81.432 16.539 81.787 17.034 C 82.15 17.53 82.387 18.123 82.505 18.82 C 82.547 19.078 82.561 19.357 82.561 19.643 C 82.561 20.097 82.505 20.592 82.408 21.116 Z M 105.58 34.978 C 105.357 34.783 105.092 34.63 104.778 34.525 C 104.464 34.42 104.136 34.371 103.802 34.371 C 103.083 34.371 102.407 34.574 101.786 34.978 C 101.11 35.425 100.699 36.018 100.552 36.764 C 100.51 36.946 100.496 37.127 100.496 37.295 C 100.496 37.476 100.524 37.65 100.573 37.804 C 100.664 38.118 100.817 38.376 101.026 38.578 C 101.235 38.781 101.493 38.934 101.8 39.039 C 102.107 39.143 102.435 39.199 102.79 39.199 C 103.523 39.199 104.199 38.99 104.827 38.571 C 105.517 38.111 105.935 37.511 106.082 36.771 C 106.124 36.59 106.138 36.416 106.138 36.262 C 106.138 36.067 106.11 35.892 106.061 35.732 C 105.97 35.432 105.817 35.181 105.594 34.985 Z M 105.58 13.057 L 103.62 22.288 C 103.293 23.83 102.707 24.953 101.856 25.657 C 101.005 26.362 100.015 26.718 98.879 26.718 L 98.879 26.739 C 97.7 26.739 96.863 26.383 96.354 25.678 C 95.831 24.96 95.72 23.913 96.02 22.546 L 99.562 5.85 L 93.942 5.85 L 90.399 22.469 C 90.127 23.774 90.071 24.988 90.246 26.111 C 90.413 27.22 90.818 28.183 91.459 28.992 C 92.087 29.802 92.937 30.437 94.004 30.89 C 95.078 31.337 96.361 31.56 97.86 31.56 C 97.986 31.56 98.105 31.546 98.223 31.525 C 100.991 31.462 103.341 30.66 105.273 29.118 C 107.288 27.506 108.599 25.225 109.199 22.288 L 110.14 17.878 L 112.448 17.878 L 113.487 13.057 L 105.573 13.057 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 138.033 19.497 C 138.402 19.978 138.584 20.585 138.584 21.325 C 138.584 21.66 138.542 22.009 138.465 22.371 C 138.333 22.957 138.131 23.495 137.845 23.983 C 137.559 24.464 137.217 24.883 136.82 25.232 C 136.422 25.581 135.962 25.853 135.446 26.041 C 134.93 26.237 134.386 26.334 133.814 26.334 C 133.242 26.334 132.754 26.237 132.329 26.041 C 131.903 25.853 131.555 25.581 131.29 25.232 C 131.025 24.883 130.851 24.464 130.767 23.983 C 130.731 23.787 130.712 23.589 130.711 23.39 C 130.711 23.069 130.753 22.727 130.837 22.371 C 130.955 21.792 131.157 21.269 131.45 20.788 C 131.736 20.306 132.085 19.888 132.489 19.532 C 133.326 18.814 134.393 18.423 135.495 18.43 C 136.645 18.43 137.496 18.785 138.033 19.497 Z\" fill=\"rgb(49,176,75)\"></path><path d=\"M 177.808 6.053 L 127.957 6.053 C 125.07 6.053 122.239 8.397 121.639 11.285 L 116.946 33.792 C 116.346 36.681 118.194 39.025 121.081 39.025 L 170.932 39.025 C 173.819 39.025 176.65 36.681 177.25 33.792 L 181.943 11.285 C 182.543 8.397 180.695 6.053 177.808 6.053 Z M 146.91 33.374 C 146.854 33.646 146.749 33.89 146.596 34.099 C 146.443 34.309 146.254 34.49 146.038 34.637 C 145.822 34.783 145.592 34.895 145.341 34.964 C 145.09 35.041 144.839 35.076 144.602 35.076 C 144.365 35.076 144.127 35.041 143.918 34.964 C 143.702 34.895 143.521 34.783 143.374 34.643 C 143.221 34.497 143.116 34.323 143.054 34.099 C 143.012 33.988 142.998 33.869 142.998 33.743 C 143.007 33.093 143.343 32.49 143.89 32.139 C 144.337 31.846 144.818 31.692 145.334 31.692 C 145.557 31.692 145.787 31.727 146.003 31.804 C 146.226 31.874 146.415 31.985 146.568 32.118 C 146.833 32.348 146.966 32.634 146.966 32.983 C 146.966 33.102 146.945 33.234 146.91 33.374 Z M 151.61 33.374 C 151.491 33.89 151.198 34.316 150.731 34.637 C 150.292 34.93 149.818 35.076 149.302 35.076 C 148.786 35.076 148.36 34.93 148.067 34.637 C 147.809 34.406 147.684 34.106 147.684 33.743 C 147.684 33.625 147.698 33.499 147.726 33.374 C 147.851 32.837 148.137 32.425 148.59 32.132 C 149.037 31.839 149.511 31.692 150.02 31.692 C 150.529 31.692 150.926 31.832 151.268 32.118 C 151.526 32.348 151.652 32.648 151.652 33.011 C 151.652 33.123 151.638 33.241 151.61 33.374 Z M 171.365 12.618 L 163.492 15.771 C 164.963 16.016 166.093 16.588 166.888 17.495 C 167.411 18.095 167.767 18.827 167.941 19.699 C 168.025 20.076 168.059 20.481 168.059 20.906 C 168.059 21.464 167.997 22.05 167.864 22.678 C 167.62 23.802 167.216 24.799 166.665 25.678 C 166.142 26.534 165.463 27.284 164.663 27.89 C 163.882 28.483 162.997 28.937 162.021 29.25 C 161.037 29.571 159.991 29.725 158.897 29.725 L 152.656 29.725 C 151.631 29.711 150.752 29.55 150.02 29.243 C 149.392 28.978 148.876 28.63 148.465 28.19 C 147.83 28.657 147.133 29.02 146.359 29.271 C 145.592 29.523 144.762 29.655 143.883 29.69 C 143.758 29.711 143.632 29.725 143.507 29.725 L 143.465 29.725 C 142.475 29.725 141.624 29.578 140.92 29.299 C 140.73 29.968 140.459 30.61 140.111 31.211 C 139.665 31.992 139.093 32.662 138.409 33.234 C 137.726 33.799 136.938 34.246 136.046 34.567 C 135.174 34.881 134.205 35.041 133.131 35.048 L 133.87 31.595 C 134.707 31.595 135.404 31.343 135.976 30.841 C 136.485 30.402 136.847 29.781 137.057 28.971 C 136.834 29.062 136.596 29.153 136.345 29.23 C 135.327 29.564 134.246 29.725 133.103 29.725 C 131.959 29.725 130.927 29.564 130.042 29.23 C 129.163 28.902 128.438 28.427 127.88 27.799 C 127.329 27.192 126.96 26.425 126.771 25.504 C 126.583 24.59 126.618 23.543 126.862 22.371 C 127.113 21.227 127.517 20.195 128.089 19.281 C 128.668 18.374 129.365 17.606 130.188 16.985 C 131.004 16.35 131.924 15.869 132.949 15.541 C 133.975 15.213 135.069 15.046 136.22 15.046 C 137.37 15.046 138.382 15.206 139.26 15.527 C 140.146 15.855 140.864 16.337 141.415 16.971 C 141.959 17.592 142.321 18.36 142.503 19.267 C 142.691 20.174 142.663 21.206 142.419 22.371 L 142.196 23.404 C 142.001 24.367 142.077 25.092 142.447 25.588 C 142.803 26.09 143.395 26.341 144.211 26.348 L 144.211 26.32 C 145.013 26.32 145.71 26.069 146.31 25.574 C 146.896 25.078 147.3 24.29 147.53 23.209 L 148.918 16.734 L 154.455 16.734 L 153.743 20.118 L 152.119 20.118 L 151.421 23.404 C 151.219 24.367 151.303 25.092 151.665 25.588 C 152.021 26.097 152.614 26.348 153.437 26.348 L 159.58 26.488 C 160.138 26.488 160.661 26.39 161.156 26.202 C 161.644 26.013 162.083 25.755 162.474 25.427 C 162.864 25.092 163.192 24.695 163.464 24.227 C 163.736 23.753 163.931 23.237 164.043 22.678 C 164.127 22.316 164.161 21.974 164.161 21.646 C 164.161 20.962 163.994 20.383 163.652 19.923 C 163.129 19.232 162.314 18.89 161.191 18.89 L 157.397 18.89 L 156.609 15.653 L 172.236 8.516 Z M 1.345 26.641 C 1.219 26.641 1.094 26.627 0.968 26.592 C 0.257 26.404 -0.155 25.72 0.055 25.071 L 1.826 19.804 C 2.035 19.155 2.781 18.778 3.492 18.967 C 4.204 19.155 4.615 19.839 4.406 20.488 L 2.635 25.755 C 2.46 26.292 1.923 26.641 1.345 26.641 M 27.731 27.45 C 27.606 27.45 27.48 27.437 27.355 27.402 C 26.643 27.213 26.232 26.53 26.441 25.881 L 28.826 18.388 C 30.527 13.03 30.018 8.802 27.299 5.83 C 24.642 2.927 20.116 1.762 15.765 2.864 C 12.397 3.716 10.326 5.704 9.189 7.218 C 8.59 8.013 8.116 8.955 7.774 10.009 L 5.633 16.727 C 5.424 17.376 4.678 17.753 3.967 17.564 C 3.255 17.376 2.844 16.692 3.053 16.043 L 5.194 9.325 C 5.612 8.013 6.212 6.834 6.972 5.83 C 8.367 3.981 10.898 1.553 15.047 0.499 C 20.409 -0.861 26.03 0.618 29.363 4.26 C 31.65 6.764 33.868 11.362 31.413 19.078 L 29.028 26.571 C 28.861 27.109 28.317 27.457 27.738 27.457\" fill=\"rgb(49,176,75)\"></path><path d=\"M 22.704 22.734 C 22.439 22.734 22.181 22.65 21.964 22.497 L 21.609 22.232 C 18.757 20.104 15.159 19.099 11.484 19.399 L 10.549 19.476 C 10.166 19.504 9.789 19.364 9.545 19.092 C 9.301 18.82 9.217 18.457 9.329 18.123 L 11.065 12.667 C 11.839 10.239 14.914 7.141 20.235 8.557 C 23.282 9.367 24.635 11.013 25.235 12.255 C 25.869 13.574 25.988 15.164 25.556 16.518 L 23.819 21.974 C 23.698 22.328 23.407 22.598 23.045 22.692 C 22.934 22.727 22.815 22.741 22.697 22.741 M 12.781 17.216 C 16.114 17.216 19.328 18.137 22.069 19.881 L 23.331 15.918 C 23.547 15.234 23.61 14.132 23.115 13.106 C 22.536 11.906 21.351 11.062 19.593 10.595 C 14.643 9.276 13.366 13.099 13.311 13.26 L 12.042 17.237 C 12.286 17.23 12.537 17.223 12.781 17.223 M 4.469 33.604 C 4.336 33.604 4.204 33.583 4.071 33.548 C 3.36 33.346 2.962 32.662 3.179 32.013 L 5.124 26.216 C 5.34 25.567 6.093 25.204 6.805 25.399 C 7.516 25.602 7.913 26.285 7.697 26.934 L 5.752 32.732 C 5.577 33.262 5.04 33.604 4.469 33.604 M 18.833 38.167 C 18.701 38.167 18.568 38.146 18.436 38.111 C 17.725 37.909 17.327 37.225 17.543 36.576 L 19.489 30.778 C 19.705 30.13 20.458 29.767 21.169 29.962 C 21.881 30.164 22.278 30.848 22.062 31.497 L 20.116 37.295 C 19.942 37.825 19.405 38.167 18.833 38.167 M 25.172 35.132 C 25.046 35.132 24.921 35.118 24.795 35.083 C 24.084 34.895 23.673 34.211 23.882 33.562 L 25.165 29.537 C 25.374 28.888 26.12 28.511 26.832 28.699 C 27.543 28.888 27.954 29.571 27.745 30.22 L 26.462 34.246 C 26.288 34.783 25.751 35.132 25.172 35.132 M 9.643 41.634 C 9.51 41.634 9.378 41.613 9.245 41.578 C 8.534 41.376 8.137 40.692 8.353 40.043 L 12.23 28.49 C 12.446 27.841 13.199 27.478 13.91 27.674 C 14.622 27.876 15.019 28.56 14.803 29.209 L 10.926 40.762 C 10.751 41.292 10.215 41.634 9.643 41.634\" fill=\"rgb(49,176,75)\"></path></g><g transform=\"translate(109.156 5.655)\" id=\"ss11035502546_6\"><path d=\"M 29.456 15.676 C 29.456 16.011 29.414 16.36 29.337 16.723 C 29.205 17.309 29.003 17.846 28.717 18.334 C 28.431 18.816 28.089 19.234 27.692 19.583 C 27.294 19.932 26.834 20.204 26.318 20.392 C 25.802 20.588 25.258 20.685 24.686 20.685 C 24.114 20.685 23.626 20.588 23.201 20.392 C 22.776 20.204 22.427 19.932 22.162 19.583 C 21.897 19.234 21.723 18.816 21.639 18.334 C 21.603 18.139 21.584 17.94 21.583 17.741 C 21.583 17.42 21.625 17.078 21.709 16.723 C 21.827 16.143 22.029 15.62 22.322 15.139 C 22.608 14.657 22.957 14.239 23.361 13.883 C 24.198 13.165 25.265 12.774 26.367 12.781 C 27.517 12.781 28.368 13.136 28.905 13.848 C 29.275 14.33 29.456 14.936 29.456 15.676 Z\" fill=\"rgb(49,176,75)\"></path><path d=\"M 68.687 0.404 L 18.829 0.404 C 15.942 0.404 13.111 2.748 12.511 5.636 L 7.818 28.143 C 7.218 31.032 9.066 33.376 11.953 33.376 L 61.804 33.376 C 64.691 33.376 67.522 31.032 68.122 28.143 L 72.822 5.636 C 73.415 2.748 71.567 0.404 68.687 0.404 Z M 37.789 27.725 L 37.782 27.725 C 37.726 27.997 37.621 28.241 37.468 28.45 C 37.315 28.66 37.126 28.841 36.91 28.988 C 36.694 29.134 36.464 29.246 36.213 29.316 C 35.962 29.392 35.711 29.427 35.474 29.427 C 35.237 29.427 35 29.392 34.79 29.316 C 34.574 29.246 34.393 29.134 34.246 28.995 C 34.093 28.848 33.988 28.674 33.926 28.45 C 33.884 28.339 33.87 28.22 33.87 28.095 C 33.879 27.444 34.215 26.841 34.762 26.49 C 35.209 26.197 35.69 26.043 36.206 26.043 C 36.429 26.043 36.659 26.078 36.875 26.155 C 37.105 26.225 37.287 26.336 37.44 26.469 C 37.712 26.699 37.845 26.985 37.845 27.334 C 37.845 27.453 37.824 27.585 37.789 27.725 Z M 42.482 27.725 C 42.363 28.241 42.07 28.667 41.603 28.988 C 41.164 29.281 40.69 29.427 40.174 29.427 C 39.658 29.427 39.232 29.281 38.939 28.988 C 38.681 28.757 38.556 28.457 38.556 28.095 C 38.556 27.976 38.57 27.85 38.598 27.725 C 38.723 27.188 39.009 26.776 39.462 26.483 C 39.909 26.19 40.383 26.043 40.892 26.043 C 41.401 26.043 41.798 26.183 42.14 26.469 C 42.398 26.699 42.524 26.999 42.524 27.362 C 42.524 27.474 42.51 27.592 42.482 27.725 Z M 62.244 6.969 L 62.237 6.969 L 54.364 10.123 C 55.842 10.367 56.965 10.939 57.76 11.846 C 58.283 12.446 58.639 13.178 58.813 14.05 C 58.897 14.427 58.931 14.832 58.931 15.257 C 58.931 15.816 58.869 16.402 58.736 17.03 C 58.492 18.153 58.088 19.15 57.537 20.03 C 57.014 20.885 56.335 21.636 55.536 22.241 C 54.755 22.834 53.869 23.288 52.893 23.602 C 51.909 23.923 50.863 24.076 49.776 24.076 L 43.535 24.076 C 42.51 24.062 41.631 23.902 40.899 23.595 C 40.271 23.33 39.755 22.981 39.344 22.541 C 38.709 23.009 38.012 23.371 37.238 23.623 C 36.471 23.874 35.641 24.006 34.762 24.041 C 34.637 24.062 34.511 24.076 34.386 24.076 L 34.344 24.076 C 33.354 24.076 32.503 23.93 31.799 23.65 C 31.609 24.319 31.338 24.961 30.99 25.562 C 30.544 26.343 29.972 27.013 29.288 27.585 C 28.605 28.15 27.817 28.597 26.925 28.918 C 26.053 29.232 25.084 29.392 24.01 29.399 L 24.749 25.946 C 25.586 25.946 26.283 25.695 26.855 25.192 C 27.364 24.753 27.726 24.132 27.936 23.323 C 27.713 23.413 27.475 23.504 27.224 23.581 C 26.206 23.916 25.125 24.076 23.982 24.076 C 22.838 24.076 21.806 23.916 20.921 23.581 C 20.042 23.253 19.317 22.778 18.759 22.15 C 18.208 21.543 17.839 20.776 17.65 19.855 C 17.462 18.941 17.497 17.895 17.741 16.723 C 17.992 15.578 18.396 14.546 18.968 13.632 C 19.547 12.725 20.244 11.957 21.067 11.336 C 21.883 10.702 22.803 10.22 23.828 9.892 C 24.854 9.564 25.948 9.397 27.099 9.397 C 28.249 9.397 29.261 9.557 30.139 9.878 C 31.025 10.206 31.743 10.688 32.294 11.323 C 32.838 11.943 33.2 12.711 33.382 13.618 C 33.57 14.525 33.542 15.557 33.298 16.723 L 33.075 17.755 C 32.88 18.718 32.956 19.443 33.326 19.939 C 33.682 20.441 34.274 20.692 35.09 20.699 L 35.09 20.671 C 35.892 20.671 36.589 20.42 37.189 19.925 C 37.775 19.43 38.179 18.641 38.409 17.56 L 39.797 11.085 L 45.334 11.085 L 44.622 14.469 L 42.998 14.469 L 42.3 17.755 C 42.098 18.718 42.182 19.443 42.544 19.939 C 42.9 20.448 43.493 20.699 44.316 20.699 L 50.459 20.839 C 51.017 20.839 51.54 20.741 52.035 20.553 C 52.523 20.364 52.962 20.106 53.353 19.778 C 53.743 19.443 54.071 19.046 54.343 18.578 C 54.615 18.104 54.81 17.588 54.922 17.03 C 55.006 16.667 55.04 16.325 55.04 15.997 C 55.04 15.313 54.873 14.734 54.531 14.274 C 54.008 13.583 53.193 13.241 52.07 13.241 L 48.276 13.241 L 47.488 10.004 L 63.115 2.867 Z\" fill=\"rgb(49,176,75)\"></path><path d=\"M 37.845 27.334 C 37.845 27.453 37.824 27.585 37.789 27.725 L 37.782 27.725 C 37.726 27.997 37.621 28.241 37.468 28.45 C 37.315 28.66 37.126 28.841 36.91 28.988 C 36.694 29.134 36.464 29.246 36.213 29.316 C 35.962 29.392 35.711 29.427 35.474 29.427 C 35.237 29.427 35 29.392 34.79 29.316 C 34.574 29.246 34.393 29.134 34.246 28.995 C 34.093 28.848 33.988 28.674 33.926 28.45 C 33.884 28.339 33.87 28.22 33.87 28.095 C 33.879 27.444 34.215 26.841 34.762 26.49 C 35.209 26.197 35.69 26.043 36.206 26.043 C 36.429 26.043 36.659 26.078 36.875 26.155 C 37.105 26.225 37.287 26.336 37.44 26.469 C 37.712 26.699 37.845 26.985 37.845 27.334 Z M 42.524 27.362 C 42.524 27.474 42.51 27.592 42.482 27.725 C 42.363 28.241 42.07 28.667 41.603 28.988 C 41.164 29.281 40.69 29.427 40.174 29.427 C 39.658 29.427 39.232 29.281 38.939 28.988 C 38.681 28.757 38.556 28.457 38.556 28.095 C 38.556 27.976 38.57 27.85 38.598 27.725 C 38.723 27.188 39.009 26.776 39.462 26.483 C 39.909 26.19 40.383 26.043 40.892 26.043 C 41.401 26.043 41.798 26.183 42.14 26.469 C 42.398 26.699 42.524 26.999 42.524 27.362 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 47.488 10.004 L 48.276 13.241 L 52.07 13.241 C 53.193 13.241 54.008 13.583 54.531 14.274 C 54.873 14.734 55.04 15.313 55.04 15.997 C 55.04 16.325 55.006 16.667 54.922 17.03 C 54.81 17.588 54.615 18.104 54.343 18.578 C 54.071 19.046 53.743 19.443 53.353 19.778 C 52.962 20.106 52.523 20.364 52.035 20.553 C 51.54 20.741 51.017 20.839 50.459 20.839 L 44.316 20.699 C 43.493 20.699 42.9 20.448 42.544 19.939 C 42.182 19.443 42.098 18.718 42.3 17.755 L 42.998 14.469 L 44.622 14.469 L 45.334 11.085 L 39.797 11.085 L 38.409 17.56 C 38.179 18.641 37.775 19.43 37.189 19.925 C 36.589 20.42 35.892 20.671 35.09 20.671 L 35.09 20.699 C 34.274 20.692 33.682 20.441 33.326 19.939 C 32.956 19.443 32.88 18.718 33.075 17.755 L 33.298 16.723 C 33.542 15.557 33.57 14.525 33.382 13.618 C 33.2 12.711 32.838 11.943 32.294 11.323 C 31.743 10.688 31.025 10.206 30.139 9.878 C 29.261 9.557 28.249 9.397 27.099 9.397 C 25.948 9.397 24.854 9.564 23.828 9.892 C 22.803 10.22 21.883 10.702 21.067 11.336 C 20.244 11.957 19.547 12.725 18.968 13.632 C 18.396 14.546 17.992 15.578 17.741 16.723 C 17.497 17.895 17.462 18.941 17.65 19.855 C 17.839 20.776 18.208 21.543 18.759 22.15 C 19.317 22.778 20.042 23.253 20.921 23.581 C 21.806 23.916 22.838 24.076 23.982 24.076 C 25.125 24.076 26.206 23.916 27.224 23.581 C 27.475 23.504 27.713 23.413 27.936 23.323 C 27.726 24.132 27.364 24.753 26.855 25.192 C 26.283 25.695 25.586 25.946 24.749 25.946 L 24.01 29.399 C 25.084 29.399 26.053 29.232 26.925 28.918 C 27.817 28.597 28.605 28.15 29.288 27.585 C 29.972 27.013 30.544 26.343 30.99 25.562 C 31.338 24.961 31.609 24.319 31.799 23.65 C 32.503 23.93 33.354 24.076 34.344 24.076 L 34.386 24.076 C 34.511 24.076 34.637 24.062 34.762 24.041 C 35.641 24.006 36.471 23.874 37.238 23.623 C 38.012 23.371 38.709 23.009 39.344 22.541 C 39.755 22.981 40.271 23.33 40.899 23.595 C 41.631 23.902 42.51 24.062 43.535 24.076 L 49.776 24.076 C 50.863 24.076 51.909 23.923 52.893 23.602 C 53.869 23.288 54.755 22.834 55.536 22.241 C 56.335 21.636 57.014 20.885 57.537 20.03 C 58.088 19.15 58.492 18.153 58.736 17.03 C 58.869 16.402 58.931 15.816 58.931 15.257 C 58.931 14.832 58.897 14.427 58.813 14.05 C 58.639 13.178 58.283 12.446 57.76 11.846 C 56.965 10.939 55.842 10.367 54.364 10.123 L 62.237 6.969 L 62.244 6.969 L 63.115 2.867 Z M 29.337 16.723 C 29.205 17.309 29.003 17.846 28.717 18.334 C 28.431 18.816 28.089 19.234 27.692 19.583 C 27.294 19.932 26.834 20.204 26.318 20.392 C 25.802 20.588 25.258 20.685 24.686 20.685 C 24.114 20.685 23.626 20.588 23.201 20.392 C 22.776 20.204 22.427 19.932 22.162 19.583 C 21.897 19.234 21.723 18.816 21.639 18.334 C 21.603 18.139 21.584 17.94 21.583 17.741 C 21.583 17.42 21.625 17.078 21.709 16.723 C 21.827 16.143 22.029 15.62 22.322 15.139 C 22.608 14.657 22.957 14.239 23.361 13.883 C 24.198 13.165 25.265 12.774 26.367 12.781 C 27.517 12.781 28.368 13.136 28.905 13.848 C 29.275 14.33 29.456 14.936 29.456 15.676 C 29.456 16.011 29.414 16.36 29.337 16.723 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:11035502546},OMkbNoxpj:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 261 60\"><g transform=\"translate(0.002 0.015)\" id=\"ss11288344984_1\"><path d=\"M 124.218 19.145 C 123.098 17.885 121.628 16.915 119.818 16.255 C 118.008 15.595 115.928 15.255 113.568 15.255 L 102.918 15.255 C 101.028 15.335 99.298 15.655 97.718 16.235 C 95.888 16.895 94.268 17.795 92.878 18.945 C 91.477 20.098 90.297 21.498 89.398 23.075 C 88.462 24.693 87.793 26.453 87.418 28.285 L 85.458 37.495 C 85.404 37.189 85.277 36.901 85.088 36.655 C 84.618 35.995 84.388 35.155 84.388 34.125 C 84.388 33.545 84.458 32.895 84.608 32.185 L 87.468 18.705 L 79.438 18.705 L 74.328 42.855 C 73.858 45.065 73.018 46.665 71.798 47.675 C 70.578 48.675 69.158 49.175 67.528 49.175 C 65.898 49.175 64.608 48.675 63.818 47.685 C 63.328 47.065 63.088 46.205 63.088 45.105 C 63.088 44.415 63.178 43.635 63.368 42.775 L 66.038 30.215 L 58.008 30.215 L 55.338 42.775 C 55.038 44.195 54.888 45.495 54.888 46.675 C 54.888 49.185 55.538 51.205 56.828 52.745 C 58.698 54.995 61.778 56.115 66.068 56.115 C 68.168 56.115 70.108 55.825 71.898 55.235 C 73.688 54.645 75.288 53.785 76.698 52.655 C 78.127 51.506 79.331 50.102 80.248 48.515 C 80.978 47.275 81.548 45.895 81.958 44.355 C 83.418 44.935 81.748 45.235 83.808 45.255 L 107.178 45.255 C 109.538 45.255 111.758 44.915 113.848 44.245 C 115.938 43.575 117.818 42.595 119.478 41.315 C 121.148 40.035 122.558 38.465 123.738 36.605 C 124.908 34.755 125.748 32.635 126.248 30.255 C 126.548 28.865 126.698 27.575 126.698 26.375 C 126.698 25.495 126.608 24.655 126.448 23.845 C 126.078 21.975 125.328 20.405 124.198 19.145 Z M 118.178 30.255 C 117.918 31.495 117.498 32.605 116.918 33.595 C 116.338 34.585 115.638 35.435 114.808 36.135 C 113.988 36.835 113.048 37.375 111.998 37.755 C 110.948 38.125 109.848 38.315 108.688 38.315 L 93.358 38.315 L 95.518 28.175 C 95.928 26.205 96.718 24.715 97.888 23.695 C 99.058 22.675 100.498 22.165 102.198 22.165 L 112.108 22.165 C 113.288 22.165 114.318 22.365 115.198 22.755 C 116.078 23.145 116.778 23.705 117.288 24.415 C 117.808 25.125 118.148 25.975 118.318 26.975 C 118.378 27.345 118.398 27.745 118.398 28.155 C 118.398 28.805 118.318 29.515 118.178 30.265 Z M 151.408 50.135 C 151.088 49.855 150.708 49.635 150.258 49.485 C 149.808 49.335 149.338 49.265 148.858 49.265 C 147.828 49.265 146.858 49.555 145.968 50.135 C 144.998 50.775 144.408 51.625 144.198 52.695 C 144.138 52.955 144.118 53.215 144.118 53.455 C 144.118 53.715 144.158 53.965 144.228 54.185 C 144.358 54.635 144.578 55.005 144.878 55.295 C 145.178 55.585 145.548 55.805 145.988 55.955 C 146.428 56.105 146.898 56.185 147.408 56.185 C 148.458 56.185 149.428 55.885 150.328 55.285 C 151.318 54.625 151.918 53.765 152.128 52.705 C 152.188 52.445 152.208 52.195 152.208 51.975 C 152.208 51.695 152.168 51.445 152.098 51.215 C 151.968 50.785 151.748 50.425 151.428 50.145 Z M 151.408 18.715 L 148.598 31.945 C 148.128 34.155 147.288 35.765 146.068 36.775 C 144.848 37.785 143.428 38.295 141.798 38.295 L 141.798 38.325 C 140.108 38.325 138.908 37.815 138.178 36.805 C 137.428 35.775 137.268 34.275 137.698 32.315 L 142.778 8.385 L 134.718 8.385 L 129.638 32.205 C 129.248 34.075 129.168 35.815 129.418 37.425 C 129.658 39.015 130.238 40.395 131.158 41.555 C 132.058 42.715 133.278 43.625 134.808 44.275 C 136.348 44.915 138.188 45.235 140.338 45.235 C 140.518 45.235 140.688 45.215 140.858 45.185 C 144.828 45.095 148.198 43.945 150.968 41.735 C 153.858 39.425 155.738 36.155 156.598 31.945 L 157.948 25.625 L 161.258 25.625 L 162.748 18.715 L 151.398 18.715 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 197.948 27.945 C 198.478 28.635 198.738 29.505 198.738 30.565 C 198.738 31.045 198.678 31.545 198.568 32.065 C 198.378 32.905 198.088 33.675 197.678 34.375 C 197.268 35.065 196.778 35.665 196.208 36.165 C 195.638 36.665 194.978 37.055 194.238 37.325 C 193.498 37.605 192.718 37.745 191.898 37.745 C 191.078 37.745 190.378 37.605 189.768 37.325 C 189.158 37.055 188.658 36.665 188.278 36.165 C 187.898 35.665 187.648 35.065 187.528 34.375 C 187.476 34.094 187.45 33.81 187.448 33.525 C 187.448 33.065 187.508 32.575 187.628 32.065 C 187.798 31.235 188.088 30.485 188.508 29.795 C 188.918 29.105 189.418 28.505 189.998 27.995 C 191.198 26.966 192.728 26.405 194.308 26.415 C 195.958 26.415 197.178 26.925 197.948 27.945 Z\" fill=\"rgb(49,176,75)\"></path><path d=\"M 254.988 8.675 L 183.498 8.675 C 179.358 8.675 175.298 12.035 174.438 16.175 L 167.708 48.435 C 166.848 52.575 169.498 55.935 173.638 55.935 L 245.128 55.935 C 249.268 55.935 253.328 52.575 254.188 48.435 L 260.918 16.175 C 261.778 12.035 259.128 8.675 254.988 8.675 Z M 210.678 47.835 C 210.598 48.225 210.448 48.575 210.228 48.875 C 210.008 49.175 209.738 49.435 209.428 49.645 C 209.118 49.855 208.788 50.015 208.428 50.115 C 208.068 50.225 207.708 50.275 207.368 50.275 C 207.028 50.275 206.688 50.225 206.388 50.115 C 206.078 50.015 205.818 49.855 205.608 49.655 C 205.388 49.445 205.238 49.195 205.148 48.875 C 205.088 48.715 205.068 48.545 205.068 48.365 C 205.082 47.432 205.562 46.568 206.348 46.065 C 206.988 45.645 207.678 45.425 208.418 45.425 C 208.738 45.425 209.068 45.475 209.378 45.585 C 209.698 45.685 209.968 45.845 210.188 46.035 C 210.568 46.365 210.758 46.775 210.758 47.275 C 210.758 47.445 210.728 47.635 210.678 47.835 Z M 217.418 47.835 C 217.248 48.575 216.828 49.185 216.158 49.645 C 215.528 50.065 214.848 50.275 214.108 50.275 C 213.368 50.275 212.758 50.065 212.338 49.645 C 211.968 49.315 211.788 48.885 211.788 48.365 C 211.788 48.195 211.808 48.015 211.848 47.835 C 212.028 47.065 212.438 46.475 213.088 46.055 C 213.728 45.635 214.408 45.425 215.138 45.425 C 215.868 45.425 216.438 45.625 216.928 46.035 C 217.298 46.365 217.478 46.795 217.478 47.315 C 217.478 47.475 217.458 47.645 217.418 47.835 Z M 245.748 18.085 L 234.458 22.605 C 236.568 22.955 238.188 23.775 239.328 25.075 C 240.078 25.935 240.588 26.985 240.838 28.235 C 240.958 28.775 241.008 29.355 241.008 29.965 C 241.008 30.765 240.918 31.605 240.728 32.505 C 240.378 34.115 239.798 35.545 239.008 36.805 C 238.258 38.031 237.285 39.107 236.138 39.975 C 235.018 40.825 233.748 41.475 232.348 41.925 C 230.938 42.385 229.438 42.605 227.868 42.605 L 218.918 42.605 C 217.448 42.585 216.188 42.355 215.138 41.915 C 214.238 41.535 213.498 41.035 212.908 40.405 C 211.998 41.075 210.998 41.595 209.888 41.955 C 208.788 42.315 207.598 42.505 206.338 42.555 C 206.158 42.585 205.978 42.605 205.798 42.605 L 205.738 42.605 C 204.318 42.605 203.098 42.395 202.088 41.995 C 201.817 42.953 201.427 43.873 200.928 44.735 C 200.288 45.855 199.468 46.815 198.488 47.635 C 197.508 48.445 196.378 49.085 195.098 49.545 C 193.848 49.995 192.458 50.225 190.918 50.235 L 191.978 45.285 C 193.178 45.285 194.178 44.925 194.998 44.205 C 195.728 43.575 196.248 42.685 196.548 41.525 C 196.228 41.655 195.888 41.785 195.528 41.895 C 194.068 42.375 192.518 42.605 190.878 42.605 C 189.238 42.605 187.758 42.375 186.488 41.895 C 185.228 41.425 184.188 40.745 183.388 39.845 C 182.598 38.975 182.068 37.875 181.798 36.555 C 181.528 35.245 181.578 33.745 181.928 32.065 C 182.288 30.425 182.868 28.945 183.688 27.635 C 184.518 26.335 185.518 25.235 186.698 24.345 C 187.868 23.435 189.188 22.745 190.658 22.275 C 192.128 21.805 193.698 21.565 195.348 21.565 C 196.998 21.565 198.448 21.795 199.708 22.255 C 200.978 22.725 202.008 23.415 202.798 24.325 C 203.578 25.215 204.098 26.315 204.358 27.615 C 204.628 28.915 204.588 30.395 204.238 32.065 L 203.918 33.545 C 203.638 34.925 203.748 35.965 204.278 36.675 C 204.788 37.395 205.638 37.755 206.808 37.765 L 206.808 37.725 C 207.958 37.725 208.958 37.365 209.818 36.655 C 210.658 35.945 211.238 34.815 211.568 33.265 L 213.558 23.985 L 221.498 23.985 L 220.478 28.835 L 218.148 28.835 L 217.148 33.545 C 216.858 34.925 216.978 35.965 217.498 36.675 C 218.008 37.405 218.858 37.765 220.038 37.765 L 228.848 37.965 C 229.648 37.965 230.398 37.825 231.108 37.555 C 231.808 37.285 232.438 36.915 232.998 36.445 C 233.558 35.965 234.028 35.395 234.418 34.725 C 234.808 34.045 235.088 33.305 235.248 32.505 C 235.368 31.985 235.418 31.495 235.418 31.025 C 235.418 30.045 235.178 29.215 234.688 28.555 C 233.938 27.565 232.768 27.075 231.158 27.075 L 225.718 27.075 L 224.588 22.435 L 246.998 12.205 Z M 1.928 38.185 C 1.748 38.185 1.568 38.165 1.388 38.115 C 0.368 37.845 -0.222 36.865 0.078 35.935 L 2.618 28.385 C 2.918 27.455 3.988 26.915 5.008 27.185 C 6.028 27.455 6.618 28.435 6.318 29.365 L 3.778 36.915 C 3.528 37.685 2.758 38.185 1.928 38.185 M 39.768 39.345 C 39.588 39.345 39.408 39.325 39.228 39.275 C 38.208 39.005 37.618 38.025 37.918 37.095 L 41.338 26.355 C 43.778 18.675 43.048 12.615 39.148 8.355 C 35.338 4.195 28.848 2.525 22.608 4.105 C 17.778 5.325 14.808 8.175 13.178 10.345 C 12.318 11.485 11.638 12.835 11.148 14.345 L 8.078 23.975 C 7.778 24.905 6.708 25.445 5.688 25.175 C 4.668 24.905 4.078 23.925 4.378 22.995 L 7.448 13.365 C 8.048 11.485 8.908 9.795 9.998 8.355 C 11.998 5.705 15.628 2.225 21.578 0.715 C 29.268 -1.235 37.328 0.885 42.108 6.105 C 45.388 9.695 48.568 16.285 45.048 27.345 L 41.628 38.085 C 41.388 38.855 40.608 39.355 39.778 39.355\" fill=\"rgb(49,176,75)\"></path><path d=\"M 32.558 32.585 C 32.178 32.585 31.808 32.465 31.498 32.245 L 30.988 31.865 C 26.898 28.815 21.738 27.375 16.468 27.805 L 15.128 27.915 C 14.578 27.955 14.038 27.755 13.688 27.365 C 13.338 26.975 13.218 26.455 13.378 25.975 L 15.868 18.155 C 16.978 14.675 21.388 10.235 29.018 12.265 C 33.388 13.425 35.328 15.785 36.188 17.565 C 37.098 19.455 37.268 21.735 36.648 23.675 L 34.158 31.495 C 33.984 32.002 33.568 32.389 33.048 32.525 C 32.888 32.575 32.718 32.595 32.548 32.595 M 18.328 24.675 C 23.108 24.675 27.718 25.995 31.648 28.495 L 33.458 22.815 C 33.768 21.835 33.858 20.255 33.148 18.785 C 32.318 17.065 30.618 15.855 28.098 15.185 C 20.998 13.295 19.168 18.775 19.088 19.005 L 17.268 24.705 C 17.618 24.695 17.978 24.685 18.328 24.685 M 6.408 48.165 C 6.218 48.165 6.028 48.135 5.838 48.085 C 4.818 47.795 4.248 46.815 4.558 45.885 L 7.348 37.575 C 7.658 36.645 8.738 36.125 9.758 36.405 C 10.778 36.695 11.348 37.675 11.038 38.605 L 8.248 46.915 C 7.998 47.675 7.228 48.165 6.408 48.165 M 27.008 54.705 C 26.818 54.705 26.628 54.675 26.438 54.625 C 25.418 54.335 24.848 53.355 25.158 52.425 L 27.948 44.115 C 28.258 43.185 29.338 42.665 30.358 42.945 C 31.378 43.235 31.948 44.215 31.638 45.145 L 28.848 53.455 C 28.598 54.215 27.828 54.705 27.008 54.705 M 36.098 50.355 C 35.918 50.355 35.738 50.335 35.558 50.285 C 34.538 50.015 33.948 49.035 34.248 48.105 L 36.088 42.335 C 36.388 41.405 37.458 40.865 38.478 41.135 C 39.498 41.405 40.088 42.385 39.788 43.315 L 37.948 49.085 C 37.698 49.855 36.928 50.355 36.098 50.355 M 13.828 59.675 C 13.638 59.675 13.448 59.645 13.258 59.595 C 12.238 59.305 11.668 58.325 11.978 57.395 L 17.538 40.835 C 17.848 39.905 18.928 39.385 19.948 39.665 C 20.968 39.955 21.538 40.935 21.228 41.865 L 15.668 58.425 C 15.418 59.185 14.648 59.675 13.828 59.675\" fill=\"rgb(49,176,75)\"></path></g><g transform=\"translate(167.586 8.685)\" id=\"ss11288344984_6\"><path d=\"M 31.192 21.89 C 31.192 22.37 31.132 22.87 31.022 23.39 C 30.832 24.23 30.542 25 30.132 25.7 C 29.722 26.39 29.232 26.99 28.662 27.49 C 28.092 27.99 27.432 28.38 26.692 28.65 C 25.952 28.93 25.172 29.07 24.352 29.07 C 23.532 29.07 22.832 28.93 22.222 28.65 C 21.612 28.38 21.112 27.99 20.732 27.49 C 20.352 26.99 20.102 26.39 19.982 25.7 C 19.93 25.42 19.903 25.135 19.902 24.85 C 19.902 24.39 19.962 23.9 20.082 23.39 C 20.252 22.56 20.542 21.81 20.962 21.12 C 21.372 20.43 21.872 19.83 22.452 19.32 C 23.651 18.291 25.182 17.73 26.762 17.74 C 28.412 17.74 29.632 18.25 30.402 19.27 C 30.932 19.96 31.192 20.83 31.192 21.89 Z\" fill=\"rgb(49,176,75)\"></path><path d=\"M 87.452 0 L 15.952 0 C 11.812 0 7.752 3.36 6.892 7.5 L 0.162 39.76 C -0.698 43.9 1.952 47.26 6.092 47.26 L 77.582 47.26 C 81.722 47.26 85.782 43.9 86.642 39.76 L 93.382 7.5 C 94.232 3.36 91.582 0 87.452 0 Z M 43.142 39.16 L 43.132 39.16 C 43.052 39.55 42.902 39.9 42.682 40.2 C 42.462 40.5 42.192 40.76 41.882 40.97 C 41.572 41.18 41.242 41.34 40.882 41.44 C 40.522 41.55 40.162 41.6 39.822 41.6 C 39.482 41.6 39.142 41.55 38.842 41.44 C 38.532 41.34 38.272 41.18 38.062 40.98 C 37.842 40.77 37.692 40.52 37.602 40.2 C 37.542 40.04 37.522 39.87 37.522 39.69 C 37.535 38.757 38.016 37.893 38.802 37.39 C 39.442 36.97 40.132 36.75 40.872 36.75 C 41.192 36.75 41.522 36.8 41.832 36.91 C 42.162 37.01 42.422 37.17 42.642 37.36 C 43.032 37.69 43.222 38.1 43.222 38.6 C 43.222 38.77 43.192 38.96 43.142 39.16 Z M 49.872 39.16 C 49.702 39.9 49.282 40.51 48.612 40.97 C 47.982 41.39 47.302 41.6 46.562 41.6 C 45.822 41.6 45.212 41.39 44.792 40.97 C 44.422 40.64 44.242 40.21 44.242 39.69 C 44.242 39.52 44.262 39.34 44.302 39.16 C 44.482 38.39 44.892 37.8 45.542 37.38 C 46.182 36.96 46.862 36.75 47.592 36.75 C 48.322 36.75 48.892 36.95 49.382 37.36 C 49.752 37.69 49.932 38.12 49.932 38.64 C 49.932 38.8 49.912 38.97 49.872 39.16 Z M 78.212 9.41 L 78.202 9.41 L 66.912 13.93 C 69.032 14.28 70.642 15.1 71.782 16.4 C 72.532 17.26 73.042 18.31 73.292 19.56 C 73.412 20.1 73.462 20.68 73.462 21.29 C 73.462 22.09 73.372 22.93 73.182 23.83 C 72.832 25.44 72.252 26.87 71.462 28.13 C 70.712 29.357 69.738 30.432 68.592 31.3 C 67.472 32.15 66.202 32.8 64.802 33.25 C 63.392 33.71 61.892 33.93 60.332 33.93 L 51.382 33.93 C 49.912 33.91 48.652 33.68 47.602 33.24 C 46.702 32.86 45.962 32.36 45.372 31.73 C 44.462 32.4 43.462 32.92 42.352 33.28 C 41.252 33.64 40.062 33.83 38.802 33.88 C 38.622 33.91 38.442 33.93 38.262 33.93 L 38.202 33.93 C 36.782 33.93 35.562 33.72 34.552 33.32 C 34.28 34.278 33.891 35.198 33.392 36.06 C 32.752 37.18 31.932 38.14 30.952 38.96 C 29.972 39.77 28.842 40.41 27.562 40.87 C 26.312 41.32 24.922 41.55 23.382 41.56 L 24.442 36.61 C 25.642 36.61 26.642 36.25 27.462 35.53 C 28.192 34.9 28.712 34.01 29.012 32.85 C 28.692 32.98 28.352 33.11 27.992 33.22 C 26.532 33.7 24.982 33.93 23.342 33.93 C 21.702 33.93 20.222 33.7 18.952 33.22 C 17.692 32.75 16.652 32.07 15.852 31.17 C 15.062 30.3 14.532 29.2 14.262 27.88 C 13.992 26.57 14.042 25.07 14.392 23.39 C 14.752 21.75 15.332 20.27 16.152 18.96 C 16.982 17.66 17.982 16.56 19.162 15.67 C 20.332 14.76 21.652 14.07 23.122 13.6 C 24.592 13.13 26.162 12.89 27.812 12.89 C 29.462 12.89 30.912 13.12 32.172 13.58 C 33.442 14.05 34.472 14.74 35.262 15.65 C 36.042 16.54 36.562 17.64 36.822 18.94 C 37.092 20.24 37.052 21.72 36.702 23.39 L 36.382 24.87 C 36.102 26.25 36.212 27.29 36.742 28 C 37.252 28.72 38.102 29.08 39.272 29.09 L 39.272 29.05 C 40.422 29.05 41.422 28.69 42.282 27.98 C 43.122 27.27 43.702 26.14 44.032 24.59 L 46.022 15.31 L 53.962 15.31 L 52.942 20.16 L 50.612 20.16 L 49.612 24.87 C 49.322 26.25 49.442 27.29 49.962 28 C 50.472 28.73 51.322 29.09 52.502 29.09 L 61.312 29.29 C 62.112 29.29 62.862 29.15 63.572 28.88 C 64.272 28.61 64.902 28.24 65.462 27.77 C 66.022 27.29 66.492 26.72 66.882 26.05 C 67.272 25.37 67.552 24.63 67.712 23.83 C 67.832 23.31 67.882 22.82 67.882 22.35 C 67.882 21.37 67.642 20.54 67.152 19.88 C 66.402 18.89 65.232 18.4 63.622 18.4 L 58.182 18.4 L 57.052 13.76 L 79.462 3.53 Z\" fill=\"rgb(49,176,75)\"></path><path d=\"M 43.222 38.6 C 43.222 38.77 43.192 38.96 43.142 39.16 L 43.132 39.16 C 43.052 39.55 42.902 39.9 42.682 40.2 C 42.462 40.5 42.192 40.76 41.882 40.97 C 41.572 41.18 41.242 41.34 40.882 41.44 C 40.522 41.55 40.162 41.6 39.822 41.6 C 39.482 41.6 39.142 41.55 38.842 41.44 C 38.532 41.34 38.272 41.18 38.062 40.98 C 37.842 40.77 37.692 40.52 37.602 40.2 C 37.542 40.04 37.522 39.87 37.522 39.69 C 37.535 38.757 38.016 37.893 38.802 37.39 C 39.442 36.97 40.132 36.75 40.872 36.75 C 41.192 36.75 41.522 36.8 41.832 36.91 C 42.162 37.01 42.422 37.17 42.642 37.36 C 43.032 37.69 43.222 38.1 43.222 38.6 Z M 49.932 38.64 C 49.932 38.8 49.912 38.97 49.872 39.16 C 49.702 39.9 49.282 40.51 48.612 40.97 C 47.982 41.39 47.302 41.6 46.562 41.6 C 45.822 41.6 45.212 41.39 44.792 40.97 C 44.422 40.64 44.242 40.21 44.242 39.69 C 44.242 39.52 44.262 39.34 44.302 39.16 C 44.482 38.39 44.892 37.8 45.542 37.38 C 46.182 36.96 46.862 36.75 47.592 36.75 C 48.322 36.75 48.892 36.95 49.382 37.36 C 49.752 37.69 49.932 38.12 49.932 38.64 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 57.052 13.76 L 58.182 18.4 L 63.622 18.4 C 65.232 18.4 66.402 18.89 67.152 19.88 C 67.642 20.54 67.882 21.37 67.882 22.35 C 67.882 22.82 67.832 23.31 67.712 23.83 C 67.552 24.63 67.272 25.37 66.882 26.05 C 66.492 26.72 66.022 27.29 65.462 27.77 C 64.902 28.24 64.272 28.61 63.572 28.88 C 62.862 29.15 62.112 29.29 61.312 29.29 L 52.502 29.09 C 51.322 29.09 50.472 28.73 49.962 28 C 49.442 27.29 49.322 26.25 49.612 24.87 L 50.612 20.16 L 52.942 20.16 L 53.962 15.31 L 46.022 15.31 L 44.032 24.59 C 43.702 26.14 43.122 27.27 42.282 27.98 C 41.422 28.69 40.422 29.05 39.272 29.05 L 39.272 29.09 C 38.102 29.08 37.252 28.72 36.742 28 C 36.212 27.29 36.102 26.25 36.382 24.87 L 36.702 23.39 C 37.052 21.72 37.092 20.24 36.822 18.94 C 36.562 17.64 36.042 16.54 35.262 15.65 C 34.472 14.74 33.442 14.05 32.172 13.58 C 30.912 13.12 29.462 12.89 27.812 12.89 C 26.162 12.89 24.592 13.13 23.122 13.6 C 21.652 14.07 20.332 14.76 19.162 15.67 C 17.982 16.56 16.982 17.66 16.152 18.96 C 15.332 20.27 14.752 21.75 14.392 23.39 C 14.042 25.07 13.992 26.57 14.262 27.88 C 14.532 29.2 15.062 30.3 15.852 31.17 C 16.652 32.07 17.692 32.75 18.952 33.22 C 20.222 33.7 21.702 33.93 23.342 33.93 C 24.982 33.93 26.532 33.7 27.992 33.22 C 28.352 33.11 28.692 32.98 29.012 32.85 C 28.712 34.01 28.192 34.9 27.462 35.53 C 26.642 36.25 25.642 36.61 24.442 36.61 L 23.382 41.56 C 24.922 41.56 26.312 41.32 27.562 40.87 C 28.842 40.41 29.972 39.77 30.952 38.96 C 31.932 38.14 32.752 37.18 33.392 36.06 C 33.891 35.198 34.28 34.278 34.552 33.32 C 35.562 33.72 36.782 33.93 38.202 33.93 L 38.262 33.93 C 38.442 33.93 38.622 33.91 38.802 33.88 C 40.062 33.83 41.252 33.64 42.352 33.28 C 43.462 32.92 44.462 32.4 45.372 31.73 C 45.962 32.36 46.702 32.86 47.602 33.24 C 48.652 33.68 49.912 33.91 51.382 33.93 L 60.332 33.93 C 61.892 33.93 63.392 33.71 64.802 33.25 C 66.202 32.8 67.472 32.15 68.592 31.3 C 69.738 30.432 70.712 29.357 71.462 28.13 C 72.252 26.87 72.832 25.44 73.182 23.83 C 73.372 22.93 73.462 22.09 73.462 21.29 C 73.462 20.68 73.412 20.1 73.292 19.56 C 73.042 18.31 72.532 17.26 71.782 16.4 C 70.642 15.1 69.032 14.28 66.912 13.93 L 78.202 9.41 L 78.212 9.41 L 79.462 3.53 Z M 31.022 23.39 C 30.832 24.23 30.542 25 30.132 25.7 C 29.722 26.39 29.232 26.99 28.662 27.49 C 28.092 27.99 27.432 28.38 26.692 28.65 C 25.952 28.93 25.172 29.07 24.352 29.07 C 23.532 29.07 22.832 28.93 22.222 28.65 C 21.612 28.38 21.112 27.99 20.732 27.49 C 20.352 26.99 20.102 26.39 19.982 25.7 C 19.93 25.42 19.903 25.135 19.902 24.85 C 19.902 24.39 19.962 23.9 20.082 23.39 C 20.252 22.56 20.542 21.81 20.962 21.12 C 21.372 20.43 21.872 19.83 22.452 19.32 C 23.651 18.291 25.182 17.73 26.762 17.74 C 28.412 17.74 29.632 18.25 30.402 19.27 C 30.932 19.96 31.192 20.83 31.192 21.89 C 31.192 22.37 31.132 22.87 31.022 23.39 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:11288344984}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1eac5oy\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"WU3SW4Gdk-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 95 48\"><g transform=\"translate(0.586 0.685)\" id=\"ss12334765870_1\"><path d=\"M 31.192 21.89 C 31.192 22.37 31.132 22.87 31.022 23.39 C 30.832 24.23 30.542 25 30.132 25.7 C 29.722 26.39 29.232 26.99 28.662 27.49 C 28.092 27.99 27.432 28.38 26.692 28.65 C 25.952 28.93 25.172 29.07 24.352 29.07 C 23.532 29.07 22.832 28.93 22.222 28.65 C 21.612 28.38 21.112 27.99 20.732 27.49 C 20.352 26.99 20.102 26.39 19.982 25.7 C 19.93 25.42 19.903 25.135 19.902 24.85 C 19.902 24.39 19.962 23.9 20.082 23.39 C 20.252 22.56 20.542 21.81 20.962 21.12 C 21.372 20.43 21.872 19.83 22.452 19.32 C 23.651 18.291 25.182 17.73 26.762 17.74 C 28.412 17.74 29.632 18.25 30.402 19.27 C 30.932 19.96 31.192 20.83 31.192 21.89 Z\" fill=\"rgb(49,176,75)\"></path><path d=\"M 87.452 0 L 15.952 0 C 11.812 0 7.752 3.36 6.892 7.5 L 0.162 39.76 C -0.698 43.9 1.952 47.26 6.092 47.26 L 77.582 47.26 C 81.722 47.26 85.782 43.9 86.642 39.76 L 93.382 7.5 C 94.232 3.36 91.582 0 87.452 0 Z M 43.142 39.16 L 43.132 39.16 C 43.052 39.55 42.902 39.9 42.682 40.2 C 42.462 40.5 42.192 40.76 41.882 40.97 C 41.572 41.18 41.242 41.34 40.882 41.44 C 40.522 41.55 40.162 41.6 39.822 41.6 C 39.482 41.6 39.142 41.55 38.842 41.44 C 38.532 41.34 38.272 41.18 38.062 40.98 C 37.842 40.77 37.692 40.52 37.602 40.2 C 37.542 40.04 37.522 39.87 37.522 39.69 C 37.535 38.757 38.016 37.893 38.802 37.39 C 39.442 36.97 40.132 36.75 40.872 36.75 C 41.192 36.75 41.522 36.8 41.832 36.91 C 42.162 37.01 42.422 37.17 42.642 37.36 C 43.032 37.69 43.222 38.1 43.222 38.6 C 43.222 38.77 43.192 38.96 43.142 39.16 Z M 49.872 39.16 C 49.702 39.9 49.282 40.51 48.612 40.97 C 47.982 41.39 47.302 41.6 46.562 41.6 C 45.822 41.6 45.212 41.39 44.792 40.97 C 44.422 40.64 44.242 40.21 44.242 39.69 C 44.242 39.52 44.262 39.34 44.302 39.16 C 44.482 38.39 44.892 37.8 45.542 37.38 C 46.182 36.96 46.862 36.75 47.592 36.75 C 48.322 36.75 48.892 36.95 49.382 37.36 C 49.752 37.69 49.932 38.12 49.932 38.64 C 49.932 38.8 49.912 38.97 49.872 39.16 Z M 78.212 9.41 L 78.202 9.41 L 66.912 13.93 C 69.032 14.28 70.642 15.1 71.782 16.4 C 72.532 17.26 73.042 18.31 73.292 19.56 C 73.412 20.1 73.462 20.68 73.462 21.29 C 73.462 22.09 73.372 22.93 73.182 23.83 C 72.832 25.44 72.252 26.87 71.462 28.13 C 70.712 29.357 69.738 30.432 68.592 31.3 C 67.472 32.15 66.202 32.8 64.802 33.25 C 63.392 33.71 61.892 33.93 60.332 33.93 L 51.382 33.93 C 49.912 33.91 48.652 33.68 47.602 33.24 C 46.702 32.86 45.962 32.36 45.372 31.73 C 44.462 32.4 43.462 32.92 42.352 33.28 C 41.252 33.64 40.062 33.83 38.802 33.88 C 38.622 33.91 38.442 33.93 38.262 33.93 L 38.202 33.93 C 36.782 33.93 35.562 33.72 34.552 33.32 C 34.28 34.278 33.891 35.198 33.392 36.06 C 32.752 37.18 31.932 38.14 30.952 38.96 C 29.972 39.77 28.842 40.41 27.562 40.87 C 26.312 41.32 24.922 41.55 23.382 41.56 L 24.442 36.61 C 25.642 36.61 26.642 36.25 27.462 35.53 C 28.192 34.9 28.712 34.01 29.012 32.85 C 28.692 32.98 28.352 33.11 27.992 33.22 C 26.532 33.7 24.982 33.93 23.342 33.93 C 21.702 33.93 20.222 33.7 18.952 33.22 C 17.692 32.75 16.652 32.07 15.852 31.17 C 15.062 30.3 14.532 29.2 14.262 27.88 C 13.992 26.57 14.042 25.07 14.392 23.39 C 14.752 21.75 15.332 20.27 16.152 18.96 C 16.982 17.66 17.982 16.56 19.162 15.67 C 20.332 14.76 21.652 14.07 23.122 13.6 C 24.592 13.13 26.162 12.89 27.812 12.89 C 29.462 12.89 30.912 13.12 32.172 13.58 C 33.442 14.05 34.472 14.74 35.262 15.65 C 36.042 16.54 36.562 17.64 36.822 18.94 C 37.092 20.24 37.052 21.72 36.702 23.39 L 36.382 24.87 C 36.102 26.25 36.212 27.29 36.742 28 C 37.252 28.72 38.102 29.08 39.272 29.09 L 39.272 29.05 C 40.422 29.05 41.422 28.69 42.282 27.98 C 43.122 27.27 43.702 26.14 44.032 24.59 L 46.022 15.31 L 53.962 15.31 L 52.942 20.16 L 50.612 20.16 L 49.612 24.87 C 49.322 26.25 49.442 27.29 49.962 28 C 50.472 28.73 51.322 29.09 52.502 29.09 L 61.312 29.29 C 62.112 29.29 62.862 29.15 63.572 28.88 C 64.272 28.61 64.902 28.24 65.462 27.77 C 66.022 27.29 66.492 26.72 66.882 26.05 C 67.272 25.37 67.552 24.63 67.712 23.83 C 67.832 23.31 67.882 22.82 67.882 22.35 C 67.882 21.37 67.642 20.54 67.152 19.88 C 66.402 18.89 65.232 18.4 63.622 18.4 L 58.182 18.4 L 57.052 13.76 L 79.462 3.53 Z\" fill=\"rgb(49,176,75)\"></path><path d=\"M 43.222 38.6 C 43.222 38.77 43.192 38.96 43.142 39.16 L 43.132 39.16 C 43.052 39.55 42.902 39.9 42.682 40.2 C 42.462 40.5 42.192 40.76 41.882 40.97 C 41.572 41.18 41.242 41.34 40.882 41.44 C 40.522 41.55 40.162 41.6 39.822 41.6 C 39.482 41.6 39.142 41.55 38.842 41.44 C 38.532 41.34 38.272 41.18 38.062 40.98 C 37.842 40.77 37.692 40.52 37.602 40.2 C 37.542 40.04 37.522 39.87 37.522 39.69 C 37.535 38.757 38.016 37.893 38.802 37.39 C 39.442 36.97 40.132 36.75 40.872 36.75 C 41.192 36.75 41.522 36.8 41.832 36.91 C 42.162 37.01 42.422 37.17 42.642 37.36 C 43.032 37.69 43.222 38.1 43.222 38.6 Z M 49.932 38.64 C 49.932 38.8 49.912 38.97 49.872 39.16 C 49.702 39.9 49.282 40.51 48.612 40.97 C 47.982 41.39 47.302 41.6 46.562 41.6 C 45.822 41.6 45.212 41.39 44.792 40.97 C 44.422 40.64 44.242 40.21 44.242 39.69 C 44.242 39.52 44.262 39.34 44.302 39.16 C 44.482 38.39 44.892 37.8 45.542 37.38 C 46.182 36.96 46.862 36.75 47.592 36.75 C 48.322 36.75 48.892 36.95 49.382 37.36 C 49.752 37.69 49.932 38.12 49.932 38.64 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 57.052 13.76 L 58.182 18.4 L 63.622 18.4 C 65.232 18.4 66.402 18.89 67.152 19.88 C 67.642 20.54 67.882 21.37 67.882 22.35 C 67.882 22.82 67.832 23.31 67.712 23.83 C 67.552 24.63 67.272 25.37 66.882 26.05 C 66.492 26.72 66.022 27.29 65.462 27.77 C 64.902 28.24 64.272 28.61 63.572 28.88 C 62.862 29.15 62.112 29.29 61.312 29.29 L 52.502 29.09 C 51.322 29.09 50.472 28.73 49.962 28 C 49.442 27.29 49.322 26.25 49.612 24.87 L 50.612 20.16 L 52.942 20.16 L 53.962 15.31 L 46.022 15.31 L 44.032 24.59 C 43.702 26.14 43.122 27.27 42.282 27.98 C 41.422 28.69 40.422 29.05 39.272 29.05 L 39.272 29.09 C 38.102 29.08 37.252 28.72 36.742 28 C 36.212 27.29 36.102 26.25 36.382 24.87 L 36.702 23.39 C 37.052 21.72 37.092 20.24 36.822 18.94 C 36.562 17.64 36.042 16.54 35.262 15.65 C 34.472 14.74 33.442 14.05 32.172 13.58 C 30.912 13.12 29.462 12.89 27.812 12.89 C 26.162 12.89 24.592 13.13 23.122 13.6 C 21.652 14.07 20.332 14.76 19.162 15.67 C 17.982 16.56 16.982 17.66 16.152 18.96 C 15.332 20.27 14.752 21.75 14.392 23.39 C 14.042 25.07 13.992 26.57 14.262 27.88 C 14.532 29.2 15.062 30.3 15.852 31.17 C 16.652 32.07 17.692 32.75 18.952 33.22 C 20.222 33.7 21.702 33.93 23.342 33.93 C 24.982 33.93 26.532 33.7 27.992 33.22 C 28.352 33.11 28.692 32.98 29.012 32.85 C 28.712 34.01 28.192 34.9 27.462 35.53 C 26.642 36.25 25.642 36.61 24.442 36.61 L 23.382 41.56 C 24.922 41.56 26.312 41.32 27.562 40.87 C 28.842 40.41 29.972 39.77 30.952 38.96 C 31.932 38.14 32.752 37.18 33.392 36.06 C 33.891 35.198 34.28 34.278 34.552 33.32 C 35.562 33.72 36.782 33.93 38.202 33.93 L 38.262 33.93 C 38.442 33.93 38.622 33.91 38.802 33.88 C 40.062 33.83 41.252 33.64 42.352 33.28 C 43.462 32.92 44.462 32.4 45.372 31.73 C 45.962 32.36 46.702 32.86 47.602 33.24 C 48.652 33.68 49.912 33.91 51.382 33.93 L 60.332 33.93 C 61.892 33.93 63.392 33.71 64.802 33.25 C 66.202 32.8 67.472 32.15 68.592 31.3 C 69.738 30.432 70.712 29.357 71.462 28.13 C 72.252 26.87 72.832 25.44 73.182 23.83 C 73.372 22.93 73.462 22.09 73.462 21.29 C 73.462 20.68 73.412 20.1 73.292 19.56 C 73.042 18.31 72.532 17.26 71.782 16.4 C 70.642 15.1 69.032 14.28 66.912 13.93 L 78.202 9.41 L 78.212 9.41 L 79.462 3.53 Z M 31.022 23.39 C 30.832 24.23 30.542 25 30.132 25.7 C 29.722 26.39 29.232 26.99 28.662 27.49 C 28.092 27.99 27.432 28.38 26.692 28.65 C 25.952 28.93 25.172 29.07 24.352 29.07 C 23.532 29.07 22.832 28.93 22.222 28.65 C 21.612 28.38 21.112 27.99 20.732 27.49 C 20.352 26.99 20.102 26.39 19.982 25.7 C 19.93 25.42 19.903 25.135 19.902 24.85 C 19.902 24.39 19.962 23.9 20.082 23.39 C 20.252 22.56 20.542 21.81 20.962 21.12 C 21.372 20.43 21.872 19.83 22.452 19.32 C 23.651 18.291 25.182 17.73 26.762 17.74 C 28.412 17.74 29.632 18.25 30.402 19.27 C 30.932 19.96 31.192 20.83 31.192 21.89 C 31.192 22.37 31.132 22.87 31.022 23.39 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:12334765870,withExternalLayout:true,...addPropertyOverrides({nE6eRJoYu:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 95 48\"><g transform=\"translate(0.586 0.685)\" id=\"ss9744219313_1\"><path d=\"M 31.192 21.89 C 31.192 22.37 31.132 22.87 31.022 23.39 C 30.832 24.23 30.542 25 30.132 25.7 C 29.722 26.39 29.232 26.99 28.662 27.49 C 28.092 27.99 27.432 28.38 26.692 28.65 C 25.952 28.93 25.172 29.07 24.352 29.07 C 23.532 29.07 22.832 28.93 22.222 28.65 C 21.612 28.38 21.112 27.99 20.732 27.49 C 20.352 26.99 20.102 26.39 19.982 25.7 C 19.93 25.42 19.903 25.135 19.902 24.85 C 19.902 24.39 19.962 23.9 20.082 23.39 C 20.252 22.56 20.542 21.81 20.962 21.12 C 21.372 20.43 21.872 19.83 22.452 19.32 C 23.651 18.291 25.182 17.73 26.762 17.74 C 28.412 17.74 29.632 18.25 30.402 19.27 C 30.932 19.96 31.192 20.83 31.192 21.89 Z\" fill=\"rgb(49,176,75)\"></path><path d=\"M 87.452 0 L 15.952 0 C 11.812 0 7.752 3.36 6.892 7.5 L 0.162 39.76 C -0.698 43.9 1.952 47.26 6.092 47.26 L 77.582 47.26 C 81.722 47.26 85.782 43.9 86.642 39.76 L 93.382 7.5 C 94.232 3.36 91.582 0 87.452 0 Z M 43.142 39.16 L 43.132 39.16 C 43.052 39.55 42.902 39.9 42.682 40.2 C 42.462 40.5 42.192 40.76 41.882 40.97 C 41.572 41.18 41.242 41.34 40.882 41.44 C 40.522 41.55 40.162 41.6 39.822 41.6 C 39.482 41.6 39.142 41.55 38.842 41.44 C 38.532 41.34 38.272 41.18 38.062 40.98 C 37.842 40.77 37.692 40.52 37.602 40.2 C 37.542 40.04 37.522 39.87 37.522 39.69 C 37.535 38.757 38.016 37.893 38.802 37.39 C 39.442 36.97 40.132 36.75 40.872 36.75 C 41.192 36.75 41.522 36.8 41.832 36.91 C 42.162 37.01 42.422 37.17 42.642 37.36 C 43.032 37.69 43.222 38.1 43.222 38.6 C 43.222 38.77 43.192 38.96 43.142 39.16 Z M 49.872 39.16 C 49.702 39.9 49.282 40.51 48.612 40.97 C 47.982 41.39 47.302 41.6 46.562 41.6 C 45.822 41.6 45.212 41.39 44.792 40.97 C 44.422 40.64 44.242 40.21 44.242 39.69 C 44.242 39.52 44.262 39.34 44.302 39.16 C 44.482 38.39 44.892 37.8 45.542 37.38 C 46.182 36.96 46.862 36.75 47.592 36.75 C 48.322 36.75 48.892 36.95 49.382 37.36 C 49.752 37.69 49.932 38.12 49.932 38.64 C 49.932 38.8 49.912 38.97 49.872 39.16 Z M 78.212 9.41 L 78.202 9.41 L 66.912 13.93 C 69.032 14.28 70.642 15.1 71.782 16.4 C 72.532 17.26 73.042 18.31 73.292 19.56 C 73.412 20.1 73.462 20.68 73.462 21.29 C 73.462 22.09 73.372 22.93 73.182 23.83 C 72.832 25.44 72.252 26.87 71.462 28.13 C 70.712 29.357 69.738 30.432 68.592 31.3 C 67.472 32.15 66.202 32.8 64.802 33.25 C 63.392 33.71 61.892 33.93 60.332 33.93 L 51.382 33.93 C 49.912 33.91 48.652 33.68 47.602 33.24 C 46.702 32.86 45.962 32.36 45.372 31.73 C 44.462 32.4 43.462 32.92 42.352 33.28 C 41.252 33.64 40.062 33.83 38.802 33.88 C 38.622 33.91 38.442 33.93 38.262 33.93 L 38.202 33.93 C 36.782 33.93 35.562 33.72 34.552 33.32 C 34.28 34.278 33.891 35.198 33.392 36.06 C 32.752 37.18 31.932 38.14 30.952 38.96 C 29.972 39.77 28.842 40.41 27.562 40.87 C 26.312 41.32 24.922 41.55 23.382 41.56 L 24.442 36.61 C 25.642 36.61 26.642 36.25 27.462 35.53 C 28.192 34.9 28.712 34.01 29.012 32.85 C 28.692 32.98 28.352 33.11 27.992 33.22 C 26.532 33.7 24.982 33.93 23.342 33.93 C 21.702 33.93 20.222 33.7 18.952 33.22 C 17.692 32.75 16.652 32.07 15.852 31.17 C 15.062 30.3 14.532 29.2 14.262 27.88 C 13.992 26.57 14.042 25.07 14.392 23.39 C 14.752 21.75 15.332 20.27 16.152 18.96 C 16.982 17.66 17.982 16.56 19.162 15.67 C 20.332 14.76 21.652 14.07 23.122 13.6 C 24.592 13.13 26.162 12.89 27.812 12.89 C 29.462 12.89 30.912 13.12 32.172 13.58 C 33.442 14.05 34.472 14.74 35.262 15.65 C 36.042 16.54 36.562 17.64 36.822 18.94 C 37.092 20.24 37.052 21.72 36.702 23.39 L 36.382 24.87 C 36.102 26.25 36.212 27.29 36.742 28 C 37.252 28.72 38.102 29.08 39.272 29.09 L 39.272 29.05 C 40.422 29.05 41.422 28.69 42.282 27.98 C 43.122 27.27 43.702 26.14 44.032 24.59 L 46.022 15.31 L 53.962 15.31 L 52.942 20.16 L 50.612 20.16 L 49.612 24.87 C 49.322 26.25 49.442 27.29 49.962 28 C 50.472 28.73 51.322 29.09 52.502 29.09 L 61.312 29.29 C 62.112 29.29 62.862 29.15 63.572 28.88 C 64.272 28.61 64.902 28.24 65.462 27.77 C 66.022 27.29 66.492 26.72 66.882 26.05 C 67.272 25.37 67.552 24.63 67.712 23.83 C 67.832 23.31 67.882 22.82 67.882 22.35 C 67.882 21.37 67.642 20.54 67.152 19.88 C 66.402 18.89 65.232 18.4 63.622 18.4 L 58.182 18.4 L 57.052 13.76 L 79.462 3.53 Z\" fill=\"rgb(49,176,75)\"></path><path d=\"M 43.222 38.6 C 43.222 38.77 43.192 38.96 43.142 39.16 L 43.132 39.16 C 43.052 39.55 42.902 39.9 42.682 40.2 C 42.462 40.5 42.192 40.76 41.882 40.97 C 41.572 41.18 41.242 41.34 40.882 41.44 C 40.522 41.55 40.162 41.6 39.822 41.6 C 39.482 41.6 39.142 41.55 38.842 41.44 C 38.532 41.34 38.272 41.18 38.062 40.98 C 37.842 40.77 37.692 40.52 37.602 40.2 C 37.542 40.04 37.522 39.87 37.522 39.69 C 37.535 38.757 38.016 37.893 38.802 37.39 C 39.442 36.97 40.132 36.75 40.872 36.75 C 41.192 36.75 41.522 36.8 41.832 36.91 C 42.162 37.01 42.422 37.17 42.642 37.36 C 43.032 37.69 43.222 38.1 43.222 38.6 Z M 49.932 38.64 C 49.932 38.8 49.912 38.97 49.872 39.16 C 49.702 39.9 49.282 40.51 48.612 40.97 C 47.982 41.39 47.302 41.6 46.562 41.6 C 45.822 41.6 45.212 41.39 44.792 40.97 C 44.422 40.64 44.242 40.21 44.242 39.69 C 44.242 39.52 44.262 39.34 44.302 39.16 C 44.482 38.39 44.892 37.8 45.542 37.38 C 46.182 36.96 46.862 36.75 47.592 36.75 C 48.322 36.75 48.892 36.95 49.382 37.36 C 49.752 37.69 49.932 38.12 49.932 38.64 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 57.052 13.76 L 58.182 18.4 L 63.622 18.4 C 65.232 18.4 66.402 18.89 67.152 19.88 C 67.642 20.54 67.882 21.37 67.882 22.35 C 67.882 22.82 67.832 23.31 67.712 23.83 C 67.552 24.63 67.272 25.37 66.882 26.05 C 66.492 26.72 66.022 27.29 65.462 27.77 C 64.902 28.24 64.272 28.61 63.572 28.88 C 62.862 29.15 62.112 29.29 61.312 29.29 L 52.502 29.09 C 51.322 29.09 50.472 28.73 49.962 28 C 49.442 27.29 49.322 26.25 49.612 24.87 L 50.612 20.16 L 52.942 20.16 L 53.962 15.31 L 46.022 15.31 L 44.032 24.59 C 43.702 26.14 43.122 27.27 42.282 27.98 C 41.422 28.69 40.422 29.05 39.272 29.05 L 39.272 29.09 C 38.102 29.08 37.252 28.72 36.742 28 C 36.212 27.29 36.102 26.25 36.382 24.87 L 36.702 23.39 C 37.052 21.72 37.092 20.24 36.822 18.94 C 36.562 17.64 36.042 16.54 35.262 15.65 C 34.472 14.74 33.442 14.05 32.172 13.58 C 30.912 13.12 29.462 12.89 27.812 12.89 C 26.162 12.89 24.592 13.13 23.122 13.6 C 21.652 14.07 20.332 14.76 19.162 15.67 C 17.982 16.56 16.982 17.66 16.152 18.96 C 15.332 20.27 14.752 21.75 14.392 23.39 C 14.042 25.07 13.992 26.57 14.262 27.88 C 14.532 29.2 15.062 30.3 15.852 31.17 C 16.652 32.07 17.692 32.75 18.952 33.22 C 20.222 33.7 21.702 33.93 23.342 33.93 C 24.982 33.93 26.532 33.7 27.992 33.22 C 28.352 33.11 28.692 32.98 29.012 32.85 C 28.712 34.01 28.192 34.9 27.462 35.53 C 26.642 36.25 25.642 36.61 24.442 36.61 L 23.382 41.56 C 24.922 41.56 26.312 41.32 27.562 40.87 C 28.842 40.41 29.972 39.77 30.952 38.96 C 31.932 38.14 32.752 37.18 33.392 36.06 C 33.891 35.198 34.28 34.278 34.552 33.32 C 35.562 33.72 36.782 33.93 38.202 33.93 L 38.262 33.93 C 38.442 33.93 38.622 33.91 38.802 33.88 C 40.062 33.83 41.252 33.64 42.352 33.28 C 43.462 32.92 44.462 32.4 45.372 31.73 C 45.962 32.36 46.702 32.86 47.602 33.24 C 48.652 33.68 49.912 33.91 51.382 33.93 L 60.332 33.93 C 61.892 33.93 63.392 33.71 64.802 33.25 C 66.202 32.8 67.472 32.15 68.592 31.3 C 69.738 30.432 70.712 29.357 71.462 28.13 C 72.252 26.87 72.832 25.44 73.182 23.83 C 73.372 22.93 73.462 22.09 73.462 21.29 C 73.462 20.68 73.412 20.1 73.292 19.56 C 73.042 18.31 72.532 17.26 71.782 16.4 C 70.642 15.1 69.032 14.28 66.912 13.93 L 78.202 9.41 L 78.212 9.41 L 79.462 3.53 Z M 31.022 23.39 C 30.832 24.23 30.542 25 30.132 25.7 C 29.722 26.39 29.232 26.99 28.662 27.49 C 28.092 27.99 27.432 28.38 26.692 28.65 C 25.952 28.93 25.172 29.07 24.352 29.07 C 23.532 29.07 22.832 28.93 22.222 28.65 C 21.612 28.38 21.112 27.99 20.732 27.49 C 20.352 26.99 20.102 26.39 19.982 25.7 C 19.93 25.42 19.903 25.135 19.902 24.85 C 19.902 24.39 19.962 23.9 20.082 23.39 C 20.252 22.56 20.542 21.81 20.962 21.12 C 21.372 20.43 21.872 19.83 22.452 19.32 C 23.651 18.291 25.182 17.73 26.762 17.74 C 28.412 17.74 29.632 18.25 30.402 19.27 C 30.932 19.96 31.192 20.83 31.192 21.89 C 31.192 22.37 31.132 22.87 31.022 23.39 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:9744219313}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Idrki.framer-35i76r, .framer-Idrki .framer-35i76r { display: block; }\",\".framer-Idrki.framer-2lboui { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 60px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 256px; }\",\".framer-Idrki .framer-1pzthpu { flex: none; height: 45px; overflow: hidden; position: relative; width: 57px; }\",\".framer-Idrki .framer-1t2b7k { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Idrki .framer-l9uh7e { flex: none; height: 35px; left: calc(45.614035087719316% - 29px / 2); position: absolute; top: calc(53.33333333333336% - 35px / 2); width: 29px; }\",\".framer-Idrki .framer-1p5k2js { flex: none; height: 47px; position: relative; width: 52px; }\",\".framer-Idrki .framer-nhe4j9 { flex: none; height: 47px; position: relative; width: 54px; }\",\".framer-Idrki .framer-lxuuk1 { flex: none; height: 47px; position: relative; width: 47px; }\",\".framer-Idrki .framer-sp9xpk { flex: none; height: 60px; position: relative; width: 46px; }\",\".framer-Idrki .framer-1y8c69z { flex: none; height: 60px; position: relative; width: 261px; }\",\".framer-Idrki .framer-1eac5oy { flex: none; height: 48px; position: relative; width: 95px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Idrki.framer-2lboui { gap: 0px; } .framer-Idrki.framer-2lboui > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Idrki.framer-2lboui > :first-child { margin-left: 0px; } .framer-Idrki.framer-2lboui > :last-child { margin-right: 0px; } }\",\".framer-Idrki.framer-v-1q4wh5d.framer-2lboui { aspect-ratio: 4.266666666666667 / 1; height: var(--framer-aspect-ratio-supported, 60px); }\",\".framer-Idrki.framer-v-apn49h.framer-2lboui { aspect-ratio: 4.35 / 1; height: var(--framer-aspect-ratio-supported, 60px); width: 261px; }\",\".framer-Idrki.framer-v-apn49h .framer-1y8c69z { order: 0; }\",\".framer-Idrki.framer-v-xrkzdi.framer-2lboui { width: min-content; }\",\".framer-Idrki.framer-v-1el2gyp.framer-2lboui { aspect-ratio: 4.35 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 190px; }\",\".framer-Idrki.framer-v-1el2gyp .framer-1y8c69z { height: 42px; order: 0; width: 182px; }\",\".framer-Idrki.framer-v-1n7lbdw.framer-2lboui { aspect-ratio: 4.266666666666667 / 1; height: var(--framer-aspect-ratio-supported, 45px); width: 190px; }\",\".framer-Idrki.framer-v-1n7lbdw .framer-1pzthpu { height: 32px; width: 41px; }\",\".framer-Idrki.framer-v-1n7lbdw .framer-l9uh7e { height: 25px; left: calc(47.50000000000002% - 21px / 2); top: calc(51.51515151515154% - 25px / 2); width: 21px; }\",\".framer-Idrki.framer-v-1n7lbdw .framer-1p5k2js, .framer-Idrki.framer-v-1fxvt1a .framer-1p5k2js, .framer-Idrki.framer-v-1lr2b3y .framer-1p5k2js { height: 33px; width: 37px; }\",\".framer-Idrki.framer-v-1n7lbdw .framer-nhe4j9, .framer-Idrki.framer-v-1fxvt1a .framer-nhe4j9, .framer-Idrki.framer-v-1lr2b3y .framer-nhe4j9 { height: 33px; width: 38px; }\",\".framer-Idrki.framer-v-1n7lbdw .framer-lxuuk1, .framer-Idrki.framer-v-1fxvt1a .framer-lxuuk1, .framer-Idrki.framer-v-1lr2b3y .framer-lxuuk1 { height: 33px; width: 34px; }\",\".framer-Idrki.framer-v-1n7lbdw .framer-sp9xpk, .framer-Idrki.framer-v-1fxvt1a .framer-sp9xpk, .framer-Idrki.framer-v-1lr2b3y .framer-sp9xpk { height: 43px; width: 32px; }\",\".framer-Idrki.framer-v-7t2d5u.framer-2lboui, .framer-Idrki.framer-v-1fxvt1a.framer-2lboui, .framer-Idrki.framer-v-1jdxok.framer-2lboui, .framer-Idrki.framer-v-1lr2b3y.framer-2lboui { height: min-content; width: min-content; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 256\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"r8K2nSmXL\":{\"layout\":[\"fixed\",\"fixed\"]},\"OMkbNoxpj\":{\"layout\":[\"fixed\",\"fixed\"]},\"nE6eRJoYu\":{\"layout\":[\"auto\",\"fixed\"]},\"fRFTu8Z1W\":{\"layout\":[\"fixed\",\"fixed\"]},\"VUWSdgOLK\":{\"layout\":[\"fixed\",\"fixed\"]},\"v2yNCLkv0\":{\"layout\":[\"auto\",\"auto\"]},\"FIOX5Zd85\":{\"layout\":[\"auto\",\"auto\"]},\"SBV85umxd\":{\"layout\":[\"auto\",\"auto\"]},\"nzeNVgflN\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"rF8l9cuSl\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIHu4k61fi=withCSS(Component,css,\"framer-Idrki\");export default FramerIHu4k61fi;FramerIHu4k61fi.displayName=\"Logo\";FramerIHu4k61fi.defaultProps={height:60,width:256};addPropertyControls(FramerIHu4k61fi,{variant:{options:[\"VsH99nWk0\",\"r8K2nSmXL\",\"OMkbNoxpj\",\"nE6eRJoYu\",\"fRFTu8Z1W\",\"VUWSdgOLK\",\"v2yNCLkv0\",\"FIOX5Zd85\",\"SBV85umxd\",\"nzeNVgflN\"],optionTitles:[\"EN-Primary\",\"EN-Secondary\",\"AR-Primary\",\"AR-Secondary\",\"AR-Mobile\",\"EN-Mobile\",\"TUR-Desktop\",\"TUR-Mobile\",\"TUR-Desktop-EN\",\"TUR-Mobile-EN\"],title:\"Variant\",type:ControlType.Enum},rF8l9cuSl:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerIHu4k61fi,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIHu4k61fi\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"256\",\"framerVariables\":\"{\\\"rF8l9cuSl\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"r8K2nSmXL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OMkbNoxpj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nE6eRJoYu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"fRFTu8Z1W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VUWSdgOLK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v2yNCLkv0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FIOX5Zd85\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SBV85umxd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nzeNVgflN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"60\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IHu4k61fi.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nexport const containerStyles = {\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nconst nullIconStyle = {\n    minWidth: \"10px\",\n    minHeight: \"10px\",\n    maxWidth: \"20px\",\n    maxHeight: \"20px\",\n    width: \"60%\",\n    height: \"60%\"\n};\nconst emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(149, 149, 149, 0.1)\",\n    border: \"1px dashed rgba(149, 149, 149, 0.15)\",\n    color: \"#a5a5a5\",\n    flexDirection: \"column\"\n};\nexport const NullState = /*#__PURE__*/ React.forwardRef((_, ref)=>{\n    return(/*#__PURE__*/ _jsx(\"div\", {\n        style: emptyStateStyle,\n        ref: ref\n    }));\n}) /*\n\n<svg\n                xmlns=\"http://www.w3.org/2000/svg\"\n                viewBox=\"0 0 30 30\"\n                style={nullIconStyle}\n            >\n                <path\n                    d=\"M 12.857 0 C 19.958 0 25.714 5.756 25.714 12.857 C 25.714 19.958 19.958 25.714 12.857 25.714 C 5.756 25.714 0 19.958 0 12.857 C 0 5.756 5.756 0 12.857 0 Z\"\n                    fill=\"#FFFFFF\"\n                ></path>\n                <path\n                    d=\"M 20.357 20.357 L 27.857 27.857\"\n                    fill=\"transparent\"\n                    strokeWidth=\"4.28\"\n                    stroke=\"#FFFFFF\"\n                    strokeLinecap=\"round\"\n                ></path>\n                <g transform=\"translate(9.643 6.429)\">\n                    <path\n                        d=\"M 3.214 12.857 L 3.214 12.857\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.75\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                    ></path>\n                    <path\n                        d=\"M 0 3.214 C 0 1.004 1.843 0 3.214 0 C 4.586 0 6.429 0.603 6.429 3.214 C 6.429 5.826 3.214 5.913 3.214 7.232 C 3.214 8.552 3.214 8.571 3.214 8.571\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.22\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                        strokeLinejoin=\"round\"\n                    ></path>\n                </g>\n            </svg>\n            */ ;\n\nexport const __FramerMetadata__ = {\"exports\":{\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"NullState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./nullstate.map", "const o=e=>e;let t;var h=e=>(t||(t=o(e.createElement(\"path\",{d:\"M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z\"}),\"Home\")),t);export{h as default};\n", "import{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useMemo,useRef}from\"react\";import{addPropertyControls,ControlType,motion,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/material-icons/Home.js@0.0.32\";import{defaultEvents,useIconSelection,getIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const moduleBaseUrl=\"https://framer.com/m/material-icons/\";const icons={AcUnit:15,AccessAlarm:15,AccessAlarms:15,AccessTime:15,AccessTimeFilled:0,Accessibility:7,AccessibilityNew:0,Accessible:15,AccessibleForward:0,AccountBalance:2,AccountBalanceWallet:0,AccountBox:15,AccountCircle:7,AccountTree:15,AdUnits:15,Adb:15,Add:15,AddAPhoto:15,AddAlarm:15,AddAlert:15,AddBox:15,AddBusiness:15,AddCircle:15,AddCircleOutline:0,AddComment:15,AddIcCall:15,AddLink:15,AddLocation:15,AddLocationAlt:2,AddModerator:15,AddPhotoAlternate:0,AddReaction:15,AddRoad:15,AddShoppingCart:2,AddTask:15,AddToDrive:15,AddToHomeScreen:2,AddToPhotos:15,AddToQueue:15,Addchart:15,Adjust:15,AdminPanelSettings:0,Agriculture:15,Air:15,AirlineSeatFlat:2,AirplaneTicket:2,AirplanemodeActive:0,AirplanemodeInactive:0,Airplay:15,AirportShuttle:2,Alarm:15,AlarmAdd:15,AlarmOff:15,AlarmOn:15,Album:15,AlignHorizontalLeft:0,AlignHorizontalRight:0,AlignVerticalBottom:0,AlignVerticalCenter:0,AlignVerticalTop:0,AllInbox:15,AllInclusive:15,AllOut:15,AltRoute:15,AlternateEmail:2,Analytics:15,Anchor:15,Android:15,Animation:15,Announcement:15,Aod:15,Apartment:15,Api:15,AppBlocking:15,AppRegistration:2,AppSettingsAlt:2,Apple:0,Approval:15,Apps:15,Architecture:15,Archive:15,ArrowBack:15,ArrowBackIos:15,ArrowBackIosNew:2,ArrowCircleDown:2,ArrowCircleUp:7,ArrowDownward:7,ArrowDropDown:7,ArrowDropDownCircle:0,ArrowDropUp:15,ArrowForward:15,ArrowForwardIos:2,ArrowLeft:15,ArrowRight:15,ArrowRightAlt:7,ArrowUpward:15,ArtTrack:15,Article:15,AspectRatio:15,Assessment:15,Assignment:15,AssignmentInd:7,AssignmentLate:2,AssignmentReturn:0,AssignmentReturned:0,AssignmentTurnedIn:0,Assistant:15,AssistantDirection:0,AssistantPhoto:2,Atm:15,AttachEmail:15,AttachFile:15,AttachMoney:15,Attachment:15,Attractions:15,Attribution:15,Audiotrack:15,AutoAwesome:15,AutoAwesomeMosaic:0,AutoAwesomeMotion:0,AutoDelete:15,AutoFixHigh:15,AutoFixNormal:7,AutoFixOff:15,AutoGraph:15,AutoStories:15,AutofpsSelect:7,Autorenew:15,AvTimer:15,BabyChangingStation:0,Backpack:15,Backspace:15,Backup:15,BackupTable:15,Badge:15,BakeryDining:15,Balcony:15,Ballot:15,BarChart:15,BatchPrediction:2,Bathroom:15,Bathtub:15,Battery20:15,Battery30:15,Battery50:15,Battery60:15,Battery80:15,Battery90:15,BatteryAlert:15,BatteryCharging20:0,BatteryCharging30:0,BatteryCharging50:0,BatteryCharging60:0,BatteryCharging80:0,BatteryCharging90:0,BatteryChargingFull:0,BatteryFull:15,BatterySaver:15,BatteryStd:15,BatteryUnknown:2,BeachAccess:15,Bed:15,BedroomBaby:15,BedroomChild:15,BedroomParent:7,Bedtime:15,Beenhere:15,Bento:15,BikeScooter:15,Biotech:15,Blender:15,Block:15,Bloodtype:15,Bluetooth:15,BluetoothAudio:2,BluetoothConnected:0,BluetoothDisabled:0,BluetoothDrive:2,BluetoothSearching:0,BlurCircular:15,BlurLinear:15,BlurOff:15,BlurOn:15,Bolt:15,Book:15,BookOnline:15,Bookmark:15,BookmarkAdd:15,BookmarkAdded:7,BookmarkBorder:2,BookmarkRemove:2,Bookmarks:15,BorderAll:15,BorderBottom:15,BorderClear:15,BorderColor:15,BorderHorizontal:0,BorderInner:15,BorderLeft:15,BorderOuter:15,BorderRight:15,BorderStyle:15,BorderTop:15,BorderVertical:2,BrandingWatermark:0,BreakfastDining:2,Brightness1:15,Brightness2:15,Brightness3:15,Brightness4:15,Brightness5:15,Brightness6:15,Brightness7:15,BrightnessAuto:2,BrightnessHigh:2,BrightnessLow:7,BrightnessMedium:0,BrokenImage:15,BrowserNotSupported:0,BrunchDining:15,Brush:15,BubbleChart:15,BugReport:15,Build:15,BuildCircle:15,Bungalow:15,BurstMode:15,BusAlert:15,Business:15,BusinessCenter:2,Cabin:15,Cable:15,Cached:15,Cake:15,Calculate:15,CalendarToday:7,CalendarViewDay:2,CalendarViewMonth:0,CalendarViewWeek:0,Call:15,CallEnd:15,CallMade:15,CallMerge:15,CallMissed:15,CallMissedOutgoing:0,CallReceived:15,CallSplit:15,CallToAction:15,Camera:15,CameraAlt:15,CameraEnhance:7,CameraFront:15,CameraIndoor:15,CameraOutdoor:7,CameraRear:15,CameraRoll:15,Cameraswitch:15,Campaign:15,Cancel:15,CancelPresentation:0,CancelScheduleSend:0,CarRental:15,CarRepair:15,CardGiftcard:15,CardMembership:2,CardTravel:15,Carpenter:15,Cases:15,Casino:15,Cast:15,CastConnected:7,CastForEducation:0,CatchingPokemon:2,Category:15,Celebration:15,CellWifi:15,CenterFocusStrong:0,CenterFocusWeak:2,Chair:15,ChairAlt:15,Chalet:15,ChangeCircle:15,ChangeHistory:7,ChargingStation:2,Chat:15,ChatBubble:15,ChatBubbleOutline:0,Check:15,CheckBox:15,CheckBoxOutlineBlank:0,CheckCircle:15,CheckCircleOutline:0,Checkroom:15,ChevronLeft:15,ChevronRight:15,ChildCare:15,ChildFriendly:7,ChromeReaderMode:0,Circle:15,CircleNotifications:0,Class:15,CleanHands:15,CleaningServices:0,Clear:15,ClearAll:15,Close:15,CloseFullscreen:2,ClosedCaption:7,ClosedCaptionOff:0,Cloud:15,CloudCircle:15,CloudDone:15,CloudDownload:7,CloudOff:15,CloudQueue:15,CloudUpload:15,Code:15,CodeOff:15,Coffee:15,CoffeeMaker:15,Collections:15,CollectionsBookmark:0,ColorLens:15,Colorize:15,Comment:15,CommentBank:15,Commute:15,Compare:15,CompareArrows:7,CompassCalibration:0,Compress:15,Computer:15,ConfirmationNumber:0,ConnectedTv:15,Construction:15,ContactMail:15,ContactPage:15,ContactPhone:15,ContactSupport:2,Contactless:15,Contacts:15,ContentCopy:15,ContentCut:15,ContentPaste:15,ContentPasteOff:2,ControlCamera:7,ControlPoint:15,CopyAll:15,Copyright:15,Coronavirus:15,CorporateFare:7,Cottage:15,Countertops:15,Create:15,CreateNewFolder:2,CreditCard:15,CreditCardOff:7,CreditScore:15,Crib:15,Crop:15,Crop169:15,Crop32:15,Crop54:15,Crop75:15,CropDin:15,CropFree:15,CropLandscape:7,CropOriginal:15,CropPortrait:15,CropRotate:15,CropSquare:15,Dangerous:15,DarkMode:15,Dashboard:15,DashboardCustomize:0,DataSaverOff:15,DataSaverOn:15,DataUsage:15,DateRange:15,Deck:15,Dehaze:15,Delete:15,DeleteForever:7,DeleteOutline:7,DeleteSweep:15,DeliveryDining:2,DepartureBoard:2,Description:15,DesignServices:2,DesktopMac:15,DesktopWindows:2,Details:15,DeveloperBoard:2,DeveloperBoardOff:0,DeveloperMode:7,DeviceHub:15,DeviceThermostat:0,DeviceUnknown:7,Devices:15,DevicesOther:15,DialerSip:15,Dialpad:15,Dining:15,DinnerDining:15,Directions:15,DirectionsBike:2,DirectionsBoat:2,DirectionsBoatFilled:0,DirectionsBus:7,DirectionsBusFilled:0,DirectionsCar:7,DirectionsCarFilled:0,DirectionsOff:7,DirectionsRailway:0,DirectionsRun:7,DirectionsSubway:0,DirectionsTransit:0,DirectionsWalk:2,DirtyLens:15,DisabledByDefault:0,DiscFull:15,Dns:15,DoDisturb:15,DoDisturbAlt:15,DoDisturbOff:15,DoDisturbOn:15,DoNotDisturb:15,DoNotDisturbAlt:2,DoNotDisturbOff:2,DoNotDisturbOn:2,DoNotStep:15,DoNotTouch:15,Dock:15,DocumentScanner:2,Domain:15,DomainDisabled:2,DomainVerification:0,Done:15,DoneAll:15,DoneOutline:15,DonutLarge:15,DonutSmall:15,DoorBack:15,DoorFront:15,DoorSliding:15,Doorbell:15,DoubleArrow:15,DownhillSkiing:2,Download:15,DownloadDone:15,DownloadForOffline:0,Downloading:15,Drafts:15,DragHandle:15,DragIndicator:7,DriveEta:15,DriveFileMove:7,DriveFolderUpload:0,Dry:15,DryCleaning:15,Duo:15,Dvr:15,DynamicFeed:15,DynamicForm:15,EMobiledata:15,Earbuds:15,EarbudsBattery:2,East:15,Eco:15,EdgesensorHigh:2,EdgesensorLow:7,Edit:15,EditAttributes:2,EditLocation:15,EditLocationAlt:2,EditNotifications:0,EditOff:15,EditRoad:15,EightK:15,EightKPlus:15,EightMp:15,EightteenMp:15,Eject:15,Elderly:15,ElectricBike:15,ElectricCar:15,ElectricMoped:7,ElectricRickshaw:0,ElectricScooter:2,ElectricalServices:0,Elevator:15,ElevenMp:15,Email:15,EmojiEmotions:7,EmojiEvents:15,EmojiFlags:15,EmojiFoodBeverage:0,EmojiNature:15,EmojiObjects:15,EmojiPeople:15,EmojiSymbols:15,EmojiTransportation:0,Engineering:15,EnhancedEncryption:0,Equalizer:15,Error:15,ErrorOutline:15,Escalator:15,EscalatorWarning:0,Euro:15,EuroSymbol:15,EvStation:15,Event:15,EventAvailable:2,EventBusy:15,EventNote:15,EventSeat:15,ExitToApp:15,Expand:15,ExpandLess:15,ExpandMore:15,Explicit:15,Explore:15,ExploreOff:15,Exposure:15,Extension:15,ExtensionOff:15,Face:15,FaceRetouchingOff:0,Facebook:15,FactCheck:15,FamilyRestroom:2,FastForward:15,FastRewind:15,Fastfood:15,Favorite:15,FavoriteBorder:2,FeaturedPlayList:0,FeaturedVideo:7,Feed:15,Feedback:15,Female:15,Fence:15,Festival:15,FiberDvr:15,FiberManualRecord:0,FiberNew:15,FiberPin:15,FiberSmartRecord:0,FileCopy:15,FileDownload:15,FileDownloadDone:0,FileDownloadOff:2,FilePresent:15,FileUpload:15,Filter:15,Filter1:15,Filter2:15,Filter3:15,Filter4:15,Filter5:15,Filter6:15,Filter7:15,Filter8:15,Filter9:15,Filter9Plus:15,FilterAlt:15,FilterBAndW:15,FilterCenterFocus:0,FilterDrama:15,FilterFrames:15,FilterHdr:15,FilterList:15,FilterNone:15,FilterTiltShift:2,FilterVintage:7,FindInPage:15,FindReplace:15,Fingerprint:15,FireExtinguisher:0,Fireplace:15,FirstPage:15,FitScreen:15,FitnessCenter:7,FiveG:15,FiveK:15,FiveKPlus:15,FiveMp:15,FivteenMp:15,Flag:15,Flaky:15,Flare:15,FlashAuto:15,FlashOff:15,FlashOn:15,FlashlightOff:7,FlashlightOn:15,Flatware:15,Flight:15,FlightLand:15,FlightTakeoff:7,Flip:15,FlipCameraAndroid:0,FlipCameraIos:7,FlipToBack:15,FlipToFront:15,Flourescent:15,FlutterDash:15,FmdBad:15,FmdGood:15,Folder:15,FolderOpen:15,FolderShared:15,FolderSpecial:7,FollowTheSigns:2,FontDownload:15,FontDownloadOff:2,FoodBank:15,FormatAlignCenter:0,FormatAlignJustify:0,FormatAlignLeft:2,FormatAlignRight:0,FormatBold:15,FormatClear:15,FormatColorFill:2,FormatColorReset:0,FormatColorText:2,FormatIndentDecrease:0,FormatIndentIncrease:0,FormatItalic:15,FormatLineSpacing:0,FormatListBulleted:0,FormatListNumbered:0,FormatPaint:15,FormatQuote:15,FormatShapes:15,FormatSize:15,FormatStrikethrough:0,FormatUnderlined:0,Forum:15,Forward:15,Forward10:15,Forward30:15,Forward5:15,ForwardToInbox:2,Foundation:15,FourGMobiledata:2,FourGPlusMobiledata:0,FourK:15,FourKPlus:15,FourMp:15,FourteenMp:15,FreeBreakfast:7,Fullscreen:15,FullscreenExit:2,Functions:15,GMobiledata:15,GTranslate:15,Gamepad:15,Games:15,Garage:15,Gavel:15,Gesture:15,GetApp:15,Gif:15,GitHub:0,Gite:15,GolfCourse:15,Google:0,GppBad:15,GppGood:15,GppMaybe:15,GpsFixed:15,GpsNotFixed:15,GpsOff:15,Grade:15,Gradient:15,Grading:15,Grain:15,GraphicEq:15,Grass:15,Grid3x3:15,Grid4x4:15,GridGoldenratio:2,GridOff:15,GridOn:15,GridView:15,Group:15,GroupAdd:15,GroupWork:15,Groups:15,HMobiledata:15,HPlusMobiledata:2,Hail:15,Handyman:15,Hardware:15,Hd:15,HdrAuto:15,HdrAutoSelect:7,HdrEnhancedSelect:0,HdrOff:15,HdrOffSelect:15,HdrOn:15,HdrOnSelect:15,HdrPlus:15,HdrStrong:15,HdrWeak:15,Headphones:15,HeadphonesBattery:0,Headset:15,HeadsetMic:15,HeadsetOff:15,Healing:15,HealthAndSafety:2,Hearing:15,HearingDisabled:2,Height:15,Help:15,HelpCenter:15,HelpOutline:15,Hevc:15,HideImage:15,HideSource:15,HighQuality:15,Highlight:15,HighlightAlt:15,HighlightOff:15,Hiking:15,History:15,HistoryEdu:15,HistoryToggleOff:0,HolidayVillage:2,Home:15,HomeMax:15,HomeMini:15,HomeRepairService:0,HomeWork:15,HorizontalRule:2,HorizontalSplit:2,HotTub:15,Hotel:15,HourglassBottom:2,HourglassDisabled:0,HourglassEmpty:2,HourglassFull:7,HourglassTop:15,House:15,HouseSiding:15,Houseboat:15,HowToReg:15,HowToVote:15,Http:15,Https:15,Hvac:15,IceSkating:15,Icecream:15,Image:15,ImageAspectRatio:0,ImageNotSupported:0,ImageSearch:15,ImagesearchRoller:0,ImportContacts:2,ImportExport:15,ImportantDevices:0,Inbox:15,Info:15,Input:15,InsertChart:15,InsertComment:7,InsertDriveFile:2,InsertEmoticon:2,InsertInvitation:0,InsertLink:15,InsertPhoto:15,Insights:15,Instagram:0,Inventory:15,Inventory2:15,InvertColors:15,InvertColorsOff:2,IosShare:15,Iron:15,Iso:15,Kayaking:15,Keyboard:15,KeyboardAlt:15,KeyboardArrowDown:0,KeyboardArrowLeft:0,KeyboardArrowRight:0,KeyboardArrowUp:2,KeyboardBackspace:0,KeyboardCapslock:0,KeyboardHide:15,KeyboardReturn:2,KeyboardTab:15,KeyboardVoice:7,KingBed:15,Kitchen:15,Kitesurfing:15,Label:15,LabelImportant:2,LabelOff:15,Landscape:15,Language:15,Laptop:15,LaptopChromebook:0,LaptopMac:15,LaptopWindows:7,LastPage:15,Launch:15,Layers:15,LayersClear:15,Leaderboard:15,LeakAdd:15,LeakRemove:15,LegendToggle:15,Lens:15,LensBlur:15,LibraryAdd:15,LibraryAddCheck:2,LibraryBooks:15,LibraryMusic:15,Light:15,LightMode:15,Lightbulb:15,LineStyle:15,LineWeight:15,LinearScale:15,Link:15,LinkOff:15,LinkedCamera:15,LinkedIn:0,Liquor:15,List:15,ListAlt:15,LiveHelp:15,LiveTv:15,Living:15,LocalActivity:7,LocalAirport:15,LocalAtm:15,LocalBar:15,LocalCafe:15,LocalCarWash:15,LocalDining:15,LocalDrink:15,LocalFireDepartment:0,LocalFlorist:15,LocalGasStation:2,LocalGroceryStore:0,LocalHospital:7,LocalHotel:15,LocalLaundryService:0,LocalLibrary:15,LocalMall:15,LocalMovies:15,LocalOffer:15,LocalParking:15,LocalPharmacy:7,LocalPhone:15,LocalPizza:15,LocalPlay:15,LocalPolice:15,LocalPostOffice:2,LocalPrintshop:2,LocalSee:15,LocalShipping:7,LocalTaxi:15,LocationCity:15,LocationDisabled:0,LocationOff:15,LocationOn:15,LocationSearching:0,Lock:15,LockClock:15,LockOpen:15,Login:15,Logout:15,Looks:15,Looks3:15,Looks4:15,Looks5:15,Looks6:15,LooksOne:15,LooksTwo:15,Loop:15,Loupe:15,LowPriority:15,Loyalty:15,LteMobiledata:7,LtePlusMobiledata:0,Luggage:15,LunchDining:15,Mail:15,MailOutline:15,Male:15,ManageAccounts:2,ManageSearch:15,Map:15,MapsHomeWork:15,MapsUgc:15,Margin:15,MarkAsUnread:15,MarkChatRead:15,MarkChatUnread:2,MarkEmailRead:7,MarkEmailUnread:2,Markunread:15,MarkunreadMailbox:0,Masks:15,Maximize:15,MediaBluetoothOff:0,MediaBluetoothOn:0,Mediation:15,MedicalServices:2,Medication:15,MeetingRoom:15,Memory:15,Menu:15,MenuBook:15,MenuOpen:15,MergeType:15,Message:15,Mic:15,MicExternalOff:2,MicExternalOn:7,MicNone:15,MicOff:15,Microwave:15,MilitaryTech:15,Minimize:15,MissedVideoCall:2,Mms:15,MobileFriendly:2,MobileOff:15,MobileScreenShare:0,MobiledataOff:7,Mode:15,ModeComment:15,ModeEdit:15,ModeEditOutline:2,ModeNight:15,ModeStandby:15,ModelTraining:7,MonetizationOn:2,Money:15,MoneyOff:15,MoneyOffCsred:7,Monitor:15,MonitorWeight:7,MonochromePhotos:0,Mood:15,MoodBad:15,Moped:15,More:15,MoreHoriz:15,MoreTime:15,MoreVert:15,MotionPhotosAuto:0,MotionPhotosOff:2,Mouse:15,MoveToInbox:15,Movie:15,MovieCreation:7,MovieFilter:15,Moving:15,Mp:15,MultilineChart:2,MultipleStop:15,Museum:15,MusicNote:15,MusicOff:15,MusicVideo:15,MyLocation:15,Nat:15,Nature:15,NaturePeople:15,NavigateBefore:2,NavigateNext:15,Navigation:15,NearMe:15,NearMeDisabled:2,NearbyError:15,NearbyOff:15,NetworkCell:15,NetworkCheck:15,NetworkLocked:7,NetworkWifi:15,NewReleases:15,NextPlan:15,NextWeek:15,Nfc:15,NightShelter:15,Nightlife:15,Nightlight:15,NightlightRound:2,NightsStay:15,NineK:15,NineKPlus:15,NineMp:15,NineteenMp:15,NoAccounts:15,NoBackpack:15,NoCell:15,NoDrinks:15,NoEncryption:15,NoFlash:15,NoFood:15,NoLuggage:15,NoMeals:15,NoMeetingRoom:7,NoPhotography:7,NoSim:15,NoStroller:15,NoTransfer:15,NordicWalking:7,North:15,NorthEast:15,NorthWest:15,NotAccessible:7,NotInterested:7,NotListedLocation:0,NotStarted:15,Note:15,NoteAdd:15,NoteAlt:15,Notes:15,NotificationAdd:2,Notifications:7,NotificationsActive:0,NotificationsNone:0,NotificationsOff:0,NotificationsPaused:0,OfflineBolt:15,OfflinePin:15,OfflineShare:15,OndemandVideo:7,OneK:15,OneKPlus:15,OneKk:15,OnlinePrediction:0,Opacity:15,OpenInBrowser:7,OpenInFull:15,OpenInNew:15,OpenInNewOff:15,OpenWith:15,OtherHouses:15,Outbound:15,Outbox:15,OutdoorGrill:15,Outlet:15,Padding:15,Pages:15,Pageview:15,Paid:15,Palette:15,PanTool:15,Panorama:15,PanoramaFishEye:2,PanoramaHorizontal:0,PanoramaPhotosphere:0,PanoramaVertical:0,PanoramaWideAngle:0,Paragliding:15,Park:15,PartyMode:15,Password:15,Pattern:15,Pause:15,PauseCircle:15,PauseCircleFilled:0,PauseCircleOutline:0,PausePresentation:0,Payment:15,Payments:15,PedalBike:15,Pending:15,PendingActions:2,People:15,PeopleAlt:15,PeopleOutline:7,PermCameraMic:7,PermContactCalendar:0,PermDataSetting:2,PermIdentity:15,PermMedia:15,PermPhoneMsg:15,PermScanWifi:15,Person:15,PersonAdd:15,PersonAddAlt:15,PersonAddAlt1:7,PersonAddDisabled:0,PersonOff:15,PersonOutline:7,PersonPin:15,PersonPinCircle:2,PersonRemove:15,PersonRemoveAlt1:0,PersonSearch:15,PersonalVideo:7,PestControl:15,PestControlRodent:0,Pets:15,Phone:15,PhoneAndroid:15,PhoneCallback:7,PhoneDisabled:7,PhoneEnabled:15,PhoneForwarded:2,PhoneInTalk:15,PhoneIphone:15,PhoneLocked:15,PhoneMissed:15,PhonePaused:15,Phonelink:15,PhonelinkErase:2,PhonelinkLock:7,PhonelinkOff:15,PhonelinkRing:7,PhonelinkSetup:2,Photo:15,PhotoAlbum:15,PhotoCamera:15,PhotoCameraBack:2,PhotoCameraFront:0,PhotoFilter:15,PhotoLibrary:15,PhotoSizeSelectLarge:0,PhotoSizeSelectSmall:0,Piano:15,PianoOff:15,PictureAsPdf:15,PictureInPicture:0,PictureInPictureAlt:0,PieChart:15,PieChartOutline:2,Pin:15,PinDrop:15,Pinterest:0,PivotTableChart:2,Place:15,Plagiarism:15,PlayArrow:15,PlayCircle:15,PlayCircleFilled:0,PlayCircleOutline:0,PlayDisabled:15,PlayForWork:15,PlayLesson:15,PlaylistAdd:15,PlaylistAddCheck:0,PlaylistPlay:15,Plumbing:15,PlusOne:15,Podcasts:15,PointOfSale:15,Policy:15,Poll:15,Pool:15,PortableWifiOff:2,Portrait:15,PostAdd:15,Power:15,PowerInput:15,PowerOff:15,PowerSettingsNew:0,PregnantWoman:7,PresentToAll:15,Preview:15,PriceChange:15,PriceCheck:15,Print:15,PrintDisabled:7,PriorityHigh:15,PrivacyTip:15,Psychology:15,Public:15,PublicOff:15,Publish:15,PublishedWithChanges:0,PushPin:15,QrCode:15,QrCode2:15,QrCodeScanner:7,QueryBuilder:15,QueryStats:15,QuestionAnswer:2,Queue:15,QueueMusic:15,QueuePlayNext:7,Quickreply:15,Quiz:15,RMobiledata:15,Radar:15,Radio:15,RadioButtonChecked:0,RadioButtonUnchecked:0,RailwayAlert:15,RamenDining:15,RateReview:15,RawOff:15,RawOn:15,ReadMore:15,Receipt:15,ReceiptLong:15,RecentActors:15,Recommend:15,RecordVoiceOver:2,Reddit:0,Redeem:15,Redo:15,ReduceCapacity:2,Refresh:15,RememberMe:15,Remove:15,RemoveCircle:15,RemoveCircleOutline:0,RemoveDone:15,RemoveFromQueue:2,RemoveModerator:2,RemoveRedEye:15,RemoveShoppingCart:0,Reorder:15,Repeat:15,RepeatOn:15,RepeatOne:15,RepeatOneOn:15,Replay:15,Replay10:15,Replay30:15,Replay5:15,ReplayCircleFilled:0,Reply:15,ReplyAll:15,Report:15,ReportGmailerrorred:0,ReportOff:15,ReportProblem:7,RequestPage:15,RequestQuote:15,ResetTv:15,RestartAlt:15,Restaurant:15,RestaurantMenu:2,Restore:15,RestoreFromTrash:0,RestorePage:15,Reviews:15,RiceBowl:15,RingVolume:15,Roofing:15,Room:15,RoomPreferences:2,RoomService:15,Rotate90DegreesCcw:0,RotateLeft:15,RotateRight:15,Router:15,Rowing:15,RssFeed:15,Rsvp:15,Rtt:15,Rule:15,RuleFolder:15,RunCircle:15,RunningWithErrors:0,RvHookup:15,SafetyDivider:7,Sailing:15,Sanitizer:15,Satellite:15,Save:15,SaveAlt:15,SavedSearch:15,Savings:15,Scanner:15,ScatterPlot:15,Schedule:15,ScheduleSend:15,Schema:15,School:15,Science:15,Score:15,ScreenLockLandscape:0,ScreenLockPortrait:0,ScreenLockRotation:0,ScreenRotation:2,ScreenSearchDesktop:0,ScreenShare:15,Screenshot:15,Sd:15,SdCard:15,SdCardAlert:15,SdStorage:15,Search:15,SearchOff:15,Security:15,SecurityUpdate:2,SecurityUpdateGood:0,Segment:15,SelectAll:15,SelfImprovement:2,Sell:15,Send:15,SendAndArchive:2,SendToMobile:15,SensorDoor:15,SensorWindow:15,Sensors:15,SensorsOff:15,SentimentNeutral:0,SentimentSatisfied:0,SetMeal:15,Settings:15,SettingsApplications:0,SettingsBluetooth:0,SettingsBrightness:0,SettingsCell:15,SettingsEthernet:0,SettingsInputAntenna:0,SettingsInputHdmi:0,SettingsInputSvideo:0,SettingsOverscan:0,SettingsPhone:7,SettingsPower:7,SettingsRemote:2,SettingsSuggest:2,SettingsVoice:7,SevenK:15,SevenKPlus:15,SevenMp:15,SeventeenMp:15,Share:15,ShareLocation:7,Shield:15,Shop:15,Shop2:15,ShopTwo:15,ShoppingBag:15,ShoppingBasket:2,ShoppingCart:15,ShortText:15,Shortcut:15,ShowChart:15,Shower:15,Shuffle:15,ShuffleOn:15,ShutterSpeed:15,Sick:15,SignalCellular0Bar:0,SignalCellular1Bar:0,SignalCellular2Bar:0,SignalCellular3Bar:0,SignalCellular4Bar:0,SignalCellularAlt:0,SignalCellularNoSim:0,SignalCellularNodata:0,SignalCellularNull:0,SignalCellularOff:0,SignalWifi0Bar:2,SignalWifi1Bar:2,SignalWifi1BarLock:0,SignalWifi2Bar:2,SignalWifi2BarLock:0,SignalWifi3Bar:2,SignalWifi3BarLock:0,SignalWifi4Bar:2,SignalWifi4BarLock:0,SignalWifiBad:7,SignalWifiOff:7,SimCard:15,SimCardAlert:15,SimCardDownload:2,SingleBed:15,Sip:15,SixK:15,SixKPlus:15,SixMp:15,SixteenMp:15,SixtyFps:15,SixtyFpsSelect:2,Skateboarding:7,SkipNext:15,SkipPrevious:15,Sledding:15,Slideshow:15,SlowMotionVideo:2,SmartButton:15,SmartDisplay:15,SmartScreen:15,SmartToy:15,Smartphone:15,SmokeFree:15,SmokingRooms:15,Sms:15,SmsFailed:15,SnippetFolder:7,Snooze:15,Snowboarding:15,Snowmobile:15,Snowshoeing:15,Soap:15,SocialDistance:2,Sort:15,SortByAlpha:15,Source:15,South:15,SouthEast:15,SouthWest:15,Spa:15,SpaceBar:15,Speaker:15,SpeakerGroup:15,SpeakerNotes:15,SpeakerNotesOff:2,SpeakerPhone:15,Speed:15,Spellcheck:15,Splitscreen:15,Sports:15,SportsBar:15,SportsBaseball:2,SportsBasketball:0,SportsCricket:7,SportsEsports:7,SportsFootball:2,SportsGolf:15,SportsHandball:2,SportsHockey:15,SportsKabaddi:7,SportsMma:15,SportsMotorsports:0,SportsRugby:15,SportsScore:15,SportsSoccer:15,SportsTennis:15,SportsVolleyball:0,SquareFoot:15,StackedBarChart:2,StackedLineChart:0,Stairs:15,Star:15,StarBorder:15,StarBorderPurple500:0,StarHalf:15,StarOutline:15,StarPurple500:7,StarRate:15,Stars:15,StayCurrentLandscape:0,StayCurrentPortrait:0,StayPrimaryLandscape:0,StayPrimaryPortrait:0,StickyNote2:15,Stop:15,StopCircle:15,StopScreenShare:2,Storage:15,Store:15,StoreMallDirectory:0,Storefront:15,Storm:15,Straighten:15,Stream:15,Streetview:15,StrikethroughS:2,Stroller:15,Style:15,Subject:15,Subscript:15,Subscriptions:7,Subtitles:15,SubtitlesOff:15,Subway:15,Summarize:15,Superscript:15,SupervisedUserCircle:0,SupervisorAccount:0,Support:15,SupportAgent:15,Surfing:15,SurroundSound:7,SwapCalls:15,SwapHoriz:15,SwapHorizontalCircle:0,SwapVert:15,SwapVerticalCircle:0,Swipe:15,SwitchAccount:7,SwitchCamera:15,SwitchLeft:15,SwitchRight:15,SwitchVideo:15,Sync:15,SyncAlt:15,SyncDisabled:15,SyncProblem:15,SystemSecurityUpdate:0,SystemUpdate:15,SystemUpdateAlt:2,Tab:15,TabUnselected:7,TableChart:15,TableRows:15,TableView:15,Tablet:15,TabletAndroid:7,TabletMac:15,Tag:15,TagFaces:15,TakeoutDining:7,TapAndPlay:15,Tapas:15,Task:15,TaskAlt:15,TaxiAlert:15,Telegram:0,TenMp:15,Terrain:15,TextFields:15,TextFormat:15,TextRotateUp:15,TextRotateVertical:0,TextRotationAngleup:0,TextRotationDown:0,TextRotationNone:0,TextSnippet:15,Textsms:15,Texture:15,TheaterComedy:7,Theaters:15,Thermostat:15,ThermostatAuto:2,ThirteenMp:15,ThirtyFps:15,ThirtyFpsSelect:2,ThreeDRotation:2,ThreeGMobiledata:0,ThreeK:15,ThreeKPlus:15,ThreeMp:15,ThreeP:15,ThreeSixty:15,ThumbDown:15,ThumbDownAlt:15,ThumbDownOffAlt:2,ThumbUp:15,ThumbUpAlt:15,ThumbUpOffAlt:7,ThumbsUpDown:15,TimeToLeave:15,Timelapse:15,Timeline:15,Timer:15,Timer10:15,Timer10Select:7,Timer3:15,Timer3Select:15,TimerOff:15,TimesOneMobiledata:0,Title:15,Toc:15,Today:15,ToggleOff:15,ToggleOn:15,Toll:15,Tonality:15,Topic:15,TouchApp:15,Tour:15,Toys:15,TrackChanges:15,Traffic:15,Train:15,Tram:15,Transform:15,Transgender:15,TransitEnterexit:0,Translate:15,TravelExplore:7,TrendingDown:15,TrendingFlat:15,TrendingUp:15,TripOrigin:15,Try:15,Tty:15,Tune:15,Tungsten:15,TurnedIn:15,TurnedInNot:15,Tv:15,TvOff:15,TwelveMp:15,TwentyFourMp:15,TwentyOneMp:15,TwentyThreeMp:7,TwentyTwoMp:15,TwentyZeroMp:15,Twitter:0,TwoK:15,TwoKPlus:15,TwoMp:15,TwoWheeler:15,Umbrella:15,Unarchive:15,Undo:15,UnfoldLess:15,UnfoldMore:15,Unpublished:15,Unsubscribe:15,Upcoming:15,Update:15,UpdateDisabled:2,Upgrade:15,Upload:15,UploadFile:15,Usb:15,UsbOff:15,Verified:15,VerifiedUser:15,VerticalAlignBottom:0,VerticalAlignCenter:0,VerticalAlignTop:0,VerticalSplit:7,Vibration:15,VideoCall:15,VideoCameraBack:2,VideoCameraFront:0,VideoLabel:15,VideoLibrary:15,VideoSettings:7,VideoStable:15,Videocam:15,VideocamOff:15,VideogameAsset:2,VideogameAssetOff:0,ViewAgenda:15,ViewArray:15,ViewCarousel:15,ViewColumn:15,ViewComfy:15,ViewCompact:15,ViewDay:15,ViewHeadline:15,ViewInAr:15,ViewList:15,ViewModule:15,ViewQuilt:15,ViewSidebar:15,ViewStream:15,ViewWeek:15,Vignette:15,Villa:15,Visibility:15,VisibilityOff:7,VoiceChat:15,VoiceOverOff:15,Voicemail:15,VolumeDown:15,VolumeMute:15,VolumeOff:15,VolumeUp:15,VolunteerActivism:0,VpnKey:15,VpnLock:15,Vrpano:15,Wallpaper:15,Warning:15,WarningAmber:15,Wash:15,Watch:15,WatchLater:15,Water:15,WaterDamage:15,WaterfallChart:2,Waves:15,WbAuto:15,WbCloudy:15,WbIncandescent:2,WbIridescent:15,WbShade:15,WbSunny:15,WbTwilight:15,Wc:15,Web:15,WebAsset:15,WebAssetOff:15,Weekend:15,West:15,WhatsApp:0,Whatshot:15,WheelchairPickup:0,WhereToVote:15,Widgets:15,Wifi:15,WifiCalling:15,WifiCalling3:15,WifiLock:15,WifiOff:15,WifiProtectedSetup:0,WifiTethering:7,WifiTetheringOff:0,Window:15,WineBar:15,Work:15,WorkOff:15,WorkOutline:15,Workspaces:15,WrapText:15,WrongLocation:7,Wysiwyg:15,Yard:15,YouTube:0,YoutubeSearchedFor:0,ZoomIn:15,ZoomOut:15,ZoomOutMap:15};const iconKeys=Object.keys(icons);const weightOptions=[\"Filled\",\"TwoTone\",\"Sharp\",\"Rounded\",\"Outlined\",];const styleKeyOptions={15:[...weightOptions],7:[\"Filled\",\"TwoTone\",\"Sharp\",\"Rounded\"],2:[\"Filled\",\"Sharp\"]};const styleOptionPropKeys=Object.keys(styleKeyOptions).map(optionKey=>`iconStyle${optionKey}`);const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * MATERIAL\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored,style}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Get props to use for deps array\nconst styleOptionProps=styleOptionPropKeys.map(prop=>props[prop]);// Get style of icon\nconst iconStyle=useMemo(()=>{const iconStyleKey=icons[iconKey];if(!iconStyleKey)return;const activeStyle=props[`iconStyle${iconStyleKey}`];if(activeStyle===\"Filled\")return;return activeStyle;},[...styleOptionProps]);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// If bad search or doesn't exist, show null state\nif(typeof icons[iconKey]!==\"number\"){setSelectedIcon(null);return;}// Get the selected module\ntry{const style=iconStyle?iconStyle:\"\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}${style}.js@0.0.32`;// console.log(iconModuleUrl)\nconst module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey,...styleOptionProps]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined,...style},focusable:\"false\",viewBox:\"0 0 24 24\",color:color,children:SelectedIcon}):emptyState});}Icon.displayName=\"Material\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,weight:\"Filled\",mirrored:false};function hideStyleOptions(props,styleOptions){const{selectByList,iconSearch,iconSelection}=props;const styleOptionsNumber=parseInt(styleOptions);const name=getIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const icon=icons[name];if(!icon||styleOptionsNumber===0)return true;if(icon===styleOptionsNumber)return false;else return true;}addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Material site](https://fonts.google.com/icons)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...Object.keys(styleKeyOptions).reduce((result,optionKey)=>{result[`iconStyle${optionKey}`]={type:ControlType.Enum,title:\"Style\",defaultValue:\"Filled\",options:styleKeyOptions[optionKey],hidden:props=>hideStyleOptions(props,optionKey)};return result;},{}),...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Material.map", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={AkqQOQHXW:{hover:true},cKebidzeR:{hover:true},dnOD7RWfh:{hover:true},DyUTbl7oq:{hover:true},e8W9_ZzaW:{hover:true},FADILrZRR:{hover:true},GyoXrar59:{hover:true},hpV7zFUmd:{hover:true},IUTUBTYLs:{hover:true},J2muiaPnX:{hover:true},jfU0XQit9:{hover:true},K3VkBAYax:{hover:true},KEIGjhLEz:{hover:true},lkkSFqhSv:{hover:true},n14oNwdwQ:{hover:true},neHWb5qy0:{hover:true},nQsCVQahd:{hover:true},RYvgt4sem:{hover:true},Sjpo_e3MF:{hover:true},SkI_9KTDc:{hover:true},TjFjphLT5:{hover:true},u_ddnl2fc:{hover:true},yKFEGSfCC:{hover:true},zSwGcAs2e:{hover:true}};const cycleOrder=[\"n14oNwdwQ\",\"dnOD7RWfh\",\"lkkSFqhSv\",\"K3VkBAYax\",\"IUTUBTYLs\",\"GyoXrar59\",\"hpV7zFUmd\",\"AkqQOQHXW\",\"u_ddnl2fc\",\"KEIGjhLEz\",\"e8W9_ZzaW\",\"nQsCVQahd\",\"J2muiaPnX\",\"cKebidzeR\",\"zSwGcAs2e\",\"TjFjphLT5\",\"yKFEGSfCC\",\"jfU0XQit9\",\"neHWb5qy0\",\"DyUTbl7oq\",\"RYvgt4sem\",\"Sjpo_e3MF\",\"SkI_9KTDc\",\"FADILrZRR\"];const serializationHash=\"framer-Z7gML\";const variantClassNames={AkqQOQHXW:\"framer-v-gbfvnc\",cKebidzeR:\"framer-v-1nfes25\",dnOD7RWfh:\"framer-v-p374ni\",DyUTbl7oq:\"framer-v-1b40zvw\",e8W9_ZzaW:\"framer-v-7j5k9p\",FADILrZRR:\"framer-v-bhhvr3\",GyoXrar59:\"framer-v-ueh6jl\",hpV7zFUmd:\"framer-v-ny264y\",IUTUBTYLs:\"framer-v-gumvj4\",J2muiaPnX:\"framer-v-rxo7kc\",jfU0XQit9:\"framer-v-15ay3b7\",K3VkBAYax:\"framer-v-59b6eo\",KEIGjhLEz:\"framer-v-g20v3k\",lkkSFqhSv:\"framer-v-a2yszo\",n14oNwdwQ:\"framer-v-1h5yus6\",neHWb5qy0:\"framer-v-1rw9fnq\",nQsCVQahd:\"framer-v-jdrex2\",RYvgt4sem:\"framer-v-1gfoutr\",Sjpo_e3MF:\"framer-v-1jd0hix\",SkI_9KTDc:\"framer-v-1hu1cst\",TjFjphLT5:\"framer-v-3dihv2\",u_ddnl2fc:\"framer-v-dqpjhe\",yKFEGSfCC:\"framer-v-1iebhnd\",zSwGcAs2e:\"framer-v-8q8a18\"};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,.2,.98],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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={\"Contact Us\":\"TjFjphLT5\",\"ContactUs-TR\":\"SkI_9KTDc\",\"How-TR\":\"RYvgt4sem\",\"Join Us-TR\":\"Sjpo_e3MF\",\"Join Us\":\"GyoXrar59\",\"ourService-TR\":\"jfU0XQit9\",\"what-TR\":\"neHWb5qy0\",\"Why-TR\":\"DyUTbl7oq\",\"\u0623\u0645\u0627\u0643\u0646 \u062A\u0648\u0627\u062C\u062F\u0646\u0627\":\"KEIGjhLEz\",\"\u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0651\u0629\":\"u_ddnl2fc\",\"\u0627\u0644\u0639\u0631\u0628\u064A\u0629\":\"AkqQOQHXW\",\"\u0627\u0646\u0636\u0645 \u0625\u0644\u064A\u0646\u0627\":\"cKebidzeR\",\"\u062A\u0648\u0627\u0635\u0644 \u0645\u0639\u0646\u0627\":\"zSwGcAs2e\",\"\u0637\u0631\u064A\u0642\u0629 \u0627\u0644\u0639\u0645\u0644\":\"J2muiaPnX\",\"\u0644\u0645\u0627\u0630\u0627 \u0643\u064A\u0648 \u0628\u0627\u0635\u061F\":\"nQsCVQahd\",\"\u0645\u0627\u0647\u064A \u0643\u064A\u0648 \u0628\u0627\u0635\u061F\":\"e8W9_ZzaW\",English:\"hpV7zFUmd\",Home:\"n14oNwdwQ\",HomeTR:\"yKFEGSfCC\",How:\"IUTUBTYLs\",ourServices:\"dnOD7RWfh\",Turk:\"FADILrZRR\",What:\"lkkSFqhSv\",Why:\"K3VkBAYax\"};const getProps=({click,height,id,width,...props})=>{return{...props,nMKe_gqr3:click??props.nMKe_gqr3,variant:humanReadableVariantMap[props.variant]??props.variant??\"n14oNwdwQ\"};};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,nMKe_gqr3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"n14oNwdwQ\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1sjzomw=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(nMKe_gqr3){const res=await nMKe_gqr3(...args);if(res===false)return false;}});const sharedStyleClassNames=[];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__*/_jsx(Link,{href:{hash:\":vACFb0_5r\",webPageId:\"p8WzJBoFz\"},motionChild:true,nodeId:\"n14oNwdwQ\",openInNewTab:false,scopeId:\"JRqfhGLsz\",smoothScroll:true,...addPropertyOverrides({\"cKebidzeR-hover\":{href:undefined},\"GyoXrar59-hover\":{href:undefined},\"Sjpo_e3MF-hover\":{href:undefined},AkqQOQHXW:{href:{webPageId:\"Sdg2zIjhd\"}},cKebidzeR:{href:undefined},dnOD7RWfh:{href:{hash:\":cGJPqYdEq\",webPageId:\"p8WzJBoFz\"}},DyUTbl7oq:{href:{hash:\":zJkmkPIVl\",webPageId:\"Pw0Ezm3Pc\"}},e8W9_ZzaW:{href:{hash:\":I9srzIqCO\",webPageId:\"Sdg2zIjhd\"}},FADILrZRR:{href:{webPageId:\"Pw0Ezm3Pc\"}},GyoXrar59:{href:undefined},hpV7zFUmd:{href:{webPageId:\"p8WzJBoFz\"}},IUTUBTYLs:{href:{hash:\":eNsrKLiqE\",webPageId:\"p8WzJBoFz\"}},J2muiaPnX:{href:{hash:\":iuFmuXkTD\",webPageId:\"Sdg2zIjhd\"}},jfU0XQit9:{href:{hash:\":VeXPTRRDG\",webPageId:\"Pw0Ezm3Pc\"}},K3VkBAYax:{href:{hash:\":t6LcQ6rgJ\",webPageId:\"p8WzJBoFz\"}},KEIGjhLEz:{href:{hash:\":Lptnb5qZl\",webPageId:\"Sdg2zIjhd\"}},lkkSFqhSv:{href:{hash:\":cbKrMcHCK\",webPageId:\"p8WzJBoFz\"}},neHWb5qy0:{href:{hash:\":X8BOVESG_\",webPageId:\"Pw0Ezm3Pc\"}},nQsCVQahd:{href:{hash:\":PgP39fg2T\",webPageId:\"Sdg2zIjhd\"}},RYvgt4sem:{href:{hash:\":cbWwFEolK\",webPageId:\"Pw0Ezm3Pc\"}},Sjpo_e3MF:{href:undefined},SkI_9KTDc:{href:{hash:\":Dy3pLGLPc\",webPageId:\"Pw0Ezm3Pc\"}},TjFjphLT5:{href:{hash:\":CMwAanHK8w8jI1gkrd\",webPageId:\"p8WzJBoFz\"}},u_ddnl2fc:{href:{hash:\":SHbt_ngUT\",webPageId:\"Sdg2zIjhd\"}},yKFEGSfCC:{href:{hash:\":LCOwhEzfC\",webPageId:\"Pw0Ezm3Pc\"}},zSwGcAs2e:{href:{hash:\":w8jI1gkrd\",webPageId:\"Sdg2zIjhd\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1h5yus6\",className,classNames)} framer-1soy9j1`,\"data-framer-name\":\"Home\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"n14oNwdwQ\",onTap:onTap1sjzomw,ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},variants:{\"dnOD7RWfh-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},\"GyoXrar59-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},\"IUTUBTYLs-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},\"K3VkBAYax-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},\"lkkSFqhSv-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},\"n14oNwdwQ-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},AkqQOQHXW:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},cKebidzeR:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},DyUTbl7oq:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},e8W9_ZzaW:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},FADILrZRR:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-e866a546-f5f9-465f-b768-dd9fa906691e, rgb(33, 33, 33))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},hpV7zFUmd:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-e866a546-f5f9-465f-b768-dd9fa906691e, rgb(33, 33, 33))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},J2muiaPnX:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},jfU0XQit9:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},KEIGjhLEz:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},neHWb5qy0:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},nQsCVQahd:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},RYvgt4sem:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},Sjpo_e3MF:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},SkI_9KTDc:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},TjFjphLT5:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},u_ddnl2fc:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},yKFEGSfCC:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},zSwGcAs2e:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({\"AkqQOQHXW-hover\":{\"data-framer-name\":undefined},\"cKebidzeR-hover\":{\"data-framer-name\":undefined},\"dnOD7RWfh-hover\":{\"data-framer-name\":undefined},\"DyUTbl7oq-hover\":{\"data-framer-name\":undefined},\"e8W9_ZzaW-hover\":{\"data-framer-name\":undefined},\"FADILrZRR-hover\":{\"data-framer-name\":undefined},\"GyoXrar59-hover\":{\"data-framer-name\":undefined},\"hpV7zFUmd-hover\":{\"data-framer-name\":undefined},\"IUTUBTYLs-hover\":{\"data-framer-name\":undefined},\"J2muiaPnX-hover\":{\"data-framer-name\":undefined},\"jfU0XQit9-hover\":{\"data-framer-name\":undefined},\"K3VkBAYax-hover\":{\"data-framer-name\":undefined},\"KEIGjhLEz-hover\":{\"data-framer-name\":undefined},\"lkkSFqhSv-hover\":{\"data-framer-name\":undefined},\"n14oNwdwQ-hover\":{\"data-framer-name\":undefined},\"neHWb5qy0-hover\":{\"data-framer-name\":undefined},\"nQsCVQahd-hover\":{\"data-framer-name\":undefined},\"RYvgt4sem-hover\":{\"data-framer-name\":undefined},\"Sjpo_e3MF-hover\":{\"data-framer-name\":undefined},\"SkI_9KTDc-hover\":{\"data-framer-name\":undefined},\"TjFjphLT5-hover\":{\"data-framer-name\":undefined},\"u_ddnl2fc-hover\":{\"data-framer-name\":undefined},\"yKFEGSfCC-hover\":{\"data-framer-name\":undefined},\"zSwGcAs2e-hover\":{\"data-framer-name\":undefined},AkqQOQHXW:{\"data-framer-name\":\"\u0627\u0644\u0639\u0631\u0628\u064A\u0629\"},cKebidzeR:{\"data-framer-name\":\"\u0627\u0646\u0636\u0645 \u0625\u0644\u064A\u0646\u0627\"},dnOD7RWfh:{\"data-framer-name\":\"ourServices\"},DyUTbl7oq:{\"data-framer-name\":\"Why-TR\"},e8W9_ZzaW:{\"data-framer-name\":\"\u0645\u0627\u0647\u064A \u0643\u064A\u0648 \u0628\u0627\u0635\u061F\"},FADILrZRR:{\"data-border\":true,\"data-framer-name\":\"Turk\"},GyoXrar59:{\"data-framer-name\":\"Join Us\"},hpV7zFUmd:{\"data-border\":true,\"data-framer-name\":\"English\"},IUTUBTYLs:{\"data-framer-name\":\"How\"},J2muiaPnX:{\"data-framer-name\":\"\u0637\u0631\u064A\u0642\u0629 \u0627\u0644\u0639\u0645\u0644\"},jfU0XQit9:{\"data-framer-name\":\"ourService-TR\"},K3VkBAYax:{\"data-framer-name\":\"Why\"},KEIGjhLEz:{\"data-framer-name\":\"\u0623\u0645\u0627\u0643\u0646 \u062A\u0648\u0627\u062C\u062F\u0646\u0627\"},lkkSFqhSv:{\"data-framer-name\":\"What\"},neHWb5qy0:{\"data-framer-name\":\"what-TR\"},nQsCVQahd:{\"data-framer-name\":\"\u0644\u0645\u0627\u0630\u0627 \u0643\u064A\u0648 \u0628\u0627\u0635\u061F\"},RYvgt4sem:{\"data-framer-name\":\"How-TR\"},Sjpo_e3MF:{\"data-framer-name\":\"Join Us-TR\"},SkI_9KTDc:{\"data-framer-name\":\"ContactUs-TR\"},TjFjphLT5:{\"data-framer-name\":\"Contact Us\"},u_ddnl2fc:{\"data-framer-name\":\"\u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0651\u0629\"},yKFEGSfCC:{\"data-framer-name\":\"HomeTR\"},zSwGcAs2e:{\"data-framer-name\":\"\u062A\u0648\u0627\u0635\u0644 \u0645\u0639\u0646\u0627\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fpun98\",layoutDependency:layoutDependency,layoutId:\"n6GaVeL1A\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-trwlg7\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"I746:25396;746:25053\",style:{backgroundColor:\"rgb(45, 164, 73)\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Home\"})}),className:\"framer-fkhf87\",\"data-framer-name\":\"Why\",fonts:[\"GF;Cairo-700\"],layoutDependency:layoutDependency,layoutId:\"I746:25396;746:25054\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,variants:{\"AkqQOQHXW-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"cKebidzeR-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"dnOD7RWfh-hover\":{\"--extracted-r6o4lv\":\"rgb(167, 194, 172)\"},\"DyUTbl7oq-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"e8W9_ZzaW-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"FADILrZRR-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"GyoXrar59-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"hpV7zFUmd-hover\":{\"--extracted-r6o4lv\":\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\"},\"IUTUBTYLs-hover\":{\"--extracted-r6o4lv\":\"rgb(167, 194, 172)\"},\"J2muiaPnX-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"jfU0XQit9-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"K3VkBAYax-hover\":{\"--extracted-r6o4lv\":\"rgb(167, 194, 172)\"},\"KEIGjhLEz-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"lkkSFqhSv-hover\":{\"--extracted-r6o4lv\":\"rgb(167, 194, 172)\"},\"n14oNwdwQ-hover\":{\"--extracted-r6o4lv\":\"rgb(167, 194, 172)\"},\"neHWb5qy0-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"nQsCVQahd-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"RYvgt4sem-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"Sjpo_e3MF-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"SkI_9KTDc-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"TjFjphLT5-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"u_ddnl2fc-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"yKFEGSfCC-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},\"zSwGcAs2e-hover\":{\"--extracted-r6o4lv\":\"var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172))\"},AkqQOQHXW:{\"--extracted-r6o4lv\":\"var(--token-e866a546-f5f9-465f-b768-dd9fa906691e, rgb(33, 33, 33))\"},FADILrZRR:{\"--extracted-r6o4lv\":\"var(--token-e866a546-f5f9-465f-b768-dd9fa906691e, rgb(33, 33, 33))\"},hpV7zFUmd:{\"--extracted-r6o4lv\":\"var(--token-e866a546-f5f9-465f-b768-dd9fa906691e, rgb(33, 33, 33))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"AkqQOQHXW-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\",direction:\"rtl\"},children:\"\u0627\u0644\u0639\u0631\u0628\u064A\u0651\u0629\"})})},\"cKebidzeR-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\",direction:\"rtl\"},children:\"\u0627\u0646\u0636\u0645 \u0625\u0644\u064A\u0646\u0627\"})})},\"dnOD7RWfh-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(167, 194, 172))\"},children:\"Our Locations\"})})},\"DyUTbl7oq-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Neden Bas?\"})})})},\"e8W9_ZzaW-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\",direction:\"rtl\"},children:\"\u0645\u0627\u0647\u064A  \u0628\u0627\u0635\u061F\"})})},\"FADILrZRR-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\"},children:\"Turkish\"})})},\"GyoXrar59-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\"},children:\"Join Us\"})})},\"hpV7zFUmd-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75)))\"},children:\"English\"})})},\"IUTUBTYLs-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(167, 194, 172))\"},children:\"How It Works\"})})},\"J2muiaPnX-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\",direction:\"rtl\"},children:\"\u0637\u0631\u064A\u0642\u0629 \u0639\u0645\u0644\u0646\u0627\"})})},\"jfU0XQit9-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\"},children:\"Lokasyonlar\u0131m\u0131z\"})})},\"K3VkBAYax-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(167, 194, 172))\"},children:\"Why Bas?\"})})},\"KEIGjhLEz-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\",direction:\"rtl\"},children:\"\u0623\u0645\u0627\u0643\u0646 \u062A\u0648\u0627\u062C\u062F\u0646\u0627\"})})},\"lkkSFqhSv-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(167, 194, 172))\"},children:\"About Bas?\"})})},\"n14oNwdwQ-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(167, 194, 172))\"},children:\"Home\"})})},\"neHWb5qy0-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\"},children:\"Bas Hakk\u0131nda\"})})},\"nQsCVQahd-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\",direction:\"rtl\"},children:\"\u0644\u0645\u0627\u0630\u0627  \u0628\u0627\u0635\u061F\"})})},\"RYvgt4sem-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Nas\u0131l \\xc7al\u0131\u015F\u0131r\"})})})},\"Sjpo_e3MF-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Bize Kat\u0131l\u0131n\"})})})},\"SkI_9KTDc-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Bize Ula\u015F\u0131n\"})})})},\"TjFjphLT5-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\"},children:\"Contact Us\"})})},\"u_ddnl2fc-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\",direction:\"rtl\"},children:\"\u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0651\u0629\"})})},\"yKFEGSfCC-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\"},children:\"Anasayfa\"})})},\"zSwGcAs2e-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f61a096-599f-4efd-95c6-a400350bef85, rgb(167, 194, 172)))\",direction:\"rtl\"},children:\"\u062A\u0648\u0627\u0635\u0644 \u0645\u0639\u0646\u0627\"})})},AkqQOQHXW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e866a546-f5f9-465f-b768-dd9fa906691e, rgb(33, 33, 33)))\",direction:\"rtl\"},children:\"\u0627\u0644\u0639\u0631\u0628\u064A\u0651\u0629\"})})},cKebidzeR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u0627\u0646\u0636\u0645 \u0625\u0644\u064A\u0646\u0627\"})})},dnOD7RWfh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Our Locations\"})})},DyUTbl7oq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Neden Bas?\"})})}),fonts:[\"GF;Cairo-700\",\"GF;Cairo-900\"]},e8W9_ZzaW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u0645\u0627\u0647\u064A \u0628\u0627\u0635\u061F\"})})},FADILrZRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e866a546-f5f9-465f-b768-dd9fa906691e, rgb(33, 33, 33)))\"},children:\"Turkish\"})})},GyoXrar59:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Join Us\"})})},hpV7zFUmd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e866a546-f5f9-465f-b768-dd9fa906691e, rgb(33, 33, 33)))\"},children:\"English\"})})},IUTUBTYLs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"How It Works\"})})},J2muiaPnX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u0637\u0631\u064A\u0642\u0629 \u0639\u0645\u0644\u0646\u0627\"})})},jfU0XQit9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Lokasyonlar\u0131m\u0131z\"})})},K3VkBAYax:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Why Bas?\"})})},KEIGjhLEz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u0623\u0645\u0627\u0643\u0646 \u062A\u0648\u0627\u062C\u062F\u0646\u0627\"})})},lkkSFqhSv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"About Bas?\"})})},neHWb5qy0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Bas Hakk\u0131nda\"})})},nQsCVQahd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u0644\u0645\u0627\u0630\u0627 \u0628\u0627\u0635\u061F\"})})},RYvgt4sem:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Nas\u0131l \\xc7al\u0131\u015F\u0131r\"})})}),fonts:[\"GF;Cairo-700\",\"GF;Cairo-900\"]},Sjpo_e3MF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Bize Kat\u0131l\u0131n\"})})}),fonts:[\"GF;Cairo-700\",\"GF;Cairo-900\"]},SkI_9KTDc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Bize Ula\u015F\u0131n\"})})}),fonts:[\"GF;Cairo-700\",\"GF;Cairo-900\"]},TjFjphLT5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Contact Us\"})})},u_ddnl2fc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0651\u0629\"})})},yKFEGSfCC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Anasayfa\"})})},zSwGcAs2e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNzAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u062A\u0648\u0627\u0635\u0644 \u0645\u0639\u0646\u0627\"})})}},baseVariant,gestureVariant)})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Z7gML.framer-1soy9j1, .framer-Z7gML .framer-1soy9j1 { display: block; }\",\".framer-Z7gML.framer-1h5yus6 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 128px; }\",\".framer-Z7gML .framer-1fpun98 { flex: none; height: 36px; overflow: hidden; position: relative; width: 128px; }\",\".framer-Z7gML .framer-trwlg7 { bottom: -39px; flex: none; height: 34px; left: 0px; position: absolute; right: 0px; }\",\".framer-Z7gML .framer-fkhf87 { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Z7gML.framer-1h5yus6 { gap: 0px; } .framer-Z7gML.framer-1h5yus6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Z7gML.framer-1h5yus6 > :first-child { margin-top: 0px; } .framer-Z7gML.framer-1h5yus6 > :last-child { margin-bottom: 0px; } }\",'.framer-Z7gML[data-border=\"true\"]::after, .framer-Z7gML [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 36\n * @framerIntrinsicWidth 128\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dnOD7RWfh\":{\"layout\":[\"fixed\",\"auto\"]},\"lkkSFqhSv\":{\"layout\":[\"fixed\",\"auto\"]},\"K3VkBAYax\":{\"layout\":[\"fixed\",\"auto\"]},\"IUTUBTYLs\":{\"layout\":[\"fixed\",\"auto\"]},\"GyoXrar59\":{\"layout\":[\"fixed\",\"auto\"]},\"hpV7zFUmd\":{\"layout\":[\"fixed\",\"auto\"]},\"AkqQOQHXW\":{\"layout\":[\"fixed\",\"auto\"]},\"u_ddnl2fc\":{\"layout\":[\"fixed\",\"auto\"]},\"KEIGjhLEz\":{\"layout\":[\"fixed\",\"auto\"]},\"e8W9_ZzaW\":{\"layout\":[\"fixed\",\"auto\"]},\"nQsCVQahd\":{\"layout\":[\"fixed\",\"auto\"]},\"J2muiaPnX\":{\"layout\":[\"fixed\",\"auto\"]},\"cKebidzeR\":{\"layout\":[\"fixed\",\"auto\"]},\"zSwGcAs2e\":{\"layout\":[\"fixed\",\"auto\"]},\"TjFjphLT5\":{\"layout\":[\"fixed\",\"auto\"]},\"yKFEGSfCC\":{\"layout\":[\"fixed\",\"auto\"]},\"jfU0XQit9\":{\"layout\":[\"fixed\",\"auto\"]},\"neHWb5qy0\":{\"layout\":[\"fixed\",\"auto\"]},\"DyUTbl7oq\":{\"layout\":[\"fixed\",\"auto\"]},\"RYvgt4sem\":{\"layout\":[\"fixed\",\"auto\"]},\"Sjpo_e3MF\":{\"layout\":[\"fixed\",\"auto\"]},\"SkI_9KTDc\":{\"layout\":[\"fixed\",\"auto\"]},\"FADILrZRR\":{\"layout\":[\"fixed\",\"auto\"]},\"kf59WNveW\":{\"layout\":[\"fixed\",\"auto\"]},\"uzVSBuEmh\":{\"layout\":[\"fixed\",\"auto\"]},\"O_ChxtVV6\":{\"layout\":[\"fixed\",\"auto\"]},\"JrnsUgYTw\":{\"layout\":[\"fixed\",\"auto\"]},\"PoqndkGUf\":{\"layout\":[\"fixed\",\"auto\"]},\"eT5GlUth9\":{\"layout\":[\"fixed\",\"auto\"]},\"WSZJmSzyG\":{\"layout\":[\"fixed\",\"auto\"]},\"x9VRr9dfq\":{\"layout\":[\"fixed\",\"auto\"]},\"IykLtPW8Y\":{\"layout\":[\"fixed\",\"auto\"]},\"PTMfqtpov\":{\"layout\":[\"fixed\",\"auto\"]},\"qf2Q2IDtY\":{\"layout\":[\"fixed\",\"auto\"]},\"tMjHlwAD2\":{\"layout\":[\"fixed\",\"auto\"]},\"SVh1wP3Kl\":{\"layout\":[\"fixed\",\"auto\"]},\"KAMooIwo6\":{\"layout\":[\"fixed\",\"auto\"]},\"H5asUtr51\":{\"layout\":[\"fixed\",\"auto\"]},\"YtKBiSg6R\":{\"layout\":[\"fixed\",\"auto\"]},\"Cwk9eBj78\":{\"layout\":[\"fixed\",\"auto\"]},\"pOwq6mnVt\":{\"layout\":[\"fixed\",\"auto\"]},\"BcvzFqqGx\":{\"layout\":[\"fixed\",\"auto\"]},\"t9ta2Ir3k\":{\"layout\":[\"fixed\",\"auto\"]},\"mLL7l0bKc\":{\"layout\":[\"fixed\",\"auto\"]},\"MMIbCqOYQ\":{\"layout\":[\"fixed\",\"auto\"]},\"O8bpXMcId\":{\"layout\":[\"fixed\",\"auto\"]},\"VZOBe0QRd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"nMKe_gqr3\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJRqfhGLsz=withCSS(Component,css,\"framer-Z7gML\");export default FramerJRqfhGLsz;FramerJRqfhGLsz.displayName=\"navItem\";FramerJRqfhGLsz.defaultProps={height:36,width:128};addPropertyControls(FramerJRqfhGLsz,{variant:{options:[\"n14oNwdwQ\",\"dnOD7RWfh\",\"lkkSFqhSv\",\"K3VkBAYax\",\"IUTUBTYLs\",\"GyoXrar59\",\"hpV7zFUmd\",\"AkqQOQHXW\",\"u_ddnl2fc\",\"KEIGjhLEz\",\"e8W9_ZzaW\",\"nQsCVQahd\",\"J2muiaPnX\",\"cKebidzeR\",\"zSwGcAs2e\",\"TjFjphLT5\",\"yKFEGSfCC\",\"jfU0XQit9\",\"neHWb5qy0\",\"DyUTbl7oq\",\"RYvgt4sem\",\"Sjpo_e3MF\",\"SkI_9KTDc\",\"FADILrZRR\"],optionTitles:[\"Home\",\"ourServices\",\"What\",\"Why\",\"How\",\"Join Us\",\"English\",\"\u0627\u0644\u0639\u0631\u0628\u064A\u0629\",\"\u0627\u0644\u0631\u0626\u064A\u0633\u064A\u0651\u0629\",\"\u0623\u0645\u0627\u0643\u0646 \u062A\u0648\u0627\u062C\u062F\u0646\u0627\",\"\u0645\u0627\u0647\u064A \u0643\u064A\u0648 \u0628\u0627\u0635\u061F\",\"\u0644\u0645\u0627\u0630\u0627 \u0643\u064A\u0648 \u0628\u0627\u0635\u061F\",\"\u0637\u0631\u064A\u0642\u0629 \u0627\u0644\u0639\u0645\u0644\",\"\u0627\u0646\u0636\u0645 \u0625\u0644\u064A\u0646\u0627\",\"\u062A\u0648\u0627\u0635\u0644 \u0645\u0639\u0646\u0627\",\"Contact Us\",\"HomeTR\",\"ourService-TR\",\"what-TR\",\"Why-TR\",\"How-TR\",\"Join Us-TR\",\"ContactUs-TR\",\"Turk\"],title:\"Variant\",type:ControlType.Enum},nMKe_gqr3:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerJRqfhGLsz,[{explicitInter:true,fonts:[{family:\"Cairo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1HoLQ-HmkA.woff2\",weight:\"700\"},{family:\"Cairo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hEk5W1HoLQ-HmkA.woff2\",weight:\"900\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJRqfhGLsz\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"nMKe_gqr3\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"128\",\"framerIntrinsicHeight\":\"36\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dnOD7RWfh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lkkSFqhSv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K3VkBAYax\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IUTUBTYLs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GyoXrar59\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hpV7zFUmd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AkqQOQHXW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u_ddnl2fc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KEIGjhLEz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e8W9_ZzaW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nQsCVQahd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J2muiaPnX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cKebidzeR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zSwGcAs2e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TjFjphLT5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yKFEGSfCC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jfU0XQit9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"neHWb5qy0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DyUTbl7oq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RYvgt4sem\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Sjpo_e3MF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SkI_9KTDc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FADILrZRR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kf59WNveW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uzVSBuEmh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O_ChxtVV6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JrnsUgYTw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PoqndkGUf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eT5GlUth9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WSZJmSzyG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x9VRr9dfq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IykLtPW8Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PTMfqtpov\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qf2Q2IDtY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tMjHlwAD2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SVh1wP3Kl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KAMooIwo6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"H5asUtr51\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YtKBiSg6R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Cwk9eBj78\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pOwq6mnVt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BcvzFqqGx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t9ta2Ir3k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mLL7l0bKc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MMIbCqOYQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O8bpXMcId\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VZOBe0QRd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JRqfhGLsz.map", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import NavItem from\"https://framerusercontent.com/modules/2NHYN7uNQLCATEfjbFvn/mCOM2uYok7LghnJQJa1W/JRqfhGLsz.js\";const NavItemFonts=getFonts(NavItem);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"K3_3k_7aA\",\"KMtI1bHus\",\"EC_d2AZj4\"];const serializationHash=\"framer-SpJbO\";const variantClassNames={EC_d2AZj4:\"framer-v-1sseyo1\",K3_3k_7aA:\"framer-v-1s0pu90\",KMtI1bHus:\"framer-v-1ed9i0m\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const 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 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 Variants=motion.create(React.Fragment);const humanReadableVariantMap={AR:\"KMtI1bHus\",EN:\"K3_3k_7aA\",Turkish:\"EC_d2AZj4\"};const getProps=({click,height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"K3_3k_7aA\",Z6AIJFRwm:click??props.Z6AIJFRwm};};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,Z6AIJFRwm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"K3_3k_7aA\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1fyzaa6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Z6AIJFRwm){const res=await Z6AIJFRwm(...args);if(res===false)return false;}});const onMouseEnterupml6a=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});overlay.show();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1s0pu90\",className,classNames),\"data-framer-name\":\"EN\",\"data-highlight\":true,id:`${layoutId}-1s0pu90`,layoutDependency:layoutDependency,layoutId:\"K3_3k_7aA\",onMouseEnter:onMouseEnterupml6a({overlay}),onTap:onTap1fyzaa6,ref:refBinding,style:{backgroundColor:\"var(--token-586bdf95-28a9-4bfd-841b-9123da50a126, rgb(49, 176, 75))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},...addPropertyOverrides({EC_d2AZj4:{\"data-framer-name\":\"Turkish\"},KMtI1bHus:{\"data-framer-name\":\"AR\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNTAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"EN\"})}),className:\"framer-34dxqf\",fonts:[\"GF;Cairo-500\"],layoutDependency:layoutDependency,layoutId:\"Pp3oz8UEA\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EC_d2AZj4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNTAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"TU\"})})},KMtI1bHus:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2Fpcm8tNTAw\",\"--framer-font-family\":'\"Cairo\", \"Cairo Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u0639\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:refBinding,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1s0pu90`,offsetX:-38.00000822823495,offsetY:9.000005520880222,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1kbfmqf\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"eklCWITWM\",ref:ref1,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"128px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zujueh-container\",layoutDependency:layoutDependency,layoutId:\"hLc85P9VK-container\",nodeId:\"hLc85P9VK\",rendersWithMotion:true,scopeId:\"ivJHgSaQl\",children:/*#__PURE__*/_jsx(NavItem,{height:\"100%\",id:\"hLc85P9VK\",layoutId:\"hLc85P9VK\",style:{width:\"100%\"},variant:\"hpV7zFUmd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"128px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14eicze-container\",layoutDependency:layoutDependency,layoutId:\"MmxorV2R4-container\",nodeId:\"MmxorV2R4\",rendersWithMotion:true,scopeId:\"ivJHgSaQl\",children:/*#__PURE__*/_jsx(NavItem,{height:\"100%\",id:\"MmxorV2R4\",layoutId:\"MmxorV2R4\",style:{width:\"100%\"},variant:\"FADILrZRR\",width:\"100%\"})})})]})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SpJbO.framer-428rjh, .framer-SpJbO .framer-428rjh { display: block; }\",\".framer-SpJbO.framer-1s0pu90 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: visible; padding: 4px; position: relative; width: 42px; }\",\".framer-SpJbO .framer-34dxqf { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SpJbO .framer-1kbfmqf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-SpJbO .framer-zujueh-container, .framer-SpJbO .framer-14eicze-container { flex: none; height: auto; position: relative; width: 128px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SpJbO.framer-1s0pu90, .framer-SpJbO .framer-1kbfmqf { gap: 0px; } .framer-SpJbO.framer-1s0pu90 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SpJbO.framer-1s0pu90 > :first-child { margin-left: 0px; } .framer-SpJbO.framer-1s0pu90 > :last-child { margin-right: 0px; } .framer-SpJbO .framer-1kbfmqf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-SpJbO .framer-1kbfmqf > :first-child { margin-top: 0px; } .framer-SpJbO .framer-1kbfmqf > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 42\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"KMtI1bHus\":{\"layout\":[\"fixed\",\"fixed\"]},\"EC_d2AZj4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Z6AIJFRwm\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerivJHgSaQl=withCSS(Component,css,\"framer-SpJbO\");export default FramerivJHgSaQl;FramerivJHgSaQl.displayName=\"lanButtin\";FramerivJHgSaQl.defaultProps={height:42,width:42};addPropertyControls(FramerivJHgSaQl,{variant:{options:[\"K3_3k_7aA\",\"KMtI1bHus\",\"EC_d2AZj4\"],optionTitles:[\"EN\",\"AR\",\"Turkish\"],title:\"Variant\",type:ControlType.Enum},Z6AIJFRwm:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerivJHgSaQl,[{explicitInter:true,fonts:[{family:\"Cairo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hNI-W1HoLQ-HmkA.woff2\",weight:\"500\"}]},...NavItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerivJHgSaQl\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KMtI1bHus\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EC_d2AZj4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"42\",\"framerVariables\":\"{\\\"Z6AIJFRwm\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"42\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ivJHgSaQl.map"],
  "mappings": "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",
  "names": ["noopReturn", "t", "isFunction", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "r", "c", "u", "a", "s", "cubicBezier", "o", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "hasReachedTarget", "spring", "o", "c", "i", "h", "e", "u", "d", "f", "l", "g", "glide", "a", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "L", "T", "M", "k", "noopReturn", "B", "asTransformCssVar", "j", "T", "L", "t", "P", "j", "testAnimation", "t", "C", "R", "H", "resolveElements", "t", "n", "createGeneratorEasing", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "e", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "U", "spring", "q", "glide", "K", "inView$1", "resolveElements", "onIntersectionChange", "isFunction", "G", "_", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "Z", "X", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "t", "n", "dispatchViewEvent", "ae", "o", "s", "__rest", "inView$1", "mouseEvent", "ce", "le", "onPointerUp", "window", "onPointerDown", "fe", "ue", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ixNJZNxhQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap10vrjfa", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerC1Oe5BxJE", "withCSS", "C1Oe5BxJE_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerpKLLiguTY", "withCSS", "pKLLiguTY_default", "addPropertyControls", "ControlType", "addFonts", "SocialMediaIconsFonts", "getFonts", "pKLLiguTY_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerggnnDQxGv", "withCSS", "ggnnDQxGv_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "rF8l9cuSl", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1asbwpx", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "LayoutGroup", "Link", "u", "SVG", "css", "FramerIHu4k61fi", "withCSS", "IHu4k61fi_default", "addPropertyControls", "ControlType", "addFonts", "containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "o", "t", "h", "defaultEvents", "ControlType", "findByArray", "arr", "search", "a", "getIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchTerm", "_iconSearchTerm", "useIconSelection", "iconSearchResult", "se", "moduleBaseUrl", "icons", "iconKeys", "weightOptions", "styleKeyOptions", "styleOptionPropKeys", "optionKey", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "style", "isMounted", "pe", "iconKey", "useIconSelection", "styleOptionProps", "prop", "iconStyle", "se", "iconStyleKey", "activeStyle", "SelectedIcon", "setSelectedIcon", "ye", "h", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "hideStyleOptions", "styleOptions", "styleOptionsNumber", "name", "getIconSelection", "icon", "addPropertyControls", "ControlType", "result", "defaultEvents", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "nMKe_gqr3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1sjzomw", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "css", "FramerJRqfhGLsz", "withCSS", "JRqfhGLsz_default", "addPropertyControls", "ControlType", "addFonts", "NavItemFonts", "getFonts", "JRqfhGLsz_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "animation2", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Z6AIJFRwm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1fyzaa6", "args", "onMouseEnterupml6a", "overlay", "loadMore", "scopingClassNames", "cx", "ref1", "LayoutGroup", "l", "u", "RichText2", "AnimatePresence", "Floating", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerivJHgSaQl", "withCSS", "ivJHgSaQl_default", "addPropertyControls", "ControlType", "addFonts"]
}
