{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/CmmUoyXEMOtoYkkeGDZZ/send.js", "ssg:https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js", "ssg:https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/gvNUph1oNh8l2qQafSUu/consent.js", "ssg:https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/gnipUJynzv8FJkpTy04V/inEU.js", "ssg:https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/2J8Vj16bgt14C10mcUex/region.js", "ssg:https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/77ZjdIUSoepa5KTwP0oH/Banner.js", "ssg:https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/WtTwrQcMhFJpd4DOJv98/Cookies.js", "ssg:https://framerusercontent.com/modules/gyYm1eUGWrVKRazf0Gol/4kbU3QcDIJ9ipA9Up565/augiA20Il.js"],
  "sourcesContent": ["import{isBrowser}from\"framer-motion\";export const DEFAULT_DOMAIN=\"https://www.googletagmanager.com\";export const DEFAULT_SCRIPT_NAME=\"gtm.js\";/**\n * Function to get and set dataLayer\n * @param dataLayer - The dataLayer\n * @param dataLayerName - The dataLayer name\n */const getDataLayerSnippet=(dataLayer,dataLayerName=\"dataLayer\")=>`window['${dataLayerName}']=window['${dataLayerName}']||[];`+(dataLayer?`window['${dataLayerName}'].push(${JSON.stringify(dataLayer)});`:\"\")+`window['${dataLayerName}'].push({'gtm.start':new Date().getTime(),event:'gtm.js'})`;/**\n * Function to get the GTM script\n * @param dataLayerName - The name of the dataLayer\n * @param customDomain - Custom domain for gtm\n * @param customScriptName - Custom script file name for gtm\n * @param environment - The parameters to use a custom environment\n * @param id - The id of the container\n */const getGTMScript=(dataLayerName,id,environment,customDomain=DEFAULT_DOMAIN,customScriptName=DEFAULT_SCRIPT_NAME)=>{let params=\"\";if(environment){const{gtm_auth,gtm_preview}=environment;params=`&gtm_auth=${gtm_auth}&gtm_preview=${gtm_preview}&gtm_cookies_win=x`;}return`${customDomain}/${customScriptName}?id=${id}${dataLayerName===\"dataLayer\"?\"\":`&l=${dataLayerName}`}${params}`;};/**\n * Function to setup the Google Tag Manager\n * @param params - The snippets params\n */const setupGTM=params=>{const getDataLayerScript=()=>{const dataLayerScript=document.createElement(\"script\");if(params.nonce){dataLayerScript.setAttribute(\"nonce\",params.nonce);}dataLayerScript.innerHTML=getDataLayerSnippet(params.dataLayer,params.dataLayerName);return dataLayerScript;};const getScript=()=>{const script=document.createElement(\"script\");if(params.nonce){script.setAttribute(\"nonce\",params.nonce);}script.src=getGTMScript(params.dataLayerName,params.id,params.environment,params.customDomain,params.customScriptName);return script;};return{getDataLayerScript,getScript};};/**\n * Function to init the GTM\n * @param dataLayer - The dataLayer\n * @param dataLayerName - The dataLayer name\n * @param environment - Specify the custom environment to use\n * @param nonce - Server-generated nonce\n * @param id - The ID of the GTM\n */export const initGTM=({dataLayer,dataLayerName,environment,nonce,id,customDomain,customScriptName})=>{const gtm=setupGTM({dataLayer,dataLayerName,environment,nonce,id,customDomain,customScriptName});const dataLayerScript=gtm.getDataLayerScript();const script=gtm.getScript();document.head.append(dataLayerScript,script);};export function sendToGTM(){if(isBrowser){window[\"dataLayer\"]=window[\"dataLayer\"]||[];window[\"dataLayer\"].push(arguments);}}\nexport const __FramerMetadata__ = {\"exports\":{\"DEFAULT_SCRIPT_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_DOMAIN\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"sendToGTM\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"initGTM\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./send.map", "import{isBrowser}from\"framer-motion\";import{useLayoutEffect}from\"react\";export const DEFAULT_FONT_FAMILY=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;export function getFlexboxValues(position){const positionParts=position.split(\"-\");let justifyContent,alignItems;switch(positionParts[0]){case\"top\":alignItems=\"flex-start\";break;case\"bottom\":alignItems=\"flex-end\";break;case\"center\":alignItems=\"center\";break;default:alignItems=\"initial\";break;}switch(positionParts[1]){case\"left\":justifyContent=\"flex-start\";break;case\"right\":justifyContent=\"flex-end\";break;case\"center\":justifyContent=\"center\";break;default:justifyContent=\"initial\";break;}return{justifyContent,alignItems};}export function getMultipleShadows(...shadows){const output=[];shadows.forEach(shadow=>{return shadow&&output.push(shadow);});return output.join(\", \");}export function getShadow(shadow){if(shadow){return`${shadow.shadowX}px ${shadow.shadowY}px ${shadow.shadowBlur}px ${shadow.shadowColor}`;}else return null;}export function safeJSONParse(jsonString,onError){try{return JSON.parse(jsonString);}catch{if(onError)onError();}}export const getCookie=(name,cookies)=>{cookies=cookies?cookies:isBrowser?document.cookie:\"\";var _cookies_match;const[,,cookie]=(_cookies_match=cookies.match(`(^|;) ?${name}=([^;]*)(;|$)`))!==null&&_cookies_match!==void 0?_cookies_match:[null,null,null];return cookie;};/**\n * Yields to main thread before continuing execution, which might allow the browser to paint.\n * If `options.priority` is 'user-blocking', it will asynchronously resolve in older browsers.\n * @param {object} options - see https://github.com/WICG/scheduling-apis/blob/main/explainers/yield-and-continuation.md\n * @see interactionResponse for guaranteeing execution after a paint\n */export function yieldToMain(options){if(\"scheduler\"in window){if(\"yield\"in scheduler)return scheduler.yield(options);if(\"postTask\"in scheduler)return scheduler.postTask(()=>{},options);}if((options===null||options===void 0?void 0:options.priority)===\"user-blocking\"){// `setTimeout` could suffer from being delayed for longer: https://developer.chrome.com/blog/introducing-scheduler-yield-origin-trial#the_problem_with_current_yielding_strategies\n// so for browsers not supporting yield, we guarantee execution for high priority actions, but this does not create space for a paint opportunity as trade-off.\nreturn Promise.resolve();}return new Promise(resolve=>{setTimeout(resolve);});}/**\n * Helper function for `yieldToMain`, which yields before calling `fn`.\n * @see yieldToMain\n */export async function yieldBeforeCb(fn,options){await yieldToMain(options);return fn();}/**\n * Similar to `yieldToMain`, but also waits for the next animation frame before yielding (with a fallback of 100ms if the animation frame never fires).\n * Compared to `yieldToMain`, it guarantees improved INP, but might make processing a little slower. Use only if necessary.\n * @see yieldToMain\n */export function interactionResponse(options){return new Promise(resolve=>{setTimeout(resolve,200)// Fallback for the case where the animation frame never fires.\n;requestAnimationFrame(()=>{void yieldBeforeCb(resolve,options);});});}/**\n * Runs `fn` after the next paint. Similar to `useEffect`, but *guarantees* that the function is run after the next paint.\n * @important Does not support a cleanup fn.\n * @see https://thoughtspile.github.io/2021/11/15/unintentional-layout-effect/\n */export function useAfterPaintEffect(fn,deps,options){useLayoutEffect(()=>{const runAfterPaint=async()=>{await interactionResponse(options);fn();};void runAfterPaint();// eslint-disable-next-line react-hooks/exhaustive-deps -- deps are passed in\n},deps);}\nexport const __FramerMetadata__ = {\"exports\":{\"useAfterPaintEffect\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getCookie\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"safeJSONParse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFlexboxValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"yieldBeforeCb\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getShadow\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getMultipleShadows\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FlexboxPosition\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"yieldToMain\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"interactionResponse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_FONT_FAMILY\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{useIsOnFramerCanvas}from\"framer\";import{isBrowser}from\"framer-motion\";import{useEffect,useReducer}from\"react\";import{initGTM,sendToGTM}from\"https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/CmmUoyXEMOtoYkkeGDZZ/send.js\";import{safeJSONParse,yieldBeforeCb}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";function toGTMConsent(consent){return{functionality_storage:consent.necessary?\"granted\":\"denied\",security_storage:consent.necessary?\"granted\":\"denied\",ad_storage:consent.marketing?\"granted\":\"denied\",ad_user_data:consent.marketing?\"granted\":\"denied\",ad_personalization:consent.marketing?\"granted\":\"denied\",analytics_storage:consent.analytics?\"granted\":\"denied\",personalization_storage:consent.preferences?\"granted\":\"denied\"};}function reducer(state,action){switch(action.type){case\"autoAccept\":return{...state,sync:true,autoAccepted:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"acceptAll\":return{...state,sync:true,dismissed:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"rejectAll\":return{...state,sync:true,dismissed:true,modes:{analytics:false,marketing:false,necessary:false,preferences:false}};case\"acceptCurrent\":return{...state,dismissed:true,sync:true};case\"update\":return{...state,modes:{...state.modes,...action.modes},sync:action.sync};case\"toggle\":return{...state,modes:{...state.modes,[action.mode]:!state.modes[action.mode]}};case\"initFromLocalStorage\":return{...state,modes:action.modes,dismissed:action.dismissed,autoAccepted:action.autoAccepted,initializedFromLocalStorage:true,sync:true};case\"dismiss\":return{...state,dismissed:true};case\"synced\":return{...state,sync:false,hasSynced:true};default:return state;}}const initialState={dismissed:false,autoAccepted:false,modes:null,sync:false,initializedFromLocalStorage:false,hasSynced:false};export const defaultConsent={necessary:false,analytics:false,marketing:false,preferences:false};// Keep track of if GTM has been loaded as a script and default consent has been set,\n// to ensure the script does not keep appending between page switches.\nlet hasInitializedGTM=false;export function useConsent({gtmId,defaultConsent,gtmLoadedExternally=false}){const[state,dispatch]=useReducer(reducer,initialState);const isOnFramerCanvas=useIsOnFramerCanvas();const consentModeLocalStorageKey=\"framerCookiesConsentMode\";const dismissedLocalStorageKey=\"framerCookiesDismissed\";const autoAcceptedLocalStorageKey=\"framerCookiesAutoAccepted\";function getStateFromLocalStorage(){const consentFromLocalStorage=localStorage.getItem(consentModeLocalStorageKey);const dismissedFromLocalStorage=localStorage.getItem(dismissedLocalStorageKey);const autoAcceptedFromLocalStorage=localStorage.getItem(autoAcceptedLocalStorageKey);const isDismissed=dismissedFromLocalStorage!==null;const isAutoAccepted=autoAcceptedFromLocalStorage!==null;const hasConsentInLocalStorage=consentFromLocalStorage!==null;const consentInLocalStorageIsNotDefault=isDismissed||isAutoAccepted;const shouldLoadConsentFromLocalStorage=hasConsentInLocalStorage&&consentInLocalStorageIsNotDefault;dispatch({type:\"initFromLocalStorage\",dismissed:isDismissed,autoAccepted:isAutoAccepted,modes:shouldLoadConsentFromLocalStorage?safeJSONParse(consentFromLocalStorage,()=>localStorage.removeItem(consentModeLocalStorageKey)):defaultConsent});}function syncToGTM(){if(gtmId){if(!hasInitializedGTM&&!gtmLoadedExternally){// This is the first time we sync consent, so we save it as \"default\" and initialize tag manager.\n// This order is important, because we need to have set the default consent BEFORE we initialize GTM.\n// https://developers.google.com/tag-platform/devguides/consent?tab=tag-manager&sjid=11348191096952324675-EU#implementation_example\n// It might seem weird that we're \"sending\" before initializing, but \"sending\" here means building up\n// the \"dataLayer\" object that GTM picks up when it initializes.\nsendToGTM(\"consent\",\"default\",toGTMConsent(state.modes));initGTM({dataLayer:undefined,dataLayerName:\"dataLayer\",environment:undefined,nonce:undefined,injectScript:true,id:gtmId});hasInitializedGTM=true;}else{hasInitializedGTM=true;sendToGTM(\"consent\",\"update\",toGTMConsent(state.modes));// must be sent like this or else GTM doesn't act on it:\nwindow.dataLayer.push({event:\"cookie_consent_update\"});}}}useEffect(()=>{if(isOnFramerCanvas)return;yieldBeforeCb(()=>getStateFromLocalStorage(),{priority:\"user-blocking\"});},[]);// Anytime the dismissed value is updated, we need to persist it in local storage.\nuseEffect(()=>{if(isOnFramerCanvas)return;if(state.dismissed){localStorage.setItem(dismissedLocalStorageKey,\"true\");}},[state.dismissed]);// Anytime consent is auto accepted, we need to persist it in local storage.\nuseEffect(()=>{if(isOnFramerCanvas)return;if(state.autoAccepted){localStorage.setItem(autoAcceptedLocalStorageKey,\"true\");}},[state.autoAccepted]);// Sync data to dataLayer and localStorage.\nuseEffect(()=>{if(isOnFramerCanvas)return;const shouldSync=state.sync&&isBrowser&&state.modes!==null;if(!shouldSync){return;}yieldBeforeCb(()=>{syncToGTM();// Save locally\nlocalStorage.setItem(consentModeLocalStorageKey,JSON.stringify(state.modes));dispatch({type:\"synced\"});},{priority:\"user-blocking\"});},[state.sync]);function dismiss(){dispatch({type:\"dismiss\"});localStorage.setItem(dismissedLocalStorageKey,\"true\");}function autoAccept(){dispatch({type:\"autoAccept\"});}function acceptAll(){dispatch({type:\"acceptAll\"});}function rejectAll(){dispatch({type:\"rejectAll\"});}function acceptCurrent(){dispatch({type:\"acceptCurrent\"});}function toggleMode(mode){dispatch({type:\"toggle\",mode});}return{modes:state.modes,isInitialized:state.hasSynced,isDismissed:state.dismissed,isAutoAccepted:state.autoAccepted,dismiss,autoAccept,acceptAll,rejectAll,acceptCurrent,toggleMode};}\nexport const __FramerMetadata__ = {\"exports\":{\"defaultConsent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModes\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModeName\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useConsent\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./consent.map", "// Check if visitor is in EU\nconst countries=[\"BE\",\"EL\",\"LT\",\"PT\",\"BG\",\"ES\",\"LU\",\"RO\",\"CZ\",\"FR\",\"RE\",\"GP\",\"MQ\",\"GF\",\"YT\",\"BL\",\"MF\",\"PM\",\"WF\",\"PF\",\"NC\",\"HU\",\"SI\",\"DK\",\"FO\",\"GL\",\"HR\",\"MT\",\"SK\",\"DE\",\"IT\",\"NL\",\"AW\",\"CW\",\"SX\",\"FI\",\"AX\",\"EE\",\"CY\",\"AT\",\"SE\",\"IE\",\"LV\",\"PL\",\"UK\",\"GB\",\"AI\",\"BM\",\"IO\",\"VG\",\"KY\",\"FK\",\"GI\",\"MS\",\"PN\",\"SH\",\"TC\",\"GG\",\"JE\",\"IM\"];const isInEUTimezone=()=>{var _Intl_DateTimeFormat_resolvedOptions_timeZone,_Intl_DateTimeFormat_resolvedOptions,_Intl_DateTimeFormat,_Intl;return(_Intl=Intl)===null||_Intl===void 0?void 0:(_Intl_DateTimeFormat=_Intl.DateTimeFormat())===null||_Intl_DateTimeFormat===void 0?void 0:(_Intl_DateTimeFormat_resolvedOptions=_Intl_DateTimeFormat.resolvedOptions())===null||_Intl_DateTimeFormat_resolvedOptions===void 0?void 0:(_Intl_DateTimeFormat_resolvedOptions_timeZone=_Intl_DateTimeFormat_resolvedOptions.timeZone)===null||_Intl_DateTimeFormat_resolvedOptions_timeZone===void 0?void 0:_Intl_DateTimeFormat_resolvedOptions_timeZone.startsWith(\"Europe\");};const isEULocale=()=>{var _navigator_languages;var _navigator_language;const locale=(_navigator_language=navigator.language)!==null&&_navigator_language!==void 0?_navigator_language:(_navigator_languages=navigator.languages)===null||_navigator_languages===void 0?void 0:_navigator_languages[0];return countries.some(country=>{var _locale_toUpperCase;return locale===null||locale===void 0?void 0:(_locale_toUpperCase=locale.toUpperCase())===null||_locale_toUpperCase===void 0?void 0:_locale_toUpperCase.includes(country);});};let _inEU=null;export const inEU=()=>{if(_inEU===null)_inEU=isInEUTimezone()||isEULocale();return _inEU;};\nexport const __FramerMetadata__ = {\"exports\":{\"inEU\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./inEU.map", "import{isBrowser}from\"framer-motion\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/gnipUJynzv8FJkpTy04V/inEU.js\";export function useRegion({content,useRegionFromProps,skipEUCheck}){const isInEUBasedOnLocation=isBrowser&&!skipEUCheck?inEU():false;const regionBasedOnLocation=isInEUBasedOnLocation?\"EU\":\"World\";const regionFromProps=content.isEU?\"EU\":\"World\";const regionContent={EU:{title:content.euTitle,description:content.euDescription,type:content.euType,defaults:content.euDefaults,policy:content.euPolicy,blocking:content.euBlocking,showReject:content.euType===\"advanced\"?content.euShowReject:true},World:{title:content.worldTitle,description:content.worldDescription,type:content.worldType,defaults:content.worldDefaults,policy:content.worldPolicy,blocking:content.worldBlocking,showReject:content.worldType===\"advanced\"?content.worldShowReject:true}};return regionContent[useRegionFromProps?regionFromProps:regionBasedOnLocation];}\nexport const __FramerMetadata__ = {\"exports\":{\"RegionContent\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRegion\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RegionType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./region.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,lazy,Suspense}from\"react\";import{withCSS}from\"framer\";import{AnimatePresence,motion}from\"framer-motion\";import{DEFAULT_FONT_FAMILY,getMultipleShadows,getShadow}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";const SPACING=20;// if you update the Toggle component inside this project, copy the new URL to here:\nconst Toggle=/*#__PURE__*/lazy(()=>import(\"https://framerusercontent.com/modules/QDCSmi7dYWSK5AcRSFyX/iWVjq9atvKQLvxgv6qiM/Blf0sjosZ.js\"));export const Banner=withCSS(function Banner({banner,button,region,options,previewOptions,consentModes,onDismiss,onAcceptAll,onRejectAll,onAcceptCurrent,onToggleConsent,animateOnMount}){var _banner_style_border;const maxHeightReduction=banner.insetPerSide?banner.insetTop+banner.insetBottom:banner.inset*2;const linkColor=banner.style.link||button.primary.fill;const paddingValue=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;const bannerShadow=getShadow(banner.style.shadow);const borderShadow=((_banner_style_border=banner.style.border)===null||_banner_style_border===void 0?void 0:_banner_style_border.width)?`inset 0 0 0 ${banner.style.border.width}px ${banner.style.border.color}`:null;const bannerStyle={background:banner.style.fill,boxShadow:getMultipleShadows(bannerShadow,borderShadow),overflow:\"hidden\",borderRadius:banner.style.border.radius};return /*#__PURE__*/_jsx(motion.div,{initial:animateOnMount&&{x:banner.animation.x,y:banner.animation.y,scale:banner.animation.scale,opacity:0},animate:{y:0,x:0,scale:1,opacity:1},exit:{x:banner.animation.x,y:banner.animation.y,scale:banner.animation.scale,opacity:0},transition:animateOnMount?banner.animation.transition:{duration:0},style:{fontFamily:DEFAULT_FONT_FAMILY,maxHeight:`calc(100vh - ${maxHeightReduction}px)`,flexDirection:\"column\",gap:12,position:\"relative\",display:\"flex\",zIndex:100,pointerEvents:\"auto\"},children:/*#__PURE__*/_jsx(\"div\",{style:{...bannerStyle,overflow:\"scroll\",width:\"100%\",maxWidth:banner.width},className:`--framer-cookie-banner-container --framer-cookie-banner-type-${region.type}`,children:region.type===\"simple\"?/*#__PURE__*/_jsx(SimpleBanner,{banner:banner,button:button,linkColor:linkColor,description:region.description,policy:region.policy,onDismiss:onDismiss}):region.type===\"medium\"?/*#__PURE__*/_jsx(AcceptRejectBanner,{banner:banner,button:button,linkColor:linkColor,title:region.title,description:region.description,policy:region.policy,onAccept:onAcceptAll,onReject:onRejectAll}):/*#__PURE__*/_jsx(OptionsBanner,{banner:banner,button:button,options:options,previewOptions:previewOptions,linkColor:linkColor,title:region.title,description:region.description,showReject:region.showReject,policy:region.policy,onOptionToggle:onToggleConsent,consent:consentModes,onAcceptAll:onAcceptAll,onRejectAll:onRejectAll,onAcceptCurrent:onAcceptCurrent})})});},[`.--framer-cookie-banner-container::-webkit-scrollbar { display: none; }`,`.--framer-cookie-banner-container { \n            -ms-overflow-style: none; \n            scrollbar-width: none;  \n        }`]);function SimpleBanner({banner,button,description,policy,onDismiss,linkColor}){const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",padding,gap:SPACING},children:[/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,flex:1,alignItems:\"center\",color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy}),/*#__PURE__*/_jsx(motion.div,{style:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},children:/*#__PURE__*/_jsx(Button,{onClick:onDismiss,settings:{...button,fluid:false},id:\"dismiss\",children:button.labels.confirm})})]});}function AcceptRejectBanner({banner,button,title,linkColor,description,policy,onAccept,onReject}){const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{padding},children:[/*#__PURE__*/_jsxs(\"div\",{children:[title&&/*#__PURE__*/_jsx(Headline,{style:{...banner.style.fontTitle,color:banner.style.colorTitle},children:title}),/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy})]}),/*#__PURE__*/_jsxs(Buttons,{direction:button.direction,children:[/*#__PURE__*/_jsx(Button,{settings:button,onClick:onReject,id:\"reject\",children:button.labels.reject}),/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAccept,id:\"accept\",children:button.labels.accept})]})]});}function OptionsBanner({banner,button,options,previewOptions,title,description,policy,showReject=true,linkColor,consent,onAcceptCurrent,onAcceptAll,onRejectAll,onOptionToggle}){const[showOptions,setShowOptions]=useState(false);const optionTheme={...options.style,color:banner.style.colorBody};const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;// const optionNames = consent && Object.keys(consent)\nconst optionNames=[\"necessary\",\"preferences\",\"analytics\",\"marketing\"];const shouldShowOptions=showOptions||previewOptions;return /*#__PURE__*/_jsxs(\"div\",{style:{padding},children:[/*#__PURE__*/_jsxs(\"div\",{children:[title&&/*#__PURE__*/_jsx(Headline,{style:{...banner.style.fontTitle,color:banner.style.colorTitle},children:title}),/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy}),/*#__PURE__*/_jsx(AnimatePresence,{children:shouldShowOptions&&/*#__PURE__*/_jsx(motion.div,{initial:previewOptions?null:{opacity:0,height:0},animate:{opacity:1,height:\"auto\"},exit:{opacity:0,height:0},style:{display:\"flex\",flexDirection:\"column\",gap:10,marginTop:SPACING,overflow:\"hidden\"},children:optionNames&&optionNames.map(option=>/*#__PURE__*/_jsx(Option,{title:options[option].title,description:options[option].description,titleColor:banner.style.colorTitle,descriptionColor:banner.style.colorBody,showDescription:options.descriptions,enabled:consent[option],onClick:()=>onOptionToggle(option),theme:optionTheme,optional:option===\"necessary\"?options[option].optional:true}))},\"modal\")})]}),/*#__PURE__*/_jsx(Buttons,{direction:button.direction,children:shouldShowOptions?/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAcceptCurrent,id:\"accept\",children:button.labels.save}):/*#__PURE__*/_jsxs(_Fragment,{children:[showReject&&/*#__PURE__*/_jsx(Button,{settings:button,onClick:onRejectAll,id:\"reject\",children:button.labels.rejectAll}),/*#__PURE__*/_jsx(Button,{settings:button,onClick:()=>{setShowOptions(true);},id:\"customize\",children:button.labels.customize}),/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAcceptAll,id:\"accept\",children:button.labels.acceptAll})]})})]});}function Option({title,titleColor,description,descriptionColor,showDescription,enabled,optional,onClick,theme}){const paddingValue=theme.paddingPerSide?`${theme.paddingTop}px ${theme.paddingRight}px ${theme.paddingBottom}px ${theme.paddingLeft}px`:`${theme.padding}px`;const borderShadow=theme.border?`inset 0 0 0 ${theme.border.width}px ${theme.border.color}`:null;return /*#__PURE__*/_jsxs(motion.div,{style:{boxShadow:borderShadow,background:theme.background,borderRadius:theme.border.radius,padding:paddingValue,cursor:\"pointer\",userSelect:\"none\",pointerEvents:\"all\"},onClick:onClick,whileHover:{opacity:.5},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",justifyContent:\"space-between\"},children:[/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontWeight:600,fontSize:12,color:titleColor,...theme.fontTitle},children:title}),optional?/*#__PURE__*/_jsx(Suspense,{children:/*#__PURE__*/_jsx(Toggle,{variant:enabled?\"On\":\"Off\",background:theme.toggleColor,backgroundInactive:theme.toggleColorInactive})}):/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontSize:12,color:theme.toggleColor,...theme.fontTitle,fontWeight:400},children:\"Always active\"})]}),description&&/*#__PURE__*/_jsx(\"p\",{style:{margin:0,marginTop:10,fontSize:12,lineHeight:1.5,color:descriptionColor,...theme.fontBody},children:description})]});}function Headline({children,style}){return /*#__PURE__*/_jsx(\"p\",{style:{fontSize:14,margin:\"0px 0px 10px 0px\",fontWeight:\"bold\",padding:0,...style},children:children});}function Description({style,description,policy,linkColor}){const shouldShow=description||(policy===null||policy===void 0?void 0:policy.link);if(!shouldShow)return null;if(!description){return /*#__PURE__*/_jsx(DescriptionParagraph,{policy:policy,style:style,linkColor:linkColor});}// @ivan: Support rendering the description in multiple paragraphs.\n// This is a site speed optimization: it allows to split a single\n// huge <p> into several smaller ones, which prevents the huge <p>\n// from becoming an LCP element.\nconst descriptionParagraphs=description===null||description===void 0?void 0:description.split(\"\\n\\n\");return description.split(\"\\n\\n\").map((line,index)=>/*#__PURE__*/_jsx(DescriptionParagraph,{line:line,// Only render the policy in the last paragraph\n    policy:index===descriptionParagraphs.length-1?policy:null,style:{// Add a spacing between paragraphs\n    marginTop:index>0?4:0,...style},linkColor:linkColor},index));}function DescriptionParagraph({line,policy,style,linkColor}){return /*#__PURE__*/_jsxs(\"p\",{style:{lineHeight:1.5,margin:0,padding:0,fontSize:14,...style},children:[line,line&&(policy===null||policy===void 0?void 0:policy.link)?\" \":null,(policy===null||policy===void 0?void 0:policy.link)&&/*#__PURE__*/_jsxs(\"span\",{children:[policy===null||policy===void 0?void 0:policy.prefix,\" \",/*#__PURE__*/_jsx(\"a\",{href:policy===null||policy===void 0?void 0:policy.link,target:\"_blank\",style:{color:linkColor,textDecoration:\"none\"},children:policy===null||policy===void 0?void 0:policy.label}),\".\"]})]});}function Buttons({children,direction}){return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:direction,gap:10,marginTop:16},children:children});}const Button=withCSS(function Button({id,children,primary,settings,onClick}){const paddingValue=settings.paddingPerSide?`${settings.paddingTop}px ${settings.paddingRight}px ${settings.paddingBottom}px ${settings.paddingLeft}px`:`${settings.padding}px`;const theme=primary?settings.primary:settings.secondary;var _settings_hoverOpacity,_settings_tapOpacity;return /*#__PURE__*/_jsx(motion.input,{className:\"__framer-cookie-component-button\",id:`__framer-cookie-component-button-${id}`,onClick:onClick,type:\"button\",value:`${children}`,whileHover:{opacity:(_settings_hoverOpacity=settings.hoverOpacity)!==null&&_settings_hoverOpacity!==void 0?_settings_hoverOpacity:.6},whileTap:{opacity:(_settings_tapOpacity=settings.tapOpacity)!==null&&_settings_tapOpacity!==void 0?_settings_tapOpacity:.4},style:{WebkitAppearance:\"none\",appearance:\"none\",width:settings.fluid?\"100%\":\"auto\",height:\"auto\",border:\"none\",padding:paddingValue,borderRadius:settings.borderRadius,boxShadow:getShadow(theme.shadow),background:theme.fill,color:theme.color,fontSize:14,lineHeight:1,cursor:\"pointer\",fontWeight:settings.font?\"unset\":600,...settings.font}});},\".__framer-cookie-component-button:focus:not(:focus-visible){outline-color:transparent}\");\nexport const __FramerMetadata__ = {\"exports\":{\"Banner\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"BannerComponentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Banner.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsOnFramerCanvas,withCSS}from\"framer\";import{AnimatePresence,isBrowser,motion}from\"framer-motion\";import{lazy,Suspense,useEffect,useState}from\"react\";import{createPortal}from\"react-dom\";import{defaultConsent,useConsent}from\"https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/gvNUph1oNh8l2qQafSUu/consent.js\";import{useRegion}from\"https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/2J8Vj16bgt14C10mcUex/region.js\";import{Banner}from\"https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/77ZjdIUSoepa5KTwP0oH/Banner.js\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/gnipUJynzv8FJkpTy04V/inEU.js\";import{DEFAULT_FONT_FAMILY,getFlexboxValues,interactionResponse,yieldBeforeCb}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";// Keep track of open state between page reloads\nlet initiallyOpen=false;/**\n * COOKIE BANNER\n * By Floris Verloop\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n *\n */export default function CookieBanner({gtmId,preview,trigger,banner,button,content,options,style,gtmLoadedExternally,onShown,onConsentChange,onAccept,onDismiss,onReject,onSavePreferences}){const isOnFramerCanvas=useIsOnFramerCanvas();const isPreview=preview&&isOnFramerCanvas;const skipLogic=!preview&&isOnFramerCanvas;const isInEU=isBrowser?inEU():false;const region=useRegion({content,useRegionFromProps:isPreview,// skip EU check (expensive) if we are on the canvas and don't want a preview\nskipEUCheck:skipLogic});const consent=useConsent({gtmId,defaultConsent:region.defaults,gtmLoadedExternally});const[isOpen,setIsOpen]=useState(initiallyOpen);// On page switch, disable all transitions so the banner shows up as fast as possible.\nconst[instantlyShowOnMount,setInstantlyShowOnMount]=useState(initiallyOpen);useEffect(()=>{if(skipLogic)return;// Save open state between page switches\ninitiallyOpen=isOpen;// Disable instantly show on mount after first open\nif(isOpen){setInstantlyShowOnMount(false);}// Track shown event\nif(isOpen&&!isPreview&&onShown){yieldBeforeCb(()=>onShown({isInEU}),{priority:\"user-blocking\"});}},[isOpen,skipLogic]);// Check if user should be prompted\nuseEffect(()=>{if(skipLogic)return;const noConsentGiven=consent.isInitialized&&!consent.isDismissed;const shouldAutoAccept=region.type===\"simple\"&&!consent.isAutoAccepted;if(noConsentGiven){performance.mark(\"framer-cookie-open\");setIsOpen(true);/** Automatically accept all cookies for simple banner. */if(shouldAutoAccept){consent.autoAccept();// Fire callback\nif(onAccept){yieldBeforeCb(()=>onAccept({isInEU}));}}}if(consent.isDismissed){setIsOpen(false);}},[consent.isInitialized,consent.isDismissed,skipLogic]);useEffect(()=>{if(skipLogic)return;if(onConsentChange){yieldBeforeCb(()=>onConsentChange({isInEU,consent:consent.modes}));}},[consent.modes,skipLogic]);async function handleDismiss(){await interactionResponse();consent.dismiss();setIsOpen(false);// Fire callback\nif(onDismiss){yieldBeforeCb(()=>onDismiss({isInEU}));}}async function handleAcceptAll(){await interactionResponse();consent.acceptAll();setIsOpen(false);// Fire callback\nif(onAccept){yieldBeforeCb(()=>onAccept({isInEU}));}}async function handleRejectAll(){await interactionResponse();consent.rejectAll();setIsOpen(false);// Fire callback\nif(onReject){yieldBeforeCb(()=>onReject({isInEU}));}}async function handleAcceptCurrent(){await interactionResponse();consent.acceptCurrent();setIsOpen(false);// Fire callbacks\nyieldBeforeCb(()=>{if(onAccept){onAccept({isInEU});}});yieldBeforeCb(()=>{if(onSavePreferences){onSavePreferences({isInEU});}});}if(isPreview){return /*#__PURE__*/_jsx(\"div\",{style:{...style,width:banner.width},children:/*#__PURE__*/_jsx(Banner,{banner:banner,button:button,region:region,options:options,previewOptions:isPreview&&options.preview,consentModes:{...defaultConsent,necessary:true},animateOnMount:false})});}return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(Trigger,{style:style,trigger:trigger,onClick:()=>setIsOpen(true)}),!skipLogic&&/*#__PURE__*/_jsx(Overlay,{banner:banner,button:button,region:region,options:options,consentModes:consent.modes,animateOnMount:!instantlyShowOnMount,onAcceptAll:handleAcceptAll,onAcceptCurrent:handleAcceptCurrent,onRejectAll:handleRejectAll,onDismiss:handleDismiss,onToggleConsent:consent.toggleMode,isOpen:isOpen})]});}const IconCookie=/*#__PURE__*/lazy(()=>import(\"https://framerusercontent.com/modules/80EyUU0Nk6u7skW3IlHH/qKhU3oZiLDe4R0LcF3Tp/Icons.js\"));function Overlay(props){var _props_banner_style;const insetValue=props.banner.insetPerSide?`${props.banner.insetTop}px ${props.banner.insetRight}px ${props.banner.insetBottom}px ${props.banner.insetLeft}px`:`${props.banner.inset}px`;const{justifyContent,alignItems}=getFlexboxValues(props.banner.position);const isOpen=props.isOpen;const[shouldRenderPortal,setShouldRenderPortal]=useState(isOpen);// if the portal has previously been rendered, we want to keep rendering the portal, which ensures:\n// - that AnimatePresence works (fade out effect)\n// - we don't cause body style recalc/reflow when the DOM node is removed\nif(!shouldRenderPortal&&isOpen)setShouldRenderPortal(isOpen);if(!shouldRenderPortal)return null;const blocking=props.region.blocking;return /*#__PURE__*/createPortal(/*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\"},children:/*#__PURE__*/_jsx(AnimatePresence,{children:isOpen?/*#__PURE__*/_jsxs(motion.div,{style:{// We only need to span to the full viewport width if the overlay is blocking.\n// Otherwise, we optimize for a smaller layer size. see: https://framer-team.slack.com/archives/C05V49Q4NJ2/p1709820207863249\ntop:blocking||alignItems===\"flex-start\"?0:undefined,left:blocking||justifyContent===\"flex-start\"?0:undefined,right:blocking||justifyContent===\"flex-end\"?0:undefined,height:blocking?\"100%\":undefined,width:blocking||justifyContent===\"center\"?\"100%\":undefined,bottom:blocking||alignItems===\"flex-end\"?0:undefined,boxSizing:\"border-box\",position:\"fixed\",touchAction:\"none\",padding:insetValue,zIndex:props.banner.zIndex,display:\"flex\",flexDirection:\"row\",gap:20,justifyContent:\"center\",pointerEvents:blocking?\"all\":\"none\"},children:[blocking&&/*#__PURE__*/_jsx(Backdrop,{color:(_props_banner_style=props.banner.style)===null||_props_banner_style===void 0?void 0:_props_banner_style.backdrop}),/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",display:\"flex\",justifyContent,alignItems,pointerEvents:\"none\",maxWidth:props.banner.containerWidth>0?props.banner.containerWidth:\"unset\"},children:/*#__PURE__*/_jsx(Banner,{...props})})]}):null})}),document.body);}const Trigger=withCSS(({trigger,style,onClick})=>{const isOnFramerCanvas=useIsOnFramerCanvas();if(trigger.type!==\"none\"){return /*#__PURE__*/_jsx(\"button\",{className:\"__framer-cookie-component-button\",\"aria-label\":\"Cookie Trigger\",style:{width:\"100%\",height:\"100%\",background:\"none\",display:\"flex\",border:\"none\",padding:0,color:trigger.color,fontSize:16,cursor:\"pointer\",...trigger.textFont},onClick:onClick,children:trigger.type===\"icon\"?/*#__PURE__*/_jsx(_Fragment,{children:trigger.iconType===\"custom\"&&trigger.iconImage?/*#__PURE__*/_jsx(\"img\",{alt:\"icon entry point for Site Search\",src:trigger.iconImage.src,width:trigger.iconSize,height:trigger.iconSize}):/*#__PURE__*/_jsx(Suspense,{children:/*#__PURE__*/_jsx(IconCookie,{width:trigger.iconSize,height:trigger.iconSize,color:trigger.color})})}):/*#__PURE__*/_jsx(\"span\",{style:{whiteSpace:\"nowrap\"},children:trigger.text})});}if(isOnFramerCanvas){return /*#__PURE__*/_jsxs(\"div\",{style:{borderRadius:8,color:\"#09F\",border:\"1px dashed #09F\",background:\"rgba(0, 153, 255, 0.1)\",padding:20,display:\"flex\",flexDirection:\"column\",gap:5,fontFamily:DEFAULT_FONT_FAMILY,textAlign:\"center\",justifyContent:\"center\",width:164,...style},children:[/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,fontWeight:600,lineHeight:1,margin:0},children:\"Cookie Banner\"}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,lineHeight:1.5,margin:0},children:\"Put on a page to add a Cookie Banner.\"})]});}},\".__framer-cookie-component-button:focus:not(:focus-visible){outline-color:transparent}\");function Backdrop({color}){return /*#__PURE__*/_jsx(motion.div,{initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},style:{position:\"absolute\",top:0,left:0,right:0,bottom:0,width:\"100%\",height:\"100%\",backgroundColor:color,pointerEvents:\"none\"}});}addPropertyControls(CookieBanner,{gtmId:{title:\"GTM ID\",type:ControlType.String,placeholder:\"GTM-AAAAAAA\",description:\"Your GTM container ID.\\n[Learn more](https://www.framer.com/learn/cookie-banner/)\"},preview:{type:ControlType.Boolean,defaultValue:true,description:\"Lets you preview the banner on the Canvas.\"},trigger:{type:ControlType.Object,buttonTitle:\"Icon, Text\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:[\"text\",\"icon\",\"none\"],optionTitles:[\"Text\",\"Icon\",\"None\"],defaultValue:\"text\",displaySegmentedControl:true},iconType:{title:\"Icon\",type:ControlType.Enum,options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,hidden:props=>props.type!==\"icon\"},text:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.type!==\"text\"},textFont:{// @ts-ignore - internal\ntype:ControlType.Font,title:\" \",controls:\"extended\",hidden:props=>props.type!==\"text\"},iconSize:{title:\"Size\",type:ControlType.Number,displayStepper:true,defaultValue:24,hidden:props=>props.type!==\"icon\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\",hidden:props=>props.type===\"none\"||props.type===\"icon\"&&props.iconType===\"custom\"},iconImage:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.iconType===\"default\"}}},banner:{title:\"Banner\",type:ControlType.Object,buttonTitle:\"Font, Styles\",controls:{position:{type:ControlType.Enum,title:\"Position\",options:[\"top-left\",\"top-center\",\"top-right\",\"bottom-right\",\"bottom-center\",\"bottom-left\"],optionTitles:[\"Top Left\",\"Top Center\",\"Top Right\",\"Bottom Right\",\"Bottom Center\",\"Bottom Left\"],defaultValue:\"bottom-right\"},zIndex:{title:\"Z Index\",type:ControlType.Number,defaultValue:10,displayStepper:true,min:0,max:10},width:{title:\"Width\",type:ControlType.Number,defaultValue:360,min:200,max:1e3,displayStepper:true,step:5},containerWidth:{title:\"Wrapping\",type:ControlType.Number,defaultValue:0,min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:20,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},inset:{title:\"Inset\",type:ControlType.FusedNumber,toggleKey:\"insetPerSide\",toggleTitles:[\"Inset\",\"Inset per side\"],defaultValue:20,valueKeys:[\"insetTop\",\"insetRight\",\"insetBottom\",\"insetLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Fonts, Colors, Shadow\",controls:{fontTitle:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Title\",controls:\"extended\"},colorTitle:{title:\" \",type:ControlType.Color,defaultValue:\"#000\"},fontBody:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Body\",controls:\"extended\"},colorBody:{title:\" \",type:ControlType.Color,defaultValue:\"#444\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#FFF\"},link:{title:\"Link\",type:ControlType.Color,optional:true,defaultValue:\"#999\"},border:{type:ControlType.Object,title:\"Border\",buttonTitle:\"Radius, Width\",controls:{radius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:14},width:{title:\"Width\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:1},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.05)\"}}},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100,defaultValue:4}}},backdrop:{title:\"Backdrop\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.1)\",hidden:(_,props)=>!props.content.euBlocking&&!props.content.worldBlocking}}},animation:{icon:\"effect\",buttonTitle:\"Options\",type:ControlType.Object,controls:{x:{type:ControlType.Number,displayStepper:true,defaultValue:0},y:{type:ControlType.Number,displayStepper:true,defaultValue:10},scale:{type:ControlType.Number,min:0,step:.1,defaultValue:1},transition:{type:ControlType.Transition}}}}},button:{title:\"Buttons\",type:ControlType.Object,buttonTitle:\"Variants, Style\",controls:{primary:{title:\"Primary\",type:ControlType.Object,buttonTitle:\"Colors, Shadow\",controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\"},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100}}}}},secondary:{title:\"Secondary\",type:ControlType.Object,buttonTitle:\"Colors, Shadow\",controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EEE\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#444\"},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100}}}}},labels:{type:ControlType.Object,controls:{accept:{type:ControlType.String,defaultValue:\"Accept\"},reject:{type:ControlType.String,defaultValue:\"Reject\"},acceptAll:{type:ControlType.String,defaultValue:\"Accept all\"},rejectAll:{type:ControlType.String,defaultValue:\"Reject all\"},customize:{type:ControlType.String,defaultValue:\"Customize\"},save:{type:ControlType.String,defaultValue:\"Save Preferences\"},confirm:{type:ControlType.String,defaultValue:\"Okay\"}}},font:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},tapOpacity:{title:\"Tap Opacity\",type:ControlType.Number,step:.1,displayStepper:true,max:1,min:0,defaultValue:.4},hoverOpacity:{title:\"Hover Opacity\",type:ControlType.Number,step:.1,displayStepper:true,max:1,min:0,defaultValue:.6},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"row\",\"column\"],// @ts-ignore - internal\noptionIcons:[\"direction-horizontal\",\"direction-vertical\"],defaultValue:\"row\",displaySegmentedControl:true},fluid:{title:\"Fluid\",type:ControlType.Boolean,defaultValue:true}}},content:{title:\"Regions\",type:ControlType.Object,buttonTitle:\"World, EU\",controls:{isEU:{title:\" \",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"EU\",disabledTitle:\"World\"},euType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"medium\",hidden:props=>!props.isEU},euTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.euType===\"simple\"||!props.isEU},euDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",displayTextArea:true,hidden:props=>!props.isEU},euPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link,defaultValue:\"https://www.framer.com/legal/policy/\"},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\"},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\"}},hidden:props=>!props.isEU},euDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>!props.isEU},euShowReject:{title:\"Reject All\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:props=>props.euType!==\"advanced\"},euBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>!props.isEU},worldType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"simple\",hidden:props=>props.isEU},worldTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.worldType===\"simple\"||props.isEU},worldDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to personalize content, run ads, and analyze traffic.\",displayTextArea:true,hidden:props=>props.isEU},worldPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\"},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\"}},hidden:props=>props.isEU},worldDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>props.isEU},worldShowReject:{title:\"Reject All\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:props=>props.worldType!==\"advanced\"},worldBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>props.isEU}}},options:{type:ControlType.Object,buttonTitle:\"Content, Styles\",hidden:(_,props)=>props.content.euType!==\"advanced\"&&props.content.worldType!==\"advanced\",controls:{preview:{type:ControlType.Boolean,defaultValue:false,description:\"Open when previewing banner on the canvas.\",hidden:(_,props)=>!props.preview},necessary:{title:\"Necessary\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Necessary\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables security and basic functionality.\",displayTextArea:true},optional:{title:\"Optional\",type:ControlType.Boolean,defaultValue:true}}},preferences:{title:\"Preferences\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Preferences\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables personalized content and settings.\",displayTextArea:true,optional:true}}},analytics:{title:\"Analytics\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Analytics\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables tracking of performance.\",displayTextArea:true}}},marketing:{title:\"Marketing\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Marketing\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables ads personalization and tracking.\",displayTextArea:true}}},style:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Fonts, Colors\",controls:{fontTitle:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Title\",controls:\"basic\"},fontBody:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Body\",controls:\"basic\"},background:{title:\"Background\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.02)\"},border:{type:ControlType.Object,title:\"Border\",buttonTitle:\"Radius, Width\",controls:{radius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},width:{title:\"Width\",type:ControlType.Number,displayStepper:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.02)\"}}},toggleColor:{title:\"On\",type:ControlType.Color,defaultValue:\"#000\"},toggleColorInactive:{title:\"Off\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.1)\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:12,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0}}}}}});CookieBanner.displayName=\"Cookie Banner\";\nexport const __FramerMetadata__ = {\"exports\":{\"PolicyProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CookieBanner\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"auto\",\"framerSupportedLayoutHeight\":\"auto\"}},\"OptionsStyle\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"CookieBannerProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ButtonsProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Cookies.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/WtTwrQcMhFJpd4DOJv98/Cookies.js\";import FeedspringInstagramImageGrid from\"https://framerusercontent.com/modules/qa12o0BbADEutV6mXakx/bwCjlZcsrkcKCR0llcaR/feedspring_instagram_image_grid.js\";import ComponentsButtonScroll from\"#framer/local/canvasComponent/cbyr9zRXe/cbyr9zRXe.js\";import ContentClientLogos from\"#framer/local/canvasComponent/cDtbEqq1o/cDtbEqq1o.js\";import LayoutHeader from\"#framer/local/canvasComponent/GRKXsa1Ts/GRKXsa1Ts.js\";import ContentProjectPreview from\"#framer/local/canvasComponent/iMdvSL7h5/iMdvSL7h5.js\";import Calendar from\"#framer/local/canvasComponent/tISq_ViZM/tISq_ViZM.js\";import ComponentsBadgeIcon from\"#framer/local/canvasComponent/ugo7ZYMoc/ugo7ZYMoc.js\";import ContentSectionCTA from\"#framer/local/canvasComponent/XChIh2K_X/XChIh2K_X.js\";import ComponentsButtonText from\"#framer/local/canvasComponent/Y4bj3lm3r/Y4bj3lm3r.js\";import LayoutFooter from\"#framer/local/canvasComponent/zfDrZLwjb/zfDrZLwjb.js\";import Dances from\"#framer/local/collection/Gk_rXsiQS/Gk_rXsiQS.js\";import*as sharedStyle11 from\"#framer/local/css/eDe5ATOYZ/eDe5ATOYZ.js\";import*as sharedStyle6 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle12 from\"#framer/local/css/h4jVEYDkM/h4jVEYDkM.js\";import*as sharedStyle14 from\"#framer/local/css/jG0XEJNiW/jG0XEJNiW.js\";import*as sharedStyle4 from\"#framer/local/css/lTTxHKm6x/lTTxHKm6x.js\";import*as sharedStyle10 from\"#framer/local/css/MBk_HLG3q/MBk_HLG3q.js\";import*as sharedStyle9 from\"#framer/local/css/mvXlq_92F/mvXlq_92F.js\";import*as sharedStyle2 from\"#framer/local/css/NWkCScbQS/NWkCScbQS.js\";import*as sharedStyle15 from\"#framer/local/css/pl3Wu75Vw/pl3Wu75Vw.js\";import*as sharedStyle7 from\"#framer/local/css/pOkQKyeDB/pOkQKyeDB.js\";import*as sharedStyle1 from\"#framer/local/css/VVovlu18E/VVovlu18E.js\";import*as sharedStyle16 from\"#framer/local/css/weRKyfbaW/weRKyfbaW.js\";import*as sharedStyle8 from\"#framer/local/css/XBbtIvhfz/XBbtIvhfz.js\";import*as sharedStyle5 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle3 from\"#framer/local/css/Yjxb7n9U3/Yjxb7n9U3.js\";import*as sharedStyle13 from\"#framer/local/css/zCLmAjneo/zCLmAjneo.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const LayoutHeaderFonts=getFonts(LayoutHeader);const CookieBannerFonts=getFonts(CookieBanner);const ImageWithFX=withFX(Image);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ComponentsButtonScrollFonts=getFonts(ComponentsButtonScroll);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithFX=withFX(RichText);const ContentClientLogosFonts=getFonts(ContentClientLogos);const MotionDivWithFX=withFX(motion.div);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ComponentsButtonTextFonts=getFonts(ComponentsButtonText);const ContentProjectPreviewFonts=getFonts(ContentProjectPreview);const ContainerWithFX=withFX(Container);const ComponentsBadgeIconFonts=getFonts(ComponentsBadgeIcon);const CalendarFonts=getFonts(Calendar);const FeedspringInstagramImageGridFonts=getFonts(FeedspringInstagramImageGrid);const ContentSectionCTAFonts=getFonts(ContentSectionCTA);const LayoutFooterFonts=getFonts(LayoutFooter);const breakpoints={JtN8IEEEW:\"(max-width: 809px)\",QsOjzMEOj:\"(min-width: 810px) and (max-width: 1279px)\",WQLkyLRf1:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-8Ei0C\";const variantClassNames={JtN8IEEEW:\"framer-v-1vb5nd8\",QsOjzMEOj:\"framer-v-1g6n99x\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:1,ease:[.5,1,.89,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-20};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:-20};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:20};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"JtN8IEEEW\",Tablet:\"QsOjzMEOj\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,MUgju5YguZ0G8vgoWx,q6wyKlkO2Z0G8vgoWx,HB77IOfF5Z0G8vgoWx,Sxxulfe91Z0G8vgoWx,idZ0G8vgoWx,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className,sharedStyle16.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"YvYOJQQ5R\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"x2KyRcGeW\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"n33m4Q1jE\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"A3s4V9738\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"k8O1h1wNd\");const router=useRouter();const ref5=React.useRef(null);const elementId5=useRouteElementId(\"xZlaBSqYi\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"eoY8S6JX3\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"K7q1BHEpl\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"tTH41UqzQ\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"HQrypku6T\");const ref10=React.useRef(null);const elementId10=useRouteElementId(\"q6Vj0ZsRI\");const ref11=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"QsOjzMEOj\",\"JtN8IEEEW\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"QsOjzMEOj\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"JtN8IEEEW\")return true;return false;};const elementId11=useRouteElementId(\"J66fzyoeE\");const ref12=React.useRef(null);const elementId12=useRouteElementId(\"oKzgFkl8N\");const ref13=React.useRef(null);const elementId13=useRouteElementId(\"JT9E2g9FG\");const ref14=React.useRef(null);const elementId14=useRouteElementId(\"aGt2LXKoC\");const ref15=React.useRef(null);const elementId15=useRouteElementId(\"uH2x9Fu4j\");const ref16=React.useRef(null);const elementId16=useRouteElementId(\"ia0ekRU0t\");const ref17=React.useRef(null);const elementId17=useRouteElementId(\"Y8ZOfprcx\");const ref18=React.useRef(null);const elementId18=useRouteElementId(\"ugNJJU2wl\");const ref19=React.useRef(null);const elementId19=useRouteElementId(\"sMwfdU3ct\");const ref20=React.useRef(null);const elementId20=useRouteElementId(\"qd31ZwQy_\");const ref21=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, rgb(14, 14, 14)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eru2d1\",\"data-framer-name\":\"Header Wrapper\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{width:\"calc(100vw - 48px)\",y:16},QsOjzMEOj:{y:24}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,y:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ex1qoc-container\",nodeId:\"kqk3rMDC_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{style:{width:\"100%\"},variant:\"O_NmI78Jo\"}},children:/*#__PURE__*/_jsx(LayoutHeader,{height:\"100%\",id:\"kqk3rMDC_\",layoutId:\"kqk3rMDC_\",variant:\"PNgcyfqaA\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14ocsbc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Vk9JZVxFb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-center\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgb(129, 57, 52)\",radius:14,width:1},colorBody:\"rgb(247, 223, 186)\",colorTitle:\"rgb(247, 223, 186)\",fill:\"rgb(112, 32, 32)\",fontBody:{fontFamily:'\"Chillax\", \"Chillax Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},fontTitle:{fontFamily:'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},link:\"rgb(212, 127, 127)\"},width:360,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{fontFamily:'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:300,letterSpacing:\"0em\",lineHeight:\"1em\"},hoverOpacity:.6,labels:{accept:\"Accept\",acceptAll:\"Accept all\",confirm:\"Okay\",customize:\"Customize\",reject:\"Reject\",rejectAll:\"Reject all\",save:\"Save Preferences\"},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,primary:{color:\"rgb(247, 223, 186)\",fill:\"rgb(14, 14, 14)\"},secondary:{color:\"rgb(14, 14, 14)\",fill:\"rgb(247, 223, 186)\"},tapOpacity:.4},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:\"https://www.framer.com/legal/policy/\",prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"medium\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"},gtmId:\"GTM-5R5Q88QH\",height:\"100%\",id:\"Vk9JZVxFb\",layoutId:\"Vk9JZVxFb\",options:{analytics:{description:\"Enables tracking of performance.\",title:\"Analytics\"},marketing:{description:\"Enables ads personalization and tracking.\",title:\"Marketing\"},necessary:{description:\"Enables security and basic functionality.\",optional:true,title:\"Necessary\"},preferences:{description:\"Enables personalized content and settings.\",title:\"Preferences\"},preview:false,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{},fontTitle:{},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"rgb(0, 0, 0)\",toggleColorInactive:\"rgba(0, 0, 0, 0.1)\"}},preview:false,trigger:{color:\"rgb(247, 223, 186)\",iconSize:24,iconType:\"default\",text:\"Cookie Settings\",textFont:{fontFamily:'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',fontSize:\"10px\",fontStyle:\"normal\",fontWeight:300,letterSpacing:\"0em\",lineHeight:\"1em\"},type:\"none\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1ozfjfg\",\"data-framer-name\":\"Main Wrapper\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-1ibkb8d\",\"data-framer-name\":\"Home\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ox99uk\",\"data-framer-name\":\"H Padding\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-l4ia1g\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8d6gq3\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{background:{alt:\"Tuty Puji Astuti Tari Golek\",fit:\"fill\",intrinsicHeight:951.1111363069517,intrinsicWidth:765.0000202655798,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+48+0+0+0+0+0+0+0),pixelHeight:1300,pixelWidth:2049,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1400px)`,src:\"https://framerusercontent.com/images/PW4is4boVgclyGpms1SaNjH7g8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PW4is4boVgclyGpms1SaNjH7g8.png?scale-down-to=512 512w,https://framerusercontent.com/images/PW4is4boVgclyGpms1SaNjH7g8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PW4is4boVgclyGpms1SaNjH7g8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/PW4is4boVgclyGpms1SaNjH7g8.png 2049w\"}},QsOjzMEOj:{background:{alt:\"Tuty Puji Astuti Tari Golek\",fit:\"fill\",intrinsicHeight:951.1111363069517,intrinsicWidth:765.0000202655798,pixelHeight:1300,pixelWidth:2049,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1400px)`,src:\"https://framerusercontent.com/images/PW4is4boVgclyGpms1SaNjH7g8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PW4is4boVgclyGpms1SaNjH7g8.png?scale-down-to=512 512w,https://framerusercontent.com/images/PW4is4boVgclyGpms1SaNjH7g8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PW4is4boVgclyGpms1SaNjH7g8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/PW4is4boVgclyGpms1SaNjH7g8.png 2049w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:120}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Tuty Puji Astuti Tari Golek\",fit:\"fill\",intrinsicHeight:951.1111363069517,intrinsicWidth:765.0000202655798,pixelHeight:1300,pixelWidth:2049,sizes:`min(${componentViewport?.width||\"100vw\"} - 96px, 1400px)`,src:\"https://framerusercontent.com/images/PW4is4boVgclyGpms1SaNjH7g8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PW4is4boVgclyGpms1SaNjH7g8.png?scale-down-to=512 512w,https://framerusercontent.com/images/PW4is4boVgclyGpms1SaNjH7g8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PW4is4boVgclyGpms1SaNjH7g8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/PW4is4boVgclyGpms1SaNjH7g8.png 2049w\"},className:\"framer-1x05ew8\",\"data-border\":true,\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-138wklq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sveow5\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Nuansa Seni\",/*#__PURE__*/_jsx(\"br\",{}),\"Indonesia\",/*#__PURE__*/_jsx(\"br\",{}),\"Performing Arts\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:\"Nuansa Seni Indonesia \"}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:\"Performing Arts\"})]}),className:\"framer-1rjq8p6\",\"data-framer-appear-id\":\"1rjq8p6\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mz1dld\",\"data-styles-preset\":\"VVovlu18E\",style:{\"--framer-text-alignment\":\"center\"},children:\"Spirit of Indonesia, \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mz1dld\",\"data-styles-preset\":\"VVovlu18E\",style:{\"--framer-text-alignment\":\"center\"},children:\"celebrating culture through dance.\"})]}),className:\"framer-wodzzf\",\"data-framer-appear-id\":\"wodzzf\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":xZlaBSqYi\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":xZlaBSqYi\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":xZlaBSqYi\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{y:(componentViewport?.y||0)+0+0+0+0+48+0+0+0+0+0+0+405.6+0+206.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-16yijrp-container\",\"data-framer-appear-id\":\"16yijrp\",id:elementId4,initial:animation1,nodeId:\"k8O1h1wNd\",optimized:true,ref:ref5,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{jdtv87TXy:resolvedLinks[2]},QsOjzMEOj:{jdtv87TXy:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ComponentsButtonScroll,{height:\"100%\",id:\"k8O1h1wNd\",jdtv87TXy:resolvedLinks[0],jRYvEF4bp:true,layoutId:\"k8O1h1wNd\",TstnmphnB:\"READ MORE\",variant:\"tNJJ1RckB\",width:\"100%\"})})})})})})]})]})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1mfzwz6\",\"data-framer-name\":\"Logos\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19ulk6v\",\"data-framer-name\":\"H Padding\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10wba9e\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgba(218, 197, 167, 0.6))\"},children:\"Nuansa seni indonesia performing arts\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgba(218, 197, 167, 0.6))\"},children:\"is featured at\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgba(218, 197, 167, 0.6))\"},children:\"Nuansa seni indonesia performing arts is featured at\"})}),className:\"framer-1rfz81e\",\"data-framer-name\":\"Clients\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+0+0+700+48+0+0+0+0+152},QsOjzMEOj:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iax2qi-container\",nodeId:\"Q_jI6fxSP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{variant:\"n7MYjc_hW\"},QsOjzMEOj:{variant:\"rssz6G70P\"}},children:/*#__PURE__*/_jsx(ContentClientLogos,{height:\"100%\",id:\"Q_jI6fxSP\",layoutId:\"Q_jI6fxSP\",style:{width:\"100%\"},variant:\"ZQjls6NSm\",width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-j5xrb7\",\"data-framer-name\":\"About\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-axsmvz\",\"data-framer-name\":\"H Padding\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xic7kn\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iu3imv\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ghz7g0\",\"data-border\":true,\"data-framer-name\":\"Card\",id:\"ghz7g0\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jxxxo3\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jl0drx\",\"data-framer-name\":\"Grid\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xsao30\",\"data-styles-preset\":\"lTTxHKm6x\",children:\"Sugeng Rawuh \u2026\"})}),className:\"framer-1l6zrt0\",\"data-framer-name\":\"Development\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"rgb(217, 197, 167)\"},children:\"     \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"rgb(217, 197, 167)\"},children:\" \u2026 welcome, we are a group of passionate dancers dedicated to showcasing the spirit of Indonesia and its diverse cultural heritage through dancing. Having a large repertoire of various dances from different islands and performing nationwide, we invite you to come with us and discover the world's largest archipelago we call home. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"rgb(217, 197, 167)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xsao30\",\"data-styles-preset\":\"lTTxHKm6x\",style:{\"--framer-text-color\":\"rgb(217, 197, 167)\"},children:\"Discover the spirit of Indonesia. \"})]}),className:\"framer-1o6nzuk\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14a7g75\",\"data-border\":true,\"data-framer-name\":\"Card\",id:\"14a7g75\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{background:{alt:\"Nuansa Seni Indonesia\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+950+48+0+0+0+0+0+0+864+0+0),pixelHeight:1365,pixelWidth:1365,sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1400px)`,src:\"https://framerusercontent.com/images/s6lSgo5YrPUc9jKIdhhrWiTGI.jpeg\",srcSet:\"https://framerusercontent.com/images/s6lSgo5YrPUc9jKIdhhrWiTGI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/s6lSgo5YrPUc9jKIdhhrWiTGI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s6lSgo5YrPUc9jKIdhhrWiTGI.jpeg 1365w\"}},QsOjzMEOj:{background:{alt:\"Nuansa Seni Indonesia\",fit:\"fill\",pixelHeight:1059,pixelWidth:1365,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1400px)`,src:\"https://framerusercontent.com/images/bYJibFJrPCTSCEG4GqDTvPRPzWA.jpeg\",srcSet:\"https://framerusercontent.com/images/bYJibFJrPCTSCEG4GqDTvPRPzWA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/bYJibFJrPCTSCEG4GqDTvPRPzWA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bYJibFJrPCTSCEG4GqDTvPRPzWA.jpeg 1365w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Nuansa Seni Indonesia\",fit:\"fill\",pixelHeight:1365,pixelWidth:1365,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1400px) - 32px) / 2, 1px)`,src:\"https://framerusercontent.com/images/s6lSgo5YrPUc9jKIdhhrWiTGI.jpeg\",srcSet:\"https://framerusercontent.com/images/s6lSgo5YrPUc9jKIdhhrWiTGI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/s6lSgo5YrPUc9jKIdhhrWiTGI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s6lSgo5YrPUc9jKIdhhrWiTGI.jpeg 1365w\"},className:\"framer-i585bo\"})})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1llc1c8\",\"data-framer-name\":\"Repertoire\",id:elementId7,ref:ref8,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vqi8y\",\"data-framer-name\":\"H Padding\",id:elementId8,ref:ref9,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v5lsfo\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-ot3e0t\",\"data-framer-appear-id\":\"ot3e0t\",\"data-framer-name\":\"Grid\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QsOjzMEOj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\"},children:\"Highlighted Dances\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Highlighted Dances\"})}),className:\"framer-1ulwwxd\",\"data-framer-name\":\"Selected Work\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"X82_ntjUb\"},implicitPathVariables:undefined},{href:{webPageId:\"X82_ntjUb\"},implicitPathVariables:undefined},{href:{webPageId:\"X82_ntjUb\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qm9034-container\",nodeId:\"oKrTq4ZRs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{ICR1Ld5aS:resolvedLinks1[2]},QsOjzMEOj:{ICR1Ld5aS:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ComponentsButtonText,{height:\"100%\",ICR1Ld5aS:resolvedLinks1[0],id:\"oKrTq4ZRs\",layoutId:\"oKrTq4ZRs\",mLf9cfmBh:\"Full repertoire\",variant:\"fyhW7czUr\",width:\"100%\",ZyTze_BJk:false})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dltpoa\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Z0G8vgoWx\",data:Dances,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"Z0G8vgoWx\",name:\"MUgju5Ygu\",type:\"Identifier\"},{collection:\"Z0G8vgoWx\",name:\"q6wyKlkO2\",type:\"Identifier\"},{collection:\"Z0G8vgoWx\",name:\"HB77IOfF5\",type:\"Identifier\"},{collection:\"Z0G8vgoWx\",name:\"Sxxulfe91\",type:\"Identifier\"},{collection:\"Z0G8vgoWx\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({HB77IOfF5:HB77IOfF5Z0G8vgoWx,id:idZ0G8vgoWx,MUgju5Ygu:MUgju5YguZ0G8vgoWx,q6wyKlkO2:q6wyKlkO2Z0G8vgoWx,Sxxulfe91:Sxxulfe91Z0G8vgoWx},index)=>{MUgju5YguZ0G8vgoWx??=\"\";q6wyKlkO2Z0G8vgoWx??=\"\";Sxxulfe91Z0G8vgoWx??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Z0G8vgoWx-${idZ0G8vgoWx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{q6wyKlkO2:q6wyKlkO2Z0G8vgoWx},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-76jmgs\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{q6wyKlkO2:q6wyKlkO2Z0G8vgoWx},webPageId:\"UchV65umT\"},implicitPathVariables:undefined},{href:{pathVariables:{q6wyKlkO2:q6wyKlkO2Z0G8vgoWx},webPageId:\"UchV65umT\"},implicitPathVariables:undefined},{href:{pathVariables:{q6wyKlkO2:q6wyKlkO2Z0G8vgoWx},webPageId:\"UchV65umT\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{width:`min(max(${componentViewport?.width||\"100vw\"}, 1px) - 48px, 1400px)`},QsOjzMEOj:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px) - 80px, 1400px) - 16px) / 2, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px) - 96px, 1400px) - 32px) / 2, 200px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-iqdelr-container\",nodeId:\"onsB0JLIo\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{NMldZcRig:resolvedLinks2[2],variant:\"ArBpRENW7\"},QsOjzMEOj:{NMldZcRig:resolvedLinks2[1],variant:\"qJ5_qRaP9\"}},children:/*#__PURE__*/_jsx(ContentProjectPreview,{d4WvVqw2s:toResponsiveImage(HB77IOfF5Z0G8vgoWx),height:\"100%\",id:\"onsB0JLIo\",layoutId:\"onsB0JLIo\",NMldZcRig:resolvedLinks2[0],rYuokKqbF:Sxxulfe91Z0G8vgoWx,style:{width:\"100%\"},variant:\"qChKulgtg\",w8ldgf4Kv:MUgju5YguZ0G8vgoWx,width:\"100%\"})})})})})})})})},idZ0G8vgoWx);})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hm77j\",\"data-framer-name\":\"History\",id:elementId9,ref:ref10,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-alnzh7\",\"data-framer-name\":\"H Padding\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lcy7bj\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rh3y4y\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nvmjok\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wvskbc\",\"data-styles-preset\":\"pOkQKyeDB\",style:{\"--framer-text-alignment\":\"center\"},children:\"The story of\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ea278c\",\"data-styles-preset\":\"XBbtIvhfz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Nuansa Seni Indonesia\"})]}),className:\"framer-1mcybmq\",\"data-framer-name\":\"Your Website in 5 steps\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"The founding of one of the longest-running Indonesian dance groups in The Netherlands.\"})}),className:\"framer-14vklj9\",\"data-framer-name\":\"Premium web design, webflow, and SEO services to help your business stand out.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pshoib\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19tsa83\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{y:(componentViewport?.y||0)+0+0+0+2899+200+0+0+0+0+0+0+1192+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18w8ify-container\",nodeId:\"jPwPV4dSY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentsBadgeIcon,{height:\"100%\",id:\"jPwPV4dSY\",layoutId:\"jPwPV4dSY\",style:{height:\"100%\",width:\"100%\"},variant:\"sRMZTM3MC\",width:\"100%\",Zc2l9lnHj:\"ArrowDown\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ueswid\",\"data-framer-name\":\"Line\"})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u2plm7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q73tsu\",id:elementId10,ref:ref11,children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-cpgls4 hidden-1g6n99x hidden-1vb5nd8\",\"data-framer-name\":\"Grid\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Tuty Puji Astuti Javaanse Dansen\",fit:\"fill\",pixelHeight:4096,pixelWidth:3968,src:\"https://framerusercontent.com/images/WorRy6Bpqccei6oPtibosAK4xQ.jpg?scale-down-to=1024\"},className:\"framer-1tz3bxl\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12bt9md\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fx4kko\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"1998\"})}),className:\"framer-1hdf7yq\",\"data-framer-name\":\"Premium web design, webflow, and SEO services to help your business stand out.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1opstr\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ygpzyj\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oo09gw\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pkvrbp\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1waxijv\",\"data-framer-name\":\"Grid\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kgelj\",\"data-styles-preset\":\"MBk_HLG3q\",children:\"Humble beginnings\"})}),className:\"framer-toakuf\",\"data-framer-name\":\"Discovery Call\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"It all started out as a small and passionate hobby of Tuty Puji Astuti. Born and raised in Java, she was taught the art of classical Javanese dance from a young age. Living in The Netherlands, she continued this tradition of telling Indonesian stories in The Netherlands through dance. The Javanese dance form is one of the most refined and delicate dance forms in existence. Under the name of Javaanse Dansen, she performed at small gatherings and venues throughout The Netherlands.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Soon after, Tuty managed to gather an enthusiastic following creating a small dance group of passionate dancers, 'Nuansa Seni Indonesia' is born. \"})]}),className:\"framer-zoe3x1\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Et malesuada fames ac turpis egestas integer eget aliquet. Ac auctor augue mauris augue neque gravida in fermentum.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"Tuty Puji Astuti Javaanse Dansen\",fit:\"fill\",pixelHeight:4096,pixelWidth:3968,src:\"https://framerusercontent.com/images/WorRy6Bpqccei6oPtibosAK4xQ.jpg\",srcSet:\"https://framerusercontent.com/images/WorRy6Bpqccei6oPtibosAK4xQ.jpg?scale-down-to=1024 992w,https://framerusercontent.com/images/WorRy6Bpqccei6oPtibosAK4xQ.jpg?scale-down-to=2048 1984w,https://framerusercontent.com/images/WorRy6Bpqccei6oPtibosAK4xQ.jpg 3968w\"},className:\"framer-urtpwu hidden-72rtr7 hidden-1vb5nd8\"}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{background:{alt:\"Tuty Puji Astuti Javaanse Dansen\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2899+200+0+0+0+0+1278+0+0+0+0+0+32+387.2),pixelHeight:4096,pixelWidth:3968,src:\"https://framerusercontent.com/images/WorRy6Bpqccei6oPtibosAK4xQ.jpg\",srcSet:\"https://framerusercontent.com/images/WorRy6Bpqccei6oPtibosAK4xQ.jpg?scale-down-to=1024 992w,https://framerusercontent.com/images/WorRy6Bpqccei6oPtibosAK4xQ.jpg?scale-down-to=2048 1984w,https://framerusercontent.com/images/WorRy6Bpqccei6oPtibosAK4xQ.jpg 3968w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Tuty Puji Astuti Javaanse Dansen\",fit:\"fill\",pixelHeight:4096,pixelWidth:3968,src:\"https://framerusercontent.com/images/WorRy6Bpqccei6oPtibosAK4xQ.jpg\",srcSet:\"https://framerusercontent.com/images/WorRy6Bpqccei6oPtibosAK4xQ.jpg?scale-down-to=1024 992w,https://framerusercontent.com/images/WorRy6Bpqccei6oPtibosAK4xQ.jpg?scale-down-to=2048 1984w,https://framerusercontent.com/images/WorRy6Bpqccei6oPtibosAK4xQ.jpg 3968w\"},className:\"framer-1fpn6p4 hidden-72rtr7 hidden-1g6n99x\"})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lbdwsc\",id:elementId11,ref:ref12,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j9l1jg\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jfr3nd\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-116r88z\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fyj5yr\",\"data-framer-name\":\"Grid\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kgelj\",\"data-styles-preset\":\"MBk_HLG3q\",children:\"Dancing for all generations\"})}),className:\"framer-wjhzxn\",\"data-framer-name\":\"Discovery Call\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Dancers with kids brought the young often to the group's dance rehearsals, exposing them to this unique dance form. Not soon after, Tuty's own kids along with the others started practicing different kinds of Indonesian dances. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"The popularity among the young generation led to the creation of a separate division within the dance group, 'NSI Kids'.\"})]}),className:\"framer-1y88ghj\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Et malesuada fames ac turpis egestas integer eget aliquet. Ac auctor augue mauris augue neque gravida in fermentum.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"Nuansa Seni Indonesia Bali Art\",fit:\"fill\",pixelHeight:4096,pixelWidth:3232,src:\"https://framerusercontent.com/images/4V8R95eH7B68ccUs9Y71VANGbO0.jpg\",srcSet:\"https://framerusercontent.com/images/4V8R95eH7B68ccUs9Y71VANGbO0.jpg?scale-down-to=1024 808w,https://framerusercontent.com/images/4V8R95eH7B68ccUs9Y71VANGbO0.jpg?scale-down-to=2048 1616w,https://framerusercontent.com/images/4V8R95eH7B68ccUs9Y71VANGbO0.jpg 3232w\"},className:\"framer-w84kff hidden-72rtr7 hidden-1vb5nd8\"}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{background:{alt:\"Nuansa Seni Indonesia Bali Art\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2899+200+0+0+0+0+1278+0+630.2+0+24+0+32+512),pixelHeight:4096,pixelWidth:3232,src:\"https://framerusercontent.com/images/4V8R95eH7B68ccUs9Y71VANGbO0.jpg\",srcSet:\"https://framerusercontent.com/images/4V8R95eH7B68ccUs9Y71VANGbO0.jpg?scale-down-to=1024 808w,https://framerusercontent.com/images/4V8R95eH7B68ccUs9Y71VANGbO0.jpg?scale-down-to=2048 1616w,https://framerusercontent.com/images/4V8R95eH7B68ccUs9Y71VANGbO0.jpg 3232w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Nuansa Seni Indonesia Bali Art\",fit:\"fill\",pixelHeight:4096,pixelWidth:3232,src:\"https://framerusercontent.com/images/4V8R95eH7B68ccUs9Y71VANGbO0.jpg\",srcSet:\"https://framerusercontent.com/images/4V8R95eH7B68ccUs9Y71VANGbO0.jpg?scale-down-to=1024 808w,https://framerusercontent.com/images/4V8R95eH7B68ccUs9Y71VANGbO0.jpg?scale-down-to=2048 1616w,https://framerusercontent.com/images/4V8R95eH7B68ccUs9Y71VANGbO0.jpg 3232w\"},className:\"framer-1mfckik hidden-72rtr7 hidden-1g6n99x\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f3ppnf\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-68wba0\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"2007\"})}),className:\"framer-369z59\",\"data-framer-name\":\"Premium web design, webflow, and SEO services to help your business stand out.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vivrcf\",\"data-framer-name\":\"Line\"})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-13qxjv5 hidden-1g6n99x hidden-1vb5nd8\",\"data-framer-name\":\"Grid\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Nuansa Seni Indonesia Bali Art\",fit:\"fill\",pixelHeight:4096,pixelWidth:3232,src:\"https://framerusercontent.com/images/4V8R95eH7B68ccUs9Y71VANGbO0.jpg\",srcSet:\"https://framerusercontent.com/images/4V8R95eH7B68ccUs9Y71VANGbO0.jpg?scale-down-to=1024 808w,https://framerusercontent.com/images/4V8R95eH7B68ccUs9Y71VANGbO0.jpg?scale-down-to=2048 1616w,https://framerusercontent.com/images/4V8R95eH7B68ccUs9Y71VANGbO0.jpg 3232w\"},className:\"framer-1uxvou1\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qajzib\",id:elementId12,ref:ref13,children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b8qov0 hidden-1g6n99x hidden-1vb5nd8\",\"data-framer-name\":\"Grid\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Nuansa Seni Indonesia Performing Arts\",fit:\"fit\",pixelHeight:1200,pixelWidth:4800,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png\",srcSet:\"https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png 4800w\"},className:\"framer-14ngwvt\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iol4f\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m5w2hc\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"2015\"})}),className:\"framer-1hghe91\",\"data-framer-name\":\"Premium web design, webflow, and SEO services to help your business stand out.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3eku5t\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1isragl\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dbmyjf\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5zawpl\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a9f9jm\",\"data-framer-name\":\"Grid\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kgelj\",\"data-styles-preset\":\"MBk_HLG3q\",children:\"Rebranding\"})}),className:\"framer-h5wz1s\",\"data-framer-name\":\"Discovery Call\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"After years of growth of 'Nuansa Seni Indonesia', it was time to rebrand its image. Reflecting the diversity in Indonesian dances and its members, a new logo, visual identity and an extension of the name was introduced; 'Nuansa Seni Indonesia Performing Arts'.\"})}),className:\"framer-1kkwd0l\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Et malesuada fames ac turpis egestas integer eget aliquet. Ac auctor augue mauris augue neque gravida in fermentum.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"Nuansa Seni Indonesia Performing Arts\",fit:\"fit\",pixelHeight:1200,pixelWidth:4800,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png\",srcSet:\"https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png 4800w\"},className:\"framer-lc538o hidden-72rtr7 hidden-1vb5nd8\"}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{background:{alt:\"Nuansa Seni Indonesia Performing Arts\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2899+200+0+0+0+0+1278+0+1416.2+0+24+0+32+348),pixelHeight:1200,pixelWidth:4800,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png\",srcSet:\"https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png 4800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Nuansa Seni Indonesia Performing Arts\",fit:\"fit\",pixelHeight:1200,pixelWidth:4800,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png\",srcSet:\"https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/MehzywITJgnIpxJGIX9uBlvyMQ.png 4800w\"},className:\"framer-32kp4 hidden-72rtr7 hidden-1g6n99x\"})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nuj50o\",id:elementId13,ref:ref14,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-n40y2h\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1s4weox\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d9d4ky\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e8cmjs\",\"data-framer-name\":\"Grid\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kgelj\",\"data-styles-preset\":\"MBk_HLG3q\",children:\"Passing the baton\"})}),className:\"framer-1e1hbcf\",\"data-framer-name\":\"Discovery Call\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"After years of teaching and leading the dance group, Tuty decided to pass on the baton to her daughter. Putri, Tuty's daughter, had been dancing in the group for years. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Starting from an early age of 9, she learned the delicate dance moves occuring in Indonesian dancing. Now, aged 19, it was time to take over the leadership of the dance group with Tuty being present and supportive behind the scenes.\"})]}),className:\"framer-h4ux8e\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Et malesuada fames ac turpis egestas integer eget aliquet. Ac auctor augue mauris augue neque gravida in fermentum.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"Putri Wulan Sari\",fit:\"fill\",pixelHeight:6873,pixelWidth:4582,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg\",srcSet:\"https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg 4582w\"},className:\"framer-1hsr6lv hidden-72rtr7 hidden-1vb5nd8\"}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{background:{alt:\"Putri Wulan Sari\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2899+200+0+0+0+0+1278+0+1931.2+0+24+0+32+512),pixelHeight:6873,pixelWidth:4582,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg\",srcSet:\"https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg 4582w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Putri Wulan Sari\",fit:\"fill\",pixelHeight:6873,pixelWidth:4582,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg\",srcSet:\"https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg 4582w\"},className:\"framer-ykmerv hidden-72rtr7 hidden-1g6n99x\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16rzqi9\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ehrrxg\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"2017\"})}),className:\"framer-1a0kfvj\",\"data-framer-name\":\"Premium web design, webflow, and SEO services to help your business stand out.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o0a0ry\",\"data-framer-name\":\"Line\"})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-17bdgvs hidden-1g6n99x hidden-1vb5nd8\",\"data-framer-name\":\"Grid\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Putri Wulan Sari\",fit:\"fill\",pixelHeight:6873,pixelWidth:4582,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg\",srcSet:\"https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/Q4cTrkBZSBBXSrvp5beP5fldQbU.jpg 4582w\"},className:\"framer-li9b3e\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nhc28b\",id:elementId14,ref:ref15,children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-dj4jsa hidden-1g6n99x hidden-1vb5nd8\",\"data-framer-name\":\"Grid\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"NSI\",fit:\"fill\",pixelHeight:7032,pixelWidth:4688,src:\"https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg\",srcSet:\"https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg 4688w\"},className:\"framer-1dqb9tt\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iwkq3u\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-v451aa\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"2025\"})}),className:\"framer-v7flff\",\"data-framer-name\":\"Premium web design, webflow, and SEO services to help your business stand out.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uyg29k\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{y:(componentViewport?.y||0)+0+0+0+2899+200+0+0+0+0+1278+0+2705.2+0+0+270}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aor3xp-container\",nodeId:\"gF_SWPRZa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentsBadgeIcon,{height:\"100%\",id:\"gF_SWPRZa\",layoutId:\"gF_SWPRZa\",style:{height:\"100%\",width:\"100%\"},variant:\"sRMZTM3MC\",width:\"100%\",Zc2l9lnHj:\"ArrowDown\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15iquqv\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xxwpdm\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-t19wcz\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8ijnps\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a6ohna\",\"data-framer-name\":\"Grid\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kgelj\",\"data-styles-preset\":\"MBk_HLG3q\",children:\"The next generation\"})}),className:\"framer-rxqc8p\",\"data-framer-name\":\"Discovery Call\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"In the recent years 'Nuansa Seni Indonesia Performing Arts', 'NSIPA', had been growing steadily under Putri's leadership\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Next to keeping the traditional Indonesian dance culture at heart, introducing more modern and dynamic choreographies was important to introduce the Indonesian dance culture to the next generation. As a result, the popularity of 'NSIPA' under young people grew.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"With the arrival of new young dancers, a new version of the dance group had been established. A brand new visual identity had been created to represent the next generation of 'Nuansa Seni Indonesia Performing Arts'.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Our story is still being written. Starting from 2025, using our extensive dance repertoire,  'Nuansa Seni Indonesia Performing Arts' will recommit and stay committed in spreading the Indonesian dance culture throughout The Netherlands using both traditional and modern Indonesian dances.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"We are 'Nuansa Seni Indonesia Performing Arts', nice to meet you.\"})]}),className:\"framer-4g3hm3\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Et malesuada fames ac turpis egestas integer eget aliquet. Ac auctor augue mauris augue neque gravida in fermentum.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"NSI\",fit:\"fill\",pixelHeight:7032,pixelWidth:4688,positionX:\"49.3%\",positionY:\"30.4%\",src:\"https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg\",srcSet:\"https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg 4688w\"},className:\"framer-hckfjy hidden-72rtr7 hidden-1vb5nd8\"}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{background:{alt:\"NSI\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2899+200+0+0+0+0+1278+0+2705.2+0+24+0+32+1004),pixelHeight:7032,pixelWidth:4688,positionX:\"49.3%\",positionY:\"30.4%\",src:\"https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg\",srcSet:\"https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg 4688w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"NSI\",fit:\"fill\",pixelHeight:7032,pixelWidth:4688,positionX:\"49.3%\",positionY:\"30.4%\",src:\"https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg\",srcSet:\"https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/2ff4u2S71shRw0pGDkQM52j4g.jpg 4688w\"},className:\"framer-gvp10k hidden-72rtr7 hidden-1g6n99x\"})})]})})]})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yyioo5\",\"data-framer-name\":\"Calendar\",id:elementId15,ref:ref16,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ea278c\",\"data-styles-preset\":\"XBbtIvhfz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Upcoming Performances\"})})},QsOjzMEOj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ea278c\",\"data-styles-preset\":\"XBbtIvhfz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Upcoming Performances\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-12uw8lf\",\"data-styles-preset\":\"eDe5ATOYZ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Upcoming Performances\"})}),className:\"framer-1twc76e\",\"data-framer-name\":\"Your Website in 5 steps\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1we7fir\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{height:713,width:\"540px\",y:(componentViewport?.y||0)+0+0+0+8329.2+61+440+0+0},QsOjzMEOj:{height:1049}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x1mxc8-container\",id:elementId16,nodeId:\"ia0ekRU0t\",ref:ref17,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Calendar,{height:\"100%\",id:\"ia0ekRU0t\",layoutId:\"ia0ekRU0t\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j7e8nn\",\"data-framer-name\":\"FAQ\",id:elementId17,ref:ref18,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rfme9t\",\"data-framer-name\":\"H Padding\",id:elementId18,ref:ref19,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vdzb5s\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wvskbc\",\"data-styles-preset\":\"pOkQKyeDB\",style:{\"--framer-text-alignment\":\"center\"},children:\"F.A.Q.\"})}),className:\"framer-onxaio\",\"data-framer-name\":\"What my clients say\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"l\",motionChild:true,nodeId:\"xuOSRj9b6\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-51jn3d\",\"data-styles-preset\":\"zCLmAjneo\",children:\"All you need to know about Nuansa Seni Indonesia Performing Arts.\"})})})}),className:\"framer-146brnk\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ah10c1\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1awh53s\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4y2b93\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cwlbxi\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10oeij6\",\"data-framer-name\":\"Grid\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wuuue2\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kmrzpz\",\"data-styles-preset\":\"jG0XEJNiW\",children:\"What does Nuansa Seni Indonesia Performing Arts mean?\"})}),className:\"framer-1wpyq5n\",\"data-framer-name\":\"Amazing Results with Aiko's Premium Web Design Services.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Nuansa Seni Indonesia means 'nuances of the Indonesian art'. As a dance group we are showcasing the rich art of the beautiful, classical and traditional dances from the Indonesian archipelago.\"})}),className:\"framer-1hvd96\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Et malesuada fames ac turpis egestas integer eget aliquet. Ac auctor augue mauris augue neque.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ioqqki\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-54qjrj\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kmrzpz\",\"data-styles-preset\":\"jG0XEJNiW\",children:\"Where are we based?\"})}),className:\"framer-fue3j0\",\"data-framer-name\":\"Web Design and Content Solutions: Stand Out from the Crowd.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"The homebase of Nuansa Seni Indonesia is located in Purmerend, The Netherlands.\"})}),className:\"framer-18k29t4\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Et malesuada fames ac turpis egestas integer eget aliquet. Ac auctor augue mauris augue neque.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jwfq94\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-moukw4\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kmrzpz\",\"data-styles-preset\":\"jG0XEJNiW\",children:\"How to book a performance?\"})}),className:\"framer-1n0ppw8\",\"data-framer-name\":\"Web Design and Content Solutions: Stand Out from the Crowd.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"You can book a performance by filling in the form provided below. Make sure you provide all relevant details.\"})}),className:\"framer-10i8wrh\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Et malesuada fames ac turpis egestas integer eget aliquet. Ac auctor augue mauris augue neque.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wg0iq\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6udm8p\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kmrzpz\",\"data-styles-preset\":\"jG0XEJNiW\",children:\"Where and when do we perform?\"})}),className:\"framer-1gof24f\",\"data-framer-name\":\"High-Quality Web Design: Exceptional Attention to Detail with Aiko.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"We are performing nationwide, mostly at Indonesian gathering events (Pasar Malam). To see the exact venues and dates, you can check out our calendar.\"})}),className:\"framer-1r9v9j4\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Et malesuada fames ac turpis egestas integer eget aliquet. Ac auctor augue mauris augue neque.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16ywlat\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6gmuzz\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kmrzpz\",\"data-styles-preset\":\"jG0XEJNiW\",children:\"Do we recruit new performers?\"})}),className:\"framer-15v0bzh\",\"data-framer-name\":\"Web Design and Content Solutions: Stand Out from the Crowd.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"We are always looking for new dancers to come and join us. If you want to learn and perform Indonesian dances together with us, don't hesitate to reach out to us by filling in the form down below!\"})}),className:\"framer-4iejq2\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Et malesuada fames ac turpis egestas integer eget aliquet. Ac auctor augue mauris augue neque.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16o70a4\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xqgxix\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hhmj3k\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kmrzpz\",\"data-styles-preset\":\"jG0XEJNiW\",children:\"What does Nuansa Seni Indonesia Performing Arts do?\"})}),className:\"framer-1auquyn\",\"data-framer-name\":\"Expert Webflow and SEO Services: Excellent Work, Great Results.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"The foundation Nuansa Seni Indonesia Performing Arts has set its main goal to cultivate and to perform traditional Indonesian dances but also to cultivate, develop new choreographies based on the classical and traditional Indonesian dances in the Netherlands, Europe and any other country in the world.\"})}),className:\"framer-jxrdn5\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Et malesuada fames ac turpis egestas integer eget aliquet. Ac auctor augue mauris augue neque.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dna2de\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ktrfl\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kmrzpz\",\"data-styles-preset\":\"jG0XEJNiW\",children:\"What is the pricing of booking a perfomance?\"})}),className:\"framer-19jjmd0\",\"data-framer-name\":\"Expertise in Web Design: Second to None with Aiko.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Any booking request will be handled personally and the price will depend on the amount of dances, artists and runningtime. We will offer  options  to customize our perfomance to fit into your budget. \"})}),className:\"framer-1kpnkrf\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Et malesuada fames ac turpis egestas integer eget aliquet. Ac auctor augue mauris augue neque.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-785gus\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wyrtfs\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kmrzpz\",\"data-styles-preset\":\"jG0XEJNiW\",children:\"What dances are included in our repertoire?\"})}),className:\"framer-tvgmft\",\"data-framer-name\":\"Professional, Collaborative Web Design Experience with Aiko.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"We have an extensive and growing repertoire consisting of traditional and modern dances from all around Indonesia.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"To get an impression of our perfomances, you can check out our repertoire on this website or visit our social media channels.\"})]}),className:\"framer-xvj5th\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Et malesuada fames ac turpis egestas integer eget aliquet. Ac auctor augue mauris augue neque.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18eca0x\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-32atmb\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kmrzpz\",\"data-styles-preset\":\"jG0XEJNiW\",children:\"What services do we offer?\"})}),className:\"framer-1qqgkmy\",\"data-framer-name\":\"High-Quality Web Design: Exceptional Attention to Detail with Aiko.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:[\"In addition to performing our extensive dance repertoire, we offer some additional services:  Costume shows, Costume rentals, Indonesian Dance and Catering (Catering service offered by '\",/*#__PURE__*/_jsx(Link,{href:\"www.putrisolo.nl\",motionChild:true,nodeId:\"j7h8LN7oc\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18fhbm3\",\"data-styles-preset\":\"pl3Wu75Vw\",children:\"Putri Solo Indonesian Cuisine and Delicatessen\"})}),\"')\"]})}),className:\"framer-19k81g\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Et malesuada fames ac turpis egestas integer eget aliquet. Ac auctor augue mauris augue neque.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ky9h0n\",\"data-framer-name\":\"Insta\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d8l4pp\",\"data-framer-name\":\"H Padding\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l7b83o\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1lllgxj\",\"data-styles-preset\":\"weRKyfbaW\",style:{\"--framer-text-alignment\":\"center\"},children:\"insta feed\"})}),className:\"framer-h3jw1x\",\"data-framer-name\":\"What my clients say\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qsjumk\",\"data-framer-name\":\"Grid\",children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-aj8a6z\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u4f0u7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EWC00m_vQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{container:{columns:1,gap:24}}},children:/*#__PURE__*/_jsx(FeedspringInstagramImageGrid,{card:{aspectRatio:\"1\",color:\"rgb(255, 255, 255)\",height:320,imageSize:\"fixed-height\",lazy:true,overlay:\"rgba(8, 8, 11, 0.4)\",radius:8,size:18},container:{columns:3,gap:24},feedId:\"inst_6tPSXBk1UOxbJZXtEHeRL\",font:{family:'\"Inter\", sans-serif'},height:\"100%\",id:\"EWC00m_vQ\",items:3,layoutId:\"EWC00m_vQ\",skip:0,width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{y:(componentViewport?.y||0)+0+0+0+14316.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1036,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q4pvhy-container\",\"data-framer-name\":\"Contact\",id:elementId19,name:\"Contact\",nodeId:\"sMwfdU3ct\",ref:ref20,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{variant:\"ieLfp93Lw\"},QsOjzMEOj:{variant:\"TiFkeZ7AH\"}},children:/*#__PURE__*/_jsx(ContentSectionCTA,{height:\"100%\",id:\"sMwfdU3ct\",layoutId:\"sMwfdU3ct\",name:\"Contact\",style:{width:\"100%\"},variant:\"gPE5RsHZd\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{y:(componentViewport?.y||0)+0+15352.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:845,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nwlwjo-container\",id:elementId20,nodeId:\"qd31ZwQy_\",ref:ref21,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JtN8IEEEW:{variant:\"ysuUVrVJz\"},QsOjzMEOj:{variant:\"RH0pMULzv\"}},children:/*#__PURE__*/_jsx(LayoutFooter,{height:\"100%\",id:\"qd31ZwQy_\",layoutId:\"qd31ZwQy_\",style:{width:\"100%\"},variant:\"lvm0HN2Wz\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8Ei0C.framer-lux5qc, .framer-8Ei0C .framer-lux5qc { display: block; }\",\".framer-8Ei0C.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, #0e0e0e); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-8Ei0C .framer-eru2d1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 32px 40px 0px 40px; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-8Ei0C .framer-ex1qoc-container { flex: none; height: auto; position: relative; width: auto; z-index: 10; }\",\".framer-8Ei0C .framer-14ocsbc-container, .framer-8Ei0C .framer-1qm9034-container, .framer-8Ei0C .framer-u4f0u7-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-8Ei0C .framer-1ozfjfg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1ibkb8d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-ox99uk, .framer-8Ei0C .framer-19ulk6v, .framer-8Ei0C .framer-axsmvz, .framer-8Ei0C .framer-alnzh7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-l4ia1g, .framer-8Ei0C .framer-1xic7kn { 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; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-8d6gq3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1x05ew8 { --border-bottom-width: 1px; --border-color: #d9c5a7; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; -webkit-filter: brightness(0.7) contrast(0.99) grayscale(0) sepia(1); filter: brightness(0.7) contrast(0.99) grayscale(0) sepia(1); flex: none; height: 750px; max-width: 100%; overflow: visible; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-138wklq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-sveow5, .framer-8Ei0C .framer-1nvmjok { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1rjq8p6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-8Ei0C .framer-wodzzf { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: auto; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-8Ei0C .framer-16yijrp-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8Ei0C .framer-1mfzwz6 { 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: 85px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-10wba9e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 59px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1rfz81e, .framer-8Ei0C .framer-1o6nzuk, .framer-8Ei0C .framer-toakuf, .framer-8Ei0C .framer-zoe3x1, .framer-8Ei0C .framer-wjhzxn, .framer-8Ei0C .framer-1y88ghj, .framer-8Ei0C .framer-h5wz1s, .framer-8Ei0C .framer-1kkwd0l, .framer-8Ei0C .framer-1e1hbcf, .framer-8Ei0C .framer-h4ux8e, .framer-8Ei0C .framer-rxqc8p, .framer-8Ei0C .framer-4g3hm3, .framer-8Ei0C .framer-1wpyq5n, .framer-8Ei0C .framer-1hvd96, .framer-8Ei0C .framer-fue3j0, .framer-8Ei0C .framer-18k29t4, .framer-8Ei0C .framer-1n0ppw8, .framer-8Ei0C .framer-10i8wrh, .framer-8Ei0C .framer-1gof24f, .framer-8Ei0C .framer-1r9v9j4, .framer-8Ei0C .framer-15v0bzh, .framer-8Ei0C .framer-4iejq2, .framer-8Ei0C .framer-1auquyn, .framer-8Ei0C .framer-jxrdn5, .framer-8Ei0C .framer-19jjmd0, .framer-8Ei0C .framer-1kpnkrf, .framer-8Ei0C .framer-tvgmft, .framer-8Ei0C .framer-xvj5th, .framer-8Ei0C .framer-1qqgkmy, .framer-8Ei0C .framer-19k81g { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8Ei0C .framer-1iax2qi-container, .framer-8Ei0C .framer-iqdelr-container, .framer-8Ei0C .framer-1q4pvhy-container, .framer-8Ei0C .framer-1nwlwjo-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-j5xrb7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 0px 0px; position: relative; scroll-margin-top: 45px; width: 100%; }\",\".framer-8Ei0C .framer-1iu3imv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-ghz7g0 { --border-bottom-width: 1px; --border-color: var(--token-68c05b50-ca7b-4173-82aa-ed42aea1a9b4, #343330); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-81ab93ff-d515-4aca-b63b-24f83b57a3ab, rgba(218, 197, 167, 0.05)); border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 1px; }\",\".framer-8Ei0C .framer-jxxxo3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1jl0drx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8Ei0C .framer-1l6zrt0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 349px; word-break: break-word; word-wrap: break-word; }\",\".framer-8Ei0C .framer-14a7g75 { --border-bottom-width: 1px; --border-color: var(--token-68c05b50-ca7b-4173-82aa-ed42aea1a9b4, #343330); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-81ab93ff-d515-4aca-b63b-24f83b57a3ab, rgba(218, 197, 167, 0.05)); border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8Ei0C .framer-i585bo { -webkit-filter: brightness(0.76) contrast(0.77) grayscale(1) sepia(1); filter: brightness(0.76) contrast(0.77) grayscale(1) sepia(1); flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1llc1c8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 128px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1vqi8y { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 48px 0px 48px; position: relative; width: 1px; }\",\".framer-8Ei0C .framer-1v5lsfo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-ot3e0t { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8Ei0C .framer-1ulwwxd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8Ei0C .framer-1dltpoa { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-76jmgs { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 48px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-hm77j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 160px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1lcy7bj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-rh3y4y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1mcybmq, .framer-8Ei0C .framer-1twc76e { flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8Ei0C .framer-14vklj9 { flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8Ei0C .framer-1pshoib { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-8Ei0C .framer-19tsa83 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8Ei0C .framer-18w8ify-container, .framer-8Ei0C .framer-1aor3xp-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-8Ei0C .framer-1ueswid, .framer-8Ei0C .framer-1uyg29k { background-color: var(--token-68c05b50-ca7b-4173-82aa-ed42aea1a9b4, #343330); flex: none; height: 60px; position: relative; width: 1px; }\",\".framer-8Ei0C .framer-1u2plm7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-q73tsu, .framer-8Ei0C .framer-lbdwsc, .framer-8Ei0C .framer-1qajzib, .framer-8Ei0C .framer-nuj50o, .framer-8Ei0C .framer-1nhc28b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-cpgls4, .framer-8Ei0C .framer-13qxjv5, .framer-8Ei0C .framer-1b8qov0, .framer-8Ei0C .framer-17bdgvs, .framer-8Ei0C .framer-dj4jsa { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8Ei0C .framer-1tz3bxl { -webkit-filter: brightness(0.68) contrast(0.87) grayscale(1) sepia(1); filter: brightness(0.68) contrast(0.87) grayscale(1) sepia(1); flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-12bt9md, .framer-8Ei0C .framer-f3ppnf, .framer-8Ei0C .framer-1iol4f, .framer-8Ei0C .framer-16rzqi9, .framer-8Ei0C .framer-iwkq3u { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8Ei0C .framer-fx4kko, .framer-8Ei0C .framer-1opstr, .framer-8Ei0C .framer-68wba0, .framer-8Ei0C .framer-1vivrcf, .framer-8Ei0C .framer-1m5w2hc, .framer-8Ei0C .framer-3eku5t, .framer-8Ei0C .framer-1ehrrxg, .framer-8Ei0C .framer-o0a0ry, .framer-8Ei0C .framer-v451aa { background-color: var(--token-68c05b50-ca7b-4173-82aa-ed42aea1a9b4, #343330); flex: 1 0 0px; height: 1px; position: relative; width: 1px; }\",\".framer-8Ei0C .framer-1hdf7yq, .framer-8Ei0C .framer-369z59, .framer-8Ei0C .framer-1hghe91, .framer-8Ei0C .framer-1a0kfvj, .framer-8Ei0C .framer-v7flff { flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100px; word-break: break-word; word-wrap: break-word; }\",\".framer-8Ei0C .framer-1ygpzyj, .framer-8Ei0C .framer-1j9l1jg, .framer-8Ei0C .framer-1isragl, .framer-8Ei0C .framer-n40y2h, .framer-8Ei0C .framer-xxwpdm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8Ei0C .framer-oo09gw, .framer-8Ei0C .framer-jfr3nd, .framer-8Ei0C .framer-1dbmyjf, .framer-8Ei0C .framer-1s4weox, .framer-8Ei0C .framer-t19wcz { --border-bottom-width: 1px; --border-color: #343230; --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: rgba(218, 197, 167, 0.05); border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1pkvrbp, .framer-8Ei0C .framer-116r88z, .framer-8Ei0C .framer-5zawpl, .framer-8Ei0C .framer-1d9d4ky, .framer-8Ei0C .framer-8ijnps { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1waxijv, .framer-8Ei0C .framer-1fyj5yr, .framer-8Ei0C .framer-a9f9jm, .framer-8Ei0C .framer-e8cmjs, .framer-8Ei0C .framer-a6ohna { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-urtpwu { -webkit-filter: brightness(0.68) contrast(0.87) grayscale(1) sepia(1); filter: brightness(0.68) contrast(0.87) grayscale(1) sepia(1); flex: none; height: 505px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1fpn6p4 { -webkit-filter: brightness(0.68) contrast(0.87) grayscale(1) sepia(1); filter: brightness(0.68) contrast(0.87) grayscale(1) sepia(1); flex: none; height: 155px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-w84kff { -webkit-filter: brightness(0.48) contrast(0.98) sepia(1); filter: brightness(0.48) contrast(0.98) sepia(1); flex: none; height: 499px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1mfckik { -webkit-filter: brightness(0.48) contrast(0.98) sepia(1); filter: brightness(0.48) contrast(0.98) sepia(1); flex: none; height: 162px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1uxvou1 { -webkit-filter: brightness(0.48) contrast(0.98) sepia(1); filter: brightness(0.48) contrast(0.98) sepia(1); flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-14ngwvt { -webkit-filter: brightness(0.6) hue-rotate(0deg) sepia(0.6); filter: brightness(0.6) hue-rotate(0deg) sepia(0.6); flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-lc538o { -webkit-filter: brightness(0.6) hue-rotate(0deg) sepia(0.6); filter: brightness(0.6) hue-rotate(0deg) sepia(0.6); flex: none; height: 100px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-32kp4 { -webkit-filter: brightness(0.6) hue-rotate(0deg) sepia(0.6); filter: brightness(0.6) hue-rotate(0deg) sepia(0.6); flex: none; height: 55px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1hsr6lv { -webkit-filter: contrast(0.86) sepia(1); filter: contrast(0.86) sepia(1); flex: none; height: 456px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-ykmerv { -webkit-filter: contrast(0.86) sepia(1); filter: contrast(0.86) sepia(1); flex: none; height: 150px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-li9b3e, .framer-8Ei0C .framer-1dqb9tt { -webkit-filter: contrast(0.86) sepia(1); filter: contrast(0.86) sepia(1); flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-15iquqv { background-color: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, #0e0e0e); flex: 1 0 0px; height: 1px; position: relative; width: 1px; }\",\".framer-8Ei0C .framer-hckfjy { -webkit-filter: contrast(0.86) sepia(1); filter: contrast(0.86) sepia(1); flex: none; height: 412px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-gvp10k { -webkit-filter: contrast(0.86) sepia(1); filter: contrast(0.86) sepia(1); flex: none; height: 131px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1yyioo5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 90px 0px 90px 0px; position: relative; scroll-margin-top: 60px; width: 100%; }\",\".framer-8Ei0C .framer-1we7fir { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 4px 0px 4px 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1x1mxc8-container { flex: 1 0 0px; height: 446px; position: relative; width: 1px; }\",\".framer-8Ei0C .framer-j7e8nn { 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; scroll-margin-top: 140px; width: 100%; }\",\".framer-8Ei0C .framer-1rfme9t, .framer-8Ei0C .framer-1d8l4pp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1vdzb5s { align-content: center; align-items: center; 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-8Ei0C .framer-onxaio, .framer-8Ei0C .framer-h3jw1x { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8Ei0C .framer-146brnk { flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-8Ei0C .framer-ah10c1 { 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; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1awh53s, .framer-8Ei0C .framer-1qsjumk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 36px 0px 36px 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-4y2b93, .framer-8Ei0C .framer-16o70a4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8Ei0C .framer-cwlbxi, .framer-8Ei0C .framer-1ioqqki, .framer-8Ei0C .framer-1jwfq94, .framer-8Ei0C .framer-16ywlat, .framer-8Ei0C .framer-xqgxix, .framer-8Ei0C .framer-1dna2de, .framer-8Ei0C .framer-785gus { --border-bottom-width: 1px; --border-color: var(--token-68c05b50-ca7b-4173-82aa-ed42aea1a9b4, #343330); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-81ab93ff-d515-4aca-b63b-24f83b57a3ab, rgba(218, 197, 167, 0.05)); border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-10oeij6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-wuuue2, .framer-8Ei0C .framer-54qjrj, .framer-8Ei0C .framer-moukw4, .framer-8Ei0C .framer-6udm8p, .framer-8Ei0C .framer-6gmuzz, .framer-8Ei0C .framer-1hhmj3k, .framer-8Ei0C .framer-11ktrfl, .framer-8Ei0C .framer-1wyrtfs, .framer-8Ei0C .framer-32atmb { 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-8Ei0C .framer-wg0iq, .framer-8Ei0C .framer-18eca0x { --border-bottom-width: 1px; --border-color: var(--token-68c05b50-ca7b-4173-82aa-ed42aea1a9b4, #343330); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-81ab93ff-d515-4aca-b63b-24f83b57a3ab, rgba(218, 197, 167, 0.05)); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-1ky9h0n { 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-8Ei0C .framer-l7b83o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8Ei0C .framer-aj8a6z { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 52px 0px 52px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8Ei0C.framer-72rtr7, .framer-8Ei0C .framer-eru2d1, .framer-8Ei0C .framer-1ozfjfg, .framer-8Ei0C .framer-1ibkb8d, .framer-8Ei0C .framer-ox99uk, .framer-8Ei0C .framer-l4ia1g, .framer-8Ei0C .framer-8d6gq3, .framer-8Ei0C .framer-138wklq, .framer-8Ei0C .framer-sveow5, .framer-8Ei0C .framer-1mfzwz6, .framer-8Ei0C .framer-19ulk6v, .framer-8Ei0C .framer-10wba9e, .framer-8Ei0C .framer-j5xrb7, .framer-8Ei0C .framer-axsmvz, .framer-8Ei0C .framer-1xic7kn, .framer-8Ei0C .framer-1iu3imv, .framer-8Ei0C .framer-ghz7g0, .framer-8Ei0C .framer-jxxxo3, .framer-8Ei0C .framer-1jl0drx, .framer-8Ei0C .framer-14a7g75, .framer-8Ei0C .framer-1llc1c8, .framer-8Ei0C .framer-1vqi8y, .framer-8Ei0C .framer-1v5lsfo, .framer-8Ei0C .framer-76jmgs, .framer-8Ei0C .framer-hm77j, .framer-8Ei0C .framer-alnzh7, .framer-8Ei0C .framer-1lcy7bj, .framer-8Ei0C .framer-rh3y4y, .framer-8Ei0C .framer-1nvmjok, .framer-8Ei0C .framer-1pshoib, .framer-8Ei0C .framer-19tsa83, .framer-8Ei0C .framer-1u2plm7, .framer-8Ei0C .framer-q73tsu, .framer-8Ei0C .framer-cpgls4, .framer-8Ei0C .framer-12bt9md, .framer-8Ei0C .framer-1ygpzyj, .framer-8Ei0C .framer-oo09gw, .framer-8Ei0C .framer-1pkvrbp, .framer-8Ei0C .framer-1waxijv, .framer-8Ei0C .framer-lbdwsc, .framer-8Ei0C .framer-1j9l1jg, .framer-8Ei0C .framer-jfr3nd, .framer-8Ei0C .framer-116r88z, .framer-8Ei0C .framer-1fyj5yr, .framer-8Ei0C .framer-f3ppnf, .framer-8Ei0C .framer-13qxjv5, .framer-8Ei0C .framer-1qajzib, .framer-8Ei0C .framer-1b8qov0, .framer-8Ei0C .framer-1iol4f, .framer-8Ei0C .framer-1isragl, .framer-8Ei0C .framer-1dbmyjf, .framer-8Ei0C .framer-5zawpl, .framer-8Ei0C .framer-a9f9jm, .framer-8Ei0C .framer-nuj50o, .framer-8Ei0C .framer-n40y2h, .framer-8Ei0C .framer-1s4weox, .framer-8Ei0C .framer-1d9d4ky, .framer-8Ei0C .framer-e8cmjs, .framer-8Ei0C .framer-16rzqi9, .framer-8Ei0C .framer-17bdgvs, .framer-8Ei0C .framer-1nhc28b, .framer-8Ei0C .framer-dj4jsa, .framer-8Ei0C .framer-iwkq3u, .framer-8Ei0C .framer-xxwpdm, .framer-8Ei0C .framer-t19wcz, .framer-8Ei0C .framer-8ijnps, .framer-8Ei0C .framer-a6ohna, .framer-8Ei0C .framer-1yyioo5, .framer-8Ei0C .framer-1we7fir, .framer-8Ei0C .framer-j7e8nn, .framer-8Ei0C .framer-1rfme9t, .framer-8Ei0C .framer-1vdzb5s, .framer-8Ei0C .framer-ah10c1, .framer-8Ei0C .framer-1awh53s, .framer-8Ei0C .framer-4y2b93, .framer-8Ei0C .framer-cwlbxi, .framer-8Ei0C .framer-10oeij6, .framer-8Ei0C .framer-wuuue2, .framer-8Ei0C .framer-1ioqqki, .framer-8Ei0C .framer-54qjrj, .framer-8Ei0C .framer-1jwfq94, .framer-8Ei0C .framer-moukw4, .framer-8Ei0C .framer-wg0iq, .framer-8Ei0C .framer-6udm8p, .framer-8Ei0C .framer-16ywlat, .framer-8Ei0C .framer-6gmuzz, .framer-8Ei0C .framer-16o70a4, .framer-8Ei0C .framer-xqgxix, .framer-8Ei0C .framer-1hhmj3k, .framer-8Ei0C .framer-1dna2de, .framer-8Ei0C .framer-11ktrfl, .framer-8Ei0C .framer-785gus, .framer-8Ei0C .framer-1wyrtfs, .framer-8Ei0C .framer-18eca0x, .framer-8Ei0C .framer-32atmb, .framer-8Ei0C .framer-1ky9h0n, .framer-8Ei0C .framer-1d8l4pp, .framer-8Ei0C .framer-l7b83o, .framer-8Ei0C .framer-1qsjumk, .framer-8Ei0C .framer-aj8a6z { gap: 0px; } .framer-8Ei0C.framer-72rtr7 > *, .framer-8Ei0C .framer-1ozfjfg > *, .framer-8Ei0C .framer-jxxxo3 > *, .framer-8Ei0C .framer-1lcy7bj > *, .framer-8Ei0C .framer-1u2plm7 > *, .framer-8Ei0C .framer-1yyioo5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8Ei0C.framer-72rtr7 > :first-child, .framer-8Ei0C .framer-eru2d1 > :first-child, .framer-8Ei0C .framer-1ozfjfg > :first-child, .framer-8Ei0C .framer-1ibkb8d > :first-child, .framer-8Ei0C .framer-ox99uk > :first-child, .framer-8Ei0C .framer-l4ia1g > :first-child, .framer-8Ei0C .framer-8d6gq3 > :first-child, .framer-8Ei0C .framer-138wklq > :first-child, .framer-8Ei0C .framer-sveow5 > :first-child, .framer-8Ei0C .framer-1mfzwz6 > :first-child, .framer-8Ei0C .framer-19ulk6v > :first-child, .framer-8Ei0C .framer-10wba9e > :first-child, .framer-8Ei0C .framer-j5xrb7 > :first-child, .framer-8Ei0C .framer-axsmvz > :first-child, .framer-8Ei0C .framer-1xic7kn > :first-child, .framer-8Ei0C .framer-ghz7g0 > :first-child, .framer-8Ei0C .framer-jxxxo3 > :first-child, .framer-8Ei0C .framer-1jl0drx > :first-child, .framer-8Ei0C .framer-14a7g75 > :first-child, .framer-8Ei0C .framer-1vqi8y > :first-child, .framer-8Ei0C .framer-1v5lsfo > :first-child, .framer-8Ei0C .framer-hm77j > :first-child, .framer-8Ei0C .framer-alnzh7 > :first-child, .framer-8Ei0C .framer-1lcy7bj > :first-child, .framer-8Ei0C .framer-rh3y4y > :first-child, .framer-8Ei0C .framer-1nvmjok > :first-child, .framer-8Ei0C .framer-19tsa83 > :first-child, .framer-8Ei0C .framer-1u2plm7 > :first-child, .framer-8Ei0C .framer-cpgls4 > :first-child, .framer-8Ei0C .framer-12bt9md > :first-child, .framer-8Ei0C .framer-1ygpzyj > :first-child, .framer-8Ei0C .framer-oo09gw > :first-child, .framer-8Ei0C .framer-1pkvrbp > :first-child, .framer-8Ei0C .framer-1waxijv > :first-child, .framer-8Ei0C .framer-1j9l1jg > :first-child, .framer-8Ei0C .framer-jfr3nd > :first-child, .framer-8Ei0C .framer-116r88z > :first-child, .framer-8Ei0C .framer-1fyj5yr > :first-child, .framer-8Ei0C .framer-f3ppnf > :first-child, .framer-8Ei0C .framer-13qxjv5 > :first-child, .framer-8Ei0C .framer-1b8qov0 > :first-child, .framer-8Ei0C .framer-1iol4f > :first-child, .framer-8Ei0C .framer-1isragl > :first-child, .framer-8Ei0C .framer-1dbmyjf > :first-child, .framer-8Ei0C .framer-5zawpl > :first-child, .framer-8Ei0C .framer-a9f9jm > :first-child, .framer-8Ei0C .framer-n40y2h > :first-child, .framer-8Ei0C .framer-1s4weox > :first-child, .framer-8Ei0C .framer-1d9d4ky > :first-child, .framer-8Ei0C .framer-e8cmjs > :first-child, .framer-8Ei0C .framer-16rzqi9 > :first-child, .framer-8Ei0C .framer-17bdgvs > :first-child, .framer-8Ei0C .framer-dj4jsa > :first-child, .framer-8Ei0C .framer-iwkq3u > :first-child, .framer-8Ei0C .framer-xxwpdm > :first-child, .framer-8Ei0C .framer-t19wcz > :first-child, .framer-8Ei0C .framer-8ijnps > :first-child, .framer-8Ei0C .framer-a6ohna > :first-child, .framer-8Ei0C .framer-1yyioo5 > :first-child, .framer-8Ei0C .framer-j7e8nn > :first-child, .framer-8Ei0C .framer-1rfme9t > :first-child, .framer-8Ei0C .framer-1vdzb5s > :first-child, .framer-8Ei0C .framer-ah10c1 > :first-child, .framer-8Ei0C .framer-4y2b93 > :first-child, .framer-8Ei0C .framer-cwlbxi > :first-child, .framer-8Ei0C .framer-10oeij6 > :first-child, .framer-8Ei0C .framer-wuuue2 > :first-child, .framer-8Ei0C .framer-1ioqqki > :first-child, .framer-8Ei0C .framer-54qjrj > :first-child, .framer-8Ei0C .framer-1jwfq94 > :first-child, .framer-8Ei0C .framer-moukw4 > :first-child, .framer-8Ei0C .framer-wg0iq > :first-child, .framer-8Ei0C .framer-6udm8p > :first-child, .framer-8Ei0C .framer-16ywlat > :first-child, .framer-8Ei0C .framer-6gmuzz > :first-child, .framer-8Ei0C .framer-16o70a4 > :first-child, .framer-8Ei0C .framer-xqgxix > :first-child, .framer-8Ei0C .framer-1hhmj3k > :first-child, .framer-8Ei0C .framer-1dna2de > :first-child, .framer-8Ei0C .framer-11ktrfl > :first-child, .framer-8Ei0C .framer-785gus > :first-child, .framer-8Ei0C .framer-1wyrtfs > :first-child, .framer-8Ei0C .framer-18eca0x > :first-child, .framer-8Ei0C .framer-32atmb > :first-child, .framer-8Ei0C .framer-1ky9h0n > :first-child, .framer-8Ei0C .framer-1d8l4pp > :first-child, .framer-8Ei0C .framer-l7b83o > :first-child, .framer-8Ei0C .framer-aj8a6z > :first-child { margin-top: 0px; } .framer-8Ei0C.framer-72rtr7 > :last-child, .framer-8Ei0C .framer-eru2d1 > :last-child, .framer-8Ei0C .framer-1ozfjfg > :last-child, .framer-8Ei0C .framer-1ibkb8d > :last-child, .framer-8Ei0C .framer-ox99uk > :last-child, .framer-8Ei0C .framer-l4ia1g > :last-child, .framer-8Ei0C .framer-8d6gq3 > :last-child, .framer-8Ei0C .framer-138wklq > :last-child, .framer-8Ei0C .framer-sveow5 > :last-child, .framer-8Ei0C .framer-1mfzwz6 > :last-child, .framer-8Ei0C .framer-19ulk6v > :last-child, .framer-8Ei0C .framer-10wba9e > :last-child, .framer-8Ei0C .framer-j5xrb7 > :last-child, .framer-8Ei0C .framer-axsmvz > :last-child, .framer-8Ei0C .framer-1xic7kn > :last-child, .framer-8Ei0C .framer-ghz7g0 > :last-child, .framer-8Ei0C .framer-jxxxo3 > :last-child, .framer-8Ei0C .framer-1jl0drx > :last-child, .framer-8Ei0C .framer-14a7g75 > :last-child, .framer-8Ei0C .framer-1vqi8y > :last-child, .framer-8Ei0C .framer-1v5lsfo > :last-child, .framer-8Ei0C .framer-hm77j > :last-child, .framer-8Ei0C .framer-alnzh7 > :last-child, .framer-8Ei0C .framer-1lcy7bj > :last-child, .framer-8Ei0C .framer-rh3y4y > :last-child, .framer-8Ei0C .framer-1nvmjok > :last-child, .framer-8Ei0C .framer-19tsa83 > :last-child, .framer-8Ei0C .framer-1u2plm7 > :last-child, .framer-8Ei0C .framer-cpgls4 > :last-child, .framer-8Ei0C .framer-12bt9md > :last-child, .framer-8Ei0C .framer-1ygpzyj > :last-child, .framer-8Ei0C .framer-oo09gw > :last-child, .framer-8Ei0C .framer-1pkvrbp > :last-child, .framer-8Ei0C .framer-1waxijv > :last-child, .framer-8Ei0C .framer-1j9l1jg > :last-child, .framer-8Ei0C .framer-jfr3nd > :last-child, .framer-8Ei0C .framer-116r88z > :last-child, .framer-8Ei0C .framer-1fyj5yr > :last-child, .framer-8Ei0C .framer-f3ppnf > :last-child, .framer-8Ei0C .framer-13qxjv5 > :last-child, .framer-8Ei0C .framer-1b8qov0 > :last-child, .framer-8Ei0C .framer-1iol4f > :last-child, .framer-8Ei0C .framer-1isragl > :last-child, .framer-8Ei0C .framer-1dbmyjf > :last-child, .framer-8Ei0C .framer-5zawpl > :last-child, .framer-8Ei0C .framer-a9f9jm > :last-child, .framer-8Ei0C .framer-n40y2h > :last-child, .framer-8Ei0C .framer-1s4weox > :last-child, .framer-8Ei0C .framer-1d9d4ky > :last-child, .framer-8Ei0C .framer-e8cmjs > :last-child, .framer-8Ei0C .framer-16rzqi9 > :last-child, .framer-8Ei0C .framer-17bdgvs > :last-child, .framer-8Ei0C .framer-dj4jsa > :last-child, .framer-8Ei0C .framer-iwkq3u > :last-child, .framer-8Ei0C .framer-xxwpdm > :last-child, .framer-8Ei0C .framer-t19wcz > :last-child, .framer-8Ei0C .framer-8ijnps > :last-child, .framer-8Ei0C .framer-a6ohna > :last-child, .framer-8Ei0C .framer-1yyioo5 > :last-child, .framer-8Ei0C .framer-j7e8nn > :last-child, .framer-8Ei0C .framer-1rfme9t > :last-child, .framer-8Ei0C .framer-1vdzb5s > :last-child, .framer-8Ei0C .framer-ah10c1 > :last-child, .framer-8Ei0C .framer-4y2b93 > :last-child, .framer-8Ei0C .framer-cwlbxi > :last-child, .framer-8Ei0C .framer-10oeij6 > :last-child, .framer-8Ei0C .framer-wuuue2 > :last-child, .framer-8Ei0C .framer-1ioqqki > :last-child, .framer-8Ei0C .framer-54qjrj > :last-child, .framer-8Ei0C .framer-1jwfq94 > :last-child, .framer-8Ei0C .framer-moukw4 > :last-child, .framer-8Ei0C .framer-wg0iq > :last-child, .framer-8Ei0C .framer-6udm8p > :last-child, .framer-8Ei0C .framer-16ywlat > :last-child, .framer-8Ei0C .framer-6gmuzz > :last-child, .framer-8Ei0C .framer-16o70a4 > :last-child, .framer-8Ei0C .framer-xqgxix > :last-child, .framer-8Ei0C .framer-1hhmj3k > :last-child, .framer-8Ei0C .framer-1dna2de > :last-child, .framer-8Ei0C .framer-11ktrfl > :last-child, .framer-8Ei0C .framer-785gus > :last-child, .framer-8Ei0C .framer-1wyrtfs > :last-child, .framer-8Ei0C .framer-18eca0x > :last-child, .framer-8Ei0C .framer-32atmb > :last-child, .framer-8Ei0C .framer-1ky9h0n > :last-child, .framer-8Ei0C .framer-1d8l4pp > :last-child, .framer-8Ei0C .framer-l7b83o > :last-child, .framer-8Ei0C .framer-aj8a6z > :last-child { margin-bottom: 0px; } .framer-8Ei0C .framer-eru2d1 > *, .framer-8Ei0C .framer-ox99uk > *, .framer-8Ei0C .framer-19ulk6v > *, .framer-8Ei0C .framer-axsmvz > *, .framer-8Ei0C .framer-1vqi8y > *, .framer-8Ei0C .framer-alnzh7 > *, .framer-8Ei0C .framer-cpgls4 > *, .framer-8Ei0C .framer-1ygpzyj > *, .framer-8Ei0C .framer-1j9l1jg > *, .framer-8Ei0C .framer-13qxjv5 > *, .framer-8Ei0C .framer-1b8qov0 > *, .framer-8Ei0C .framer-1isragl > *, .framer-8Ei0C .framer-n40y2h > *, .framer-8Ei0C .framer-17bdgvs > *, .framer-8Ei0C .framer-dj4jsa > *, .framer-8Ei0C .framer-xxwpdm > *, .framer-8Ei0C .framer-ah10c1 > *, .framer-8Ei0C .framer-l7b83o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-8Ei0C .framer-1ibkb8d > *, .framer-8Ei0C .framer-sveow5 > *, .framer-8Ei0C .framer-j5xrb7 > *, .framer-8Ei0C .framer-hm77j > *, .framer-8Ei0C .framer-1nvmjok > *, .framer-8Ei0C .framer-19tsa83 > *, .framer-8Ei0C .framer-12bt9md > *, .framer-8Ei0C .framer-1pkvrbp > *, .framer-8Ei0C .framer-116r88z > *, .framer-8Ei0C .framer-f3ppnf > *, .framer-8Ei0C .framer-1iol4f > *, .framer-8Ei0C .framer-5zawpl > *, .framer-8Ei0C .framer-1d9d4ky > *, .framer-8Ei0C .framer-16rzqi9 > *, .framer-8Ei0C .framer-iwkq3u > *, .framer-8Ei0C .framer-8ijnps > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-8Ei0C .framer-l4ia1g > *, .framer-8Ei0C .framer-1mfzwz6 > *, .framer-8Ei0C .framer-1xic7kn > *, .framer-8Ei0C .framer-j7e8nn > *, .framer-8Ei0C .framer-1ky9h0n > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-8Ei0C .framer-8d6gq3 > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-8Ei0C .framer-138wklq > *, .framer-8Ei0C .framer-1rfme9t > *, .framer-8Ei0C .framer-1d8l4pp > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-8Ei0C .framer-10wba9e > * { margin: 0px; margin-bottom: calc(59px / 2); margin-top: calc(59px / 2); } .framer-8Ei0C .framer-1iu3imv > *, .framer-8Ei0C .framer-1we7fir > *, .framer-8Ei0C .framer-1awh53s > *, .framer-8Ei0C .framer-1qsjumk > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-8Ei0C .framer-1iu3imv > :first-child, .framer-8Ei0C .framer-1llc1c8 > :first-child, .framer-8Ei0C .framer-76jmgs > :first-child, .framer-8Ei0C .framer-1pshoib > :first-child, .framer-8Ei0C .framer-q73tsu > :first-child, .framer-8Ei0C .framer-lbdwsc > :first-child, .framer-8Ei0C .framer-1qajzib > :first-child, .framer-8Ei0C .framer-nuj50o > :first-child, .framer-8Ei0C .framer-1nhc28b > :first-child, .framer-8Ei0C .framer-1we7fir > :first-child, .framer-8Ei0C .framer-1awh53s > :first-child, .framer-8Ei0C .framer-1qsjumk > :first-child { margin-left: 0px; } .framer-8Ei0C .framer-1iu3imv > :last-child, .framer-8Ei0C .framer-1llc1c8 > :last-child, .framer-8Ei0C .framer-76jmgs > :last-child, .framer-8Ei0C .framer-1pshoib > :last-child, .framer-8Ei0C .framer-q73tsu > :last-child, .framer-8Ei0C .framer-lbdwsc > :last-child, .framer-8Ei0C .framer-1qajzib > :last-child, .framer-8Ei0C .framer-nuj50o > :last-child, .framer-8Ei0C .framer-1nhc28b > :last-child, .framer-8Ei0C .framer-1we7fir > :last-child, .framer-8Ei0C .framer-1awh53s > :last-child, .framer-8Ei0C .framer-1qsjumk > :last-child { margin-right: 0px; } .framer-8Ei0C .framer-ghz7g0 > *, .framer-8Ei0C .framer-14a7g75 > *, .framer-8Ei0C .framer-1v5lsfo > *, .framer-8Ei0C .framer-rh3y4y > *, .framer-8Ei0C .framer-oo09gw > *, .framer-8Ei0C .framer-jfr3nd > *, .framer-8Ei0C .framer-1dbmyjf > *, .framer-8Ei0C .framer-1s4weox > *, .framer-8Ei0C .framer-t19wcz > *, .framer-8Ei0C .framer-4y2b93 > *, .framer-8Ei0C .framer-cwlbxi > *, .framer-8Ei0C .framer-10oeij6 > *, .framer-8Ei0C .framer-1ioqqki > *, .framer-8Ei0C .framer-1jwfq94 > *, .framer-8Ei0C .framer-wg0iq > *, .framer-8Ei0C .framer-16ywlat > *, .framer-8Ei0C .framer-16o70a4 > *, .framer-8Ei0C .framer-xqgxix > *, .framer-8Ei0C .framer-1dna2de > *, .framer-8Ei0C .framer-785gus > *, .framer-8Ei0C .framer-18eca0x > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-8Ei0C .framer-1jl0drx > *, .framer-8Ei0C .framer-1waxijv > *, .framer-8Ei0C .framer-1fyj5yr > *, .framer-8Ei0C .framer-a9f9jm > *, .framer-8Ei0C .framer-e8cmjs > *, .framer-8Ei0C .framer-a6ohna > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-8Ei0C .framer-1llc1c8 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-8Ei0C .framer-76jmgs > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-8Ei0C .framer-1pshoib > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-8Ei0C .framer-q73tsu > *, .framer-8Ei0C .framer-lbdwsc > *, .framer-8Ei0C .framer-1qajzib > *, .framer-8Ei0C .framer-nuj50o > *, .framer-8Ei0C .framer-1nhc28b > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-8Ei0C .framer-1vdzb5s > *, .framer-8Ei0C .framer-wuuue2 > *, .framer-8Ei0C .framer-54qjrj > *, .framer-8Ei0C .framer-moukw4 > *, .framer-8Ei0C .framer-6udm8p > *, .framer-8Ei0C .framer-6gmuzz > *, .framer-8Ei0C .framer-1hhmj3k > *, .framer-8Ei0C .framer-11ktrfl > *, .framer-8Ei0C .framer-1wyrtfs > *, .framer-8Ei0C .framer-32atmb > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-8Ei0C .framer-aj8a6z > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css,'.framer-8Ei0C[data-border=\"true\"]::after, .framer-8Ei0C [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: 1279px) { .framer-8Ei0C.framer-72rtr7 { width: 810px; } .framer-8Ei0C .framer-eru2d1 { padding: 24px 32px 0px 32px; } .framer-8Ei0C .framer-ox99uk, .framer-8Ei0C .framer-19ulk6v, .framer-8Ei0C .framer-axsmvz, .framer-8Ei0C .framer-1vqi8y, .framer-8Ei0C .framer-alnzh7, .framer-8Ei0C .framer-1rfme9t, .framer-8Ei0C .framer-1d8l4pp { padding: 0px 40px 0px 40px; } .framer-8Ei0C .framer-8d6gq3 { gap: 50px; } .framer-8Ei0C .framer-1x05ew8 { height: 488px; } .framer-8Ei0C .framer-1mfzwz6 { gap: 48px; padding: 80px 0px 0px 0px; } .framer-8Ei0C .framer-10wba9e { align-content: flex-start; align-items: flex-start; gap: 32px; } .framer-8Ei0C .framer-j5xrb7 { padding: 64px 0px 0px 0px; } .framer-8Ei0C .framer-1iu3imv { flex-direction: column; gap: 16px; } .framer-8Ei0C .framer-ghz7g0 { flex: none; padding: 40px; width: 100%; } .framer-8Ei0C .framer-14a7g75 { align-self: unset; flex: none; height: 357px; width: 100%; } .framer-8Ei0C .framer-1llc1c8, .framer-8Ei0C .framer-hm77j { padding: 96px 0px 0px 0px; } .framer-8Ei0C .framer-1dltpoa { gap: 16px; } .framer-8Ei0C .framer-rh3y4y, .framer-8Ei0C .framer-q73tsu, .framer-8Ei0C .framer-lbdwsc, .framer-8Ei0C .framer-1qajzib, .framer-8Ei0C .framer-nuj50o, .framer-8Ei0C .framer-1nhc28b { gap: 48px; } .framer-8Ei0C .framer-1pshoib { justify-content: flex-start; width: 100%; } .framer-8Ei0C .framer-19tsa83 { padding: 0px 30px 0px 30px; } .framer-8Ei0C .framer-1ueswid, .framer-8Ei0C .framer-1uyg29k { height: 30px; } .framer-8Ei0C .framer-fx4kko { flex: none; height: 48px; } .framer-8Ei0C .framer-1ygpzyj { padding: 0px 0px 24px 0px; } .framer-8Ei0C .framer-oo09gw, .framer-8Ei0C .framer-jfr3nd, .framer-8Ei0C .framer-1dbmyjf, .framer-8Ei0C .framer-1s4weox, .framer-8Ei0C .framer-t19wcz { padding: 40px; } .framer-8Ei0C .framer-1j9l1jg { order: 1; padding: 24px 0px 24px 0px; } .framer-8Ei0C .framer-f3ppnf, .framer-8Ei0C .framer-16rzqi9 { order: 0; } .framer-8Ei0C .framer-68wba0, .framer-8Ei0C .framer-1m5w2hc, .framer-8Ei0C .framer-1ehrrxg, .framer-8Ei0C .framer-v451aa { flex: none; height: 64px; } .framer-8Ei0C .framer-1isragl, .framer-8Ei0C .framer-xxwpdm { padding: 24px 0px 24px 0px; } .framer-8Ei0C .framer-n40y2h { order: 2; padding: 24px 0px 24px 0px; } .framer-8Ei0C .framer-1yyioo5 { padding: 89px 0px 0px 0px; } .framer-8Ei0C .framer-1we7fir { gap: 0px; } .framer-8Ei0C .framer-1x1mxc8-container { height: 1049px; } .framer-8Ei0C .framer-1awh53s, .framer-8Ei0C .framer-4y2b93, .framer-8Ei0C .framer-16o70a4, .framer-8Ei0C .framer-1qsjumk { gap: 24px; } .framer-8Ei0C .framer-cwlbxi, .framer-8Ei0C .framer-1ioqqki, .framer-8Ei0C .framer-1jwfq94, .framer-8Ei0C .framer-wg0iq, .framer-8Ei0C .framer-16ywlat, .framer-8Ei0C .framer-xqgxix, .framer-8Ei0C .framer-1dna2de, .framer-8Ei0C .framer-785gus, .framer-8Ei0C .framer-18eca0x { padding: 32px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8Ei0C .framer-8d6gq3, .framer-8Ei0C .framer-1mfzwz6, .framer-8Ei0C .framer-10wba9e, .framer-8Ei0C .framer-1iu3imv, .framer-8Ei0C .framer-1dltpoa, .framer-8Ei0C .framer-rh3y4y, .framer-8Ei0C .framer-q73tsu, .framer-8Ei0C .framer-lbdwsc, .framer-8Ei0C .framer-1qajzib, .framer-8Ei0C .framer-nuj50o, .framer-8Ei0C .framer-1nhc28b, .framer-8Ei0C .framer-1we7fir, .framer-8Ei0C .framer-1awh53s, .framer-8Ei0C .framer-4y2b93, .framer-8Ei0C .framer-16o70a4, .framer-8Ei0C .framer-1qsjumk { gap: 0px; } .framer-8Ei0C .framer-8d6gq3 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-8Ei0C .framer-8d6gq3 > :first-child, .framer-8Ei0C .framer-1mfzwz6 > :first-child, .framer-8Ei0C .framer-10wba9e > :first-child, .framer-8Ei0C .framer-1iu3imv > :first-child, .framer-8Ei0C .framer-rh3y4y > :first-child, .framer-8Ei0C .framer-4y2b93 > :first-child, .framer-8Ei0C .framer-16o70a4 > :first-child { margin-top: 0px; } .framer-8Ei0C .framer-8d6gq3 > :last-child, .framer-8Ei0C .framer-1mfzwz6 > :last-child, .framer-8Ei0C .framer-10wba9e > :last-child, .framer-8Ei0C .framer-1iu3imv > :last-child, .framer-8Ei0C .framer-rh3y4y > :last-child, .framer-8Ei0C .framer-4y2b93 > :last-child, .framer-8Ei0C .framer-16o70a4 > :last-child { margin-bottom: 0px; } .framer-8Ei0C .framer-1mfzwz6 > *, .framer-8Ei0C .framer-rh3y4y > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-8Ei0C .framer-10wba9e > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-8Ei0C .framer-1iu3imv > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-8Ei0C .framer-1dltpoa > *, .framer-8Ei0C .framer-1dltpoa > :first-child, .framer-8Ei0C .framer-1dltpoa > :last-child { margin: 0px; } .framer-8Ei0C .framer-q73tsu > *, .framer-8Ei0C .framer-lbdwsc > *, .framer-8Ei0C .framer-1qajzib > *, .framer-8Ei0C .framer-nuj50o > *, .framer-8Ei0C .framer-1nhc28b > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-8Ei0C .framer-q73tsu > :first-child, .framer-8Ei0C .framer-lbdwsc > :first-child, .framer-8Ei0C .framer-1qajzib > :first-child, .framer-8Ei0C .framer-nuj50o > :first-child, .framer-8Ei0C .framer-1nhc28b > :first-child, .framer-8Ei0C .framer-1we7fir > :first-child, .framer-8Ei0C .framer-1awh53s > :first-child, .framer-8Ei0C .framer-1qsjumk > :first-child { margin-left: 0px; } .framer-8Ei0C .framer-q73tsu > :last-child, .framer-8Ei0C .framer-lbdwsc > :last-child, .framer-8Ei0C .framer-1qajzib > :last-child, .framer-8Ei0C .framer-nuj50o > :last-child, .framer-8Ei0C .framer-1nhc28b > :last-child, .framer-8Ei0C .framer-1we7fir > :last-child, .framer-8Ei0C .framer-1awh53s > :last-child, .framer-8Ei0C .framer-1qsjumk > :last-child { margin-right: 0px; } .framer-8Ei0C .framer-1we7fir > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-8Ei0C .framer-1awh53s > *, .framer-8Ei0C .framer-1qsjumk > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-8Ei0C .framer-4y2b93 > *, .framer-8Ei0C .framer-16o70a4 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (max-width: 809px) { .framer-8Ei0C.framer-72rtr7 { width: 390px; } .framer-8Ei0C .framer-eru2d1 { padding: 16px 24px 0px 24px; } .framer-8Ei0C .framer-ex1qoc-container { width: 100%; } .framer-8Ei0C .framer-ox99uk { padding: 0px; } .framer-8Ei0C .framer-l4ia1g { gap: 100px; } .framer-8Ei0C .framer-8d6gq3 { gap: 26px; height: 652px; padding: 0px; } .framer-8Ei0C .framer-1x05ew8 { --border-color: #f7dfba; flex: 1 0 0px; height: 1px; order: 0; } .framer-8Ei0C .framer-138wklq { order: 1; } .framer-8Ei0C .framer-1mfzwz6 { gap: 48px; padding: 48px 0px 0px 0px; } .framer-8Ei0C .framer-19ulk6v, .framer-8Ei0C .framer-axsmvz, .framer-8Ei0C .framer-1vqi8y, .framer-8Ei0C .framer-alnzh7, .framer-8Ei0C .framer-1rfme9t { padding: 0px 24px 0px 24px; } .framer-8Ei0C .framer-10wba9e { align-content: flex-start; align-items: flex-start; gap: 32px; } .framer-8Ei0C .framer-j5xrb7 { padding: 48px 0px 0px 0px; } .framer-8Ei0C .framer-1iu3imv { flex-direction: column; gap: 16px; height: 667px; } .framer-8Ei0C .framer-ghz7g0 { flex: none; padding: 32px; width: 100%; } .framer-8Ei0C .framer-14a7g75 { align-self: unset; height: 1px; width: 100%; } .framer-8Ei0C .framer-1llc1c8 { padding: 64px 0px 0px 0px; } .framer-8Ei0C .framer-1v5lsfo { gap: 23px; height: 1170px; order: 0; } .framer-8Ei0C .framer-ot3e0t { flex-wrap: wrap; gap: 16px; height: 2%; justify-content: flex-start; padding: 0px; width: 101%; } .framer-8Ei0C .framer-1dltpoa { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; justify-content: flex-start; } .framer-8Ei0C .framer-76jmgs { align-self: unset; height: min-content; } .framer-8Ei0C .framer-hm77j { padding: 200px 0px 0px 0px; } .framer-8Ei0C .framer-rh3y4y { gap: 48px; } .framer-8Ei0C .framer-1pshoib { justify-content: flex-start; width: 100%; } .framer-8Ei0C .framer-19tsa83 { padding: 0px 30px 0px 30px; } .framer-8Ei0C .framer-1ueswid, .framer-8Ei0C .framer-1uyg29k { height: 30px; } .framer-8Ei0C .framer-q73tsu, .framer-8Ei0C .framer-lbdwsc, .framer-8Ei0C .framer-1qajzib, .framer-8Ei0C .framer-nuj50o, .framer-8Ei0C .framer-1nhc28b { gap: 24px; } .framer-8Ei0C .framer-fx4kko { flex: none; height: 16px; } .framer-8Ei0C .framer-1ygpzyj { padding: 0px 0px 24px 0px; } .framer-8Ei0C .framer-oo09gw, .framer-8Ei0C .framer-jfr3nd, .framer-8Ei0C .framer-1dbmyjf, .framer-8Ei0C .framer-1s4weox, .framer-8Ei0C .framer-t19wcz, .framer-8Ei0C .framer-cwlbxi, .framer-8Ei0C .framer-1ioqqki, .framer-8Ei0C .framer-1jwfq94, .framer-8Ei0C .framer-wg0iq, .framer-8Ei0C .framer-16ywlat, .framer-8Ei0C .framer-xqgxix, .framer-8Ei0C .framer-1dna2de, .framer-8Ei0C .framer-785gus, .framer-8Ei0C .framer-18eca0x { padding: 32px; } .framer-8Ei0C .framer-1pkvrbp, .framer-8Ei0C .framer-116r88z, .framer-8Ei0C .framer-f3ppnf, .framer-8Ei0C .framer-5zawpl, .framer-8Ei0C .framer-1d9d4ky, .framer-8Ei0C .framer-16rzqi9, .framer-8Ei0C .framer-8ijnps, .framer-8Ei0C .framer-u4f0u7-container { order: 0; } .framer-8Ei0C .framer-1fpn6p4, .framer-8Ei0C .framer-1mfckik, .framer-8Ei0C .framer-32kp4, .framer-8Ei0C .framer-ykmerv, .framer-8Ei0C .framer-gvp10k { order: 2; } .framer-8Ei0C .framer-1j9l1jg { order: 1; padding: 24px 0px 24px 0px; } .framer-8Ei0C .framer-68wba0, .framer-8Ei0C .framer-1m5w2hc, .framer-8Ei0C .framer-1ehrrxg, .framer-8Ei0C .framer-v451aa { flex: none; height: 32px; } .framer-8Ei0C .framer-1isragl, .framer-8Ei0C .framer-xxwpdm { padding: 24px 0px 24px 0px; } .framer-8Ei0C .framer-n40y2h { order: 2; padding: 24px 0px 24px 0px; } .framer-8Ei0C .framer-1yyioo5 { padding: 61px 0px 61px 0px; } .framer-8Ei0C .framer-1we7fir { flex-direction: column; gap: 16px; padding: 0px; } .framer-8Ei0C .framer-1x1mxc8-container { flex: none; height: 713px; width: 540px; } .framer-8Ei0C .framer-1awh53s { flex-direction: column; gap: 16px; } .framer-8Ei0C .framer-4y2b93, .framer-8Ei0C .framer-16o70a4 { flex: none; gap: 16px; width: 100%; } .framer-8Ei0C .framer-1d8l4pp { padding: 27px 24px 27px 24px; } .framer-8Ei0C .framer-l7b83o { gap: 53px; } .framer-8Ei0C .framer-1qsjumk { flex-direction: column; gap: 33px; padding: 0px; } .framer-8Ei0C .framer-aj8a6z { flex: none; flex-wrap: wrap; gap: 0px; padding: 0px; width: 100%; z-index: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8Ei0C .framer-l4ia1g, .framer-8Ei0C .framer-8d6gq3, .framer-8Ei0C .framer-1mfzwz6, .framer-8Ei0C .framer-10wba9e, .framer-8Ei0C .framer-1iu3imv, .framer-8Ei0C .framer-1v5lsfo, .framer-8Ei0C .framer-ot3e0t, .framer-8Ei0C .framer-1dltpoa, .framer-8Ei0C .framer-rh3y4y, .framer-8Ei0C .framer-q73tsu, .framer-8Ei0C .framer-lbdwsc, .framer-8Ei0C .framer-1qajzib, .framer-8Ei0C .framer-nuj50o, .framer-8Ei0C .framer-1nhc28b, .framer-8Ei0C .framer-1we7fir, .framer-8Ei0C .framer-1awh53s, .framer-8Ei0C .framer-4y2b93, .framer-8Ei0C .framer-16o70a4, .framer-8Ei0C .framer-l7b83o, .framer-8Ei0C .framer-1qsjumk, .framer-8Ei0C .framer-aj8a6z { gap: 0px; } .framer-8Ei0C .framer-l4ia1g > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-8Ei0C .framer-l4ia1g > :first-child, .framer-8Ei0C .framer-8d6gq3 > :first-child, .framer-8Ei0C .framer-1mfzwz6 > :first-child, .framer-8Ei0C .framer-10wba9e > :first-child, .framer-8Ei0C .framer-1iu3imv > :first-child, .framer-8Ei0C .framer-1v5lsfo > :first-child, .framer-8Ei0C .framer-ot3e0t > :first-child, .framer-8Ei0C .framer-1dltpoa > :first-child, .framer-8Ei0C .framer-rh3y4y > :first-child, .framer-8Ei0C .framer-1we7fir > :first-child, .framer-8Ei0C .framer-1awh53s > :first-child, .framer-8Ei0C .framer-4y2b93 > :first-child, .framer-8Ei0C .framer-16o70a4 > :first-child, .framer-8Ei0C .framer-l7b83o > :first-child, .framer-8Ei0C .framer-1qsjumk > :first-child, .framer-8Ei0C .framer-aj8a6z > :first-child { margin-top: 0px; } .framer-8Ei0C .framer-l4ia1g > :last-child, .framer-8Ei0C .framer-8d6gq3 > :last-child, .framer-8Ei0C .framer-1mfzwz6 > :last-child, .framer-8Ei0C .framer-10wba9e > :last-child, .framer-8Ei0C .framer-1iu3imv > :last-child, .framer-8Ei0C .framer-1v5lsfo > :last-child, .framer-8Ei0C .framer-ot3e0t > :last-child, .framer-8Ei0C .framer-1dltpoa > :last-child, .framer-8Ei0C .framer-rh3y4y > :last-child, .framer-8Ei0C .framer-1we7fir > :last-child, .framer-8Ei0C .framer-1awh53s > :last-child, .framer-8Ei0C .framer-4y2b93 > :last-child, .framer-8Ei0C .framer-16o70a4 > :last-child, .framer-8Ei0C .framer-l7b83o > :last-child, .framer-8Ei0C .framer-1qsjumk > :last-child, .framer-8Ei0C .framer-aj8a6z > :last-child { margin-bottom: 0px; } .framer-8Ei0C .framer-8d6gq3 > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-8Ei0C .framer-1mfzwz6 > *, .framer-8Ei0C .framer-rh3y4y > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-8Ei0C .framer-10wba9e > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-8Ei0C .framer-1iu3imv > *, .framer-8Ei0C .framer-ot3e0t > *, .framer-8Ei0C .framer-1dltpoa > *, .framer-8Ei0C .framer-1we7fir > *, .framer-8Ei0C .framer-1awh53s > *, .framer-8Ei0C .framer-4y2b93 > *, .framer-8Ei0C .framer-16o70a4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-8Ei0C .framer-1v5lsfo > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-8Ei0C .framer-q73tsu > *, .framer-8Ei0C .framer-lbdwsc > *, .framer-8Ei0C .framer-1qajzib > *, .framer-8Ei0C .framer-nuj50o > *, .framer-8Ei0C .framer-1nhc28b > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-8Ei0C .framer-q73tsu > :first-child, .framer-8Ei0C .framer-lbdwsc > :first-child, .framer-8Ei0C .framer-1qajzib > :first-child, .framer-8Ei0C .framer-nuj50o > :first-child, .framer-8Ei0C .framer-1nhc28b > :first-child { margin-left: 0px; } .framer-8Ei0C .framer-q73tsu > :last-child, .framer-8Ei0C .framer-lbdwsc > :last-child, .framer-8Ei0C .framer-1qajzib > :last-child, .framer-8Ei0C .framer-nuj50o > :last-child, .framer-8Ei0C .framer-1nhc28b > :last-child { margin-right: 0px; } .framer-8Ei0C .framer-l7b83o > * { margin: 0px; margin-bottom: calc(53px / 2); margin-top: calc(53px / 2); } .framer-8Ei0C .framer-1qsjumk > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-8Ei0C .framer-aj8a6z > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10753\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QsOjzMEOj\":{\"layout\":[\"fixed\",\"auto\"]},\"JtN8IEEEW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"YvYOJQQ5R\":{\"pattern\":\":YvYOJQQ5R\",\"name\":\"header\"},\"x2KyRcGeW\":{\"pattern\":\":x2KyRcGeW\",\"name\":\"main\"},\"n33m4Q1jE\":{\"pattern\":\":n33m4Q1jE\",\"name\":\"hero\"},\"A3s4V9738\":{\"pattern\":\":A3s4V9738\",\"name\":\"home\"},\"k8O1h1wNd\":{\"pattern\":\":k8O1h1wNd\",\"name\":\"\"},\"xZlaBSqYi\":{\"pattern\":\":xZlaBSqYi\",\"name\":\"about\"},\"eoY8S6JX3\":{\"pattern\":\":eoY8S6JX3\",\"name\":\"\"},\"K7q1BHEpl\":{\"pattern\":\":K7q1BHEpl\",\"name\":\"repertoire\"},\"tTH41UqzQ\":{\"pattern\":\":tTH41UqzQ\",\"name\":\"\"},\"HQrypku6T\":{\"pattern\":\":HQrypku6T\",\"name\":\"history\"},\"q6Vj0ZsRI\":{\"pattern\":\":q6Vj0ZsRI\",\"name\":\"step-1\"},\"J66fzyoeE\":{\"pattern\":\":J66fzyoeE\",\"name\":\"step-2\"},\"oKzgFkl8N\":{\"pattern\":\":oKzgFkl8N\",\"name\":\"step-3\"},\"JT9E2g9FG\":{\"pattern\":\":JT9E2g9FG\",\"name\":\"step-4\"},\"aGt2LXKoC\":{\"pattern\":\":aGt2LXKoC\",\"name\":\"step-5\"},\"uH2x9Fu4j\":{\"pattern\":\":uH2x9Fu4j\",\"name\":\"calendar\"},\"ia0ekRU0t\":{\"pattern\":\":ia0ekRU0t\",\"name\":\"calendar\"},\"Y8ZOfprcx\":{\"pattern\":\":Y8ZOfprcx\",\"name\":\"faq\"},\"ugNJJU2wl\":{\"pattern\":\":ugNJJU2wl\",\"name\":\"\"},\"sMwfdU3ct\":{\"pattern\":\":sMwfdU3ct\",\"name\":\"contact\"},\"qd31ZwQy_\":{\"pattern\":\":qd31ZwQy_\",\"name\":\"sitemap\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-8Ei0C\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:10753,width:1280};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/JBAX5LNUCKEVXKRK3ARXNMEMQYQYP6WR/P3OTF2DNFMTAXKSAW4JNN6DPWEDDI5MN/4IO2HK2EZ7GHCZN7I3I4WKBAO7IH72SS.woff2\",weight:\"300\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/DELXRVKO253LHPYOBD6KD7EW3TJKXCXF/L6SILXET3P727LN5N75LL5PG77IET2IT/6DP3DAT2N5LSQGN5ISPRN63WPP32A54A.woff2\",weight:\"600\"},{family:\"Chillax\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WSPWZKQM26GGKSLVGSP2CFUHUMS5BCYQ/UE3YJANJM3SE3IWT4TOMYQVMLCQ6GZGG/XESIRBQU62YFBC7YQZI6D2NT5CNZ4PPU.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...LayoutHeaderFonts,...CookieBannerFonts,...ComponentsButtonScrollFonts,...ContentClientLogosFonts,...ComponentsButtonTextFonts,...ContentProjectPreviewFonts,...ComponentsBadgeIconFonts,...CalendarFonts,...FeedspringInstagramImageGridFonts,...ContentSectionCTAFonts,...LayoutFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...getFontsFromSharedStyle(sharedStyle16.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"10753\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"YvYOJQQ5R\\\":{\\\"pattern\\\":\\\":YvYOJQQ5R\\\",\\\"name\\\":\\\"header\\\"},\\\"x2KyRcGeW\\\":{\\\"pattern\\\":\\\":x2KyRcGeW\\\",\\\"name\\\":\\\"main\\\"},\\\"n33m4Q1jE\\\":{\\\"pattern\\\":\\\":n33m4Q1jE\\\",\\\"name\\\":\\\"hero\\\"},\\\"A3s4V9738\\\":{\\\"pattern\\\":\\\":A3s4V9738\\\",\\\"name\\\":\\\"home\\\"},\\\"k8O1h1wNd\\\":{\\\"pattern\\\":\\\":k8O1h1wNd\\\",\\\"name\\\":\\\"\\\"},\\\"xZlaBSqYi\\\":{\\\"pattern\\\":\\\":xZlaBSqYi\\\",\\\"name\\\":\\\"about\\\"},\\\"eoY8S6JX3\\\":{\\\"pattern\\\":\\\":eoY8S6JX3\\\",\\\"name\\\":\\\"\\\"},\\\"K7q1BHEpl\\\":{\\\"pattern\\\":\\\":K7q1BHEpl\\\",\\\"name\\\":\\\"repertoire\\\"},\\\"tTH41UqzQ\\\":{\\\"pattern\\\":\\\":tTH41UqzQ\\\",\\\"name\\\":\\\"\\\"},\\\"HQrypku6T\\\":{\\\"pattern\\\":\\\":HQrypku6T\\\",\\\"name\\\":\\\"history\\\"},\\\"q6Vj0ZsRI\\\":{\\\"pattern\\\":\\\":q6Vj0ZsRI\\\",\\\"name\\\":\\\"step-1\\\"},\\\"J66fzyoeE\\\":{\\\"pattern\\\":\\\":J66fzyoeE\\\",\\\"name\\\":\\\"step-2\\\"},\\\"oKzgFkl8N\\\":{\\\"pattern\\\":\\\":oKzgFkl8N\\\",\\\"name\\\":\\\"step-3\\\"},\\\"JT9E2g9FG\\\":{\\\"pattern\\\":\\\":JT9E2g9FG\\\",\\\"name\\\":\\\"step-4\\\"},\\\"aGt2LXKoC\\\":{\\\"pattern\\\":\\\":aGt2LXKoC\\\",\\\"name\\\":\\\"step-5\\\"},\\\"uH2x9Fu4j\\\":{\\\"pattern\\\":\\\":uH2x9Fu4j\\\",\\\"name\\\":\\\"calendar\\\"},\\\"ia0ekRU0t\\\":{\\\"pattern\\\":\\\":ia0ekRU0t\\\",\\\"name\\\":\\\"calendar\\\"},\\\"Y8ZOfprcx\\\":{\\\"pattern\\\":\\\":Y8ZOfprcx\\\",\\\"name\\\":\\\"faq\\\"},\\\"ugNJJU2wl\\\":{\\\"pattern\\\":\\\":ugNJJU2wl\\\",\\\"name\\\":\\\"\\\"},\\\"sMwfdU3ct\\\":{\\\"pattern\\\":\\\":sMwfdU3ct\\\",\\\"name\\\":\\\"contact\\\"},\\\"qd31ZwQy_\\\":{\\\"pattern\\\":\\\":qd31ZwQy_\\\",\\\"name\\\":\\\"sitemap\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1280\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QsOjzMEOj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JtN8IEEEW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["DEFAULT_DOMAIN", "DEFAULT_SCRIPT_NAME", "getDataLayerSnippet", "dataLayer", "dataLayerName", "getGTMScript", "id", "environment", "customDomain", "customScriptName", "params", "gtm_auth", "gtm_preview", "setupGTM", "dataLayerScript", "script", "initGTM", "nonce", "gtm", "sendToGTM", "isBrowser", "window", "DEFAULT_FONT_FAMILY", "getFlexboxValues", "position", "positionParts", "justifyContent", "alignItems", "getMultipleShadows", "shadows", "output", "shadow", "getShadow", "safeJSONParse", "jsonString", "onError", "yieldToMain", "options", "window", "resolve", "yieldBeforeCb", "fn", "interactionResponse", "toGTMConsent", "consent", "reducer", "state", "action", "initialState", "defaultConsent", "hasInitializedGTM", "useConsent", "gtmId", "gtmLoadedExternally", "dispatch", "le", "isOnFramerCanvas", "useIsOnFramerCanvas", "consentModeLocalStorageKey", "dismissedLocalStorageKey", "autoAcceptedLocalStorageKey", "getStateFromLocalStorage", "consentFromLocalStorage", "dismissedFromLocalStorage", "autoAcceptedFromLocalStorage", "isDismissed", "isAutoAccepted", "safeJSONParse", "syncToGTM", "sendToGTM", "initGTM", "window", "ue", "yieldBeforeCb", "isBrowser", "dismiss", "autoAccept", "acceptAll", "rejectAll", "acceptCurrent", "toggleMode", "mode", "countries", "isInEUTimezone", "_Intl_DateTimeFormat_resolvedOptions_timeZone", "_Intl_DateTimeFormat_resolvedOptions", "_Intl_DateTimeFormat", "_Intl", "isEULocale", "_navigator_languages", "_navigator_language", "locale", "navigator", "country", "_locale_toUpperCase", "_inEU", "inEU", "useRegion", "content", "useRegionFromProps", "skipEUCheck", "regionBasedOnLocation", "isBrowser", "inEU", "regionFromProps", "SPACING", "Toggle", "K", "Banner", "withCSS", "banner", "button", "region", "options", "previewOptions", "consentModes", "onDismiss", "onAcceptAll", "onRejectAll", "onAcceptCurrent", "onToggleConsent", "animateOnMount", "_banner_style_border", "maxHeightReduction", "linkColor", "paddingValue", "bannerShadow", "getShadow", "borderShadow", "bannerStyle", "getMultipleShadows", "p", "motion", "DEFAULT_FONT_FAMILY", "SimpleBanner", "AcceptRejectBanner", "OptionsBanner", "description", "policy", "padding", "u", "Description", "Button", "title", "onAccept", "onReject", "Headline", "Buttons", "showReject", "consent", "onOptionToggle", "showOptions", "setShowOptions", "ye", "optionTheme", "optionNames", "shouldShowOptions", "AnimatePresence", "option", "Option", "l", "titleColor", "descriptionColor", "showDescription", "enabled", "optional", "onClick", "theme", "L", "children", "style", "DescriptionParagraph", "descriptionParagraphs", "line", "index", "direction", "id", "primary", "settings", "_settings_hoverOpacity", "_settings_tapOpacity", "initiallyOpen", "CookieBanner", "gtmId", "preview", "trigger", "banner", "button", "content", "options", "style", "gtmLoadedExternally", "onShown", "onConsentChange", "onAccept", "onDismiss", "onReject", "onSavePreferences", "isOnFramerCanvas", "useIsOnFramerCanvas", "isPreview", "skipLogic", "isInEU", "isBrowser", "inEU", "region", "useRegion", "consent", "useConsent", "isOpen", "setIsOpen", "ye", "instantlyShowOnMount", "setInstantlyShowOnMount", "ue", "yieldBeforeCb", "noConsentGiven", "shouldAutoAccept", "handleDismiss", "interactionResponse", "handleAcceptAll", "handleRejectAll", "handleAcceptCurrent", "p", "Banner", "defaultConsent", "u", "l", "Trigger", "Overlay", "IconCookie", "K", "props", "_props_banner_style", "insetValue", "justifyContent", "alignItems", "getFlexboxValues", "shouldRenderPortal", "setShouldRenderPortal", "blocking", "Ga", "AnimatePresence", "motion", "Backdrop", "withCSS", "onClick", "L", "DEFAULT_FONT_FAMILY", "color", "addPropertyControls", "ControlType", "_", "LayoutHeaderFonts", "getFonts", "GRKXsa1Ts_default", "CookieBannerFonts", "CookieBanner", "ImageWithFX", "withFX", "Image2", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ComponentsButtonScrollFonts", "cbyr9zRXe_default", "ContainerWithOptimizedAppearEffect", "Container", "RichTextWithFX", "ContentClientLogosFonts", "cDtbEqq1o_default", "MotionDivWithFX", "motion", "MotionDivWithOptimizedAppearEffect", "ComponentsButtonTextFonts", "Y4bj3lm3r_default", "ContentProjectPreviewFonts", "iMdvSL7h5_default", "ContainerWithFX", "ComponentsBadgeIconFonts", "ugo7ZYMoc_default", "CalendarFonts", "tISq_ViZM_default", "FeedspringInstagramImageGridFonts", "FeedspringInstagramImageGrid", "ContentSectionCTAFonts", "XChIh2K_X_default", "LayoutFooterFonts", "zfDrZLwjb_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "animation3", "animation4", "animation5", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "MUgju5YguZ0G8vgoWx", "q6wyKlkO2Z0G8vgoWx", "HB77IOfF5Z0G8vgoWx", "Sxxulfe91Z0G8vgoWx", "idZ0G8vgoWx", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "router", "useRouter", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "elementId10", "ref11", "isDisplayed", "isDisplayed1", "isDisplayed2", "elementId11", "ref12", "elementId12", "ref13", "elementId13", "ref14", "elementId14", "ref15", "elementId15", "ref16", "elementId16", "ref17", "elementId17", "ref18", "elementId18", "ref19", "elementId19", "ref20", "elementId20", "ref21", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "ChildrenCanSuspend", "Gk_rXsiQS_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks2", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
