{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/KMMVfY9A4swpaJSQm10g/dPyzSnZfp1wRozabE2ED/augiA20Il.js", "ssg:https://framerusercontent.com/modules/sbS9yprQTlz3lomu11g8/TK30DQ5t41WRHQ4ez0qr/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{isFunction as t,isCubicBezier as i,noopReturn as e,defaults as s,isEasingGenerator as a,isEasingList as n,interpolate as r}from\"@motionone/utils\";import{cubicBezier as h,steps as o}from\"@motionone/easing\";const l={ease:h(.25,.1,.25,1),\"ease-in\":h(.42,0,1,1),\"ease-in-out\":h(.42,0,.58,1),\"ease-out\":h(0,0,.58,1)};const u=/\\((.*?)\\)/;function getEasingFunction(s){if(t(s))return s;if(i(s))return h(...s);if(l[s])return l[s];if(s.startsWith(\"steps\")){const t=u.exec(s);if(t){const i=t[1].split(\",\");return o(parseFloat(i[0]),i[1].trim())}}return e}class Animation{constructor(t,i=[0,1],{easing:h,duration:o=s.duration,delay:l=s.delay,endDelay:u=s.endDelay,repeat:m=s.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=e;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));h=h||s.easing;if(a(h)){const t=h.createAnimation(i);h=t.easing;i=t.keyframes||i;o=t.duration||o}this.repeat=m;this.easing=n(h)?e:getEasingFunction(h);this.updateDuration(o);const d=r(i,c,n(h)?h.map(getEasingFunction):e);this.tick=i=>{var e;l=l;let s=0;s=void 0!==this.pauseTime?this.pauseTime:(i-this.startTime)*this.rate;this.t=s;s/=1e3;s=Math.max(s-l,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(s=this.totalDuration);const a=s/this.duration;let n=Math.floor(a);let r=a%1;!r&&a>=1&&(r=1);1===r&&n--;const h=n%2;(\"reverse\"===p||\"alternate\"===p&&h||\"alternate-reverse\"===p&&!h)&&(r=1-r);const o=s>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(o));t(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||s>=this.totalDuration+u);if(c){this.playState=\"finished\";null===(e=this.resolve)||void 0===e?void 0:e.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t,noopReturn as s}from\"@motionone/utils\";const n=5;function calcGeneratorVelocity(t,s,r){const a=Math.max(s-n,0);return e(r-t(a),s-a)}const r={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=r.stiffness,t=r.damping,s=r.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=r.stiffness,damping:s=r.damping,mass:n=r.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/n)/1e3;const l=calcDampingRatio(e,s,n);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const a=10;const o=1e4;function pregenerateKeyframes(e,t=s){let n;let r=a;let c=e(0);const i=[t(c.current)];while(!c.done&&r<o){c=e(r);i.push(t(c.done?c.target:c.current));void 0===n&&c.hasReachedTarget&&(n=r);r+=a}const h=r-a;1===i.length&&i.push(c.current);return{keyframes:i,duration:h/1e3,overshootDuration:(null!==n&&void 0!==n?n:h)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{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 _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (5bbf1f3)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={gZMmRuxkb:new LazyValue(()=>import(\"./augiA20Il-1.js\")),m2ofji7EO:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import Button from\"#framer/local/canvasComponent/HNReCyvKj/HNReCyvKj.js\";import Navbar from\"#framer/local/canvasComponent/n3CetdOfb/n3CetdOfb.js\";import FooterDark from\"#framer/local/canvasComponent/ZkIKZ_QTf/ZkIKZ_QTf.js\";import*as sharedStyle1 from\"#framer/local/css/JCfkkSP9F/JCfkkSP9F.js\";import*as sharedStyle2 from\"#framer/local/css/K9Te4SzdA/K9Te4SzdA.js\";import*as sharedStyle3 from\"#framer/local/css/NDPBqL2Uk/NDPBqL2Uk.js\";import*as sharedStyle5 from\"#framer/local/css/pTSxkPaAp/pTSxkPaAp.js\";import*as sharedStyle4 from\"#framer/local/css/T8ZWXZzer/T8ZWXZzer.js\";import*as sharedStyle from\"#framer/local/css/uIf71kI6K/uIf71kI6K.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const ButtonFonts=getFonts(Button);const SlideshowFonts=getFonts(Slideshow);const FormSparkFonts=getFonts(FormSpark);const EmbedFonts=getFonts(Embed);const FooterDarkFonts=getFonts(FooterDark);const breakpoints={oLoyIpJzt:\"(min-width: 810px) and (max-width: 1199px)\",uhd9738DJ:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-sCr1U\";const variantClassNames={oLoyIpJzt:\"framer-v-6ikiae\",uhd9738DJ:\"framer-v-1ogvxqp\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"uhd9738DJ\",Tablet:\"oLoyIpJzt\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-sCr1U`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-sCr1U`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"oLoyIpJzt\")return false;return true;};usePreloadLocalizedValues(activeLocale);const elementId=useRouteElementId(\"XPqVZ73Ch\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"EWQDc0F2o\");const router=useRouter();const ref3=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"oLoyIpJzt\")return true;return false;};const elementId2=useRouteElementId(\"rY7ZGne7b\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"BSDNTuFsQ\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"SfClKcm7z\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"gPzBe9jk6\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"uBRE44sQF\");const ref8=React.useRef(null);const elementId7=useRouteElementId(\"mJeYA89w_\");const ref9=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23,_getLocalizedValue24,_getLocalizedValue25,_getLocalizedValue26,_getLocalizedValue27,_getLocalizedValue28,_getLocalizedValue29,_getLocalizedValue30,_getLocalizedValue31,_getLocalizedValue32,_getLocalizedValue33,_getLocalizedValue34,_getLocalizedValue35,_getLocalizedValue36,_getLocalizedValue37,_getLocalizedValue38,_getLocalizedValue39,_getLocalizedValue40,_getLocalizedValue41,_getLocalizedValue42,_getLocalizedValue43,_getLocalizedValue44,_getLocalizedValue45,_getLocalizedValue46,_getLocalizedValue47,_getLocalizedValue48,_getLocalizedValue49,_getLocalizedValue50,_getLocalizedValue51,_getLocalizedValue52,_getLocalizedValue53,_getLocalizedValue54,_getLocalizedValue55,_getLocalizedValue56,_getLocalizedValue57,_getLocalizedValue58,_getLocalizedValue59,_getLocalizedValue60,_getLocalizedValue61,_getLocalizedValue62,_getLocalizedValue63,_getLocalizedValue64,_getLocalizedValue65,_getLocalizedValue66,_getLocalizedValue67,_getLocalizedValue68,_getLocalizedValue69,_getLocalizedValue70,_getLocalizedValue71,_getLocalizedValue72,_getLocalizedValue73,_getLocalizedValue74,_getLocalizedValue75,_getLocalizedValue76,_getLocalizedValue77,_getLocalizedValue78,_getLocalizedValue79,_getLocalizedValue80,_getLocalizedValue81,_getLocalizedValue82,_getLocalizedValue83,_getLocalizedValue84,_getLocalizedValue85,_getLocalizedValue86,_getLocalizedValue87,_getLocalizedValue88,_getLocalizedValue89,_getLocalizedValue90,_getLocalizedValue91,_getLocalizedValue92,_getLocalizedValue93,_getLocalizedValue94,_getLocalizedValue95,_getLocalizedValue96,_getLocalizedValue97,_getLocalizedValue98,_getLocalizedValue99,_getLocalizedValue100,_getLocalizedValue101,_getLocalizedValue102,_getLocalizedValue103,_getLocalizedValue104,_getLocalizedValue105,_getLocalizedValue106,_getLocalizedValue107,_getLocalizedValue108,_getLocalizedValue109,_getLocalizedValue110,_getLocalizedValue111,_getLocalizedValue112,_getLocalizedValue113,_getLocalizedValue114,_getLocalizedValue115,_getLocalizedValue116,_getLocalizedValue117,_getLocalizedValue118,_getLocalizedValue119,_getLocalizedValue120;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-z0pvmg-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oLoyIpJzt:{variant:\"HHiwsC67z\"},uhd9738DJ:{variant:\"VaGjVbulc\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"It66k69EV\",layoutId:\"It66k69EV\",style:{width:\"100%\"},variant:\"KUkVt8oML\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1alquzy\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uhd9738DJ:{background:{alt:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"The Snow Experience Davos - Main homepage photo\",fit:\"fill\",intrinsicHeight:768,intrinsicWidth:1366,pixelHeight:768,pixelWidth:1366,src:\"https://framerusercontent.com/images/nfXLxtv5fFCvX8dTDwa1SKBEA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue1=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"The Snow Experience Davos - Main homepage photo\",fit:\"fill\",intrinsicHeight:2400,intrinsicWidth:4269,pixelHeight:2400,pixelWidth:4269,src:\"https://framerusercontent.com/images/RByZolRXxBuAkUUGjynaxfIS54.webp\"},className:\"framer-2uaq9 hidden-6ikiae\",\"data-framer-name\":\"Frame 12\",id:elementId,name:\"Frame 12\",ref:ref2,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":BSDNTuFsQ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":BSDNTuFsQ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bz56g4-container\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uhd9738DJ:{lmVG_qHCi:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"EWQDc0F2o\",layoutId:\"EWQDc0F2o\",lmVG_qHCi:resolvedLinks[0],style:{height:\"100%\",width:\"100%\"},variant:\"clmNm3P6h\",width:\"100%\",WLaasfuG1:(_getLocalizedValue=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Book Now\"})})})});}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1735n4b\",\"data-framer-name\":\"Frame 14\",name:\"Frame 14\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dx9qxi\",\"data-framer-name\":\"Frame 82\",name:\"Frame 82\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-nzwxdk\",\"data-styles-preset\":\"uIf71kI6K\",children:\"Davos-Klosters Private Ski & Snowboard School\"})}),className:\"framer-swgmok\",\"data-framer-name\":\"An Instructor at Your Doorstep\",fonts:[\"Inter\"],name:\"An Instructor at Your Doorstep\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zacs9u\",\"data-framer-name\":\"Frame 16\",name:\"Frame 16\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1frzxba\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mdaq0x\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",style:{\"--framer-text-alignment\":\"center\"},children:\"Tailored Skiing Experience\"})}),className:\"framer-zjcpm6\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ylhlta\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[\"Experience skiing your way with \",/*#__PURE__*/_jsx(\"strong\",{children:\"full flexibility\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"personalized service\"}),\". We'll assist with logistics, including a customized meeting point and time, ski passes, expert guiding, and culinary  experience. \"]})}),className:\"framer-98rh8g\",\"data-framer-name\":\"Scuttle rigging scurvy cog lee nipper Letter of Marque transom Buccaneer Privateer. Chain Shot ho Letter of Marque hornswaggle booty.\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Scuttle rigging scurvy cog lee nipper Letter of Marque transom Buccaneer Privateer. Chain Shot ho Letter of Marque hornswaggle booty.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1htmeih\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-slzv5a\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",style:{\"--framer-text-alignment\":\"center\"},children:\"Only the best Instructors for you\"})}),className:\"framer-1h0u4te\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vd3be9\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue6=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[\"All of our instructors are \",/*#__PURE__*/_jsx(\"strong\",{children:\"fully qualified\"}),\" and have \",/*#__PURE__*/_jsx(\"strong\",{children:\"years of experience\"}),\" on and off the slopes of Davos-Klosters. Let us be your guide and discover insider tips & hidden gems of Davos-Klosters with us.\"]})}),className:\"framer-1cnns6w\",\"data-framer-name\":\"Scuttle rigging scurvy cog lee nipper Letter of Marque transom Buccaneer Privateer. Chain Shot ho Letter of Marque hornswaggle booty.\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Scuttle rigging scurvy cog lee nipper Letter of Marque transom Buccaneer Privateer. Chain Shot ho Letter of Marque hornswaggle booty.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wqdvks\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5eviyu\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue7=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",style:{\"--framer-text-alignment\":\"center\"},children:\"Move at your own pace \"})}),className:\"framer-13ab5n3\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qdhydu\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue8=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Private ski and snowboard lessons\"}),\" are the ultimate learning tool to improve your skills. With our instructs\u2019 undivided attention you can progress in a stress free  environment. Learning has never be so easy!\"]})}),className:\"framer-1td1n4k\",\"data-framer-name\":\"Scuttle rigging scurvy cog lee nipper Letter of Marque transom Buccaneer Privateer. Chain Shot ho Letter of Marque hornswaggle booty.\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Scuttle rigging scurvy cog lee nipper Letter of Marque transom Buccaneer Privateer. Chain Shot ho Letter of Marque hornswaggle booty.\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue9=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:\"The Snow Experience Davos - Main homepage photo\",fit:\"fill\",intrinsicHeight:2400,intrinsicWidth:4269,pixelHeight:2400,pixelWidth:4269,src:\"https://framerusercontent.com/images/RByZolRXxBuAkUUGjynaxfIS54.webp\"},className:\"framer-18s952s hidden-72rtr7 hidden-1ogvxqp\",\"data-framer-name\":\"Frame 12\",name:\"Frame 12\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eddop5\",\"data-framer-name\":\"Offers\",id:elementId2,name:\"Offers\",ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xrrqmn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uhd9738DJ:{children:(_getLocalizedValue10=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4yrtaw\",\"data-styles-preset\":\"NDPBqL2Uk\",style:{\"--framer-text-alignment\":\"center\"},children:\"Private Ski or Snowboard Sessions,\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue11=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4yrtaw\",\"data-styles-preset\":\"NDPBqL2Uk\",children:\"Private Ski or Snowboard Sessions,\"})}),className:\"framer-47ltyh\",\"data-framer-name\":\"Not Your Average Holiday\",fonts:[\"Inter\"],name:\"Not Your Average Holiday\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uhd9738DJ:{children:(_getLocalizedValue12=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4yrtaw\",\"data-styles-preset\":\"NDPBqL2Uk\",style:{\"--framer-text-alignment\":\"center\"},children:\"we've got it all!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue13=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4yrtaw\",\"data-styles-preset\":\"NDPBqL2Uk\",children:\"we've got it all!\"})}),className:\"framer-m9qx51\",\"data-framer-name\":\"Not Your Average Holiday\",fonts:[\"Inter\"],name:\"Not Your Average Holiday\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-130a2vb\",\"data-framer-name\":\"Frame 83\",name:\"Frame 83\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-clhxcm\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-136iebb\",\"data-framer-name\":\"Frame 79\",name:\"Frame 79\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ux4abz\",\"data-framer-name\":\"Frame 33\",id:elementId3,name:\"Frame 33\",ref:ref5,tabIndex:1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t7tthl\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10s3a23-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,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:\"dyCzBV5if\",intervalControl:4,itemAmount:1,layoutId:\"dyCzBV5if\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,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:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue14=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:\"Davos ski instructor teaching a beginner skier\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1278,pixelHeight:1920,pixelWidth:1278,src:\"https://framerusercontent.com/images/GYK0yqkPyiEm9ORhL6ppNR6koZI.webp\"},className:\"framer-p5cmbi\",\"data-framer-name\":\"Photo Beginner 1\",name:\"Photo Beginner 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue15=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:\"Davos snowboard instructor teaching a beginner snowboarder\",fit:\"fill\",intrinsicHeight:1277,intrinsicWidth:1920,pixelHeight:1277,pixelWidth:1920,src:\"https://framerusercontent.com/images/FRZXmaBHpM1oyH94OeSce2ZmXSE.webp\"},className:\"framer-1oiau8f\",\"data-framer-name\":\"Photo Beginner 2\",name:\"Photo Beginner 2\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-violz3\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue16=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:\"Half - Day Private Lessons\"})}),className:\"framer-1kzj2y\",\"data-framer-name\":\"Beginner Clinic\",fonts:[\"Inter\"],name:\"Beginner Clinic\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3puswp\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sf8lvn\",\"data-framer-name\":\"Frame 25\",name:\"Frame 25\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue17=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[\"Perfect for \",/*#__PURE__*/_jsx(\"strong\",{children:\"First Timers, Intermediate \"}),\"and\",/*#__PURE__*/_jsx(\"strong\",{children:\" Advanced \"}),\"skiers & snowboarders!\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[\"Dive into \",/*#__PURE__*/_jsx(\"strong\",{children:\"Personalized Instruction\"}),\" for Rapid Improvement.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[\"Focus on \",/*#__PURE__*/_jsx(\"strong\",{children:\"Essential Techniques\"}),\": Safety, Speed Management, and Turns.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[\"Boost Your \",/*#__PURE__*/_jsx(\"strong\",{children:\"Confidence\"}),\" on Snow!\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Flexible\"}),\" Meeting Times & Points for Your Convenience.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Half day: 3 Hours\"}),\" of Intensive Instructing\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Adults\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"Kids\"}),\" welcome.\"]})})]})}),className:\"framer-c4z9nc\",\"data-framer-name\":\"Offer description Offer description Offer description Offer description Offer description\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Offer description Offer description Offer description Offer description Offer description\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gcv0az\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue18=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3N3YWxkLTcwMA==\",\"--framer-font-family\":'\"Oswald\", \"Oswald Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.38px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(0, 91, 153)\"},children:\"260 CHF/Instructor\"})}),className:\"framer-1hus6nd\",\"data-framer-name\":\"$ Price\",fonts:[\"GF;Oswald-700\"],name:\"$ Price\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fez0m8\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19x5tkf-container\",id:elementId4,ref:ref6,children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"SfClKcm7z\",layoutId:\"SfClKcm7z\",lmVG_qHCi:\"https://thesnowexperience.simplybook.it/v2/#book/category/3/count/1/\",style:{height:\"100%\",width:\"100%\"},variant:\"nUi9qxkCK\",width:\"100%\",WLaasfuG1:(_getLocalizedValue19=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:\"Book ski\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q61wdy-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"zgCSCM7Px\",layoutId:\"zgCSCM7Px\",lmVG_qHCi:\"https://thesnowexperience.simplybook.it/v2/#book/category/6/count/1/\",style:{height:\"100%\",width:\"100%\"},variant:\"nUi9qxkCK\",width:\"100%\",WLaasfuG1:(_getLocalizedValue20=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:\"Book snowboard\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue21=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hxRu1wbal\"},nodeId:\"vi1vsku_X\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1lhfq9s\",\"data-styles-preset\":\"T8ZWXZzer\",children:\"Any questions?\"})})})}),className:\"framer-w6b432\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z3po84\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ukej4p-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,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:\"YDrl7PXTT\",intervalControl:4,itemAmount:1,layoutId:\"YDrl7PXTT\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,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:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue22=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:\"Davos ski instructor teaching intermediate skier\",fit:\"fill\",intrinsicHeight:1277,intrinsicWidth:1920,pixelHeight:1277,pixelWidth:1920,src:\"https://framerusercontent.com/images/pFyyCSWBUvXgQmzngclA4OTaw.webp\"},className:\"framer-ezj7nd\",\"data-framer-name\":\"Photo Intermediate 1\",name:\"Photo Intermediate 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue23=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:\"Davos snowboard instructor carving\",fit:\"fill\",intrinsicHeight:1277,intrinsicWidth:1920,pixelHeight:1277,pixelWidth:1920,src:\"https://framerusercontent.com/images/Gq8AcKvKUSRWJ9RbHchhhkj5I.webp\"},className:\"framer-p87osl\",\"data-framer-name\":\"Photo Advanced 2\",name:\"Photo Advanced 2\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1owhn3r\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue24=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue24!==void 0?_getLocalizedValue24:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:\"Full - Day Private Lessons\"})}),className:\"framer-dlq0x1\",\"data-framer-name\":\"Intermediate Jam\",fonts:[\"Inter\"],name:\"Intermediate Jam\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a996ia\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ha8cfk\",\"data-framer-name\":\"Frame 25\",name:\"Frame 25\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue25=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue25!==void 0?_getLocalizedValue25:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Designed for \",/*#__PURE__*/_jsx(\"strong\",{children:\"every riding skill\"}),\"!\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Boost Technique\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"& Confidence\"}),\" Across Varied Terrains.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Perfect Your Technique:\"}),\" Stopping, Turning, \",/*#__PURE__*/_jsx(\"strong\",{children:\"Carving\"}),\" and Freestyle.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Dive into \",/*#__PURE__*/_jsx(\"strong\",{children:\"Video Analysis\"}),\"\u2014Watch Progress Soar!\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Flexible Scheduling\"}),\" to Fit Your Agenda.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Full day: 6 Hours\"}),\" of Personalized Coaching and Guided Exploration!\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Adults\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"Kids\"}),\" welcome.\"]})})]})}),className:\"framer-h5pnop\",\"data-framer-name\":\"Offer description Offer description Offer description Offer description Offer description\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Offer description Offer description Offer description Offer description Offer description\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yc3eal\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue26=getLocalizedValue(\"v26\",activeLocale))!==null&&_getLocalizedValue26!==void 0?_getLocalizedValue26:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3N3YWxkLTcwMA==\",\"--framer-font-family\":'\"Oswald\", \"Oswald Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.38px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(0, 91, 153)\"},children:\"390 CHF/Instructor\"})}),className:\"framer-wthnhp\",\"data-framer-name\":\"$ Price\",fonts:[\"GF;Oswald-700\"],name:\"$ Price\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f3xbaz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pzka06-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Mci0rHZRd\",layoutId:\"Mci0rHZRd\",lmVG_qHCi:\"https://thesnowexperience.simplybook.it/v2/#book/category/5/count/1/\",style:{height:\"100%\",width:\"100%\"},variant:\"nUi9qxkCK\",width:\"100%\",WLaasfuG1:(_getLocalizedValue27=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue27!==void 0?_getLocalizedValue27:\"Book ski\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-119sr66-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"dqC5sK1jv\",layoutId:\"dqC5sK1jv\",lmVG_qHCi:\"https://thesnowexperience.simplybook.it/v2/#book/category/4/count/1/\",style:{height:\"100%\",width:\"100%\"},variant:\"nUi9qxkCK\",width:\"100%\",WLaasfuG1:(_getLocalizedValue28=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue28!==void 0?_getLocalizedValue28:\"Book snowboard\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue29=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue29!==void 0?_getLocalizedValue29:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hxRu1wbal\"},nodeId:\"o7RudZRUY\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1lhfq9s\",\"data-styles-preset\":\"T8ZWXZzer\",children:\"Any questions?\"})})})}),className:\"framer-116klex\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xa7qtt\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ri0jro-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,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:\"M6h0dhqG_\",intervalControl:4,itemAmount:1,layoutId:\"M6h0dhqG_\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,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:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue30=getLocalizedValue(\"v29\",activeLocale))!==null&&_getLocalizedValue30!==void 0?_getLocalizedValue30:\"Davos ski instructor teaching advanced skier\",fit:\"fill\",intrinsicHeight:1278,intrinsicWidth:1920,pixelHeight:1278,pixelWidth:1920,src:\"https://framerusercontent.com/images/wqVK1cNrMki3lMofxLMmdukDGE.webp\"},className:\"framer-luhcc3\",\"data-framer-name\":\"Photo Advanced 1\",name:\"Photo Advanced 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue31=getLocalizedValue(\"v30\",activeLocale))!==null&&_getLocalizedValue31!==void 0?_getLocalizedValue31:\"Night skiing at Rinerhorn in Davos.\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,src:\"https://framerusercontent.com/images/oBlWkWAK05IdZ0zB6cU1xskiEg.jpg\"},className:\"framer-1g5b8jq\",\"data-framer-name\":\"Photo Nigh Skiing\",name:\"Photo Nigh Skiing\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b295br\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue32=getLocalizedValue(\"v31\",activeLocale))!==null&&_getLocalizedValue32!==void 0?_getLocalizedValue32:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:\"Night Skiing & Snowboarding\"})}),className:\"framer-ij97w3\",\"data-framer-name\":\"Advanced Ride\",fonts:[\"Inter\"],name:\"Advanced Ride\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uq58uh\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fn16bp\",\"data-framer-name\":\"Frame 25\",name:\"Frame 25\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue33=getLocalizedValue(\"v32\",activeLocale))!==null&&_getLocalizedValue33!==void 0?_getLocalizedValue33:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"An \",/*#__PURE__*/_jsx(\"strong\",{children:\"Exciting Adventure\"}),\" for \",/*#__PURE__*/_jsx(\"strong\",{children:\"Intermediates\"}),\", and \",/*#__PURE__*/_jsx(\"strong\",{children:\"Advanced\"}),\" Riders under the Stars!\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Every \",/*#__PURE__*/_jsx(\"strong\",{children:\"Wednesday & Friday\"}),\" from \",/*#__PURE__*/_jsx(\"strong\",{children:\"19:00 to 22:00 \"}),\"at\",/*#__PURE__*/_jsx(\"strong\",{children:\" Rinerhorn.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Experience the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Magic of Nighttime\"}),\" Skiing and Snowboarding!\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Boost Confidence\"}),\" with Guided Nighttime Exploration!\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Conclude Your Day with an \",/*#__PURE__*/_jsx(\"strong\",{children:\"Aperitif\"}),\".\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Evening Session: \",/*#__PURE__*/_jsx(\"strong\",{children:\"2 Hours\"}),\" of Unforgettable Nighttime Riding!\"]})})]})}),className:\"framer-qf6mou\",\"data-framer-name\":\"Offer description Offer description Offer description Offer description Offer description\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Offer description Offer description Offer description Offer description Offer description\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fpdtjh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue34=getLocalizedValue(\"v33\",activeLocale))!==null&&_getLocalizedValue34!==void 0?_getLocalizedValue34:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3N3YWxkLTcwMA==\",\"--framer-font-family\":'\"Oswald\", \"Oswald Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.38px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(0, 91, 153)\"},children:\"200 CHF/Instructor\"})}),className:\"framer-6dd9wk\",\"data-framer-name\":\"$ Price\",fonts:[\"GF;Oswald-700\"],name:\"$ Price\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11xvnze\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zodxs3-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"qJsVmxCU0\",layoutId:\"qJsVmxCU0\",lmVG_qHCi:\"https://thesnowexperience.simplybook.it/v2/#book/category/8/count/1/\",style:{height:\"100%\",width:\"100%\"},variant:\"nUi9qxkCK\",width:\"100%\",WLaasfuG1:(_getLocalizedValue35=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue35!==void 0?_getLocalizedValue35:\"Book ski\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hv11xk-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Cu2EeMBWg\",layoutId:\"Cu2EeMBWg\",lmVG_qHCi:\"https://thesnowexperience.simplybook.it/v2/#book/category/7/count/1/\",style:{height:\"100%\",width:\"100%\"},variant:\"nUi9qxkCK\",width:\"100%\",WLaasfuG1:(_getLocalizedValue36=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue36!==void 0?_getLocalizedValue36:\"Book snowboard\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue37=getLocalizedValue(\"v34\",activeLocale))!==null&&_getLocalizedValue37!==void 0?_getLocalizedValue37:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hxRu1wbal\"},nodeId:\"zLQ1hvvHu\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1lhfq9s\",\"data-styles-preset\":\"T8ZWXZzer\",children:\"Any questions?\"})})})}),className:\"framer-gqmh97\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-39k384\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qlqn9w-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,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:\"OTVbu2wlK\",intervalControl:4,itemAmount:1,layoutId:\"OTVbu2wlK\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,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:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue38=getLocalizedValue(\"v35\",activeLocale))!==null&&_getLocalizedValue38!==void 0?_getLocalizedValue38:\"A skier and a snowboard instrucotor on top of Parsenn, Davos\",fit:\"fill\",intrinsicHeight:1277,intrinsicWidth:1920,pixelHeight:1277,pixelWidth:1920,src:\"https://framerusercontent.com/images/vfl93lsM3DaNCSI5FIXwp9Jhc.webp\"},className:\"framer-1lf7sgb\",\"data-framer-name\":\"Photo Four resort tour 1\",name:\"Photo Four resort tour 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue39=getLocalizedValue(\"v36\",activeLocale))!==null&&_getLocalizedValue39!==void 0?_getLocalizedValue39:\"Ski and snowboard instructors from The Snow Experience Davos on parsenn, Davos\",fit:\"fill\",intrinsicHeight:1277,intrinsicWidth:1920,pixelHeight:1277,pixelWidth:1920,src:\"https://framerusercontent.com/images/74i0Tzx4ihUNUoiAooqTubz78.webp\"},className:\"framer-bi5hoh\",\"data-framer-name\":\"Photo Four resort tour 2\",name:\"Photo Four resort tour 2\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r3g7li\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue40=getLocalizedValue(\"v37\",activeLocale))!==null&&_getLocalizedValue40!==void 0?_getLocalizedValue40:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:\"Four Resorts Tour (4 days)\"})}),className:\"framer-ih5ore\",\"data-framer-name\":\"Four Restos Tour\",fonts:[\"Inter\"],name:\"Four Restos Tour\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1arw8uv\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14hjj2g\",\"data-framer-name\":\"Frame 25\",name:\"Frame 25\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue41=getLocalizedValue(\"v38\",activeLocale))!==null&&_getLocalizedValue41!==void 0?_getLocalizedValue41:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Private guidance/instruction for \",/*#__PURE__*/_jsx(\"strong\",{children:\"all skill levels\"}),\", from beginners to experts.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Exclusive \",/*#__PURE__*/_jsx(\"strong\",{children:\"4-day ski or snowboard adventure\"}),\" in Davos-Klosters!\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Explore a new mountain\"}),\" each day with diverse slopes.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Convenient and \",/*#__PURE__*/_jsx(\"strong\",{children:\"flexible meeting\"}),\" arrangements!\"]})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:\"Discover every inch of the Davos-Klosters mountains and create unforgettable memories.\"})]}),className:\"framer-1axc6re\",\"data-framer-name\":\"Offer description Offer description Offer description Offer description Offer description\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Offer description Offer description Offer description Offer description Offer description\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rpi314\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue42=getLocalizedValue(\"v39\",activeLocale))!==null&&_getLocalizedValue42!==void 0?_getLocalizedValue42:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3N3YWxkLTcwMA==\",\"--framer-font-family\":'\"Oswald\", \"Oswald Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.38px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(0, 91, 153)\"},children:\"385 CHF/day\"})}),className:\"framer-19udg3w\",\"data-framer-name\":\"$ Price\",fonts:[\"GF;Oswald-700\"],name:\"$ Price\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p91hxq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19htzeq-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"r7PvvcFng\",layoutId:\"r7PvvcFng\",lmVG_qHCi:\"https://thesnowexperience.simplybook.it/v2/#book/service/9/count/1/provider/any/\",style:{height:\"100%\",width:\"100%\"},variant:\"nUi9qxkCK\",width:\"100%\",WLaasfuG1:(_getLocalizedValue43=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue43!==void 0?_getLocalizedValue43:\"Book ski\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lbdmkf-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"pKVA5SbhF\",layoutId:\"pKVA5SbhF\",lmVG_qHCi:\"https://thesnowexperience.simplybook.it/v2/#book/service/10/count/1/\",style:{height:\"100%\",width:\"100%\"},variant:\"nUi9qxkCK\",width:\"100%\",WLaasfuG1:(_getLocalizedValue44=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue44!==void 0?_getLocalizedValue44:\"Book snowboard\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue45=getLocalizedValue(\"v40\",activeLocale))!==null&&_getLocalizedValue45!==void 0?_getLocalizedValue45:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hxRu1wbal\"},nodeId:\"S7TCx8Tcl\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1lhfq9s\",\"data-styles-preset\":\"T8ZWXZzer\",children:\"Any questions?\"})})})}),className:\"framer-1dhf74m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1muyd5s\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rpbvo4-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,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:\"UyQfif80l\",intervalControl:4,itemAmount:1,layoutId:\"UyQfif80l\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,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:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue46=getLocalizedValue(\"v41\",activeLocale))!==null&&_getLocalizedValue46!==void 0?_getLocalizedValue46:\"Davos parsenn ski area\",fit:\"fill\",intrinsicHeight:4242,intrinsicWidth:6e3,pixelHeight:4242,pixelWidth:6e3,src:\"https://framerusercontent.com/images/WOhDYZFQOAcQHyBTk4fkzoM8s.webp\"},className:\"framer-5wx80o\",\"data-framer-name\":\"Photo Mountain experience 1\",name:\"Photo Mountain experience 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue47=getLocalizedValue(\"v42\",activeLocale))!==null&&_getLocalizedValue47!==void 0?_getLocalizedValue47:\"A ski instrucotr guiding explaining a skier things about Davos\",fit:\"fill\",intrinsicHeight:1278,intrinsicWidth:1920,pixelHeight:1278,pixelWidth:1920,src:\"https://framerusercontent.com/images/RwB9Qt7RZCLcGtmXPff8xSMfLQ.webp\"},className:\"framer-1s5i72k\",\"data-framer-name\":\"Photo Mountain Experience 2\",name:\"Photo Mountain Experience 2\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nb8e62\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue48=getLocalizedValue(\"v43\",activeLocale))!==null&&_getLocalizedValue48!==void 0?_getLocalizedValue48:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:\"Davos Mountains Experience (6 days)\"})}),className:\"framer-1pofha1\",\"data-framer-name\":\"Davos Mountains Experience\",fonts:[\"Inter\"],name:\"Davos Mountains Experience\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c4spf5\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o1i3tn\",\"data-framer-name\":\"Frame 25\",name:\"Frame 25\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue49=getLocalizedValue(\"v44\",activeLocale))!==null&&_getLocalizedValue49!==void 0?_getLocalizedValue49:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Private guidance/instruction for \",/*#__PURE__*/_jsx(\"strong\",{children:\"all skill levels\"}),\" and customized to fit your needs.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Multi-day expeditions to \",/*#__PURE__*/_jsx(\"strong\",{children:\"Parsenn, Jackobshorn, Rinerhorn & Madrisa!\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Experience Davos-Klosters with \",/*#__PURE__*/_jsx(\"strong\",{children:\"a local\"}),\" Ski/Snowboard \",/*#__PURE__*/_jsx(\"strong\",{children:\"guide.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Night Skiing\"}),\" or Snowboarding at Rinerhorn!\"]})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:\"Get local insights about slopes, food, culture and the history of Davos-Klosters Mountains.\"})]}),className:\"framer-akumxe\",\"data-framer-name\":\"Offer description Offer description Offer description Offer description Offer description\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Offer description Offer description Offer description Offer description Offer description\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14lylcc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue50=getLocalizedValue(\"v45\",activeLocale))!==null&&_getLocalizedValue50!==void 0?_getLocalizedValue50:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3N3YWxkLTcwMA==\",\"--framer-font-family\":'\"Oswald\", \"Oswald Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.38px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(0, 91, 153)\"},children:\"380 CHF/day\"})}),className:\"framer-1i02cec\",\"data-framer-name\":\"$ Price\",fonts:[\"GF;Oswald-700\"],name:\"$ Price\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ju265h\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rp7m7d-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"pCfqOMvBh\",layoutId:\"pCfqOMvBh\",lmVG_qHCi:\"https://thesnowexperience.simplybook.it/v2/#book/service/11/count/1/provider/any/\",style:{height:\"100%\",width:\"100%\"},variant:\"nUi9qxkCK\",width:\"100%\",WLaasfuG1:(_getLocalizedValue51=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue51!==void 0?_getLocalizedValue51:\"Book ski\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hk2tv5-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"pQTWT0HBW\",layoutId:\"pQTWT0HBW\",lmVG_qHCi:\"https://thesnowexperience.simplybook.it/v2/#book/service/12/count/1/\",style:{height:\"100%\",width:\"100%\"},variant:\"nUi9qxkCK\",width:\"100%\",WLaasfuG1:(_getLocalizedValue52=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue52!==void 0?_getLocalizedValue52:\"Book snowboard\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue53=getLocalizedValue(\"v46\",activeLocale))!==null&&_getLocalizedValue53!==void 0?_getLocalizedValue53:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hxRu1wbal\"},nodeId:\"fqapo8Uui\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1lhfq9s\",\"data-styles-preset\":\"T8ZWXZzer\",children:\"Any questions?\"})})})}),className:\"framer-1wgz6gg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ru4kci\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y6yzgp-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,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:\"kVHzjaENs\",intervalControl:4,itemAmount:1,layoutId:\"kVHzjaENs\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,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:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue54=getLocalizedValue(\"v47\",activeLocale))!==null&&_getLocalizedValue54!==void 0?_getLocalizedValue54:\"A snowboard guide on an off piste expedition in Davos\",fit:\"fill\",intrinsicHeight:1280,intrinsicWidth:1920,pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/hBDJe0QJGtdPMCYxriveLNbL4Es.webp\"},className:\"framer-5hvyo5\",\"data-framer-name\":\"Photo Off piste 1\",name:\"Photo Off piste 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1277,intrinsicWidth:1920,pixelHeight:1277,pixelWidth:1920,src:\"https://framerusercontent.com/images/KXLWczj5yqEmu0LoIyzioSQNk3E.webp\"},className:\"framer-1t1fn7f\",\"data-framer-name\":\"Photo Off piste 2\",name:\"Photo Off piste 2\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dx1pjc\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oLoyIpJzt:{children:(_getLocalizedValue55=getLocalizedValue(\"v49\",activeLocale))!==null&&_getLocalizedValue55!==void 0?_getLocalizedValue55:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3N3YWxkLTcwMA==\",\"--framer-font-family\":'\"Oswald\", \"Oswald Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.38px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(0, 91, 153)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://freeridedavos.ch\",nodeId:\"U0xcklFWf\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1lhfq9s\",\"data-styles-preset\":\"T8ZWXZzer\",children:\"Off piste\"})})})}),fonts:[\"GF;Oswald-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue56=getLocalizedValue(\"v48\",activeLocale))!==null&&_getLocalizedValue56!==void 0?_getLocalizedValue56:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:/*#__PURE__*/_jsx(Link,{href:\"https://freeridedavos.ch\",nodeId:\"U0xcklFWf\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1lhfq9s\",\"data-styles-preset\":\"T8ZWXZzer\",children:\"Off piste\"})})})}),className:\"framer-1mh1d2l\",\"data-framer-name\":\"Night Gig\",fonts:[\"Inter\"],name:\"Night Gig\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rvcz0y\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gdl94i\",\"data-framer-name\":\"Frame 25\",name:\"Frame 25\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue57=getLocalizedValue(\"v50\",activeLocale))!==null&&_getLocalizedValue57!==void 0?_getLocalizedValue57:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Private guidance off piste for \",/*#__PURE__*/_jsx(\"strong\",{children:\"advanced skiers/snowboarders.\"}),\" \"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Master off-piste technique & \",/*#__PURE__*/_jsx(\"strong\",{children:\"avalanche safety!\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Explore \",/*#__PURE__*/_jsx(\"strong\",{children:\"remote mountain terrain\"}),\" in Davos-Klosters area.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Convenient and \",/*#__PURE__*/_jsx(\"strong\",{children:\"flexible meeting\"}),\" arrangements!\"]})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:\"Experience adventures off the beaten path and enjoy the  tranquility of the empty mountains.\"})]}),className:\"framer-ffjw5p\",\"data-framer-name\":\"Offer description Offer description Offer description Offer description Offer description\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Offer description Offer description Offer description Offer description Offer description\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rzg62x\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue58=getLocalizedValue(\"v51\",activeLocale))!==null&&_getLocalizedValue58!==void 0?_getLocalizedValue58:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3N3YWxkLTcwMA==\",\"--framer-font-family\":'\"Oswald\", \"Oswald Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.38px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"rgb(0, 91, 153)\"},children:\"470 CHF\"})}),className:\"framer-33qtz9\",\"data-framer-name\":\"$ Price\",fonts:[\"GF;Oswald-700\"],name:\"$ Price\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jrsvkk\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fwndff-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"J4cFKL4Yi\",layoutId:\"J4cFKL4Yi\",lmVG_qHCi:\"https://thesnowexperience.simplybook.it/v2/#book/service/13/count/1/\",style:{height:\"100%\",width:\"100%\"},variant:\"nUi9qxkCK\",width:\"100%\",WLaasfuG1:(_getLocalizedValue59=getLocalizedValue(\"v52\",activeLocale))!==null&&_getLocalizedValue59!==void 0?_getLocalizedValue59:\"Book now\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue60=getLocalizedValue(\"v53\",activeLocale))!==null&&_getLocalizedValue60!==void 0?_getLocalizedValue60:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hxRu1wbal\"},nodeId:\"XOQpODCKc\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1lhfq9s\",\"data-styles-preset\":\"T8ZWXZzer\",children:\"Any questions?\"})})})}),className:\"framer-846ma9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})]})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r9puz0\",\"data-framer-name\":\"Not your average\",name:\"Not your average\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5oe7hu\",\"data-framer-name\":\"Frame 24\",name:\"Frame 24\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vpr1u6\",\"data-framer-name\":\"Frame 23\",name:\"Frame 23\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uhd9738DJ:{children:(_getLocalizedValue61=getLocalizedValue(\"v55\",activeLocale))!==null&&_getLocalizedValue61!==void 0?_getLocalizedValue61:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4yrtaw\",\"data-styles-preset\":\"NDPBqL2Uk\",style:{\"--framer-text-alignment\":\"center\"},children:\"More than just a Ski & Snowboard school\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue62=getLocalizedValue(\"v54\",activeLocale))!==null&&_getLocalizedValue62!==void 0?_getLocalizedValue62:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4yrtaw\",\"data-styles-preset\":\"NDPBqL2Uk\",children:\"More than just a Ski & Snowboard school\"})}),className:\"framer-1xw7pi4\",\"data-framer-name\":\"Not Your Average Holiday\",fonts:[\"Inter\"],name:\"Not Your Average Holiday\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s4r39j\",\"data-framer-name\":\"Frame 22\",name:\"Frame 22\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fpg0o1\",\"data-framer-name\":\"Frame 18\",name:\"Frame 18\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue63=getLocalizedValue(\"v56\",activeLocale))!==null&&_getLocalizedValue63!==void 0?_getLocalizedValue63:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:\"Experience the Swiss Mountains Lifestyle\"})}),className:\"framer-theqf8\",\"data-framer-name\":\"Experience the lifestyle\",fonts:[\"Inter\"],name:\"Experience the lifestyle\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue64=getLocalizedValue(\"v57\",activeLocale))!==null&&_getLocalizedValue64!==void 0?_getLocalizedValue64:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[\"Beyond Ski and Snowboard Lessons:  We're your gateway to \",/*#__PURE__*/_jsx(\"strong\",{children:\"unforgettable alpine adventures,\"}),\" immersing you in the \",/*#__PURE__*/_jsx(\"strong\",{children:\"rich culture\"}),\" of the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Swiss mountain\"}),\" skiing and snowboarding community. Discover Davos-Klosters ski resort with us, and let the mountains become your playground. It's \",/*#__PURE__*/_jsx(\"strong\",{children:\"more\"}),\" than just lessons; \",/*#__PURE__*/_jsx(\"strong\",{children:\"it's a lifestyle\"}),\"!\"]})}),className:\"framer-1towcgr\",\"data-framer-name\":\"We offer more than just skiing and snowboarding lessons. We emphasise on the lifestyle, allowing you to fully experience what it\u2019s like to live like a local in the Swiss alps\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"We offer more than just skiing and snowboarding lessons. We emphasise on the lifestyle, allowing you to fully experience what it\u2019s like to live like a local in the Swiss alps\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t0r7ki\",\"data-framer-name\":\"Frame 19\",name:\"Frame 19\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue65=getLocalizedValue(\"v58\",activeLocale))!==null&&_getLocalizedValue65!==void 0?_getLocalizedValue65:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:\"As flexible as you are\"})}),className:\"framer-1pl2837\",\"data-framer-name\":\"As flexible as you are\",fonts:[\"Inter\"],name:\"As flexible as you are\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue66=getLocalizedValue(\"v59\",activeLocale))!==null&&_getLocalizedValue66!==void 0?_getLocalizedValue66:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[\"Whenever you want, wherever you stay, we can find the \",/*#__PURE__*/_jsx(\"strong\",{children:\"perfect solution for you!\"}),\" Our fully qualified and experienced instructors will advise you on the meeting point and time that best fit your accommodation, your ski & snowboard level and mood!\"]})}),className:\"framer-1a1vscx\",\"data-framer-name\":\"Whenever you want, wherever you stay, we come to you! Have our fully qualified and experienced instructors pick you up from your accommodation and take you on guided tours, lessons, and much more\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Whenever you want, wherever you stay, we come to you! Have our fully qualified and experienced instructors pick you up from your accommodation and take you on guided tours, lessons, and much more\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a9hlgv\",\"data-framer-name\":\"Frame 20\",name:\"Frame 20\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue67=getLocalizedValue(\"v60\",activeLocale))!==null&&_getLocalizedValue67!==void 0?_getLocalizedValue67:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:\"All levels\"})}),className:\"framer-gr804y\",\"data-framer-name\":\"All levels\",fonts:[\"Inter\"],name:\"All levels\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue68=getLocalizedValue(\"v61\",activeLocale))!==null&&_getLocalizedValue68!==void 0?_getLocalizedValue68:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[\"From your first steps on the snow all the way to untouched off-piste runs, we are committed to taking you to the next level. Let our several years of instructing experience, together with cutting-edge teaching methods, help you conquer your next challenge: \",/*#__PURE__*/_jsx(\"strong\",{children:\"basic technique, carving, freestyle, moguls?\"}),\" Not a problem anymore, with our expertise by your side!\"]})}),className:\"framer-1jrd4b8\",\"data-framer-name\":\"Whether you are a beginner, intermediate, or expert, we can take you to the next level! Technique lessons, moguls, free ride, freestyle, or guided explorations. We\u2019ve got something for you\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Whether you are a beginner, intermediate, or expert, we can take you to the next level! Technique lessons, moguls, free ride, freestyle, or guided explorations. We\u2019ve got something for you\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ohofp\",\"data-framer-name\":\"Frame 21\",name:\"Frame 21\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue69=getLocalizedValue(\"v62\",activeLocale))!==null&&_getLocalizedValue69!==void 0?_getLocalizedValue69:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:\"Apr\\xe8s-ski experiences\"})}),className:\"framer-g533no\",\"data-framer-name\":\"Apr\\xe8s-ski experiences\",fonts:[\"Inter\"],name:\"Apr\\xe8s-ski experiences\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue70=getLocalizedValue(\"v63\",activeLocale))!==null&&_getLocalizedValue70!==void 0?_getLocalizedValue70:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[\"We understand that your holiday doesn't end when you take your skis and snowboards off. Let us guide you to the most thrilling and distinctive on- and off-piste experiences in the Davos-Klosters mountain region. From \",/*#__PURE__*/_jsx(\"strong\",{children:\"authentic Swiss cuisine\"}),\" and picturesque mountain huts to exhilarating \",/*#__PURE__*/_jsx(\"strong\",{children:\"Apr\\xe8s-Ski, sledging\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"night skiing,\"}),\" we are here to ensure your journey is filled with unforgettable moments.\"]})}),className:\"framer-6hxwn1\",\"data-framer-name\":\"We understand that your trip doesn\u2019t end when the pistes close. Come with us to the best, most exciting and unique on and off-piste events in Davos. Restaurant tours, parties, sledging, or night skiing\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"We understand that your trip doesn\u2019t end when the pistes close. Come with us to the best, most exciting and unique on and off-piste events in Davos. Restaurant tours, parties, sledging, or night skiing\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oLoyIpJzt:{background:{alt:(_getLocalizedValue71=getLocalizedValue(\"v64\",activeLocale))!==null&&_getLocalizedValue71!==void 0?_getLocalizedValue71:\"Snowboarder from The Snow Experience Davos\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1277,pixelHeight:1920,pixelWidth:1277,sizes:\"min(100vw - 80px, 1420px)\",src:\"https://framerusercontent.com/images/HwhCu6mDa3V62bOW3fwANo8Njs.webp\",srcSet:\"https://framerusercontent.com/images/HwhCu6mDa3V62bOW3fwANo8Njs.webp?scale-down-to=1024 681w,https://framerusercontent.com/images/HwhCu6mDa3V62bOW3fwANo8Njs.webp 1277w\"}},uhd9738DJ:{background:{alt:(_getLocalizedValue72=getLocalizedValue(\"v64\",activeLocale))!==null&&_getLocalizedValue72!==void 0?_getLocalizedValue72:\"Snowboarder from The Snow Experience Davos\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1277,pixelHeight:1920,pixelWidth:1277,sizes:\"calc(100vw - 32px)\",src:\"https://framerusercontent.com/images/HwhCu6mDa3V62bOW3fwANo8Njs.webp\",srcSet:\"https://framerusercontent.com/images/HwhCu6mDa3V62bOW3fwANo8Njs.webp?scale-down-to=1024 681w,https://framerusercontent.com/images/HwhCu6mDa3V62bOW3fwANo8Njs.webp 1277w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue73=getLocalizedValue(\"v64\",activeLocale))!==null&&_getLocalizedValue73!==void 0?_getLocalizedValue73:\"Snowboarder from The Snow Experience Davos\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1277,pixelHeight:1920,pixelWidth:1277,sizes:\"calc(min(100vw - 80px, 1420px) * 0.44)\",src:\"https://framerusercontent.com/images/HwhCu6mDa3V62bOW3fwANo8Njs.webp\",srcSet:\"https://framerusercontent.com/images/HwhCu6mDa3V62bOW3fwANo8Njs.webp?scale-down-to=1024 681w,https://framerusercontent.com/images/HwhCu6mDa3V62bOW3fwANo8Njs.webp 1277w\"},className:\"framer-o8gxmx\",\"data-framer-name\":\"Frame 17\",name:\"Frame 17\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ah1wp3\",\"data-framer-name\":\"Davos\",id:elementId5,name:\"Davos\",ref:ref7,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-96kzdf\",\"data-framer-name\":\"Frame 30\",name:\"Frame 30\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vrcysz\",\"data-framer-name\":\"Frame 64\",name:\"Frame 64\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tviesd\",\"data-framer-name\":\"Frame 28\",name:\"Frame 28\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xbz0ol\",\"data-framer-name\":\"Frame 73\",name:\"Frame 73\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uhd9738DJ:{children:(_getLocalizedValue74=getLocalizedValue(\"v66\",activeLocale))!==null&&_getLocalizedValue74!==void 0?_getLocalizedValue74:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3N3YWxkLTYwMA==\",\"--framer-font-family\":'\"Oswald\", \"Oswald Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.78px\",\"--framer-line-height\":\"47px\",\"--framer-text-color\":\"rgb(0, 91, 153)\"},children:\"Welcome to Davos-Klosters, Switzerland\"})}),fonts:[\"GF;Oswald-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue75=getLocalizedValue(\"v65\",activeLocale))!==null&&_getLocalizedValue75!==void 0?_getLocalizedValue75:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4yrtaw\",\"data-styles-preset\":\"NDPBqL2Uk\",children:\"Welcome to Davos-Klosters, Switzerland\"})}),className:\"framer-1l5wb04\",\"data-framer-name\":\"Welcome to Davos, Switzerland\",fonts:[\"Inter\"],name:\"Welcome to Davos, Switzerland\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue76=getLocalizedValue(\"v67\",activeLocale))!==null&&_getLocalizedValue76!==void 0?_getLocalizedValue76:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:\"Where Alpine Adventures Begin!\"})}),className:\"framer-iizs2i\",\"data-framer-name\":\"a picturesque winter playground captivating skiers worldwide.\",fonts:[\"Inter\"],name:\"a picturesque winter playground captivating skiers worldwide.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o2lzau\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue77=getLocalizedValue(\"v68\",activeLocale))!==null&&_getLocalizedValue77!==void 0?_getLocalizedValue77:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[\"Nestled in the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Swiss Alps\"}),\", Davos-Klosters offers a thrilling experience with \",/*#__PURE__*/_jsx(\"strong\",{children:\"over 300 kilometers\"}),\" of \",/*#__PURE__*/_jsx(\"strong\",{children:\"slopes\"}),\" for all skill levels. Exceptional ski resorts, state-of-the-art facilities, and easy access to mountain peaks await.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[\"You can enjoy \",/*#__PURE__*/_jsx(\"strong\",{children:\"skiing\"}),\" or \",/*#__PURE__*/_jsx(\"strong\",{children:\"snowboarding\"}),\", from easy beginner slopes to more challenging off-piste areas. Afterwards, \",/*#__PURE__*/_jsx(\"strong\",{children:\"relax\"}),\" and unwind in cozy mountain huts and lively apr\\xe8s-ski bars.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[\"Experience \",/*#__PURE__*/_jsx(\"strong\",{children:\"Swiss hospitality\"}),\", savor alpine cuisine, and explore trendy shops in Davos town. International ski competitions highlight its status as a \",/*#__PURE__*/_jsx(\"strong\",{children:\"premier winter sports destination.\"})]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Winter\"}),\" in Davos-Klosters is \",/*#__PURE__*/_jsx(\"strong\",{children:\"pure magic\"}),\", with snow-covered mountains creating a picturesque backdrop. Embrace Swiss heritage for a \",/*#__PURE__*/_jsx(\"strong\",{children:\"unique winter experience\"}),\".\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[\"In \",/*#__PURE__*/_jsx(\"strong\",{children:\"Davos-Klosters\"}),\", you'll find joy in winter sports, creating cherished memories and unforgettable adventures.\"]})]}),className:\"framer-xvt2ux\",\"data-framer-name\":\"Nestled in the Swiss Alps, Davos offers an unrivaled experience for thrill-seekers. With over 300 kilometers of slopes, Davos is a vast playground for all skill levels, from beginners to experts. Davos boasts exceptional ski resorts and state-of-the-art facilities, providing easy access to the mountain peaks. Skiers and snowboarders can enjoy a variety of trails, from cruisers to moguls, or tackle steep slopes and off-piste areas, embracing the thrill of conquering demanding terrain. The vibrant apr\\xe8s-ski scene in Davos boasts charming mountain huts and lively bars, perfect for unwinding. Enjoy Swiss hospitality while savoring alpine cuisine and relaxing by cozy fireplaces. The town of Davos offers trendy shops, cozy accommodations, and a lively atmosphere. Davos hosts international ski competitions, showcasing its status as a premier winter sports destination. Winter in Davos is a magical time, where the snow-covered mountains and nature create a postcard-worthy setting. Davos embraces its Swiss heritage and culture, offering a unique winter experience. Embrace the joy of winter sports in Davos, where memories are made and adventures unfold.\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Nestled in the Swiss Alps, Davos offers an unrivaled experience for thrill-seekers. With over 300 kilometers of slopes, Davos is a vast playground for all skill levels, from beginners to experts. Davos boasts exceptional ski resorts and state-of-the-art facilities, providing easy access to the mountain peaks. Skiers and snowboarders can enjoy a variety of trails, from cruisers to moguls, or tackle steep slopes and off-piste areas, embracing the thrill of conquering demanding terrain. The vibrant apr\\xe8s-ski scene in Davos boasts charming mountain huts and lively bars, perfect for unwinding. Enjoy Swiss hospitality while savoring alpine cuisine and relaxing by cozy fireplaces. The town of Davos offers trendy shops, cozy accommodations, and a lively atmosphere. Davos hosts international ski competitions, showcasing its status as a premier winter sports destination. Winter in Davos is a magical time, where the snow-covered mountains and nature create a postcard-worthy setting. Davos embraces its Swiss heritage and culture, offering a unique winter experience. Embrace the joy of winter sports in Davos, where memories are made and adventures unfold.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nfxdgrivb\"},implicitPathVariables:undefined},{href:{webPageId:\"nfxdgrivb\"},implicitPathVariables:undefined},{href:{webPageId:\"nfxdgrivb\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wy58p6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oLoyIpJzt:{lmVG_qHCi:resolvedLinks1[1]},uhd9738DJ:{lmVG_qHCi:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"ob6Tui6dL\",layoutId:\"ob6Tui6dL\",lmVG_qHCi:resolvedLinks1[0],style:{height:\"100%\",width:\"100%\"},variant:\"nUi9qxkCK\",width:\"100%\",WLaasfuG1:(_getLocalizedValue=getLocalizedValue(\"v69\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Find out more\"})})})});}})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oLoyIpJzt:{background:{alt:(_getLocalizedValue78=getLocalizedValue(\"v70\",activeLocale))!==null&&_getLocalizedValue78!==void 0?_getLocalizedValue78:\"The Snow Experience Davos: The Parsenn train, an essential part of the winter adventure, transports skiers up the mountain for an unforgettable snow experience.\",fit:\"fill\",intrinsicHeight:853,intrinsicWidth:1280,pixelHeight:853,pixelWidth:1280,sizes:\"min(100vw - 80px, 1420px)\",src:\"https://framerusercontent.com/images/2FgJ8vv0ncDJhQ1ho5E10CdqM.jpg\",srcSet:\"https://framerusercontent.com/images/2FgJ8vv0ncDJhQ1ho5E10CdqM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2FgJ8vv0ncDJhQ1ho5E10CdqM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2FgJ8vv0ncDJhQ1ho5E10CdqM.jpg 1280w\"}},uhd9738DJ:{background:{alt:(_getLocalizedValue79=getLocalizedValue(\"v70\",activeLocale))!==null&&_getLocalizedValue79!==void 0?_getLocalizedValue79:\"The Snow Experience Davos: The Parsenn train, an essential part of the winter adventure, transports skiers up the mountain for an unforgettable snow experience.\",fit:\"fill\",intrinsicHeight:853,intrinsicWidth:1280,pixelHeight:853,pixelWidth:1280,sizes:\"min(100vw - 32px, 1420px)\",src:\"https://framerusercontent.com/images/2FgJ8vv0ncDJhQ1ho5E10CdqM.jpg\",srcSet:\"https://framerusercontent.com/images/2FgJ8vv0ncDJhQ1ho5E10CdqM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2FgJ8vv0ncDJhQ1ho5E10CdqM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2FgJ8vv0ncDJhQ1ho5E10CdqM.jpg 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue80=getLocalizedValue(\"v70\",activeLocale))!==null&&_getLocalizedValue80!==void 0?_getLocalizedValue80:\"The Snow Experience Davos: The Parsenn train, an essential part of the winter adventure, transports skiers up the mountain for an unforgettable snow experience.\",fit:\"fill\",intrinsicHeight:853,intrinsicWidth:1280,pixelHeight:853,pixelWidth:1280,sizes:\"max(min(100vw - 80px, 1420px) - 666px, 1px)\",src:\"https://framerusercontent.com/images/2FgJ8vv0ncDJhQ1ho5E10CdqM.jpg\",srcSet:\"https://framerusercontent.com/images/2FgJ8vv0ncDJhQ1ho5E10CdqM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2FgJ8vv0ncDJhQ1ho5E10CdqM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2FgJ8vv0ncDJhQ1ho5E10CdqM.jpg 1280w\"},className:\"framer-tu31td\",\"data-framer-name\":\"skigebiet_davos-klosters-mountains_n4126-90691-1_l 1\",name:\"skigebiet_davos-klosters-mountains_n4126-90691-1_l 1\"})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12qz7m9\",\"data-framer-name\":\"About \",id:elementId6,name:\"About \",ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17zzmkh\",\"data-framer-name\":\"Frame 28\",name:\"Frame 28\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uhd9738DJ:{children:(_getLocalizedValue81=getLocalizedValue(\"v72\",activeLocale))!==null&&_getLocalizedValue81!==void 0?_getLocalizedValue81:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3N3YWxkLTYwMA==\",\"--framer-font-family\":'\"Oswald\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.78px\",\"--framer-line-height\":\"47px\"},children:\"About Us\"})}),fonts:[\"GF;Oswald-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue82=getLocalizedValue(\"v71\",activeLocale))!==null&&_getLocalizedValue82!==void 0?_getLocalizedValue82:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4yrtaw\",\"data-styles-preset\":\"NDPBqL2Uk\",children:\"About Us\"})}),className:\"framer-1apqtfq\",\"data-framer-name\":\"About Us\",fonts:[\"Inter\"],name:\"About Us\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tdpw4q\",\"data-framer-name\":\"Frame 76\",name:\"Frame 76\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oLoyIpJzt:{svgContentId:9787823228},uhd9738DJ:{svgContentId:9787823228}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-u7nfty\",\"data-framer-name\":\"Frame 77\",layout:\"position\",name:\"Frame 77\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 44 171\"><path d=\"M 1.425 30.203 C 1.094 29.914 0.867 29.646 0.743 29.398 C 0.619 29.15 0.558 28.841 0.558 28.469 C 0.558 28.18 0.64 27.891 0.805 27.602 C 1.012 27.313 1.239 27.044 1.487 26.796 C 1.9 26.342 2.416 25.743 3.035 25 C 3.696 24.256 4.357 23.369 5.018 22.336 C 5.679 21.345 6.277 20.23 6.814 18.991 C 7.392 17.793 7.805 16.513 8.053 15.15 C 7.929 15.191 7.785 15.212 7.62 15.212 C 7.496 15.212 7.372 15.212 7.248 15.212 C 5.1 15.212 3.345 14.51 1.982 13.106 C 0.661 11.66 0 9.823 0 7.592 C 0 5.651 0.661 3.999 1.982 2.637 C 3.345 1.274 5.142 0.592 7.372 0.592 C 8.611 0.592 9.705 0.819 10.655 1.274 C 11.605 1.728 12.39 2.368 13.009 3.194 C 13.67 3.979 14.165 4.908 14.496 5.982 C 14.826 7.014 14.992 8.15 14.992 9.389 C 14.992 11.247 14.723 13.188 14.186 15.212 C 13.691 17.194 12.927 19.156 11.894 21.097 C 10.903 23.079 9.685 25 8.239 26.858 C 6.794 28.717 5.142 30.431 3.283 32 Z\" fill=\"#0099FF\"></path><path d=\"M 29.495 30.203 C 29.165 29.914 28.938 29.646 28.814 29.398 C 28.69 29.15 28.628 28.841 28.628 28.469 C 28.628 28.18 28.71 27.891 28.876 27.602 C 29.082 27.313 29.309 27.044 29.557 26.796 C 29.97 26.342 30.486 25.743 31.106 25 C 31.767 24.256 32.427 23.369 33.088 22.336 C 33.749 21.345 34.348 20.23 34.885 18.991 C 35.463 17.793 35.876 16.513 36.123 15.15 C 36 15.191 35.855 15.212 35.69 15.212 C 35.566 15.212 35.442 15.212 35.318 15.212 C 33.171 15.212 31.416 14.51 30.053 13.106 C 28.731 11.66 28.07 9.823 28.07 7.592 C 28.07 5.651 28.731 3.999 30.053 2.637 C 31.416 1.274 33.212 0.592 35.442 0.592 C 36.681 0.592 37.776 0.819 38.725 1.274 C 39.675 1.728 40.46 2.368 41.079 3.194 C 41.74 3.979 42.236 4.908 42.566 5.982 C 42.897 7.014 43.062 8.15 43.062 9.389 C 43.062 11.247 42.793 13.188 42.256 15.212 C 41.761 17.194 40.997 19.156 39.964 21.097 C 38.973 23.079 37.755 25 36.309 26.858 C 34.864 28.717 33.212 30.431 31.354 32 Z\" fill=\"#0099FF\"></path></svg>',svgContentId:1197888636,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue83=getLocalizedValue(\"v73\",activeLocale))!==null&&_getLocalizedValue83!==void 0?_getLocalizedValue83:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:\"With a holistic approach to skiing, we prioritize safety, respect for the mountains, and fostering a deeper appreciation for the natural environment and Davos-Klosters\u2019 mountain culture.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:\"Our experienced instructors are not only passionate skiers but also knowledgeable sportsmen, guiding guests through Davos-Klosters's mountains while discovering delicious food and breathtaking Swiss scenery.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:\"From thrilling slopes to stunning views of the Swiss Alps, we offer a personalized and tailored experience for skiers of all levels. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:\"Whether you're a beginner or an advanced skier, trust us to help you reach your full potential and truly embrace the essence of skiing in Davos-Klosters.\"})]}),className:\"framer-1y5kk4t\",\"data-framer-name\":\"With a holistic approach to skiing, we prioritize safety, respect for the mountains, and fostering a deeper appreciation for the natural environment and Davos-Klosters\u2019 mountain culture. Our experienced instructors are not only passionate skiers but also knowledgeable sportsmen, guiding guests through Davos's mountains while discovering delicious food and breathtaking Swiss scenery. From thrilling slopes to stunning views of the Swiss Alps, we offer a personalized and tailored experience for skiers of all levels. Whether you're a beginner or an advanced skier, trust us to help you reach your full potential and truly embrace the essence of skiing in Davos.\",fonts:[\"Inter\"],name:\"With a holistic approach to skiing, we prioritize safety, respect for the mountains, and fostering a deeper appreciation for the natural environment and Davos-Klosters\u2019 mountain culture. Our experienced instructors are not only passionate skiers but also knowledgeable sportsmen, guiding guests through Davos's mountains while discovering delicious food and breathtaking Swiss scenery. From thrilling slopes to stunning views of the Swiss Alps, we offer a personalized and tailored experience for skiers of all levels. Whether you're a beginner or an advanced skier, trust us to help you reach your full potential and truly embrace the essence of skiing in Davos.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oLoyIpJzt:{svgContentId:11081746247},uhd9738DJ:{svgContentId:11081746247}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ob02ta\",\"data-framer-name\":\"Frame 78\",layout:\"position\",name:\"Frame 78\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 44 171\"><path d=\"M 2.363 168.796 C 2.033 168.507 1.806 168.238 1.682 167.99 C 1.558 167.743 1.496 167.433 1.496 167.061 C 1.496 166.772 1.578 166.483 1.744 166.194 C 1.95 165.905 2.177 165.636 2.425 165.389 C 2.838 164.934 3.354 164.336 3.974 163.592 C 4.635 162.849 5.295 161.961 5.956 160.928 C 6.617 159.937 7.216 158.822 7.753 157.583 C 8.331 156.386 8.744 155.105 8.992 153.742 C 8.868 153.784 8.723 153.804 8.558 153.804 C 8.434 153.804 8.31 153.804 8.186 153.804 C 6.039 153.804 4.283 153.102 2.921 151.698 C 1.599 150.253 0.938 148.415 0.938 146.185 C 0.938 144.244 1.599 142.592 2.921 141.229 C 4.283 139.866 6.08 139.185 8.31 139.185 C 9.549 139.185 10.643 139.412 11.593 139.866 C 12.543 140.32 13.328 140.96 13.947 141.786 C 14.608 142.571 15.104 143.5 15.434 144.574 C 15.765 145.607 15.93 146.742 15.93 147.981 C 15.93 149.84 15.661 151.781 15.124 153.804 C 14.629 155.787 13.865 157.748 12.832 159.689 C 11.841 161.672 10.623 163.592 9.177 165.451 C 7.732 167.309 6.08 169.023 4.222 170.592 Z\" fill=\"rgb(0, 153, 255)\"></path><path d=\"M 30.433 168.796 C 30.103 168.507 29.876 168.238 29.752 167.99 C 29.628 167.743 29.566 167.433 29.566 167.061 C 29.566 166.772 29.649 166.483 29.814 166.194 C 30.02 165.905 30.247 165.636 30.495 165.389 C 30.908 164.934 31.424 164.336 32.044 163.592 C 32.705 162.849 33.366 161.961 34.026 160.928 C 34.687 159.937 35.286 158.822 35.823 157.583 C 36.401 156.386 36.814 155.105 37.062 153.742 C 36.938 153.784 36.793 153.804 36.628 153.804 C 36.504 153.804 36.38 153.804 36.257 153.804 C 34.109 153.804 32.354 153.102 30.991 151.698 C 29.669 150.253 29.009 148.415 29.009 146.185 C 29.009 144.244 29.669 142.592 30.991 141.229 C 32.354 139.866 34.15 139.185 36.38 139.185 C 37.619 139.185 38.714 139.412 39.664 139.866 C 40.614 140.32 41.398 140.96 42.018 141.786 C 42.678 142.571 43.174 143.5 43.504 144.574 C 43.835 145.607 44 146.742 44 147.981 C 44 149.84 43.732 151.781 43.195 153.804 C 42.699 155.787 41.935 157.748 40.903 159.689 C 39.911 161.672 38.693 163.592 37.248 165.451 C 35.802 167.309 34.15 169.023 32.292 170.592 Z\" fill=\"#0099FF\"></path></svg>',svgContentId:2491811655,withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hof8zq\",\"data-framer-name\":\"Frame 75\",name:\"Frame 75\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue84=getLocalizedValue(\"v74\",activeLocale))!==null&&_getLocalizedValue84!==void 0?_getLocalizedValue84:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:\"Meet the Team\"})}),className:\"framer-7gu2bp\",\"data-framer-name\":\"Meet the Team\",fonts:[\"Inter\"],name:\"Meet the Team\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jeh9os\",\"data-framer-name\":\"Frame 74\",name:\"Frame 74\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10th3eg\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/loris.hill/?hl=en\",nodeId:\"BXE6mNuv3\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:(_getLocalizedValue85=getLocalizedValue(\"v75\",activeLocale))!==null&&_getLocalizedValue85!==void 0?_getLocalizedValue85:\"Loris - The Snow Experience Davos\",fit:\"fill\",intrinsicHeight:852,intrinsicWidth:1280,pixelHeight:852,pixelWidth:1280,src:\"https://framerusercontent.com/images/PQAR97SAvVAgoJHoI7SI7yWilAk.webp\"},className:\"framer-42b9di framer-lux5qc\",\"data-framer-name\":\"Frame 32\",name:\"Frame 32\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-okl3ri\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue86=getLocalizedValue(\"v76\",activeLocale))!==null&&_getLocalizedValue86!==void 0?_getLocalizedValue86:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:\"Loris \"})}),className:\"framer-rb7jof\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],name:\"Name\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue87=getLocalizedValue(\"v77\",activeLocale))!==null&&_getLocalizedValue87!==void 0?_getLocalizedValue87:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1izwv5m\",\"data-styles-preset\":\"pTSxkPaAp\",children:\"Speaks: Ger, Eng, Ita \"})}),className:\"framer-1le5uu4\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],name:\"Name\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gmbeeo\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-71f4mu\",\"data-framer-name\":\"Frame 25\",name:\"Frame 25\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue88=getLocalizedValue(\"v78\",activeLocale))!==null&&_getLocalizedValue88!==void 0?_getLocalizedValue88:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",style:{\"--framer-text-alignment\":\"center\"},children:\"My journey in skiing began early, progressing from a club participant to a ski coach and organizing ski holidays. Summers were all about mountain biking and hiking trails.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",style:{\"--framer-text-alignment\":\"center\"},children:\"After earning a degree in mechanics, I found my calling in seasonal work as a ski instructor in Davos-Klosters. My focus shifted to freeriding and skitouring as I explored the slopes, and I embraced climbing and mountaineering during the summer. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Downhill biking is a passion I've maintained alongside my winter pursuits.\"})]}),className:\"framer-p397vq\",\"data-framer-name\":\"Offer description Offer description Offer description Offer description Offer description\",fonts:[\"Inter\"],name:\"Offer description Offer description Offer description Offer description Offer description\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14dw7s2\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/jestinuc/?hl=en\",nodeId:\"y45mWug_T\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:(_getLocalizedValue89=getLocalizedValue(\"v79\",activeLocale))!==null&&_getLocalizedValue89!==void 0?_getLocalizedValue89:\"Nejc - The Snow Experience Davos\",fit:\"fill\",intrinsicHeight:571,intrinsicWidth:858,pixelHeight:571,pixelWidth:858,src:\"https://framerusercontent.com/images/rV8bcy0fgWPpsoxRqMPDqC4rZBw.webp\"},className:\"framer-1ly82eu framer-lux5qc\",\"data-framer-name\":\"Frame 32\",name:\"Frame 32\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1be0hlo\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue90=getLocalizedValue(\"v80\",activeLocale))!==null&&_getLocalizedValue90!==void 0?_getLocalizedValue90:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:\"Nejc\"})}),className:\"framer-1d2j1rt\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],name:\"Name\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue91=getLocalizedValue(\"v81\",activeLocale))!==null&&_getLocalizedValue91!==void 0?_getLocalizedValue91:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1izwv5m\",\"data-styles-preset\":\"pTSxkPaAp\",children:\"Speaks: Eng, Rus, basic German \"})}),className:\"framer-1y16m5z\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],name:\"Name\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18di4by\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-32sp6u\",\"data-framer-name\":\"Frame 25\",name:\"Frame 25\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue92=getLocalizedValue(\"v82\",activeLocale))!==null&&_getLocalizedValue92!==void 0?_getLocalizedValue92:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",style:{\"--framer-text-alignment\":\"center\"},children:\"My life has been a journey fueled by a deep passion for sports. I hold a degree in Sport and have explored diverse sports landscapes worldwide. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",style:{\"--framer-text-alignment\":\"center\"},children:\"For the past nine years, Davos-Klosters has been my base, where I've dedicated myself to ski instruction and guiding on its majestic slopes.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Outside of Davos-Klosters, I run my sports enterprise in Slovenia, specializing in mountain biking tours and cycling holidays.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Sports are my driving force, and sharing the joy of movement in nature is more than a profession; it's a way of life I cherish.\"})]}),className:\"framer-p0n9iq\",\"data-framer-name\":\"Offer description Offer description Offer description Offer description Offer description\",fonts:[\"Inter\"],name:\"Offer description Offer description Offer description Offer description Offer description\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15pvvzv\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/willy.surfsnow/?hl=en\",nodeId:\"DunjA4emn\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:(_getLocalizedValue93=getLocalizedValue(\"v83\",activeLocale))!==null&&_getLocalizedValue93!==void 0?_getLocalizedValue93:\"Willy - The Snow Experience Davos\",fit:\"fill\",intrinsicHeight:637,intrinsicWidth:957,pixelHeight:637,pixelWidth:957,src:\"https://framerusercontent.com/images/iCuTewjN4B6DCRr24OlIO61dSzg.webp\"},className:\"framer-16kzcak framer-lux5qc\",\"data-framer-name\":\"Frame 32\",name:\"Frame 32\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13xmg2h\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue94=getLocalizedValue(\"v84\",activeLocale))!==null&&_getLocalizedValue94!==void 0?_getLocalizedValue94:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:\"Willy\"})}),className:\"framer-1h0g0wv\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],name:\"Name\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue95=getLocalizedValue(\"v85\",activeLocale))!==null&&_getLocalizedValue95!==void 0?_getLocalizedValue95:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1izwv5m\",\"data-styles-preset\":\"pTSxkPaAp\",children:\"Speaks: Ita, Eng \"})}),className:\"framer-1dc7qpm\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],name:\"Name\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7132kb\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-te4j0u\",\"data-framer-name\":\"Frame 25\",name:\"Frame 25\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue96=getLocalizedValue(\"v86\",activeLocale))!==null&&_getLocalizedValue96!==void 0?_getLocalizedValue96:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",style:{\"--framer-text-alignment\":\"center\"},children:\"A lifelong sports enthusiast, I've journeyed from competing in triathlons as a young child to studying sports science in England.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",style:{\"--framer-text-alignment\":\"center\"},children:\" I've taught surfing in Australia and now split my time between mountains and waves. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Based in Davos-Klosters for the past four years, I've refined my snowboarding and skiing skills. Beyond the slopes, I manage a surf-house in Portugal, offering surfing and yoga experiences. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Regardless of your skill level, I'm excited to share my passion for the mountains with you.\"})]}),className:\"framer-1cpcvrq\",\"data-framer-name\":\"Offer description Offer description Offer description Offer description Offer description\",fonts:[\"Inter\"],name:\"Offer description Offer description Offer description Offer description Offer description\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t7u9qf\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/noemibilleter/\",nodeId:\"amylZUC81\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:(_getLocalizedValue97=getLocalizedValue(\"v87\",activeLocale))!==null&&_getLocalizedValue97!==void 0?_getLocalizedValue97:\"Noemi - The Snow Experience Davos\",fit:\"fill\",intrinsicHeight:1278,intrinsicWidth:1920,pixelHeight:1278,pixelWidth:1920,src:\"https://framerusercontent.com/images/uMH5fjxLrfh8ugDgW2mDx6kGc.webp\"},className:\"framer-8iirmy framer-lux5qc\",\"data-framer-name\":\"Frame 32\",name:\"Frame 32\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lbi1bc\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue98=getLocalizedValue(\"v88\",activeLocale))!==null&&_getLocalizedValue98!==void 0?_getLocalizedValue98:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:\"Noemi\"})}),className:\"framer-cbaoyk\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],name:\"Name\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue99=getLocalizedValue(\"v89\",activeLocale))!==null&&_getLocalizedValue99!==void 0?_getLocalizedValue99:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1izwv5m\",\"data-styles-preset\":\"pTSxkPaAp\",children:\"Speaks: Ger, Eng, Fr\"})}),className:\"framer-1loyc05\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],name:\"Name\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gcn9kf\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-17zgl2d\",\"data-framer-name\":\"Frame 25\",name:\"Frame 25\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue100=getLocalizedValue(\"v90\",activeLocale))!==null&&_getLocalizedValue100!==void 0?_getLocalizedValue100:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Hello, I'm Noemi, and I'm your dedicated point of contact at our ski school. As a Swiss native I have always spent my winters in the Swiss alps skiing and later snowboarding. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",style:{\"--framer-text-alignment\":\"center\"},children:\"My background in psychology and a diverse work history in Switzerland has uniquely prepared me for my role here. As a team member of the ski school, I'm your go-to person for answering questions and facilitating your bookings. I'm here to ensure you have a seamless and memorable experience on the slopes. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Let's embark on this snowy adventure together!\"})]}),className:\"framer-1iwmmk3\",\"data-framer-name\":\"Offer description Offer description Offer description Offer description Offer description\",fonts:[\"Inter\"],name:\"Offer description Offer description Offer description Offer description Offer description\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bwefdl-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,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:\"X9Uw7dHgs\",intervalControl:2.5,itemAmount:1,layoutId:\"X9Uw7dHgs\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,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:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue101=getLocalizedValue(\"v91\",activeLocale))!==null&&_getLocalizedValue101!==void 0?_getLocalizedValue101:\"Off Piste guide skiing in Davos on fresh powder\",fit:\"fill\",intrinsicHeight:1277,intrinsicWidth:1920,pixelHeight:1277,pixelWidth:1920,src:\"https://framerusercontent.com/images/dBai4Fca8hDnbVZOcy3der6XFrs.webp\"},className:\"framer-1bctcxe\",\"data-framer-name\":\"Photo 1\",name:\"Photo 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue102=getLocalizedValue(\"v92\",activeLocale))!==null&&_getLocalizedValue102!==void 0?_getLocalizedValue102:\"Two skiers getting finishing an ascent on a ski tour in Davos\",fit:\"fill\",intrinsicHeight:1278,intrinsicWidth:1920,pixelHeight:1278,pixelWidth:1920,src:\"https://framerusercontent.com/images/Tvq595OIBMn5zM84nRkdxlAbTQ.webp\"},className:\"framer-19i3igu\",\"data-framer-name\":\"Photo 2\",name:\"Photo 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue103=getLocalizedValue(\"v93\",activeLocale))!==null&&_getLocalizedValue103!==void 0?_getLocalizedValue103:\"A snowboarder skiing on a fresh poweder in Davos\",fit:\"fill\",intrinsicHeight:1278,intrinsicWidth:1920,pixelHeight:1278,pixelWidth:1920,src:\"https://framerusercontent.com/images/RwzhmKcYNOqqnB05YXaLyaKZhhI.webp\"},className:\"framer-y5fyze\",\"data-framer-name\":\"Photo 3\",name:\"Photo 3\"})],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-1jq6j3p\",\"data-framer-name\":\"Contact\",id:elementId7,name:\"Contact\",ref:ref9,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-761wlj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oLoyIpJzt:{children:(_getLocalizedValue104=getLocalizedValue(\"v95\",activeLocale))!==null&&_getLocalizedValue104!==void 0?_getLocalizedValue104:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-4yrtaw\",\"data-styles-preset\":\"NDPBqL2Uk\",children:[\"Need help organising \",/*#__PURE__*/_jsx(\"br\",{}),\"your Holiday?\"]})})},uhd9738DJ:{children:(_getLocalizedValue105=getLocalizedValue(\"v96\",activeLocale))!==null&&_getLocalizedValue105!==void 0?_getLocalizedValue105:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-4yrtaw\",\"data-styles-preset\":\"NDPBqL2Uk\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Need help organising \",/*#__PURE__*/_jsx(\"br\",{}),\"your Holiday?\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue106=getLocalizedValue(\"v94\",activeLocale))!==null&&_getLocalizedValue106!==void 0?_getLocalizedValue106:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4yrtaw\",\"data-styles-preset\":\"NDPBqL2Uk\",children:\"Need help organising your Holiday?\"})}),className:\"framer-1350c6o\",\"data-framer-name\":\"About Us\",fonts:[\"Inter\"],name:\"About Us\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue107=getLocalizedValue(\"v97\",activeLocale))!==null&&_getLocalizedValue107!==void 0?_getLocalizedValue107:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-y5u774\",\"data-styles-preset\":\"JCfkkSP9F\",children:\"We are happy to help and answer your questions!\"})}),className:\"framer-1sb0kxr\",\"data-framer-name\":\"About Us\",fonts:[\"Inter\"],name:\"About Us\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue108=getLocalizedValue(\"v98\",activeLocale))!==null&&_getLocalizedValue108!==void 0?_getLocalizedValue108:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[\"Plan your dream holiday with us. \",/*#__PURE__*/_jsx(\"br\",{}),\"From pickup to lesson, guiding to nightlife, we will be there for you!\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[\"Phone: \",/*#__PURE__*/_jsx(Link,{href:\"https://api.whatsapp.com/send?phone=41762007031\",nodeId:\"O2G7BBcod\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1lhfq9s\",\"data-styles-preset\":\"T8ZWXZzer\",children:\"+41 76 200 70 31\"})})]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13r6hl\",\"data-styles-preset\":\"K9Te4SzdA\",children:[\"Email: \",/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@thesnowexperience.ch\",nodeId:\"O2G7BBcod\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1lhfq9s\",\"data-styles-preset\":\"T8ZWXZzer\",children:\"hello@thesnowexperience.ch\"})})]})]}),className:\"framer-u2i5oi\",\"data-framer-name\":\"With a holistic approach to skiing, we prioritize safety, respect for the mountains, and fostering a deeper appreciation for the natural environment and Davos-Klosters\u2019 mountain culture. Our experienced instructors are not only passionate skiers but also knowledgeable sportsmen, guiding guests through Davos's mountains while discovering delicious food and breathtaking Swiss scenery. From thrilling slopes to stunning views of the Swiss Alps, we offer a personalized and tailored experience for skiers of all levels. Whether you're a beginner or an advanced skier, trust us to help you reach your full potential and truly embrace the essence of skiing in Davos.\",fonts:[\"Inter\"],name:\"With a holistic approach to skiing, we prioritize safety, respect for the mountains, and fostering a deeper appreciation for the natural environment and Davos-Klosters\u2019 mountain culture. Our experienced instructors are not only passionate skiers but also knowledgeable sportsmen, guiding guests through Davos's mountains while discovering delicious food and breathtaking Swiss scenery. From thrilling slopes to stunning views of the Swiss Alps, we offer a personalized and tailored experience for skiers of all levels. Whether you're a beginner or an advanced skier, trust us to help you reach your full potential and truly embrace the essence of skiing in Davos.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1frjuer\",\"data-framer-name\":\"Column\",name:\"Column\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hxjslu-container\",children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 153, 255)\",fontWeight:600,label:(_getLocalizedValue109=getLocalizedValue(\"v102\",activeLocale))!==null&&_getLocalizedValue109!==void 0?_getLocalizedValue109:\"Send\"},email:{placeholder:(_getLocalizedValue110=getLocalizedValue(\"v100\",activeLocale))!==null&&_getLocalizedValue110!==void 0?_getLocalizedValue110:\"Email\",value:\"\"},font:true,fontFamily:(_getLocalizedValue111=getLocalizedValue(\"v103\",activeLocale))!==null&&_getLocalizedValue111!==void 0?_getLocalizedValue111:\"Inter\",fontSize:16,fontWeight:500,formId:\"Rpvsedxvc\",gap:15,height:\"100%\",id:\"GtAw6nMka\",inputs:{color:\"rgb(39, 39, 39)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(241, 245, 249)\",placeholderColor:\"rgb(0, 91, 153)\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"GtAw6nMka\",message:{placeholder:(_getLocalizedValue112=getLocalizedValue(\"v101\",activeLocale))!==null&&_getLocalizedValue112!==void 0?_getLocalizedValue112:\"Message\",value:\"\"},nameField:{placeholder:(_getLocalizedValue113=getLocalizedValue(\"v99\",activeLocale))!==null&&_getLocalizedValue113!==void 0?_getLocalizedValue113:\"Name\",value:\"\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,width:\"100%\",withEmail:true,withMessage:true,withName:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g64l1q\",\"data-framer-name\":\"Logos\",name:\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue114=getLocalizedValue(\"v104\",activeLocale))!==null&&_getLocalizedValue114!==void 0?_getLocalizedValue114:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4yrtaw\",\"data-styles-preset\":\"NDPBqL2Uk\",children:\"Supported by\"})}),className:\"framer-6ve8m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xidmc0\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.mammut.com/ch/de\",nodeId:\"rriulJ24V\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:(_getLocalizedValue115=getLocalizedValue(\"v105\",activeLocale))!==null&&_getLocalizedValue115!==void 0?_getLocalizedValue115:\"The Snow Experience Davos is supported by Mammut switzerland\",fit:\"fit\",intrinsicHeight:662,intrinsicWidth:3113,pixelHeight:662,pixelWidth:3113,positionX:\"center\",positionY:\"center\",sizes:\"201px\",src:\"https://framerusercontent.com/images/RsL4XafeKLw61iI70hWWh6OW4k.png\",srcSet:\"https://framerusercontent.com/images/RsL4XafeKLw61iI70hWWh6OW4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/RsL4XafeKLw61iI70hWWh6OW4k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RsL4XafeKLw61iI70hWWh6OW4k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RsL4XafeKLw61iI70hWWh6OW4k.png 3113w\"},className:\"framer-se5gnn framer-lux5qc\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.original.plus\",nodeId:\"WLReRUyev\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:(_getLocalizedValue116=getLocalizedValue(\"v106\",activeLocale))!==null&&_getLocalizedValue116!==void 0?_getLocalizedValue116:\"The Snow Experience is supported by Original plus skis\",fit:\"fit\",intrinsicHeight:394,intrinsicWidth:2894,pixelHeight:394,pixelWidth:2894,positionX:\"center\",positionY:\"center\",sizes:\"201px\",src:\"https://framerusercontent.com/images/lA63kBVZTb3KBkC9S1A5LH05aaU.png\",srcSet:\"https://framerusercontent.com/images/lA63kBVZTb3KBkC9S1A5LH05aaU.png?scale-down-to=512 512w,https://framerusercontent.com/images/lA63kBVZTb3KBkC9S1A5LH05aaU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lA63kBVZTb3KBkC9S1A5LH05aaU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lA63kBVZTb3KBkC9S1A5LH05aaU.png 2894w\"},className:\"framer-1tud3hn framer-lux5qc\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://apresoutdoor.com\",nodeId:\"PdD86nPqr\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:(_getLocalizedValue117=getLocalizedValue(\"v107\",activeLocale))!==null&&_getLocalizedValue117!==void 0?_getLocalizedValue117:\"The Snow Experience Davos is supported by Apres outdoor\",fit:\"fit\",intrinsicHeight:1771,intrinsicWidth:3542,pixelHeight:1771,pixelWidth:3542,positionX:\"center\",positionY:\"center\",sizes:\"201px\",src:\"https://framerusercontent.com/images/y877aDaErYfKtjENOzjgaAxoeg.png\",srcSet:\"https://framerusercontent.com/images/y877aDaErYfKtjENOzjgaAxoeg.png?scale-down-to=512 512w,https://framerusercontent.com/images/y877aDaErYfKtjENOzjgaAxoeg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/y877aDaErYfKtjENOzjgaAxoeg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/y877aDaErYfKtjENOzjgaAxoeg.png 3542w\"},className:\"framer-xgkujh framer-lux5qc\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.lemontreesurfhouse.com\",nodeId:\"iWHboRlIU\",openInNewTab:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:(_getLocalizedValue118=getLocalizedValue(\"v108\",activeLocale))!==null&&_getLocalizedValue118!==void 0?_getLocalizedValue118:\"The Snow Experience Davos is supported by HourAway\",fit:\"fit\",intrinsicHeight:1280,intrinsicWidth:784,pixelHeight:1280,pixelWidth:784,positionX:\"center\",positionY:\"center\",sizes:\"178px\",src:\"https://framerusercontent.com/images/N6Ldv3gRTuCUSHraprt78y5Kc.jpg\",srcSet:\"https://framerusercontent.com/images/N6Ldv3gRTuCUSHraprt78y5Kc.jpg?scale-down-to=1024 627w,https://framerusercontent.com/images/N6Ldv3gRTuCUSHraprt78y5Kc.jpg 784w\"},className:\"framer-19bfn5a framer-lux5qc\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://peakpunk.com/en/\",nodeId:\"hd7T2NtTH\",openInNewTab:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:(_getLocalizedValue119=getLocalizedValue(\"v109\",activeLocale))!==null&&_getLocalizedValue119!==void 0?_getLocalizedValue119:\"Peak Punk bars\",fit:\"fit\",intrinsicHeight:934,intrinsicWidth:4865,pixelHeight:285,pixelWidth:1151,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KxOpjIC7rPEiURzTc9Xvm9eb3s.png\"},className:\"framer-106bt7q framer-lux5qc\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.hour-away.com\",nodeId:\"aLs7tD173\",openInNewTab:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:(_getLocalizedValue120=getLocalizedValue(\"v110\",activeLocale))!==null&&_getLocalizedValue120!==void 0?_getLocalizedValue120:\"The Snow Experience Davos is supported by HourAway\",fit:\"fit\",intrinsicHeight:934,intrinsicWidth:4865,pixelHeight:934,pixelWidth:4865,positionX:\"center\",positionY:\"center\",sizes:\"201px\",src:\"https://framerusercontent.com/images/3N2bRbszsvyoweSfBYEhmYUMzE.png\",srcSet:\"https://framerusercontent.com/images/3N2bRbszsvyoweSfBYEhmYUMzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/3N2bRbszsvyoweSfBYEhmYUMzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3N2bRbszsvyoweSfBYEhmYUMzE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3N2bRbszsvyoweSfBYEhmYUMzE.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/3N2bRbszsvyoweSfBYEhmYUMzE.png 4865w\"},className:\"framer-fd3qi1 framer-lux5qc\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h4prj8-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<a href='https://www.kayak.de/' target='_blank'><img height='100' src='https://content.r9cdn.net/rimg/seo/badges/v1/DARK_LARGE_LOGO_KAYAK.png' /></a>\t\",id:\"kGKduA0aH\",layoutId:\"kGKduA0aH\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kycoyi-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oLoyIpJzt:{variant:\"WrXpDYJtD\"},uhd9738DJ:{variant:\"vovwsQKbA\"}},children:/*#__PURE__*/_jsx(FooterDark,{height:\"100%\",id:\"f9vj2WRVH\",layoutId:\"f9vj2WRVH\",style:{width:\"100%\"},variant:\"HjBSZ2Ykb\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-sCr1U { background: white; }`,\".framer-sCr1U.framer-lux5qc, .framer-sCr1U .framer-lux5qc { display: block; }\",\".framer-sCr1U.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-sCr1U .framer-z0pvmg-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-sCr1U .framer-1alquzy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 978px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-2uaq9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; mix-blend-mode: darken; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-bz56g4-container { bottom: 31px; flex: none; height: 40px; left: calc(50.00000000000002% - 9% / 2); position: absolute; width: 9%; z-index: 1; }\",\".framer-sCr1U .framer-1735n4b { align-content: center; align-items: center; background: linear-gradient(270deg, #bbd7e9 0%, #92a3b2 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-dx9qxi { align-content: center; align-items: center; background-color: #f1f5f9; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 56px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-swgmok, .framer-sCr1U .framer-c4z9nc, .framer-sCr1U .framer-w6b432, .framer-sCr1U .framer-h5pnop, .framer-sCr1U .framer-116klex, .framer-sCr1U .framer-qf6mou, .framer-sCr1U .framer-gqmh97, .framer-sCr1U .framer-1axc6re, .framer-sCr1U .framer-1dhf74m, .framer-sCr1U .framer-akumxe, .framer-sCr1U .framer-1wgz6gg, .framer-sCr1U .framer-ffjw5p, .framer-sCr1U .framer-846ma9, .framer-sCr1U .framer-1xw7pi4, .framer-sCr1U .framer-theqf8, .framer-sCr1U .framer-1towcgr, .framer-sCr1U .framer-1pl2837, .framer-sCr1U .framer-1a1vscx, .framer-sCr1U .framer-gr804y, .framer-sCr1U .framer-1jrd4b8, .framer-sCr1U .framer-g533no, .framer-sCr1U .framer-6hxwn1, .framer-sCr1U .framer-xvt2ux, .framer-sCr1U .framer-p397vq, .framer-sCr1U .framer-p0n9iq, .framer-sCr1U .framer-1cpcvrq, .framer-sCr1U .framer-1iwmmk3, .framer-sCr1U .framer-u2i5oi { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sCr1U .framer-zacs9u, .framer-sCr1U .framer-1vrcysz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1420px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-1frzxba, .framer-sCr1U .framer-1htmeih, .framer-sCr1U .framer-wqdvks { --border-bottom-width: 1px; --border-color: #e2e8f0; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: 208px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sCr1U .framer-mdaq0x, .framer-sCr1U .framer-slzv5a, .framer-sCr1U .framer-5eviyu, .framer-sCr1U .framer-violz3, .framer-sCr1U .framer-1owhn3r, .framer-sCr1U .framer-1b295br, .framer-sCr1U .framer-1r3g7li, .framer-sCr1U .framer-1nb8e62, .framer-sCr1U .framer-dx1pjc, .framer-sCr1U .framer-1be0hlo, .framer-sCr1U .framer-13xmg2h, .framer-sCr1U .framer-lbi1bc { align-content: flex-start; align-items: flex-start; background-color: #ffffff; box-shadow: 0px 1px 0px 0px #e2e8f0; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-zjcpm6, .framer-sCr1U .framer-1h0u4te, .framer-sCr1U .framer-13ab5n3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 315px; word-break: break-word; word-wrap: break-word; }\",\".framer-sCr1U .framer-1ylhlta, .framer-sCr1U .framer-1vd3be9, .framer-sCr1U .framer-qdhydu { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-98rh8g, .framer-sCr1U .framer-1cnns6w, .framer-sCr1U .framer-1td1n4k, .framer-sCr1U .framer-1kzj2y, .framer-sCr1U .framer-dlq0x1, .framer-sCr1U .framer-ij97w3, .framer-sCr1U .framer-ih5ore, .framer-sCr1U .framer-1pofha1, .framer-sCr1U .framer-1mh1d2l, .framer-sCr1U .framer-1y5kk4t { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-sCr1U .framer-18s952s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 362px; justify-content: flex-start; mix-blend-mode: darken; overflow: visible; padding: 0px; position: relative; width: 810px; }\",\".framer-sCr1U .framer-eddop5 { align-content: center; align-items: center; background-color: #f1f5f9; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 80px 40px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-sCr1U .framer-xrrqmn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-sCr1U .framer-47ltyh, .framer-sCr1U .framer-m9qx51, .framer-sCr1U .framer-1hus6nd, .framer-sCr1U .framer-wthnhp, .framer-sCr1U .framer-6dd9wk, .framer-sCr1U .framer-19udg3w, .framer-sCr1U .framer-1i02cec, .framer-sCr1U .framer-33qtz9, .framer-sCr1U .framer-1apqtfq, .framer-sCr1U .framer-7gu2bp, .framer-sCr1U .framer-rb7jof, .framer-sCr1U .framer-1d2j1rt, .framer-sCr1U .framer-1h0g0wv, .framer-sCr1U .framer-cbaoyk, .framer-sCr1U .framer-1350c6o, .framer-sCr1U .framer-1sb0kxr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sCr1U .framer-130a2vb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1420px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-clhxcm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-136iebb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-ux4abz { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-1t7tthl, .framer-sCr1U .framer-z3po84, .framer-sCr1U .framer-xa7qtt, .framer-sCr1U .framer-1muyd5s, .framer-sCr1U .framer-ru4kci { --border-bottom-width: 0px; --border-color: #0099ff; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 4px; align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.11); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-sCr1U .framer-10s3a23-container, .framer-sCr1U .framer-ukej4p-container { flex: none; height: 279px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-p5cmbi, .framer-sCr1U .framer-1oiau8f, .framer-sCr1U .framer-ezj7nd, .framer-sCr1U .framer-p87osl, .framer-sCr1U .framer-luhcc3, .framer-sCr1U .framer-1g5b8jq, .framer-sCr1U .framer-1lf7sgb, .framer-sCr1U .framer-bi5hoh, .framer-sCr1U .framer-5wx80o, .framer-sCr1U .framer-1s5i72k, .framer-sCr1U .framer-5hvyo5, .framer-sCr1U .framer-1t1fn7f, .framer-sCr1U .framer-1bctcxe, .framer-sCr1U .framer-19i3igu, .framer-sCr1U .framer-y5fyze { height: 300px; position: relative; width: 400px; }\",\".framer-sCr1U .framer-3puswp { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-sf8lvn, .framer-sCr1U .framer-ha8cfk, .framer-sCr1U .framer-1fn16bp, .framer-sCr1U .framer-14hjj2g, .framer-sCr1U .framer-o1i3tn, .framer-sCr1U .framer-1gdl94i { 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: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sCr1U .framer-1gcv0az, .framer-sCr1U .framer-1yc3eal, .framer-sCr1U .framer-fpdtjh, .framer-sCr1U .framer-rpi314, .framer-sCr1U .framer-14lylcc, .framer-sCr1U .framer-rzg62x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-fez0m8, .framer-sCr1U .framer-1f3xbaz, .framer-sCr1U .framer-11xvnze, .framer-sCr1U .framer-p91hxq, .framer-sCr1U .framer-ju265h, .framer-sCr1U .framer-jrsvkk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-19x5tkf-container, .framer-sCr1U .framer-q61wdy-container, .framer-sCr1U .framer-pzka06-container, .framer-sCr1U .framer-119sr66-container, .framer-sCr1U .framer-zodxs3-container, .framer-sCr1U .framer-hv11xk-container, .framer-sCr1U .framer-19htzeq-container, .framer-sCr1U .framer-lbdmkf-container, .framer-sCr1U .framer-1rp7m7d-container, .framer-sCr1U .framer-1hk2tv5-container, .framer-sCr1U .framer-1fwndff-container { flex: 1 0 0px; height: 40px; position: relative; width: 1px; }\",\".framer-sCr1U .framer-1a996ia, .framer-sCr1U .framer-1uq58uh, .framer-sCr1U .framer-1arw8uv, .framer-sCr1U .framer-1c4spf5, .framer-sCr1U .framer-rvcz0y { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-1ri0jro-container, .framer-sCr1U .framer-1qlqn9w-container, .framer-sCr1U .framer-rpbvo4-container { flex: none; height: 280px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-39k384 { --border-bottom-width: 0px; --border-color: #0099ff; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 4px; align-content: flex-start; align-items: flex-start; align-self: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.11); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-sCr1U .framer-1y6yzgp-container { flex: none; height: 281px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-1r9puz0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 72px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-5oe7hu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1420px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-1vpr1u6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sCr1U .framer-s4r39j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-fpg0o1, .framer-sCr1U .framer-1t0r7ki, .framer-sCr1U .framer-1a9hlgv, .framer-sCr1U .framer-15ohofp, .framer-sCr1U .framer-1xbz0ol { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-o8gxmx { align-self: stretch; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: auto; overflow: hidden; position: relative; width: 44%; will-change: var(--framer-will-change-override, transform); }\",\".framer-sCr1U .framer-1ah1wp3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 72px 40px 80px 40px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-sCr1U .framer-96kzdf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-1tviesd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 626px; }\",\".framer-sCr1U .framer-1l5wb04, .framer-sCr1U .framer-iizs2i { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 626px; word-break: break-word; word-wrap: break-word; }\",\".framer-sCr1U .framer-1o2lzau { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-wy58p6-container { flex: none; height: 40px; position: relative; width: 40%; }\",\".framer-sCr1U .framer-tu31td { align-self: stretch; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-sCr1U .framer-12qz7m9 { align-content: center; align-items: center; background-color: #f1f5f9; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 72px 40px 80px 40px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-sCr1U .framer-17zzmkh, .framer-sCr1U .framer-hof8zq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1420px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-1tdpw4q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-u7nfty, .framer-sCr1U .framer-1ob02ta { flex: none; height: 171px; position: relative; width: 44px; }\",\".framer-sCr1U .framer-jeh9os { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-10th3eg, .framer-sCr1U .framer-14dw7s2, .framer-sCr1U .framer-15pvvzv, .framer-sCr1U .framer-t7u9qf { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.11); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sCr1U .framer-42b9di { flex: none; height: 304px; overflow: hidden; position: relative; text-decoration: none; width: 100%; }\",\".framer-sCr1U .framer-okl3ri { align-content: flex-start; align-items: flex-start; background-color: #ffffff; box-shadow: 0px 1px 0px 0px #e2e8f0; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 55px; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-1le5uu4 { flex: none; height: 30%; left: calc(52.800000000000026% - 49.4% / 2); position: absolute; top: calc(56.36363636363638% - 30% / 2); white-space: pre-wrap; width: 49%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-sCr1U .framer-1gmbeeo, .framer-sCr1U .framer-18di4by, .framer-sCr1U .framer-7132kb, .framer-sCr1U .framer-1gcn9kf { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 28px 16px 28px 16px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-71f4mu, .framer-sCr1U .framer-32sp6u, .framer-sCr1U .framer-te4j0u, .framer-sCr1U .framer-17zgl2d { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sCr1U .framer-1ly82eu { flex: none; height: 306px; overflow: hidden; position: relative; text-decoration: none; width: 100%; }\",\".framer-sCr1U .framer-1y16m5z { flex: none; height: 29%; left: 58px; position: absolute; top: 53%; transform: translateY(-50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-sCr1U .framer-16kzcak { flex: none; height: 303px; overflow: hidden; position: relative; text-decoration: none; width: 100%; }\",\".framer-sCr1U .framer-1dc7qpm, .framer-sCr1U .framer-1loyc05 { flex: none; height: 29%; left: calc(52.800000000000026% - 49.4% / 2); position: absolute; top: calc(56.36363636363638% - 29.09090909090909% / 2); white-space: pre-wrap; width: 49%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-sCr1U .framer-8iirmy { flex: none; height: 305px; overflow: hidden; position: relative; text-decoration: none; width: 100%; }\",\".framer-sCr1U .framer-1bwefdl-container { flex: none; height: 599px; position: relative; width: 90%; }\",\".framer-sCr1U .framer-1jq6j3p { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 20px 80px 20px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-761wlj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 45%; }\",\".framer-sCr1U .framer-1frjuer { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 540px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sCr1U .framer-1hxjslu-container { flex: none; height: 290px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-1g64l1q { align-content: center; align-items: center; background-color: #f1f5f9; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-sCr1U .framer-6ve8m { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-sCr1U .framer-xidmc0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 60px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1154px; }\",\".framer-sCr1U .framer-se5gnn { flex: none; height: 70px; overflow: hidden; position: relative; text-decoration: none; width: 201px; }\",\".framer-sCr1U .framer-1tud3hn, .framer-sCr1U .framer-xgkujh, .framer-sCr1U .framer-106bt7q, .framer-sCr1U .framer-fd3qi1 { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 68px); overflow: hidden; position: relative; text-decoration: none; width: 201px; }\",\".framer-sCr1U .framer-19bfn5a { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); overflow: hidden; position: relative; text-decoration: none; width: 178px; }\",\".framer-sCr1U .framer-h4prj8-container { flex: none; height: 193px; position: relative; width: 267px; }\",\".framer-sCr1U .framer-kycoyi-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sCr1U.framer-72rtr7, .framer-sCr1U .framer-1alquzy, .framer-sCr1U .framer-2uaq9, .framer-sCr1U .framer-1735n4b, .framer-sCr1U .framer-dx9qxi, .framer-sCr1U .framer-zacs9u, .framer-sCr1U .framer-1frzxba, .framer-sCr1U .framer-mdaq0x, .framer-sCr1U .framer-1ylhlta, .framer-sCr1U .framer-1htmeih, .framer-sCr1U .framer-slzv5a, .framer-sCr1U .framer-1vd3be9, .framer-sCr1U .framer-wqdvks, .framer-sCr1U .framer-5eviyu, .framer-sCr1U .framer-qdhydu, .framer-sCr1U .framer-18s952s, .framer-sCr1U .framer-eddop5, .framer-sCr1U .framer-xrrqmn, .framer-sCr1U .framer-130a2vb, .framer-sCr1U .framer-clhxcm, .framer-sCr1U .framer-136iebb, .framer-sCr1U .framer-1t7tthl, .framer-sCr1U .framer-violz3, .framer-sCr1U .framer-3puswp, .framer-sCr1U .framer-sf8lvn, .framer-sCr1U .framer-1gcv0az, .framer-sCr1U .framer-fez0m8, .framer-sCr1U .framer-z3po84, .framer-sCr1U .framer-1owhn3r, .framer-sCr1U .framer-ha8cfk, .framer-sCr1U .framer-1yc3eal, .framer-sCr1U .framer-1f3xbaz, .framer-sCr1U .framer-xa7qtt, .framer-sCr1U .framer-1b295br, .framer-sCr1U .framer-1fn16bp, .framer-sCr1U .framer-fpdtjh, .framer-sCr1U .framer-11xvnze, .framer-sCr1U .framer-39k384, .framer-sCr1U .framer-1r3g7li, .framer-sCr1U .framer-14hjj2g, .framer-sCr1U .framer-rpi314, .framer-sCr1U .framer-p91hxq, .framer-sCr1U .framer-1muyd5s, .framer-sCr1U .framer-1nb8e62, .framer-sCr1U .framer-o1i3tn, .framer-sCr1U .framer-14lylcc, .framer-sCr1U .framer-ju265h, .framer-sCr1U .framer-ru4kci, .framer-sCr1U .framer-dx1pjc, .framer-sCr1U .framer-1gdl94i, .framer-sCr1U .framer-rzg62x, .framer-sCr1U .framer-jrsvkk, .framer-sCr1U .framer-1r9puz0, .framer-sCr1U .framer-5oe7hu, .framer-sCr1U .framer-1vpr1u6, .framer-sCr1U .framer-s4r39j, .framer-sCr1U .framer-fpg0o1, .framer-sCr1U .framer-1t0r7ki, .framer-sCr1U .framer-1a9hlgv, .framer-sCr1U .framer-15ohofp, .framer-sCr1U .framer-1ah1wp3, .framer-sCr1U .framer-96kzdf, .framer-sCr1U .framer-1vrcysz, .framer-sCr1U .framer-1tviesd, .framer-sCr1U .framer-1xbz0ol, .framer-sCr1U .framer-1o2lzau, .framer-sCr1U .framer-12qz7m9, .framer-sCr1U .framer-17zzmkh, .framer-sCr1U .framer-1tdpw4q, .framer-sCr1U .framer-hof8zq, .framer-sCr1U .framer-jeh9os, .framer-sCr1U .framer-10th3eg, .framer-sCr1U .framer-okl3ri, .framer-sCr1U .framer-71f4mu, .framer-sCr1U .framer-14dw7s2, .framer-sCr1U .framer-1be0hlo, .framer-sCr1U .framer-32sp6u, .framer-sCr1U .framer-15pvvzv, .framer-sCr1U .framer-13xmg2h, .framer-sCr1U .framer-te4j0u, .framer-sCr1U .framer-t7u9qf, .framer-sCr1U .framer-lbi1bc, .framer-sCr1U .framer-17zgl2d, .framer-sCr1U .framer-1jq6j3p, .framer-sCr1U .framer-761wlj, .framer-sCr1U .framer-1frjuer, .framer-sCr1U .framer-1g64l1q, .framer-sCr1U .framer-xidmc0 { gap: 0px; } .framer-sCr1U.framer-72rtr7 > *, .framer-sCr1U .framer-1alquzy > *, .framer-sCr1U .framer-71f4mu > *, .framer-sCr1U .framer-32sp6u > *, .framer-sCr1U .framer-te4j0u > *, .framer-sCr1U .framer-17zgl2d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sCr1U.framer-72rtr7 > :first-child, .framer-sCr1U .framer-1alquzy > :first-child, .framer-sCr1U .framer-1735n4b > :first-child, .framer-sCr1U .framer-dx9qxi > :first-child, .framer-sCr1U .framer-1frzxba > :first-child, .framer-sCr1U .framer-1htmeih > :first-child, .framer-sCr1U .framer-wqdvks > :first-child, .framer-sCr1U .framer-eddop5 > :first-child, .framer-sCr1U .framer-xrrqmn > :first-child, .framer-sCr1U .framer-130a2vb > :first-child, .framer-sCr1U .framer-clhxcm > :first-child, .framer-sCr1U .framer-1t7tthl > :first-child, .framer-sCr1U .framer-sf8lvn > :first-child, .framer-sCr1U .framer-1gcv0az > :first-child, .framer-sCr1U .framer-z3po84 > :first-child, .framer-sCr1U .framer-ha8cfk > :first-child, .framer-sCr1U .framer-1yc3eal > :first-child, .framer-sCr1U .framer-xa7qtt > :first-child, .framer-sCr1U .framer-1fn16bp > :first-child, .framer-sCr1U .framer-fpdtjh > :first-child, .framer-sCr1U .framer-39k384 > :first-child, .framer-sCr1U .framer-14hjj2g > :first-child, .framer-sCr1U .framer-rpi314 > :first-child, .framer-sCr1U .framer-1muyd5s > :first-child, .framer-sCr1U .framer-o1i3tn > :first-child, .framer-sCr1U .framer-14lylcc > :first-child, .framer-sCr1U .framer-ru4kci > :first-child, .framer-sCr1U .framer-1gdl94i > :first-child, .framer-sCr1U .framer-rzg62x > :first-child, .framer-sCr1U .framer-1r9puz0 > :first-child, .framer-sCr1U .framer-1vpr1u6 > :first-child, .framer-sCr1U .framer-s4r39j > :first-child, .framer-sCr1U .framer-fpg0o1 > :first-child, .framer-sCr1U .framer-1t0r7ki > :first-child, .framer-sCr1U .framer-1a9hlgv > :first-child, .framer-sCr1U .framer-15ohofp > :first-child, .framer-sCr1U .framer-1ah1wp3 > :first-child, .framer-sCr1U .framer-96kzdf > :first-child, .framer-sCr1U .framer-1tviesd > :first-child, .framer-sCr1U .framer-1xbz0ol > :first-child, .framer-sCr1U .framer-1o2lzau > :first-child, .framer-sCr1U .framer-12qz7m9 > :first-child, .framer-sCr1U .framer-17zzmkh > :first-child, .framer-sCr1U .framer-hof8zq > :first-child, .framer-sCr1U .framer-10th3eg > :first-child, .framer-sCr1U .framer-71f4mu > :first-child, .framer-sCr1U .framer-14dw7s2 > :first-child, .framer-sCr1U .framer-32sp6u > :first-child, .framer-sCr1U .framer-15pvvzv > :first-child, .framer-sCr1U .framer-te4j0u > :first-child, .framer-sCr1U .framer-t7u9qf > :first-child, .framer-sCr1U .framer-17zgl2d > :first-child, .framer-sCr1U .framer-761wlj > :first-child, .framer-sCr1U .framer-1g64l1q > :first-child { margin-top: 0px; } .framer-sCr1U.framer-72rtr7 > :last-child, .framer-sCr1U .framer-1alquzy > :last-child, .framer-sCr1U .framer-1735n4b > :last-child, .framer-sCr1U .framer-dx9qxi > :last-child, .framer-sCr1U .framer-1frzxba > :last-child, .framer-sCr1U .framer-1htmeih > :last-child, .framer-sCr1U .framer-wqdvks > :last-child, .framer-sCr1U .framer-eddop5 > :last-child, .framer-sCr1U .framer-xrrqmn > :last-child, .framer-sCr1U .framer-130a2vb > :last-child, .framer-sCr1U .framer-clhxcm > :last-child, .framer-sCr1U .framer-1t7tthl > :last-child, .framer-sCr1U .framer-sf8lvn > :last-child, .framer-sCr1U .framer-1gcv0az > :last-child, .framer-sCr1U .framer-z3po84 > :last-child, .framer-sCr1U .framer-ha8cfk > :last-child, .framer-sCr1U .framer-1yc3eal > :last-child, .framer-sCr1U .framer-xa7qtt > :last-child, .framer-sCr1U .framer-1fn16bp > :last-child, .framer-sCr1U .framer-fpdtjh > :last-child, .framer-sCr1U .framer-39k384 > :last-child, .framer-sCr1U .framer-14hjj2g > :last-child, .framer-sCr1U .framer-rpi314 > :last-child, .framer-sCr1U .framer-1muyd5s > :last-child, .framer-sCr1U .framer-o1i3tn > :last-child, .framer-sCr1U .framer-14lylcc > :last-child, .framer-sCr1U .framer-ru4kci > :last-child, .framer-sCr1U .framer-1gdl94i > :last-child, .framer-sCr1U .framer-rzg62x > :last-child, .framer-sCr1U .framer-1r9puz0 > :last-child, .framer-sCr1U .framer-1vpr1u6 > :last-child, .framer-sCr1U .framer-s4r39j > :last-child, .framer-sCr1U .framer-fpg0o1 > :last-child, .framer-sCr1U .framer-1t0r7ki > :last-child, .framer-sCr1U .framer-1a9hlgv > :last-child, .framer-sCr1U .framer-15ohofp > :last-child, .framer-sCr1U .framer-1ah1wp3 > :last-child, .framer-sCr1U .framer-96kzdf > :last-child, .framer-sCr1U .framer-1tviesd > :last-child, .framer-sCr1U .framer-1xbz0ol > :last-child, .framer-sCr1U .framer-1o2lzau > :last-child, .framer-sCr1U .framer-12qz7m9 > :last-child, .framer-sCr1U .framer-17zzmkh > :last-child, .framer-sCr1U .framer-hof8zq > :last-child, .framer-sCr1U .framer-10th3eg > :last-child, .framer-sCr1U .framer-71f4mu > :last-child, .framer-sCr1U .framer-14dw7s2 > :last-child, .framer-sCr1U .framer-32sp6u > :last-child, .framer-sCr1U .framer-15pvvzv > :last-child, .framer-sCr1U .framer-te4j0u > :last-child, .framer-sCr1U .framer-t7u9qf > :last-child, .framer-sCr1U .framer-17zgl2d > :last-child, .framer-sCr1U .framer-761wlj > :last-child, .framer-sCr1U .framer-1g64l1q > :last-child { margin-bottom: 0px; } .framer-sCr1U .framer-2uaq9 > *, .framer-sCr1U .framer-18s952s > *, .framer-sCr1U .framer-3puswp > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-sCr1U .framer-2uaq9 > :first-child, .framer-sCr1U .framer-zacs9u > :first-child, .framer-sCr1U .framer-mdaq0x > :first-child, .framer-sCr1U .framer-1ylhlta > :first-child, .framer-sCr1U .framer-slzv5a > :first-child, .framer-sCr1U .framer-1vd3be9 > :first-child, .framer-sCr1U .framer-5eviyu > :first-child, .framer-sCr1U .framer-qdhydu > :first-child, .framer-sCr1U .framer-18s952s > :first-child, .framer-sCr1U .framer-136iebb > :first-child, .framer-sCr1U .framer-violz3 > :first-child, .framer-sCr1U .framer-3puswp > :first-child, .framer-sCr1U .framer-fez0m8 > :first-child, .framer-sCr1U .framer-1owhn3r > :first-child, .framer-sCr1U .framer-1f3xbaz > :first-child, .framer-sCr1U .framer-1b295br > :first-child, .framer-sCr1U .framer-11xvnze > :first-child, .framer-sCr1U .framer-1r3g7li > :first-child, .framer-sCr1U .framer-p91hxq > :first-child, .framer-sCr1U .framer-1nb8e62 > :first-child, .framer-sCr1U .framer-ju265h > :first-child, .framer-sCr1U .framer-dx1pjc > :first-child, .framer-sCr1U .framer-jrsvkk > :first-child, .framer-sCr1U .framer-5oe7hu > :first-child, .framer-sCr1U .framer-1vrcysz > :first-child, .framer-sCr1U .framer-1tdpw4q > :first-child, .framer-sCr1U .framer-jeh9os > :first-child, .framer-sCr1U .framer-okl3ri > :first-child, .framer-sCr1U .framer-1be0hlo > :first-child, .framer-sCr1U .framer-13xmg2h > :first-child, .framer-sCr1U .framer-lbi1bc > :first-child, .framer-sCr1U .framer-1jq6j3p > :first-child, .framer-sCr1U .framer-1frjuer > :first-child, .framer-sCr1U .framer-xidmc0 > :first-child { margin-left: 0px; } .framer-sCr1U .framer-2uaq9 > :last-child, .framer-sCr1U .framer-zacs9u > :last-child, .framer-sCr1U .framer-mdaq0x > :last-child, .framer-sCr1U .framer-1ylhlta > :last-child, .framer-sCr1U .framer-slzv5a > :last-child, .framer-sCr1U .framer-1vd3be9 > :last-child, .framer-sCr1U .framer-5eviyu > :last-child, .framer-sCr1U .framer-qdhydu > :last-child, .framer-sCr1U .framer-18s952s > :last-child, .framer-sCr1U .framer-136iebb > :last-child, .framer-sCr1U .framer-violz3 > :last-child, .framer-sCr1U .framer-3puswp > :last-child, .framer-sCr1U .framer-fez0m8 > :last-child, .framer-sCr1U .framer-1owhn3r > :last-child, .framer-sCr1U .framer-1f3xbaz > :last-child, .framer-sCr1U .framer-1b295br > :last-child, .framer-sCr1U .framer-11xvnze > :last-child, .framer-sCr1U .framer-1r3g7li > :last-child, .framer-sCr1U .framer-p91hxq > :last-child, .framer-sCr1U .framer-1nb8e62 > :last-child, .framer-sCr1U .framer-ju265h > :last-child, .framer-sCr1U .framer-dx1pjc > :last-child, .framer-sCr1U .framer-jrsvkk > :last-child, .framer-sCr1U .framer-5oe7hu > :last-child, .framer-sCr1U .framer-1vrcysz > :last-child, .framer-sCr1U .framer-1tdpw4q > :last-child, .framer-sCr1U .framer-jeh9os > :last-child, .framer-sCr1U .framer-okl3ri > :last-child, .framer-sCr1U .framer-1be0hlo > :last-child, .framer-sCr1U .framer-13xmg2h > :last-child, .framer-sCr1U .framer-lbi1bc > :last-child, .framer-sCr1U .framer-1jq6j3p > :last-child, .framer-sCr1U .framer-1frjuer > :last-child, .framer-sCr1U .framer-xidmc0 > :last-child { margin-right: 0px; } .framer-sCr1U .framer-1735n4b > *, .framer-sCr1U .framer-dx9qxi > *, .framer-sCr1U .framer-eddop5 > *, .framer-sCr1U .framer-130a2vb > *, .framer-sCr1U .framer-clhxcm > *, .framer-sCr1U .framer-1vpr1u6 > *, .framer-sCr1U .framer-s4r39j > *, .framer-sCr1U .framer-1ah1wp3 > *, .framer-sCr1U .framer-12qz7m9 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-sCr1U .framer-zacs9u > *, .framer-sCr1U .framer-1vrcysz > *, .framer-sCr1U .framer-jeh9os > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-sCr1U .framer-1frzxba > *, .framer-sCr1U .framer-1htmeih > *, .framer-sCr1U .framer-wqdvks > *, .framer-sCr1U .framer-1t7tthl > *, .framer-sCr1U .framer-z3po84 > *, .framer-sCr1U .framer-xa7qtt > *, .framer-sCr1U .framer-39k384 > *, .framer-sCr1U .framer-1muyd5s > *, .framer-sCr1U .framer-ru4kci > *, .framer-sCr1U .framer-10th3eg > *, .framer-sCr1U .framer-14dw7s2 > *, .framer-sCr1U .framer-15pvvzv > *, .framer-sCr1U .framer-t7u9qf > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } .framer-sCr1U .framer-mdaq0x > *, .framer-sCr1U .framer-1ylhlta > *, .framer-sCr1U .framer-slzv5a > *, .framer-sCr1U .framer-1vd3be9 > *, .framer-sCr1U .framer-5eviyu > *, .framer-sCr1U .framer-qdhydu > *, .framer-sCr1U .framer-violz3 > *, .framer-sCr1U .framer-fez0m8 > *, .framer-sCr1U .framer-1owhn3r > *, .framer-sCr1U .framer-1f3xbaz > *, .framer-sCr1U .framer-1b295br > *, .framer-sCr1U .framer-11xvnze > *, .framer-sCr1U .framer-1r3g7li > *, .framer-sCr1U .framer-p91hxq > *, .framer-sCr1U .framer-1nb8e62 > *, .framer-sCr1U .framer-ju265h > *, .framer-sCr1U .framer-dx1pjc > *, .framer-sCr1U .framer-jrsvkk > *, .framer-sCr1U .framer-okl3ri > *, .framer-sCr1U .framer-1be0hlo > *, .framer-sCr1U .framer-13xmg2h > *, .framer-sCr1U .framer-lbi1bc > *, .framer-sCr1U .framer-1frjuer > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sCr1U .framer-xrrqmn > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-sCr1U .framer-136iebb > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-sCr1U .framer-sf8lvn > *, .framer-sCr1U .framer-1gcv0az > *, .framer-sCr1U .framer-ha8cfk > *, .framer-sCr1U .framer-1yc3eal > *, .framer-sCr1U .framer-1fn16bp > *, .framer-sCr1U .framer-fpdtjh > *, .framer-sCr1U .framer-14hjj2g > *, .framer-sCr1U .framer-rpi314 > *, .framer-sCr1U .framer-o1i3tn > *, .framer-sCr1U .framer-14lylcc > *, .framer-sCr1U .framer-1gdl94i > *, .framer-sCr1U .framer-rzg62x > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sCr1U .framer-1r9puz0 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-sCr1U .framer-5oe7hu > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-sCr1U .framer-fpg0o1 > *, .framer-sCr1U .framer-1t0r7ki > *, .framer-sCr1U .framer-1a9hlgv > *, .framer-sCr1U .framer-15ohofp > *, .framer-sCr1U .framer-1xbz0ol > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-sCr1U .framer-96kzdf > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-sCr1U .framer-1tviesd > *, .framer-sCr1U .framer-1o2lzau > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-sCr1U .framer-17zzmkh > *, .framer-sCr1U .framer-hof8zq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-sCr1U .framer-1tdpw4q > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-sCr1U .framer-1jq6j3p > *, .framer-sCr1U .framer-xidmc0 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-sCr1U .framer-761wlj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-sCr1U .framer-1g64l1q > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-sCr1U[data-border=\"true\"]::after, .framer-sCr1U [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-sCr1U { background: white; } .framer-sCr1U.framer-72rtr7 { width: 810px; } .framer-sCr1U .framer-1alquzy, .framer-sCr1U .framer-wqdvks { height: min-content; } .framer-sCr1U .framer-1735n4b { order: 2; } .framer-sCr1U .framer-1frzxba, .framer-sCr1U .framer-1htmeih, .framer-sCr1U .framer-761wlj { align-self: stretch; height: auto; } .framer-sCr1U .framer-zjcpm6, .framer-sCr1U .framer-1h0u4te, .framer-sCr1U .framer-13ab5n3 { flex: 1 0 0px; width: 1px; } .framer-sCr1U .framer-18s952s, .framer-sCr1U .framer-hof8zq { order: 1; } .framer-sCr1U .framer-eddop5, .framer-sCr1U .framer-1ah1wp3, .framer-sCr1U .framer-12qz7m9 { padding: 56px 40px 80px 40px; } .framer-sCr1U .framer-ux4abz { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-sCr1U .framer-1r9puz0 { gap: 40px; padding: 56px 40px 80px 40px; } .framer-sCr1U .framer-5oe7hu { align-content: center; align-items: center; flex-direction: column; gap: 26px; } .framer-sCr1U .framer-1vpr1u6 { flex: none; width: 100%; } .framer-sCr1U .framer-o8gxmx { align-self: unset; height: 460px; width: 100%; } .framer-sCr1U .framer-1vrcysz { flex-direction: column; } .framer-sCr1U .framer-1tviesd { width: 100%; } .framer-sCr1U .framer-tu31td { align-self: unset; flex: none; height: 504px; width: 100%; } .framer-sCr1U .framer-17zzmkh { order: 0; } .framer-sCr1U .framer-jeh9os { align-content: unset; align-items: unset; display: grid; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-sCr1U .framer-10th3eg, .framer-sCr1U .framer-14dw7s2, .framer-sCr1U .framer-15pvvzv, .framer-sCr1U .framer-t7u9qf { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-sCr1U .framer-1jq6j3p { padding: 56px 20px 80px 20px; } .framer-sCr1U .framer-1g64l1q { padding: 80px 40px 80px 40px; } .framer-sCr1U .framer-6ve8m { height: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sCr1U .framer-1r9puz0, .framer-sCr1U .framer-5oe7hu, .framer-sCr1U .framer-1vrcysz, .framer-sCr1U .framer-jeh9os { gap: 0px; } .framer-sCr1U .framer-1r9puz0 > *, .framer-sCr1U .framer-1vrcysz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-sCr1U .framer-1r9puz0 > :first-child, .framer-sCr1U .framer-5oe7hu > :first-child, .framer-sCr1U .framer-1vrcysz > :first-child { margin-top: 0px; } .framer-sCr1U .framer-1r9puz0 > :last-child, .framer-sCr1U .framer-5oe7hu > :last-child, .framer-sCr1U .framer-1vrcysz > :last-child { margin-bottom: 0px; } .framer-sCr1U .framer-5oe7hu > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-sCr1U .framer-jeh9os > *, .framer-sCr1U .framer-jeh9os > :first-child, .framer-sCr1U .framer-jeh9os > :last-child { margin: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-sCr1U { background: white; } .framer-sCr1U.framer-72rtr7 { width: 390px; } .framer-sCr1U .framer-z0pvmg-container { order: 0; } .framer-sCr1U .framer-1alquzy { height: min-content; order: 1; } .framer-sCr1U .framer-2uaq9 { flex: none; height: 437px; order: 0; } .framer-sCr1U .framer-bz56g4-container { left: calc(50.00000000000002% - 22% / 2); width: 22%; } .framer-sCr1U .framer-1735n4b { order: 1; } .framer-sCr1U .framer-dx9qxi { gap: 20px; padding: 20px 16px 20px 16px; } .framer-sCr1U .framer-zacs9u { flex-direction: column; gap: 20px; } .framer-sCr1U .framer-1frzxba, .framer-sCr1U .framer-1htmeih, .framer-sCr1U .framer-wqdvks { flex: none; height: min-content; width: 100%; } .framer-sCr1U .framer-zjcpm6, .framer-sCr1U .framer-1h0u4te, .framer-sCr1U .framer-13ab5n3 { flex: 1 0 0px; width: 1px; } .framer-sCr1U .framer-eddop5 { gap: 15px; order: 2; padding: 26px 16px 26px 16px; } .framer-sCr1U .framer-xrrqmn, .framer-sCr1U .framer-1tviesd, .framer-sCr1U .framer-1l5wb04, .framer-sCr1U .framer-iizs2i, .framer-sCr1U .framer-xidmc0 { width: 100%; } .framer-sCr1U .framer-47ltyh { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-sCr1U .framer-ux4abz { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-sCr1U .framer-1r9puz0 { gap: 20px; order: 3; padding: 26px 16px 26px 16px; } .framer-sCr1U .framer-5oe7hu { align-content: center; align-items: center; flex-direction: column; gap: 40px; max-width: 100%; } .framer-sCr1U .framer-1vpr1u6 { flex: none; gap: 20px; order: 1; width: 100%; } .framer-sCr1U .framer-s4r39j, .framer-sCr1U .framer-17zzmkh { gap: 20px; } .framer-sCr1U .framer-o8gxmx { align-self: unset; height: 349px; order: 0; width: 100%; } .framer-sCr1U .framer-1ah1wp3 { gap: 20px; order: 4; padding: 31px 16px 31px 16px; } .framer-sCr1U .framer-96kzdf { gap: 40px; } .framer-sCr1U .framer-1vrcysz { flex-direction: column; order: 0; } .framer-sCr1U .framer-tu31td { align-self: unset; flex: none; height: 504px; width: 100%; } .framer-sCr1U .framer-12qz7m9 { gap: 20px; order: 5; padding: 31px 16px 80px 16px; } .framer-sCr1U .framer-jeh9os { align-content: unset; align-items: unset; display: grid; gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); justify-content: center; } .framer-sCr1U .framer-10th3eg, .framer-sCr1U .framer-14dw7s2, .framer-sCr1U .framer-15pvvzv, .framer-sCr1U .framer-t7u9qf { align-self: start; flex: none; justify-self: start; width: 100%; } .framer-sCr1U .framer-1bwefdl-container { order: 6; } .framer-sCr1U .framer-1jq6j3p { flex-direction: column; order: 7; padding: 42px 16px 42px 16px; } .framer-sCr1U .framer-761wlj { gap: 19px; width: 100%; } .framer-sCr1U .framer-1350c6o { order: 0; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-sCr1U .framer-1sb0kxr { order: 1; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-sCr1U .framer-u2i5oi { order: 2; } .framer-sCr1U .framer-1frjuer { flex: none; height: 290px; max-width: 99%; width: 100%; } .framer-sCr1U .framer-1hxjslu-container { height: 100%; } .framer-sCr1U .framer-1g64l1q { order: 8; padding: 60px 20px 60px 20px; } .framer-sCr1U .framer-19bfn5a { height: var(--framer-aspect-ratio-supported, 60px); } .framer-sCr1U .framer-kycoyi-container { order: 9; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sCr1U .framer-dx9qxi, .framer-sCr1U .framer-zacs9u, .framer-sCr1U .framer-eddop5, .framer-sCr1U .framer-1r9puz0, .framer-sCr1U .framer-5oe7hu, .framer-sCr1U .framer-1vpr1u6, .framer-sCr1U .framer-s4r39j, .framer-sCr1U .framer-1ah1wp3, .framer-sCr1U .framer-96kzdf, .framer-sCr1U .framer-1vrcysz, .framer-sCr1U .framer-12qz7m9, .framer-sCr1U .framer-17zzmkh, .framer-sCr1U .framer-jeh9os, .framer-sCr1U .framer-1jq6j3p, .framer-sCr1U .framer-761wlj { gap: 0px; } .framer-sCr1U .framer-dx9qxi > *, .framer-sCr1U .framer-zacs9u > *, .framer-sCr1U .framer-1r9puz0 > *, .framer-sCr1U .framer-1vpr1u6 > *, .framer-sCr1U .framer-s4r39j > *, .framer-sCr1U .framer-1ah1wp3 > *, .framer-sCr1U .framer-12qz7m9 > *, .framer-sCr1U .framer-17zzmkh > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-sCr1U .framer-dx9qxi > :first-child, .framer-sCr1U .framer-zacs9u > :first-child, .framer-sCr1U .framer-eddop5 > :first-child, .framer-sCr1U .framer-1r9puz0 > :first-child, .framer-sCr1U .framer-5oe7hu > :first-child, .framer-sCr1U .framer-1vpr1u6 > :first-child, .framer-sCr1U .framer-s4r39j > :first-child, .framer-sCr1U .framer-1ah1wp3 > :first-child, .framer-sCr1U .framer-96kzdf > :first-child, .framer-sCr1U .framer-1vrcysz > :first-child, .framer-sCr1U .framer-12qz7m9 > :first-child, .framer-sCr1U .framer-17zzmkh > :first-child, .framer-sCr1U .framer-1jq6j3p > :first-child, .framer-sCr1U .framer-761wlj > :first-child { margin-top: 0px; } .framer-sCr1U .framer-dx9qxi > :last-child, .framer-sCr1U .framer-zacs9u > :last-child, .framer-sCr1U .framer-eddop5 > :last-child, .framer-sCr1U .framer-1r9puz0 > :last-child, .framer-sCr1U .framer-5oe7hu > :last-child, .framer-sCr1U .framer-1vpr1u6 > :last-child, .framer-sCr1U .framer-s4r39j > :last-child, .framer-sCr1U .framer-1ah1wp3 > :last-child, .framer-sCr1U .framer-96kzdf > :last-child, .framer-sCr1U .framer-1vrcysz > :last-child, .framer-sCr1U .framer-12qz7m9 > :last-child, .framer-sCr1U .framer-17zzmkh > :last-child, .framer-sCr1U .framer-1jq6j3p > :last-child, .framer-sCr1U .framer-761wlj > :last-child { margin-bottom: 0px; } .framer-sCr1U .framer-eddop5 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-sCr1U .framer-5oe7hu > *, .framer-sCr1U .framer-96kzdf > *, .framer-sCr1U .framer-1vrcysz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-sCr1U .framer-jeh9os > *, .framer-sCr1U .framer-jeh9os > :first-child, .framer-sCr1U .framer-jeh9os > :last-child { margin: 0px; } .framer-sCr1U .framer-1jq6j3p > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-sCr1U .framer-761wlj > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7840.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"oLoyIpJzt\":{\"layout\":[\"fixed\",\"auto\"]},\"uhd9738DJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-sCr1U\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7840.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Oswald\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogURoZAaRliE.woff2\",weight:\"700\"},{family:\"Oswald\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogURoZAaRliE.woff2\",weight:\"600\"}]},...NavbarFonts,...ButtonFonts,...SlideshowFonts,...FormSparkFonts,...EmbedFonts,...FooterDarkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oLoyIpJzt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uhd9738DJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"7840.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "l", "cubicBezier", "__rest", "e", "t", "r", "n", "n", "e", "t", "r", "n", "calcGeneratorVelocity", "t", "s", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "i", "h", "u", "d", "f", "l", "g", "glide", "o", "c", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "noopReturn", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "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", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavbarFonts", "getFonts", "n3CetdOfb_default", "ButtonFonts", "HNReCyvKj_default", "SlideshowFonts", "Slideshow", "FormSparkFonts", "FormSpark_default", "EmbedFonts", "Embed", "FooterDarkFonts", "ZkIKZ_QTf_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "usePreloadLocalizedValues", "elementId", "useRouteElementId", "ref2", "elementId1", "router", "useRouter", "ref3", "isDisplayed1", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "elementId6", "ref8", "elementId7", "ref9", "defaultLayoutId", "ae", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "_getLocalizedValue24", "_getLocalizedValue25", "_getLocalizedValue26", "_getLocalizedValue27", "_getLocalizedValue28", "_getLocalizedValue29", "_getLocalizedValue30", "_getLocalizedValue31", "_getLocalizedValue32", "_getLocalizedValue33", "_getLocalizedValue34", "_getLocalizedValue35", "_getLocalizedValue36", "_getLocalizedValue37", "_getLocalizedValue38", "_getLocalizedValue39", "_getLocalizedValue40", "_getLocalizedValue41", "_getLocalizedValue42", "_getLocalizedValue43", "_getLocalizedValue44", "_getLocalizedValue45", "_getLocalizedValue46", "_getLocalizedValue47", "_getLocalizedValue48", "_getLocalizedValue49", "_getLocalizedValue50", "_getLocalizedValue51", "_getLocalizedValue52", "_getLocalizedValue53", "_getLocalizedValue54", "_getLocalizedValue55", "_getLocalizedValue56", "_getLocalizedValue57", "_getLocalizedValue58", "_getLocalizedValue59", "_getLocalizedValue60", "_getLocalizedValue61", "_getLocalizedValue62", "_getLocalizedValue63", "_getLocalizedValue64", "_getLocalizedValue65", "_getLocalizedValue66", "_getLocalizedValue67", "_getLocalizedValue68", "_getLocalizedValue69", "_getLocalizedValue70", "_getLocalizedValue71", "_getLocalizedValue72", "_getLocalizedValue73", "_getLocalizedValue74", "_getLocalizedValue75", "_getLocalizedValue76", "_getLocalizedValue77", "_getLocalizedValue78", "_getLocalizedValue79", "_getLocalizedValue80", "_getLocalizedValue81", "_getLocalizedValue82", "_getLocalizedValue83", "_getLocalizedValue84", "_getLocalizedValue85", "_getLocalizedValue86", "_getLocalizedValue87", "_getLocalizedValue88", "_getLocalizedValue89", "_getLocalizedValue90", "_getLocalizedValue91", "_getLocalizedValue92", "_getLocalizedValue93", "_getLocalizedValue94", "_getLocalizedValue95", "_getLocalizedValue96", "_getLocalizedValue97", "_getLocalizedValue98", "_getLocalizedValue99", "_getLocalizedValue100", "_getLocalizedValue101", "_getLocalizedValue102", "_getLocalizedValue103", "_getLocalizedValue104", "_getLocalizedValue105", "_getLocalizedValue106", "_getLocalizedValue107", "_getLocalizedValue108", "_getLocalizedValue109", "_getLocalizedValue110", "_getLocalizedValue111", "_getLocalizedValue112", "_getLocalizedValue113", "_getLocalizedValue114", "_getLocalizedValue115", "_getLocalizedValue116", "_getLocalizedValue117", "_getLocalizedValue118", "_getLocalizedValue119", "_getLocalizedValue120", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLocalizedValue", "Image2", "ResolveLinks", "resolvedLinks", "RichText2", "x", "Link", "resolvedLinks1", "SVG", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
