{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/soIAPuIiPtf4z0IwVYlq/SlideShow.js", "ssg:https://framerusercontent.com/modules/r3mCQTm7tLVmbvmILdwF/JzFO0LuL3UiVdgaLZJ39/O5xyKp5ZC.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 isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);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 r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}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,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{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,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\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;const hasChildren=Children.count(slots)>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 slots.map(index=>/*#__PURE__*/ createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight: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(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.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;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */ useLayoutEffect(()=>{if(hasChildren)measure();},[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)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */ const totalItems=slots===null||slots===void 0?void 0:slots.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 isVisible=usePageVisibility();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(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.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:slots===null||slots===void 0?void 0:slots.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<(slots===null||slots===void 0?void 0:slots.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: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),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?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: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\",{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\",{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 ref1,ref2;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=>{ref.current.setAttribute(\"aria-hidden\",!newValue);});},[]);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:{...(ref1=child.props)===null||ref1===void 0?void 0:ref1.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},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref2=child.props)===null||ref2===void 0?void 0:ref2.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\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/soIAPuIiPtf4z0IwVYlq/SlideShow.js\";import TopSection from\"#framer/local/canvasComponent/cfrGsf9rv/cfrGsf9rv.js\";import WhereToPlay from\"#framer/local/canvasComponent/EuP1WMG5S/EuP1WMG5S.js\";import NavbarDark from\"#framer/local/canvasComponent/TprkxdXL0/TprkxdXL0.js\";import Navbar from\"#framer/local/canvasComponent/vaRMmL1cV/vaRMmL1cV.js\";import News from\"#framer/local/collection/Nv8RSld14/Nv8RSld14.js\";import*as sharedStyle1 from\"#framer/local/css/CzQE9CQzB/CzQE9CQzB.js\";import*as sharedStyle from\"#framer/local/css/NbdMzqHNc/NbdMzqHNc.js\";import metadataProvider from\"#framer/local/webPageMetadata/O5xyKp5ZC/O5xyKp5ZC.js\";const ImageWithFX=withFX(Image);const TopSectionFonts=getFonts(TopSection);const NavbarFonts=getFonts(Navbar);const SlideshowFonts=getFonts(Slideshow);const NavbarDarkFonts=getFonts(NavbarDark);const RichTextWithFX=withFX(RichText);const WhereToPlayFonts=getFonts(WhereToPlay);const breakpoints={iQz7U2Mf9:\"(min-width: 810px) and (max-width: 1199px)\",lEqvLCJ_B:\"(min-width: 1200px)\",X3RqGVxVy:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-55MWe\";const variantClassNames={iQz7U2Mf9:\"framer-v-cbmjsa\",lEqvLCJ_B:\"framer-v-166anki\",X3RqGVxVy:\"framer-v-pxna3x\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:50};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"lEqvLCJ_B\",Phone:\"X3RqGVxVy\",Tablet:\"iQz7U2Mf9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"lEqvLCJ_B\"};};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,fLgjsJKJTcx6DB__PT,idcx6DB__PT,fLgjsJKJTP0f3Q3VUr,yek6VUiStP0f3Q3VUr,NYxLPpLlzP0f3Q3VUr,idP0f3Q3VUr,fLgjsJKJTHYpc5Bjdw,yek6VUiStHYpc5Bjdw,NYxLPpLlzHYpc5Bjdw,idHYpc5Bjdw,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"iQz7U2Mf9\",\"X3RqGVxVy\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"X3RqGVxVy\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"iQz7U2Mf9\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"X3RqGVxVy\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"iQz7U2Mf9\")return true;return false;};const isDisplayed5=()=>{if(!isBrowser())return true;if([\"iQz7U2Mf9\",\"X3RqGVxVy\"].includes(baseVariant))return true;return false;};const elementId=useRouteElementId(\"bS8i_cegu\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"lEqvLCJ_B\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-166anki\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1510,intrinsicWidth:4096,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+357),pixelHeight:1510,pixelWidth:4096,sizes:\"1878px\",src:\"https://framerusercontent.com/images/FGtyBJbTMF0Zk6EtrKE2kNTJInQ.png\",srcSet:\"https://framerusercontent.com/images/FGtyBJbTMF0Zk6EtrKE2kNTJInQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/FGtyBJbTMF0Zk6EtrKE2kNTJInQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FGtyBJbTMF0Zk6EtrKE2kNTJInQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FGtyBJbTMF0Zk6EtrKE2kNTJInQ.png 4096w\"},className:\"framer-77vohr hidden-cbmjsa hidden-pxna3x\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l1pn6o-container\",nodeId:\"rQlGZOhQu\",scopeId:\"O5xyKp5ZC\",children:/*#__PURE__*/_jsx(TopSection,{height:\"100%\",id:\"rQlGZOhQu\",layoutId:\"rQlGZOhQu\",Qxc5ojkEA:\"Contact us today (912) 304 3024  |  info@goldenislestennis.com\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cvai2w-container\",nodeId:\"eiuGZK64l\",scopeId:\"O5xyKp5ZC\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{variant:\"WdJKxUG_p\"},X3RqGVxVy:{variant:\"By91JUCqd\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"eiuGZK64l\",layoutId:\"eiuGZK64l\",style:{width:\"100%\"},variant:\"O45kOx3Ye\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7r1h71\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-99gdi1-container\",id:\"99gdi1\",isModuleExternal:true,nodeId:\"G3MIWeNZ_\",scopeId:\"O5xyKp5ZC\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:100,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:30,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"G3MIWeNZ_\",intervalControl:4.5,itemAmount:1,layoutId:\"G3MIWeNZ_\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:10,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250},className:\"framer-111f0xx\",\"data-framer-name\":\"Header Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:768,intrinsicWidth:1024,pixelHeight:1536,pixelWidth:2048,sizes:\"787px\",src:\"https://framerusercontent.com/images/PLpIbCLM0e1ugHWhuPHgqKwA.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PLpIbCLM0e1ugHWhuPHgqKwA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/PLpIbCLM0e1ugHWhuPHgqKwA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PLpIbCLM0e1ugHWhuPHgqKwA.jpeg 2048w\"},className:\"framer-44h8u2\",\"data-framer-name\":\"IMG 1171\"})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7se2m1\",\"data-framer-name\":\"Leagues\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gmgrun hidden-pxna3x\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"30px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\"},children:\"YOUTH LEAGUES\"})})}),className:\"framer-1yztq7m\",\"data-framer-name\":\"Youth Leagues\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1883ksn hidden-cbmjsa\",\"data-framer-name\":\"Line 25\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:481,svg:'<svg width=\"481\" height=\"4\" viewBox=\"-1 -1 481 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0.551758H479\" stroke=\"#100F38\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2478nr\",\"data-framer-name\":\"np_tennis_1708867_000000\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:29,svg:'<svg width=\"29\" height=\"29\" viewBox=\"0 0 29 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.375 28.3981C17.5854 28.3982 20.6964 27.2857 23.1781 25.2501C25.6598 23.2145 27.3586 20.3818 27.985 17.2346C28.6113 14.0874 28.1266 10.8204 26.6133 7.99043C25.1001 5.16042 22.6519 2.94244 19.6859 1.71441C16.72 0.486391 13.4198 0.324306 10.3477 1.25578C7.27564 2.18725 4.62171 4.15465 2.83816 6.82274C1.05461 9.49083 0.251785 12.6945 0.566487 15.888C0.881189 19.0814 2.29394 22.0669 4.56403 24.3359C5.85229 25.6239 7.38181 26.6456 9.06522 27.3426C10.7486 28.0396 12.5529 28.3983 14.375 28.3981ZM26.4 14.5293C26.404 16.1474 26.0779 17.7494 25.4418 19.2373C24.8056 20.7252 23.8727 22.0679 22.7 23.1834C21.5279 22.067 20.5947 20.7244 19.9571 19.2368C19.3194 17.7492 18.9907 16.1477 18.9907 14.5293C18.9907 12.911 19.3194 11.3095 19.9571 9.82188C20.5947 8.33429 21.5279 6.99161 22.7 5.87522C23.8733 6.99029 24.8065 8.33292 25.4427 9.82095C26.0789 11.309 26.4047 12.9111 26.4 14.5293ZM21.266 4.69176C19.9629 5.97764 18.9282 7.5094 18.222 9.19814C17.5158 10.8869 17.1522 12.699 17.1522 14.5293C17.1522 16.3597 17.5158 18.1718 18.222 19.8605C18.9282 21.5493 19.9629 23.081 21.266 24.3669C19.2489 25.7868 16.8421 26.5489 14.375 26.5489C11.9079 26.5489 9.50113 25.7868 7.48403 24.3669C8.78788 23.0814 9.82321 21.5498 10.5299 19.861C11.2365 18.1722 11.6004 16.3599 11.6004 14.5293C11.6004 12.6988 11.2365 10.8865 10.5299 9.19765C9.82321 7.50885 8.78788 5.97723 7.48403 4.69176C9.50113 3.27188 11.9079 2.50979 14.375 2.50979C16.8421 2.50979 19.2489 3.27188 21.266 4.69176ZM6.05003 5.87522C7.21953 6.99317 8.15031 8.33635 8.78622 9.82373C9.42212 11.3111 9.74997 12.9118 9.74997 14.5293C9.74997 16.1468 9.42212 17.7476 8.78622 19.2349C8.15031 20.7223 7.21953 22.0655 6.05003 23.1834C4.8861 22.0623 3.96028 20.718 3.32791 19.2311C2.69555 17.7442 2.36963 16.145 2.36963 14.5293C2.36963 12.9136 2.69555 11.3145 3.32791 9.82755C3.96028 8.34061 4.8861 6.99638 6.05003 5.87522Z\" fill=\"url(#paint0_linear_5_80)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_80\" x1=\"14.3757\" y1=\"0.658569\" x2=\"14.3757\" y2=\"28.3981\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F1D954\"/>\\n<stop offset=\"0.207\" stop-color=\"#F1CE44\"/>\\n<stop offset=\"1\" stop-color=\"#EFA505\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rdq0u4\",\"data-framer-name\":\"np_tennis_1708867_000000\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:29,svg:'<svg width=\"29\" height=\"29\" viewBox=\"0 0 29 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.375 28.4807C17.5854 28.4809 20.6964 27.3684 23.1781 25.3328C25.6598 23.2972 27.3586 20.4644 27.985 17.3172C28.6113 14.17 28.1266 10.9031 26.6133 8.07307C25.1001 5.24306 22.6519 3.02508 19.6859 1.79706C16.72 0.569033 13.4198 0.406948 10.3477 1.33842C7.27564 2.26989 4.62171 4.23729 2.83816 6.90538C1.05461 9.57347 0.251785 12.7772 0.566487 15.9706C0.881189 19.164 2.29394 22.1496 4.56403 24.4186C5.85229 25.7066 7.38181 26.7283 9.06522 27.4253C10.7486 28.1223 12.5529 28.4809 14.375 28.4807ZM26.4 14.612C26.404 16.2301 26.0779 17.832 25.4418 19.3199C24.8056 20.8079 23.8727 22.1506 22.7 23.2661C21.5279 22.1497 20.5947 20.807 19.9571 19.3194C19.3194 17.8318 18.9907 16.2303 18.9907 14.612C18.9907 12.9936 19.3194 11.3921 19.9571 9.90452C20.5947 8.41693 21.5279 7.07426 22.7 5.95787C23.8733 7.07293 24.8065 8.41556 25.4427 9.90359C26.0789 11.3916 26.4047 12.9938 26.4 14.612ZM21.266 4.7744C19.9629 6.06029 18.9282 7.59204 18.222 9.28078C17.5158 10.9695 17.1522 12.7816 17.1522 14.612C17.1522 16.4423 17.5158 18.2544 18.222 19.9432C18.9282 21.6319 19.9629 23.1637 21.266 24.4495C19.2489 25.8694 16.8421 26.6315 14.375 26.6315C11.9079 26.6315 9.50113 25.8694 7.48403 24.4495C8.78788 23.1641 9.82321 21.6324 10.5299 19.9436C11.2365 18.2548 11.6004 16.4425 11.6004 14.612C11.6004 12.7814 11.2365 10.9691 10.5299 9.28029C9.82321 7.59149 8.78788 6.05987 7.48403 4.7744C9.50113 3.35452 11.9079 2.59243 14.375 2.59243C16.8421 2.59243 19.2489 3.35452 21.266 4.7744ZM6.05003 5.95787C7.21953 7.07581 8.15031 8.41899 8.78622 9.90637C9.42212 11.3937 9.74997 12.9945 9.74997 14.612C9.74997 16.2295 9.42212 17.8302 8.78622 19.3176C8.15031 20.8049 7.21953 22.1481 6.05003 23.2661C4.8861 22.1449 3.96028 20.8007 3.32791 19.3137C2.69555 17.8268 2.36963 16.2277 2.36963 14.612C2.36963 12.9963 2.69555 11.3971 3.32791 9.9102C3.96028 8.42326 4.8861 7.07903 6.05003 5.95787Z\" fill=\"url(#paint0_linear_5_83)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_83\" x1=\"14.3757\" y1=\"0.741211\" x2=\"14.3757\" y2=\"28.4807\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F1D954\"/>\\n<stop offset=\"0.207\" stop-color=\"#F1CE44\"/>\\n<stop offset=\"1\" stop-color=\"#EFA505\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\"},children:\"LEAGUES PLAYING NOW\"})}),className:\"framer-1lj4oh4 hidden-cbmjsa\",\"data-framer-name\":\"Leagues Playing Now\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\"},children:\"LEAGUES STARTING SOON\"})}),className:\"framer-91bxmt hidden-cbmjsa\",\"data-framer-name\":\"Leagues Starting Soon\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1mfzinr hidden-cbmjsa\",\"data-framer-name\":\"Line 23\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 482 4\"><path d=\"M 1.5 1.634 L 480.5 1.634\" fill=\"transparent\" stroke=\"hsl(0, 0%, 0%)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\" opacity=\"0.237\"></path></svg>',svgContentId:4206143078,withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-er8ik2 hidden-cbmjsa\",\"data-framer-name\":\"Line 24\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 482 4\"><path d=\"M 1.5 2.307 L 480.5 2.307\" fill=\"transparent\" stroke=\"hsl(0, 0%, 0%)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\" opacity=\"0.237\"></path></svg>',svgContentId:2400972804,withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\"},children:\"To learn more about our Golden Isles Tennis Youth Leagues, click on the link below\"})}),className:\"framer-9j276k hidden-cbmjsa\",\"data-framer-name\":\"If you are interested in learning more or signing up for an upcoming\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://cdn.jotfor.ms/form/230794515781059\",motionChild:true,nodeId:\"PcPyYQ5uC\",openInNewTab:true,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"LEARN MORE\"})})})}),className:\"framer-1rkk64l hidden-cbmjsa\",\"data-framer-name\":\"REGISTER\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ojwb9z hidden-cbmjsa\",\"data-framer-name\":\"np_arrow-right_888647_000000\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 17\"><path d=\"M 0 7.185 L 18.411 7.185 L 18.411 9.559 L 0 9.559 Z\" fill=\"hsl(0, 0%, 0%)\"></path><path d=\"M 13.308 16.328 L 11.644 14.665 L 17.944 8.368 L 11.644 2.07 L 13.308 0.417 L 21.266 8.373 Z\" fill=\"hsl(0, 0%, 0%)\"></path></svg>',svgContentId:1098902403,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nl4wt0\",\"data-framer-name\":\"adult leagues\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 822 610\"><g><defs><linearGradient id=\"idss9874510295_1g360397257\" x1=\"0.49559195062545514\" x2=\"0.5044080493745449\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 14.243 12.508 L 14.243 600.409 C 14.243 605.949 20.244 610.442 27.647 610.442 L 794.353 610.442 C 801.756 610.442 807.757 605.949 807.757 600.409 L 807.757 12.508 C 807.757 6.967 801.756 2.475 794.353 2.475 L 27.647 2.475 C 20.244 2.475 14.243 6.967 14.243 12.508 Z\" fill=\"url(#idss9874510295_1g360397257)\"></path></g></svg>',svgContentId:9874510295}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18bfev7\",\"data-framer-name\":\"Component 1 \u2013 1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 592 607\"><g><defs><linearGradient id=\"idss694904696_1g360397257\" x1=\"0.49559195062545514\" x2=\"0.5044080493745449\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 0 10.61 L 0 596.346 C 0 601.866 4.477 606.342 10 606.342 L 582 606.342 C 587.523 606.342 592 601.866 592 596.346 L 592 10.61 C 592 5.089 587.523 0.614 582 0.614 L 10 0.614 C 4.477 0.614 0 5.089 0 10.61 Z\" fill=\"url(#idss694904696_1g360397257)\"></path></g></svg>',svgContentId:694904696,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"30px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"ADULT LEAGUES\"})})}),className:\"framer-11nxs05\",\"data-framer-name\":\"Adult Leagues\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"LEAGUES PLAYING NOW\"})})}),className:\"framer-1ul1d4p\",\"data-framer-name\":\"Leagues Playing Now\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dm1l24\",\"data-framer-name\":\"Line 15\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:482,svg:'<svg width=\"482\" height=\"4\" viewBox=\"-1 -1 482 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.5 0.551758H479.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Adult 18+ | 55+\"})}),className:\"framer-2gdiv7\",\"data-framer-name\":\"SOUTHERN COMBO\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jetnh9\",\"data-framer-name\":\"np_tennis_1708867_000000\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.875 28.3981C17.0854 28.3982 20.1964 27.2857 22.6781 25.2501C25.1598 23.2145 26.8586 20.3818 27.485 17.2346C28.1113 14.0874 27.6266 10.8204 26.1133 7.99043C24.6001 5.16042 22.1519 2.94244 19.1859 1.71441C16.22 0.486391 12.9198 0.324306 9.84773 1.25578C6.77564 2.18725 4.12171 4.15465 2.33816 6.82274C0.554608 9.49083 -0.248215 12.6945 0.0664872 15.888C0.381189 19.0814 1.79394 22.0669 4.06403 24.3359C5.35229 25.6239 6.88181 26.6456 8.56522 27.3426C10.2486 28.0396 12.0529 28.3983 13.875 28.3981ZM25.9 14.5293C25.904 16.1474 25.5779 17.7494 24.9418 19.2373C24.3056 20.7252 23.3727 22.0679 22.2 23.1834C21.0279 22.067 20.0947 20.7244 19.4571 19.2368C18.8194 17.7492 18.4907 16.1477 18.4907 14.5293C18.4907 12.911 18.8194 11.3095 19.4571 9.82188C20.0947 8.33429 21.0279 6.99161 22.2 5.87522C23.3733 6.99029 24.3065 8.33292 24.9427 9.82095C25.5789 11.309 25.9047 12.9111 25.9 14.5293ZM20.766 4.69176C19.4629 5.97764 18.4282 7.5094 17.722 9.19814C17.0158 10.8869 16.6522 12.699 16.6522 14.5293C16.6522 16.3597 17.0158 18.1718 17.722 19.8605C18.4282 21.5493 19.4629 23.081 20.766 24.3669C18.7489 25.7868 16.3421 26.5489 13.875 26.5489C11.4079 26.5489 9.00113 25.7868 6.98403 24.3669C8.28788 23.0814 9.32321 21.5498 10.0299 19.861C10.7365 18.1722 11.1004 16.3599 11.1004 14.5293C11.1004 12.6988 10.7365 10.8865 10.0299 9.19765C9.32321 7.50885 8.28788 5.97723 6.98403 4.69176C9.00113 3.27188 11.4079 2.50979 13.875 2.50979C16.3421 2.50979 18.7489 3.27188 20.766 4.69176ZM5.55003 5.87522C6.71953 6.99317 7.65031 8.33635 8.28622 9.82373C8.92212 11.3111 9.24997 12.9118 9.24997 14.5293C9.24997 16.1468 8.92212 17.7476 8.28622 19.2349C7.65031 20.7223 6.71953 22.0655 5.55003 23.1834C4.3861 22.0623 3.46028 20.718 2.82791 19.2311C2.19555 17.7442 1.86963 16.145 1.86963 14.5293C1.86963 12.9136 2.19555 11.3145 2.82791 9.82755C3.46028 8.34061 4.3861 6.99638 5.55003 5.87522Z\" fill=\"url(#paint0_linear_5_58)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_58\" x1=\"13.8757\" y1=\"0.658569\" x2=\"13.8757\" y2=\"28.3981\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F1D954\"/>\\n<stop offset=\"0.207\" stop-color=\"#F1CE44\"/>\\n<stop offset=\"1\" stop-color=\"#EFA505\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"LEAGUES STARTING SOON\"})})}),className:\"framer-1fygjxq\",\"data-framer-name\":\"Leagues Starting Soon\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Adult Mixed Doubles\"})}),className:\"framer-casp8s\",\"data-framer-name\":\"Tri-LEVEL\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wu4h3\",\"data-framer-name\":\"np_tennis_1708867_000000\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.875 28.4807C17.0854 28.4809 20.1964 27.3684 22.6781 25.3328C25.1598 23.2972 26.8586 20.4644 27.485 17.3172C28.1113 14.17 27.6266 10.9031 26.1133 8.07307C24.6001 5.24306 22.1519 3.02508 19.1859 1.79706C16.22 0.569033 12.9198 0.406948 9.84773 1.33842C6.77564 2.26989 4.12171 4.23729 2.33816 6.90538C0.554608 9.57347 -0.248215 12.7772 0.0664872 15.9706C0.381189 19.164 1.79394 22.1496 4.06403 24.4186C5.35229 25.7066 6.88181 26.7283 8.56522 27.4253C10.2486 28.1223 12.0529 28.4809 13.875 28.4807ZM25.9 14.612C25.904 16.2301 25.5779 17.832 24.9418 19.3199C24.3056 20.8079 23.3727 22.1506 22.2 23.2661C21.0279 22.1497 20.0947 20.807 19.4571 19.3194C18.8194 17.8318 18.4907 16.2303 18.4907 14.612C18.4907 12.9936 18.8194 11.3921 19.4571 9.90452C20.0947 8.41693 21.0279 7.07426 22.2 5.95787C23.3733 7.07293 24.3065 8.41556 24.9427 9.90359C25.5789 11.3916 25.9047 12.9938 25.9 14.612ZM20.766 4.7744C19.4629 6.06029 18.4282 7.59204 17.722 9.28078C17.0158 10.9695 16.6522 12.7816 16.6522 14.612C16.6522 16.4423 17.0158 18.2544 17.722 19.9432C18.4282 21.6319 19.4629 23.1637 20.766 24.4495C18.7489 25.8694 16.3421 26.6315 13.875 26.6315C11.4079 26.6315 9.00113 25.8694 6.98403 24.4495C8.28788 23.1641 9.32321 21.6324 10.0299 19.9436C10.7365 18.2548 11.1004 16.4425 11.1004 14.612C11.1004 12.7814 10.7365 10.9691 10.0299 9.28029C9.32321 7.59149 8.28788 6.05987 6.98403 4.7744C9.00113 3.35452 11.4079 2.59243 13.875 2.59243C16.3421 2.59243 18.7489 3.35452 20.766 4.7744ZM5.55003 5.95787C6.71953 7.07581 7.65031 8.41899 8.28622 9.90637C8.92212 11.3937 9.24997 12.9945 9.24997 14.612C9.24997 16.2295 8.92212 17.8302 8.28622 19.3176C7.65031 20.8049 6.71953 22.1481 5.55003 23.2661C4.3861 22.1449 3.46028 20.8007 2.82791 19.3137C2.19555 17.8268 1.86963 16.2277 1.86963 14.612C1.86963 12.9963 2.19555 11.3971 2.82791 9.9102C3.46028 8.42326 4.3861 7.07903 5.55003 5.95787Z\" fill=\"url(#paint0_linear_5_61)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_61\" x1=\"13.8757\" y1=\"0.741211\" x2=\"13.8757\" y2=\"28.4807\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F1D954\"/>\\n<stop offset=\"0.207\" stop-color=\"#F1CE44\"/>\\n<stop offset=\"1\" stop-color=\"#EFA505\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fgxkkg\",\"data-framer-name\":\"Registration Opens: XX/XX/23\\xa0\\nRegistration Closes: XX/XX/23\\nPlay: Week of XX/XX/23 to XX/XX/23\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ws665a\",\"data-framer-name\":\"Line 23\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:482,svg:'<svg width=\"482\" height=\"4\" viewBox=\"-1 -1 482 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.237\" d=\"M0.5 0.634399H479.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-eg2mbv\",\"data-framer-name\":\"Line 24\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:482,svg:'<svg width=\"482\" height=\"4\" viewBox=\"-1 -1 482 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.237\" d=\"M0.5 1.30664H479.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tv4shx\",\"data-framer-name\":\"If you are interested in learning more or signing up for an upcoming league, click on the link below to complete and submit the form. When registration opens, we will send you more information.\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"To learn more about our Golden Isles Tennis Adult Leagues, click on the link below\"})}),className:\"framer-1oerxbo\",\"data-framer-name\":\"If you are interested in learning more or signing up for an upcoming\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ijh61w\",\"data-framer-name\":\"Group 22\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://form.jotform.com/form/230794383276061\",motionChild:true,nodeId:\"ZJWZ69CES\",openInNewTab:true,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"LEARN MORE\"})})})}),className:\"framer-e7yy1p\",\"data-framer-name\":\"REGISTER\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{svgContentId:10153148777}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qfpaze\",\"data-framer-name\":\"np_arrow-right_888647_000000\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 17\"><path d=\"M 0 7.185 L 18.411 7.185 L 18.411 9.559 L 0 9.559 Z\" fill=\"hsl(0, 0%, 0%)\"></path><path d=\"M 13.308 16.328 L 11.644 14.665 L 17.944 8.368 L 11.644 2.07 L 13.308 0.417 L 21.266 8.373 Z\" fill=\"hsl(0, 0%, 0%)\"></path></svg>',svgContentId:1563214185,withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cdtp1q\",\"data-framer-name\":\"np_arrow-right_888647_000000\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"17\" viewBox=\"0 0 22 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M-1.52588e-05 7.18518H18.411V9.55911H-1.52588e-05V7.18518Z\" fill=\"white\"/>\\n<path d=\"M13.308 16.3281L11.644 14.6648L17.944 8.36766L11.644 2.07049L13.308 0.417236L21.266 8.37265L13.308 16.3281Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Registration Opens: \\xa03/3/25\"})}),className:\"framer-1v4t7w2\",\"data-framer-name\":\"Registration Opens: XX/XX/23\\xa0\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Registration Closes: 4/6/25\"})}),className:\"framer-1vmcr5y\",\"data-framer-name\":\"Registration Closes: XX/XX/23\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Play: April 21-June 23, 2025\"})}),className:\"framer-1raq0ik\",\"data-framer-name\":\"Play: Week of XX/XX/23 to XX/XX/23\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o23pq0 hidden-166anki hidden-cbmjsa\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{X3RqGVxVy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 364 566\"><g><defs><linearGradient id=\"idss11492131504_1g360397257\" x1=\"0.49559195062545514\" x2=\"0.5044080493745449\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 0.041 9.522 L 0.041 556.084 C 0.041 561.235 2.787 565.412 6.173 565.412 L 356.926 565.412 C 360.312 565.412 363.058 561.235 363.058 556.084 L 363.058 9.522 C 363.058 4.371 360.312 0.195 356.926 0.195 L 6.173 0.195 C 2.787 0.195 0.041 4.371 0.041 9.522 Z\" fill=\"url(#idss11492131504_1g360397257)\"></path></g></svg>',svgContentId:11492131504}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1eqz0hv\",\"data-framer-name\":\"Component 1 \u2013 1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 364 566\"><g><defs><linearGradient id=\"idss2902196912_1g360397257\" x1=\"0.49559195062545514\" x2=\"0.5044080493745449\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 0.041 9.522 L 0.041 556.084 C 0.041 561.235 2.787 565.412 6.173 565.412 L 356.926 565.412 C 360.312 565.412 363.058 561.235 363.058 556.084 L 363.058 9.522 C 363.058 4.371 360.312 0.195 356.926 0.195 L 6.173 0.195 C 2.787 0.195 0.041 4.371 0.041 9.522 Z\" fill=\"url(#idss2902196912_1g360397257)\"></path></g></svg>',svgContentId:2902196912,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"30px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"ADULT LEAGUES\"})})}),className:\"framer-k4abd1\",\"data-framer-name\":\"Adult Leagues\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"LEAGUES PLAYING NOW\"})})}),className:\"framer-prrwwf\",\"data-framer-name\":\"Leagues Playing Now\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"To learn more about our Golden Isles Tennis Adult Leagues, click on the link below\"})}),className:\"framer-1rs8k7t\",\"data-framer-name\":\"If you are interested in learning more or signing up for an upcoming\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1swq0ao\",\"data-framer-name\":\"Line 15\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:482,svg:'<svg width=\"482\" height=\"4\" viewBox=\"-1 -1 482 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.5 0.551758H479.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"LEAGUES STARTING SOON\"})})}),className:\"framer-xahq1m\",\"data-framer-name\":\"Leagues Starting Soon\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g8uy3f\",\"data-framer-name\":\"Registration Opens: XX/XX/23\\xa0\\nRegistration Closes: XX/XX/23\\nPlay: Week of XX/XX/23 to XX/XX/23\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yvqphg\",\"data-framer-name\":\"Line 23\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:482,svg:'<svg width=\"482\" height=\"4\" viewBox=\"-1 -1 482 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.237\" d=\"M0.5 0.634399H479.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-a9tn12\",\"data-framer-name\":\"Line 24\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:482,svg:'<svg width=\"482\" height=\"4\" viewBox=\"-1 -1 482 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.237\" d=\"M0.5 1.30664H479.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1niaod9\",\"data-framer-name\":\"Group 22\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://form.jotform.com/form/230794383276061\",motionChild:true,nodeId:\"b1ZH4XZYU\",openInNewTab:true,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"LEARN MORE\"})})})}),className:\"framer-wsrs4\",\"data-framer-name\":\"REGISTER\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gzzmf4\",\"data-framer-name\":\"np_arrow-right_888647_000000\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"17\" viewBox=\"0 0 22 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M-1.52588e-05 7.18518H18.411V9.55911H-1.52588e-05V7.18518Z\" fill=\"white\"/>\\n<path d=\"M13.308 16.3281L11.644 14.6648L17.944 8.36766L11.644 2.07049L13.308 0.417236L21.266 8.37265L13.308 16.3281Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Southern Combo\"})}),className:\"framer-1apsmyk\",\"data-framer-name\":\"SUMMER LEAGUE\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mnildk\",\"data-framer-name\":\"np_tennis_1708867_000000\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:29,svg:'<svg width=\"29\" height=\"29\" viewBox=\"0 0 29 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.375 28.3981C17.5854 28.3982 20.6964 27.2857 23.1781 25.2501C25.6598 23.2145 27.3586 20.3818 27.985 17.2346C28.6113 14.0874 28.1266 10.8204 26.6133 7.99043C25.1001 5.16042 22.6519 2.94244 19.6859 1.71441C16.72 0.486391 13.4198 0.324306 10.3477 1.25578C7.27564 2.18725 4.62171 4.15465 2.83816 6.82274C1.05461 9.49083 0.251785 12.6945 0.566487 15.888C0.881189 19.0814 2.29394 22.0669 4.56403 24.3359C5.85229 25.6239 7.38181 26.6456 9.06522 27.3426C10.7486 28.0396 12.5529 28.3983 14.375 28.3981ZM26.4 14.5293C26.404 16.1474 26.0779 17.7494 25.4418 19.2373C24.8056 20.7252 23.8727 22.0679 22.7 23.1834C21.5279 22.067 20.5947 20.7244 19.9571 19.2368C19.3194 17.7492 18.9907 16.1477 18.9907 14.5293C18.9907 12.911 19.3194 11.3095 19.9571 9.82188C20.5947 8.33429 21.5279 6.99161 22.7 5.87522C23.8733 6.99029 24.8065 8.33292 25.4427 9.82095C26.0789 11.309 26.4047 12.9111 26.4 14.5293ZM21.266 4.69176C19.9629 5.97764 18.9282 7.5094 18.222 9.19814C17.5158 10.8869 17.1522 12.699 17.1522 14.5293C17.1522 16.3597 17.5158 18.1718 18.222 19.8605C18.9282 21.5493 19.9629 23.081 21.266 24.3669C19.2489 25.7868 16.8421 26.5489 14.375 26.5489C11.9079 26.5489 9.50113 25.7868 7.48403 24.3669C8.78788 23.0814 9.82321 21.5498 10.5299 19.861C11.2365 18.1722 11.6004 16.3599 11.6004 14.5293C11.6004 12.6988 11.2365 10.8865 10.5299 9.19765C9.82321 7.50885 8.78788 5.97723 7.48403 4.69176C9.50113 3.27188 11.9079 2.50979 14.375 2.50979C16.8421 2.50979 19.2489 3.27188 21.266 4.69176ZM6.05003 5.87522C7.21953 6.99317 8.15031 8.33635 8.78622 9.82373C9.42212 11.3111 9.74997 12.9118 9.74997 14.5293C9.74997 16.1468 9.42212 17.7476 8.78622 19.2349C8.15031 20.7223 7.21953 22.0655 6.05003 23.1834C4.8861 22.0623 3.96028 20.718 3.32791 19.2311C2.69555 17.7442 2.36963 16.145 2.36963 14.5293C2.36963 12.9136 2.69555 11.3145 3.32791 9.82755C3.96028 8.34061 4.8861 6.99638 6.05003 5.87522Z\" fill=\"url(#paint0_linear_5_80)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_80\" x1=\"14.3757\" y1=\"0.658569\" x2=\"14.3757\" y2=\"28.3981\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F1D954\"/>\\n<stop offset=\"0.207\" stop-color=\"#F1CE44\"/>\\n<stop offset=\"1\" stop-color=\"#EFA505\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Women's Flex\"})}),className:\"framer-544ocs\",\"data-framer-name\":\"FALL LEAGUE\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hhcuv8\",\"data-framer-name\":\"np_tennis_1708867_000000\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:29,svg:'<svg width=\"29\" height=\"29\" viewBox=\"0 0 29 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.375 28.4807C17.5854 28.4809 20.6964 27.3684 23.1781 25.3328C25.6598 23.2972 27.3586 20.4644 27.985 17.3172C28.6113 14.17 28.1266 10.9031 26.6133 8.07307C25.1001 5.24306 22.6519 3.02508 19.6859 1.79706C16.72 0.569033 13.4198 0.406948 10.3477 1.33842C7.27564 2.26989 4.62171 4.23729 2.83816 6.90538C1.05461 9.57347 0.251785 12.7772 0.566487 15.9706C0.881189 19.164 2.29394 22.1496 4.56403 24.4186C5.85229 25.7066 7.38181 26.7283 9.06522 27.4253C10.7486 28.1223 12.5529 28.4809 14.375 28.4807ZM26.4 14.612C26.404 16.2301 26.0779 17.832 25.4418 19.3199C24.8056 20.8079 23.8727 22.1506 22.7 23.2661C21.5279 22.1497 20.5947 20.807 19.9571 19.3194C19.3194 17.8318 18.9907 16.2303 18.9907 14.612C18.9907 12.9936 19.3194 11.3921 19.9571 9.90452C20.5947 8.41693 21.5279 7.07426 22.7 5.95787C23.8733 7.07293 24.8065 8.41556 25.4427 9.90359C26.0789 11.3916 26.4047 12.9938 26.4 14.612ZM21.266 4.7744C19.9629 6.06029 18.9282 7.59204 18.222 9.28078C17.5158 10.9695 17.1522 12.7816 17.1522 14.612C17.1522 16.4423 17.5158 18.2544 18.222 19.9432C18.9282 21.6319 19.9629 23.1637 21.266 24.4495C19.2489 25.8694 16.8421 26.6315 14.375 26.6315C11.9079 26.6315 9.50113 25.8694 7.48403 24.4495C8.78788 23.1641 9.82321 21.6324 10.5299 19.9436C11.2365 18.2548 11.6004 16.4425 11.6004 14.612C11.6004 12.7814 11.2365 10.9691 10.5299 9.28029C9.82321 7.59149 8.78788 6.05987 7.48403 4.7744C9.50113 3.35452 11.9079 2.59243 14.375 2.59243C16.8421 2.59243 19.2489 3.35452 21.266 4.7744ZM6.05003 5.95787C7.21953 7.07581 8.15031 8.41899 8.78622 9.90637C9.42212 11.3937 9.74997 12.9945 9.74997 14.612C9.74997 16.2295 9.42212 17.8302 8.78622 19.3176C8.15031 20.8049 7.21953 22.1481 6.05003 23.2661C4.8861 22.1449 3.96028 20.8007 3.32791 19.3137C2.69555 17.8268 2.36963 16.2277 2.36963 14.612C2.36963 12.9963 2.69555 11.3971 3.32791 9.9102C3.96028 8.42326 4.8861 7.07903 6.05003 5.95787Z\" fill=\"url(#paint0_linear_5_83)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_83\" x1=\"14.3757\" y1=\"0.741211\" x2=\"14.3757\" y2=\"28.4807\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F1D954\"/>\\n<stop offset=\"0.207\" stop-color=\"#F1CE44\"/>\\n<stop offset=\"1\" stop-color=\"#EFA505\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Registration Opens: 7/6/24\"})}),className:\"framer-16s6oeu\",\"data-framer-name\":\"Registration Opens: XX/XX/23\\xa0\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Registration Closes: 8/9/24\"})}),className:\"framer-1ao2gcb\",\"data-framer-name\":\"Registration Closes: XX/XX/23\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Play: 8/19/24 to 11/4/24\"})}),className:\"framer-1dha7s8\",\"data-framer-name\":\"Play: Week of XX/XX/23 to XX/XX/23\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-size\":\"16px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"400\",\"--framer-letter-spacing\":\"0em\",\"--framer-line-height\":\"1.2em\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"hsl(0, 0%, 0%)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-18e3j14\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1295klh\",\"data-framer-name\":\"LAST SECTION\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-coinsd\",\"data-framer-name\":\"Group 24\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tmglf4 hidden-pxna3x\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hmd7ex\",\"data-framer-name\":\"SIGN UP FOR OUR MAILING LIST\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\"},children:[\"SIGN UP FOR OUR \",/*#__PURE__*/_jsx(\"br\",{}),\"MAILING LIST \"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\"},children:\"SIGN UP FOR OUR MAILING LIST \"})}),className:\"framer-10pwsps\",\"data-framer-name\":\"SIGN UP FOR OUR\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed4()&&/*#__PURE__*/_jsx(Link,{href:\"https://cdn.jotfor.ms/form/230794383276061\",motionChild:true,nodeId:\"hDNDWJHr9\",openInNewTab:true,scopeId:\"O5xyKp5ZC\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-5zikms hidden-166anki framer-xblc03\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 200 66\"><g><defs><linearGradient id=\"idss9041157928_1g360397257\" x1=\"0.49720229968894514\" x2=\"0.5027977003110549\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 15.258 0.087 C 6.831 0.087 0 14.638 0 32.587 C 0 50.536 6.831 65.087 15.258 65.087 L 184.742 65.087 C 193.169 65.087 200 50.536 200 32.587 C 200 14.638 193.169 0.087 184.742 0.087 Z\" fill=\"url(#idss9041157928_1g360397257)\"></path></g></svg>',svgContentId:9041157928}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fsf0jn\",\"data-framer-name\":\"Component 1 \u2013 14\",opacity:1,radius:54,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 200 66\"><g><defs><linearGradient id=\"idss451223336_1g360397257\" x1=\"0.49720229968894514\" x2=\"0.5027977003110549\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 15.258 0.087 C 6.831 0.087 0 14.638 0 32.587 C 0 50.536 6.831 65.087 15.258 65.087 L 184.742 65.087 C 193.169 65.087 200 50.536 200 32.587 C 200 14.638 193.169 0.087 184.742 0.087 Z\" fill=\"url(#idss451223336_1g360397257)\"></path></g></svg>',svgContentId:451223336,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SIGN UP\"})}),className:\"framer-1ocu6h9\",\"data-framer-name\":\"Sign up\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{svgContentId:10328165302}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nbuekk\",\"data-framer-name\":\"np_arrow-right_888647_000000\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 17\"><path d=\"M 0 6.9 L 18.411 6.9 L 18.411 9.274 L 0 9.274 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 13.308 16.043 L 11.644 14.38 L 17.944 8.082 L 11.644 1.785 L 13.308 0.132 L 21.266 8.087 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:1738230710,withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(Link,{href:\"https://cdn.jotfor.ms/form/230947616598067\",motionChild:true,nodeId:\"Zbrv_Q1jx\",scopeId:\"O5xyKp5ZC\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-hgr560 framer-xblc03\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 200 66\"><g><defs><linearGradient id=\"idss11812054396_1g360397257\" x1=\"0.49720229968894514\" x2=\"0.5027977003110549\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 15.258 0.087 C 6.831 0.087 0 14.638 0 32.587 C 0 50.536 6.831 65.087 15.258 65.087 L 184.742 65.087 C 193.169 65.087 200 50.536 200 32.587 C 200 14.638 193.169 0.087 184.742 0.087 Z\" fill=\"url(#idss11812054396_1g360397257)\"></path></g></svg>',svgContentId:11812054396},X3RqGVxVy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 200 66\"><g><defs><linearGradient id=\"idss11812054396_1g360397257\" x1=\"0.49720229968894514\" x2=\"0.5027977003110549\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 15.258 0.087 C 6.831 0.087 0 14.638 0 32.587 C 0 50.536 6.831 65.087 15.258 65.087 L 184.742 65.087 C 193.169 65.087 200 50.536 200 32.587 C 200 14.638 193.169 0.087 184.742 0.087 Z\" fill=\"url(#idss11812054396_1g360397257)\"></path></g></svg>',svgContentId:11812054396}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-rj3ev8\",\"data-framer-name\":\"Component 1 \u2013 14\",opacity:1,radius:54,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 200 66\"><g><defs><linearGradient id=\"idss3222119804_1g360397257\" x1=\"0.49720229968894514\" x2=\"0.5027977003110549\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 15.258 0.087 C 6.831 0.087 0 14.638 0 32.587 C 0 50.536 6.831 65.087 15.258 65.087 L 184.742 65.087 C 193.169 65.087 200 50.536 200 32.587 C 200 14.638 193.169 0.087 184.742 0.087 Z\" fill=\"url(#idss3222119804_1g360397257)\"></path></g></svg>',svgContentId:3222119804,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SIGN UP\"})}),className:\"framer-2nw7aj\",\"data-framer-name\":\"Sign up\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{svgContentId:10328165302},X3RqGVxVy:{svgContentId:10328165302}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vjka62\",\"data-framer-name\":\"np_arrow-right_888647_000000\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 17\"><path d=\"M 0 6.9 L 18.411 6.9 L 18.411 9.274 L 0 9.274 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 13.308 16.043 L 11.644 14.38 L 17.944 8.082 L 11.644 1.785 L 13.308 0.132 L 21.266 8.087 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:1738230710,withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:159,intrinsicWidth:460,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+5075+84+202-101),pixelHeight:159,pixelWidth:460,src:\"https://framerusercontent.com/images/KoF3cIUo5D2smLootZ9gVGkuLc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:159,intrinsicWidth:460,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+4235+84+202-101),pixelHeight:159,pixelWidth:460,src:\"https://framerusercontent.com/images/KoF3cIUo5D2smLootZ9gVGkuLc.png\"},className:\"framer-3nq5zo\",\"data-framer-name\":\"Logo_Refresh_GIT_2023_CE_3720_v3\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTMwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"right\"},children:\"Contact us today (912) 304 3024 | info@goldenislestennis.com\"})}),className:\"framer-1bmjiqi\",\"data-framer-name\":\"Contact us today (912) 304 3024  |  info@goldenislestennis.com\",fonts:[\"GF;Barlow-300\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-spkmu2 hidden-pxna3x\",\"data-framer-name\":\"FOOTER\",children:isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h325pi hidden-cbmjsa\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nfwqzc\",\"data-framer-name\":\"Line 21\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:1203,svg:'<svg width=\"1203\" height=\"4\" viewBox=\"-1 -1 1203 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.5 1.0835H1200.5\" stroke=\"#CECECE\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R290aGFtLTMwMA==\",\"--framer-font-family\":'\"Gotham\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xa9 Copyright 2012 -\\xa02023\\xa0| Golden Isles Tennis | All Rights Reserved\"})}),className:\"framer-7ydnxs\",\"data-framer-name\":\"\\xa9 Copyright 2012 -\\xa02023\\xa0| Golden Isles Tennis | All Rights Reserved\",fonts:[\"GF;Gotham-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ElTlViyKX\"},motionChild:true,nodeId:\"Obl4__UrT\",openInNewTab:false,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"ADULTS\"})})})}),className:\"framer-a2ahxq\",\"data-framer-name\":\"ADULTS\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oeIcltxv8\"},motionChild:true,nodeId:\"yPhlchezT\",openInNewTab:false,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"JUNIORS\"})})})}),className:\"framer-10ogno0\",\"data-framer-name\":\"JUNIORS\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tfTcjGWKT\"},motionChild:true,nodeId:\"DNj2nqXAH\",openInNewTab:false,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"NEW TO TENNIS\"})})})}),className:\"framer-f3rjpo\",\"data-framer-name\":\"NEW TO TENNIS\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":BtfINlDoS\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"BbUCznP_O\",openInNewTab:false,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"WHERE TO PLAY\"})})})}),className:\"framer-q0fv7v\",\"data-framer-name\":\"WHERE TO PLAY\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xWiPog3dk\"},motionChild:true,nodeId:\"aeQfU6YDy\",openInNewTab:false,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"NEWS\"})})})}),className:\"framer-1ymgai5\",\"data-framer-name\":\"NEWS\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QVKkb0w8H\"},motionChild:true,nodeId:\"aWu0FlGpo\",openInNewTab:false,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"ABOUT\"})})})}),className:\"framer-64tuij\",\"data-framer-name\":\"ABOUT\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pj5hxy-container hidden-pxna3x\",\"data-framer-name\":\"last\",name:\"last\",nodeId:\"kjYPkdG80\",scopeId:\"O5xyKp5ZC\",children:/*#__PURE__*/_jsx(NavbarDark,{height:\"100%\",id:\"kjYPkdG80\",layoutId:\"kjYPkdG80\",name:\"last\",style:{width:\"100%\"},variant:\"y7GKiQUMd\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ql0pi hidden-cbmjsa hidden-pxna3x\",\"data-framer-name\":\"Learn to play\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1jiqsbs\",\"data-framer-name\":\"Rectangle 68\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:251,intrinsicWidth:1941,svg:'<svg width=\"1941\" height=\"251\" viewBox=\"0 0 1941 251\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1941 0.14978H0V250.037H1941V0.14978Z\" fill=\"#EFEFEF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1glkeye\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+1336+32.5+250),pixelHeight:533,pixelWidth:800,sizes:\"375px\",src:\"https://framerusercontent.com/images/Wl5jkVcQRzui6nNxxtP0eCjZ48Y.jpg\",srcSet:\"https://framerusercontent.com/images/Wl5jkVcQRzui6nNxxtP0eCjZ48Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Wl5jkVcQRzui6nNxxtP0eCjZ48Y.jpg 800w\"},className:\"framer-mchghu\",\"data-framer-name\":\"Component 1 \u2013 10\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b5az37\",\"data-framer-name\":\"Component 1 \u2013 13\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:188,intrinsicWidth:375,svg:'<svg width=\"375\" height=\"188\" viewBox=\"0 0 375 188\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 10.2066L0 177.131C0 182.652 4.47715 187.127 10 187.127L365 187.127C370.523 187.127 375 182.652 375 177.131V10.2066C375 4.68625 370.523 0.211121 365 0.211121L10 0.211121C4.47715 0.211121 0 4.68625 0 10.2066Z\" fill=\"url(#paint0_linear_5_116)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_116\" x1=\"223.125\" y1=\"213.856\" x2=\"223.498\" y2=\"11.0502\" gradientUnits=\"userSpaceOnUse\">\\n<stop/>\\n<stop offset=\"1\" stop-color=\"#086090\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-68w6cy\",\"data-framer-name\":\"Learn to play with \\nTENNIS APPRENTICE\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\"},children:[\"LEARN TO PLAY WITH \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"TENNIS APPRENTICE\"}),\" \"]})}),className:\"framer-8iym2y\",\"data-framer-name\":\"LEARN TO PLAY WITH\",fonts:[\"GF;Barlow-500\",\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\"},children:\"It\u2019s never too late \u2026 or too soon to start playing tennis! Yes it's healthy and YES it's fun. But joining Golden Isles Tennis community is so much more!\\xa0 \"})}),className:\"framer-9d3o4o\",\"data-framer-name\":\"It\u2019s never too late \u2026 or too soon to start playing tennis!\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5e3i2e\",\"data-framer-name\":\"Rectangle 72\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 88 89\"><g><defs><linearGradient id=\"idss1000611552_1g360397181\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 78 0.292 L 10 0.292 C 4.477 0.292 0 4.767 0 10.287 L 0 78.257 C 0 83.777 4.477 88.252 10 88.252 L 78 88.252 C 83.523 88.252 88 83.777 88 78.257 L 88 10.287 C 88 4.767 83.523 0.292 78 0.292 Z\" fill=\"url(#idss1000611552_1g360397181)\"></path></g><g><defs><linearGradient id=\"idss1000611552_2g92278\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"#f8d010\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"#f8b011\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 0 10 C 0 4.477 4.477 0 10 0 L 78 0 C 83.523 0 88 4.477 88 10 L 88 79 C 88 84.523 83.523 89 78 89 L 10 89 C 4.477 89 0 84.523 0 79 Z\" fill=\"url(#idss1000611552_2g92278)\"></path></g></svg>',svgContentId:1000611552,withExternalLayout:true}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1333,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+1336+32.5+250),pixelHeight:1333,pixelWidth:2e3,sizes:\"375px\",src:\"https://framerusercontent.com/images/msEoyDsIpXgfokNMsY4ALDb70.jpg\",srcSet:\"https://framerusercontent.com/images/msEoyDsIpXgfokNMsY4ALDb70.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/msEoyDsIpXgfokNMsY4ALDb70.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/msEoyDsIpXgfokNMsY4ALDb70.jpg 2000w\"},className:\"framer-1tla9gf\",\"data-framer-name\":\"Component 1 \u2013 8\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+1336+32.5+250),pixelHeight:533,pixelWidth:800,src:\"https://framerusercontent.com/images/XGgbFxXMkvXWcTRK3tz74OCZgMY.jpg\"},className:\"framer-1bx7jse\",\"data-framer-name\":\"Component 1 \u2013 9\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r6w546\",\"data-framer-name\":\"Component 1 \u2013 11\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:188,intrinsicWidth:375,svg:'<svg width=\"375\" height=\"188\" viewBox=\"0 0 375 188\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 10.2066L0 177.131C0 182.652 4.47715 187.127 10 187.127L365 187.127C370.523 187.127 375 182.652 375 177.131V10.2066C375 4.68625 370.523 0.211121 365 0.211121L10 0.211121C4.47715 0.211121 0 4.68625 0 10.2066Z\" fill=\"url(#paint0_linear_5_112)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_112\" x1=\"223.125\" y1=\"213.856\" x2=\"223.498\" y2=\"11.0502\" gradientUnits=\"userSpaceOnUse\">\\n<stop/>\\n<stop offset=\"1\" stop-color=\"#086090\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jkg0ps\",\"data-framer-name\":\"Component 1 \u2013 12\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:188,intrinsicWidth:375,svg:'<svg width=\"375\" height=\"188\" viewBox=\"0 0 375 188\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 10.2066L0 177.131C0 182.652 4.47715 187.127 10 187.127L365 187.127C370.523 187.127 375 182.652 375 177.131V10.2066C375 4.68625 370.523 0.211121 365 0.211121L10 0.211121C4.47715 0.211121 0 4.68625 0 10.2066Z\" fill=\"url(#paint0_linear_5_114)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_114\" x1=\"223.125\" y1=\"213.856\" x2=\"223.498\" y2=\"11.0502\" gradientUnits=\"userSpaceOnUse\">\\n<stop/>\\n<stop offset=\"1\" stop-color=\"#086090\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"A healthy lifestyle\"})}),className:\"framer-1y3dv44\",\"data-framer-name\":\"Improve your health\",fonts:[\"GF;Barlow-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Lifelong Connections\"})}),className:\"framer-q6zy0y\",\"data-framer-name\":\"Make lifelong connections\",fonts:[\"GF;Barlow-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Good, Fun, Competition!\"})}),className:\"framer-1cyws6q\",\"data-framer-name\":\"Have good, fun, COMPETITION!\",fonts:[\"GF;Barlow-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-154ohna\",\"data-framer-name\":\"np_tennis_774476_000000\",fill:\"black\",intrinsicHeight:133,intrinsicWidth:133,svg:'<svg width=\"100pt\" height=\"100pt\" viewBox=\"0 0 100 100\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m76.289 65.484-1.29 1.29c-5.804-5-9.675-11.13-11.933-18.712 3.387-10.969-.645-25-11.29-35.645C45.16 5.804 36.774 1.452 28.387.323 19.839-.806 12.096 1.452 6.933 6.776-4.032 17.741-1.454 37.901 12.58 51.772 20.648 59.84 30.968 64.19 40.163 64.19c2.743 0 5.485-.324 7.903-1.129 7.582 2.258 13.71 6.13 18.71 11.934l-1.288 1.29L89.034 99.83 99.84 89.026zm-24.516-7.582-4.516-4.516 6.29-6.289 4.515 4.516c-.805 1.289-1.613 2.418-2.742 3.547-1.125 1.129-2.418 2.098-3.547 2.742zm-47.258-30 6.29-6.29 6.288 6.29-6.289 6.29zm4.031 8.55-1.773 1.774c-.969-1.933-1.613-3.87-2.258-5.805zm-5.16-11.937c0-3.067.484-6.13 1.453-8.871l3.707 3.71zm56.453 11.938-6.29 6.289-6.288-6.29 6.289-6.288zm-4.035-8.551 1.773-1.773c.969 1.933 1.614 3.87 2.258 5.804zm5.164 11.938c0 3.066-.484 6.129-1.453 8.871l-3.711-3.71zm-15.97-5.645-6.288-6.293 6.289-6.289 6.289 6.29zm-8.546-4.035 6.29 6.29-6.29 6.288-6.29-6.289zm-8.55 4.035-6.29-6.289 6.29-6.289 6.288 6.29zm8.55-8.55-6.293-6.29 6.29-6.289 6.288 6.29zm2.258-14.84 2.418-2.418c2.582 1.453 4.84 3.226 7.098 5.324l-3.387 3.387zm-2.258-2.258-4.031-4.031c1.933.484 3.87 1.289 5.805 2.257zm-2.258 2.258-6.289 6.289-6.289-6.29 6.29-6.288zm-8.55 8.55-6.29 6.29-6.289-6.29 6.29-6.289zm-6.29 10.805 6.29 6.29-6.29 6.293-6.289-6.29zm8.547 8.551 6.29 6.29-6.29 6.288L21.612 45zm-2.258 14.836-2.418 2.418a42.998 42.998 0 0 1-7.097-5.324l3.386-3.387zm2.258 2.258 4.031 4.031c-1.933-.484-3.87-1.289-5.804-2.258zm8.551 4.035-6.29-6.289 6.29-6.289 6.29 6.29zM38.71 45l6.289-6.289 6.289 6.29-6.29 6.288zm17.258-21.934-2.418 2.418-6.293-6.129 3.387-3.386a42.826 42.826 0 0 1 5.324 7.097zM24.515 3.386l-5.16 5.16-3.711-3.707c2.582-.968 5.484-1.613 8.386-1.613.325.16.325.16.485.16zM9.195 9.031c.965-.965 2.094-1.934 3.386-2.578l4.516 4.515-6.289 6.29-4.356-4.676c.645-1.13 1.614-2.422 2.743-3.551zm-.809 32.098 2.418-2.418L17.094 45l-3.383 3.387a38.088 38.088 0 0 1-5.325-7.258zm31.453 19.84 5.16-5.16 3.711 3.71c-2.742.965-5.808 1.45-8.87 1.45zm12.742.16c1.774-.969 3.387-2.258 5-3.71 1.453-1.454 2.742-3.067 3.711-5 2.418 6.452 6.29 11.933 11.453 16.452l-3.547 3.547c-4.683-5-10.168-8.707-16.617-11.289zM70 76.289l6.29-6.29 19.03 19.032-6.289 6.289zM11.289 64.676c-6.29 0-11.289 5-11.289 11.289 0 6.29 5 11.289 11.289 11.289 6.29 0 11.289-5 11.289-11.289.004-6.29-4.996-11.289-11.289-11.289zm0 19.355c-4.516 0-8.066-3.547-8.066-8.066 0-4.516 3.546-8.067 8.066-8.067 4.516 0 8.066 3.547 8.066 8.067s-3.55 8.066-8.066 8.066z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gtkidl\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zgb6k9\",\"data-framer-name\":\"Group 28\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://cdn.jotfor.ms/form/230794767747070\",motionChild:true,nodeId:\"O7HpO842S\",scopeId:\"O5xyKp5ZC\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-13ugkvh framer-xblc03\",\"data-framer-name\":\"Component 1 \u2013 14\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:66,intrinsicWidth:426,svg:'<svg width=\"426\" height=\"66\" viewBox=\"0 0 426 66\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M32.5 0.101761C14.5507 0.101761 0 14.646 0 32.5871C0 50.5283 14.5507 65.0725 32.5 65.0725L393.5 65.0725C411.449 65.0725 426 50.5283 426 32.5871C426 14.646 411.449 0.101761 393.5 0.101761L32.5 0.101761Z\" fill=\"url(#paint0_linear_5_121)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_121\" x1=\"253.47\" y1=\"74.3633\" x2=\"253.51\" y2=\"3.86913\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#053D5D\"/>\\n<stop offset=\"1\" stop-color=\"#086090\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://cdn.jotfor.ms/form/230794767747070\",motionChild:true,nodeId:\"I076QQZK7\",openInNewTab:true,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"START YOUR TENNIS JOURNEY NOW\"})})})}),className:\"framer-673oje\",\"data-framer-name\":\"Start your tennis journey now\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mh61wf\",\"data-framer-name\":\"np_arrow-right_888647_000000\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 17\"><path d=\"M 0 6.9 L 18.411 6.9 L 18.411 9.274 L 0 9.274 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 13.308 16.043 L 11.644 14.38 L 17.944 8.082 L 11.644 1.785 L 13.308 0.132 L 21.266 8.087 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:1738230710,withExternalLayout:true})]})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rq5mdu hidden-166anki\",\"data-framer-name\":\"Leagues\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sg2kjv\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"30px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\"},children:\"YOUTH LEAGUES\"})})}),className:\"framer-18mgrou hidden-pxna3x\",\"data-framer-name\":\"Youth Leagues\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 808 600\"><path d=\"M 14 9.956 L 14 567.913 C 14 573.171 19.907 577.435 27.193 577.435 L 781.807 577.435 C 789.094 577.435 795 573.171 795 567.913 L 795 9.956 C 795 4.697 789.094 0.435 781.807 0.435 L 27.193 0.435 C 19.907 0.435 14 4.697 14 9.956 Z\" fill=\"#efefef\"></path></svg>',svgContentId:9055959328},X3RqGVxVy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 824 612\"><path d=\"M 186.171 33.401 L 186.171 597.16 C 186.171 602.473 188.924 606.781 192.32 606.781 L 544.023 606.781 C 547.419 606.781 550.171 602.473 550.171 597.16 L 550.171 33.401 C 550.171 28.088 547.419 23.781 544.023 23.781 L 192.32 23.781 C 188.924 23.781 186.171 28.088 186.171 33.401 Z\" fill=\"#efefef\"></path></svg>',svgContentId:9834870423}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16dxb5y\",\"data-framer-name\":\"Component 1 \u2013 1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 808 600\"><path d=\"M 0 10.055 L 0 573.814 C 0 579.127 6.096 583.435 13.615 583.435 L 792.385 583.435 C 799.905 583.435 806 579.127 806 573.814 L 806 10.055 C 806 4.742 799.905 0.435 792.385 0.435 L 13.615 0.435 C 6.096 0.435 0 4.742 0 10.055 Z\" fill=\"#efefef\"></path></svg>',svgContentId:3809715813,withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\"},children:\"To learn more about our Golden Isles Tennis Youth Leagues, click on the link below\"})}),className:\"framer-t97ibw hidden-166anki hidden-cbmjsa\",\"data-framer-name\":\"If you are interested in learning more or signing up for an upcoming\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\"},children:\"YOUTH LEAGUES\"})}),className:\"framer-lnjg29\",\"data-framer-name\":\"Adult Leagues\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\"},children:\"LEAGUES PLAYING NOW\"})}),className:\"framer-1uzuyis\",\"data-framer-name\":\"Leagues Playing Now\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(16, 15, 56)\"},children:\"Spring/Summer Complete\"})})},X3RqGVxVy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\"},children:\"Fall/Winter League\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\"},children:\"Summer League\"})}),className:\"framer-12xmb1i\",\"data-framer-name\":\"SOUTHERN COMBO\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-be09lb\",\"data-framer-name\":\"np_tennis_1708867_000000\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.875 28.3981C17.0854 28.3982 20.1964 27.2857 22.6781 25.2501C25.1598 23.2145 26.8586 20.3818 27.485 17.2346C28.1113 14.0874 27.6266 10.8204 26.1133 7.99043C24.6001 5.16042 22.1519 2.94244 19.1859 1.71441C16.22 0.486391 12.9198 0.324306 9.84773 1.25578C6.77564 2.18725 4.12171 4.15465 2.33816 6.82274C0.554608 9.49083 -0.248215 12.6945 0.0664872 15.888C0.381189 19.0814 1.79394 22.0669 4.06403 24.3359C5.35229 25.6239 6.88181 26.6456 8.56522 27.3426C10.2486 28.0396 12.0529 28.3983 13.875 28.3981ZM25.9 14.5293C25.904 16.1474 25.5779 17.7494 24.9418 19.2373C24.3056 20.7252 23.3727 22.0679 22.2 23.1834C21.0279 22.067 20.0947 20.7244 19.4571 19.2368C18.8194 17.7492 18.4907 16.1477 18.4907 14.5293C18.4907 12.911 18.8194 11.3095 19.4571 9.82188C20.0947 8.33429 21.0279 6.99161 22.2 5.87522C23.3733 6.99029 24.3065 8.33292 24.9427 9.82095C25.5789 11.309 25.9047 12.9111 25.9 14.5293ZM20.766 4.69176C19.4629 5.97764 18.4282 7.5094 17.722 9.19814C17.0158 10.8869 16.6522 12.699 16.6522 14.5293C16.6522 16.3597 17.0158 18.1718 17.722 19.8605C18.4282 21.5493 19.4629 23.081 20.766 24.3669C18.7489 25.7868 16.3421 26.5489 13.875 26.5489C11.4079 26.5489 9.00113 25.7868 6.98403 24.3669C8.28788 23.0814 9.32321 21.5498 10.0299 19.861C10.7365 18.1722 11.1004 16.3599 11.1004 14.5293C11.1004 12.6988 10.7365 10.8865 10.0299 9.19765C9.32321 7.50885 8.28788 5.97723 6.98403 4.69176C9.00113 3.27188 11.4079 2.50979 13.875 2.50979C16.3421 2.50979 18.7489 3.27188 20.766 4.69176ZM5.55003 5.87522C6.71953 6.99317 7.65031 8.33635 8.28622 9.82373C8.92212 11.3111 9.24997 12.9118 9.24997 14.5293C9.24997 16.1468 8.92212 17.7476 8.28622 19.2349C7.65031 20.7223 6.71953 22.0655 5.55003 23.1834C4.3861 22.0623 3.46028 20.718 2.82791 19.2311C2.19555 17.7442 1.86963 16.145 1.86963 14.5293C1.86963 12.9136 2.19555 11.3145 2.82791 9.82755C3.46028 8.34061 4.3861 6.99638 5.55003 5.87522Z\" fill=\"url(#paint0_linear_5_58)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_58\" x1=\"13.8757\" y1=\"0.658569\" x2=\"13.8757\" y2=\"28.3981\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F1D954\"/>\\n<stop offset=\"0.207\" stop-color=\"#F1CE44\"/>\\n<stop offset=\"1\" stop-color=\"#EFA505\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\"},children:\"LEAGUES STARTING SOON\"})}),className:\"framer-1742y0q\",\"data-framer-name\":\"Leagues Starting Soon\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\"},children:\"Fall/WinterLeague\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\"},children:\"Fall League\"})}),className:\"framer-l8dc3y\",\"data-framer-name\":\"Tri-LEVEL\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1l7813n hidden-166anki hidden-cbmjsa\",\"data-framer-name\":\"Line 25\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:481,svg:'<svg width=\"481\" height=\"4\" viewBox=\"-1 -1 481 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0.551758H479\" stroke=\"#100F38\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1norigj\",\"data-framer-name\":\"Line 25\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:481,svg:'<svg width=\"481\" height=\"4\" viewBox=\"-1 -1 481 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0.551758H479\" stroke=\"#100F38\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12twxlp\",\"data-framer-name\":\"Line 25\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:481,svg:'<svg width=\"481\" height=\"4\" viewBox=\"-1 -1 481 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0.551758H479\" stroke=\"#100F38\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-n8vdei hidden-pxna3x\",\"data-framer-name\":\"Line 25\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:481,svg:'<svg width=\"481\" height=\"4\" viewBox=\"-1 -1 481 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0.551758H479\" stroke=\"#100F38\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1u7hmpe\",\"data-framer-name\":\"np_tennis_1708867_000000\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.875 28.4807C17.0854 28.4809 20.1964 27.3684 22.6781 25.3328C25.1598 23.2972 26.8586 20.4644 27.485 17.3172C28.1113 14.17 27.6266 10.9031 26.1133 8.07307C24.6001 5.24306 22.1519 3.02508 19.1859 1.79706C16.22 0.569033 12.9198 0.406948 9.84773 1.33842C6.77564 2.26989 4.12171 4.23729 2.33816 6.90538C0.554608 9.57347 -0.248215 12.7772 0.0664872 15.9706C0.381189 19.164 1.79394 22.1496 4.06403 24.4186C5.35229 25.7066 6.88181 26.7283 8.56522 27.4253C10.2486 28.1223 12.0529 28.4809 13.875 28.4807ZM25.9 14.612C25.904 16.2301 25.5779 17.832 24.9418 19.3199C24.3056 20.8079 23.3727 22.1506 22.2 23.2661C21.0279 22.1497 20.0947 20.807 19.4571 19.3194C18.8194 17.8318 18.4907 16.2303 18.4907 14.612C18.4907 12.9936 18.8194 11.3921 19.4571 9.90452C20.0947 8.41693 21.0279 7.07426 22.2 5.95787C23.3733 7.07293 24.3065 8.41556 24.9427 9.90359C25.5789 11.3916 25.9047 12.9938 25.9 14.612ZM20.766 4.7744C19.4629 6.06029 18.4282 7.59204 17.722 9.28078C17.0158 10.9695 16.6522 12.7816 16.6522 14.612C16.6522 16.4423 17.0158 18.2544 17.722 19.9432C18.4282 21.6319 19.4629 23.1637 20.766 24.4495C18.7489 25.8694 16.3421 26.6315 13.875 26.6315C11.4079 26.6315 9.00113 25.8694 6.98403 24.4495C8.28788 23.1641 9.32321 21.6324 10.0299 19.9436C10.7365 18.2548 11.1004 16.4425 11.1004 14.612C11.1004 12.7814 10.7365 10.9691 10.0299 9.28029C9.32321 7.59149 8.28788 6.05987 6.98403 4.7744C9.00113 3.35452 11.4079 2.59243 13.875 2.59243C16.3421 2.59243 18.7489 3.35452 20.766 4.7744ZM5.55003 5.95787C6.71953 7.07581 7.65031 8.41899 8.28622 9.90637C8.92212 11.3937 9.24997 12.9945 9.24997 14.612C9.24997 16.2295 8.92212 17.8302 8.28622 19.3176C7.65031 20.8049 6.71953 22.1481 5.55003 23.2661C4.3861 22.1449 3.46028 20.8007 2.82791 19.3137C2.19555 17.8268 1.86963 16.2277 1.86963 14.612C1.86963 12.9963 2.19555 11.3971 2.82791 9.9102C3.46028 8.42326 4.3861 7.07903 5.55003 5.95787Z\" fill=\"url(#paint0_linear_5_61)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_61\" x1=\"13.8757\" y1=\"0.741211\" x2=\"13.8757\" y2=\"28.4807\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F1D954\"/>\\n<stop offset=\"0.207\" stop-color=\"#F1CE44\"/>\\n<stop offset=\"1\" stop-color=\"#EFA505\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-rhuqmd hidden-pxna3x\",\"data-framer-name\":\"Registration Opens: XX/XX/23\\xa0\\nRegistration Closes: XX/XX/23\\nPlay: Week of XX/XX/23 to XX/XX/23\"}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ovqpp8 hidden-cbmjsa\",\"data-framer-name\":\"Line 23\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:482,svg:'<svg width=\"482\" height=\"4\" viewBox=\"-1 -1 482 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.237\" d=\"M0.5 0.634399H479.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-hldvsw hidden-cbmjsa\",\"data-framer-name\":\"Line 24\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:482,svg:'<svg width=\"482\" height=\"4\" viewBox=\"-1 -1 482 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.237\" d=\"M0.5 1.30664H479.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lakbol\",\"data-framer-name\":\"If you are interested in learning more or signing up for an upcoming league, click on the link below to complete and submit the form. When registration opens, we will send you more information.\",children:isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\"},children:\"To learn more about our Golden Isles Tennis Youth Leagues, click on the link below\"})}),className:\"framer-e50oi hidden-pxna3x\",\"data-framer-name\":\"If you are interested in learning more or signing up for an upcoming\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dm2bet\",\"data-framer-name\":\"Group 22\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{svgContentId:12497704563}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1h8ztts hidden-pxna3x\",\"data-framer-name\":\"np_arrow-right_888647_000000\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 17\"><path d=\"M 0 7.185 L 18.411 7.185 L 18.411 9.559 L 0 9.559 Z\" fill=\"hsl(0, 0%, 0%)\"></path><path d=\"M 13.308 16.328 L 11.644 14.665 L 17.944 8.368 L 11.644 2.07 L 13.308 0.417 L 21.266 8.373 Z\" fill=\"hsl(0, 0%, 0%)\"></path></svg>',svgContentId:3907769971,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://cdn.jotfor.ms/form/230794515781059\",motionChild:true,nodeId:\"RwdF3O2Y9\",openInNewTab:true,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"LEARN MORE\"})})})})},X3RqGVxVy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://cdn.jotfor.ms/form/230794515781059\",motionChild:true,nodeId:\"RwdF3O2Y9\",openInNewTab:true,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"LEARN MORE\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\"},children:\"REGISTER\"})}),className:\"framer-1o8q73\",\"data-framer-name\":\"REGISTER\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgba(16, 15, 56, 1)\"},children:\"Summer League\"})})}),className:\"framer-aq1mgs\",\"data-framer-name\":\"SUMMER LEAGUE\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{X3RqGVxVy:{svgContentId:9695388980}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hdu52a hidden-166anki hidden-cbmjsa\",\"data-framer-name\":\"np_arrow-right_888647_000000\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 17\"><path d=\"M 0 7.185 L 18.411 7.185 L 18.411 9.559 L 0 9.559 Z\" fill=\"hsl(0, 0%, 0%)\"></path><path d=\"M 13.308 16.328 L 11.644 14.665 L 17.944 8.368 L 11.644 2.07 L 13.308 0.417 L 21.266 8.373 Z\" fill=\"hsl(0, 0%, 0%)\"></path></svg>',svgContentId:914214234,withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-h19blv\",\"data-framer-name\":\"np_tennis_1708867_000000\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:29,svg:'<svg width=\"29\" height=\"29\" viewBox=\"0 0 29 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.375 28.3981C17.5854 28.3982 20.6964 27.2857 23.1781 25.2501C25.6598 23.2145 27.3586 20.3818 27.985 17.2346C28.6113 14.0874 28.1266 10.8204 26.6133 7.99043C25.1001 5.16042 22.6519 2.94244 19.6859 1.71441C16.72 0.486391 13.4198 0.324306 10.3477 1.25578C7.27564 2.18725 4.62171 4.15465 2.83816 6.82274C1.05461 9.49083 0.251785 12.6945 0.566487 15.888C0.881189 19.0814 2.29394 22.0669 4.56403 24.3359C5.85229 25.6239 7.38181 26.6456 9.06522 27.3426C10.7486 28.0396 12.5529 28.3983 14.375 28.3981ZM26.4 14.5293C26.404 16.1474 26.0779 17.7494 25.4418 19.2373C24.8056 20.7252 23.8727 22.0679 22.7 23.1834C21.5279 22.067 20.5947 20.7244 19.9571 19.2368C19.3194 17.7492 18.9907 16.1477 18.9907 14.5293C18.9907 12.911 19.3194 11.3095 19.9571 9.82188C20.5947 8.33429 21.5279 6.99161 22.7 5.87522C23.8733 6.99029 24.8065 8.33292 25.4427 9.82095C26.0789 11.309 26.4047 12.9111 26.4 14.5293ZM21.266 4.69176C19.9629 5.97764 18.9282 7.5094 18.222 9.19814C17.5158 10.8869 17.1522 12.699 17.1522 14.5293C17.1522 16.3597 17.5158 18.1718 18.222 19.8605C18.9282 21.5493 19.9629 23.081 21.266 24.3669C19.2489 25.7868 16.8421 26.5489 14.375 26.5489C11.9079 26.5489 9.50113 25.7868 7.48403 24.3669C8.78788 23.0814 9.82321 21.5498 10.5299 19.861C11.2365 18.1722 11.6004 16.3599 11.6004 14.5293C11.6004 12.6988 11.2365 10.8865 10.5299 9.19765C9.82321 7.50885 8.78788 5.97723 7.48403 4.69176C9.50113 3.27188 11.9079 2.50979 14.375 2.50979C16.8421 2.50979 19.2489 3.27188 21.266 4.69176ZM6.05003 5.87522C7.21953 6.99317 8.15031 8.33635 8.78622 9.82373C9.42212 11.3111 9.74997 12.9118 9.74997 14.5293C9.74997 16.1468 9.42212 17.7476 8.78622 19.2349C8.15031 20.7223 7.21953 22.0655 6.05003 23.1834C4.8861 22.0623 3.96028 20.718 3.32791 19.2311C2.69555 17.7442 2.36963 16.145 2.36963 14.5293C2.36963 12.9136 2.69555 11.3145 3.32791 9.82755C3.96028 8.34061 4.8861 6.99638 6.05003 5.87522Z\" fill=\"url(#paint0_linear_5_80)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_80\" x1=\"14.3757\" y1=\"0.658569\" x2=\"14.3757\" y2=\"28.3981\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F1D954\"/>\\n<stop offset=\"0.207\" stop-color=\"#F1CE44\"/>\\n<stop offset=\"1\" stop-color=\"#EFA505\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgba(16, 15, 56, 1)\"},children:\"Fall League \"})})}),className:\"framer-1ard8ca\",\"data-framer-name\":\"FALL LEAGUE\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7tet9m\",\"data-framer-name\":\"np_tennis_1708867_000000\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:29,svg:'<svg width=\"29\" height=\"29\" viewBox=\"0 0 29 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.375 28.4807C17.5854 28.4809 20.6964 27.3684 23.1781 25.3328C25.6598 23.2972 27.3586 20.4644 27.985 17.3172C28.6113 14.17 28.1266 10.9031 26.6133 8.07307C25.1001 5.24306 22.6519 3.02508 19.6859 1.79706C16.72 0.569033 13.4198 0.406948 10.3477 1.33842C7.27564 2.26989 4.62171 4.23729 2.83816 6.90538C1.05461 9.57347 0.251785 12.7772 0.566487 15.9706C0.881189 19.164 2.29394 22.1496 4.56403 24.4186C5.85229 25.7066 7.38181 26.7283 9.06522 27.4253C10.7486 28.1223 12.5529 28.4809 14.375 28.4807ZM26.4 14.612C26.404 16.2301 26.0779 17.832 25.4418 19.3199C24.8056 20.8079 23.8727 22.1506 22.7 23.2661C21.5279 22.1497 20.5947 20.807 19.9571 19.3194C19.3194 17.8318 18.9907 16.2303 18.9907 14.612C18.9907 12.9936 19.3194 11.3921 19.9571 9.90452C20.5947 8.41693 21.5279 7.07426 22.7 5.95787C23.8733 7.07293 24.8065 8.41556 25.4427 9.90359C26.0789 11.3916 26.4047 12.9938 26.4 14.612ZM21.266 4.7744C19.9629 6.06029 18.9282 7.59204 18.222 9.28078C17.5158 10.9695 17.1522 12.7816 17.1522 14.612C17.1522 16.4423 17.5158 18.2544 18.222 19.9432C18.9282 21.6319 19.9629 23.1637 21.266 24.4495C19.2489 25.8694 16.8421 26.6315 14.375 26.6315C11.9079 26.6315 9.50113 25.8694 7.48403 24.4495C8.78788 23.1641 9.82321 21.6324 10.5299 19.9436C11.2365 18.2548 11.6004 16.4425 11.6004 14.612C11.6004 12.7814 11.2365 10.9691 10.5299 9.28029C9.82321 7.59149 8.78788 6.05987 7.48403 4.7744C9.50113 3.35452 11.9079 2.59243 14.375 2.59243C16.8421 2.59243 19.2489 3.35452 21.266 4.7744ZM6.05003 5.95787C7.21953 7.07581 8.15031 8.41899 8.78622 9.90637C9.42212 11.3937 9.74997 12.9945 9.74997 14.612C9.74997 16.2295 9.42212 17.8302 8.78622 19.3176C8.15031 20.8049 7.21953 22.1481 6.05003 23.2661C4.8861 22.1449 3.96028 20.8007 3.32791 19.3137C2.69555 17.8268 2.36963 16.2277 2.36963 14.612C2.36963 12.9963 2.69555 11.3971 3.32791 9.9102C3.96028 8.42326 4.8861 7.07903 6.05003 5.95787Z\" fill=\"url(#paint0_linear_5_83)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_83\" x1=\"14.3757\" y1=\"0.741211\" x2=\"14.3757\" y2=\"28.4807\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F1D954\"/>\\n<stop offset=\"0.207\" stop-color=\"#F1CE44\"/>\\n<stop offset=\"1\" stop-color=\"#EFA505\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(16, 15, 56)\"},children:\"Spring/Summer Complete\"})}),className:\"framer-1qhjm0b hidden-166anki hidden-cbmjsa\",\"data-framer-name\":\"SOUTHERN COMBO\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-uh2m9r hidden-166anki hidden-cbmjsa\",\"data-framer-name\":\"np_tennis_1708867_000000\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.875 28.3981C17.0854 28.3982 20.1964 27.2857 22.6781 25.2501C25.1598 23.2145 26.8586 20.3818 27.485 17.2346C28.1113 14.0874 27.6266 10.8204 26.1133 7.99043C24.6001 5.16042 22.1519 2.94244 19.1859 1.71441C16.22 0.486391 12.9198 0.324306 9.84773 1.25578C6.77564 2.18725 4.12171 4.15465 2.33816 6.82274C0.554608 9.49083 -0.248215 12.6945 0.0664872 15.888C0.381189 19.0814 1.79394 22.0669 4.06403 24.3359C5.35229 25.6239 6.88181 26.6456 8.56522 27.3426C10.2486 28.0396 12.0529 28.3983 13.875 28.3981ZM25.9 14.5293C25.904 16.1474 25.5779 17.7494 24.9418 19.2373C24.3056 20.7252 23.3727 22.0679 22.2 23.1834C21.0279 22.067 20.0947 20.7244 19.4571 19.2368C18.8194 17.7492 18.4907 16.1477 18.4907 14.5293C18.4907 12.911 18.8194 11.3095 19.4571 9.82188C20.0947 8.33429 21.0279 6.99161 22.2 5.87522C23.3733 6.99029 24.3065 8.33292 24.9427 9.82095C25.5789 11.309 25.9047 12.9111 25.9 14.5293ZM20.766 4.69176C19.4629 5.97764 18.4282 7.5094 17.722 9.19814C17.0158 10.8869 16.6522 12.699 16.6522 14.5293C16.6522 16.3597 17.0158 18.1718 17.722 19.8605C18.4282 21.5493 19.4629 23.081 20.766 24.3669C18.7489 25.7868 16.3421 26.5489 13.875 26.5489C11.4079 26.5489 9.00113 25.7868 6.98403 24.3669C8.28788 23.0814 9.32321 21.5498 10.0299 19.861C10.7365 18.1722 11.1004 16.3599 11.1004 14.5293C11.1004 12.6988 10.7365 10.8865 10.0299 9.19765C9.32321 7.50885 8.28788 5.97723 6.98403 4.69176C9.00113 3.27188 11.4079 2.50979 13.875 2.50979C16.3421 2.50979 18.7489 3.27188 20.766 4.69176ZM5.55003 5.87522C6.71953 6.99317 7.65031 8.33635 8.28622 9.82373C8.92212 11.3111 9.24997 12.9118 9.24997 14.5293C9.24997 16.1468 8.92212 17.7476 8.28622 19.2349C7.65031 20.7223 6.71953 22.0655 5.55003 23.1834C4.3861 22.0623 3.46028 20.718 2.82791 19.2311C2.19555 17.7442 1.86963 16.145 1.86963 14.5293C1.86963 12.9136 2.19555 11.3145 2.82791 9.82755C3.46028 8.34061 4.3861 6.99638 5.55003 5.87522Z\" fill=\"url(#paint0_linear_5_58)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_58\" x1=\"13.8757\" y1=\"0.658569\" x2=\"13.8757\" y2=\"28.3981\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F1D954\"/>\\n<stop offset=\"0.207\" stop-color=\"#F1CE44\"/>\\n<stop offset=\"1\" stop-color=\"#EFA505\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dkil2q\",\"data-framer-name\":\"Gallery\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-1lv2fp4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a5ao5t\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iuz7tz\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:751,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2893+-13.2738+0+0+0+0+109),pixelHeight:751,pixelWidth:800,sizes:\"210.0031px\",src:\"https://framerusercontent.com/images/Ul0btOdCgflaYXc4QA6CS1s5E90.jpg\",srcSet:\"https://framerusercontent.com/images/Ul0btOdCgflaYXc4QA6CS1s5E90.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ul0btOdCgflaYXc4QA6CS1s5E90.jpg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:751,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2033+52+0+0+0+0+165),pixelHeight:751,pixelWidth:800,sizes:\"331.4286px\",src:\"https://framerusercontent.com/images/Ul0btOdCgflaYXc4QA6CS1s5E90.jpg\",srcSet:\"https://framerusercontent.com/images/Ul0btOdCgflaYXc4QA6CS1s5E90.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ul0btOdCgflaYXc4QA6CS1s5E90.jpg 800w\"},className:\"framer-1ioce1j hidden-pxna3x\",\"data-framer-name\":\"Photo Copy\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2893+-13.2738+0+0+0+0+0),pixelHeight:533,pixelWidth:800,sizes:\"314.9938px\",src:\"https://framerusercontent.com/images/b1JtOyXa75Cq6xHv5fNAA4QII.jpg\",srcSet:\"https://framerusercontent.com/images/b1JtOyXa75Cq6xHv5fNAA4QII.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/b1JtOyXa75Cq6xHv5fNAA4QII.jpg 800w\"}},X3RqGVxVy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2693+160.6949+0+0+0+0+0),pixelHeight:533,pixelWidth:800,sizes:\"206.25px\",src:\"https://framerusercontent.com/images/b1JtOyXa75Cq6xHv5fNAA4QII.jpg\",srcSet:\"https://framerusercontent.com/images/b1JtOyXa75Cq6xHv5fNAA4QII.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/b1JtOyXa75Cq6xHv5fNAA4QII.jpg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2033+52+0+0+0+0+0),pixelHeight:533,pixelWidth:800,sizes:\"497.1429px\",src:\"https://framerusercontent.com/images/b1JtOyXa75Cq6xHv5fNAA4QII.jpg\",srcSet:\"https://framerusercontent.com/images/b1JtOyXa75Cq6xHv5fNAA4QII.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/b1JtOyXa75Cq6xHv5fNAA4QII.jpg 800w\"},className:\"framer-j5y8no\",\"data-framer-name\":\"Photo Copy\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2893+-13.2738+0+0+0+0+109),pixelHeight:1e3,pixelWidth:800,sizes:\"210.0031px\",src:\"https://framerusercontent.com/images/CICWMrhgxNVPUJDOJAoA259IYBY.jpg\",srcSet:\"https://framerusercontent.com/images/CICWMrhgxNVPUJDOJAoA259IYBY.jpg 800w\"}},X3RqGVxVy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2693+160.6949+0+0+0+0+74.5),pixelHeight:1e3,pixelWidth:800,sizes:\"136.75px\",src:\"https://framerusercontent.com/images/CICWMrhgxNVPUJDOJAoA259IYBY.jpg\",srcSet:\"https://framerusercontent.com/images/CICWMrhgxNVPUJDOJAoA259IYBY.jpg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2033+52+0+0+0+0+165),pixelHeight:1e3,pixelWidth:800,sizes:\"331.4286px\",src:\"https://framerusercontent.com/images/CICWMrhgxNVPUJDOJAoA259IYBY.jpg\",srcSet:\"https://framerusercontent.com/images/CICWMrhgxNVPUJDOJAoA259IYBY.jpg 800w\"},className:\"framer-5xz4o4\",\"data-framer-name\":\"Photo Copy\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xq3fv0\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:755,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2893+-13.2738+0+0+0+239+0),pixelHeight:755,pixelWidth:800,sizes:\"315.4286px\",src:\"https://framerusercontent.com/images/UIQQH8Lf0UebswQPCiOvG5JistU.jpg\",srcSet:\"https://framerusercontent.com/images/UIQQH8Lf0UebswQPCiOvG5JistU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UIQQH8Lf0UebswQPCiOvG5JistU.jpg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:755,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2033+52+0+0+0+351+0),pixelHeight:755,pixelWidth:800,sizes:\"497.1429px\",src:\"https://framerusercontent.com/images/UIQQH8Lf0UebswQPCiOvG5JistU.jpg\",srcSet:\"https://framerusercontent.com/images/UIQQH8Lf0UebswQPCiOvG5JistU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UIQQH8Lf0UebswQPCiOvG5JistU.jpg 800w\"},className:\"framer-1329zn2 hidden-pxna3x\",\"data-framer-name\":\"Photo Copy\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2893+-13.2738+0+0+0+239+165),pixelHeight:533,pixelWidth:800,sizes:\"210.2857px\",src:\"https://framerusercontent.com/images/uyrU2oVovXGOE4oG4QHcJiabtQo.jpg\",srcSet:\"https://framerusercontent.com/images/uyrU2oVovXGOE4oG4QHcJiabtQo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uyrU2oVovXGOE4oG4QHcJiabtQo.jpg 800w\"}},X3RqGVxVy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2693+160.6949+0+0+0+170+0),pixelHeight:533,pixelWidth:800,sizes:\"170.5px\",src:\"https://framerusercontent.com/images/uyrU2oVovXGOE4oG4QHcJiabtQo.jpg\",srcSet:\"https://framerusercontent.com/images/uyrU2oVovXGOE4oG4QHcJiabtQo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uyrU2oVovXGOE4oG4QHcJiabtQo.jpg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2033+52+0+0+0+351+165),pixelHeight:533,pixelWidth:800,sizes:\"331.4286px\",src:\"https://framerusercontent.com/images/uyrU2oVovXGOE4oG4QHcJiabtQo.jpg\",srcSet:\"https://framerusercontent.com/images/uyrU2oVovXGOE4oG4QHcJiabtQo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uyrU2oVovXGOE4oG4QHcJiabtQo.jpg 800w\"},className:\"framer-73vmsx\",\"data-framer-name\":\"Photo Copy\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2893+-13.2738+0+0+0+239+165),pixelHeight:640,pixelWidth:800,sizes:\"210.2857px\",src:\"https://framerusercontent.com/images/NVAOZuwn8wsRDa3G5ziCVZs4HY.jpg\",srcSet:\"https://framerusercontent.com/images/NVAOZuwn8wsRDa3G5ziCVZs4HY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NVAOZuwn8wsRDa3G5ziCVZs4HY.jpg 800w\"}},X3RqGVxVy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2693+160.6949+0+0+0+170+0),pixelHeight:640,pixelWidth:800,sizes:\"170.5px\",src:\"https://framerusercontent.com/images/NVAOZuwn8wsRDa3G5ziCVZs4HY.jpg\",srcSet:\"https://framerusercontent.com/images/NVAOZuwn8wsRDa3G5ziCVZs4HY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NVAOZuwn8wsRDa3G5ziCVZs4HY.jpg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2033+52+0+0+0+351+165),pixelHeight:640,pixelWidth:800,sizes:\"331.4286px\",src:\"https://framerusercontent.com/images/NVAOZuwn8wsRDa3G5ziCVZs4HY.jpg\",srcSet:\"https://framerusercontent.com/images/NVAOZuwn8wsRDa3G5ziCVZs4HY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NVAOZuwn8wsRDa3G5ziCVZs4HY.jpg 800w\"},className:\"framer-1v583in\",\"data-framer-name\":\"Photo Copy\"})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"n3tJvB9XK\"},motionChild:true,nodeId:\"CU_yecUA0\",scopeId:\"O5xyKp5ZC\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1p7jah framer-xblc03\",\"data-framer-name\":\"Group 28\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 261 66\"><g><defs><linearGradient id=\"idss9190126174_1g360397257\" x1=\"0.49720229968894514\" x2=\"0.5027977003110549\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 19.912 0.087 C 8.915 0.087 0 14.638 0 32.587 C 0 50.536 8.915 65.087 19.912 65.087 L 241.088 65.087 C 252.085 65.087 261 50.536 261 32.587 C 261 14.638 252.085 0.087 241.088 0.087 Z\" fill=\"url(#idss9190126174_1g360397257)\"></path></g></svg>',svgContentId:9190126174},X3RqGVxVy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 261 66\"><g><defs><linearGradient id=\"idss9190126174_1g360397257\" x1=\"0.49720229968894514\" x2=\"0.5027977003110549\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 19.912 0.087 C 8.915 0.087 0 14.638 0 32.587 C 0 50.536 8.915 65.087 19.912 65.087 L 241.088 65.087 C 252.085 65.087 261 50.536 261 32.587 C 261 14.638 252.085 0.087 241.088 0.087 Z\" fill=\"url(#idss9190126174_1g360397257)\"></path></g></svg>',svgContentId:9190126174}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ehe4lf\",\"data-framer-name\":\"Component 1 \u2013 14\",opacity:1,radius:54,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 261 66\"><g><defs><linearGradient id=\"idss600191582_1g360397257\" x1=\"0.49720229968894514\" x2=\"0.5027977003110549\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 19.912 0.087 C 8.915 0.087 0 14.638 0 32.587 C 0 50.536 8.915 65.087 19.912 65.087 L 241.088 65.087 C 252.085 65.087 261 50.536 261 32.587 C 261 14.638 252.085 0.087 241.088 0.087 Z\" fill=\"url(#idss600191582_1g360397257)\"></path></g></svg>',svgContentId:600191582,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(Link,{href:\"https://form.jotform.com/form/230794383276061\",motionChild:true,nodeId:\"ufxBnRplg\",openInNewTab:true,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"F\"})}),\"ULL GALLERY\"]})}),className:\"framer-3uzv6n\",\"data-framer-name\":\"Start your tennis journey now\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{svgContentId:10328165302},X3RqGVxVy:{svgContentId:10328165302}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-snqgox\",\"data-framer-name\":\"np_arrow-right_888647_000000\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 17\"><path d=\"M 0 6.9 L 18.411 6.9 L 18.411 9.274 L 0 9.274 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 13.308 16.043 L 11.644 14.38 L 17.944 8.082 L 11.644 1.785 L 13.308 0.132 L 21.266 8.087 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:1738230710,withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f4g7lr\",\"data-framer-name\":\"News\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-amby0m hidden-cbmjsa hidden-pxna3x\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-nrbaki\",\"data-framer-name\":\"Line 26\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:481,svg:'<svg width=\"481\" height=\"4\" viewBox=\"-1 -1 481 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.237\" d=\"M0 0.634399H479\" stroke=\"#100F38\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hd54ac\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"cx6DB__PT\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"cx6DB__PT\",name:\"fLgjsJKJT\",type:\"Identifier\"},{collection:\"cx6DB__PT\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({fLgjsJKJT:fLgjsJKJTcx6DB__PT,id:idcx6DB__PT},index)=>{fLgjsJKJTcx6DB__PT??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`cx6DB__PT-${idcx6DB__PT}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fLgjsJKJT:fLgjsJKJTcx6DB__PT},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{fLgjsJKJT:fLgjsJKJTcx6DB__PT},webPageId:\"MAyXbknLp\"},motionChild:true,nodeId:\"FYC4Mqf2T\",scopeId:\"O5xyKp5ZC\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1gea1ac framer-xblc03\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gqczw\",\"data-framer-name\":\"Post\"})})})})},idcx6DB__PT);})})})})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-152neu6 hidden-166anki hidden-pxna3x\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\"},children:\"Golden Isles Tennis at First Friday In September\"})}),className:\"framer-1gs8ai3 hidden-cbmjsa\",\"data-framer-name\":\"GIT at First Friday in September\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-duxdw hidden-cbmjsa\",\"data-framer-name\":\"The TizManian Devils and the Snowbliterators battle it out in a Tri-Level to remember!\"}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\"},children:\"The Tizmanian Devils And The Snowbliterators \"})})}),className:\"framer-5prebp hidden-cbmjsa\",\"data-framer-name\":\"The Tizmanian Devils And The Snowbliterators\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:'\"GIT\"'}),\" YOUR TENNIS NEWS HERE!\"]})}),className:\"framer-19y0ygl hidden-166anki\",\"data-framer-name\":\"GIT your tennis news here!\",fonts:[\"GF;Barlow-500\",\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:202,intrinsicWidth:360,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3791+1253-709+-465),pixelHeight:202,pixelWidth:360,src:\"https://framerusercontent.com/images/nvJjmo52IlccizFl8bAOtb7Nk.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:202,intrinsicWidth:360,pixelHeight:202,pixelWidth:360,src:\"https://framerusercontent.com/images/nvJjmo52IlccizFl8bAOtb7Nk.jpg\"},className:\"framer-o5yw2u\",\"data-framer-name\":\"Component 1 \u2013 16\"})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:'\"GIT\"'}),\" YOUR TENNIS NEWS HERE!\"]})}),className:\"framer-1l7gpmc hidden-166anki hidden-cbmjsa\",\"data-framer-name\":\"GIT your tennis news here!\",fonts:[\"GF;Barlow-500\",\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-icqqr4 hidden-166anki hidden-pxna3x\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"P0f3Q3VUr\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"P0f3Q3VUr\",name:\"fLgjsJKJT\",type:\"Identifier\"},{collection:\"P0f3Q3VUr\",name:\"yek6VUiSt\",type:\"Identifier\"},{collection:\"P0f3Q3VUr\",name:\"NYxLPpLlz\",type:\"Identifier\"},{collection:\"P0f3Q3VUr\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({fLgjsJKJT:fLgjsJKJTP0f3Q3VUr,id:idP0f3Q3VUr,NYxLPpLlz:NYxLPpLlzP0f3Q3VUr,yek6VUiSt:yek6VUiStP0f3Q3VUr},index1)=>{fLgjsJKJTP0f3Q3VUr??=\"\";NYxLPpLlzP0f3Q3VUr??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`P0f3Q3VUr-${idP0f3Q3VUr}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fLgjsJKJT:fLgjsJKJTP0f3Q3VUr},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{fLgjsJKJT:fLgjsJKJTP0f3Q3VUr},webPageId:\"MAyXbknLp\"},motionChild:true,nodeId:\"c3X_XGQkP\",scopeId:\"O5xyKp5ZC\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-7dgxt4 framer-xblc03\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"375px\",...toResponsiveImage(yek6VUiStP0f3Q3VUr)},className:\"framer-1jaljdb\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18xzi6f\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-8vv884\",\"data-styles-preset\":\"CzQE9CQzB\",children:\"Title\"})}),className:\"framer-1jeqirz\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:NYxLPpLlzP0f3Q3VUr,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idP0f3Q3VUr);})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-skztot hidden-166anki hidden-cbmjsa\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"HYpc5Bjdw\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"HYpc5Bjdw\",name:\"fLgjsJKJT\",type:\"Identifier\"},{collection:\"HYpc5Bjdw\",name:\"yek6VUiSt\",type:\"Identifier\"},{collection:\"HYpc5Bjdw\",name:\"NYxLPpLlz\",type:\"Identifier\"},{collection:\"HYpc5Bjdw\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({fLgjsJKJT:fLgjsJKJTHYpc5Bjdw,id:idHYpc5Bjdw,NYxLPpLlz:NYxLPpLlzHYpc5Bjdw,yek6VUiSt:yek6VUiStHYpc5Bjdw},index2)=>{fLgjsJKJTHYpc5Bjdw??=\"\";NYxLPpLlzHYpc5Bjdw??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`HYpc5Bjdw-${idHYpc5Bjdw}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fLgjsJKJT:fLgjsJKJTHYpc5Bjdw},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{fLgjsJKJT:fLgjsJKJTHYpc5Bjdw},webPageId:\"MAyXbknLp\"},motionChild:true,nodeId:\"mZqodmzkS\",scopeId:\"O5xyKp5ZC\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-audhxm framer-xblc03\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{X3RqGVxVy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+4251+798-230+0+0+0+0),sizes:\"362px\",...toResponsiveImage(yek6VUiStHYpc5Bjdw)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"362px\",...toResponsiveImage(yek6VUiStHYpc5Bjdw)},className:\"framer-1xh0men\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1emizr3\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-8vv884\",\"data-styles-preset\":\"CzQE9CQzB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Title\"})}),className:\"framer-18fy9nv\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:NYxLPpLlzHYpc5Bjdw,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idHYpc5Bjdw);})})})})})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-25j4wd hidden-166anki\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-xvd53y hidden-166anki hidden-cbmjsa\",\"data-framer-name\":\"Component 1 \u2013 14\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:66,intrinsicWidth:426,svg:'<svg width=\"426\" height=\"66\" viewBox=\"0 0 426 66\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M32.5 0.101761C14.5507 0.101761 0 14.646 0 32.5871C0 50.5283 14.5507 65.0725 32.5 65.0725L393.5 65.0725C411.449 65.0725 426 50.5283 426 32.5871C426 14.646 411.449 0.101761 393.5 0.101761L32.5 0.101761Z\" fill=\"url(#paint0_linear_5_121)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_121\" x1=\"253.47\" y1=\"74.3633\" x2=\"253.51\" y2=\"3.86913\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#053D5D\"/>\\n<stop offset=\"1\" stop-color=\"#086090\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"START YOUR TENNIS JOURNEY NOW\"})}),className:\"framer-1k6zidm hidden-166anki hidden-cbmjsa\",\"data-framer-name\":\"Start your tennis journey now\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{X3RqGVxVy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:800,loading:getLoadingLazyAtYPosition(2605),pixelHeight:533,pixelWidth:800,sizes:\"362px\",src:\"https://framerusercontent.com/images/Wl5jkVcQRzui6nNxxtP0eCjZ48Y.jpg\",srcSet:\"https://framerusercontent.com/images/Wl5jkVcQRzui6nNxxtP0eCjZ48Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Wl5jkVcQRzui6nNxxtP0eCjZ48Y.jpg 800w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:800,pixelHeight:533,pixelWidth:800,src:\"https://framerusercontent.com/images/Wl5jkVcQRzui6nNxxtP0eCjZ48Y.jpg\",srcSet:\"https://framerusercontent.com/images/Wl5jkVcQRzui6nNxxtP0eCjZ48Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Wl5jkVcQRzui6nNxxtP0eCjZ48Y.jpg 800w\"},className:\"framer-13rrot1 hidden-166anki hidden-cbmjsa\",\"data-framer-name\":\"Component 1 \u2013 10\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-u3xq20\",\"data-framer-name\":\"Component 1 \u2013 13\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:188,intrinsicWidth:375,svg:'<svg width=\"375\" height=\"188\" viewBox=\"0 0 375 188\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 10.2066L0 177.131C0 182.652 4.47715 187.127 10 187.127L365 187.127C370.523 187.127 375 182.652 375 177.131V10.2066C375 4.68625 370.523 0.211121 365 0.211121L10 0.211121C4.47715 0.211121 0 4.68625 0 10.2066Z\" fill=\"url(#paint0_linear_5_116)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_116\" x1=\"223.125\" y1=\"213.856\" x2=\"223.498\" y2=\"11.0502\" gradientUnits=\"userSpaceOnUse\">\\n<stop/>\\n<stop offset=\"1\" stop-color=\"#086090\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Good, Fun, Competition!\"})}),className:\"framer-12qxkjf\",\"data-framer-name\":\"Have good, fun, COMPETITION!\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{X3RqGVxVy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:800,loading:getLoadingLazyAtYPosition(2408.5),pixelHeight:533,pixelWidth:800,src:\"https://framerusercontent.com/images/XGgbFxXMkvXWcTRK3tz74OCZgMY.jpg\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:800,pixelHeight:533,pixelWidth:800,src:\"https://framerusercontent.com/images/XGgbFxXMkvXWcTRK3tz74OCZgMY.jpg\"},className:\"framer-1i1umj0 hidden-166anki hidden-cbmjsa\",\"data-framer-name\":\"Component 1 \u2013 9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{X3RqGVxVy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 810 162\"><g><defs><linearGradient id=\"idss10674637314_1g1120330678\" x1=\"0.49656321286055055\" x2=\"0.5034367871394495\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(0,0,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(8,96,144,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 225 33.851 L 225 154.412 C 225 158.399 229.31 161.631 234.627 161.631 L 576.373 161.631 C 581.69 161.631 586 158.399 586 154.412 L 586 33.851 C 586 29.864 581.69 26.631 576.373 26.631 L 234.627 26.631 C 229.31 26.631 225 29.864 225 33.851 Z\" fill=\"url(#idss10674637314_1g1120330678)\"></path></g></svg>',svgContentId:10674637314}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pf5bw2\",\"data-framer-name\":\"Component 1 \u2013 12\",opacity:1,radius:10,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 810 162\"><g><defs><linearGradient id=\"idss2084702722_1g1120330678\" x1=\"0.49656321286055055\" x2=\"0.5034367871394495\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(0,0,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(8,96,144,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 225 33.851 L 225 154.412 C 225 158.399 229.31 161.631 234.627 161.631 L 576.373 161.631 C 581.69 161.631 586 158.399 586 154.412 L 586 33.851 C 586 29.864 581.69 26.631 576.373 26.631 L 234.627 26.631 C 229.31 26.631 225 29.864 225 33.851 Z\" fill=\"url(#idss2084702722_1g1120330678)\"></path></g></svg>',svgContentId:2084702722,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{X3RqGVxVy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 362 72\"><g><defs><linearGradient id=\"idss10503052297_1g1120330678\" x1=\"0.49656321286055055\" x2=\"0.5034367871394495\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(0,0,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(8,96,144,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 0 4.145 L 0 72.016 C 0 74.261 4.375 76.081 9.773 76.081 L 356.697 76.081 C 362.094 76.081 366.469 74.261 366.469 72.016 L 366.469 4.145 C 366.469 1.9 362.094 0.081 356.697 0.081 L 9.773 0.081 C 4.375 0.081 0 1.9 0 4.145 Z\" fill=\"url(#idss10503052297_1g1120330678)\"></path></g></svg>',svgContentId:10503052297}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1llycu4\",\"data-framer-name\":\"Component 1 \u2013 12\",opacity:1,radius:10,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 362 72\"><g><defs><linearGradient id=\"idss1913117705_1g1120330678\" x1=\"0.49656321286055055\" x2=\"0.5034367871394495\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(0,0,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(8,96,144,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 0 4.145 L 0 72.016 C 0 74.261 4.375 76.081 9.773 76.081 L 356.697 76.081 C 362.094 76.081 366.469 74.261 366.469 72.016 L 366.469 4.145 C 366.469 1.9 362.094 0.081 356.697 0.081 L 9.773 0.081 C 4.375 0.081 0 1.9 0 4.145 Z\" fill=\"url(#idss1913117705_1g1120330678)\"></path></g></svg>',svgContentId:1913117705,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Lifelong Connections\"})}),className:\"framer-1bmygy5\",\"data-framer-name\":\"Make lifelong connections\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eamjfw hidden-166anki hidden-pxna3x\",children:isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:800,loading:getLoadingLazyAtYPosition(2503),pixelHeight:533,pixelWidth:800,sizes:\"776px\",src:\"https://framerusercontent.com/images/Wl5jkVcQRzui6nNxxtP0eCjZ48Y.jpg\",srcSet:\"https://framerusercontent.com/images/Wl5jkVcQRzui6nNxxtP0eCjZ48Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Wl5jkVcQRzui6nNxxtP0eCjZ48Y.jpg 800w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:800,pixelHeight:533,pixelWidth:800,src:\"https://framerusercontent.com/images/Wl5jkVcQRzui6nNxxtP0eCjZ48Y.jpg\",srcSet:\"https://framerusercontent.com/images/Wl5jkVcQRzui6nNxxtP0eCjZ48Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Wl5jkVcQRzui6nNxxtP0eCjZ48Y.jpg 800w\"},className:\"framer-zrgupt hidden-166anki\",\"data-framer-name\":\"Component 1 \u2013 10\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19pdq86\",\"data-framer-name\":\"Component 1 \u2013 13\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:188,intrinsicWidth:375,svg:'<svg width=\"375\" height=\"188\" viewBox=\"0 0 375 188\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 10.2066L0 177.131C0 182.652 4.47715 187.127 10 187.127L365 187.127C370.523 187.127 375 182.652 375 177.131V10.2066C375 4.68625 370.523 0.211121 365 0.211121L10 0.211121C4.47715 0.211121 0 4.68625 0 10.2066Z\" fill=\"url(#paint0_linear_5_116)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_116\" x1=\"223.125\" y1=\"213.856\" x2=\"223.498\" y2=\"11.0502\" gradientUnits=\"userSpaceOnUse\">\\n<stop/>\\n<stop offset=\"1\" stop-color=\"#086090\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Good, Fun, Competition!\"})}),className:\"framer-j0s18d\",\"data-framer-name\":\"Have good, fun, COMPETITION!\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dohuqg hidden-166anki hidden-pxna3x\",children:isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:800,loading:getLoadingLazyAtYPosition(2288.5),pixelHeight:533,pixelWidth:800,src:\"https://framerusercontent.com/images/XGgbFxXMkvXWcTRK3tz74OCZgMY.jpg\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:800,pixelHeight:533,pixelWidth:800,src:\"https://framerusercontent.com/images/XGgbFxXMkvXWcTRK3tz74OCZgMY.jpg\"},className:\"framer-1y985xd hidden-166anki\",\"data-framer-name\":\"Component 1 \u2013 9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 777 156\"><g><defs><linearGradient id=\"idss9640229481_1g1120330678\" x1=\"0.49656321286055055\" x2=\"0.5034367871394495\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(0,0,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(8,96,144,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 0 8.624 L 0 149.726 C 0 154.392 9.277 158.175 20.72 158.175 L 756.28 158.175 C 767.724 158.175 777 154.392 777 149.726 L 777 8.624 C 777 3.958 767.724 0.175 756.28 0.175 L 20.72 0.175 C 9.277 0.175 0 3.958 0 8.624 Z\" fill=\"url(#idss9640229481_1g1120330678)\"></path></g></svg>',svgContentId:9640229481}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10os6jg\",\"data-framer-name\":\"Component 1 \u2013 12\",opacity:1,radius:10,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 777 156\"><g><defs><linearGradient id=\"idss1050294889_1g1120330678\" x1=\"0.49656321286055055\" x2=\"0.5034367871394495\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(0,0,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(8,96,144,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 0 8.624 L 0 149.726 C 0 154.392 9.277 158.175 20.72 158.175 L 756.28 158.175 C 767.724 158.175 777 154.392 777 149.726 L 777 8.624 C 777 3.958 767.724 0.175 756.28 0.175 L 20.72 0.175 C 9.277 0.175 0 3.958 0 8.624 Z\" fill=\"url(#idss1050294889_1g1120330678)\"></path></g></svg>',svgContentId:1050294889,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Lifelong Connections\"})}),className:\"framer-e6l83u\",\"data-framer-name\":\"Make lifelong connections\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n5ucmx hidden-166anki\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1333,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(2090),pixelHeight:1333,pixelWidth:2e3,sizes:\"778px\",src:\"https://framerusercontent.com/images/msEoyDsIpXgfokNMsY4ALDb70.jpg\",srcSet:\"https://framerusercontent.com/images/msEoyDsIpXgfokNMsY4ALDb70.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/msEoyDsIpXgfokNMsY4ALDb70.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/msEoyDsIpXgfokNMsY4ALDb70.jpg 2000w\"}},X3RqGVxVy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1333,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(2209),pixelHeight:1333,pixelWidth:2e3,sizes:\"362px\",src:\"https://framerusercontent.com/images/msEoyDsIpXgfokNMsY4ALDb70.jpg\",srcSet:\"https://framerusercontent.com/images/msEoyDsIpXgfokNMsY4ALDb70.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/msEoyDsIpXgfokNMsY4ALDb70.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/msEoyDsIpXgfokNMsY4ALDb70.jpg 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:905,pixelWidth:1500,sizes:\"778px\",src:\"https://framerusercontent.com/images/K3Ydvy8fleJbwpyW7pqkW6R0Tw.png\",srcSet:\"https://framerusercontent.com/images/K3Ydvy8fleJbwpyW7pqkW6R0Tw.png?scale-down-to=512 512w,https://framerusercontent.com/images/K3Ydvy8fleJbwpyW7pqkW6R0Tw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/K3Ydvy8fleJbwpyW7pqkW6R0Tw.png 1500w\"},className:\"framer-7dbli6\",\"data-framer-name\":\"Component 1 \u2013 8\",children:isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{X3RqGVxVy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 362 72\"><g><defs><linearGradient id=\"idss10503052297_1g1120330678\" x1=\"0.49656321286055055\" x2=\"0.5034367871394495\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(0,0,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(8,96,144,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 0 4.145 L 0 72.016 C 0 74.261 4.375 76.081 9.773 76.081 L 356.697 76.081 C 362.094 76.081 366.469 74.261 366.469 72.016 L 366.469 4.145 C 366.469 1.9 362.094 0.081 356.697 0.081 L 9.773 0.081 C 4.375 0.081 0 1.9 0 4.145 Z\" fill=\"url(#idss10503052297_1g1120330678)\"></path></g></svg>',svgContentId:10503052297}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1uvt3hb hidden-166anki hidden-cbmjsa\",\"data-framer-name\":\"Component 1 \u2013 12\",opacity:1,radius:10,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 362 72\"><g><defs><linearGradient id=\"idss2084191845_1g1120330678\" x1=\"0.49656321286055055\" x2=\"0.5034367871394495\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(0,0,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(8,96,144,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 0 4.145 L 0 72.016 C 0 74.261 4.375 76.081 9.773 76.081 L 356.697 76.081 C 362.094 76.081 366.469 74.261 366.469 72.016 L 366.469 4.145 C 366.469 1.9 362.094 0.081 356.697 0.081 L 9.773 0.081 C 4.375 0.081 0 1.9 0 4.145 Z\" fill=\"url(#idss2084191845_1g1120330678)\"></path></g></svg>',svgContentId:2084191845,withExternalLayout:true})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 779 181\"><g><defs><linearGradient id=\"idss10961248440_1g1120330678\" x1=\"0.49656321286055055\" x2=\"0.5034367871394495\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(0,0,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(8,96,144,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 0 9.882 L 0 171.524 C 0 176.87 9.289 181.203 20.747 181.203 L 757.253 181.203 C 768.712 181.203 778 176.87 778 171.524 L 778 9.882 C 778 4.537 768.712 0.203 757.253 0.203 L 20.747 0.203 C 9.289 0.203 0 4.537 0 9.882 Z\" fill=\"url(#idss10961248440_1g1120330678)\"></path></g></svg>',svgContentId:10961248440}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yaplgl hidden-pxna3x\",\"data-framer-name\":\"Component 1 \u2013 11\",opacity:1,radius:10,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 779 181\"><g><defs><linearGradient id=\"idss3469854741_1g1120330678\" x1=\"0.49656321286055055\" x2=\"0.5034367871394495\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(0,0,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(8,96,144,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M -3 10.692 L -3 185.729 C -3 191.519 6.766 196.211 18.813 196.211 L 793.187 196.211 C 805.234 196.211 815 191.519 815 185.729 L 815 10.692 C 815 4.904 805.234 0.211 793.187 0.211 L 18.813 0.211 C 6.766 0.211 -3 4.904 -3 10.692 Z\" fill=\"url(#idss3469854741_1g1120330678)\"></path></g></svg>',svgContentId:3469854741,withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"A healthy lifestyle\"})}),className:\"framer-ljtn9l hidden-pxna3x\",\"data-framer-name\":\"Improve your health\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\"},children:[\"LEARN TO PLAY WITH \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"TENNIS APPRENTICE\"})]})}),fonts:[\"GF;Barlow-500\",\"GF;Barlow-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\"},children:\"LEARN TO PLAY WITH \"})}),className:\"framer-1dfbze7\",\"data-framer-name\":\"LEARN TO PLAY WITH\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"A healthy lifestyle\"})}),className:\"framer-zxmo57 hidden-166anki hidden-cbmjsa\",\"data-framer-name\":\"Improve your health\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{X3RqGVxVy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\"},children:\"TENNIS APPRENTICE\"})}),fonts:[\"GF;Barlow-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\"},children:\"TENNIS APPRENTICE\"})}),className:\"framer-1jjxl6u hidden-cbmjsa\",\"data-framer-name\":\"TENNIS APPRENTICE\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\"},children:\"It\u2019s never too late \u2026 or too soon to start playing tennis! Yes it's healthy and YES it's fun. But joining Golden Isles Tennis community is so much more!\\xa0\"})})},X3RqGVxVy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\"},children:\"It\u2019s never too late \u2026 or too soon to start playing tennis! Yes it's healthy and YES it's fun. But joining Golden Isles Tennis community is so much more!\\xa0\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\"},children:\"It\u2019s never too late \u2026 or too soon to start playing tennis! \"})}),className:\"framer-1l88czv\",\"data-framer-name\":\"It\u2019s never too late \u2026 or too soon to start playing tennis!\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z43qpw hidden-166anki hidden-pxna3x\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 88 89\"><g><defs><linearGradient id=\"idss9590546144_1g360397181\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 78 0.292 L 10 0.292 C 4.477 0.292 0 4.767 0 10.287 L 0 78.257 C 0 83.777 4.477 88.252 10 88.252 L 78 88.252 C 83.523 88.252 88 83.777 88 78.257 L 88 10.287 C 88 4.767 83.523 0.292 78 0.292 Z\" fill=\"url(#idss9590546144_1g360397181)\"></path></g><g><defs><linearGradient id=\"idss9590546144_2g92278\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"#f8d010\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"#f8b011\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 0 10 C 0 4.477 4.477 0 10 0 L 78 0 C 83.523 0 88 4.477 88 10 L 88 79 C 88 84.523 83.523 89 78 89 L 10 89 C 4.477 89 0 84.523 0 79 Z\" fill=\"url(#idss9590546144_2g92278)\"></path></g></svg>',svgContentId:9590546144}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jrob83\",\"data-framer-name\":\"Rectangle 72\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 88 89\"><g><defs><linearGradient id=\"idss1000611552_1g360397181\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 78 0.292 L 10 0.292 C 4.477 0.292 0 4.767 0 10.287 L 0 78.257 C 0 83.777 4.477 88.252 10 88.252 L 78 88.252 C 83.523 88.252 88 83.777 88 78.257 L 88 10.287 C 88 4.767 83.523 0.292 78 0.292 Z\" fill=\"url(#idss1000611552_1g360397181)\"></path></g><g><defs><linearGradient id=\"idss1000611552_2g92278\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"#f8d010\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"#f8b011\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 0 10 C 0 4.477 4.477 0 10 0 L 78 0 C 83.523 0 88 4.477 88 10 L 88 79 C 88 84.523 83.523 89 78 89 L 10 89 C 4.477 89 0 84.523 0 79 Z\" fill=\"url(#idss1000611552_2g92278)\"></path></g></svg>',svgContentId:1000611552,withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-sx1dao\",\"data-framer-name\":\"np_tennis_774476_000000\",fill:\"black\",intrinsicHeight:133,intrinsicWidth:133,svg:'<svg width=\"100pt\" height=\"100pt\" viewBox=\"0 0 100 100\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m76.289 65.484-1.29 1.29c-5.804-5-9.675-11.13-11.933-18.712 3.387-10.969-.645-25-11.29-35.645C45.16 5.804 36.774 1.452 28.387.323 19.839-.806 12.096 1.452 6.933 6.776-4.032 17.741-1.454 37.901 12.58 51.772 20.648 59.84 30.968 64.19 40.163 64.19c2.743 0 5.485-.324 7.903-1.129 7.582 2.258 13.71 6.13 18.71 11.934l-1.288 1.29L89.034 99.83 99.84 89.026zm-24.516-7.582-4.516-4.516 6.29-6.289 4.515 4.516c-.805 1.289-1.613 2.418-2.742 3.547-1.125 1.129-2.418 2.098-3.547 2.742zm-47.258-30 6.29-6.29 6.288 6.29-6.289 6.29zm4.031 8.55-1.773 1.774c-.969-1.933-1.613-3.87-2.258-5.805zm-5.16-11.937c0-3.067.484-6.13 1.453-8.871l3.707 3.71zm56.453 11.938-6.29 6.289-6.288-6.29 6.289-6.288zm-4.035-8.551 1.773-1.773c.969 1.933 1.614 3.87 2.258 5.804zm5.164 11.938c0 3.066-.484 6.129-1.453 8.871l-3.711-3.71zm-15.97-5.645-6.288-6.293 6.289-6.289 6.289 6.29zm-8.546-4.035 6.29 6.29-6.29 6.288-6.29-6.289zm-8.55 4.035-6.29-6.289 6.29-6.289 6.288 6.29zm8.55-8.55-6.293-6.29 6.29-6.289 6.288 6.29zm2.258-14.84 2.418-2.418c2.582 1.453 4.84 3.226 7.098 5.324l-3.387 3.387zm-2.258-2.258-4.031-4.031c1.933.484 3.87 1.289 5.805 2.257zm-2.258 2.258-6.289 6.289-6.289-6.29 6.29-6.288zm-8.55 8.55-6.29 6.29-6.289-6.29 6.29-6.289zm-6.29 10.805 6.29 6.29-6.29 6.293-6.289-6.29zm8.547 8.551 6.29 6.29-6.29 6.288L21.612 45zm-2.258 14.836-2.418 2.418a42.998 42.998 0 0 1-7.097-5.324l3.386-3.387zm2.258 2.258 4.031 4.031c-1.933-.484-3.87-1.289-5.804-2.258zm8.551 4.035-6.29-6.289 6.29-6.289 6.29 6.29zM38.71 45l6.289-6.289 6.289 6.29-6.29 6.288zm17.258-21.934-2.418 2.418-6.293-6.129 3.387-3.386a42.826 42.826 0 0 1 5.324 7.097zM24.515 3.386l-5.16 5.16-3.711-3.707c2.582-.968 5.484-1.613 8.386-1.613.325.16.325.16.485.16zM9.195 9.031c.965-.965 2.094-1.934 3.386-2.578l4.516 4.515-6.289 6.29-4.356-4.676c.645-1.13 1.614-2.422 2.743-3.551zm-.809 32.098 2.418-2.418L17.094 45l-3.383 3.387a38.088 38.088 0 0 1-5.325-7.258zm31.453 19.84 5.16-5.16 3.711 3.71c-2.742.965-5.808 1.45-8.87 1.45zm12.742.16c1.774-.969 3.387-2.258 5-3.71 1.453-1.454 2.742-3.067 3.711-5 2.418 6.452 6.29 11.933 11.453 16.452l-3.547 3.547c-4.683-5-10.168-8.707-16.617-11.289zM70 76.289l6.29-6.29 19.03 19.032-6.289 6.289zM11.289 64.676c-6.29 0-11.289 5-11.289 11.289 0 6.29 5 11.289 11.289 11.289 6.29 0 11.289-5 11.289-11.289.004-6.29-4.996-11.289-11.289-11.289zm0 19.355c-4.516 0-8.066-3.547-8.066-8.066 0-4.516 3.546-8.067 8.066-8.067 4.516 0 8.066 3.547 8.066 8.067s-3.55 8.066-8.066 8.066z\"/></svg>',withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTcwMA==\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Make Lifelong Connections\"})}),className:\"framer-14fqjyo hidden-pxna3x\",\"data-framer-name\":\"Make lifelong connections\",fonts:[\"GF;Barlow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-se4ji6 hidden-166anki hidden-cbmjsa\",\"data-framer-name\":\"Rectangle 68\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:251,intrinsicWidth:1941,svg:'<svg width=\"1941\" height=\"251\" viewBox=\"0 0 1941 251\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1941 0.14978H0V250.037H1941V0.14978Z\" fill=\"#EFEFEF\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-70bzsx hidden-166anki hidden-pxna3x\",\"data-framer-name\":\"Component 1 \u2013 14\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:66,intrinsicWidth:426,svg:'<svg width=\"426\" height=\"66\" viewBox=\"0 0 426 66\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M32.5 0.101761C14.5507 0.101761 0 14.646 0 32.5871C0 50.5283 14.5507 65.0725 32.5 65.0725L393.5 65.0725C411.449 65.0725 426 50.5283 426 32.5871C426 14.646 411.449 0.101761 393.5 0.101761L32.5 0.101761Z\" fill=\"url(#paint0_linear_5_121)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5_121\" x1=\"253.47\" y1=\"74.3633\" x2=\"253.51\" y2=\"3.86913\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#053D5D\"/>\\n<stop offset=\"1\" stop-color=\"#086090\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-v9qist hidden-166anki hidden-pxna3x\",\"data-framer-name\":\"Group 28\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-uqq56z\",\"data-framer-name\":\"np_arrow-right_888647_000000\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"17\" viewBox=\"0 0 22 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.14441e-05 6.8999H18.411V9.27383H1.14441e-05V6.8999Z\" fill=\"white\"/>\\n<path d=\"M13.308 16.0428L11.644 14.3795L17.944 8.08238L11.644 1.78521L13.308 0.131958L21.266 8.08738L13.308 16.0428Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"START YOUR TENNIS JOURNEY NOW\"})}),className:\"framer-12i8xqb hidden-pxna3x\",\"data-framer-name\":\"Start your tennis journey now\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(Link,{href:\"https://cdn.jotfor.ms/form/230794767747070\",motionChild:true,nodeId:\"uc6XLqnUu\",scopeId:\"O5xyKp5ZC\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-6amybu hidden-166anki hidden-cbmjsa framer-xblc03\"})}),isDisplayed4()&&/*#__PURE__*/_jsx(Link,{href:\"https://cdn.jotfor.ms/form/230794767747070\",motionChild:true,nodeId:\"R2DWgPFk3\",scopeId:\"O5xyKp5ZC\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-188wytz hidden-166anki hidden-pxna3x framer-xblc03\"})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zphcts-container\",id:elementId,nodeId:\"bS8i_cegu\",ref:ref1,scopeId:\"O5xyKp5ZC\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iQz7U2Mf9:{variant:\"ZZfUcWX6l\"},X3RqGVxVy:{variant:\"m4M37Sdve\"}},children:/*#__PURE__*/_jsx(WhereToPlay,{height:\"100%\",id:\"bS8i_cegu\",layoutId:\"bS8i_cegu\",style:{height:\"100%\",width:\"100%\"},variant:\"TkiDErEPj\",width:\"100%\"})})})}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qg2n9w hidden-166anki hidden-pxna3x\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vs3df3\",\"data-framer-name\":\"Line 21\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:1203,svg:'<svg width=\"1203\" height=\"4\" viewBox=\"-1 -1 1203 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.5 1.0835H1200.5\" stroke=\"#CECECE\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R290aGFtLTMwMA==\",\"--framer-font-family\":'\"Gotham\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xa9 Copyright 2012 -\\xa02023\\xa0| Golden Isles Tennis | All Rights Reserved\"})}),className:\"framer-10sbfb8\",\"data-framer-name\":\"\\xa9 Copyright 2012 -\\xa02023\\xa0| Golden Isles Tennis | All Rights Reserved\",fonts:[\"GF;Gotham-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ElTlViyKX\"},motionChild:true,nodeId:\"A2PljwDLb\",openInNewTab:false,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"ADULTS\"})})})}),className:\"framer-12972sj\",\"data-framer-name\":\"ADULTS\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oeIcltxv8\"},motionChild:true,nodeId:\"odXVYaOge\",openInNewTab:false,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"JUNIORS\"})})})}),className:\"framer-t9ickj\",\"data-framer-name\":\"JUNIORS\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tfTcjGWKT\"},motionChild:true,nodeId:\"tG1rKlbL8\",openInNewTab:false,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"NEW TO TENNIS\"})})})}),className:\"framer-1twdy1z\",\"data-framer-name\":\"NEW TO TENNIS\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":BtfINlDoS\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"NadUJK_f0\",openInNewTab:false,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"WHERE TO PLAY\"})})})}),className:\"framer-rlthty\",\"data-framer-name\":\"WHERE TO PLAY\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xWiPog3dk\"},motionChild:true,nodeId:\"BauO1Dz1A\",openInNewTab:false,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"NEWS\"})})})}),className:\"framer-1msnz5f\",\"data-framer-name\":\"NEWS\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Barlow\", \"Barlow Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QVKkb0w8H\"},motionChild:true,nodeId:\"H_C52aBFd\",openInNewTab:false,scopeId:\"O5xyKp5ZC\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j7fszi\",\"data-styles-preset\":\"NbdMzqHNc\",children:\"ABOUT\"})})})}),className:\"framer-144cnoz\",\"data-framer-name\":\"ABOUT\",fonts:[\"GF;Barlow-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xy3o9n hidden-166anki hidden-cbmjsa\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q24jjh\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lx5k4q\",\"data-framer-name\":\"SIGN UP FOR OUR MAILING LIST\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:[\"SIGN UP FOR OUR \",/*#__PURE__*/_jsx(\"br\",{}),\"MAILING LIST \"]})}),className:\"framer-1ballbv\",\"data-framer-name\":\"SIGN UP FOR OUR\",fonts:[\"GF;Barlow-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://cdn.jotfor.ms/form/230947616598067\",motionChild:true,nodeId:\"qLBpkzk6J\",scopeId:\"O5xyKp5ZC\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1tizbw9 framer-xblc03\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{X3RqGVxVy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 166 55\"><g><defs><linearGradient id=\"idss8788487738_1g360397257\" x1=\"0.49720229968894514\" x2=\"0.5027977003110549\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 15.258 0.073 C 6.831 0.073 0 14.623 0 32.573 C 0 50.522 6.831 65.073 15.258 65.073 L 184.742 65.073 C 193.169 65.073 200 50.522 200 32.573 C 200 14.623 193.169 0.073 184.742 0.073 Z\" fill=\"url(#idss8788487738_1g360397257)\"></path></g></svg>',svgContentId:8788487738}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-j275om\",\"data-framer-name\":\"Component 1 \u2013 14\",opacity:1,radius:54,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 166 55\"><g><defs><linearGradient id=\"idss198553146_1g360397257\" x1=\"0.49720229968894514\" x2=\"0.5027977003110549\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(5,61,93)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(8,96,144)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 15.258 0.073 C 6.831 0.073 0 14.623 0 32.573 C 0 50.522 6.831 65.073 15.258 65.073 L 184.742 65.073 C 193.169 65.073 200 50.522 200 32.573 C 200 14.623 193.169 0.073 184.742 0.073 Z\" fill=\"url(#idss198553146_1g360397257)\"></path></g></svg>',svgContentId:198553146,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTUwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SIGN UP\"})}),className:\"framer-2hjf0j\",\"data-framer-name\":\"Sign up\",fonts:[\"GF;Barlow-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{X3RqGVxVy:{svgContentId:11432685579}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-x9v32z\",\"data-framer-name\":\"np_arrow-right_888647_000000\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 18\"><path d=\"M 0 6.9 L 18.411 6.9 L 18.411 9.274 L 0 9.274 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 14.013 16.043 L 12.349 14.379 L 18.649 8.082 L 12.349 1.785 L 14.013 0.132 L 21.971 8.087 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:2842750987,withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{X3RqGVxVy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:159,intrinsicWidth:460,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+5501-430.5+347-96),pixelHeight:159,pixelWidth:460,src:\"https://framerusercontent.com/images/KoF3cIUo5D2smLootZ9gVGkuLc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:159,intrinsicWidth:460,pixelHeight:159,pixelWidth:460,src:\"https://framerusercontent.com/images/KoF3cIUo5D2smLootZ9gVGkuLc.png\"},className:\"framer-zk5hv1\",\"data-framer-name\":\"Logo_Refresh_GIT_2023_CE_3720_v3\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmFybG93LTMwMA==\",\"--framer-font-family\":'\"Barlow\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\"},children:\"Contact us today (912) 304 3024 | info@goldenislestennis.com\"})}),className:\"framer-wymr3u\",\"data-framer-name\":\"Contact us today (912) 304 3024  |  info@goldenislestennis.com\",fonts:[\"GF;Barlow-300\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11to56-container hidden-166anki hidden-cbmjsa\",\"data-framer-name\":\"last\",name:\"last\",nodeId:\"LAgStOtTH\",scopeId:\"O5xyKp5ZC\",children:/*#__PURE__*/_jsx(NavbarDark,{height:\"100%\",id:\"LAgStOtTH\",layoutId:\"LAgStOtTH\",name:\"last\",style:{width:\"100%\"},variant:\"C6TpGXxNw\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-55MWe.framer-xblc03, .framer-55MWe .framer-xblc03 { display: block; }\",\".framer-55MWe.framer-166anki { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 4650px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-55MWe .framer-77vohr { flex: none; height: 728px; left: calc(-104.91666666666663% - 1878px / 2); overflow: visible; position: absolute; top: 357px; width: 1878px; z-index: 1; }\",\".framer-55MWe .framer-1l1pn6o-container { flex: none; height: 50px; position: relative; width: 1200px; }\",\".framer-55MWe .framer-1cvai2w-container { flex: none; height: auto; position: relative; width: 1200px; z-index: 1; }\",\".framer-55MWe .framer-7r1h71 { align-content: center; align-items: center; background-color: rgba(12, 13, 13, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 10%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 70%; }\",\".framer-55MWe .framer-99gdi1-container { flex: 1 0 0px; height: 649px; position: relative; width: 1px; }\",\".framer-55MWe .framer-111f0xx { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 728px; justify-content: flex-end; overflow: hidden; padding: 60px 60px 80px 60px; position: relative; width: 1200px; }\",\".framer-55MWe .framer-44h8u2 { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 590px); overflow: visible; position: relative; width: 787px; }\",\".framer-55MWe .framer-7se2m1 { flex: none; height: 684px; overflow: hidden; position: relative; width: 100%; z-index: 1; }\",\".framer-55MWe .framer-1gmgrun { flex: none; height: 665px; left: calc(50.16666666666669% - 1205px / 2); overflow: hidden; position: absolute; top: calc(54.17348608837973% - 665px / 2); width: 1205px; }\",\".framer-55MWe .framer-1yztq7m { flex: none; height: 36px; left: 655px; position: absolute; top: 57px; white-space: pre-wrap; width: 224px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1883ksn { flex: none; height: 4px; left: 655px; position: absolute; top: 138px; width: 481px; }\",\".framer-55MWe .framer-2478nr, .framer-55MWe .framer-h19blv { flex: none; height: 29px; left: 960px; position: absolute; top: 175px; width: 29px; }\",\".framer-55MWe .framer-1rdq0u4 { flex: none; height: 29px; left: 961px; position: absolute; top: calc(46.16541353383461% - 29px / 2); width: 29px; }\",\".framer-55MWe .framer-1lj4oh4 { flex: none; height: 18px; left: 656px; position: absolute; top: 180px; white-space: pre-wrap; width: 161px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-91bxmt { flex: none; height: 18px; left: 657px; position: absolute; top: calc(46.015037593984985% - 18px / 2); white-space: pre-wrap; width: 175px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1mfzinr { flex: none; height: 4px; left: 651px; position: absolute; top: 260px; width: 482px; }\",\".framer-55MWe .framer-er8ik2 { background-color: rgba(0, 0, 0, 0); bottom: 230px; flex: none; height: 4px; left: 651px; position: absolute; width: 482px; }\",\".framer-55MWe .framer-9j276k { bottom: 149px; flex: none; height: 54px; left: 656px; position: absolute; white-space: pre-wrap; width: 472px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1rkk64l { bottom: 105px; flex: none; height: 24px; left: 690px; position: absolute; white-space: pre-wrap; width: 137px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-ojwb9z { bottom: 109px; flex: none; height: 17px; left: 656px; position: absolute; width: 22px; }\",\".framer-55MWe .framer-nl4wt0 { border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; box-shadow: 22px 11px 25px -1px rgba(5, 62, 95, 0.58); flex: none; height: 605px; left: 1px; overflow: hidden; position: absolute; top: 0px; width: 590px; will-change: var(--framer-will-change-override, transform); }\",\".framer-55MWe .framer-18bfev7 { flex: none; height: 607px; left: calc(50.00000000000002% - 592px / 2); position: absolute; top: calc(50.082644628099196% - 607px / 2); width: 592px; }\",\".framer-55MWe .framer-11nxs05 { flex: none; height: 36px; left: 61px; position: absolute; top: 56px; white-space: pre-wrap; width: 222px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1ul1d4p { flex: none; height: 18px; left: 61px; position: absolute; top: 179px; white-space: pre-wrap; width: 161px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-dm1l24 { flex: none; height: 4px; left: calc(49.8310810810811% - 482px / 2); position: absolute; top: 137px; width: 482px; }\",\".framer-55MWe .framer-2gdiv7 { flex: none; height: 18px; left: 400px; position: absolute; top: 179px; white-space: pre-wrap; width: 137px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1jetnh9 { flex: none; height: 29px; left: 360px; position: absolute; top: 174px; width: 28px; }\",\".framer-55MWe .framer-1fygjxq { flex: none; height: 18px; left: 61px; position: absolute; top: calc(46.53465346534656% - 18px / 2); white-space: pre-wrap; width: 175px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-casp8s { flex: none; height: 18px; left: 401px; position: absolute; top: calc(46.61157024793391% - 18px / 2); white-space: pre-wrap; width: 128px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-wu4h3 { flex: none; height: 29px; left: 360px; position: absolute; top: calc(46.53465346534656% - 29px / 2); width: 28px; }\",\".framer-55MWe .framer-fgxkkg { bottom: 236px; flex: none; height: 54px; left: 61px; overflow: visible; position: absolute; width: 236px; }\",\".framer-55MWe .framer-ws665a { flex: none; height: 4px; left: calc(49.8310810810811% - 482px / 2); position: absolute; top: 231px; width: 482px; }\",\".framer-55MWe .framer-eg2mbv { bottom: 198px; flex: none; height: 4px; left: calc(49.8310810810811% - 482px / 2); position: absolute; width: 482px; }\",\".framer-55MWe .framer-1tv4shx { bottom: 110px; flex: none; height: 54px; left: calc(48.141891891891916% - 449px / 2); overflow: visible; position: absolute; width: 449px; }\",\".framer-55MWe .framer-1oerxbo { bottom: 0px; flex: none; left: 0px; position: absolute; right: -23px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-ijh61w { bottom: 57px; flex: none; height: 24px; left: 61px; overflow: visible; position: absolute; width: 123px; }\",\".framer-55MWe .framer-e7yy1p { bottom: 0px; flex: none; left: 34px; position: absolute; right: -39px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-qfpaze { bottom: -593px; flex: none; height: 17px; position: absolute; right: -1529px; width: 22px; }\",\".framer-55MWe .framer-cdtp1q, .framer-55MWe .framer-mh61wf, .framer-55MWe .framer-snqgox, .framer-55MWe .framer-uqq56z { flex: none; height: 17px; left: 0px; position: absolute; top: 3px; width: 22px; }\",\".framer-55MWe .framer-1v4t7w2 { bottom: 272px; flex: none; height: 21px; position: absolute; right: 0px; white-space: pre-wrap; width: 529px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1vmcr5y { bottom: 254px; flex: none; height: 18px; left: calc(50.50847457627121% - 475px / 2); position: absolute; white-space: pre-wrap; width: 475px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1raq0ik { bottom: 227px; flex: none; height: 24px; left: calc(50.16949152542375% - 472px / 2); position: absolute; white-space: pre-wrap; width: 472px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1o23pq0 { flex: none; height: 566px; left: calc(49.74226804123714% - 391px / 2); overflow: hidden; position: absolute; top: calc(50.72697899838451% - 566px / 2); width: 391px; }\",\".framer-55MWe .framer-1eqz0hv { flex: none; height: 566px; left: calc(50.51282051282053% - 364px / 2); position: absolute; top: calc(50.00000000000002% - 566px / 2); width: 364px; }\",\".framer-55MWe .framer-k4abd1 { flex: none; height: 36px; left: calc(39.48717948717951% - 222px / 2); position: absolute; top: calc(8.83392226148412% - 36px / 2); white-space: pre-wrap; width: 222px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-prrwwf { flex: none; height: 21px; left: calc(50.51282051282053% - 309px / 2); position: absolute; top: calc(22.261484098939953% - 21px / 2); white-space: pre-wrap; width: 309px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1rs8k7t { bottom: 106px; flex: none; height: 60px; left: calc(50.25641025641028% - 310px / 2); position: absolute; white-space: pre-wrap; width: 310px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1swq0ao { flex: none; height: 4px; left: calc(50.25641025641028% - 310px / 2); position: absolute; top: 91px; width: 310px; }\",\".framer-55MWe .framer-xahq1m { flex: none; height: 18px; left: calc(50.00000000000002% - 304px / 2); position: absolute; top: calc(40.45936395759719% - 18px / 2); white-space: pre-wrap; width: 304px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1g8uy3f, .framer-55MWe .framer-rhuqmd { bottom: 238px; flex: none; height: 54px; left: 62px; overflow: visible; position: absolute; width: 236px; }\",\".framer-55MWe .framer-1yvqphg { flex: none; height: 4px; left: calc(50.25641025641028% - 310px / 2); position: absolute; top: 194px; width: 310px; }\",\".framer-55MWe .framer-a9tn12 { bottom: 189px; flex: none; height: 4px; left: calc(50.00000000000002% - 310px / 2); position: absolute; width: 310px; }\",\".framer-55MWe .framer-1niaod9 { flex: none; height: 24px; left: calc(26.410256410256434% - 123px / 2); overflow: visible; position: absolute; top: calc(92.57950530035338% - 24px / 2); width: 123px; }\",\".framer-55MWe .framer-wsrs4 { bottom: 0px; flex: none; position: absolute; right: -42px; top: 0px; white-space: pre-wrap; width: 131px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-gzzmf4, .framer-55MWe .framer-1h8ztts { flex: none; height: 17px; left: 0px; position: absolute; top: calc(45.83333333333336% - 17px / 2); width: 22px; }\",\".framer-55MWe .framer-1apsmyk { flex: none; height: 21px; left: calc(54.35897435897438% - 279px / 2); position: absolute; top: 154px; white-space: pre-wrap; width: 279px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-mnildk { flex: none; height: 21px; left: 41px; position: absolute; top: 154px; width: 21px; }\",\".framer-55MWe .framer-544ocs { flex: none; height: 19px; left: calc(54.35897435897438% - 278px / 2); position: absolute; top: calc(46.466431095406385% - 19px / 2); white-space: pre-wrap; width: 278px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1hhcuv8 { flex: none; height: 21px; left: 41px; position: absolute; top: calc(46.64310954063606% - 21px / 2); width: 21px; }\",\".framer-55MWe .framer-16s6oeu { flex: none; height: 22px; left: calc(49.743589743589766% - 306px / 2); position: absolute; top: calc(53.1802120141343% - 22px / 2); white-space: pre-wrap; width: 306px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1ao2gcb { flex: none; height: 19px; left: calc(49.743589743589766% - 307px / 2); position: absolute; top: calc(56.360424028268575% - 19px / 2); white-space: pre-wrap; width: 307px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1dha7s8 { flex: none; height: 29px; left: calc(49.743589743589766% - 306px / 2); position: absolute; top: calc(60.954063604240304% - 29px / 2); white-space: pre-wrap; width: 306px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-18e3j14 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-55MWe .framer-1295klh { flex: none; height: 252px; left: calc(50.00000000000002% - 1199px / 2); overflow: hidden; position: absolute; top: 4235px; width: 1199px; z-index: 1; }\",\".framer-55MWe .framer-coinsd { flex: none; height: 202px; left: -1px; overflow: visible; position: absolute; right: -1px; top: 84px; }\",\".framer-55MWe .framer-tmglf4 { background: linear-gradient(180deg, var(--token-b290907c-0651-42a9-af01-30ab122622bf, #f8d010) 0%, var(--token-3090e67a-b126-4560-a888-7f739f94468b, rgb(247, 176, 18)) 100%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 26px 33px -32px #5f5d5d; flex: none; height: 139px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: -76px; will-change: var(--framer-will-change-override, transform); }\",\".framer-55MWe .framer-hmd7ex { flex: none; height: 39px; left: 60px; overflow: visible; position: absolute; top: calc(51.07913669064751% - 39px / 2); width: 424px; }\",\".framer-55MWe .framer-10pwsps { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-55MWe .framer-5zikms { flex: none; height: 66px; left: 535px; overflow: hidden; position: absolute; text-decoration: none; top: calc(50.35971223021585% - 66px / 2); width: 200px; }\",\".framer-55MWe .framer-fsf0jn, .framer-55MWe .framer-rj3ev8 { border-bottom-left-radius: 54px; border-bottom-right-radius: 54px; border-top-left-radius: 54px; border-top-right-radius: 54px; flex: none; height: 66px; left: calc(50.00000000000002% - 200px / 2); position: absolute; top: calc(50.00000000000002% - 66px / 2); width: 200px; }\",\".framer-55MWe .framer-1ocu6h9 { flex: none; height: 24px; left: 77px; position: absolute; top: calc(48.484848484848506% - 24px / 2); white-space: pre-wrap; width: 87px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1nbuekk { flex: none; height: 17px; left: 35px; position: absolute; top: calc(48.484848484848506% - 17px / 2); width: 22px; }\",\".framer-55MWe .framer-hgr560 { flex: none; height: 66px; left: 943px; overflow: hidden; position: absolute; text-decoration: none; top: -39px; width: 200px; }\",\".framer-55MWe .framer-2nw7aj { flex: none; height: 24px; left: 77px; position: absolute; top: calc(50.00000000000002% - 24px / 2); white-space: pre-wrap; width: 87px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1vjka62 { flex: none; height: 17px; left: 35px; position: absolute; top: calc(50.00000000000002% - 17px / 2); width: 22px; }\",\".framer-55MWe .framer-3nq5zo { aspect-ratio: 2.893081761006289 / 1; bottom: 40px; flex: none; height: var(--framer-aspect-ratio-supported, 61px); left: 0px; overflow: visible; position: absolute; width: 177px; }\",\".framer-55MWe .framer-1bmjiqi { flex: none; height: 16px; left: 797px; position: absolute; top: 124px; white-space: pre-wrap; width: 402px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-spkmu2 { flex: none; height: 188px; left: calc(50.00000000000002% - 1200px / 2); overflow: hidden; position: absolute; top: 4507px; width: 1200px; z-index: 1; }\",\".framer-55MWe .framer-1h325pi { flex: none; height: 175px; left: calc(50.00000000000002% - 1200px / 2); overflow: hidden; position: absolute; top: calc(49.468085106383% - 175px / 2); width: 1200px; }\",\".framer-55MWe .framer-1nfwqzc, .framer-55MWe .framer-vs3df3 { flex: none; height: 3px; left: -2px; position: absolute; right: -7px; top: 10px; }\",\".framer-55MWe .framer-7ydnxs, .framer-55MWe .framer-10sbfb8 { bottom: 7px; flex: none; height: 14px; left: 0px; position: absolute; white-space: pre-wrap; width: 398px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-a2ahxq, .framer-55MWe .framer-12972sj { flex: none; height: 19px; left: 1px; position: absolute; top: 45px; white-space: pre-wrap; width: 58px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-10ogno0 { flex: none; height: 19px; left: 210px; position: absolute; top: 45px; white-space: pre-wrap; width: 64px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-f3rjpo { flex: none; height: 19px; left: 425px; position: absolute; top: 45px; white-space: pre-wrap; width: 113px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-q0fv7v { flex: none; height: 19px; left: 688px; position: absolute; top: 45px; white-space: pre-wrap; width: 116px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1ymgai5 { flex: none; height: 19px; left: 955px; position: absolute; top: 45px; white-space: pre-wrap; width: 44px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-64tuij, .framer-55MWe .framer-144cnoz { flex: none; height: 19px; position: absolute; right: 0px; top: 45px; white-space: pre-wrap; width: 50px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1pj5hxy-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 4604px; z-index: 1; }\",\".framer-55MWe .framer-ql0pi { flex: none; height: 751px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 1336px; width: 100%; z-index: 1; }\",\".framer-55MWe .framer-1jiqsbs { bottom: 63px; flex: none; height: 251px; left: -367px; position: absolute; right: -374px; }\",\".framer-55MWe .framer-1glkeye { flex: none; height: 665px; left: calc(50.00000000000002% - 1200px / 2); overflow: hidden; position: absolute; top: calc(48.6018641810919% - 665px / 2); width: 1200px; }\",\".framer-55MWe .framer-mchghu { border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; flex: none; height: 226px; position: absolute; right: -1px; top: calc(54.58646616541356% - 226px / 2); width: 375px; }\",\".framer-55MWe .framer-b5az37 { bottom: -1px; flex: none; height: 188px; left: -1px; position: absolute; width: 375px; }\",\".framer-55MWe .framer-68w6cy { flex: none; height: 38px; left: 116px; overflow: visible; position: absolute; top: 134px; width: 574px; }\",\".framer-55MWe .framer-8iym2y { bottom: 33px; flex: none; left: 0px; position: absolute; right: -356px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-9d3o4o { flex: none; height: 27px; left: calc(50.16666666666669% - 972px / 2); position: absolute; top: 180px; white-space: pre-wrap; width: 972px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-5e3i2e { flex: none; height: 89px; left: 0px; position: absolute; top: 121px; width: 88px; }\",\".framer-55MWe .framer-1tla9gf { border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; flex: none; height: 226px; left: 0px; position: absolute; top: calc(54.58646616541356% - 226px / 2); width: 375px; }\",\".framer-55MWe .framer-1bx7jse { border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; flex: none; height: 226px; left: calc(50.00000000000002% - 375px / 2); position: absolute; top: calc(54.58646616541356% - 226px / 2); width: 375px; }\",\".framer-55MWe .framer-1r6w546 { bottom: 189px; flex: none; height: 188px; left: 0px; position: absolute; width: 375px; }\",\".framer-55MWe .framer-jkg0ps { bottom: 189px; flex: none; height: 188px; left: calc(50.00000000000002% - 375px / 2); position: absolute; width: 375px; }\",\".framer-55MWe .framer-1y3dv44 { bottom: 232px; flex: none; height: 18px; left: 40px; position: absolute; white-space: pre-wrap; width: 134px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-q6zy0y { bottom: 232px; flex: none; height: 18px; left: calc(45.50000000000002% - 179px / 2); position: absolute; white-space: pre-wrap; width: 179px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1cyws6q { bottom: 232px; flex: none; height: 18px; left: 873px; position: absolute; white-space: pre-wrap; width: 196px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-154ohna { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 55px); left: 17px; position: absolute; top: 139px; width: 55px; }\",\".framer-55MWe .framer-gtkidl { border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; bottom: 78px; box-shadow: 15px 7px 21px 0px var(--token-d2508656-f2d4-434d-8751-bab250e0d5b4, rgba(5, 62, 95, 0.53)); flex: none; height: 65px; left: 0px; overflow: hidden; position: absolute; width: 426px; will-change: var(--framer-will-change-override, transform); }\",\".framer-55MWe .framer-zgb6k9 { flex: none; height: 24px; left: calc(49.5305164319249% - 353px / 2); overflow: visible; position: absolute; top: calc(49.230769230769255% - 24px / 2); width: 353px; }\",\".framer-55MWe .framer-13ugkvh { bottom: -22px; flex: none; left: -35px; position: absolute; right: -38px; text-decoration: none; top: -20px; }\",\".framer-55MWe .framer-673oje { bottom: 0px; flex: none; left: 34px; position: absolute; right: 0px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1rq5mdu { flex: none; height: 613px; overflow: hidden; position: relative; width: 100%; z-index: 1; }\",\".framer-55MWe .framer-1sg2kjv { flex: none; height: 600px; left: calc(50.124069478908204% - 808px / 2); overflow: hidden; position: absolute; top: calc(49.375600384245935% - 600px / 2); width: 808px; }\",\".framer-55MWe .framer-18mgrou { bottom: 55px; flex: none; height: 36px; left: 99px; position: absolute; white-space: pre-wrap; width: 224px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-16dxb5y { flex: none; height: 600px; left: calc(50.00000000000002% - 808px / 2); position: absolute; top: 0px; width: 808px; }\",\".framer-55MWe .framer-t97ibw { bottom: 119px; flex: none; height: 56px; left: calc(50.13698630136989% - 309px / 2); position: absolute; white-space: pre-wrap; width: 309px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-lnjg29 { flex: none; height: 46px; left: 62px; position: absolute; top: 57px; white-space: pre-wrap; width: 269px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1uzuyis { flex: none; height: 18px; left: 62px; position: absolute; top: 180px; white-space: pre-wrap; width: 161px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-12xmb1i { flex: none; height: 18px; left: 509px; position: absolute; top: 180px; white-space: pre-wrap; width: 109px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-be09lb { flex: none; height: 29px; left: 469px; position: absolute; top: 175px; width: 28px; }\",\".framer-55MWe .framer-1742y0q { flex: none; height: 18px; left: 62px; position: absolute; top: calc(46.50000000000002% - 18px / 2); white-space: pre-wrap; width: 175px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-l8dc3y { flex: none; height: 35px; left: 509px; position: absolute; top: calc(47.83333333333336% - 35px / 2); white-space: pre-wrap; width: 109px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1l7813n, .framer-55MWe .framer-1norigj { flex: none; height: 4px; left: calc(49.58904109589044% - 310px / 2); position: absolute; top: 87px; width: 310px; }\",\".framer-55MWe .framer-12twxlp { flex: none; height: 4px; left: calc(49.86301369863016% - 310px / 2); opacity: 0.23; position: absolute; top: 215px; width: 310px; }\",\".framer-55MWe .framer-n8vdei { flex: none; height: 4px; left: calc(49.93597951344432% - 695px / 2); opacity: 0.23; position: absolute; top: 241px; width: 695px; }\",\".framer-55MWe .framer-1u7hmpe { flex: none; height: 29px; left: 469px; position: absolute; top: calc(46.50000000000002% - 29px / 2); width: 28px; }\",\".framer-55MWe .framer-1ovqpp8 { flex: none; height: 4px; left: calc(49.8762376237624% - 696px / 2); position: absolute; top: 232px; width: 696px; }\",\".framer-55MWe .framer-hldvsw { bottom: 200px; flex: none; height: 4px; left: calc(49.8762376237624% - 696px / 2); position: absolute; width: 696px; }\",\".framer-55MWe .framer-1lakbol { bottom: 111px; flex: none; height: 55px; left: 62px; overflow: visible; position: absolute; width: 471px; }\",\".framer-55MWe .framer-e50oi { flex: none; height: 56px; left: 0px; position: absolute; right: -218px; top: -3px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-dm2bet { bottom: 59px; flex: none; height: 24px; left: 62px; overflow: visible; position: absolute; width: 123px; }\",\".framer-55MWe .framer-1o8q73 { flex: none; height: 24px; position: absolute; right: 0px; top: -15px; white-space: pre-wrap; width: 89px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-aq1mgs { flex: none; height: 18px; left: 1001px; position: absolute; top: 180px; white-space: pre-wrap; width: 107px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1hdu52a { bottom: 52px; flex: none; height: 17px; left: 28px; position: absolute; width: 22px; }\",\".framer-55MWe .framer-1ard8ca { flex: none; height: 18px; left: 1001px; position: absolute; top: calc(46.50000000000002% - 18px / 2); white-space: pre-wrap; width: 74px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-7tet9m { flex: none; height: 29px; left: 960px; position: absolute; top: calc(46.50000000000002% - 29px / 2); width: 29px; }\",\".framer-55MWe .framer-1qhjm0b { flex: none; height: 22px; left: 70px; position: absolute; top: 145px; white-space: pre-wrap; width: 183px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-uh2m9r { flex: none; height: 29px; left: 30px; position: absolute; top: 149px; width: 28px; }\",\".framer-55MWe .framer-dkil2q { flex: none; height: 862px; left: calc(50.00000000000002% - 1200px / 2); overflow: hidden; position: absolute; top: 2033px; width: 1200px; z-index: 1; }\",\".framer-55MWe .framer-1lv2fp4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 0px; max-width: 100%; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 46%; transform: translateY(-50%); }\",\".framer-55MWe .framer-1a5ao5t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-55MWe .framer-iuz7tz, .framer-55MWe .framer-xq3fv0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-55MWe .framer-1ioce1j, .framer-55MWe .framer-1v583in { aspect-ratio: 0.9969879518072289 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 333px); overflow: visible; position: relative; width: 1px; }\",\".framer-55MWe .framer-j5y8no, .framer-55MWe .framer-1329zn2 { aspect-ratio: 1.501510574018127 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1.5 0 0px; height: var(--framer-aspect-ratio-supported, 331px); overflow: visible; position: relative; width: 1px; }\",\".framer-55MWe .framer-5xz4o4, .framer-55MWe .framer-73vmsx { aspect-ratio: 1 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 332px); overflow: visible; position: relative; width: 1px; }\",\".framer-55MWe .framer-1p7jah { bottom: 28px; flex: none; height: 24px; left: 34px; overflow: visible; position: absolute; text-decoration: none; width: 353px; }\",\".framer-55MWe .framer-1ehe4lf { border-bottom-left-radius: 54px; border-bottom-right-radius: 54px; border-top-left-radius: 54px; border-top-right-radius: 54px; flex: none; height: 66px; left: -35px; position: absolute; top: calc(54.166666666666686% - 66px / 2); width: 261px; }\",\".framer-55MWe .framer-3uzv6n { bottom: 0px; flex: none; left: 34px; position: absolute; right: 159px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-f4g7lr { flex: none; height: 514px; left: calc(50.00000000000002% - 1200px / 2); overflow: hidden; position: absolute; top: 3668px; width: 1200px; z-index: 1; }\",\".framer-55MWe .framer-amby0m { bottom: -60px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 93px; }\",\".framer-55MWe .framer-nrbaki { bottom: 3px; flex: none; height: 3px; left: 0px; position: absolute; right: 0px; }\",\".framer-55MWe .framer-hd54ac { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; left: 0px; padding: 0px; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); }\",\".framer-55MWe .framer-1gea1ac { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 23px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-55MWe .framer-1gqczw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 18px; min-width: 200px; padding: 0px; position: relative; width: 1px; }\",\".framer-55MWe .framer-152neu6 { bottom: 0px; flex: none; height: -31px; left: 0px; overflow: hidden; position: absolute; right: 0px; }\",\".framer-55MWe .framer-1gs8ai3 { flex: none; height: 18px; left: 0px; position: absolute; top: calc(51.33991537376589% - 18px / 2); white-space: pre-wrap; width: 348px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-duxdw { flex: none; height: 36px; left: 437px; overflow: visible; position: absolute; top: calc(53.878702397743325% - 36px / 2); width: 307px; }\",\".framer-55MWe .framer-5prebp { flex: none; height: 18px; left: -1px; position: absolute; top: -10px; white-space: pre-wrap; width: 307px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-19y0ygl { flex: none; height: 36px; left: 2px; position: absolute; top: 25px; white-space: pre-wrap; width: 463px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-o5yw2u { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 226px; position: absolute; right: -417px; top: -465px; width: 376px; }\",\".framer-55MWe .framer-1l7gpmc { flex: none; height: 78px; left: 17px; position: absolute; top: 29px; white-space: pre-wrap; width: 294px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-icqqr4 { bottom: 33px; display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: center; left: 49%; padding: 0px; position: absolute; transform: translateX(-50%); width: 767px; }\",\".framer-55MWe .framer-7dgxt4 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 23px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-55MWe .framer-1jaljdb { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 226px; position: relative; width: 375px; }\",\".framer-55MWe .framer-18xzi6f { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 1px; }\",\".framer-55MWe .framer-1jeqirz, .framer-55MWe .framer-18fy9nv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-skztot { align-content: flex-start; align-items: flex-start; bottom: 46px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; left: 50%; padding: 0px; position: absolute; transform: translateX(-50%); width: 390px; }\",\".framer-55MWe .framer-audhxm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-55MWe .framer-1xh0men { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 154px; position: relative; width: 362px; }\",\".framer-55MWe .framer-1emizr3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 100%; }\",\".framer-55MWe .framer-25j4wd { flex: none; height: 839px; overflow: hidden; position: relative; width: 808px; }\",\".framer-55MWe .framer-xvd53y { bottom: 33px; flex: none; height: 56px; left: calc(49.862258953168066% - 361px / 2); position: absolute; width: 361px; }\",\".framer-55MWe .framer-1k6zidm { bottom: 50px; flex: none; height: 24px; left: calc(49.862258953168066% - 319px / 2); position: absolute; white-space: pre-wrap; width: 319px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-13rrot1 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 122px; flex: none; height: 190px; left: 0px; position: absolute; width: 362px; }\",\".framer-55MWe .framer-u3xq20, .framer-55MWe .framer-19pdq86 { bottom: -1px; flex: none; height: 188px; left: 0px; position: absolute; right: 0px; }\",\".framer-55MWe .framer-12qxkjf, .framer-55MWe .framer-j0s18d { bottom: 37px; flex: none; height: 21px; left: 45px; position: absolute; white-space: pre-wrap; width: 208px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1i1umj0 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 185px; left: 0px; position: absolute; top: calc(54.18502202643174% - 185px / 2); width: 362px; }\",\".framer-55MWe .framer-1pf5bw2 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 0px; flex: none; height: 162px; left: calc(50.00000000000002% - 810px / 2); position: absolute; width: 810px; }\",\".framer-55MWe .framer-1llycu4 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 0px; flex: none; height: 72px; position: absolute; right: 0px; width: 362px; }\",\".framer-55MWe .framer-1bmygy5, .framer-55MWe .framer-e6l83u { bottom: 33px; flex: none; height: 18px; left: 40px; position: absolute; white-space: pre-wrap; width: 179px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1eamjfw { bottom: 147px; flex: none; height: 214px; left: calc(50.06211180124226% - 776px / 2); overflow: hidden; position: absolute; width: 776px; }\",\".framer-55MWe .framer-zrgupt { border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-55MWe .framer-1dohuqg { flex: none; height: 205px; left: calc(50.06211180124226% - 777px / 2); overflow: hidden; position: absolute; top: calc(51.43737166324438% - 205px / 2); width: 777px; }\",\".framer-55MWe .framer-1y985xd { border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; flex: none; height: 205px; left: calc(50.00000000000002% - 777px / 2); position: absolute; top: calc(50.00000000000002% - 205px / 2); width: 777px; }\",\".framer-55MWe .framer-10os6jg { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 0px; flex: none; height: 156px; left: calc(49.935649935649955% - 777px / 2); position: absolute; width: 777px; }\",\".framer-55MWe .framer-n5ucmx { flex: none; height: 381px; left: 0px; overflow: hidden; position: absolute; top: 10px; width: 793px; }\",\".framer-55MWe .framer-7dbli6 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 0px; flex: none; height: 191px; position: absolute; right: 0px; width: 778px; }\",\".framer-55MWe .framer-1uvt3hb { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 0px; flex: none; height: 72px; left: calc(50.00000000000002% - 362px / 2); position: absolute; width: 362px; }\",\".framer-55MWe .framer-yaplgl { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 181px; left: 0px; position: absolute; top: 0px; width: 779px; }\",\".framer-55MWe .framer-ljtn9l { bottom: 33px; flex: none; height: 18px; left: 25px; position: absolute; white-space: pre-wrap; width: 134px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1dfbze7 { flex: none; height: 36px; left: 116px; position: absolute; top: 59px; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-zxmo57 { flex: none; height: 18px; left: 40px; position: absolute; top: 340px; white-space: pre-wrap; width: 134px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1jjxl6u { flex: none; height: 36px; left: -1px; position: absolute; top: 57px; white-space: pre-wrap; width: 279px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1l88czv { flex: none; height: 18px; left: 116px; position: absolute; top: 136px; white-space: pre-wrap; width: 348px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-z43qpw { flex: none; height: 89px; left: 0px; overflow: hidden; position: absolute; top: 61px; width: 90px; }\",\".framer-55MWe .framer-1jrob83 { flex: none; height: 89px; left: calc(50.00000000000002% - 88px / 2); position: absolute; top: calc(49.43820224719103% - 89px / 2); width: 88px; }\",\".framer-55MWe .framer-sx1dao { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 55px); left: 50%; position: absolute; top: 51%; transform: translate(-50%, -50%); width: 55px; }\",\".framer-55MWe .framer-14fqjyo { bottom: 30px; flex: none; height: 18px; left: 60px; position: absolute; white-space: pre-wrap; width: 179px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-se4ji6 { bottom: -174px; flex: none; height: 283px; left: -1332px; position: absolute; width: 745px; }\",\".framer-55MWe .framer-70bzsx { bottom: 50px; flex: none; height: 67px; left: calc(50.18633540372674% - 430.98924731182797px / 2); position: absolute; width: 431px; }\",\".framer-55MWe .framer-v9qist { bottom: 70px; flex: none; height: 24px; left: calc(49.56521739130437% - 357.1053763440859px / 2); overflow: visible; position: absolute; width: 357px; }\",\".framer-55MWe .framer-12i8xqb { bottom: 73px; flex: none; height: 24px; left: calc(52.67080745341617% - 319px / 2); position: absolute; white-space: pre-wrap; width: 319px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-6amybu { border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; bottom: 34px; box-shadow: 0px 19px 17px -11px var(--token-d2508656-f2d4-434d-8751-bab250e0d5b4, rgba(5, 62, 95, 0.53)); flex: none; height: 55px; left: calc(49.862258953168066% - 361px / 2); overflow: hidden; position: absolute; text-decoration: none; width: 361px; will-change: var(--framer-will-change-override, transform); }\",\".framer-55MWe .framer-188wytz { border-bottom-left-radius: 47px; border-bottom-right-radius: 47px; border-top-left-radius: 47px; border-top-right-radius: 47px; bottom: 51px; box-shadow: 0px 23px 11px -14px var(--token-d2508656-f2d4-434d-8751-bab250e0d5b4, rgba(5, 62, 95, 0.53)); flex: none; height: 66px; left: calc(50.18633540372674% - 429px / 2); overflow: hidden; position: absolute; text-decoration: none; width: 429px; will-change: var(--framer-will-change-override, transform); }\",\".framer-55MWe .framer-zphcts-container { flex: none; height: 816px; left: calc(50.00000000000002% - 1200px / 2); position: absolute; top: 2916px; width: 1200px; z-index: 0; }\",\".framer-55MWe .framer-qg2n9w { flex: none; height: 197px; left: calc(50.00000000000002% - 812px / 2); overflow: hidden; position: absolute; top: 5350px; width: 812px; z-index: 1; }\",\".framer-55MWe .framer-t9ickj { flex: none; height: 19px; left: 132px; position: absolute; top: 45px; white-space: pre-wrap; width: 64px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1twdy1z { flex: none; height: 19px; left: 269px; position: absolute; top: 45px; white-space: pre-wrap; width: 113px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-rlthty { flex: none; height: 19px; left: 456px; position: absolute; top: 45px; white-space: pre-wrap; width: 116px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1msnz5f { flex: none; height: 19px; left: 645px; position: absolute; top: 45px; white-space: pre-wrap; width: 44px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-1xy3o9n { background-color: #ffffff; bottom: 84px; flex: none; height: 347px; left: calc(50.00000000000002% - 376px / 2); overflow: hidden; position: absolute; width: 376px; z-index: 1; }\",\".framer-55MWe .framer-1q24jjh { background: linear-gradient(180deg, var(--token-b290907c-0651-42a9-af01-30ab122622bf, #f8d010) 0%, var(--token-3090e67a-b126-4560-a888-7f739f94468b, rgb(247, 176, 18)) 100%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 26px 33px -32px #5f5d5d; flex: none; height: 210px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-55MWe .framer-1lx5k4q { flex: none; height: 65px; left: calc(50.797872340425556% - 277px / 2); overflow: visible; position: absolute; top: 43px; width: 277px; }\",\".framer-55MWe .framer-1ballbv { flex: none; height: auto; left: 49%; position: absolute; top: -9px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-55MWe .framer-1tizbw9 { bottom: -5000px; flex: none; height: 5148px; overflow: hidden; position: absolute; right: -2768px; text-decoration: none; width: 3086px; }\",\".framer-55MWe .framer-j275om { border-bottom-left-radius: 54px; border-bottom-right-radius: 54px; border-top-left-radius: 54px; border-top-right-radius: 54px; flex: none; height: 55px; left: calc(50.00000000000002% - 166px / 2); position: absolute; top: calc(49.090909090909115% - 55px / 2); width: 166px; }\",\".framer-55MWe .framer-2hjf0j { flex: none; height: 24px; left: 64px; position: absolute; top: calc(49.090909090909115% - 24px / 2); white-space: pre-wrap; width: 72px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-x9v32z { flex: none; height: 18px; left: 28px; position: absolute; top: calc(50.90909090909093% - 18px / 2); width: 23px; }\",\".framer-55MWe .framer-zk5hv1 { aspect-ratio: 2.893081761006289 / 1; bottom: 35px; flex: none; height: var(--framer-aspect-ratio-supported, 61px); left: 50%; overflow: visible; position: absolute; transform: translateX(-50%); width: 176px; }\",\".framer-55MWe .framer-wymr3u { bottom: 0px; flex: none; height: 23px; left: calc(49.73404255319151% - 359px / 2); position: absolute; white-space: pre-wrap; width: 359px; word-break: break-word; word-wrap: break-word; }\",\".framer-55MWe .framer-11to56-container { bottom: 0px; flex: none; height: auto; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-55MWe.framer-166anki, .framer-55MWe .framer-7r1h71, .framer-55MWe .framer-111f0xx, .framer-55MWe .framer-1lv2fp4, .framer-55MWe .framer-1a5ao5t, .framer-55MWe .framer-iuz7tz, .framer-55MWe .framer-xq3fv0, .framer-55MWe .framer-hd54ac, .framer-55MWe .framer-1gea1ac, .framer-55MWe .framer-1gqczw, .framer-55MWe .framer-7dgxt4, .framer-55MWe .framer-18xzi6f, .framer-55MWe .framer-skztot, .framer-55MWe .framer-audhxm, .framer-55MWe .framer-1emizr3 { gap: 0px; } .framer-55MWe.framer-166anki > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-55MWe.framer-166anki > :first-child, .framer-55MWe .framer-111f0xx > :first-child, .framer-55MWe .framer-1lv2fp4 > :first-child, .framer-55MWe .framer-1a5ao5t > :first-child, .framer-55MWe .framer-1gqczw > :first-child, .framer-55MWe .framer-18xzi6f > :first-child, .framer-55MWe .framer-skztot > :first-child, .framer-55MWe .framer-audhxm > :first-child, .framer-55MWe .framer-1emizr3 > :first-child { margin-top: 0px; } .framer-55MWe.framer-166anki > :last-child, .framer-55MWe .framer-111f0xx > :last-child, .framer-55MWe .framer-1lv2fp4 > :last-child, .framer-55MWe .framer-1a5ao5t > :last-child, .framer-55MWe .framer-1gqczw > :last-child, .framer-55MWe .framer-18xzi6f > :last-child, .framer-55MWe .framer-skztot > :last-child, .framer-55MWe .framer-audhxm > :last-child, .framer-55MWe .framer-1emizr3 > :last-child { margin-bottom: 0px; } .framer-55MWe .framer-7r1h71 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-55MWe .framer-7r1h71 > :first-child, .framer-55MWe .framer-iuz7tz > :first-child, .framer-55MWe .framer-xq3fv0 > :first-child, .framer-55MWe .framer-hd54ac > :first-child, .framer-55MWe .framer-1gea1ac > :first-child, .framer-55MWe .framer-7dgxt4 > :first-child { margin-left: 0px; } .framer-55MWe .framer-7r1h71 > :last-child, .framer-55MWe .framer-iuz7tz > :last-child, .framer-55MWe .framer-xq3fv0 > :last-child, .framer-55MWe .framer-hd54ac > :last-child, .framer-55MWe .framer-1gea1ac > :last-child, .framer-55MWe .framer-7dgxt4 > :last-child { margin-right: 0px; } .framer-55MWe .framer-111f0xx > *, .framer-55MWe .framer-1lv2fp4 > *, .framer-55MWe .framer-1a5ao5t > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-55MWe .framer-iuz7tz > *, .framer-55MWe .framer-xq3fv0 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-55MWe .framer-hd54ac > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-55MWe .framer-1gea1ac > *, .framer-55MWe .framer-7dgxt4 > * { margin: 0px; margin-left: calc(23px / 2); margin-right: calc(23px / 2); } .framer-55MWe .framer-1gqczw > *, .framer-55MWe .framer-18xzi6f > *, .framer-55MWe .framer-1emizr3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-55MWe .framer-skztot > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-55MWe .framer-audhxm > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-55MWe.framer-166anki { height: 5499px; width: 810px; } .framer-55MWe .framer-1l1pn6o-container { height: 47px; order: 1; width: 807px; } .framer-55MWe .framer-1cvai2w-container { order: 2; width: 100%; } .framer-55MWe .framer-7r1h71 { order: 3; } .framer-55MWe .framer-99gdi1-container { flex: none; height: 639px; width: 770px; } .framer-55MWe .framer-7se2m1 { height: 619px; order: 9; width: 96%; } .framer-55MWe .framer-1gmgrun { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: 597px; left: calc(49.8717948717949% - 780px / 2); top: calc(49.43457189014542% - 597px / 2); width: 780px; will-change: var(--framer-will-change-override, transform); } .framer-55MWe .framer-1yztq7m { bottom: 55px; left: 99px; top: unset; } .framer-55MWe .framer-1rdq0u4 { top: calc(46.50000000000002% - 29px / 2); } .framer-55MWe .framer-nl4wt0 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: -1px; height: unset; left: calc(50.00000000000002% - 778px / 2); width: 778px; } .framer-55MWe .framer-18bfev7 { height: 610px; left: calc(49.10256410256412% - 822px / 2); top: calc(50.74875207986691% - 610px / 2); width: 822px; } .framer-55MWe .framer-dm1l24 { height: 2px; left: calc(49.8762376237624% - 696px / 2); top: 138px; width: 696px; } .framer-55MWe .framer-2gdiv7 { left: 509px; } .framer-55MWe .framer-1jetnh9 { left: 469px; } .framer-55MWe .framer-1fygjxq { top: calc(46.50000000000002% - 18px / 2); } .framer-55MWe .framer-casp8s { left: 509px; top: calc(46.50000000000002% - 18px / 2); } .framer-55MWe .framer-wu4h3 { left: 469px; top: calc(46.50000000000002% - 29px / 2); } .framer-55MWe .framer-fgxkkg { bottom: 238px; } .framer-55MWe .framer-ws665a { left: calc(49.8762376237624% - 696px / 2); width: 696px; } .framer-55MWe .framer-eg2mbv { bottom: 200px; left: calc(49.8762376237624% - 696px / 2); width: 696px; } .framer-55MWe .framer-1tv4shx { bottom: 111px; height: 55px; left: calc(36.75742574257428% - 471px / 2); width: 471px; } .framer-55MWe .framer-1oerxbo { bottom: -1px; right: -218px; } .framer-55MWe .framer-ijh61w { bottom: 59px; } .framer-55MWe .framer-e7yy1p { bottom: unset; height: 24px; left: unset; top: -15px; width: 128px; } .framer-55MWe .framer-cdtp1q { left: 0px; top: -12px; } .framer-55MWe .framer-1v4t7w2 { height: unset; left: 62px; right: 477px; top: 304px; width: unset; } .framer-55MWe .framer-1vmcr5y { bottom: 250px; height: unset; left: 62px; right: 503px; top: 328px; width: unset; } .framer-55MWe .framer-1raq0ik { bottom: 230px; height: unset; left: 62px; right: 473px; top: 350px; width: unset; } .framer-55MWe .framer-18e3j14 { order: 15; } .framer-55MWe .framer-1295klh { left: calc(49.876543209876566% - 774px / 2); order: 4; top: 5075px; width: 774px; } .framer-55MWe .framer-hmd7ex { bottom: 15px; height: 88px; left: 39px; top: unset; width: 259px; } .framer-55MWe .framer-1bmjiqi { bottom: 65px; left: unset; right: 0px; top: unset; } .framer-55MWe .framer-spkmu2 { order: 5; } .framer-55MWe .framer-1pj5hxy-container { order: 6; top: 5455px; } .framer-55MWe .framer-1rq5mdu { order: 10; } .framer-55MWe .framer-1sg2kjv { left: calc(50.2481389578164% - 781px / 2); top: calc(49.26590538336054% - 600px / 2); width: 781px; } .framer-55MWe .framer-12xmb1i { top: 172px; width: 178px; } .framer-55MWe .framer-1742y0q { top: calc(47.50000000000002% - 18px / 2); } .framer-55MWe .framer-l8dc3y { height: 36px; top: calc(48.83333333333336% - 36px / 2); width: 141px; } .framer-55MWe .framer-1norigj { left: calc(49.8762376237624% - 695px / 2); top: 132px; width: 695px; } .framer-55MWe .framer-12twxlp { bottom: 193px; left: calc(49.93597951344432% - 695px / 2); top: unset; width: 695px; } .framer-55MWe .framer-1u7hmpe { top: calc(47.50000000000002% - 29px / 2); } .framer-55MWe .framer-rhuqmd { width: 284px; } .framer-55MWe .framer-dm2bet { bottom: 69px; } .framer-55MWe .framer-1o8q73 { height: 20px; right: -50px; top: 0px; width: 139px; } .framer-55MWe .framer-dkil2q { height: 596px; left: calc(50.00000000000002% - 811px / 2); order: 13; top: 2893px; width: 811px; } .framer-55MWe .framer-1a5ao5t { order: 0; } .framer-55MWe .framer-iuz7tz { order: 0; width: 775px; } .framer-55MWe .framer-1ioce1j { height: var(--framer-aspect-ratio-supported, 211px); order: 0; } .framer-55MWe .framer-j5y8no { flex: none; height: var(--framer-aspect-ratio-supported, 210px); order: 1; width: 41%; } .framer-55MWe .framer-5xz4o4 { height: var(--framer-aspect-ratio-supported, 210px); order: 2; } .framer-55MWe .framer-xq3fv0 { order: 1; width: 776px; } .framer-55MWe .framer-1329zn2 { height: var(--framer-aspect-ratio-supported, 210px); } .framer-55MWe .framer-73vmsx, .framer-55MWe .framer-1v583in { height: var(--framer-aspect-ratio-supported, 211px); } .framer-55MWe .framer-1p7jah { left: 314px; } .framer-55MWe .framer-f4g7lr { height: 1253px; left: calc(50.00000000000002% - 810px / 2); order: 0; top: 3791px; width: 810px; } .framer-55MWe .framer-152neu6 { height: 709px; left: calc(49.876543209876566% - 773px / 2); right: unset; width: 773px; } .framer-55MWe .framer-25j4wd { bottom: -1864px; height: 974px; left: 0px; order: 12; position: fixed; width: 805px; z-index: 1; } .framer-55MWe .framer-1dohuqg { height: 206px; left: calc(50.06211180124226% - 778px / 2); top: calc(51.43737166324438% - 206px / 2); width: 778px; } .framer-55MWe .framer-n5ucmx { height: 191px; left: calc(50.18633540372674% - 780px / 2); top: 200px; width: 780px; } .framer-55MWe .framer-7dbli6 { height: unset; left: calc(50.00000000000002% - 778px / 2); right: unset; top: 0px; } .framer-55MWe .framer-yaplgl { bottom: 0px; left: calc(50.00000000000002% - 779px / 2); top: unset; } .framer-55MWe .framer-1dfbze7 { left: calc(54.409937888198776% - 608px / 2); top: 63px; width: 608px; } .framer-55MWe .framer-1l88czv { height: 39px; left: calc(54.409937888198776% - 607px / 2); top: 110px; width: 607px; } .framer-55MWe .framer-z43qpw { left: 18px; width: 88px; } .framer-55MWe .framer-12i8xqb { bottom: 71px; left: calc(51.80124223602487% - 319px / 2); } .framer-55MWe .framer-zphcts-container { left: calc(50.617283950617306% - 807px / 2); order: 11; top: 3537px; width: 807px; } .framer-55MWe .framer-qg2n9w { order: 14; }}\",\"@media (max-width: 809px) { .framer-55MWe.framer-166anki { height: 5501px; width: 390px; } .framer-55MWe .framer-1l1pn6o-container { height: 46px; order: 0; width: 390px; } .framer-55MWe .framer-1cvai2w-container { order: 1; width: 390px; z-index: 3; } .framer-55MWe .framer-7r1h71 { background-color: unset; height: 493px; order: 2; width: 389px; } .framer-55MWe .framer-99gdi1-container { flex: none; height: 503px; width: 390px; } .framer-55MWe .framer-7se2m1 { height: 619px; order: 8; width: 100%; } .framer-55MWe .framer-18e3j14 { order: 15; } .framer-55MWe .framer-1295klh { order: 4; } .framer-55MWe .framer-1rq5mdu { order: 9; } .framer-55MWe .framer-1sg2kjv { height: 603px; left: calc(50.00000000000002% - 365px / 2); top: calc(49.10277324632955% - 603px / 2); width: 365px; } .framer-55MWe .framer-16dxb5y { height: 612px; left: calc(62.19178082191783% - 824px / 2); top: -20px; width: 824px; } .framer-55MWe .framer-lnjg29 { left: 28px; top: 33px; } .framer-55MWe .framer-1uzuyis { left: 29px; top: 115px; } .framer-55MWe .framer-12xmb1i { height: 24px; left: 70px; top: calc(47.76119402985077% - 24px / 2); width: 159px; } .framer-55MWe .framer-be09lb { left: 30px; top: calc(47.26368159203982% - 29px / 2); } .framer-55MWe .framer-1742y0q { left: 29px; top: 238px; } .framer-55MWe .framer-1norigj { left: calc(49.86301369863016% - 310px / 2); opacity: 0.23; top: 209px; } .framer-55MWe .framer-12twxlp { bottom: 200px; top: unset; } .framer-55MWe .framer-dm2bet { bottom: 45px; height: 14px; left: 28px; width: 119px; } .framer-55MWe .framer-1o8q73 { height: 23px; right: -46px; width: 135px; } .framer-55MWe .framer-dkil2q { height: 540px; left: calc(50.00000000000002% - 811px / 2); order: 10; top: 2693px; width: 811px; } .framer-55MWe .framer-1a5ao5t { order: 0; } .framer-55MWe .framer-iuz7tz { order: 0; width: 363px; } .framer-55MWe .framer-j5y8no { flex: none; height: var(--framer-aspect-ratio-supported, 133px); order: 1; width: 57%; } .framer-55MWe .framer-5xz4o4 { height: var(--framer-aspect-ratio-supported, 200px); order: 2; } .framer-55MWe .framer-xq3fv0 { order: 1; width: 361px; } .framer-55MWe .framer-73vmsx { height: var(--framer-aspect-ratio-supported, 200px); } .framer-55MWe .framer-1v583in { height: var(--framer-aspect-ratio-supported, 201px); } .framer-55MWe .framer-1p7jah { bottom: 48px; left: 314px; } .framer-55MWe .framer-f4g7lr { height: 798px; left: calc(49.743589743589766% - 392px / 2); order: 12; top: 4251px; width: 392px; } .framer-55MWe .framer-25j4wd { bottom: -1917px; height: 908px; left: calc(50.00000000000002% - 363px / 2); order: 13; position: fixed; width: 363px; z-index: 1; } .framer-55MWe .framer-7dbli6 { border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; left: 0px; right: unset; width: 362px; } .framer-55MWe .framer-1dfbze7 { left: -1px; top: 27px; } .framer-55MWe .framer-1jjxl6u { width: 316px; } .framer-55MWe .framer-1l88czv { height: 63px; left: 0px; right: 0px; top: 109px; width: unset; } .framer-55MWe .framer-zphcts-container { height: 1142px; left: calc(48.97435897435899% - 418px / 2); order: 11; top: 3229px; width: 418px; } .framer-55MWe .framer-1xy3o9n { order: 16; } .framer-55MWe .framer-1tizbw9 { bottom: 31px; height: 55px; left: calc(50.00000000000002% - 166px / 2); right: unset; width: 166px; } .framer-55MWe .framer-11to56-container { order: 17; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4650\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"iQz7U2Mf9\":{\"layout\":[\"fixed\",\"fixed\"]},\"X3RqGVxVy\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"bS8i_cegu\":{\"pattern\":\":bS8i_cegu\",\"name\":\"where-to-play\"}}\n * @framerResponsiveScreen\n */const FramerO5xyKp5ZC=withCSS(Component,css,\"framer-55MWe\");export default FramerO5xyKp5ZC;FramerO5xyKp5ZC.displayName=\"Home\";FramerO5xyKp5ZC.defaultProps={height:4650,width:1200};addFonts(FramerO5xyKp5ZC,[{explicitInter:true,fonts:[{family:\"Barlow\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gc5VAtlT47dw.woff2\",weight:\"500\"},{family:\"Barlow\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4c5VAtlT47dw.woff2\",weight:\"700\"},{family:\"Barlow\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPDsE46HsxnA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Barlow\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-kc5VAtlT47dw.woff2\",weight:\"300\"}]},...TopSectionFonts,...NavbarFonts,...SlideshowFonts,...NavbarDarkFonts,...WhereToPlayFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO5xyKp5ZC\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"4650\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"{\\\"bS8i_cegu\\\":{\\\"pattern\\\":\\\":bS8i_cegu\\\",\\\"name\\\":\\\"where-to-play\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iQz7U2Mf9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"X3RqGVxVy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "i", "h", "u", "d", "f", "l", "g", "glide", "a", "c", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "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", "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", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "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", "ref1", "ref2", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "ImageWithFX", "withFX", "Image2", "TopSectionFonts", "getFonts", "cfrGsf9rv_default", "NavbarFonts", "vaRMmL1cV_default", "SlideshowFonts", "Slideshow", "NavbarDarkFonts", "TprkxdXL0_default", "RichTextWithFX", "RichText2", "WhereToPlayFonts", "EuP1WMG5S_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "fLgjsJKJTcx6DB__PT", "idcx6DB__PT", "fLgjsJKJTP0f3Q3VUr", "yek6VUiStP0f3Q3VUr", "NYxLPpLlzP0f3Q3VUr", "idP0f3Q3VUr", "fLgjsJKJTHYpc5Bjdw", "yek6VUiStHYpc5Bjdw", "NYxLPpLlzHYpc5Bjdw", "idHYpc5Bjdw", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "SVG", "Link", "ChildrenCanSuspend", "Nv8RSld14_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "css", "FramerO5xyKp5ZC", "withCSS", "O5xyKp5ZC_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
